* [gentoo-commits] gentoo-x86 commit in sci-libs/geos: ChangeLog geos-3.2.2.ebuild
@ 2010-09-29 20:58 Patrick Lauer (patrick)
0 siblings, 0 replies; 8+ messages in thread
From: Patrick Lauer (patrick) @ 2010-09-29 20:58 UTC (permalink / raw
To: gentoo-commits
patrick 10/09/29 20:58:23
Modified: ChangeLog
Added: geos-3.2.2.ebuild
Log:
Bump
(Portage version: 2.2_rc88/cvs/Linux x86_64)
Revision Changes Path
1.48 sci-libs/geos/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?r1=1.47&r2=1.48
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog 3 Sep 2010 18:03:12 -0000 1.47
+++ ChangeLog 29 Sep 2010 20:58:23 -0000 1.48
@@ -1,6 +1,11 @@
# ChangeLog for sci-libs/geos
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.47 2010/09/03 18:03:12 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.48 2010/09/29 20:58:23 patrick Exp $
+
+*geos-3.2.2 (29 Sep 2010)
+
+ 29 Sep 2010; Patrick Lauer <patrick@gentoo.org> +geos-3.2.2.ebuild:
+ Bump
03 Sep 2010; Fabian Groffen <grobian@gentoo.org>
+files/3.2.0-darwin.patch, geos-3.2.0-r1.ebuild:
1.1 sci-libs/geos/geos-3.2.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.1&content-type=text/plain
Index: geos-3.2.2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v 1.1 2010/09/29 20:58:23 patrick Exp $
EAPI=3
PYTHON_DEPEND="python? 2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit autotools eutils python
DESCRIPTION="Geometry engine library for Geographic Information Systems"
HOMEPAGE="http://trac.osgeo.org/geos/"
SRC_URI="http://download.osgeo.org/geos/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
IUSE="doc python ruby"
RDEPEND="ruby? ( virtual/ruby )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
ruby? ( dev-lang/swig )
python? ( dev-lang/swig )"
pkg_setup() {
if use python; then
python_pkg_setup
fi
}
src_prepare() {
epatch "${FILESDIR}"/3.2.0-multipy.patch \
"${FILESDIR}"/3.2.0-swig2.0.patch \
"${FILESDIR}"/3.2.0-python.patch \
"${FILESDIR}"/3.2.0-darwin.patch
eautoreconf
echo "#!${EPREFIX}/bin/bash" > py-compile
}
src_configure() {
econf $(use_enable python) $(use_enable ruby)
}
src_compile() {
emake || die "emake failed"
if use python; then
python_copy_sources swig/python
building() {
emake \
PYTHON_CPPFLAGS="-I${EPREFIX}$(python_get_includedir)" \
PYTHON_LDFLAGS="$(python_get_library -l)" \
SWIG_PYTHON_CPPFLAGS="-I${EPREFIX}$(python_get_includedir)" \
pyexecdir="${EPREFIX}$(python_get_sitedir)" \
pythondir="${EPREFIX}$(python_get_sitedir)"
}
python_execute_function -s --source-dir swig/python building
fi
if use doc; then
cd "${S}/doc"
emake doxygen-html || die "doc generation failed"
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
if use python; then
python_copy_sources swig/python
installation() {
emake \
DESTDIR="${D}" \
pythondir="${EPREFIX}$(python_get_sitedir)" \
pyexecdir="${EPREFIX}$(python_get_sitedir)" \
install
}
python_execute_function -s --source-dir swig/python installation
python_clean_installation_image
fi
dodoc AUTHORS NEWS README TODO || die
if use doc; then
cd "${S}/doc"
dohtml -r doxygen_docs/html/* || die
fi
}
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/geos: ChangeLog geos-3.2.2.ebuild
@ 2011-02-10 18:02 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 8+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2011-02-10 18:02 UTC (permalink / raw
To: gentoo-commits
arfrever 11/02/10 18:02:03
Modified: ChangeLog geos-3.2.2.ebuild
Log:
Restrict Jython ABIs. Don't install .a files in Python and Ruby directories. Call python_mod_optimize() and python_mod_cleanup().
(Portage version: 2.2.0_alpha23/cvs/Linux x86_64)
Revision Changes Path
1.50 sci-libs/geos/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?r1=1.49&r2=1.50
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog 7 Jan 2011 10:11:57 -0000 1.49
+++ ChangeLog 10 Feb 2011 18:02:03 -0000 1.50
@@ -1,6 +1,11 @@
# ChangeLog for sci-libs/geos
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.49 2011/01/07 10:11:57 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.50 2011/02/10 18:02:03 arfrever Exp $
+
+ 10 Feb 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ +files/3.2.2-disable_static_modules.patch, geos-3.2.2.ebuild:
+ Restrict Jython ABIs. Don't install .a files in Python and Ruby directories.
+ Call python_mod_optimize() and python_mod_cleanup().
07 Jan 2011; Hans de Graaff <graaff@gentoo.org> geos-3.1.1.ebuild,
geos-3.2.0.ebuild, geos-3.2.0-r1.ebuild, geos-3.2.2.ebuild:
1.3 sci-libs/geos/geos-3.2.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?r1=1.2&r2=1.3
Index: geos-3.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- geos-3.2.2.ebuild 7 Jan 2011 10:11:57 -0000 1.2
+++ geos-3.2.2.ebuild 10 Feb 2011 18:02:03 -0000 1.3
@@ -1,12 +1,11 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v 1.2 2011/01/07 10:11:57 graaff Exp $
-
-EAPI=3
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v 1.3 2011/02/10 18:02:03 arfrever Exp $
+EAPI="3"
PYTHON_DEPEND="python? 2"
SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
+RESTRICT_PYTHON_ABIS="3.* *-jython"
inherit autotools eutils python
@@ -35,7 +34,8 @@
epatch "${FILESDIR}"/3.2.0-multipy.patch \
"${FILESDIR}"/3.2.0-swig2.0.patch \
"${FILESDIR}"/3.2.0-python.patch \
- "${FILESDIR}"/3.2.0-darwin.patch
+ "${FILESDIR}"/3.2.0-darwin.patch \
+ "${FILESDIR}"/3.2.2-disable_static_modules.patch
eautoreconf
echo "#!${EPREFIX}/bin/bash" > py-compile
}
@@ -84,3 +84,15 @@
dohtml -r doxygen_docs/html/* || die
fi
}
+
+pkg_postinst() {
+ if use python; then
+ python_mod_optimize geos/geos.py
+ fi
+}
+
+pkg_postrm() {
+ if use python; then
+ python_mod_cleanup geos/geos.py
+ fi
+}
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/geos: ChangeLog geos-3.2.2.ebuild
@ 2011-02-11 12:35 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 8+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-02-11 12:35 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 11/02/11 12:35:42
Modified: ChangeLog geos-3.2.2.ebuild
Log:
x86 stable wrt bug #354389
(Portage version: 2.1.9.25/cvs/Linux i686)
Revision Changes Path
1.51 sci-libs/geos/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.51&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.51&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?r1=1.50&r2=1.51
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog 10 Feb 2011 18:02:03 -0000 1.50
+++ ChangeLog 11 Feb 2011 12:35:42 -0000 1.51
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/geos
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.50 2011/02/10 18:02:03 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.51 2011/02/11 12:35:42 phajdan.jr Exp $
+
+ 11 Feb 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> geos-3.2.2.ebuild:
+ x86 stable wrt bug #354389
10 Feb 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+files/3.2.2-disable_static_modules.patch, geos-3.2.2.ebuild:
1.4 sci-libs/geos/geos-3.2.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?r1=1.3&r2=1.4
Index: geos-3.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- geos-3.2.2.ebuild 10 Feb 2011 18:02:03 -0000 1.3
+++ geos-3.2.2.ebuild 11 Feb 2011 12:35:42 -0000 1.4
@@ -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-libs/geos/geos-3.2.2.ebuild,v 1.3 2011/02/10 18:02:03 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v 1.4 2011/02/11 12:35:42 phajdan.jr Exp $
EAPI="3"
PYTHON_DEPEND="python? 2"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
IUSE="doc python ruby"
RDEPEND="ruby? ( dev-lang/ruby:1.8 )"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/geos: ChangeLog geos-3.2.2.ebuild
@ 2011-02-11 19:11 Markos Chandras (hwoarang)
0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-02-11 19:11 UTC (permalink / raw
To: gentoo-commits
hwoarang 11/02/11 19:11:58
Modified: ChangeLog geos-3.2.2.ebuild
Log:
Stable on amd64 wrt bug #354389
(Portage version: 2.1.9.39/cvs/Linux x86_64)
Revision Changes Path
1.52 sci-libs/geos/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?r1=1.51&r2=1.52
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog 11 Feb 2011 12:35:42 -0000 1.51
+++ ChangeLog 11 Feb 2011 19:11:58 -0000 1.52
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/geos
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.51 2011/02/11 12:35:42 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.52 2011/02/11 19:11:58 hwoarang Exp $
+
+ 11 Feb 2011; Markos Chandras <hwoarang@gentoo.org> geos-3.2.2.ebuild:
+ Stable on amd64 wrt bug #354389
11 Feb 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> geos-3.2.2.ebuild:
x86 stable wrt bug #354389
1.5 sci-libs/geos/geos-3.2.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?r1=1.4&r2=1.5
Index: geos-3.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- geos-3.2.2.ebuild 11 Feb 2011 12:35:42 -0000 1.4
+++ geos-3.2.2.ebuild 11 Feb 2011 19:11:58 -0000 1.5
@@ -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-libs/geos/geos-3.2.2.ebuild,v 1.4 2011/02/11 12:35:42 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v 1.5 2011/02/11 19:11:58 hwoarang Exp $
EAPI="3"
PYTHON_DEPEND="python? 2"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
+KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
IUSE="doc python ruby"
RDEPEND="ruby? ( dev-lang/ruby:1.8 )"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/geos: ChangeLog geos-3.2.2.ebuild
@ 2011-02-28 15:41 Brent Baude (ranger)
0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2011-02-28 15:41 UTC (permalink / raw
To: gentoo-commits
ranger 11/02/28 15:41:20
Modified: ChangeLog geos-3.2.2.ebuild
Log:
stable ppc, bug 354389
(Portage version: 2.1.9.25/cvs/Linux ppc64)
Revision Changes Path
1.54 sci-libs/geos/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?r1=1.53&r2=1.54
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog 26 Feb 2011 15:06:57 -0000 1.53
+++ ChangeLog 28 Feb 2011 15:41:20 -0000 1.54
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/geos
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.53 2011/02/26 15:06:57 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.54 2011/02/28 15:41:20 ranger Exp $
+
+ 28 Feb 2011; Brent Baude <ranger@gentoo.org> geos-3.2.2.ebuild:
+ stable ppc, bug 354389
26 Feb 2011; Raúl Porcel <armin76@gentoo.org> geos-3.1.1.ebuild,
geos-3.2.0.ebuild, geos-3.2.0-r1.ebuild, geos-3.2.2.ebuild:
1.7 sci-libs/geos/geos-3.2.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?r1=1.6&r2=1.7
Index: geos-3.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- geos-3.2.2.ebuild 26 Feb 2011 15:06:57 -0000 1.6
+++ geos-3.2.2.ebuild 28 Feb 2011 15:41:20 -0000 1.7
@@ -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-libs/geos/geos-3.2.2.ebuild,v 1.6 2011/02/26 15:06:57 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v 1.7 2011/02/28 15:41:20 ranger Exp $
EAPI="3"
PYTHON_DEPEND="python? 2"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
+KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
IUSE="doc python ruby"
RDEPEND="ruby? ( dev-lang/ruby:1.8 )"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/geos: ChangeLog geos-3.2.2.ebuild
@ 2011-03-12 13:49 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 8+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-03-12 13:49 UTC (permalink / raw
To: gentoo-commits
xarthisius 11/03/12 13:49:00
Modified: ChangeLog geos-3.2.2.ebuild
Log:
ppc64 stable wrt 354389
(Portage version: 2.2.0_alpha26/cvs/Linux x86_64)
Revision Changes Path
1.55 sci-libs/geos/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?r1=1.54&r2=1.55
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog 28 Feb 2011 15:41:20 -0000 1.54
+++ ChangeLog 12 Mar 2011 13:49:00 -0000 1.55
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/geos
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.54 2011/02/28 15:41:20 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.55 2011/03/12 13:49:00 xarthisius Exp $
+
+ 12 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> geos-3.2.2.ebuild:
+ ppc64 stable wrt 354389
28 Feb 2011; Brent Baude <ranger@gentoo.org> geos-3.2.2.ebuild:
stable ppc, bug 354389
1.8 sci-libs/geos/geos-3.2.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?r1=1.7&r2=1.8
Index: geos-3.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- geos-3.2.2.ebuild 28 Feb 2011 15:41:20 -0000 1.7
+++ geos-3.2.2.ebuild 12 Mar 2011 13:49:00 -0000 1.8
@@ -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-libs/geos/geos-3.2.2.ebuild,v 1.7 2011/02/28 15:41:20 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v 1.8 2011/03/12 13:49:00 xarthisius Exp $
EAPI="3"
PYTHON_DEPEND="python? 2"
@@ -15,7 +15,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
+KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
IUSE="doc python ruby"
RDEPEND="ruby? ( dev-lang/ruby:1.8 )"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/geos: ChangeLog geos-3.2.2.ebuild
@ 2011-04-23 15:38 Justin Lecher (jlec)
0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher (jlec) @ 2011-04-23 15:38 UTC (permalink / raw
To: gentoo-commits
jlec 11/04/23 15:38:47
Modified: ChangeLog geos-3.2.2.ebuild
Log:
Fix for gcc-4.6, #362365
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Revision Changes Path
1.57 sci-libs/geos/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.57&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.57&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?r1=1.56&r2=1.57
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog 22 Mar 2011 10:20:42 -0000 1.56
+++ ChangeLog 23 Apr 2011 15:38:47 -0000 1.57
@@ -1,6 +1,10 @@
# ChangeLog for sci-libs/geos
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.56 2011/03/22 10:20:42 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.57 2011/04/23 15:38:47 jlec Exp $
+
+ 23 Apr 2011; Justin Lecher <jlec@gentoo.org> +files/3.2.2-gcc46.patch,
+ geos-3.2.2.ebuild:
+ Fix for gcc-4.6, #362365
22 Mar 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
-geos-3.1.1.ebuild, -files/geos-3.1.1-missing-includes.patch,
1.9 sci-libs/geos/geos-3.2.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?r1=1.8&r2=1.9
Index: geos-3.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- geos-3.2.2.ebuild 12 Mar 2011 13:49:00 -0000 1.8
+++ geos-3.2.2.ebuild 23 Apr 2011 15:38:47 -0000 1.9
@@ -1,8 +1,9 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v 1.8 2011/03/12 13:49:00 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v 1.9 2011/04/23 15:38:47 jlec Exp $
EAPI="3"
+
PYTHON_DEPEND="python? 2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
@@ -31,11 +32,13 @@
}
src_prepare() {
- epatch "${FILESDIR}"/3.2.0-multipy.patch \
+ epatch \
+ "${FILESDIR}"/3.2.0-multipy.patch \
"${FILESDIR}"/3.2.0-swig2.0.patch \
"${FILESDIR}"/3.2.0-python.patch \
"${FILESDIR}"/3.2.0-darwin.patch \
- "${FILESDIR}"/3.2.2-disable_static_modules.patch
+ "${FILESDIR}"/${PV}-disable_static_modules.patch \
+ "${FILESDIR}"/${PV}-gcc46.patch
eautoreconf
echo "#!${EPREFIX}/bin/bash" > py-compile
}
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/geos: ChangeLog geos-3.2.2.ebuild
@ 2011-05-03 11:18 Fabian Groffen (grobian)
0 siblings, 0 replies; 8+ messages in thread
From: Fabian Groffen (grobian) @ 2011-05-03 11:18 UTC (permalink / raw
To: gentoo-commits
grobian 11/05/03 11:18:28
Modified: ChangeLog geos-3.2.2.ebuild
Log:
Marked ~x64-freebsd
(Portage version: 2.2.01.18252-prefix/cvs/SunOS i386)
Revision Changes Path
1.58 sci-libs/geos/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.58&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?rev=1.58&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/ChangeLog?r1=1.57&r2=1.58
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog 23 Apr 2011 15:38:47 -0000 1.57
+++ ChangeLog 3 May 2011 11:18:28 -0000 1.58
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/geos
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.57 2011/04/23 15:38:47 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.58 2011/05/03 11:18:28 grobian Exp $
+
+ 03 May 2011; Fabian Groffen <grobian@gentoo.org> geos-3.2.2.ebuild:
+ Marked ~x64-freebsd
23 Apr 2011; Justin Lecher <jlec@gentoo.org> +files/3.2.2-gcc46.patch,
geos-3.2.2.ebuild:
1.10 sci-libs/geos/geos-3.2.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild?r1=1.9&r2=1.10
Index: geos-3.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- geos-3.2.2.ebuild 23 Apr 2011 15:38:47 -0000 1.9
+++ geos-3.2.2.ebuild 3 May 2011 11:18:28 -0000 1.10
@@ -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-libs/geos/geos-3.2.2.ebuild,v 1.9 2011/04/23 15:38:47 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.2.ebuild,v 1.10 2011/05/03 11:18:28 grobian Exp $
EAPI="3"
@@ -16,7 +16,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
+KEYWORDS="amd64 ppc ppc64 x86 ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
IUSE="doc python ruby"
RDEPEND="ruby? ( dev-lang/ruby:1.8 )"
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2011-05-03 11:18 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-11 12:35 [gentoo-commits] gentoo-x86 commit in sci-libs/geos: ChangeLog geos-3.2.2.ebuild PaweA Hajdan (phajdan.jr)
-- strict thread matches above, loose matches on Subject: below --
2011-05-03 11:18 Fabian Groffen (grobian)
2011-04-23 15:38 Justin Lecher (jlec)
2011-03-12 13:49 Kacper Kowalik (xarthisius)
2011-02-28 15:41 Brent Baude (ranger)
2011-02-11 19:11 Markos Chandras (hwoarang)
2011-02-10 18:02 Arfrever Frehtes Taifersar Arahesis (arfrever)
2010-09-29 20:58 Patrick Lauer (patrick)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox