summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2014-04-25 19:12:25 +0000
committerPacho Ramos <pacho@gentoo.org>2014-04-25 19:12:25 +0000
commite98a69d1657f80c412a4cdf128e5542e5f1c10f8 (patch)
tree1a6c97fddbb580649872381a73ef0d0c04e31557 /dev-util
parentdrop old (diff)
downloadgentoo-2-e98a69d1657f80c412a4cdf128e5542e5f1c10f8.tar.gz
gentoo-2-e98a69d1657f80c412a4cdf128e5542e5f1c10f8.tar.bz2
gentoo-2-e98a69d1657f80c412a4cdf128e5542e5f1c10f8.zip
Drop old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/gdbus-codegen/ChangeLog9
-rw-r--r--dev-util/gdbus-codegen/files/gdbus-codegen-2.32.4-sitedir.patch21
-rw-r--r--dev-util/gdbus-codegen/files/gdbus-codegen-2.36.4-input-encoding.patch30
-rw-r--r--dev-util/gdbus-codegen/gdbus-codegen-2.32.4-r1.ebuild47
-rw-r--r--dev-util/gdbus-codegen/gdbus-codegen-2.32.4-r2.ebuild50
-rw-r--r--dev-util/gdbus-codegen/gdbus-codegen-2.34.3-r1.ebuild50
-rw-r--r--dev-util/gdbus-codegen/gdbus-codegen-2.36.4-r1.ebuild50
7 files changed, 8 insertions, 249 deletions
diff --git a/dev-util/gdbus-codegen/ChangeLog b/dev-util/gdbus-codegen/ChangeLog
index baf7a7928d99..971ec91203da 100644
--- a/dev-util/gdbus-codegen/ChangeLog
+++ b/dev-util/gdbus-codegen/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for dev-util/gdbus-codegen
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gdbus-codegen/ChangeLog,v 1.84 2014/04/21 10:29:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gdbus-codegen/ChangeLog,v 1.85 2014/04/25 19:12:25 pacho Exp $
+
+ 25 Apr 2014; Pacho Ramos <pacho@gentoo.org>
+ -files/gdbus-codegen-2.32.4-sitedir.patch,
+ -files/gdbus-codegen-2.36.4-input-encoding.patch,
+ -gdbus-codegen-2.32.4-r1.ebuild, -gdbus-codegen-2.32.4-r2.ebuild,
+ -gdbus-codegen-2.34.3-r1.ebuild, -gdbus-codegen-2.36.4-r1.ebuild:
+ Drop old
21 Apr 2014; Agostino Sarubbo <ago@gentoo.org> gdbus-codegen-2.38.2.ebuild:
Stable for arm, wrt bug #507568
diff --git a/dev-util/gdbus-codegen/files/gdbus-codegen-2.32.4-sitedir.patch b/dev-util/gdbus-codegen/files/gdbus-codegen-2.32.4-sitedir.patch
deleted file mode 100644
index 84b91f4c6a1c..000000000000
--- a/dev-util/gdbus-codegen/files/gdbus-codegen-2.32.4-sitedir.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/gio/gdbus-2.0/codegen/gdbus-codegen.in b/gio/gdbus-2.0/codegen/gdbus-codegen.in
-index 217c755..8520bb8 100644
---- a/gio/gdbus-2.0/codegen/gdbus-codegen.in
-+++ b/gio/gdbus-2.0/codegen/gdbus-codegen.in
-@@ -29,13 +29,9 @@ srcdir = os.getenv('UNINSTALLED_GLIB_SRCDIR', None)
-
- if srcdir is not None:
- path = os.path.join(srcdir, 'gio', 'gdbus-2.0')
--elif os.name == 'nt':
-- # Makes gdbus-codegen 'relocatable' at runtime on Windows.
-- path = os.path.join(os.path.dirname(__file__), '..', 'lib', 'gdbus-2.0')
-+ sys.path.insert(0, os.path.abspath(path))
-+ from codegen import codegen_main
- else:
-- path = os.path.join('@libdir@', 'gdbus-2.0')
--
--sys.path.insert(0, os.path.abspath(path))
--from codegen import codegen_main
-+ from gdbus_codegen import codegen_main
-
- sys.exit(codegen_main.codegen_main())
diff --git a/dev-util/gdbus-codegen/files/gdbus-codegen-2.36.4-input-encoding.patch b/dev-util/gdbus-codegen/files/gdbus-codegen-2.36.4-input-encoding.patch
deleted file mode 100644
index f6f68f394609..000000000000
--- a/dev-util/gdbus-codegen/files/gdbus-codegen-2.36.4-input-encoding.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From a7f2765dbabf889df065e601fc072644dda625e4 Mon Sep 17 00:00:00 2001
-From: Daiki Ueno <ueno@unixuser.org>
-Date: Fri, 16 Aug 2013 17:44:14 +0200
-Subject: [PATCH] codegen: Treat input file as binary
-
-Under C locale, open() in Python 3 sets the file encoding to ASCII.
-As expat looks at encoding="..." in XML declaration, gdbus-codegen can
-simply open the input file as binary and let expat decode the content.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=696633
----
- gio/gdbus-2.0/codegen/codegen_main.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/gio/gdbus-2.0/codegen/codegen_main.py b/gio/gdbus-2.0/codegen/codegen_main.py
-index aa7984e..69cf3e7 100755
---- a/gio/gdbus-2.0/codegen/codegen_main.py
-+++ b/gio/gdbus-2.0/codegen/codegen_main.py
-@@ -166,7 +166,7 @@ def codegen_main():
-
- all_ifaces = []
- for fname in args:
-- f = open(fname)
-+ f = open(fname, 'rb')
- xml_data = f.read()
- f.close()
- parsed_ifaces = parser.parse_dbus_xml(xml_data)
---
-1.8.3.2
-
diff --git a/dev-util/gdbus-codegen/gdbus-codegen-2.32.4-r1.ebuild b/dev-util/gdbus-codegen/gdbus-codegen-2.32.4-r1.ebuild
deleted file mode 100644
index 4911961f9bd3..000000000000
--- a/dev-util/gdbus-codegen/gdbus-codegen-2.32.4-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gdbus-codegen/gdbus-codegen-2.32.4-r1.ebuild,v 1.12 2013/09/06 18:34:45 ago Exp $
-
-EAPI="5"
-GNOME_ORG_MODULE="glib"
-PYTHON_COMPAT=( python{2_6,2_7,3_2} )
-PYTHON_REQ_USE="xml"
-
-inherit eutils gnome.org distutils-r1
-
-DESCRIPTION="GDBus code and documentation generator"
-HOMEPAGE="http://www.gtk.org/"
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="${PYTHON_DEPS}"
-DEPEND="${RDEPEND}"
-
-# To prevent circular dependencies with glib[test]
-PDEPEND=">=dev-libs/glib-${PV}:2"
-
-S="${WORKDIR}/glib-${PV}/gio/gdbus-2.0/codegen"
-
-python_prepare_all() {
- PATCHES=( "${FILESDIR}/${PN}-2.32.4-sitedir.patch" )
- distutils-r1_python_prepare_all
- sed -e "s:\"/usr/local\":\"${EPREFIX}/usr\":" \
- -i config.py || die "sed config.py failed"
-
- sed -e 's:#!@PYTHON@:#!/usr/bin/env python:' gdbus-codegen.in > gdbus-codegen || die
- cp "${FILESDIR}/setup.py-2.32.4" setup.py || die "cp failed"
- sed -e "s/@PV@/${PV}/" -i setup.py || die "sed setup.py failed"
-}
-
-src_test() {
- elog "Skipping tests. This package is tested by dev-libs/glib"
- elog "when merged with FEATURES=test"
-}
-
-python_install_all() {
- distutils-r1_python_install_all # no-op, but prevents QA warning
- doman "${WORKDIR}/glib-${PV}/docs/reference/gio/gdbus-codegen.1"
-}
diff --git a/dev-util/gdbus-codegen/gdbus-codegen-2.32.4-r2.ebuild b/dev-util/gdbus-codegen/gdbus-codegen-2.32.4-r2.ebuild
deleted file mode 100644
index 3c7d7b3f9c2c..000000000000
--- a/dev-util/gdbus-codegen/gdbus-codegen-2.32.4-r2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gdbus-codegen/gdbus-codegen-2.32.4-r2.ebuild,v 1.2 2013/09/05 18:39:23 mgorny Exp $
-
-EAPI="5"
-GNOME_ORG_MODULE="glib"
-PYTHON_COMPAT=( python{2_6,2_7,3_2} )
-PYTHON_REQ_USE="xml"
-
-inherit eutils gnome.org distutils-r1
-
-DESCRIPTION="GDBus code and documentation generator"
-HOMEPAGE="http://www.gtk.org/"
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="${PYTHON_DEPS}"
-DEPEND="${RDEPEND}"
-
-# To prevent circular dependencies with glib[test]
-PDEPEND=">=dev-libs/glib-${PV}:2"
-
-S="${WORKDIR}/glib-${PV}/gio/gdbus-2.0/codegen"
-
-python_prepare_all() {
- PATCHES=(
- "${FILESDIR}/${PN}-2.32.4-sitedir.patch"
- "${FILESDIR}/${PN}-2.36.4-input-encoding.patch"
- )
- distutils-r1_python_prepare_all
- sed -e "s:\"/usr/local\":\"${EPREFIX}/usr\":" \
- -i config.py || die "sed config.py failed"
-
- sed -e 's:#!@PYTHON@:#!/usr/bin/env python:' gdbus-codegen.in > gdbus-codegen || die
- cp "${FILESDIR}/setup.py-2.32.4" setup.py || die "cp failed"
- sed -e "s/@PV@/${PV}/" -i setup.py || die "sed setup.py failed"
-}
-
-src_test() {
- elog "Skipping tests. This package is tested by dev-libs/glib"
- elog "when merged with FEATURES=test"
-}
-
-python_install_all() {
- distutils-r1_python_install_all # no-op, but prevents QA warning
- doman "${WORKDIR}/glib-${PV}/docs/reference/gio/gdbus-codegen.1"
-}
diff --git a/dev-util/gdbus-codegen/gdbus-codegen-2.34.3-r1.ebuild b/dev-util/gdbus-codegen/gdbus-codegen-2.34.3-r1.ebuild
deleted file mode 100644
index 63e83f11347a..000000000000
--- a/dev-util/gdbus-codegen/gdbus-codegen-2.34.3-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gdbus-codegen/gdbus-codegen-2.34.3-r1.ebuild,v 1.5 2013/11/14 04:56:43 mattst88 Exp $
-
-EAPI="5"
-GNOME_ORG_MODULE="glib"
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
-PYTHON_REQ_USE="xml"
-
-inherit eutils gnome.org distutils-r1
-
-DESCRIPTION="GDBus code and documentation generator"
-HOMEPAGE="http://www.gtk.org/"
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="${PYTHON_DEPS}"
-DEPEND="${RDEPEND}"
-
-# To prevent circular dependencies with glib[test]
-PDEPEND=">=dev-libs/glib-${PV}:2"
-
-S="${WORKDIR}/glib-${PV}/gio/gdbus-2.0/codegen"
-
-python_prepare_all() {
- PATCHES=(
- "${FILESDIR}/${PN}-2.32.4-sitedir.patch"
- "${FILESDIR}/${PN}-2.36.4-input-encoding.patch"
- )
- distutils-r1_python_prepare_all
- sed -e "s:\"/usr/local\":\"${EPREFIX}/usr\":" \
- -i config.py || die "sed config.py failed"
-
- sed -e 's:#!@PYTHON@:#!/usr/bin/env python:' gdbus-codegen.in > gdbus-codegen || die
- cp "${FILESDIR}/setup.py-2.32.4" setup.py || die "cp failed"
- sed -e "s/@PV@/${PV}/" -i setup.py || die "sed setup.py failed"
-}
-
-src_test() {
- elog "Skipping tests. This package is tested by dev-libs/glib"
- elog "when merged with FEATURES=test"
-}
-
-python_install_all() {
- distutils-r1_python_install_all # no-op, but prevents QA warning
- doman "${WORKDIR}/glib-${PV}/docs/reference/gio/gdbus-codegen.1"
-}
diff --git a/dev-util/gdbus-codegen/gdbus-codegen-2.36.4-r1.ebuild b/dev-util/gdbus-codegen/gdbus-codegen-2.36.4-r1.ebuild
deleted file mode 100644
index 98afd4226e31..000000000000
--- a/dev-util/gdbus-codegen/gdbus-codegen-2.36.4-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gdbus-codegen/gdbus-codegen-2.36.4-r1.ebuild,v 1.6 2014/02/22 14:37:30 hattya Exp $
-
-EAPI="5"
-GNOME_ORG_MODULE="glib"
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
-PYTHON_REQ_USE="xml"
-
-inherit eutils gnome.org distutils-r1
-
-DESCRIPTION="GDBus code and documentation generator"
-HOMEPAGE="http://www.gtk.org/"
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="${PYTHON_DEPS}"
-DEPEND="${RDEPEND}"
-
-# To prevent circular dependencies with glib[test]
-PDEPEND=">=dev-libs/glib-${PV}:2"
-
-S="${WORKDIR}/glib-${PV}/gio/gdbus-2.0/codegen"
-
-python_prepare_all() {
- PATCHES=(
- "${FILESDIR}/${PN}-2.36.0-sitedir.patch"
- "${FILESDIR}/${PN}-2.36.4-input-encoding.patch"
- )
- distutils-r1_python_prepare_all
- sed -e "s:\"/usr/local\":\"${EPREFIX}/usr\":" \
- -i config.py || die "sed config.py failed"
-
- sed -e 's:#!@PYTHON@:#!/usr/bin/env python:' gdbus-codegen.in > gdbus-codegen || die
- cp "${FILESDIR}/setup.py-2.32.4" setup.py || die "cp failed"
- sed -e "s/@PV@/${PV}/" -i setup.py || die "sed setup.py failed"
-}
-
-src_test() {
- einfo "Skipping tests. This package is tested by dev-libs/glib"
- einfo "when merged with FEATURES=test"
-}
-
-python_install_all() {
- distutils-r1_python_install_all # no-op, but prevents QA warning
- doman "${WORKDIR}/glib-${PV}/docs/reference/gio/gdbus-codegen.1"
-}