public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-libs/starparse/
@ 2012-01-08 15:22 Justin Lecher
  0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2012-01-08 15:22 UTC (permalink / raw
  To: gentoo-commits

commit:     0fbf38a148e10ced3da581dba296da0f94882fb8
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  8 08:25:02 2012 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Jan  8 08:25:02 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=0fbf38a1

Bumped to new upstream repo uri

(Portage version: 2.2.0_alpha84/git/Linux x86_64, signed Manifest commit with key 70EB7916)

---
 sci-libs/starparse/ChangeLog             |    6 +++++-
 sci-libs/starparse/metadata.xml          |    8 ++++----
 sci-libs/starparse/starparse-9999.ebuild |   25 ++++++++++++++-----------
 3 files changed, 23 insertions(+), 16 deletions(-)

diff --git a/sci-libs/starparse/ChangeLog b/sci-libs/starparse/ChangeLog
index d5829fc..b7fc671 100644
--- a/sci-libs/starparse/ChangeLog
+++ b/sci-libs/starparse/ChangeLog
@@ -1,7 +1,11 @@
 # ChangeLog for sci-libs/starparse
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  08 Jan 2012; Justin Lecher <jlec@gentoo.org> starparse-9999.ebuild,
+  metadata.xml:
+  Bumped to new upstream repo uri
+
   07 Dec 2009; Justin Lecher (jlec) <jlec@j-schmitz.net>
   starparse-9999_pre10.ebuild:
   unkeyworded te live ebuild again

diff --git a/sci-libs/starparse/metadata.xml b/sci-libs/starparse/metadata.xml
index efb490d..d747d72 100644
--- a/sci-libs/starparse/metadata.xml
+++ b/sci-libs/starparse/metadata.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<herd>sci</herd>
-<maintainer>
-  <email>sci@gentoo.org</email>
-</maintainer>
+	<herd>sci</herd>
+	<maintainer>
+		<email>sci@gentoo.org</email>
+	</maintainer>
 </pkgmetadata>

diff --git a/sci-libs/starparse/starparse-9999.ebuild b/sci-libs/starparse/starparse-9999.ebuild
index 93fc1ba..263809b 100644
--- a/sci-libs/starparse/starparse-9999.ebuild
+++ b/sci-libs/starparse/starparse-9999.ebuild
@@ -1,29 +1,32 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EBZR_REPO_URI="http://oregonstate.edu/~benisong/software/projects/starparse/head"
-EBZR_BOOTSTRAP="eautoreconf"
+EAPI=4
 
-inherit autotools bzr
+AUTOTOOLS_AUTORECONF="true"
+
+inherit autotools-utils git-2
 
 DESCRIPTION="Library for parsing NMR star files (peak-list format) and CIF files"
 HOMEPAGE="http://burrow-owl.sourceforge.net/"
 #SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+EGIT_REPO_URI="git://burrow-owl.git.sourceforge.net/gitroot/burrow-owl/starparse"
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="guile"
+IUSE="guile static-libs"
 
 RDEPEND="guile? ( dev-scheme/guile )"
 DEPEND="${RDEPEND}"
 
-src_compile() {
-	econf $(use_enable guile) || die
-	emake || die
-}
+AUTOTOOLS_IN_SOURCE_BUILD=1
 
-src_install() {
-	emake DESTDIR="${D}" install || die "emake install failed"
+src_configure() {
+	local myeconfargs=(
+		$(use_enable guile)
+	)
+	autotools-utils_src_configure
+	emake || die
 }



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

* [gentoo-commits] proj/sci:master commit in: sci-libs/starparse/
@ 2012-01-08 15:22 Justin Lecher
  0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2012-01-08 15:22 UTC (permalink / raw
  To: gentoo-commits

commit:     40c9a81ebc334d9471fe2c5ed40d5c3294394f66
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  8 08:27:48 2012 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Jan  8 08:27:48 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=40c9a81e

Drop double call of emake in src_configure

(Portage version: 2.2.0_alpha84/git/Linux x86_64, signed Manifest commit with key 70EB7916)

---
 sci-libs/starparse/ChangeLog             |    5 ++++-
 sci-libs/starparse/starparse-9999.ebuild |    1 -
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/sci-libs/starparse/ChangeLog b/sci-libs/starparse/ChangeLog
index b7fc671..8da6063 100644
--- a/sci-libs/starparse/ChangeLog
+++ b/sci-libs/starparse/ChangeLog
@@ -2,13 +2,16 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  08 Jan 2012; Justin Lecher <jlec@gentoo.org> starparse-9999.ebuild:
+  Drop double call of emake in src_configure
+
   08 Jan 2012; Justin Lecher <jlec@gentoo.org> starparse-9999.ebuild,
   metadata.xml:
   Bumped to new upstream repo uri
 
   07 Dec 2009; Justin Lecher (jlec) <jlec@j-schmitz.net>
   starparse-9999_pre10.ebuild:
-  unkeyworded te live ebuild again
+  unkeyworded the live ebuild again
 
 *starparse-1.0 (07 Dec 2009)
 

diff --git a/sci-libs/starparse/starparse-9999.ebuild b/sci-libs/starparse/starparse-9999.ebuild
index 263809b..caaabff 100644
--- a/sci-libs/starparse/starparse-9999.ebuild
+++ b/sci-libs/starparse/starparse-9999.ebuild
@@ -28,5 +28,4 @@ src_configure() {
 		$(use_enable guile)
 	)
 	autotools-utils_src_configure
-	emake || die
 }



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

* [gentoo-commits] proj/sci:master commit in: sci-libs/starparse/
@ 2013-12-28 18:59 Justin Lecher
  0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2013-12-28 18:59 UTC (permalink / raw
  To: gentoo-commits

commit:     d7562566fd7c4620b222c59b123c730a3fe27d0c
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 28 18:38:44 2013 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Dec 28 18:38:44 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d7562566

sci-libs/starparse: Drop old

Package-Manager: portage-2.2.7

---
 sci-libs/starparse/ChangeLog                   |  4 ++++
 sci-libs/starparse/metadata.xml                |  2 +-
 sci-libs/starparse/starparse-1.0.ebuild        | 28 --------------------------
 sci-libs/starparse/starparse-9999.ebuild       |  4 ++--
 sci-libs/starparse/starparse-9999_pre10.ebuild | 27 -------------------------
 5 files changed, 7 insertions(+), 58 deletions(-)

diff --git a/sci-libs/starparse/ChangeLog b/sci-libs/starparse/ChangeLog
index 0dc4bac..e66e07b 100644
--- a/sci-libs/starparse/ChangeLog
+++ b/sci-libs/starparse/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  28 Dec 2013; Justin Lecher <jlec@gentoo.org> -starparse-1.0.ebuild,
+  -starparse-9999_pre10.ebuild, starparse-9999.ebuild, metadata.xml:
+  Drop old
+
   03 Mar 2013; Justin Lecher <jlec@gentoo.org> starparse-1.0.ebuild,
   starparse-9999_pre10.ebuild, starparse-9999.ebuild, metadata.xml:
   Add missing multilib.eclass; move to EAPI=5 and autotools-utils.eclass

diff --git a/sci-libs/starparse/metadata.xml b/sci-libs/starparse/metadata.xml
index b229aec..897aa2e 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</herd>
+  <herd>sci</herd>
 </pkgmetadata>

diff --git a/sci-libs/starparse/starparse-1.0.ebuild b/sci-libs/starparse/starparse-1.0.ebuild
deleted file mode 100644
index 6e82d17..0000000
--- a/sci-libs/starparse/starparse-1.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils
-
-DESCRIPTION="Library for parsing NMR star files (peak-list format) and CIF files"
-HOMEPAGE="http://burrow-owl.sourceforge.net/"
-#SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-# Created from rev 19 @ http://oregonstate.edu/~benisong/software/projects/starparse/releases/1.0
-SRC_URI="http://dev.gentooexperimental.org/~jlec/distfiles/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="guile static-libs"
-
-RDEPEND="guile? ( dev-scheme/guile )"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-	local myeconfargs=( $(use_enable guile) )
-	autotools-utils_src_configure
-}

diff --git a/sci-libs/starparse/starparse-9999.ebuild b/sci-libs/starparse/starparse-9999.ebuild
index f97138f..78f59c1 100644
--- a/sci-libs/starparse/starparse-9999.ebuild
+++ b/sci-libs/starparse/starparse-9999.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 AUTOTOOLS_AUTORECONF="true"
 
-inherit autotools-utils git-2
+inherit autotools-utils git-r3
 
 DESCRIPTION="Library for parsing NMR star files (peak-list format) and CIF files"
 HOMEPAGE="http://burrow-owl.sourceforge.net/"
@@ -15,7 +15,7 @@ EGIT_REPO_URI="git://burrow-owl.git.sourceforge.net/gitroot/burrow-owl/starparse
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
 IUSE="guile static-libs"
 
 RDEPEND="guile? ( dev-scheme/guile )"

diff --git a/sci-libs/starparse/starparse-9999_pre10.ebuild b/sci-libs/starparse/starparse-9999_pre10.ebuild
deleted file mode 100644
index 874309c..0000000
--- a/sci-libs/starparse/starparse-9999_pre10.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF="true"
-
-inherit autotools-utils bzr
-
-DESCRIPTION="Library for parsing NMR star files (peak-list format) and CIF files"
-HOMEPAGE="http://burrow-owl.sourceforge.net/"
-#SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-EBZR_REPO_URI="http://oregonstate.edu/~benisong/software/projects/starparse/releases/1.0"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="guile static-libs"
-
-RDEPEND="guile? ( dev-scheme/guile )"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-	local myeconfargs=( $(use_enable guile) )
-	autotools-utils_src_configure
-}


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

* [gentoo-commits] proj/sci:master commit in: sci-libs/starparse/
@ 2013-12-28 18:59 Justin Lecher
  0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2013-12-28 18:59 UTC (permalink / raw
  To: gentoo-commits

commit:     f5c89a5c47f15524040a69092d9a82549a2d7704
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 28 18:59:10 2013 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Dec 28 18:59:10 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=f5c89a5c

sci-libs/starparse: Fix guile SLOT and drop out-of-source workaround

Package-Manager: portage-2.2.7

---
 sci-libs/starparse/ChangeLog             | 3 +++
 sci-libs/starparse/starparse-9999.ebuild | 5 +----
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sci-libs/starparse/ChangeLog b/sci-libs/starparse/ChangeLog
index e66e07b..d425538 100644
--- a/sci-libs/starparse/ChangeLog
+++ b/sci-libs/starparse/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  28 Dec 2013; Justin Lecher <jlec@gentoo.org> starparse-9999.ebuild:
+  Fix guile SLOT and drop out-of-source workaround
+
   28 Dec 2013; Justin Lecher <jlec@gentoo.org> -starparse-1.0.ebuild,
   -starparse-9999_pre10.ebuild, starparse-9999.ebuild, metadata.xml:
   Drop old

diff --git a/sci-libs/starparse/starparse-9999.ebuild b/sci-libs/starparse/starparse-9999.ebuild
index 78f59c1..6b62899 100644
--- a/sci-libs/starparse/starparse-9999.ebuild
+++ b/sci-libs/starparse/starparse-9999.ebuild
@@ -10,7 +10,6 @@ inherit autotools-utils git-r3
 
 DESCRIPTION="Library for parsing NMR star files (peak-list format) and CIF files"
 HOMEPAGE="http://burrow-owl.sourceforge.net/"
-#SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
 EGIT_REPO_URI="git://burrow-owl.git.sourceforge.net/gitroot/burrow-owl/starparse"
 
 LICENSE="GPL-2"
@@ -18,11 +17,9 @@ SLOT="0"
 KEYWORDS=""
 IUSE="guile static-libs"
 
-RDEPEND="guile? ( dev-scheme/guile )"
+RDEPEND="guile? ( dev-scheme/guile:12 )"
 DEPEND="${RDEPEND}"
 
-AUTOTOOLS_IN_SOURCE_BUILD=1
-
 src_configure() {
 	local myeconfargs=( $(use_enable guile) )
 	autotools-utils_src_configure


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

* [gentoo-commits] proj/sci:master commit in: sci-libs/starparse/
@ 2013-12-28 19:02 Justin Lecher
  0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2013-12-28 19:02 UTC (permalink / raw
  To: gentoo-commits

commit:     6cf68b0006d39dbff6529caa6fc5bf0161bbfcaa
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 28 19:02:37 2013 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Dec 28 19:02:37 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=6cf68b00

sci-libs/starparse: Add missing dep on pkgconfig

Package-Manager: portage-2.2.7

---
 sci-libs/starparse/ChangeLog             | 3 +++
 sci-libs/starparse/starparse-9999.ebuild | 3 ++-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/sci-libs/starparse/ChangeLog b/sci-libs/starparse/ChangeLog
index d425538..56f12b5 100644
--- a/sci-libs/starparse/ChangeLog
+++ b/sci-libs/starparse/ChangeLog
@@ -3,6 +3,9 @@
 # $Header: $
 
   28 Dec 2013; Justin Lecher <jlec@gentoo.org> starparse-9999.ebuild:
+  Add missing dep on pkgconfig
+
+  28 Dec 2013; Justin Lecher <jlec@gentoo.org> starparse-9999.ebuild:
   Fix guile SLOT and drop out-of-source workaround
 
   28 Dec 2013; Justin Lecher <jlec@gentoo.org> -starparse-1.0.ebuild,

diff --git a/sci-libs/starparse/starparse-9999.ebuild b/sci-libs/starparse/starparse-9999.ebuild
index 6b62899..09265fc 100644
--- a/sci-libs/starparse/starparse-9999.ebuild
+++ b/sci-libs/starparse/starparse-9999.ebuild
@@ -18,7 +18,8 @@ KEYWORDS=""
 IUSE="guile static-libs"
 
 RDEPEND="guile? ( dev-scheme/guile:12 )"
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+	virtual/pkconfig"
 
 src_configure() {
 	local myeconfargs=( $(use_enable guile) )


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

* [gentoo-commits] proj/sci:master commit in: sci-libs/starparse/
@ 2021-01-19 16:56 Andrew Ammerlaan
  0 siblings, 0 replies; 6+ messages in thread
From: Andrew Ammerlaan @ 2021-01-19 16:56 UTC (permalink / raw
  To: gentoo-commits

commit:     08c7ebc9a7d5b1530983c1ffdce678a0a48625e4
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Jan 19 16:50:10 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Jan 19 16:50:10 2021 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=08c7ebc9

sci-libs/starparse: add  RESTRICT="!test? ( test )"

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 sci-libs/starparse/starparse-9999.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sci-libs/starparse/starparse-9999.ebuild b/sci-libs/starparse/starparse-9999.ebuild
index 4024c09f8..1e3deec02 100644
--- a/sci-libs/starparse/starparse-9999.ebuild
+++ b/sci-libs/starparse/starparse-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,9 @@ EGIT_REPO_URI="git://burrow-owl.git.sourceforge.net/gitroot/burrow-owl/starparse
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS=""
+
 IUSE="guile static-libs test"
+RESTRICT="!test? ( test )"
 
 REQUIRED_USE="test? ( guile )"
 


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

end of thread, other threads:[~2021-01-19 16:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-28 18:59 [gentoo-commits] proj/sci:master commit in: sci-libs/starparse/ Justin Lecher
  -- strict thread matches above, loose matches on Subject: below --
2021-01-19 16:56 Andrew Ammerlaan
2013-12-28 19:02 Justin Lecher
2013-12-28 18:59 Justin Lecher
2012-01-08 15:22 Justin Lecher
2012-01-08 15:22 Justin Lecher

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