From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hartmut Goebel Subject: [PATCH 3/3] gnu: Add aliases for the old Java package names. Date: Thu, 14 Apr 2016 21:51:37 +0200 Message-ID: <1460663497-22031-4-git-send-email-h.goebel@crazy-compilers.com> References: <1460663497-22031-1-git-send-email-h.goebel@crazy-compilers.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34839) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aqnIu-0003b7-J2 for guix-devel@gnu.org; Thu, 14 Apr 2016 15:51:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aqnIs-0005nd-93 for guix-devel@gnu.org; Thu, 14 Apr 2016 15:51:52 -0400 Received: from mail-out.m-online.net ([212.18.0.9]:46640) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aqnIs-0005n9-3I for guix-devel@gnu.org; Thu, 14 Apr 2016 15:51:50 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3qmBBq3C7Nz3hjT2 for ; Thu, 14 Apr 2016 21:51:47 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3qmBBq35H0zvhMH for ; Thu, 14 Apr 2016 21:51:47 +0200 (CEST) Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id UyyvXx3_D1oZ for ; Thu, 14 Apr 2016 21:51:46 +0200 (CEST) Received: from hermia.goebel-consult.de (ppp-188-174-157-107.dynamic.mnet-online.de [188.174.157.107]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS for ; Thu, 14 Apr 2016 21:51:46 +0200 (CEST) Received: from thisbe.goebel-consult.de (unknown [192.168.110.30]) by hermia.goebel-consult.de (Postfix) with ESMTP id D1D3F607A8 for ; Thu, 14 Apr 2016 21:51:38 +0200 (CEST) In-Reply-To: <1460663497-22031-1-git-send-email-h.goebel@crazy-compilers.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/bioninformatics.scm (htsjdk) (ngs-java): New function aliases. * gnu/packages/java.scm (swt): New function alias. --- gnu/packages/bioinformatics.scm | 8 ++++++++ gnu/packages/java.scm | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 3094489..2f8821f 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -2113,6 +2113,10 @@ sequencing (HTS) data. There are also an number of useful utilities for manipulating HTS data.") (license license:expat))) +;; old name "htsjdk" is obsolete and will be removed soon +(define-public htsjdk java-htsjdk) + + (define-public htslib (package (name "htslib") @@ -3030,6 +3034,10 @@ simultaneously.") ("ngs-sdk" ,ngs-sdk))) (synopsis "Java bindings for NGS SDK"))) +;; old name "ngs-java" is obsolete and will be removed soon +(define-public ngs-java java-ngs) + + (define-public ncbi-vdb (package (name "ncbi-vdb") diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 7a9f47d..ae50f8a 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -133,6 +133,10 @@ is implemented.") license:mpl2.0 license:lgpl2.1+)))) +;; old name "swt" is obsolete and will be removed soon +(define-public swt java-swt) + + (define-public ant (package (name "ant") -- 2.7.4