diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-12-28 19:13:20 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-12-28 19:13:20 +0000 |
commit | 0bd16e575279ac5adf22f4d85f68b6ff1496dfed (patch) | |
tree | 333fbb1c44b32175793d160c07338e46c9f41be6 /sci-libs | |
parent | With the archive mirror added to the mirror://apache/ target, we also need to... (diff) | |
download | gentoo-2-0bd16e575279ac5adf22f4d85f68b6ff1496dfed.tar.gz gentoo-2-0bd16e575279ac5adf22f4d85f68b6ff1496dfed.tar.bz2 gentoo-2-0bd16e575279ac5adf22f4d85f68b6ff1496dfed.zip |
sci-libs/starparse: Fix guile SLOT; set REQUIRED_USE
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/starparse/ChangeLog | 8 | ||||
-rw-r--r-- | sci-libs/starparse/metadata.xml | 2 | ||||
-rw-r--r-- | sci-libs/starparse/starparse-1.0-r1.ebuild | 20 |
3 files changed, 14 insertions, 16 deletions
diff --git a/sci-libs/starparse/ChangeLog b/sci-libs/starparse/ChangeLog index e3fb7ac97428..f5ecb04baeb1 100644 --- a/sci-libs/starparse/ChangeLog +++ b/sci-libs/starparse/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-libs/starparse -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/starparse/ChangeLog,v 1.7 2012/07/26 08:37:31 jlec Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/starparse/ChangeLog,v 1.8 2013/12/28 19:13:20 jlec Exp $ + + 28 Dec 2013; Justin Lecher <jlec@gentoo.org> starparse-1.0-r1.ebuild, + metadata.xml: + Fix guile SLOT; set REQUIRED_USE 26 Jul 2012; Justin Lecher <jlec@gentoo.org> starparse-1.0-r1.ebuild: Bump EAPI to4, use autotools-utils.eclass, handle static-libs diff --git a/sci-libs/starparse/metadata.xml b/sci-libs/starparse/metadata.xml index e42d0af60f42..51fdedab1b38 100644 --- a/sci-libs/starparse/metadata.xml +++ b/sci-libs/starparse/metadata.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <herd>sci-chemistry</herd> + <herd>sci-chemistry</herd> </pkgmetadata> diff --git a/sci-libs/starparse/starparse-1.0-r1.ebuild b/sci-libs/starparse/starparse-1.0-r1.ebuild index 5d949f94c21e..7f50586690e7 100644 --- a/sci-libs/starparse/starparse-1.0-r1.ebuild +++ b/sci-libs/starparse/starparse-1.0-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/starparse/starparse-1.0-r1.ebuild,v 1.3 2012/07/26 08:37:31 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/starparse/starparse-1.0-r1.ebuild,v 1.4 2013/12/28 19:13:20 jlec Exp $ -EAPI=4 +EAPI=5 AUTOTOOLS_AUTORECONF=yes @@ -17,9 +17,11 @@ SRC_URI="http://dev.gentooexperimental.org/~jlec/distfiles/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="guile static-libs" +IUSE="guile static-libs test" -RDEPEND="guile? ( dev-scheme/guile )" +REQUIRED_USE="test? ( guile )" + +RDEPEND="guile? ( dev-scheme/guile:12 )" DEPEND="${RDEPEND} virtual/pkgconfig" @@ -29,11 +31,3 @@ src_configure() { local myeconfargs=( $(use_enable guile) ) autotools-utils_src_configure } - -src_test() { - if use guile; then - autotools-utils_src_test - else - ewarn "Skipping tests because USE guile is disabled" - fi -} |