* [gentoo-commits] proj/sci:master commit in: sci-chemistry/openbabel-perl/
@ 2011-03-25 17:25 Justin Lecher
0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2011-03-25 17:25 UTC (permalink / raw
To: gentoo-commits
commit: 4b9a52429274209b0427bf2a1f8ada8949c291dd
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 25 17:24:51 2011 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Mar 25 17:24:51 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4b9a5242
Semi broken perl support for openbael
(Portage version: 2.2.0_alpha28/git/Linux x86_64, signed Manifest commit with key 70EB7916)
---
sci-chemistry/openbabel-perl/ChangeLog | 10 +++++-
...rl-2.2.1.ebuild => openbabel-perl-2.2.3.ebuild} | 10 +++---
...rl-2.2.2.ebuild => openbabel-perl-2.3.0.ebuild} | 39 ++++++++------------
3 files changed, 29 insertions(+), 30 deletions(-)
diff --git a/sci-chemistry/openbabel-perl/ChangeLog b/sci-chemistry/openbabel-perl/ChangeLog
index f37f90a..456d006 100644
--- a/sci-chemistry/openbabel-perl/ChangeLog
+++ b/sci-chemistry/openbabel-perl/ChangeLog
@@ -1,7 +1,15 @@
# ChangeLog for sci-chemistry/openbabel-perl
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*openbabel-perl-2.3.0 (25 Mar 2011)
+*openbabel-perl-2.2.3 (25 Mar 2011)
+
+ 25 Mar 2011; Justin Lecher <jlec@gentoo.org> -openbabel-perl-2.2.1.ebuild,
+ -openbabel-perl-2.2.2.ebuild, +openbabel-perl-2.2.3.ebuild,
+ +openbabel-perl-2.3.0.ebuild:
+ Semi broken perl support for openbael
+
10 Jul 2010; Andreas K. Huettel (dilfridge) <mail@akhuettel.de>
-openbabel-perl-2.2.0.ebuild, openbabel-perl-2.2.1.ebuild,
openbabel-perl-2.2.2.ebuild:
diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-2.2.1.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-2.2.3.ebuild
similarity index 89%
rename from sci-chemistry/openbabel-perl/openbabel-perl-2.2.1.ebuild
rename to sci-chemistry/openbabel-perl/openbabel-perl-2.2.3.ebuild
index 85fb387..45ada92 100644
--- a/sci-chemistry/openbabel-perl/openbabel-perl-2.2.1.ebuild
+++ b/sci-chemistry/openbabel-perl/openbabel-perl-2.2.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
@@ -13,11 +13,11 @@ SLOT="0"
LICENSE="GPL-2"
IUSE="swig"
-RDEPEND="~sci-chemistry/openbabel-${PV}
- dev-lang/perl"
-
+RDEPEND="
+ dev-lang/perl
+ ~sci-chemistry/openbabel-${PV}"
DEPEND="${RDEPEND}
- swig? ( >=dev-lang/swig-1.3.38 )"
+ swig? ( dev-lang/swig )"
src_unpack() {
unpack ${A}
diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-2.2.2.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-2.3.0.ebuild
similarity index 53%
rename from sci-chemistry/openbabel-perl/openbabel-perl-2.2.2.ebuild
rename to sci-chemistry/openbabel-perl/openbabel-perl-2.3.0.ebuild
index 2eac693..0a0a667 100644
--- a/sci-chemistry/openbabel-perl/openbabel-perl-2.2.2.ebuild
+++ b/sci-chemistry/openbabel-perl/openbabel-perl-2.3.0.ebuild
@@ -1,55 +1,46 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-inherit eutils perl-module
+EAPI="3"
+
+inherit cmake-utils eutils perl-module
DESCRIPTION="Perl bindings for OpenBabel"
HOMEPAGE="http://openbabel.sourceforge.net/"
SRC_URI="mirror://sourceforge/openbabel/openbabel-${PV}.tar.gz"
-KEYWORDS="~amd64"
+#KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
SLOT="0"
LICENSE="GPL-2"
IUSE="swig"
-RDEPEND="~sci-chemistry/openbabel-${PV}
- dev-lang/perl"
-
+RDEPEND="
+ dev-lang/perl
+ ~sci-chemistry/openbabel-${PV}"
DEPEND="${RDEPEND}
- swig? ( >=dev-lang/swig-1.3.39 )"
+ swig? ( dev-lang/swig )"
-src_unpack() {
- unpack ${A}
S="${WORKDIR}/openbabel-${PV}"
- cd "${S}"
- econf \
- $(use_enable swig maintainer-mode) \
- --enable-static \
- || die "econf failed"
- S="${S}/scripts"
- cd "${S}"
- if use swig ; then
- emake -W openbabel-perl.i perl/openbabel_perl.cpp \
- || die "Failed to make SWIG perl bindings"
- fi
- S="${S}/perl"
- cd "${S}"
- epatch "${FILESDIR}/${P}-makefile.patch" \
- || die "Failed to apply ${P}-makefile.patch"
+src_configure() {
+ local mycmakeargs="-DPERL_BINDINGS=ON $(cmake-utils_use_enable swig RUN_SWIG)"
+ cmake-utils_src_configure
}
src_compile() {
+ cd "${WORKDIR}/${P}_build/scripts"
perl-module_src_prep
perl-module_src_compile
}
src_test() {
+ cd "${WORKDIR}/${P}_build/scripts"
emake test || die "make test failed"
}
src_install() {
+ cd "${WORKDIR}/${P}_build/scripts"
perl-module_src_install
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/openbabel-perl/
@ 2013-09-26 20:27 Reinis Danne
0 siblings, 0 replies; 7+ messages in thread
From: Reinis Danne @ 2013-09-26 20:27 UTC (permalink / raw
To: gentoo-commits
commit: e75ac73b4b32cccf5d834e468e62a2429549d295
Author: Reinis Danne <rei4dan <AT> gmail <DOT> com>
AuthorDate: Thu Sep 26 19:20:39 2013 +0000
Commit: Reinis Danne <rei4dan <AT> gmail <DOT> com>
CommitDate: Thu Sep 26 20:25:20 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e75ac73b
Add sci-chemistry/openbabel-perl live ebuild
---
sci-chemistry/openbabel-perl/ChangeLog | 10 ++++
sci-chemistry/openbabel-perl/metadata.xml | 12 ++++
.../openbabel-perl/openbabel-perl-9999.ebuild | 64 ++++++++++++++++++++++
3 files changed, 86 insertions(+)
diff --git a/sci-chemistry/openbabel-perl/ChangeLog b/sci-chemistry/openbabel-perl/ChangeLog
new file mode 100644
index 0000000..14040e1
--- /dev/null
+++ b/sci-chemistry/openbabel-perl/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for sci-chemistry/openbabel-perl
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*openbabel-perl-9999 (26 Sep 2013)
+
+ 26 Sep 2013; Reinis Danne <rei4dan@gmail.com> +openbabel-perl-9999.ebuild,
+ +metadata.xml:
+ Add live ebuild.
+
diff --git a/sci-chemistry/openbabel-perl/metadata.xml b/sci-chemistry/openbabel-perl/metadata.xml
new file mode 100644
index 0000000..0750562
--- /dev/null
+++ b/sci-chemistry/openbabel-perl/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>sci-chemistry</herd>
+ <longdescription>
+ Open Babel is a chemical toolbox designed to speak the many languages of
+ chemical data. It's an open, collaborative project allowing anyone to
+ search, convert, analyze, or store data from molecular modeling, chemistry,
+ solid-state materials, biochemistry, or related areas.
+ This package enables to access Open Babel library from Perl programs.
+ </longdescription>
+</pkgmetadata>
diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
new file mode 100644
index 0000000..2a352a8
--- /dev/null
+++ b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit cmake-utils eutils git-2 perl-module
+
+DESCRIPTION="Perl bindings for OpenBabel"
+HOMEPAGE="http://openbabel.sourceforge.net/"
+EGIT_REPO_URI="https://github.com/openbabel/openbabel.git"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS=""
+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}"
+
+src_unpack() {
+ git-2_src_unpack
+}
+
+src_configure() {
+ perl_set_version
+ local mycmakeargs="${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=${ED}/${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"
+ cp \
+ "${CMAKE_USE_DIR}/scripts/perl/OpenBabel.pm" \
+ "${CMAKE_BUILD_DIR}/$(get_libdir)/Chemistry/"
+ 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}"
+ cmake -DCOMPONENT=bindings_perl -P cmake_install.cmake
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/openbabel-perl/
@ 2014-01-06 18:48 Justin Lecher
0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2014-01-06 18:48 UTC (permalink / raw
To: gentoo-commits
commit: b13aa3d502a4265715ae96f1c617e07d4acba3ea
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 6 18:39:27 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Jan 6 18:39:27 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=b13aa3d5
sci-chemistry/openbabel-perl: Switch from git-2 to git-r3
Package-Manager: portage-2.2.8
---
sci-chemistry/openbabel-perl/ChangeLog | 5 ++++-
sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild | 6 +++---
2 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/sci-chemistry/openbabel-perl/ChangeLog b/sci-chemistry/openbabel-perl/ChangeLog
index 14040e1..0d168a9 100644
--- a/sci-chemistry/openbabel-perl/ChangeLog
+++ b/sci-chemistry/openbabel-perl/ChangeLog
@@ -1,7 +1,10 @@
# ChangeLog for sci-chemistry/openbabel-perl
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 06 Jan 2014; Justin Lecher <jlec@gentoo.org> openbabel-perl-9999.ebuild:
+ Switch from git-2 to git-r3
+
*openbabel-perl-9999 (26 Sep 2013)
26 Sep 2013; Reinis Danne <rei4dan@gmail.com> +openbabel-perl-9999.ebuild,
diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
index 2a352a8..daeb246 100644
--- a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
+++ b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
-inherit cmake-utils eutils git-2 perl-module
+inherit cmake-utils eutils git-r3 perl-module
DESCRIPTION="Perl bindings for OpenBabel"
HOMEPAGE="http://openbabel.sourceforge.net/"
@@ -25,7 +25,7 @@ DEPEND="${RDEPEND}
S="${WORKDIR}/openbabel-${PV}"
src_unpack() {
- git-2_src_unpack
+ git-r3_src_unpack
}
src_configure() {
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/openbabel-perl/
@ 2014-02-14 18:19 Reinis Danne
0 siblings, 0 replies; 7+ messages in thread
From: Reinis Danne @ 2014-02-14 18:19 UTC (permalink / raw
To: gentoo-commits
commit: 0b5662a360e02a51ec7aaba90a5c6b5242903152
Author: Reinis Danne <rei4dan <AT> gmail <DOT> com>
AuthorDate: Fri Feb 14 18:09:26 2014 +0000
Commit: Reinis Danne <rei4dan <AT> gmail <DOT> com>
CommitDate: Fri Feb 14 18:09:26 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=0b5662a3
sci-chemistry/openbabel-perl: Fix move to git-r3
---
sci-chemistry/openbabel-perl/ChangeLog | 3 +++
sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild | 2 --
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/sci-chemistry/openbabel-perl/ChangeLog b/sci-chemistry/openbabel-perl/ChangeLog
index 0d168a9..38e6e14 100644
--- a/sci-chemistry/openbabel-perl/ChangeLog
+++ b/sci-chemistry/openbabel-perl/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 14 Feb 2014; Reinis Danne <rei4dan@gmail.com> openbabel-perl-9999.ebuild:
+ Fix move to git-r3.
+
06 Jan 2014; Justin Lecher <jlec@gentoo.org> openbabel-perl-9999.ebuild:
Switch from git-2 to git-r3
diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
index daeb246..2c54899 100644
--- a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
+++ b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
@@ -22,8 +22,6 @@ DEPEND="${RDEPEND}
>=dev-util/cmake-2.4.8
>=dev-lang/swig-2"
-S="${WORKDIR}/openbabel-${PV}"
-
src_unpack() {
git-r3_src_unpack
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/openbabel-perl/
@ 2014-09-16 17:01 Christoph Junghans
0 siblings, 0 replies; 7+ messages in thread
From: Christoph Junghans @ 2014-09-16 17:01 UTC (permalink / raw
To: gentoo-commits
commit: b2436002f8aff35c6b91b193e60b4cd098ba1527
Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 16 16:38:30 2014 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Tue Sep 16 16:38:30 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=b2436002
quote vars
Package-Manager: portage-2.2.8-r1
---
sci-chemistry/openbabel-perl/ChangeLog | 5 ++++-
sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild | 11 ++++++-----
2 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/sci-chemistry/openbabel-perl/ChangeLog b/sci-chemistry/openbabel-perl/ChangeLog
index 38e6e14..88e2b35 100644
--- a/sci-chemistry/openbabel-perl/ChangeLog
+++ b/sci-chemistry/openbabel-perl/ChangeLog
@@ -2,6 +2,10 @@
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 16 Sep 2014; Christoph Junghans <ottxor@gentoo.org>
+ openbabel-perl-9999.ebuild:
+ quote vars
+
14 Feb 2014; Reinis Danne <rei4dan@gmail.com> openbabel-perl-9999.ebuild:
Fix move to git-r3.
@@ -13,4 +17,3 @@
26 Sep 2013; Reinis Danne <rei4dan@gmail.com> +openbabel-perl-9999.ebuild,
+metadata.xml:
Add live ebuild.
-
diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
index 2c54899..207a1b4 100644
--- a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
+++ b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
@@ -28,14 +28,15 @@ src_unpack() {
src_configure() {
perl_set_version
- 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=${ED}/${VENDOR_ARCH}
+ -DBABEL_SYSTEM_LIBRARY="${EPREFIX}"/usr/$(get_libdir)/libopenbabel.so
+ -DOB_MODULE_PATH="${EPREFIX}"/usr/$(get_libdir)/openbabel/${PV}
+ -DLIB_INSTALL_DIR="${ED}/${VENDOR_ARCH}"
-DPERL_BINDINGS=ON
- -DRUN_SWIG=ON"
+ -DRUN_SWIG=ON
+ )
cmake-utils_src_configure
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/openbabel-perl/
@ 2016-01-06 7:53 Justin Lecher
0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2016-01-06 7:53 UTC (permalink / raw
To: gentoo-commits
commit: 3ba96f893fe3d245d76283e9f4fee235b10b0f18
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 6 07:25:48 2016 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Jan 6 07:25:48 2016 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=3ba96f89
sci-chemistry/openbabel-perl: Respect CXXFLAGS
Package-Manager: portage-2.2.26
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
sci-chemistry/openbabel-perl/metadata.xml | 2 +-
sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/sci-chemistry/openbabel-perl/metadata.xml b/sci-chemistry/openbabel-perl/metadata.xml
index c73e211..506b159 100644
--- a/sci-chemistry/openbabel-perl/metadata.xml
+++ b/sci-chemistry/openbabel-perl/metadata.xml
@@ -1,4 +1,4 @@
-<?xml version='1.0' encoding='UTF-8'?>
+<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>sci-chemistry</herd>
diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
index e61d472..ca1bc98 100644
--- a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
+++ b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -29,6 +29,7 @@ src_unpack() {
src_configure() {
perl_set_version
local mycmakeargs=(
+ -DOPTIMIZE_NATIVE=OFF
-DCMAKE_INSTALL_RPATH=
-DBINDINGS_ONLY=ON
-DBABEL_SYSTEM_LIBRARY="${EPREFIX}"/usr/$(get_libdir)/libopenbabel.so
@@ -50,14 +51,13 @@ src_test() {
cp \
"${CMAKE_USE_DIR}/scripts/perl/OpenBabel.pm" \
"${BUILD_DIR}/$(get_libdir)/Chemistry/"
- for i in "${CMAKE_USE_DIR}"/scripts/perl/t/*
- do
+ for i in "${CMAKE_USE_DIR}"/scripts/perl/t/*; do
einfo "Running test: ${i}"
perl -I"${BUILD_DIR}/$(get_libdir)" "${i}" || die
done
}
src_install() {
- cd "${BUILD_DIR}"
+ cd "${BUILD_DIR}" || die
cmake -DCOMPONENT=bindings_perl -P cmake_install.cmake
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/openbabel-perl/
@ 2020-09-22 11:47 Aisha Tammy
0 siblings, 0 replies; 7+ messages in thread
From: Aisha Tammy @ 2020-09-22 11:47 UTC (permalink / raw
To: gentoo-commits
commit: 48a818cd0ce846487ddfa226874a0ba41ba2fea3
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Sep 22 11:47:18 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Sep 22 11:47:18 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=48a818cd
sci-chemistry/openbabel-perl: drop package
present in ::gentoo
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
sci-chemistry/openbabel-perl/metadata.xml | 18 -------
.../openbabel-perl/openbabel-perl-9999.ebuild | 62 ----------------------
2 files changed, 80 deletions(-)
diff --git a/sci-chemistry/openbabel-perl/metadata.xml b/sci-chemistry/openbabel-perl/metadata.xml
deleted file mode 100644
index 3dc4c5711..000000000
--- a/sci-chemistry/openbabel-perl/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci-chemistry@gentoo.org</email>
- <name>Gentoo Chemistry Project</name>
- </maintainer>
- <longdescription>
-Open Babel is a chemical toolbox designed to speak the many languages of
-chemical data. It's an open, collaborative project allowing anyone to
-search, convert, analyze, or store data from molecular modeling, chemistry,
-solid-state materials, biochemistry, or related areas.
-This package enables to access Open Babel library from Perl programs.
-</longdescription>
- <upstream>
- <remote-id type="sourceforge">openbabel</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
deleted file mode 100644
index b9eaa3570..000000000
--- a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils eutils git-r3 perl-module
-
-DESCRIPTION="Perl bindings for OpenBabel"
-HOMEPAGE="http://openbabel.sourceforge.net/"
-EGIT_REPO_URI="https://github.com/openbabel/openbabel.git"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-RDEPEND="
- dev-lang/perl
- ~sci-chemistry/openbabel-${PV}"
-DEPEND="${RDEPEND}
- >=dev-util/cmake-2.4.8
- >=dev-lang/swig-2"
-
-src_unpack() {
- git-r3_src_unpack
-}
-
-src_configure() {
- perl_set_version
- local mycmakeargs=(
- -DOPTIMIZE_NATIVE=OFF
- -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="${ED}/${VENDOR_ARCH}"
- -DPERL_BINDINGS=ON
- -DRUN_SWIG=ON
- )
-
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile bindings_perl
-}
-
-src_test() {
- mkdir "${BUILD_DIR}/$(get_libdir)/Chemistry"
- cp \
- "${CMAKE_USE_DIR}/scripts/perl/OpenBabel.pm" \
- "${BUILD_DIR}/$(get_libdir)/Chemistry/"
- for i in "${CMAKE_USE_DIR}"/scripts/perl/t/*; do
- einfo "Running test: ${i}"
- perl -I"${BUILD_DIR}/$(get_libdir)" "${i}" || die
- done
-}
-
-src_install() {
- cd "${BUILD_DIR}" || die
- cmake -DCOMPONENT=bindings_perl -P cmake_install.cmake
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2020-09-22 11:48 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-16 17:01 [gentoo-commits] proj/sci:master commit in: sci-chemistry/openbabel-perl/ Christoph Junghans
-- strict thread matches above, loose matches on Subject: below --
2020-09-22 11:47 Aisha Tammy
2016-01-06 7:53 Justin Lecher
2014-02-14 18:19 Reinis Danne
2014-01-06 18:48 Justin Lecher
2013-09-26 20:27 Reinis Danne
2011-03-25 17:25 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox