public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog
@ 2009-08-01 15:22 Marcus Hanwell (cryos)
  0 siblings, 0 replies; 14+ messages in thread
From: Marcus Hanwell (cryos) @ 2009-08-01 15:22 UTC (permalink / raw
  To: gentoo-commits

cryos       09/08/01 15:22:51

  Modified:             ChangeLog
  Added:                openbabel-2.2.3.ebuild
  Log:
  Version bump.
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.28                 sci-chemistry/openbabel/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/openbabel/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/openbabel/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/openbabel/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	24 Jul 2009 19:00:34 -0000	1.27
+++ ChangeLog	1 Aug 2009 15:22:51 -0000	1.28
@@ -1,6 +1,11 @@
 # ChangeLog for sci-chemistry/openbabel
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.27 2009/07/24 19:00:34 cryos Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.28 2009/08/01 15:22:51 cryos Exp $
+
+*openbabel-2.2.3 (01 Aug 2009)
+
+  01 Aug 2009; Marcus D. Hanwell <cryos@gentoo.org> +openbabel-2.2.3.ebuild:
+  Version bump.
 
 *openbabel-2.2.2-r1 (24 Jul 2009)
 



1.1                  sci-chemistry/openbabel/openbabel-2.2.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild?rev=1.1&content-type=text/plain

Index: openbabel-2.2.3.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.1 2009/08/01 15:22:51 cryos Exp $

EAPI=1

inherit eutils

DESCRIPTION="interconverts file formats used in molecular modeling"
HOMEPAGE="http://openbabel.sourceforge.net/"
SRC_URI="mirror://sourceforge/openbabel/${P}.tar.gz"

KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
SLOT="0"
LICENSE="GPL-2"
IUSE="doc python swig"

RDEPEND="!sci-chemistry/babel
	>=dev-libs/libxml2-2.6.5
	sys-libs/zlib
	python? ( dev-lang/python )"

DEPEND="${RDEPEND}
	>=dev-libs/boost-1.35.0
	dev-lang/perl
	python? ( swig? ( >=dev-lang/swig-1.3.38 ) )
	doc? ( app-doc/doxygen )"

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}/${PN}-2.2.0-doxyfile.patch"
}

src_compile() {
	local swigconf=""
	if use swig; then
		swigconf="--enable-maintainer-mode"
	fi
	econf ${swigconf} || die "econf failed"
	emake || die "emake failed"
	if use doc ; then
		emake docs || die "make docs failed"
	fi
	if use swig; then
		emake scripts/python/openbabel_python.cpp \
			|| die "Failed to make SWIG python bindings"
	fi
	if use python; then
		cd "${S}/scripts/python"
		python setup.py build || die "Python build failed."
	fi
}

