public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog
@ 2012-12-06 17:09 Justin Lecher (jlec)
  0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher (jlec) @ 2012-12-06 17:09 UTC (permalink / raw
  To: gentoo-commits

jlec        12/12/06 17:09:30

  Modified:             ChangeLog
  Added:                openbabel-python-2.3.2.ebuild
  Log:
  sci-chemistry/openbabel-python: Version Bump prepared by Reinis Danne, #439434
  
  (Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key 70EB7916)

Revision  Changes    Path
1.9                  sci-chemistry/openbabel-python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	4 Mar 2012 10:29:38 -0000	1.8
+++ ChangeLog	6 Dec 2012 17:09:30 -0000	1.9
@@ -1,6 +1,13 @@
 # ChangeLog for sci-chemistry/openbabel-python
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.8 2012/03/04 10:29:38 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.9 2012/12/06 17:09:30 jlec Exp $
+
+*openbabel-python-2.3.2 (06 Dec 2012)
+
+  06 Dec 2012; Justin Lecher <jlec@gentoo.org> +openbabel-python-2.3.2.ebuild,
+  +files/openbabel-python-2.3.2-bindings_only.patch,
+  +files/openbabel-python-2.3.2-testpybel.patch:
+  Version Bump prepared by Reinis Danne, #439434
 
 *openbabel-python-2.3.1 (04 Mar 2012)
 



1.1                  sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.1&content-type=text/plain

Index: openbabel-python-2.3.2.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.1 2012/12/06 17:09:30 jlec Exp $

EAPI=5

PYTHON_COMPAT=(python2_6 python2_7 python3_1 python3_2)

inherit cmake-utils eutils multilib python-r1

DESCRIPTION="Python bindings for OpenBabel (including Pybel)"
HOMEPAGE="http://openbabel.sourceforge.net/"
SRC_URI="mirror://sourceforge/openbabel/openbabel-${PV}.tar.gz"

KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
SLOT="0"
LICENSE="GPL-2"
IUSE=""

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}

PATCHES=(
	"${FILESDIR}/${P}-testpybel.patch"
	"${FILESDIR}/${P}-bindings_only.patch" )

src_prepare() {
	base_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() {
		CMAKE_BUILD_DIR="${BUILD_DIR}"
		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() {
	my_impl_src_compile() {
		CMAKE_BUILD_DIR="${BUILD_DIR}"

		cmake-utils_src_make bindings_python
	}

	python_foreach_impl my_impl_src_compile
}

src_test() {
	my_impl_src_test() {
		CMAKE_BUILD_DIR="${BUILD_DIR}"
		cmake-utils_src_test -R py
	}

	python_foreach_impl my_impl_src_test
}

src_install() {
	my_impl_src_install() {
		cd "${BUILD_DIR}"

		cmake -DCOMPONENT=bindings_python -P cmake_install.cmake
	}

	python_foreach_impl my_impl_src_install
}





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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog
@ 2013-02-08 12:25 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-08 12:25 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/08 12:25:16

  Modified:             openbabel-python-2.3.2.ebuild ChangeLog
  Log:
  Add ~ppc, wrt bug #455960
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.3                  sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?r1=1.2&r2=1.3

Index: openbabel-python-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- openbabel-python-2.3.2.ebuild	23 Dec 2012 11:33:46 -0000	1.2
+++ openbabel-python-2.3.2.ebuild	8 Feb 2013 12:25:16 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.2 2012/12/23 11:33:46 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.3 2013/02/08 12:25:16 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/openbabel-${PV}.tar.gz"
 
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE=""



1.11                 sci-chemistry/openbabel-python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	23 Dec 2012 11:33:46 -0000	1.10
+++ ChangeLog	8 Feb 2013 12:25:16 -0000	1.11
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel-python
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.10 2012/12/23 11:33:46 jlec Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.11 2013/02/08 12:25:16 ago Exp $
+
+  08 Feb 2013; Agostino Sarubbo <ago@gentoo.org> openbabel-python-2.3.2.ebuild:
+  Add ~ppc, wrt bug #455960
 
   23 Dec 2012; Justin Lecher <jlec@gentoo.org> openbabel-python-2.3.2.ebuild,
   metadata.xml:
@@ -51,4 +54,3 @@
   +files/openbabel-python-2.3.0-py3_iterator.patch,
   +files/openbabel-python-2.3.0-wrap_OBInternalCoord.patch, +metadata.xml:
   Python Bindings for openbabel, writing by rei4dan
-





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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog
@ 2013-02-20 19:43 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-20 19:43 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/20 19:43:08

  Modified:             openbabel-python-2.3.2.ebuild ChangeLog
  Log:
  Add ~arm, wrt bug #455960
  
  (Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?r1=1.3&r2=1.4

Index: openbabel-python-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- openbabel-python-2.3.2.ebuild	8 Feb 2013 12:25:16 -0000	1.3
+++ openbabel-python-2.3.2.ebuild	20 Feb 2013 19:43:08 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.3 2013/02/08 12:25:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.4 2013/02/20 19:43:08 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/openbabel-${PV}.tar.gz"
 
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE=""



1.12                 sci-chemistry/openbabel-python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	8 Feb 2013 12:25:16 -0000	1.11
+++ ChangeLog	20 Feb 2013 19:43:08 -0000	1.12
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel-python
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.11 2013/02/08 12:25:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.12 2013/02/20 19:43:08 ago Exp $
+
+  20 Feb 2013; Agostino Sarubbo <ago@gentoo.org> openbabel-python-2.3.2.ebuild:
+  Add ~arm, wrt bug #455960
 
   08 Feb 2013; Agostino Sarubbo <ago@gentoo.org> openbabel-python-2.3.2.ebuild:
   Add ~ppc, wrt bug #455960





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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog
@ 2013-05-29 16:19 Justin Lecher (jlec)
  0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher (jlec) @ 2013-05-29 16:19 UTC (permalink / raw
  To: gentoo-commits

jlec        13/05/29 16:19:49

  Modified:             openbabel-python-2.3.2.ebuild ChangeLog
  Log:
  sci-chemistry/openbabel-python: Fix usage of new python r1 eclasses (missing PYTHON_REQUIRED_USE, PYTHON_DEPS)
  
  (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)

Revision  Changes    Path
1.5                  sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?r1=1.4&r2=1.5

Index: openbabel-python-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- openbabel-python-2.3.2.ebuild	20 Feb 2013 19:43:08 -0000	1.4
+++ openbabel-python-2.3.2.ebuild	29 May 2013 16:19:49 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.4 2013/02/20 19:43:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.5 2013/05/29 16:19:49 jlec Exp $
 
 EAPI=5
 
@@ -17,6 +17,8 @@
 LICENSE="GPL-2"
 IUSE=""
 
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
 RDEPEND="${PYTHON_DEPS}
 	!sci-chemistry/babel
 	~sci-chemistry/openbabel-${PV}



1.13                 sci-chemistry/openbabel-python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	20 Feb 2013 19:43:08 -0000	1.12
+++ ChangeLog	29 May 2013 16:19:49 -0000	1.13
@@ -1,6 +1,10 @@
 # ChangeLog for sci-chemistry/openbabel-python
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.12 2013/02/20 19:43:08 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.13 2013/05/29 16:19:49 jlec Exp $
+
+  29 May 2013; Justin Lecher <jlec@gentoo.org> openbabel-python-2.3.2.ebuild:
+  Fix usage of new python r1 eclasses (missing PYTHON_REQUIRED_USE,
+  PYTHON_DEPS)
 
   20 Feb 2013; Agostino Sarubbo <ago@gentoo.org> openbabel-python-2.3.2.ebuild:
   Add ~arm, wrt bug #455960





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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog
@ 2013-07-02 14:08 Justin Lecher (jlec)
  0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher (jlec) @ 2013-07-02 14:08 UTC (permalink / raw
  To: gentoo-commits

jlec        13/07/02 14:08:53

  Modified:             openbabel-python-2.3.2.ebuild ChangeLog
  Log:
  sci-chemistry/openbabel-python: Exchange base_src_prepare() by cmake-utils_src_prepare(), #475520
  
  (Portage version: 2.2.0_alpha186/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)

Revision  Changes    Path
1.6                  sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?r1=1.5&r2=1.6

Index: openbabel-python-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- openbabel-python-2.3.2.ebuild	29 May 2013 16:19:49 -0000	1.5
+++ openbabel-python-2.3.2.ebuild	2 Jul 2013 14:08:53 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.5 2013/05/29 16:19:49 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.6 2013/07/02 14:08:53 jlec Exp $
 
 EAPI=5
 
@@ -34,7 +34,7 @@
 	"${FILESDIR}/${P}-bindings_only.patch" )
 
 src_prepare() {
-	base_src_prepare
+	cmake-utils_src_prepare
 	sed \
 		-e "s:\"\.\.\":\"${EPREFIX}/usr\":g" \
 		-i test/testbabel.py || die



1.14                 sci-chemistry/openbabel-python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	29 May 2013 16:19:49 -0000	1.13
+++ ChangeLog	2 Jul 2013 14:08:53 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel-python
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.13 2013/05/29 16:19:49 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.14 2013/07/02 14:08:53 jlec Exp $
+
+  02 Jul 2013; Justin Lecher <jlec@gentoo.org> openbabel-python-2.3.2.ebuild:
+  Exchange base_src_prepare() by cmake-utils_src_prepare(), #475520
 
   29 May 2013; Justin Lecher <jlec@gentoo.org> openbabel-python-2.3.2.ebuild:
   Fix usage of new python r1 eclasses (missing PYTHON_REQUIRED_USE,





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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog
@ 2013-09-05 19:03 Michal Gorny (mgorny)
  0 siblings, 0 replies; 13+ messages in thread
From: Michal Gorny (mgorny) @ 2013-09-05 19:03 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/09/05 19:03:42

  Modified:             openbabel-python-2.3.2.ebuild ChangeLog
  Log:
  Clean up PYTHON_COMPAT from old implementations.
  
  (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.7                  sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?r1=1.6&r2=1.7

Index: openbabel-python-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- openbabel-python-2.3.2.ebuild	2 Jul 2013 14:08:53 -0000	1.6
+++ openbabel-python-2.3.2.ebuild	5 Sep 2013 19:03:42 -0000	1.7
@@ -1,10 +1,10 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.6 2013/07/02 14:08:53 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.7 2013/09/05 19:03:42 mgorny Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=(python2_6 python2_7 python3_1 python3_2)
+PYTHON_COMPAT=(python2_6 python2_7 python3_2)
 
 inherit cmake-utils eutils multilib python-r1
 



1.15                 sci-chemistry/openbabel-python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	2 Jul 2013 14:08:53 -0000	1.14
+++ ChangeLog	5 Sep 2013 19:03:42 -0000	1.15
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel-python
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.14 2013/07/02 14:08:53 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.15 2013/09/05 19:03:42 mgorny Exp $
+
+  05 Sep 2013; Michał Górny <mgorny@gentoo.org> openbabel-python-2.3.2.ebuild:
+  Clean up PYTHON_COMPAT from old implementations.
 
   02 Jul 2013; Justin Lecher <jlec@gentoo.org> openbabel-python-2.3.2.ebuild:
   Exchange base_src_prepare() by cmake-utils_src_prepare(), #475520





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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog
@ 2013-10-13  8:30 Pacho Ramos (pacho)
  0 siblings, 0 replies; 13+ messages in thread
From: Pacho Ramos (pacho) @ 2013-10-13  8:30 UTC (permalink / raw
  To: gentoo-commits

pacho       13/10/13 08:30:30

  Modified:             openbabel-python-2.3.2.ebuild ChangeLog
  Log:
  Also compatible with python3_3
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.8                  sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?r1=1.7&r2=1.8

Index: openbabel-python-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- openbabel-python-2.3.2.ebuild	5 Sep 2013 19:03:42 -0000	1.7
+++ openbabel-python-2.3.2.ebuild	13 Oct 2013 08:30:30 -0000	1.8
@@ -1,10 +1,10 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.7 2013/09/05 19:03:42 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.8 2013/10/13 08:30:30 pacho Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=(python2_6 python2_7 python3_2)
+PYTHON_COMPAT=(python{2_6,2_7,3_2,3_3})
 
 inherit cmake-utils eutils multilib python-r1
 



1.16                 sci-chemistry/openbabel-python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	5 Sep 2013 19:03:42 -0000	1.15
+++ ChangeLog	13 Oct 2013 08:30:30 -0000	1.16
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel-python
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.15 2013/09/05 19:03:42 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.16 2013/10/13 08:30:30 pacho Exp $
+
+  13 Oct 2013; Pacho Ramos <pacho@gentoo.org> openbabel-python-2.3.2.ebuild:
+  Also compatible with python3_3
 
   05 Sep 2013; Michał Górny <mgorny@gentoo.org> openbabel-python-2.3.2.ebuild:
   Clean up PYTHON_COMPAT from old implementations.





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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog
@ 2014-10-27 17:16 Justin Lecher (jlec)
  0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher (jlec) @ 2014-10-27 17:16 UTC (permalink / raw
  To: gentoo-commits

jlec        14/10/27 17:16:29

  Modified:             openbabel-python-2.3.2.ebuild ChangeLog
  Log:
  sci-chemistry/openbabel-python: Add support for py3_4
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)

Revision  Changes    Path
1.9                  sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?r1=1.8&r2=1.9

Index: openbabel-python-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- openbabel-python-2.3.2.ebuild	13 Oct 2013 08:30:30 -0000	1.8
+++ openbabel-python-2.3.2.ebuild	27 Oct 2014 17:16:29 -0000	1.9
@@ -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: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.8 2013/10/13 08:30:30 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.9 2014/10/27 17:16:29 jlec Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=(python{2_6,2_7,3_2,3_3})
+PYTHON_COMPAT=(python{2_7,3_2,3_3,3_4})
 
 inherit cmake-utils eutils multilib python-r1
 



1.17                 sci-chemistry/openbabel-python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	13 Oct 2013 08:30:30 -0000	1.16
+++ ChangeLog	27 Oct 2014 17:16:29 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel-python
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.16 2013/10/13 08:30:30 pacho Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.17 2014/10/27 17:16:29 jlec Exp $
+
+  27 Oct 2014; Justin Lecher <jlec@gentoo.org> openbabel-python-2.3.2.ebuild:
+  Add support for py3_4
 
   13 Oct 2013; Pacho Ramos <pacho@gentoo.org> openbabel-python-2.3.2.ebuild:
   Also compatible with python3_3





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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog
@ 2015-01-11 14:36 Justin Lecher (jlec)
  0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher (jlec) @ 2015-01-11 14:36 UTC (permalink / raw
  To: gentoo-commits

jlec        15/01/11 14:36:40

  Modified:             openbabel-python-2.3.2.ebuild ChangeLog
  Log:
  sci-chemistry/openbabel-python: Fix for swig-3.0.3, #536180
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)

Revision  Changes    Path
1.11                 sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?r1=1.10&r2=1.11

Index: openbabel-python-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- openbabel-python-2.3.2.ebuild	4 Jan 2015 13:44:02 -0000	1.10
+++ openbabel-python-2.3.2.ebuild	11 Jan 2015 14:36:40 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.10 2015/01/04 13:44:02 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.11 2015/01/11 14:36:40 jlec Exp $
 
 EAPI=5
 
@@ -31,6 +31,7 @@
 PATCHES=(
 	"${FILESDIR}"/${P}-testpybel.patch
 	"${FILESDIR}"/${P}-bindings_only.patch
+	"${FILESDIR}"/${P}-swig-3.0.3.patch
 	)
 
 src_prepare() {



1.20                 sci-chemistry/openbabel-python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.19&r2=1.20

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	11 Jan 2015 11:54:19 -0000	1.19
+++ ChangeLog	11 Jan 2015 14:36:40 -0000	1.20
@@ -1,6 +1,10 @@
 # ChangeLog for sci-chemistry/openbabel-python
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.19 2015/01/11 11:54:19 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.20 2015/01/11 14:36:40 jlec Exp $
+
+  11 Jan 2015; Justin Lecher <jlec@gentoo.org> openbabel-python-2.3.2.ebuild,
+  +files/openbabel-python-2.3.2-swig-3.0.3.patch:
+  Fix for swig-3.0.3, #536180
 
   11 Jan 2015; Jeroen Roovers <jer@gentoo.org>
   -files/openbabel-python-2.3.0-py3_iterator.patch,





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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog
@ 2015-01-31 14:11 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-01-31 14:11 UTC (permalink / raw
  To: gentoo-commits

ago         15/01/31 14:11:04

  Modified:             openbabel-python-2.3.2.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #534618
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.12                 sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?r1=1.11&r2=1.12

Index: openbabel-python-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- openbabel-python-2.3.2.ebuild	11 Jan 2015 14:36:40 -0000	1.11
+++ openbabel-python-2.3.2.ebuild	31 Jan 2015 14:11:04 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.11 2015/01/11 14:36:40 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.12 2015/01/31 14:11:04 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 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"
 LICENSE="GPL-2"
 IUSE=""



1.21                 sci-chemistry/openbabel-python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	11 Jan 2015 14:36:40 -0000	1.20
+++ ChangeLog	31 Jan 2015 14:11:04 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel-python
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.20 2015/01/11 14:36:40 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.21 2015/01/31 14:11:04 ago Exp $
+
+  31 Jan 2015; Agostino Sarubbo <ago@gentoo.org> openbabel-python-2.3.2.ebuild:
+  Stable for amd64, wrt bug #534618
 
   11 Jan 2015; Justin Lecher <jlec@gentoo.org> openbabel-python-2.3.2.ebuild,
   +files/openbabel-python-2.3.2-swig-3.0.3.patch:





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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog
@ 2015-03-02  9:22 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-03-02  9:22 UTC (permalink / raw
  To: gentoo-commits

ago         15/03/02 09:22:30

  Modified:             openbabel-python-2.3.2.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #534618
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.13                 sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?r1=1.12&r2=1.13

Index: openbabel-python-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- openbabel-python-2.3.2.ebuild	31 Jan 2015 14:11:04 -0000	1.12
+++ openbabel-python-2.3.2.ebuild	2 Mar 2015 09:22:30 -0000	1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.12 2015/01/31 14:11:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.13 2015/03/02 09:22:30 ago Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 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"
 LICENSE="GPL-2"
 IUSE=""



1.22                 sci-chemistry/openbabel-python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	31 Jan 2015 14:11:04 -0000	1.21
+++ ChangeLog	2 Mar 2015 09:22:30 -0000	1.22
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel-python
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.21 2015/01/31 14:11:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.22 2015/03/02 09:22:30 ago Exp $
+
+  02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> openbabel-python-2.3.2.ebuild:
+  Stable for ppc, wrt bug #534618
 
   31 Jan 2015; Agostino Sarubbo <ago@gentoo.org> openbabel-python-2.3.2.ebuild:
   Stable for amd64, wrt bug #534618





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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog
@ 2015-05-05  9:41 Justin Lecher (jlec)
  0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher (jlec) @ 2015-05-05  9:41 UTC (permalink / raw
  To: gentoo-commits

jlec        15/05/05 09:41:37

  Modified:             openbabel-python-2.3.2.ebuild ChangeLog
  Log:
  Fix compilation problems, bug #547818
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)

Revision  Changes    Path
1.14                 sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?r1=1.13&r2=1.14

Index: openbabel-python-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- openbabel-python-2.3.2.ebuild	2 Mar 2015 09:22:30 -0000	1.13
+++ openbabel-python-2.3.2.ebuild	5 May 2015 09:41:37 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.13 2015/03/02 09:22:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.14 2015/05/05 09:41:37 jlec Exp $
 
 EAPI=5
 
@@ -59,6 +59,7 @@
 			-DPYTHON_BINDINGS=ON
 			-DPYTHON_EXECUTABLE=${PYTHON}
 			-DPYTHON_INCLUDE_DIR="${EPREFIX}/usr/include/${EPYTHON}"
+			-DPYTHON_INCLUDE_PATH="${EPREFIX}/usr/include/${EPYTHON}"
 			-DPYTHON_LIBRARY="${EPREFIX}/usr/$(get_libdir)/lib${EPYTHON}.so"
 			-DENABLE_TESTS=ON"
 



1.23                 sci-chemistry/openbabel-python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	2 Mar 2015 09:22:30 -0000	1.22
+++ ChangeLog	5 May 2015 09:41:37 -0000	1.23
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel-python
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.22 2015/03/02 09:22:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.23 2015/05/05 09:41:37 jlec Exp $
+
+  05 May 2015; Justin Lecher <jlec@gentoo.org> openbabel-python-2.3.2.ebuild:
+  Fix compilation problems, bug #547818
 
   02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> openbabel-python-2.3.2.ebuild:
   Stable for ppc, wrt bug #534618





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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog
@ 2015-06-28 11:21 Mikle Kolyada (zlogene)
  0 siblings, 0 replies; 13+ messages in thread
From: Mikle Kolyada (zlogene) @ 2015-06-28 11:21 UTC (permalink / raw
  To: gentoo-commits

zlogene     15/06/28 11:21:54

  Modified:             openbabel-python-2.3.2.ebuild ChangeLog
  Log:
  x86 stable wrt bug #534618
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)

Revision  Changes    Path
1.15                 sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild?r1=1.14&r2=1.15

Index: openbabel-python-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- openbabel-python-2.3.2.ebuild	5 May 2015 09:41:37 -0000	1.14
+++ openbabel-python-2.3.2.ebuild	28 Jun 2015 11:21:54 -0000	1.15
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.14 2015/05/05 09:41:37 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/openbabel-python-2.3.2.ebuild,v 1.15 2015/06/28 11:21:54 zlogene Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 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"
 LICENSE="GPL-2"
 IUSE=""



1.24                 sci-chemistry/openbabel-python/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	5 May 2015 09:41:37 -0000	1.23
+++ ChangeLog	28 Jun 2015 11:21:54 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel-python
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.23 2015/05/05 09:41:37 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel-python/ChangeLog,v 1.24 2015/06/28 11:21:54 zlogene Exp $
+
+  28 Jun 2015; Mikle Kolyada <zlogene@gentoo.org> openbabel-python-2.3.2.ebuild:
+  x86 stable wrt bug #534618
 
   05 May 2015; Justin Lecher <jlec@gentoo.org> openbabel-python-2.3.2.ebuild:
   Fix compilation problems, bug #547818





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

end of thread, other threads:[~2015-06-28 11:21 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-02 14:08 [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel-python: openbabel-python-2.3.2.ebuild ChangeLog Justin Lecher (jlec)
  -- strict thread matches above, loose matches on Subject: below --
2015-06-28 11:21 Mikle Kolyada (zlogene)
2015-05-05  9:41 Justin Lecher (jlec)
2015-03-02  9:22 Agostino Sarubbo (ago)
2015-01-31 14:11 Agostino Sarubbo (ago)
2015-01-11 14:36 Justin Lecher (jlec)
2014-10-27 17:16 Justin Lecher (jlec)
2013-10-13  8:30 Pacho Ramos (pacho)
2013-09-05 19:03 Michal Gorny (mgorny)
2013-05-29 16:19 Justin Lecher (jlec)
2013-02-20 19:43 Agostino Sarubbo (ago)
2013-02-08 12:25 Agostino Sarubbo (ago)
2012-12-06 17:09 Justin Lecher (jlec)

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