* [gentoo-commits] proj/betagarden:master commit in: app-admin/python-updater/, app-admin/python-updater/files/
@ 2011-03-23 13:59 Sebastian Pipping
0 siblings, 0 replies; 2+ messages in thread
From: Sebastian Pipping @ 2011-03-23 13:59 UTC (permalink / raw
To: gentoo-commits
commit: e7cbc829422deca412a0add7333927fb3e2d3281
Author: Sebastian Pipping <sebastian <AT> pipping <DOT> org>
AuthorDate: Wed Mar 23 13:57:32 2011 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Wed Mar 23 13:57:32 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=e7cbc829
app-admin/python-updater: 0.8 plus patch from bug #308579
---
.../files/python-updater-0.8-skip-debug.patch | 22 ++++++++++++++
.../python-updater/python-updater-0.8-r1.ebuild | 31 ++++++++++++++++++++
2 files changed, 53 insertions(+), 0 deletions(-)
diff --git a/app-admin/python-updater/files/python-updater-0.8-skip-debug.patch b/app-admin/python-updater/files/python-updater-0.8-skip-debug.patch
new file mode 100644
index 0000000..f898228
--- /dev/null
+++ b/app-admin/python-updater/files/python-updater-0.8-skip-debug.patch
@@ -0,0 +1,22 @@
+Index: python-updater
+===================================================================
+--- python-updater (revision 358)
++++ python-updater (working copy)
+@@ -554,7 +554,7 @@
+ fi
+
+ if [[ CHECK_STATIC_LINKING -ne 0 ]]; then
+- binaries="$(scanelf -qs +Py_Initialize < <(grep -E "^obj" "${content}" | cut -d" " -f2) | sed "s/.* //")"
++ binaries="$(scanelf -qs +Py_Initialize < <(grep -E "^obj" "${content}" | cut -d" " -f2 | grep -Ev "^/usr/lib(32|64)?/debug/") | sed "s/.* //")"
+ if [[ -n "${binaries}" ]]; then
+ PKGS_TO_REMERGE+=" ${CATPKGVER}"
+ eindent
+@@ -613,7 +613,7 @@
+ fi
+
+ if [[ CHECK_SHARED_LINKING -ne 0 ]]; then
+- binaries="$(scanelf -qF "%F %n" < <(grep -E "^obj" "${content}" | cut -d" " -f2) | grep -E "( |,)$(get_OLD_PYTHON_SHARED_LIBRARIES_REGEX)(,|$)")"
++ binaries="$(scanelf -qF "%F %n" < <(grep -E "^obj" "${content}" | cut -d" " -f2 | grep -Ev "^/usr/lib(32|64)?/debug/") | grep -E "( |,)$(get_OLD_PYTHON_SHARED_LIBRARIES_REGEX)(,|$)")"
+ if [[ -n "${binaries}" ]]; then
+ PKGS_TO_REMERGE+=" ${CATPKGVER}"
+ eindent
diff --git a/app-admin/python-updater/python-updater-0.8-r1.ebuild b/app-admin/python-updater/python-updater-0.8-r1.ebuild
new file mode 100644
index 0000000..76c1d8e
--- /dev/null
+++ b/app-admin/python-updater/python-updater-0.8-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/python-updater/python-updater-0.8.ebuild,v 1.8 2010/07/30 16:58:01 jer Exp $
+
+EAPI="2"
+
+inherit eutils
+
+DESCRIPTION="Script used to remerge python packages when changing Python version."
+HOMEPAGE="http://www.gentoo.org/proj/en/Python"
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+IUSE=""
+
+DEPEND=""
+RDEPEND="!<dev-lang/python-2.3.6-r2
+ dev-lang/python
+ || ( >=sys-apps/portage-2.1.2 sys-apps/paludis )"
+
+src_prepare() {
+ epatch "${FILESDIR}"/${P}-skip-debug.patch
+}
+
+src_install() {
+ dosbin ${PN} || die "dosbin failed"
+ doman ${PN}.1 || die "doman failed"
+ dodoc AUTHORS ChangeLog || die "dodoc failed"
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] proj/betagarden:master commit in: app-admin/python-updater/, app-admin/python-updater/files/
@ 2011-03-28 13:21 Sebastian Pipping
0 siblings, 0 replies; 2+ messages in thread
From: Sebastian Pipping @ 2011-03-28 13:21 UTC (permalink / raw
To: gentoo-commits
commit: c6531ff58057c83bb9de1f9f986c5e7bd49870b8
Author: Sebastian Pipping <sebastian <AT> pipping <DOT> org>
AuthorDate: Mon Mar 28 13:20:56 2011 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Mon Mar 28 13:20:56 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=c6531ff5
python-updater/python-updater: Remove, arrived in main tree
---
.../files/python-updater-0.8-skip-debug.patch | 22 --------------
.../python-updater/python-updater-0.8-r1.ebuild | 31 --------------------
2 files changed, 0 insertions(+), 53 deletions(-)
diff --git a/app-admin/python-updater/files/python-updater-0.8-skip-debug.patch b/app-admin/python-updater/files/python-updater-0.8-skip-debug.patch
deleted file mode 100644
index f898228..0000000
--- a/app-admin/python-updater/files/python-updater-0.8-skip-debug.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Index: python-updater
-===================================================================
---- python-updater (revision 358)
-+++ python-updater (working copy)
-@@ -554,7 +554,7 @@
- fi
-
- if [[ CHECK_STATIC_LINKING -ne 0 ]]; then
-- binaries="$(scanelf -qs +Py_Initialize < <(grep -E "^obj" "${content}" | cut -d" " -f2) | sed "s/.* //")"
-+ binaries="$(scanelf -qs +Py_Initialize < <(grep -E "^obj" "${content}" | cut -d" " -f2 | grep -Ev "^/usr/lib(32|64)?/debug/") | sed "s/.* //")"
- if [[ -n "${binaries}" ]]; then
- PKGS_TO_REMERGE+=" ${CATPKGVER}"
- eindent
-@@ -613,7 +613,7 @@
- fi
-
- if [[ CHECK_SHARED_LINKING -ne 0 ]]; then
-- binaries="$(scanelf -qF "%F %n" < <(grep -E "^obj" "${content}" | cut -d" " -f2) | grep -E "( |,)$(get_OLD_PYTHON_SHARED_LIBRARIES_REGEX)(,|$)")"
-+ binaries="$(scanelf -qF "%F %n" < <(grep -E "^obj" "${content}" | cut -d" " -f2 | grep -Ev "^/usr/lib(32|64)?/debug/") | grep -E "( |,)$(get_OLD_PYTHON_SHARED_LIBRARIES_REGEX)(,|$)")"
- if [[ -n "${binaries}" ]]; then
- PKGS_TO_REMERGE+=" ${CATPKGVER}"
- eindent
diff --git a/app-admin/python-updater/python-updater-0.8-r1.ebuild b/app-admin/python-updater/python-updater-0.8-r1.ebuild
deleted file mode 100644
index 76c1d8e..0000000
--- a/app-admin/python-updater/python-updater-0.8-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/python-updater/python-updater-0.8.ebuild,v 1.8 2010/07/30 16:58:01 jer Exp $
-
-EAPI="2"
-
-inherit eutils
-
-DESCRIPTION="Script used to remerge python packages when changing Python version."
-HOMEPAGE="http://www.gentoo.org/proj/en/Python"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
-IUSE=""
-
-DEPEND=""
-RDEPEND="!<dev-lang/python-2.3.6-r2
- dev-lang/python
- || ( >=sys-apps/portage-2.1.2 sys-apps/paludis )"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-skip-debug.patch
-}
-
-src_install() {
- dosbin ${PN} || die "dosbin failed"
- doman ${PN}.1 || die "doman failed"
- dodoc AUTHORS ChangeLog || die "dodoc failed"
-}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-03-28 13:21 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-23 13:59 [gentoo-commits] proj/betagarden:master commit in: app-admin/python-updater/, app-admin/python-updater/files/ Sebastian Pipping
-- strict thread matches above, loose matches on Subject: below --
2011-03-28 13:21 Sebastian Pipping
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox