public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/openbabel-perl/
@ 2015-10-27 18:13 Justin Lecher
  0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2015-10-27 18:13 UTC (permalink / raw
  To: gentoo-commits

commit:     5b884d991516e0bc74ff09d362e6c1e2f4399808
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 27 18:13:50 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Oct 27 18:13:50 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b884d99

sci-chemistry/openbabel-perl: Fix for gcc-5

convert mycmakeargs to be an array

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 sci-chemistry/openbabel-perl/openbabel-perl-2.3.2.ebuild | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-2.3.2.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-2.3.2.ebuild
index 71a41ba..0331dc7 100644
--- a/sci-chemistry/openbabel-perl/openbabel-perl-2.3.2.ebuild
+++ b/sci-chemistry/openbabel-perl/openbabel-perl-2.3.2.ebuild
@@ -25,6 +25,9 @@ DEPEND="${RDEPEND}
 S="${WORKDIR}/openbabel-${PV}"
 
 src_prepare() {
+	sed \
+		-e '/__GNUC__/s:== 4:>= 4:g' \
+		-i include/openbabel/shared_ptr.h || die
 	epatch \
 		"${FILESDIR}"/${P}-trunk_cmake.patch \
 		"${FILESDIR}"/${P}-bindings_only.patch
@@ -32,14 +35,15 @@ src_prepare() {
 }
 
 src_configure() {
-	local mycmakeargs="${mycmakeargs}
+	local mycmakeargs=(
 		-DCMAKE_INSTALL_RPATH=
 		-DBINDINGS_ONLY=ON
 		-DBABEL_SYSTEM_LIBRARY="${EPREFIX}/usr/$(get_libdir)/libopenbabel.so"
 		-DOB_MODULE_PATH="${EPREFIX}/usr/$(get_libdir)/openbabel/${PV}"
 		-DLIB_INSTALL_DIR="${D}/${VENDOR_ARCH}"
 		-DPERL_BINDINGS=ON
-		-DRUN_SWIG=ON"
+		-DRUN_SWIG=ON
+	)
 
 	cmake-utils_src_configure
 }


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

* [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/openbabel-perl/
@ 2017-05-19  9:52 Justin Lecher
  0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2017-05-19  9:52 UTC (permalink / raw
  To: gentoo-commits

commit:     6db59b1b66771c9769ab80f7b4663b18123f3437
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri May 19 09:37:53 2017 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri May 19 09:52:25 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6db59b1b

sci-chemistry/openbabel-perl: Version Bump

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=618402
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 sci-chemistry/openbabel-perl/Manifest              |  1 +
 .../openbabel-perl/openbabel-perl-2.4.1.ebuild     | 70 ++++++++++++++++++++++
 2 files changed, 71 insertions(+)

diff --git a/sci-chemistry/openbabel-perl/Manifest b/sci-chemistry/openbabel-perl/Manifest
index 082e5b02984..3d09a5c54b9 100644
--- a/sci-chemistry/openbabel-perl/Manifest
+++ b/sci-chemistry/openbabel-perl/Manifest
@@ -1 +1,2 @@
 DIST openbabel-2.3.2.tar.gz 20509105 SHA256 4eaca26679aa6cc85ebf96af19191472ac63ca442c36b0427b369c3a25705188 SHA512 d0e1f8b758ffdd65ec6c31d988bffe3279355e286ce69fad12c5905b3b832e2b73ee95b1061b1576aba1ee9fe4da5e31ec30350c473be17493c657dc80caf919 WHIRLPOOL 74eff18b73d24c8f702e5573a58ba6afba8402e9ce8782de95dc0568575a7d2d632dbc8e8a98b3cd25efdfa7379494f7dcd449342c81ddf73f42a387bce77aaa
+DIST openbabel-2.4.1.tar.gz 11618304 SHA256 204136582cdfe51d792000b20202de8950218d617fd9c6e18cee36706a376dfc SHA512 427e678f0a911bd27b9a8a05e60b6e09f113be4e5dd180daaf80c28d06368e52b57501261755ab3817a8d31f2754db24471fd0ceee706d029386d6f70800e9c6 WHIRLPOOL 88e333b47118449e1edba2b164af77ac7fac9c60e2965b5d6657ba8cf981845f49f6bac9427515ebbdf62668fddf38ae2422c4e107b98df46922c5bba860b216

diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild
new file mode 100644
index 00000000000..a9493e69441
--- /dev/null
+++ b/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils perl-module
+
+DESCRIPTION="Perl bindings for OpenBabel"
+HOMEPAGE="http://openbabel.sourceforge.net/"
+SRC_URI="mirror://sourceforge/openbabel/openbabel-${PV}.tar.gz"
+
+KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
+SLOT="0/5"
+LICENSE="GPL-2"
+IUSE=""
+
+RDEPEND="
+	dev-lang/perl:=
+	~sci-chemistry/openbabel-${PV}"
+DEPEND="${RDEPEND}
+	>=dev-util/cmake-2.4.8
+	>=dev-lang/swig-2"
+
+S="${WORKDIR}/openbabel-${PV}"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-2.3.2-gcc-6_and_7-backport.patch
+)
+
+src_prepare() {
+	sed \
+		-e '/__GNUC__/s:== 4:>= 4:g' \
+		-i include/openbabel/shared_ptr.h || die
+	default
+	perl_set_version
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DCMAKE_INSTALL_RPATH=
+		-DBINDINGS_ONLY=ON
+		-DBABEL_SYSTEM_LIBRARY="${EPREFIX}/usr/$(get_libdir)/libopenbabel.so"
+		-DOB_MODULE_PATH="${EPREFIX}/usr/$(get_libdir)/openbabel/${PV}"
+		-DLIB_INSTALL_DIR="${D}/${VENDOR_ARCH}"
+		-DPERL_BINDINGS=ON
+		-DRUN_SWIG=ON
+	)
+
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	cmake-utils_src_compile bindings_perl
+}
+
+src_test() {
+	mkdir "${CMAKE_BUILD_DIR}/$(get_libdir)/Chemistry" || die
+	cp \
+		"${CMAKE_USE_DIR}/scripts/perl/OpenBabel.pm" \
+		"${CMAKE_BUILD_DIR}/$(get_libdir)/Chemistry/" || die
+	for i in "${CMAKE_USE_DIR}"/scripts/perl/t/*; do
+		einfo "Running test: ${i}"
+		perl -I"${CMAKE_BUILD_DIR}/$(get_libdir)" "${i}" || die
+	done
+}
+
+src_install() {
+	cd "${CMAKE_BUILD_DIR}" || die
+	cmake -DCOMPONENT=bindings_perl -P cmake_install.cmake
+}


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

* [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/openbabel-perl/
@ 2017-07-31 11:36 Tobias Klausmann
  0 siblings, 0 replies; 5+ messages in thread
From: Tobias Klausmann @ 2017-07-31 11:36 UTC (permalink / raw
  To: gentoo-commits

commit:     c7781141487408e4225e581ab59908aa6ae1d76a
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 31 11:05:18 2017 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Mon Jul 31 11:36:45 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7781141

sci-chemistry/openbabel-perl-2.4.1-r0: amd64 stable

Gentoo-Bug: 625088

 sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild
index a9493e69441..f17f08b3748 100644
--- a/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild
+++ b/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Perl bindings for OpenBabel"
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/openbabel-${PV}.tar.gz"
 
-KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
 SLOT="0/5"
 LICENSE="GPL-2"
 IUSE=""


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

* [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/openbabel-perl/
@ 2017-09-12 22:58 Matt Turner
  0 siblings, 0 replies; 5+ messages in thread
From: Matt Turner @ 2017-09-12 22:58 UTC (permalink / raw
  To: gentoo-commits

commit:     8fdbb06b6859da48aae2dce80119b30f0e102050
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 12 22:47:03 2017 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Sep 12 22:58:18 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fdbb06b

sci-chemistry/openbabel-perl-2.4.1: dropped ppc keywords, bug 625088

 sci-chemistry/openbabel-perl/openbabel-perl-2.3.2.ebuild | 2 +-
 sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-2.3.2.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-2.3.2.ebuild
index e7f3aafc6d9..1f6b5d8005a 100644
--- a/sci-chemistry/openbabel-perl/openbabel-perl-2.3.2.ebuild
+++ b/sci-chemistry/openbabel-perl/openbabel-perl-2.3.2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Perl bindings for OpenBabel"
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/openbabel-${PV}.tar.gz"
 
-KEYWORDS="amd64 ~arm ppc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE=""

diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild
index f17f08b3748..96e5d21d800 100644
--- a/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild
+++ b/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Perl bindings for OpenBabel"
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/openbabel-${PV}.tar.gz"
 
-KEYWORDS="amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
 SLOT="0/5"
 LICENSE="GPL-2"
 IUSE=""


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

* [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/openbabel-perl/
@ 2017-10-05 12:05 Michael Palimaka
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Palimaka @ 2017-10-05 12:05 UTC (permalink / raw
  To: gentoo-commits

commit:     7fa0220114cf62eb0fee54a4b44d90141a8b6fdd
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Oct  5 11:48:54 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Oct  5 12:04:47 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fa02201

sci-chemistry/openbabel-perl: stabilise 2.4.11 for x86

Bug: https://bugs.gentoo.org/625088
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild
index 96e5d21d800..1e01e9007b7 100644
--- a/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild
+++ b/sci-chemistry/openbabel-perl/openbabel-perl-2.4.1.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Perl bindings for OpenBabel"
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/openbabel-${PV}.tar.gz"
 
-KEYWORDS="amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
 SLOT="0/5"
 LICENSE="GPL-2"
 IUSE=""


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

end of thread, other threads:[~2017-10-05 12:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-12 22:58 [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/openbabel-perl/ Matt Turner
  -- strict thread matches above, loose matches on Subject: below --
2017-10-05 12:05 Michael Palimaka
2017-07-31 11:36 Tobias Klausmann
2017-05-19  9:52 Justin Lecher
2015-10-27 18:13 Justin Lecher

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