public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Reinis Danne" <rei4dan@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/openbabel-python/
Date: Thu, 26 Sep 2013 20:27:37 +0000 (UTC)	[thread overview]
Message-ID: <1380227120.331fd5e22b676cf9fc135ca0bf9e956c056dd669.rei4dan@gentoo> (raw)

commit:     331fd5e22b676cf9fc135ca0bf9e956c056dd669
Author:     Reinis Danne <rei4dan <AT> gmail <DOT> com>
AuthorDate: Thu Sep 26 20:19:57 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=331fd5e2

Add sci-chemistry/openbabel-python live ebuild

---
 sci-chemistry/openbabel-python/ChangeLog           | 10 +++
 sci-chemistry/openbabel-python/metadata.xml        | 12 ++++
 .../openbabel-python/openbabel-python-9999.ebuild  | 84 ++++++++++++++++++++++
 3 files changed, 106 insertions(+)

diff --git a/sci-chemistry/openbabel-python/ChangeLog b/sci-chemistry/openbabel-python/ChangeLog
new file mode 100644
index 0000000..0f52b41
--- /dev/null
+++ b/sci-chemistry/openbabel-python/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for sci-chemistry/openbabel-python
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*openbabel-python-9999 (26 Sep 2013)
+
+  26 Sep 2013; Reinis Danne <rei4dan@gmail.com> +openbabel-python-9999.ebuild,
+  +metadata.xml:
+  Add live ebuild.
+

diff --git a/sci-chemistry/openbabel-python/metadata.xml b/sci-chemistry/openbabel-python/metadata.xml
new file mode 100644
index 0000000..f857801
--- /dev/null
+++ b/sci-chemistry/openbabel-python/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 Python programs.
+  </longdescription>
+</pkgmetadata>

diff --git a/sci-chemistry/openbabel-python/openbabel-python-9999.ebuild b/sci-chemistry/openbabel-python/openbabel-python-9999.ebuild
new file mode 100644
index 0000000..f0b1132
--- /dev/null
+++ b/sci-chemistry/openbabel-python/openbabel-python-9999.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
+
+inherit cmake-utils eutils git-2 multilib python-r1
+
+DESCRIPTION="Python bindings for OpenBabel (including Pybel)"
+HOMEPAGE="http://openbabel.sourceforge.net/"
+EGIT_REPO_URI="https://github.com/openbabel/openbabel.git"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+	!sci-chemistry/babel
+	~sci-chemistry/openbabel-${PV}
+	sys-libs/zlib"
+DEPEND="${RDEPEND}
+	>=dev-util/cmake-2.4.8
+	>=dev-lang/swig-2"
+
+S="${WORKDIR}"/openbabel-${PV}
+
+src_prepare() {
+	cmake-utils_src_prepare
+	sed \
+		-e "s:\"\.\.\":\"${EPREFIX}/usr\":g" \
+		-i test/testbabel.py || die
+	swig -python -c++ -small -O -templatereduce -naturalvar \
+		-I"${EPREFIX}/usr/include/openbabel-2.0" \
+		-o scripts/python/openbabel-python.cpp \
+		-DHAVE_EIGEN \
+		-outdir scripts/python \
+		scripts/openbabel-python.i \
+		|| die "Regeneration of openbabel-python.cpp failed"
+}
+
+src_configure() {
+	my_impl_src_configure() {
+		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}/usr/$(get_libdir)/${EPYTHON}/site-packages
+			-DPYTHON_BINDINGS=ON
+			-DPYTHON_EXECUTABLE=${PYTHON}
+			-DPYTHON_INCLUDE_DIR=${EPREFIX}/usr/include/${EPYTHON}
+			-DPYTHON_LIBRARY=${EPREFIX}/usr/$(get_libdir)/lib${EPYTHON}.so
+			-DENABLE_TESTS=ON"
+
+		cmake-utils_src_configure
+	}
+
+	python_foreach_impl my_impl_src_configure
+}
+
+src_compile() {
+	python_parallel_foreach_impl cmake-utils_src_make bindings_python
+}
+
+src_test() {
+	python_foreach_impl cmake-utils_src_test -R py
+}
+
+src_install() {
+	my_impl_src_install() {
+		cd "${BUILD_DIR}" || die
+
+		cmake -DCOMPONENT=bindings_python -P cmake_install.cmake
+
+		python_optimize
+	}
+
+	python_foreach_impl my_impl_src_install
+}


             reply	other threads:[~2013-09-26 20:27 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-26 20:27 Reinis Danne [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-01-05 19:38 [gentoo-commits] proj/sci:master commit in: sci-chemistry/openbabel-python/ Andrew Ammerlaan
2016-01-07  9:16 Justin Lecher
2016-01-06  7:53 Justin Lecher
2015-11-11 14:38 Justin Lecher
2014-09-16 17:01 Christoph Junghans
2014-06-11 14:47 Reinis Danne
2014-02-14 18:19 Reinis Danne
2014-01-06 18:48 Justin Lecher
2013-11-14 17:30 Reinis Danne
2012-11-11  9:52 Reinis Danne
2012-10-19 20:59 Reinis Danne
2012-10-19 20:40 Reinis Danne
2011-03-26 16:03 Justin Lecher
2011-03-25 17:25 Justin Lecher
2011-03-10 19:00 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1380227120.331fd5e22b676cf9fc135ca0bf9e956c056dd669.rei4dan@gentoo \
    --to=rei4dan@gmail.com \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox