diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-11-13 11:03:50 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-11-13 11:03:50 +0000 |
commit | 0c2dc668275e0ce0d424e047d9a4e54b2716e704 (patch) | |
tree | 06a85bda9e0c0e5e62d71ae22ddf1e91c1e06766 /dev-libs/libgweather | |
parent | Drop old (#508854) (diff) | |
download | gentoo-2-0c2dc668275e0ce0d424e047d9a4e54b2716e704.tar.gz gentoo-2-0c2dc668275e0ce0d424e047d9a4e54b2716e704.tar.bz2 gentoo-2-0c2dc668275e0ce0d424e047d9a4e54b2716e704.zip |
Drop old (#508854)
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'dev-libs/libgweather')
-rw-r--r-- | dev-libs/libgweather/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libgweather/files/libgweather-2.30.0-fix-automagic-python-support.patch | 24 | ||||
-rw-r--r-- | dev-libs/libgweather/libgweather-2.30.3.ebuild | 65 |
3 files changed, 6 insertions, 90 deletions
diff --git a/dev-libs/libgweather/ChangeLog b/dev-libs/libgweather/ChangeLog index ddcd50b88c7c..e2411e0bbb7d 100644 --- a/dev-libs/libgweather/ChangeLog +++ b/dev-libs/libgweather/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libgweather # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgweather/ChangeLog,v 1.115 2014/10/14 09:54:34 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgweather/ChangeLog,v 1.116 2014/11/13 11:03:50 pacho Exp $ + + 13 Nov 2014; Pacho Ramos <pacho@gentoo.org> + -files/libgweather-2.30.0-fix-automagic-python-support.patch, + -libgweather-2.30.3.ebuild: + Drop old (#508854) *libgweather-3.12.3 (14 Oct 2014) diff --git a/dev-libs/libgweather/files/libgweather-2.30.0-fix-automagic-python-support.patch b/dev-libs/libgweather/files/libgweather-2.30.0-fix-automagic-python-support.patch deleted file mode 100644 index 77f2f94eb5cf..000000000000 --- a/dev-libs/libgweather/files/libgweather-2.30.0-fix-automagic-python-support.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 03626e45436b0b9c345e0c07e4f488375639877a Mon Sep 17 00:00:00 2001 -From: Romain Perier <mrpouet@gentoo.org> -Date: Sat, 19 Sep 2009 20:54:32 +0200 -Subject: [PATCH] Fix automagic python support when --disable-python is given on the command line - ---- - configure.in | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/configure.in b/configure.in -index f363571..743fe9d 100644 ---- a/configure.in -+++ b/configure.in -@@ -215,7 +215,7 @@ dnl *************************************************************************** - AC_ARG_ENABLE(python, - [AC_HELP_STRING([--enable-python], - [Build libgweather python bindings])], -- [enable_python=yes], -+ [enable_python=$enableval], - [enable_python=no]) - if test "$enable_python" = "yes"; then - AM_PATH_PYTHON() --- -1.6.5.rc1 diff --git a/dev-libs/libgweather/libgweather-2.30.3.ebuild b/dev-libs/libgweather/libgweather-2.30.3.ebuild deleted file mode 100644 index 13be1c4df784..000000000000 --- a/dev-libs/libgweather/libgweather-2.30.3.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgweather/libgweather-2.30.3.ebuild,v 1.16 2012/12/19 01:53:47 tetromino Exp $ - -EAPI="4" -GCONF_DEBUG="no" -GNOME_TARBALL_SUFFIX="bz2" -PYTHON_DEPEND="python? 2" - -inherit autotools eutils gnome2 python - -DESCRIPTION="Library to access weather information from online services" -HOMEPAGE="https://live.gnome.org/LibGWeather" - -LICENSE="GPL-2+" -SLOT="2" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd" -IUSE="python" - -# libsoup-gnome is to be used because libsoup[gnome] might not -# get libsoup-gnome installed by the time ${P} is built -RDEPEND=">=x11-libs/gtk+-2.11:2 - >=dev-libs/glib-2.13:2 - >=gnome-base/gconf-2.8:2 - >=net-libs/libsoup-gnome-2.25.1:2.4 - >=dev-libs/libxml2-2.6.0:2 - >=sys-libs/timezone-data-2010k - python? ( - >=dev-python/pygobject-2:2 - >=dev-python/pygtk-2 ) - !<gnome-base/gnome-applets-2.22.0" -DEPEND="${RDEPEND} - sys-devel/gettext - >=dev-util/intltool-0.40.3 - virtual/pkgconfig - >=dev-util/gtk-doc-am-1.9" - -pkg_setup() { - if use python; then - python_set_active_version 2 - python_pkg_setup - fi -} - -src_prepare() { - DOCS="AUTHORS ChangeLog MAINTAINERS NEWS" - G2CONF="${G2CONF} - --enable-locations-compression - --disable-all-translations-in-one-xml - --disable-static - $(use_enable python)" - - # Fix building -python, Gnome bug #596660. - epatch "${FILESDIR}/${PN}-2.30.0-fix-automagic-python-support.patch" - - eautoreconf - gnome2_src_prepare -} - -src_install() { - gnome2_src_install - use python && python_clean_installation_image - - find "${D}" -name '*.la' -exec rm -f {} + -} |