public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/gaul-devel/
@ 2018-06-03  2:59 Aaron Bauman
  0 siblings, 0 replies; 3+ messages in thread
From: Aaron Bauman @ 2018-06-03  2:59 UTC (permalink / raw
  To: gentoo-commits

commit:     39cdef2f9d86e51d300548a1cd2c17ea4cfde6b7
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  3 00:07:58 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun Jun  3 02:58:38 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39cdef2f

sci-libs/gaul-devel: drop old EAPI

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sci-libs/gaul-devel/gaul-devel-0.1849-r1.ebuild | 45 -------------------------
 1 file changed, 45 deletions(-)

diff --git a/sci-libs/gaul-devel/gaul-devel-0.1849-r1.ebuild b/sci-libs/gaul-devel/gaul-devel-0.1849-r1.ebuild
deleted file mode 100644
index b65497b1ca9..00000000000
--- a/sci-libs/gaul-devel/gaul-devel-0.1849-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils
-
-DESCRIPTION="Genetic Algorithm Utility Library"
-HOMEPAGE="http://GAUL.sourceforge.net/"
-SRC_URI="mirror://sourceforge/gaul/${P}-0.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="debug slang"
-
-DEPEND="
-	sys-apps/sed
-	slang? ( sys-libs/slang )"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${P}-0
-
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
-	epatch "${FILESDIR}"/${P}-slang2-error.patch
-}
-
-src_compile() {
-	local myconf
-	use slang || myconf="--enable-slang=no"
-	if use debug ; then
-		myconf="${myconf} --enable-debug=yes --enable-memory-debug=yes"
-	else
-		myconf="${myconf} --enable-g=no"
-	fi
-	econf ${myconf}
-	emake || die "emake failed"
-}
-
-src_install() {
-	emake -j1 DESTDIR="${D}" install || die "Install failed"
-	dodoc README || die
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/gaul-devel/
@ 2019-12-13 17:41 David Seifert
  0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2019-12-13 17:41 UTC (permalink / raw
  To: gentoo-commits

commit:     8bd7dae129172172c2e57aa497c26466767e4f46
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 13 17:40:26 2019 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Dec 13 17:40:26 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bd7dae1

sci-libs/gaul-devel: Port to EAPI 7

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sci-libs/gaul-devel/gaul-devel-0.1849-r2.ebuild | 41 ++++++++++++-------------
 1 file changed, 20 insertions(+), 21 deletions(-)

diff --git a/sci-libs/gaul-devel/gaul-devel-0.1849-r2.ebuild b/sci-libs/gaul-devel/gaul-devel-0.1849-r2.ebuild
index 56d910c69c5..883d578b3fe 100644
--- a/sci-libs/gaul-devel/gaul-devel-0.1849-r2.ebuild
+++ b/sci-libs/gaul-devel/gaul-devel-0.1849-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=7
 
-inherit autotools eutils
+inherit autotools
 
 DESCRIPTION="Genetic Algorithm Utility Library"
 HOMEPAGE="http://GAUL.sourceforge.net/"
@@ -12,34 +12,33 @@ SRC_URI="mirror://sourceforge/gaul/${P}-0.tar.bz2"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="debug slang static-libs"
+IUSE="slang"
 
-DEPEND="
-	sys-apps/sed
-	slang? ( sys-libs/slang )"
-RDEPEND="${DEPEND}"
+RDEPEND="slang? ( sys-libs/slang:= )"
+DEPEND="${RDEPEND}"
 
-S=${WORKDIR}/${P}-0
+S="${WORKDIR}/${P}-0"
+
+PATCHES=(
+	"${FILESDIR}"/${P}-slang2-error.patch
+	"${FILESDIR}"/${P}-as-needed.patch
+)
 
 src_prepare() {
-	epatch \
-		"${FILESDIR}"/${P}-slang2-error.patch \
-		"${FILESDIR}"/${P}-as-needed.patch
+	default
+	mv configure.{in,ac} || die
 	eautoreconf
 }
 
 src_configure() {
-	local myconf
-	use slang || myconf="--enable-slang=no"
-	if use debug ; then
-		myconf="${myconf} --enable-debug=yes --enable-memory-debug=yes"
-	else
-		myconf="${myconf} --enable-g=no"
-	fi
-	econf $(use_enable static-libs static) ${myconf}
+	econf \
+		--disable-static \
+		$(use_enable slang)
 }
 
 src_install() {
-	MAKEOPTS+=" -j1"
 	default
+
+	# no static archives
+	find "${D}" -name '*.la' -delete || die
 }


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/gaul-devel/
@ 2022-11-19 11:41 Andrew Ammerlaan
  0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2022-11-19 11:41 UTC (permalink / raw
  To: gentoo-commits

commit:     b5d33c7b390c0e39b4b125e0cbf4a95045859a08
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Nov 19 09:03:09 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sat Nov 19 11:39:30 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5d33c7b

sci-libs/gaul-devel: use HTTPS, fix LICENSE

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 sci-libs/gaul-devel/gaul-devel-0.1849-r2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-libs/gaul-devel/gaul-devel-0.1849-r2.ebuild b/sci-libs/gaul-devel/gaul-devel-0.1849-r2.ebuild
index 883d578b3fea..21816edadf13 100644
--- a/sci-libs/gaul-devel/gaul-devel-0.1849-r2.ebuild
+++ b/sci-libs/gaul-devel/gaul-devel-0.1849-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -6,10 +6,10 @@ EAPI=7
 inherit autotools
 
 DESCRIPTION="Genetic Algorithm Utility Library"
-HOMEPAGE="http://GAUL.sourceforge.net/"
+HOMEPAGE="https://gaul.sourceforge.net"
 SRC_URI="mirror://sourceforge/gaul/${P}-0.tar.bz2"
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="slang"


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-11-19 11:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-03  2:59 [gentoo-commits] repo/gentoo:master commit in: sci-libs/gaul-devel/ Aaron Bauman
  -- strict thread matches above, loose matches on Subject: below --
2019-12-13 17:41 David Seifert
2022-11-19 11:41 Andrew Ammerlaan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox