diff options
author | Zac Medico <zmedico@gentoo.org> | 2013-03-02 04:24:16 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2013-03-02 04:24:16 +0000 |
commit | 9c58ab85c46ee97cf9537b7fa3f8f6f131d4eb3f (patch) | |
tree | cc68be85d9a2ca957e0d74869232157329c37dcf /sys-apps | |
parent | Though it isn't entirely proper to remove a package like this, nothing actual... (diff) | |
download | gentoo-2-9c58ab85c46ee97cf9537b7fa3f8f6f131d4eb3f.tar.gz gentoo-2-9c58ab85c46ee97cf9537b7fa3f8f6f131d4eb3f.tar.bz2 gentoo-2-9c58ab85c46ee97cf9537b7fa3f8f6f131d4eb3f.zip |
2.1.11.53 version bump. This fixes bug #102297 (remove
deprecated preplib helper),
bug #225821 (clarify python api docs for abssymlink function),
bug #328113 (repoman validation of metadata.xml doctype),
bug #368297 (remove useless 'Starting parallel fetch'
message), bug #451326 (add workaround for compatibility with epoll
implementation in qemu-user), bug #457136 (support quoted args in EXTRA_ECONF),
bug #458730 (fix emerge --help docs to indicate that --verbose does not
change output of --help), bug #459350 (unset LIGUAS in ebuild env when appropriate),
and bug #459832 (incorrect emerge handling of broken slot-operator deps).
Bug #459934 tracks all bugs fixed since portage-2.1.11.52.
(Portage version: 2.2.0_alpha164/cvs/Linux i686, signed Manifest commit with key 0xFDE8EF85AE5719A3)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/portage/ChangeLog | 17 | ||||
-rw-r--r-- | sys-apps/portage/portage-2.1.11.53.ebuild (renamed from sys-apps/portage/portage-2.1.11.31.ebuild) | 8 |
2 files changed, 20 insertions, 5 deletions
diff --git a/sys-apps/portage/ChangeLog b/sys-apps/portage/ChangeLog index 7fe62e4bfe7c..28d127752278 100644 --- a/sys-apps/portage/ChangeLog +++ b/sys-apps/portage/ChangeLog @@ -1,6 +1,21 @@ # ChangeLog for sys-apps/portage # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/ChangeLog,v 1.1214 2013/03/01 10:02:48 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/ChangeLog,v 1.1215 2013/03/02 04:24:16 zmedico Exp $ + +*portage-2.1.11.53 (02 Mar 2013) + + 02 Mar 2013; Zac Medico <zmedico@gentoo.org> +portage-2.1.11.53.ebuild, + -portage-2.1.11.31.ebuild: + 2.1.11.53 version bump. This fixes bug #102297 (remove deprecated preplib + helper), bug #225821 (clarify python api docs for abssymlink function), bug + #328113 (repoman validation of metadata.xml doctype), bug #368297 (remove + useless 'Starting parallel fetch' message), bug #451326 (add workaround for + compatibility with epoll implementation in qemu-user), bug #457136 (support + quoted args in EXTRA_ECONF), bug #458730 (fix emerge --help docs to indicate + that --verbose does not change output of --help), bug #459350 (unset LIGUAS in + ebuild env when appropriate), and bug #459832 (incorrect emerge handling of + broken slot-operator deps). Bug #459934 tracks all bugs fixed since + portage-2.1.11.52. 01 Mar 2013; Agostino Sarubbo <ago@gentoo.org> portage-2.1.11.52.ebuild: Stable for sparc, wrt bug #459748 diff --git a/sys-apps/portage/portage-2.1.11.31.ebuild b/sys-apps/portage/portage-2.1.11.53.ebuild index 685253734df8..0c3675fc2c95 100644 --- a/sys-apps/portage/portage-2.1.11.31.ebuild +++ b/sys-apps/portage/portage-2.1.11.53.ebuild @@ -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/sys-apps/portage/portage-2.1.11.31.ebuild,v 1.13 2013/02/06 19:46:46 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.1.11.53.ebuild,v 1.1 2013/03/02 04:24:16 zmedico Exp $ # Require EAPI 2 since we now require at least python-2.6 (for python 3 # syntax support) which also requires EAPI 2. @@ -10,9 +10,9 @@ inherit eutils python DESCRIPTION="Portage is the package management and distribution system for Gentoo" HOMEPAGE="http://www.gentoo.org/proj/en/portage/index.xml" LICENSE="GPL-2" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" SLOT="0" -IUSE="build doc epydoc +ipc linguas_pl pypy2_0 python2 python3 selinux xattr" +IUSE="build doc epydoc +ipc linguas_pl linguas_ru pypy2_0 python2 python3 selinux xattr" # Import of the io module in python-2.6 raises ImportError for the # thread module if threading is disabled. @@ -156,7 +156,7 @@ src_prepare() { die "Failed to patch portage.VERSION" sed -e "1s/VERSION/${PVR}/" -i doc/fragment/version || \ die "Failed to patch VERSION in doc/fragment/version" - sed -e "1s/VERSION/${PVR}/" -i man/* || \ + sed -e "1s/VERSION/${PVR}/" -i $(find man -type f) || \ die "Failed to patch VERSION in man page headers" if ! use ipc ; then |