public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-util/sgb/
@ 2018-08-26 11:01 Michał Górny
  0 siblings, 0 replies; 5+ messages in thread
From: Michał Górny @ 2018-08-26 11:01 UTC (permalink / raw
  To: gentoo-commits

commit:     f7d17499c7fd62771c5124fb4f90fc770e7d86f5
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 26 10:42:02 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Aug 26 11:01:07 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7d17499

dev-util/sgb: Remove support for non-existent deps

 dev-util/sgb/sgb-20030623.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/sgb/sgb-20030623.ebuild b/dev-util/sgb/sgb-20030623.ebuild
index eac1bb81a89..9c6726cd8d9 100644
--- a/dev-util/sgb/sgb-20030623.ebuild
+++ b/dev-util/sgb/sgb-20030623.ebuild
@@ -12,7 +12,7 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc x86"
 IUSE=""
-DEPEND="|| ( >=dev-util/cweb-3.00 virtual/tex-base )"
+DEPEND="virtual/tex-base"
 S="${WORKDIR}"
 
 src_unpack() {


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/sgb/
@ 2019-11-09 11:45 Michał Górny
  0 siblings, 0 replies; 5+ messages in thread
From: Michał Górny @ 2019-11-09 11:45 UTC (permalink / raw
  To: gentoo-commits

commit:     016ad58a39ab8f971b99e2d5f4e6f8240d2ffa32
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  9 11:37:01 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov  9 11:45:45 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=016ad58a

dev-util/sgb: Bump to EAPI 7

Closes: https://bugs.gentoo.org/697328
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-util/sgb/sgb-20030623-r1.ebuild | 59 ++++++++++++++++++++++++++++++++++++
 dev-util/sgb/sgb-20030623.ebuild    | 60 -------------------------------------
 2 files changed, 59 insertions(+), 60 deletions(-)

diff --git a/dev-util/sgb/sgb-20030623-r1.ebuild b/dev-util/sgb/sgb-20030623-r1.ebuild
new file mode 100644
index 00000000000..65303742afc
--- /dev/null
+++ b/dev-util/sgb/sgb-20030623-r1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Stanford GraphBase"
+HOMEPAGE="ftp://labrea.stanford.edu/pub/sgb/"
+SRC_URI="ftp://labrea.stanford.edu/pub/sgb/sgb-${PV:0:4}-${PV:4:2}-${PV:6:2}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc x86"
+IUSE=""
+
+DEPEND="virtual/tex-base"
+
+S="${WORKDIR}"
+
+PATCHES=(
+	"${FILESDIR}"/sgb-20030623-parallel-make-fix.patch
+	"${FILESDIR}"/sgb-20030623-destdir.patch
+)
+
+src_compile() {
+	local vars=(
+		CFLAGS="${CFLAGS}"
+		SGBDIR=/usr/share/${PN}
+		INCLUDEDIR=/usr/include/sgb
+		LIBDIR=/usr/$(get_libdir)
+		BINDIR=/usr/bin
+		#CWEBINPUTS=/usr/share/${PN}/cweb
+		#LDFLAGS="${LDFLAGS}"
+	)
+	# bug #299028
+	emake -j1 "${vars[@]}" lib demos tests
+}
+
+src_test() {
+	emake tests
+}
+
+src_install() {
+	local vars=(
+		SGBDIR=/usr/share/${PN}
+		INCLUDEDIR=/usr/include/sgb
+		LIBDIR=/usr/$(get_libdir)
+		BINDIR=/usr/bin
+		CFLAGS="${CFLAGS}"
+		# TODO: why are they commented out above?
+		LDFLAGS="${LDFLAGS}"
+		CWEBINPUTS=/usr/share/${PN}/cweb
+	)
+	emake DESTDIR="${D}" "${vars[@]}" install
+
+	# we don't need no makefile
+	rm "${D}"/usr/include/sgb/Makefile || die
+
+	dodoc ERRATA README
+}

diff --git a/dev-util/sgb/sgb-20030623.ebuild b/dev-util/sgb/sgb-20030623.ebuild
deleted file mode 100644
index 9c6726cd8d9..00000000000
--- a/dev-util/sgb/sgb-20030623.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils multilib
-
-DESCRIPTION="Stanford GraphBase"
-HOMEPAGE="ftp://labrea.stanford.edu/pub/sgb/"
-SRC_URI="ftp://labrea.stanford.edu/pub/sgb/sgb-${PV:0:4}-${PV:4:2}-${PV:6:2}.tar.gz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-IUSE=""
-DEPEND="virtual/tex-base"
-S="${WORKDIR}"
-
-src_unpack() {
-	unpack ${A}
-	epatch "${FILESDIR}"/sgb-20030623-parallel-make-fix.patch
-	epatch "${FILESDIR}"/sgb-20030623-destdir.patch
-}
-
-src_compile() {
-	# bug #299028
-	emake -j1 \
-	CFLAGS="${CFLAGS}" \
-	SGBDIR=/usr/share/${PN} \
-	INCLUDEDIR=/usr/include/sgb \
-	LIBDIR=/usr/$(get_libdir) \
-	BINDIR=/usr/bin \
-	CFLAGS="${CFLAGS}" \
-	lib demos tests || die "Failed to build"
-	#CWEBINPUTS=/usr/share/${PN}/cweb \
-	#LDFLAGS="${LDFLAGS}" \
-}
-
-src_install() {
-	dodir /usr/share/${PN} /usr/include/sgb /usr/lib /usr/bin /usr/share/${PN}/cweb
-	emake \
-	DESTDIR="${D}" \
-	SGBDIR=/usr/share/${PN} \
-	INCLUDEDIR=/usr/include/sgb \
-	LIBDIR=/usr/$(get_libdir) \
-	BINDIR=/usr/bin \
-	CFLAGS="${CFLAGS}" \
-	LDFLAGS="${LDFLAGS}" \
-	CWEBINPUTS=/usr/share/${PN}/cweb \
-	install \
-	|| die "Failed to install"
-
-	# we don't need no makefile
-	rm "${D}"/usr/include/sgb/Makefile
-
-	dodoc ERRATA README
-}
-
-src_test() {
-	emake tests
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/sgb/
@ 2020-04-05 21:58 Robin H. Johnson
  0 siblings, 0 replies; 5+ messages in thread
From: Robin H. Johnson @ 2020-04-05 21:58 UTC (permalink / raw
  To: gentoo-commits

commit:     6781b3a32951798766a2862d4c1af59fb85a58cd
Author:     Wim Muskee <wimmuskee <AT> gmail <DOT> com>
AuthorDate: Sat Dec 28 08:54:52 2019 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sun Apr  5 21:58:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6781b3a3

dev-util/sgb: update HOMEPAGE, SRC_URI

Closes: https://github.com/gentoo/gentoo/pull/14147
Closes: https://bugs.gentoo.org/699662
Signed-off-by: Wim Muskee <wimmuskee <AT> gmail.com>
(cherry picked from commit 8fc71f7db91816f8f6268df12fdd545c0e862479)
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

 dev-util/sgb/sgb-20030623-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/sgb/sgb-20030623-r1.ebuild b/dev-util/sgb/sgb-20030623-r1.ebuild
index 65303742afc..d89599421b5 100644
--- a/dev-util/sgb/sgb-20030623-r1.ebuild
+++ b/dev-util/sgb/sgb-20030623-r1.ebuild
@@ -4,8 +4,8 @@
 EAPI=7
 
 DESCRIPTION="Stanford GraphBase"
-HOMEPAGE="ftp://labrea.stanford.edu/pub/sgb/"
-SRC_URI="ftp://labrea.stanford.edu/pub/sgb/sgb-${PV:0:4}-${PV:4:2}-${PV:6:2}.tar.gz"
+HOMEPAGE="http://ftp.cs.stanford.edu/pub/sgb/"
+SRC_URI="http://ftp.cs.stanford.edu/pub/sgb/sgb-${PV:0:4}-${PV:4:2}-${PV:6:2}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/sgb/
@ 2020-04-05 21:58 Robin H. Johnson
  0 siblings, 0 replies; 5+ messages in thread
From: Robin H. Johnson @ 2020-04-05 21:58 UTC (permalink / raw
  To: gentoo-commits

commit:     a4dfc3e3d731d1ff1a726bd688c980a92764547a
Author:     Wim Muskee <wimmuskee <AT> gmail <DOT> com>
AuthorDate: Sat Dec 28 08:58:50 2019 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sun Apr  5 21:58:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4dfc3e3

dev-util/sgb: version bump to 20090810

Closes: https://github.com/gentoo/gentoo/pull/14147
Signed-off-by: Wim Muskee <wimmuskee <AT> gmail.com>
(cherry picked from commit 935d69960bce72c661612f655f75f55b9133171d)
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

 dev-util/sgb/Manifest            |  1 +
 dev-util/sgb/sgb-20090810.ebuild | 59 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/dev-util/sgb/Manifest b/dev-util/sgb/Manifest
index 57f912e45c5..6a5b32d3061 100644
--- a/dev-util/sgb/Manifest
+++ b/dev-util/sgb/Manifest
@@ -1 +1,2 @@
 DIST sgb-2003-06-23.tar.gz 493974 BLAKE2B b4cf4e1fd9f2aba35937865d2c2075e206eabda9f56e7f5b844be8bd4684b2a220bb1d449f0b0ed431fd2603b92aaf0cfa0a7e88015e7870638b3d69cab7288f SHA512 f486317dd85dc11761c970ab2bc0c9193f8dd3fa0d114528e1b55fd935fa9cce9266dc595b2ebe3526214ce3e6a1b3dc747382b32cbfd518ffb6179d3463e874
+DIST sgb-2009-08-10.tar.gz 496678 BLAKE2B 48c780259fee240e9739166a52972c4f3a37dc44d98a503b1df63aecec553a05888e11a01b8cf40c8a853f7416ce3118109aa6ce5db15fbfed1abbee552735ce SHA512 39afaaaeda9b1e2b0ecd56d8d0fee59754ee9340c497c9bd28aa19f039be605aef6c492969082c230840ca1619de3cb81ba3a38d4d7b6fdac6f19b658d4c01e2

diff --git a/dev-util/sgb/sgb-20090810.ebuild b/dev-util/sgb/sgb-20090810.ebuild
new file mode 100644
index 00000000000..4f6d61def77
--- /dev/null
+++ b/dev-util/sgb/sgb-20090810.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Stanford GraphBase"
+HOMEPAGE="http://ftp.cs.stanford.edu/pub/sgb/"
+SRC_URI="http://ftp.cs.stanford.edu/pub/sgb/sgb-${PV:0:4}-${PV:4:2}-${PV:6:2}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+DEPEND="virtual/tex-base"
+
+S="${WORKDIR}"
+
+PATCHES=(
+	"${FILESDIR}"/sgb-20030623-parallel-make-fix.patch
+	"${FILESDIR}"/sgb-20030623-destdir.patch
+)
+
+src_compile() {
+	local vars=(
+		CFLAGS="${CFLAGS}"
+		SGBDIR=/usr/share/${PN}
+		INCLUDEDIR=/usr/include/sgb
+		LIBDIR=/usr/$(get_libdir)
+		BINDIR=/usr/bin
+		#CWEBINPUTS=/usr/share/${PN}/cweb
+		#LDFLAGS="${LDFLAGS}"
+	)
+	# bug #299028
+	emake -j1 "${vars[@]}" lib demos tests
+}
+
+src_test() {
+	emake tests
+}
+
+src_install() {
+	local vars=(
+		SGBDIR=/usr/share/${PN}
+		INCLUDEDIR=/usr/include/sgb
+		LIBDIR=/usr/$(get_libdir)
+		BINDIR=/usr/bin
+		CFLAGS="${CFLAGS}"
+		# TODO: why are they commented out above?
+		LDFLAGS="${LDFLAGS}"
+		CWEBINPUTS=/usr/share/${PN}/cweb
+	)
+	emake DESTDIR="${D}" "${vars[@]}" install
+
+	# we don't need no makefile
+	rm "${D}"/usr/include/sgb/Makefile || die
+
+	dodoc ERRATA README
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/sgb/
@ 2022-10-24 19:26 Sam James
  0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2022-10-24 19:26 UTC (permalink / raw
  To: gentoo-commits

commit:     6e1300ddd5b9ea6e80d1620d1cc906262cf674c6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 24 19:24:21 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 24 19:24:21 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e1300dd

dev-util/sgb: fix LICENSE

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/sgb/sgb-20030623-r1.ebuild | 4 ++--
 dev-util/sgb/sgb-20090810-r1.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-util/sgb/sgb-20030623-r1.ebuild b/dev-util/sgb/sgb-20030623-r1.ebuild
index d89599421b58..26b28efed229 100644
--- a/dev-util/sgb/sgb-20030623-r1.ebuild
+++ b/dev-util/sgb/sgb-20030623-r1.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
@@ -7,7 +7,7 @@ DESCRIPTION="Stanford GraphBase"
 HOMEPAGE="http://ftp.cs.stanford.edu/pub/sgb/"
 SRC_URI="http://ftp.cs.stanford.edu/pub/sgb/sgb-${PV:0:4}-${PV:4:2}-${PV:6:2}.tar.gz"
 
-LICENSE="BSD"
+LICENSE="mmix"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc x86"
 IUSE=""

diff --git a/dev-util/sgb/sgb-20090810-r1.ebuild b/dev-util/sgb/sgb-20090810-r1.ebuild
index 8f0ddf30fd4d..411bb22b4b39 100644
--- a/dev-util/sgb/sgb-20090810-r1.ebuild
+++ b/dev-util/sgb/sgb-20090810-r1.ebuild
@@ -7,7 +7,7 @@ DESCRIPTION="Stanford GraphBase"
 HOMEPAGE="http://ftp.cs.stanford.edu/pub/sgb/"
 SRC_URI="http://ftp.cs.stanford.edu/pub/sgb/sgb-${PV:0:4}-${PV:4:2}-${PV:6:2}.tar.gz"
 
-LICENSE="BSD"
+LICENSE="mmix"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
 IUSE=""


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

end of thread, other threads:[~2022-10-24 19:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-09 11:45 [gentoo-commits] repo/gentoo:master commit in: dev-util/sgb/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2022-10-24 19:26 Sam James
2020-04-05 21:58 Robin H. Johnson
2020-04-05 21:58 Robin H. Johnson
2018-08-26 11:01 Michał Górny

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