src_test() {
	emake check || die "make check failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"
	# Now to install the Python bindings if necessary
	if use python; then
		cd "${S}/scripts/python"
		python ./setup.py install --root="${D}" --optimize=1 \
			|| die "Python bindings install failed"
		if use doc; then
			docinto python
			dodoc README
			docinto python/html
			dodoc *.html
		fi
	fi
	# And the documentation
	docinto
	cd "${S}"
	dodoc AUTHORS ChangeLog NEWS README THANKS
	cd doc
	dohtml *.html *.png
	dodoc *.inc README* *.inc *.mol2
	if use doc ; then
		dodir /usr/share/doc/${PF}/API/html
		insinto /usr/share/doc/${PF}/API/html
		cd API/html
		doins *
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog
@ 2010-06-19 14:50 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 14+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2010-06-19 14:50 UTC (permalink / raw
  To: gentoo-commits

xarthisius    10/06/19 14:50:06

  Modified:             openbabel-2.2.3.ebuild ChangeLog
  Log:
  Fix docs install wrt bug 322543. Thanks Juergen Rose <rose@rz.uni-potsdam.de> for reporting
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  sci-chemistry/openbabel/openbabel-2.2.3.ebuild

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

Index: openbabel-2.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- openbabel-2.2.3.ebuild	20 May 2010 20:31:36 -0000	1.3
+++ openbabel-2.2.3.ebuild	19 Jun 2010 14:50:06 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.3 2010/05/20 20:31:36 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.4 2010/06/19 14:50:06 xarthisius Exp $
 
 EAPI="3"
 
@@ -72,7 +72,7 @@
 	dohtml doc/{*.html,*.png} || die
 	if use doc ; then
 		insinto /usr/share/doc/${PF}/API/html
-		doins API/html/* || die
+		doins doc/API/html/* || die
 	fi
 
 	emake DESTDIR="${D}" install || die "make install failed"



1.37                 sci-chemistry/openbabel/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	20 May 2010 20:18:14 -0000	1.36
+++ ChangeLog	19 Jun 2010 14:50:06 -0000	1.37
@@ -1,6 +1,11 @@
 # ChangeLog for sci-chemistry/openbabel
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.36 2010/05/20 20:18:14 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.37 2010/06/19 14:50:06 xarthisius Exp $
+
+  19 Jun 2010; Kacper Kowalik <xarthisius@gentoo.org>
+  openbabel-2.2.3.ebuild:
+  Fix docs install wrt bug 322543. Thanks Juergen Rose
+  <rose@rz.uni-potsdam.de> for reporting
 
   20 May 2010; Justin Lecher <jlec@gentoo.org> openbabel-2.2.2-r1.ebuild,
   openbabel-2.2.3.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog
@ 2010-06-24 21:29 Pacho Ramos (pacho)
  0 siblings, 0 replies; 14+ messages in thread
From: Pacho Ramos (pacho) @ 2010-06-24 21:29 UTC (permalink / raw
  To: gentoo-commits

pacho       10/06/24 21:29:40

  Modified:             openbabel-2.2.3.ebuild ChangeLog
  Log:
  stable amd64, bug 324283
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  sci-chemistry/openbabel/openbabel-2.2.3.ebuild

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

Index: openbabel-2.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- openbabel-2.2.3.ebuild	19 Jun 2010 14:50:06 -0000	1.4
+++ openbabel-2.2.3.ebuild	24 Jun 2010 21:29:40 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.4 2010/06/19 14:50:06 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.5 2010/06/24 21:29:40 pacho Exp $
 
 EAPI="3"
 
@@ -14,7 +14,7 @@
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/${P}.tar.gz"
 
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="doc python swig"



1.38                 sci-chemistry/openbabel/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	19 Jun 2010 14:50:06 -0000	1.37
+++ ChangeLog	24 Jun 2010 21:29:40 -0000	1.38
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.37 2010/06/19 14:50:06 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.38 2010/06/24 21:29:40 pacho Exp $
+
+  24 Jun 2010; Pacho Ramos <pacho@gentoo.org> openbabel-2.2.3.ebuild:
+  stable amd64, bug 324283
 
   19 Jun 2010; Kacper Kowalik <xarthisius@gentoo.org>
   openbabel-2.2.3.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog
@ 2010-06-28  7:09 Justin Lecher (jlec)
  0 siblings, 0 replies; 14+ messages in thread
From: Justin Lecher (jlec) @ 2010-06-28  7:09 UTC (permalink / raw
  To: gentoo-commits

jlec        10/06/28 07:09:18

  Modified:             openbabel-2.2.3.ebuild ChangeLog
  Log:
  Keyworded for *-linux prefix
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  sci-chemistry/openbabel/openbabel-2.2.3.ebuild

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

Index: openbabel-2.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- openbabel-2.2.3.ebuild	24 Jun 2010 21:29:40 -0000	1.5
+++ openbabel-2.2.3.ebuild	28 Jun 2010 07:09:18 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.5 2010/06/24 21:29:40 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.6 2010/06/28 07:09:18 jlec Exp $
 
 EAPI="3"
 
@@ -14,7 +14,7 @@
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/${P}.tar.gz"
 
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="doc python swig"



1.39                 sci-chemistry/openbabel/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	24 Jun 2010 21:29:40 -0000	1.38
+++ ChangeLog	28 Jun 2010 07:09:18 -0000	1.39
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.38 2010/06/24 21:29:40 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.39 2010/06/28 07:09:18 jlec Exp $
+
+  28 Jun 2010; Justin Lecher <jlec@gentoo.org> openbabel-2.2.3.ebuild:
+  Keyworded for *-linux prefix
 
   24 Jun 2010; Pacho Ramos <pacho@gentoo.org> openbabel-2.2.3.ebuild:
   stable amd64, bug 324283






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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog
@ 2010-07-01 16:35 Jeroen Roovers (jer)
  0 siblings, 0 replies; 14+ messages in thread
From: Jeroen Roovers (jer) @ 2010-07-01 16:35 UTC (permalink / raw
  To: gentoo-commits

jer         10/07/01 16:35:26

  Modified:             openbabel-2.2.3.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #324283).
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.7                  sci-chemistry/openbabel/openbabel-2.2.3.ebuild

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

Index: openbabel-2.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- openbabel-2.2.3.ebuild	28 Jun 2010 07:09:18 -0000	1.6
+++ openbabel-2.2.3.ebuild	1 Jul 2010 16:35:25 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.6 2010/06/28 07:09:18 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.7 2010/07/01 16:35:25 jer Exp $
 
 EAPI="3"
 
@@ -14,7 +14,7 @@
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/${P}.tar.gz"
 
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="doc python swig"



1.40                 sci-chemistry/openbabel/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	28 Jun 2010 07:09:18 -0000	1.39
+++ ChangeLog	1 Jul 2010 16:35:25 -0000	1.40
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.39 2010/06/28 07:09:18 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.40 2010/07/01 16:35:25 jer Exp $
+
+  01 Jul 2010; Jeroen Roovers <jer@gentoo.org> openbabel-2.2.3.ebuild:
+  Stable for HPPA (bug #324283).
 
   28 Jun 2010; Justin Lecher <jlec@gentoo.org> openbabel-2.2.3.ebuild:
   Keyworded for *-linux prefix






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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog
@ 2010-07-07 12:31 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 14+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-07-07 12:31 UTC (permalink / raw
  To: gentoo-commits

fauli       10/07/07 12:31:22

  Modified:             openbabel-2.2.3.ebuild ChangeLog
  Log:
  stable x86, bug 324283
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.8                  sci-chemistry/openbabel/openbabel-2.2.3.ebuild

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

Index: openbabel-2.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- openbabel-2.2.3.ebuild	1 Jul 2010 16:35:25 -0000	1.7
+++ openbabel-2.2.3.ebuild	7 Jul 2010 12:31:22 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.7 2010/07/01 16:35:25 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.8 2010/07/07 12:31:22 fauli Exp $
 
 EAPI="3"
 
@@ -14,7 +14,7 @@
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/${P}.tar.gz"
 
-KEYWORDS="amd64 hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="doc python swig"



1.41                 sci-chemistry/openbabel/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	1 Jul 2010 16:35:25 -0000	1.40
+++ ChangeLog	7 Jul 2010 12:31:22 -0000	1.41
@@ -1,6 +1,10 @@
 # ChangeLog for sci-chemistry/openbabel
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.40 2010/07/01 16:35:25 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.41 2010/07/07 12:31:22 fauli Exp $
+
+  07 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
+  openbabel-2.2.3.ebuild:
+  stable x86, bug 324283
 
   01 Jul 2010; Jeroen Roovers <jer@gentoo.org> openbabel-2.2.3.ebuild:
   Stable for HPPA (bug #324283).






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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog
@ 2010-07-09 21:28 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 14+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-07-09 21:28 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/07/09 21:28:58

  Modified:             openbabel-2.2.3.ebuild ChangeLog
  Log:
  ppc64 stable wrt #324283
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  sci-chemistry/openbabel/openbabel-2.2.3.ebuild

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

Index: openbabel-2.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- openbabel-2.2.3.ebuild	7 Jul 2010 12:31:22 -0000	1.8
+++ openbabel-2.2.3.ebuild	9 Jul 2010 21:28:58 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.8 2010/07/07 12:31:22 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.9 2010/07/09 21:28:58 ssuominen Exp $
 
 EAPI="3"
 
@@ -14,7 +14,7 @@
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/${P}.tar.gz"
 
-KEYWORDS="amd64 hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 hppa ~ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="doc python swig"



1.42                 sci-chemistry/openbabel/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	7 Jul 2010 12:31:22 -0000	1.41
+++ ChangeLog	9 Jul 2010 21:28:58 -0000	1.42
@@ -1,6 +1,10 @@
 # ChangeLog for sci-chemistry/openbabel
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.41 2010/07/07 12:31:22 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.42 2010/07/09 21:28:58 ssuominen Exp $
+
+  09 Jul 2010; Samuli Suominen <ssuominen@gentoo.org>
+  openbabel-2.2.3.ebuild:
+  ppc64 stable wrt #324283
 
   07 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
   openbabel-2.2.3.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog
@ 2010-07-18 13:45 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 14+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2010-07-18 13:45 UTC (permalink / raw
  To: gentoo-commits

nixnut      10/07/18 13:45:08

  Modified:             openbabel-2.2.3.ebuild ChangeLog
  Log:
  ppc stable #324283
  (Portage version: 2.1.8.3/cvs/Linux ppc)

Revision  Changes    Path
1.10                 sci-chemistry/openbabel/openbabel-2.2.3.ebuild

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

Index: openbabel-2.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- openbabel-2.2.3.ebuild	9 Jul 2010 21:28:58 -0000	1.9
+++ openbabel-2.2.3.ebuild	18 Jul 2010 13:45:08 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.9 2010/07/09 21:28:58 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.10 2010/07/18 13:45:08 nixnut Exp $
 
 EAPI="3"
 
@@ -14,7 +14,7 @@
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/${P}.tar.gz"
 
-KEYWORDS="amd64 hppa ~ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="doc python swig"



1.43                 sci-chemistry/openbabel/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	9 Jul 2010 21:28:58 -0000	1.42
+++ ChangeLog	18 Jul 2010 13:45:08 -0000	1.43
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.42 2010/07/09 21:28:58 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.43 2010/07/18 13:45:08 nixnut Exp $
+
+  18 Jul 2010; <nixnut@gentoo.org> openbabel-2.2.3.ebuild:
+  ppc stable #324283
 
   09 Jul 2010; Samuli Suominen <ssuominen@gentoo.org>
   openbabel-2.2.3.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog
@ 2010-07-18 14:53 Raul Porcel (armin76)
  0 siblings, 0 replies; 14+ messages in thread
From: Raul Porcel (armin76) @ 2010-07-18 14:53 UTC (permalink / raw
  To: gentoo-commits

armin76     10/07/18 14:53:22

  Modified:             openbabel-2.2.3.ebuild ChangeLog
  Log:
  sparc stable wrt #324283
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.11                 sci-chemistry/openbabel/openbabel-2.2.3.ebuild

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

Index: openbabel-2.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- openbabel-2.2.3.ebuild	18 Jul 2010 13:45:08 -0000	1.10
+++ openbabel-2.2.3.ebuild	18 Jul 2010 14:53:22 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.10 2010/07/18 13:45:08 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.11 2010/07/18 14:53:22 armin76 Exp $
 
 EAPI="3"
 
@@ -14,7 +14,7 @@
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/${P}.tar.gz"
 
-KEYWORDS="amd64 hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="doc python swig"



1.44                 sci-chemistry/openbabel/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	18 Jul 2010 13:45:08 -0000	1.43
+++ ChangeLog	18 Jul 2010 14:53:22 -0000	1.44
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.43 2010/07/18 13:45:08 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.44 2010/07/18 14:53:22 armin76 Exp $
+
+  18 Jul 2010; Raúl Porcel <armin76@gentoo.org> openbabel-2.2.3.ebuild:
+  sparc stable wrt #324283
 
   18 Jul 2010; <nixnut@gentoo.org> openbabel-2.2.3.ebuild:
   ppc stable #324283






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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog
@ 2011-03-02 17:48 Justin Lecher (jlec)
  0 siblings, 0 replies; 14+ messages in thread
From: Justin Lecher (jlec) @ 2011-03-02 17:48 UTC (permalink / raw
  To: gentoo-commits

jlec        11/03/02 17:48:24

  Modified:             openbabel-2.2.3.ebuild ChangeLog
  Log:
  Correct Slots for gtk 3 introduction to tree
  
  (Portage version: 2.2.0_alpha26/cvs/Linux x86_64)

Revision  Changes    Path
1.12                 sci-chemistry/openbabel/openbabel-2.2.3.ebuild

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

Index: openbabel-2.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- openbabel-2.2.3.ebuild	18 Jul 2010 14:53:22 -0000	1.11
+++ openbabel-2.2.3.ebuild	2 Mar 2011 17:48:24 -0000	1.12
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.11 2010/07/18 14:53:22 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.12 2011/03/02 17:48:24 jlec Exp $
 
 EAPI="3"
 
@@ -20,7 +20,7 @@
 IUSE="doc python swig"
 
 RDEPEND="
-	>=dev-libs/libxml2-2.6.5
+	dev-libs/libxml2:2
 	!sci-chemistry/babel
 	sys-libs/zlib"
 



1.46                 sci-chemistry/openbabel/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	18 Jul 2010 15:09:28 -0000	1.45
+++ ChangeLog	2 Mar 2011 17:48:24 -0000	1.46
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.45 2010/07/18 15:09:28 jlec Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.46 2011/03/02 17:48:24 jlec Exp $
+
+  02 Mar 2011; Justin Lecher <jlec@gentoo.org> openbabel-2.2.3.ebuild:
+  Correct Slots for gtk 3 introduction to tree
 
   18 Jul 2010; Justin Lecher <jlec@gentoo.org> -openbabel-2.2.1.ebuild,
   -openbabel-2.2.2-r1.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog
@ 2011-03-26 16:23 Justin Lecher (jlec)
  0 siblings, 0 replies; 14+ messages in thread
From: Justin Lecher (jlec) @ 2011-03-26 16:23 UTC (permalink / raw
  To: gentoo-commits

jlec        11/03/26 16:23:04

  Modified:             openbabel-2.2.3.ebuild ChangeLog
  Log:
  Block sci-chemistry/openbabel-{python,perl}
  
  (Portage version: 2.2.0_alpha28/cvs/Linux x86_64)

Revision  Changes    Path
1.13                 sci-chemistry/openbabel/openbabel-2.2.3.ebuild

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

Index: openbabel-2.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- openbabel-2.2.3.ebuild	2 Mar 2011 17:48:24 -0000	1.12
+++ openbabel-2.2.3.ebuild	26 Mar 2011 16:23:04 -0000	1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.12 2011/03/02 17:48:24 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.13 2011/03/26 16:23:04 jlec Exp $
 
 EAPI="3"
 
@@ -22,6 +22,8 @@
 RDEPEND="
 	dev-libs/libxml2:2
 	!sci-chemistry/babel
+	!sci-chemistry/openbabel-perl
+	!sci-chemistry/openbabel-python
 	sys-libs/zlib"
 
 DEPEND="${RDEPEND}



1.49                 sci-chemistry/openbabel/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	26 Mar 2011 15:54:29 -0000	1.48
+++ ChangeLog	26 Mar 2011 16:23:04 -0000	1.49
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.48 2011/03/26 15:54:29 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.49 2011/03/26 16:23:04 jlec Exp $
+
+  26 Mar 2011; Justin Lecher <jlec@gentoo.org> openbabel-2.2.3.ebuild:
+  Block sci-chemistry/openbabel-{python,perl}
 
   26 Mar 2011; Justin Lecher <jlec@gentoo.org> openbabel-2.3.0.ebuild:
   Added perl & python USE






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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog
@ 2011-04-30 18:01 Raul Porcel (armin76)
  0 siblings, 0 replies; 14+ messages in thread
From: Raul Porcel (armin76) @ 2011-04-30 18:01 UTC (permalink / raw
  To: gentoo-commits

armin76     11/04/30 18:01:41

  Modified:             openbabel-2.2.3.ebuild ChangeLog
  Log:
  Drop sparc keywords
  
  (Portage version: 2.1.9.45/cvs/Linux ia64)

Revision  Changes    Path
1.14                 sci-chemistry/openbabel/openbabel-2.2.3.ebuild

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

Index: openbabel-2.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- openbabel-2.2.3.ebuild	26 Mar 2011 16:23:04 -0000	1.13
+++ openbabel-2.2.3.ebuild	30 Apr 2011 18:01:39 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.13 2011/03/26 16:23:04 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.14 2011/04/30 18:01:39 armin76 Exp $
 
 EAPI="3"
 
@@ -14,7 +14,7 @@
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/${P}.tar.gz"
 
-KEYWORDS="amd64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="doc python swig"



1.52                 sci-chemistry/openbabel/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog	28 Apr 2011 18:17:28 -0000	1.51
+++ ChangeLog	30 Apr 2011 18:01:39 -0000	1.52
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.51 2011/04/28 18:17:28 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.52 2011/04/30 18:01:39 armin76 Exp $
+
+  30 Apr 2011; Raúl Porcel <armin76@gentoo.org> openbabel-2.2.3.ebuild:
+  Drop sparc keywords
 
   28 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   openbabel-2.3.0.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog
@ 2011-06-16 23:56 Jeroen Roovers (jer)
  0 siblings, 0 replies; 14+ messages in thread
From: Jeroen Roovers (jer) @ 2011-06-16 23:56 UTC (permalink / raw
  To: gentoo-commits

jer         11/06/16 23:56:29

  Modified:             openbabel-2.2.3.ebuild ChangeLog
  Log:
  Drop HPPA keywording (bug #360573).
  
  (Portage version: 2.2.0_alpha41/cvs/Linux x86_64)

Revision  Changes    Path
1.15                 sci-chemistry/openbabel/openbabel-2.2.3.ebuild

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

Index: openbabel-2.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- openbabel-2.2.3.ebuild	30 Apr 2011 18:01:39 -0000	1.14
+++ openbabel-2.2.3.ebuild	16 Jun 2011 23:56:29 -0000	1.15
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.14 2011/04/30 18:01:39 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.15 2011/06/16 23:56:29 jer Exp $
 
 EAPI="3"
 
@@ -14,7 +14,7 @@
 HOMEPAGE="http://openbabel.sourceforge.net/"
 SRC_URI="mirror://sourceforge/openbabel/${P}.tar.gz"
 
-KEYWORDS="amd64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="GPL-2"
 IUSE="doc python swig"



1.55                 sci-chemistry/openbabel/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog	14 Jun 2011 18:06:06 -0000	1.54
+++ ChangeLog	16 Jun 2011 23:56:29 -0000	1.55
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.54 2011/06/14 18:06:06 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.55 2011/06/16 23:56:29 jer Exp $
+
+  16 Jun 2011; Jeroen Roovers <jer@gentoo.org> openbabel-2.2.3.ebuild:
+  Drop HPPA keywording (bug #360573).
 
   14 Jun 2011; Justin Lecher <jlec@gentoo.org>
   files/openbabel-2.3.0-swig.patch:






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

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog
@ 2012-04-26 15:46 Justin Lecher (jlec)
  0 siblings, 0 replies; 14+ messages in thread
From: Justin Lecher (jlec) @ 2012-04-26 15:46 UTC (permalink / raw
  To: gentoo-commits

jlec        12/04/26 15:46:14

  Modified:             openbabel-2.2.3.ebuild ChangeLog
  Log:
  sci-chemistry/openbabel: Drop unnessecary die
  
  (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)

Revision  Changes    Path
1.16                 sci-chemistry/openbabel/openbabel-2.2.3.ebuild

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

Index: openbabel-2.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- openbabel-2.2.3.ebuild	16 Jun 2011 23:56:29 -0000	1.15
+++ openbabel-2.2.3.ebuild	26 Apr 2012 15:46:14 -0000	1.16
@@ -1,11 +1,12 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.15 2011/06/16 23:56:29 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.3.ebuild,v 1.16 2012/04/26 15:46:14 jlec Exp $
 
 EAPI="3"
 
 PYTHON_DEPEND="python? 2"
 SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="3.*"
 PYTHON_MODNAME="openbabel.py pybel.py"
 
 inherit eutils distutils
@@ -32,8 +33,6 @@
 	python? ( swig? ( >=dev-lang/swig-1.3.38 ) )
 	doc? ( app-doc/doxygen )"
 
-RESTRICT_PYTHON_ABIS="3.*"
-
 src_prepare() {
 	epatch "${FILESDIR}/${PN}-2.2.0-doxyfile.patch"
 	if use python; then
@@ -47,7 +46,7 @@
 	if use swig; then
 		swigconf="--enable-maintainer-mode"
 	fi
-	econf ${swigconf} || die "econf failed"
+	econf ${swigconf}
 }
 
 src_compile() {



1.59                 sci-chemistry/openbabel/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog	4 Mar 2012 10:32:17 -0000	1.58
+++ ChangeLog	26 Apr 2012 15:46:14 -0000	1.59
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/openbabel
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.58 2012/03/04 10:32:17 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.59 2012/04/26 15:46:14 jlec Exp $
+
+  26 Apr 2012; Justin Lecher <jlec@gentoo.org> openbabel-2.2.3.ebuild:
+  Drop unnessecary die
 
   04 Mar 2012; Justin Lecher <jlec@gentoo.org> openbabel-2.3.1.ebuild:
   Clean residual die and other comments






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

end of thread, other threads:[~2012-04-26 15:46 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-01 16:35 [gentoo-commits] gentoo-x86 commit in sci-chemistry/openbabel: openbabel-2.2.3.ebuild ChangeLog Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2012-04-26 15:46 Justin Lecher (jlec)
2011-06-16 23:56 Jeroen Roovers (jer)
2011-04-30 18:01 Raul Porcel (armin76)
2011-03-26 16:23 Justin Lecher (jlec)
2011-03-02 17:48 Justin Lecher (jlec)
2010-07-18 14:53 Raul Porcel (armin76)
2010-07-18 13:45 Gysbert Wassenaar (nixnut)
2010-07-09 21:28 Samuli Suominen (ssuominen)
2010-07-07 12:31 Christian Faulhammer (fauli)
2010-06-28  7:09 Justin Lecher (jlec)
2010-06-24 21:29 Pacho Ramos (pacho)
2010-06-19 14:50 Kacper Kowalik (xarthisius)
2009-08-01 15:22 Marcus Hanwell (cryos)

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