diff options
author | 2011-12-30 17:41:45 +0000 | |
---|---|---|
committer | 2011-12-30 17:41:45 +0000 | |
commit | ef1529954f9fb992bd52942b17e5ddee9c44b33d (patch) | |
tree | 6beea7d03f1256d34cda3a542ce6f2c81da8b3ce /app-admin | |
parent | use correct mask description (diff) | |
download | gentoo-2-ef1529954f9fb992bd52942b17e5ddee9c44b33d.tar.gz gentoo-2-ef1529954f9fb992bd52942b17e5ddee9c44b33d.tar.bz2 gentoo-2-ef1529954f9fb992bd52942b17e5ddee9c44b33d.zip |
Synchronize live ebuild with other ebuilds. Patch by Arfrever.
(Portage version: 2.1.10.41/cvs/Linux x86_64)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/python-updater/ChangeLog | 5 | ||||
-rw-r--r-- | app-admin/python-updater/python-updater-9999.ebuild | 20 |
2 files changed, 18 insertions, 7 deletions
diff --git a/app-admin/python-updater/ChangeLog b/app-admin/python-updater/ChangeLog index 2e5eb8a1743f..d4b62b8216e5 100644 --- a/app-admin/python-updater/ChangeLog +++ b/app-admin/python-updater/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-admin/python-updater # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/python-updater/ChangeLog,v 1.67 2011/12/30 17:29:55 maksbotan Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/python-updater/ChangeLog,v 1.68 2011/12/30 17:41:45 maksbotan Exp $ + + 30 Dec 2011; Maxim Koltsov <maksbotan@gentoo.org> python-updater-9999.ebuild: + Synchronize live ebuild with other ebuilds. Patch by Arfrever. *python-updater-0.10 (30 Dec 2011) diff --git a/app-admin/python-updater/python-updater-9999.ebuild b/app-admin/python-updater/python-updater-9999.ebuild index 0caeb1f89bbc..7580f74c3132 100644 --- a/app-admin/python-updater/python-updater-9999.ebuild +++ b/app-admin/python-updater/python-updater-9999.ebuild @@ -1,25 +1,33 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/python-updater/python-updater-9999.ebuild,v 1.7 2011/08/06 16:59:42 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/python-updater/python-updater-9999.ebuild,v 1.8 2011/12/30 17:41:45 maksbotan Exp $ -inherit subversion +if [[ "${PV}" == "9999" ]]; then + inherit subversion +fi DESCRIPTION="Script used to reinstall Python packages after changing of active Python versions" HOMEPAGE="http://www.gentoo.org/proj/en/Python/" -SRC_URI="" -ESVN_REPO_URI="https://overlays.gentoo.org/svn/proj/python/projects/${PN}/trunk" +if [[ "${PV}" == "9999" ]]; then + SRC_URI="" + ESVN_REPO_URI="https://gentoo-progress.googlecode.com/svn/projects/python-updater/trunk" +else + SRC_URI="http://people.apache.org/~Arfrever/gentoo/${P}.tar.bz2" +fi LICENSE="GPL-2" SLOT="0" KEYWORDS="" IUSE="" -DEPEND="sys-apps/help2man" +DEPEND="$([[ "${PV}" == "9999" ]] && echo "sys-apps/help2man")" RDEPEND="dev-lang/python || ( >=sys-apps/portage-2.1.6 >=sys-apps/paludis-0.56.0 )" src_compile() { - emake ${PN}.1 || die "Generation of man page failed" + if [[ "${PV}" == "9999" ]]; then + emake ${PN}.1 || die "Generation of man page failed" + fi } src_install() { |