diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-01-29 17:17:00 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-01-29 17:17:00 +0000 |
commit | 80d2ea16150f9c7bec3d8321e83f16259fa45be3 (patch) | |
tree | 8e462f2886cf1135e5c343e0189941dc7d552874 /app-admin/python-updater | |
parent | Fix projectm depend to <media-libs/projectm-2 in 0.3.1 wrt #302771, thanks to... (diff) | |
download | gentoo-2-80d2ea16150f9c7bec3d8321e83f16259fa45be3.tar.gz gentoo-2-80d2ea16150f9c7bec3d8321e83f16259fa45be3.tar.bz2 gentoo-2-80d2ea16150f9c7bec3d8321e83f16259fa45be3.zip |
Version bump. Fixed bugs: #281692, #283284, #289253.
(Portage version: 15217-svn/cvs/Linux x86_64)
Diffstat (limited to 'app-admin/python-updater')
-rw-r--r-- | app-admin/python-updater/ChangeLog | 10 | ||||
-rw-r--r-- | app-admin/python-updater/python-updater-0.8.ebuild | 23 |
2 files changed, 31 insertions, 2 deletions
diff --git a/app-admin/python-updater/ChangeLog b/app-admin/python-updater/ChangeLog index 6efe8f09c11f..262751b7c624 100644 --- a/app-admin/python-updater/ChangeLog +++ b/app-admin/python-updater/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-admin/python-updater -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/python-updater/ChangeLog,v 1.43 2009/10/17 19:22:40 arfrever Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/python-updater/ChangeLog,v 1.44 2010/01/29 17:17:00 arfrever Exp $ + +*python-updater-0.8 (29 Jan 2010) + + 29 Jan 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +python-updater-0.8.ebuild: + Version bump. Fixed bugs: #281692, #283284, #289253. 17 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> python-updater-0.7.ebuild: diff --git a/app-admin/python-updater/python-updater-0.8.ebuild b/app-admin/python-updater/python-updater-0.8.ebuild new file mode 100644 index 000000000000..c0f62fd837c5 --- /dev/null +++ b/app-admin/python-updater/python-updater-0.8.ebuild @@ -0,0 +1,23 @@ +# 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.1 2010/01/29 17:17:00 arfrever Exp $ + +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 + || ( >=sys-apps/portage-2.1.2 sys-apps/paludis )" + +src_install() +{ + dosbin ${PN} || die "dosbin failed" + doman ${PN}.1 || die "doman failed" + dodoc AUTHORS ChangeLog || die "dodoc failed" +} |