public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-geosciences/osm-gps-map: osm-gps-map-0.7.3.ebuild ChangeLog
@ 2013-04-02 20:27 Maxim Koltsov (maksbotan)
  0 siblings, 0 replies; 6+ messages in thread
From: Maxim Koltsov (maksbotan) @ 2013-04-02 20:27 UTC (permalink / raw
  To: gentoo-commits

maksbotan    13/04/02 20:27:16

  Modified:             osm-gps-map-0.7.3.ebuild ChangeLog
  Log:
  Fix introspection issue, add python bindings support, bug #373809. Thanks to Nikoli, EvaSDK and hasufell.
  
  (Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)

Revision  Changes    Path
1.2                  sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?r1=1.1&r2=1.2

Index: osm-gps-map-0.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- osm-gps-map-0.7.3.ebuild	28 Mar 2013 18:57:59 -0000	1.1
+++ osm-gps-map-0.7.3.ebuild	2 Apr 2013 20:27:16 -0000	1.2
@@ -1,42 +1,77 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v 1.1 2013/03/28 18:57:59 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v 1.2 2013/04/02 20:27:16 maksbotan Exp $
 
-EAPI="5"
+EAPI=5
 
-inherit autotools gnome2
+PYTHON_COMPAT=( python2_{6,7} )
+DISTUTILS_OPTIONAL=1
 
-DESCRIPTION="A gtk+ viewer for OpenStreetMap files."
+inherit autotools gnome2 distutils-r1
+
+DESCRIPTION="A gtk+ viewer for OpenStreetMap files"
 HOMEPAGE="http://nzjrs.github.com/${PN}/"
-SRC_URI="http://www.johnstowers.co.nz/files/${PN}/${P}.tar.gz"
+SRC_URI="http://www.johnstowers.co.nz/files/${PN}/${P}.tar.gz
+python? ( http://www.johnstowers.co.nz/files/${PN}/python-osmgpsmap-${PV}.tar.gz )"
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="introspection python"
 
-DEPEND="
+RDEPEND="
 	>=dev-libs/glib-2.16.0
-	gnome-base/gnome-common
 	>=net-libs/libsoup-2.4.0
 	>=x11-libs/cairo-1.6.0
-	>=x11-libs/gtk+-2.14.0
+	>=x11-libs/gtk+-2.14.0:2
+	x11-libs/gdk-pixbuf
 	introspection? ( dev-libs/gobject-introspection )
+	python? ( ${PYTHON_DEPS}
+		dev-python/pygtk[${PYTHON_USEDEP}]
+		dev-python/pygobject:2[${PYTHON_USEDEP}]
+	)
 "
-RDEPEND="${DEPEND}"
-
-G2CONF="
-	$(use_enable introspection)
-	--docdir=/usr/share/doc/${PN}
-	--disable-dependency-tracking
-	--enable-fast-install
-	--disable-static
-"
+DEPEND="${RDEPEND}
+	dev-util/gtk-doc-am
+	gnome-base/gnome-common"
+
+PYTHON_S="${WORKDIR}/python-osmgpsmap-${PV}"
+
+pkg_setup() {
+	#configure script does not accept quoted EPREFIX...
+	G2CONF="
+		$(use_enable introspection)
+		--docdir=/usr/share/doc/${PF}
+		--enable-fast-install
+		--disable-static
+	"
+}
 
 src_prepare() {
-	epatch "${FILESDIR}/${P}-fix-docs-location.patch"
-#	epatch "${FILESDIR}/${P}-disable-compiler-warnings.patch"
+	epatch "${FILESDIR}/${P}-fix-docs-location.patch" \
+	       "${FILESDIR}/${P}-fix-introspection.patch"
 	eautoreconf
 
 	gnome2_src_prepare
+
+	cd "${PYTHON_S}" || die
+	epatch "${FILESDIR}/${P}-fix-python-setup.py.patch"
+}
+
+src_compile() {
+	gnome2_src_compile
+
+	if use python; then
+		cd "${PYTHON_S}" || die
+		CFLAGS="${CFLAGS} -I\"${S}\"/src" LDFLAGS="${LDFLAGS} -L\"${S}\"/src/.libs" distutils-r1_src_compile
+	fi
+}
+
+src_install() {
+	gnome2_src_install
+
+	if use python; then
+		cd "${PYTHON_S}" || die
+		distutils-r1_src_install
+	fi
 }



1.2                  sci-geosciences/osm-gps-map/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	28 Mar 2013 18:57:59 -0000	1.1
+++ ChangeLog	2 Apr 2013 20:27:16 -0000	1.2
@@ -1,6 +1,12 @@
 # ChangeLog for sci-geosciences/osm-gps-map
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v 1.1 2013/03/28 18:57:59 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v 1.2 2013/04/02 20:27:16 maksbotan Exp $
+
+  02 Apr 2013; Maxim Koltsov <maksbotan@gentoo.org>
+  +files/osm-gps-map-0.7.3-fix-introspection.patch,
+  +files/osm-gps-map-0.7.3-fix-python-setup.py.patch, osm-gps-map-0.7.3.ebuild:
+  Fix introspection issue, add python bindings support, bug #373809. Thanks to
+  Nikoli, EvaSDK and hasufell.
 
 *osm-gps-map-0.7.3 (28 Mar 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in sci-geosciences/osm-gps-map: osm-gps-map-0.7.3.ebuild ChangeLog
@ 2013-04-03  7:01 Maxim Koltsov (maksbotan)
  0 siblings, 0 replies; 6+ messages in thread
From: Maxim Koltsov (maksbotan) @ 2013-04-03  7:01 UTC (permalink / raw
  To: gentoo-commits

maksbotan    13/04/03 07:01:45

  Modified:             osm-gps-map-0.7.3.ebuild ChangeLog
  Log:
  Add pkgconfig dependency (#464236), add eutils inherit (#464238), remove  from homepage (#464242) and several fixes according to gentoo gnome policy.
  
  (Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)

Revision  Changes    Path
1.3                  sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?r1=1.2&r2=1.3

Index: osm-gps-map-0.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- osm-gps-map-0.7.3.ebuild	2 Apr 2013 20:27:16 -0000	1.2
+++ osm-gps-map-0.7.3.ebuild	3 Apr 2013 07:01:44 -0000	1.3
@@ -1,30 +1,30 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v 1.2 2013/04/02 20:27:16 maksbotan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v 1.3 2013/04/03 07:01:44 maksbotan Exp $
 
 EAPI=5
 
 PYTHON_COMPAT=( python2_{6,7} )
 DISTUTILS_OPTIONAL=1
 
-inherit autotools gnome2 distutils-r1
+inherit eutils autotools gnome2 distutils-r1
 
 DESCRIPTION="A gtk+ viewer for OpenStreetMap files"
-HOMEPAGE="http://nzjrs.github.com/${PN}/"
+HOMEPAGE="http://nzjrs.github.com/osm-gps-map/"
 SRC_URI="http://www.johnstowers.co.nz/files/${PN}/${P}.tar.gz
 python? ( http://www.johnstowers.co.nz/files/${PN}/python-osmgpsmap-${PV}.tar.gz )"
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="introspection python"
+IUSE="+introspection python"
 
 RDEPEND="
 	>=dev-libs/glib-2.16.0
 	>=net-libs/libsoup-2.4.0
 	>=x11-libs/cairo-1.6.0
-	>=x11-libs/gtk+-2.14.0:2
-	x11-libs/gdk-pixbuf
+	>=x11-libs/gtk+-2.14.0:2[introspection?]
+	x11-libs/gdk-pixbuf[introspection?]
 	introspection? ( dev-libs/gobject-introspection )
 	python? ( ${PYTHON_DEPS}
 		dev-python/pygtk[${PYTHON_USEDEP}]
@@ -33,18 +33,18 @@
 "
 DEPEND="${RDEPEND}
 	dev-util/gtk-doc-am
-	gnome-base/gnome-common"
+	gnome-base/gnome-common
+	virtual/pkgconfig"
 
 PYTHON_S="${WORKDIR}/python-osmgpsmap-${PV}"
 
-pkg_setup() {
+src_configure() {
 	#configure script does not accept quoted EPREFIX...
-	G2CONF="
-		$(use_enable introspection)
-		--docdir=/usr/share/doc/${PF}
-		--enable-fast-install
+	gnome2_src_configure \
+		$(use_enable introspection) \
+		--docdir=/usr/share/doc/${PF} \
+		--enable-fast-install \
 		--disable-static
-	"
 }
 
 src_prepare() {



1.3                  sci-geosciences/osm-gps-map/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	2 Apr 2013 20:27:16 -0000	1.2
+++ ChangeLog	3 Apr 2013 07:01:44 -0000	1.3
@@ -1,6 +1,10 @@
 # ChangeLog for sci-geosciences/osm-gps-map
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v 1.2 2013/04/02 20:27:16 maksbotan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v 1.3 2013/04/03 07:01:44 maksbotan Exp $
+
+  03 Apr 2013; Maxim Koltsov <maksbotan@gentoo.org> osm-gps-map-0.7.3.ebuild:
+  Add pkgconfig dependency (#464236), add eutils inherit (#464238), remove  from
+  homepage (#464242) and several fixes according to gentoo gnome policy.
 
   02 Apr 2013; Maxim Koltsov <maksbotan@gentoo.org>
   +files/osm-gps-map-0.7.3-fix-introspection.patch,





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

* [gentoo-commits] gentoo-x86 commit in sci-geosciences/osm-gps-map: osm-gps-map-0.7.3.ebuild ChangeLog
@ 2013-04-21 14:14 Tom Wijsman (tomwij)
  0 siblings, 0 replies; 6+ messages in thread
From: Tom Wijsman (tomwij) @ 2013-04-21 14:14 UTC (permalink / raw
  To: gentoo-commits

tomwij      13/04/21 14:14:32

  Modified:             osm-gps-map-0.7.3.ebuild ChangeLog
  Log:
  Slotted dependencies to avoid breakage, fixes bug #464240.
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)

Revision  Changes    Path
1.4                  sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?r1=1.3&r2=1.4

Index: osm-gps-map-0.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- osm-gps-map-0.7.3.ebuild	3 Apr 2013 07:01:44 -0000	1.3
+++ osm-gps-map-0.7.3.ebuild	21 Apr 2013 14:14:32 -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-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v 1.3 2013/04/03 07:01:44 maksbotan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v 1.4 2013/04/21 14:14:32 tomwij Exp $
 
 EAPI=5
 
@@ -20,20 +20,20 @@
 IUSE="+introspection python"
 
 RDEPEND="
-	>=dev-libs/glib-2.16.0
-	>=net-libs/libsoup-2.4.0
+	>=dev-libs/glib-2.16.0:2
+	>=net-libs/libsoup-2.4.0:2.4
 	>=x11-libs/cairo-1.6.0
 	>=x11-libs/gtk+-2.14.0:2[introspection?]
-	x11-libs/gdk-pixbuf[introspection?]
+	x11-libs/gdk-pixbuf:2[introspection?]
 	introspection? ( dev-libs/gobject-introspection )
 	python? ( ${PYTHON_DEPS}
-		dev-python/pygtk[${PYTHON_USEDEP}]
+		dev-python/pygtk:2[${PYTHON_USEDEP}]
 		dev-python/pygobject:2[${PYTHON_USEDEP}]
 	)
 "
 DEPEND="${RDEPEND}
 	dev-util/gtk-doc-am
-	gnome-base/gnome-common
+	gnome-base/gnome-common:3
 	virtual/pkgconfig"
 
 PYTHON_S="${WORKDIR}/python-osmgpsmap-${PV}"



1.4                  sci-geosciences/osm-gps-map/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	3 Apr 2013 07:01:44 -0000	1.3
+++ ChangeLog	21 Apr 2013 14:14:32 -0000	1.4
@@ -1,6 +1,9 @@
 # ChangeLog for sci-geosciences/osm-gps-map
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v 1.3 2013/04/03 07:01:44 maksbotan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v 1.4 2013/04/21 14:14:32 tomwij Exp $
+
+  21 Apr 2013; Tom Wijsman <TomWij@gentoo.org> osm-gps-map-0.7.3.ebuild:
+  Slotted dependencies to avoid breakage, fixes bug #464240.
 
   03 Apr 2013; Maxim Koltsov <maksbotan@gentoo.org> osm-gps-map-0.7.3.ebuild:
   Add pkgconfig dependency (#464236), add eutils inherit (#464238), remove  from





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

* [gentoo-commits] gentoo-x86 commit in sci-geosciences/osm-gps-map: osm-gps-map-0.7.3.ebuild ChangeLog
@ 2013-05-20 13:59 Tom Wijsman (tomwij)
  0 siblings, 0 replies; 6+ messages in thread
From: Tom Wijsman (tomwij) @ 2013-05-20 13:59 UTC (permalink / raw
  To: gentoo-commits

tomwij      13/05/20 13:59:01

  Modified:             osm-gps-map-0.7.3.ebuild ChangeLog
  Log:
  Added missing python USE flag conditional in prepare phase, fixes compilation with USE=-python.
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)

Revision  Changes    Path
1.5                  sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?r1=1.4&r2=1.5

Index: osm-gps-map-0.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- osm-gps-map-0.7.3.ebuild	21 Apr 2013 14:14:32 -0000	1.4
+++ osm-gps-map-0.7.3.ebuild	20 May 2013 13:59:01 -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-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v 1.4 2013/04/21 14:14:32 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v 1.5 2013/05/20 13:59:01 tomwij Exp $
 
 EAPI=5
 
@@ -39,7 +39,7 @@
 PYTHON_S="${WORKDIR}/python-osmgpsmap-${PV}"
 
 src_configure() {
-	#configure script does not accept quoted EPREFIX...
+	# Configure script does not accept quoted EPREFIX...
 	gnome2_src_configure \
 		$(use_enable introspection) \
 		--docdir=/usr/share/doc/${PF} \
@@ -54,14 +54,16 @@
 
 	gnome2_src_prepare
 
-	cd "${PYTHON_S}" || die
-	epatch "${FILESDIR}/${P}-fix-python-setup.py.patch"
+	if use python ; then
+		cd "${PYTHON_S}" || die
+		epatch "${FILESDIR}/${P}-fix-python-setup.py.patch"
+	fi
 }
 
 src_compile() {
 	gnome2_src_compile
 
-	if use python; then
+	if use python ; then
 		cd "${PYTHON_S}" || die
 		CFLAGS="${CFLAGS} -I\"${S}\"/src" LDFLAGS="${LDFLAGS} -L\"${S}\"/src/.libs" distutils-r1_src_compile
 	fi
@@ -70,7 +72,7 @@
 src_install() {
 	gnome2_src_install
 
-	if use python; then
+	if use python ; then
 		cd "${PYTHON_S}" || die
 		distutils-r1_src_install
 	fi



1.5                  sci-geosciences/osm-gps-map/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	21 Apr 2013 14:14:32 -0000	1.4
+++ ChangeLog	20 May 2013 13:59:01 -0000	1.5
@@ -1,6 +1,10 @@
 # ChangeLog for sci-geosciences/osm-gps-map
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v 1.4 2013/04/21 14:14:32 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v 1.5 2013/05/20 13:59:01 tomwij Exp $
+
+  20 May 2013; Tom Wijsman <TomWij@gentoo.org> osm-gps-map-0.7.3.ebuild:
+  Added missing python USE flag conditional in prepare phase, fixes compilation
+  with USE=-python.
 
   21 Apr 2013; Tom Wijsman <TomWij@gentoo.org> osm-gps-map-0.7.3.ebuild:
   Slotted dependencies to avoid breakage, fixes bug #464240.





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

* [gentoo-commits] gentoo-x86 commit in sci-geosciences/osm-gps-map: osm-gps-map-0.7.3.ebuild ChangeLog
@ 2013-05-29 16:29 Justin Lecher (jlec)
  0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher (jlec) @ 2013-05-29 16:29 UTC (permalink / raw
  To: gentoo-commits

jlec        13/05/29 16:29:05

  Modified:             osm-gps-map-0.7.3.ebuild ChangeLog
  Log:
  sci-geosciences/osm-gps-map: Fix usage of new python r1 eclasses (missing PYTHON_REQUIRED_USE)
  
  (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)

Revision  Changes    Path
1.6                  sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?r1=1.5&r2=1.6

Index: osm-gps-map-0.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- osm-gps-map-0.7.3.ebuild	20 May 2013 13:59:01 -0000	1.5
+++ osm-gps-map-0.7.3.ebuild	29 May 2013 16:29:05 -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-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v 1.5 2013/05/20 13:59:01 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v 1.6 2013/05/29 16:29:05 jlec Exp $
 
 EAPI=5
 
@@ -19,6 +19,8 @@
 KEYWORDS="~amd64 ~x86"
 IUSE="+introspection python"
 
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
 RDEPEND="
 	>=dev-libs/glib-2.16.0:2
 	>=net-libs/libsoup-2.4.0:2.4



1.6                  sci-geosciences/osm-gps-map/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	20 May 2013 13:59:01 -0000	1.5
+++ ChangeLog	29 May 2013 16:29:05 -0000	1.6
@@ -1,6 +1,9 @@
 # ChangeLog for sci-geosciences/osm-gps-map
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v 1.5 2013/05/20 13:59:01 tomwij Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v 1.6 2013/05/29 16:29:05 jlec Exp $
+
+  29 May 2013; Justin Lecher <jlec@gentoo.org> osm-gps-map-0.7.3.ebuild:
+  Fix usage of new python r1 eclasses (missing PYTHON_REQUIRED_USE)
 
   20 May 2013; Tom Wijsman <TomWij@gentoo.org> osm-gps-map-0.7.3.ebuild:
   Added missing python USE flag conditional in prepare phase, fixes compilation





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

* [gentoo-commits] gentoo-x86 commit in sci-geosciences/osm-gps-map: osm-gps-map-0.7.3.ebuild ChangeLog
@ 2015-04-08 18:49 Michal Gorny (mgorny)
  0 siblings, 0 replies; 6+ messages in thread
From: Michal Gorny (mgorny) @ 2015-04-08 18:49 UTC (permalink / raw
  To: gentoo-commits

mgorny      15/04/08 18:49:16

  Modified:             osm-gps-map-0.7.3.ebuild ChangeLog
  Log:
  Drop old Python implementations
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.7                  sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild?r1=1.6&r2=1.7

Index: osm-gps-map-0.7.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- osm-gps-map-0.7.3.ebuild	29 May 2013 16:29:05 -0000	1.6
+++ osm-gps-map-0.7.3.ebuild	8 Apr 2015 18:49:16 -0000	1.7
@@ -1,10 +1,10 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v 1.6 2013/05/29 16:29:05 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/osm-gps-map-0.7.3.ebuild,v 1.7 2015/04/08 18:49:16 mgorny Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_{6,7} )
+PYTHON_COMPAT=( python2_7 )
 DISTUTILS_OPTIONAL=1
 
 inherit eutils autotools gnome2 distutils-r1



1.9                  sci-geosciences/osm-gps-map/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	21 Mar 2014 16:31:10 -0000	1.8
+++ ChangeLog	8 Apr 2015 18:49:16 -0000	1.9
@@ -1,6 +1,9 @@
 # ChangeLog for sci-geosciences/osm-gps-map
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v 1.8 2014/03/21 16:31:10 tomwij Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osm-gps-map/ChangeLog,v 1.9 2015/04/08 18:49:16 mgorny Exp $
+
+  08 Apr 2015; Michał Górny <mgorny@gentoo.org> osm-gps-map-0.7.3.ebuild:
+  Drop old Python implementations
 
   21 Mar 2014; Tom Wijsman <TomWij@gentoo.org> metadata.xml:
   Updated Aaron's e-mail address.





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

end of thread, other threads:[~2015-04-08 18:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-03  7:01 [gentoo-commits] gentoo-x86 commit in sci-geosciences/osm-gps-map: osm-gps-map-0.7.3.ebuild ChangeLog Maxim Koltsov (maksbotan)
  -- strict thread matches above, loose matches on Subject: below --
2015-04-08 18:49 Michal Gorny (mgorny)
2013-05-29 16:29 Justin Lecher (jlec)
2013-05-20 13:59 Tom Wijsman (tomwij)
2013-04-21 14:14 Tom Wijsman (tomwij)
2013-04-02 20:27 Maxim Koltsov (maksbotan)

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