diff options
author | Mike Gilbert <floppym@gentoo.org> | 2012-10-13 21:07:45 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2012-10-13 21:07:45 +0000 |
commit | 0fa810abc65bac96163b0e4f86c9b7d61bb01e57 (patch) | |
tree | 50a6ef71db294eced62aa64545cfbfbd04637503 /net-irc/irker | |
parent | Version bump, remove old. (diff) | |
download | gentoo-2-0fa810abc65bac96163b0e4f86c9b7d61bb01e57.tar.gz gentoo-2-0fa810abc65bac96163b0e4f86c9b7d61bb01e57.tar.bz2 gentoo-2-0fa810abc65bac96163b0e4f86c9b7d61bb01e57.zip |
Force python2 shebangs.
(Portage version: 2.2.0_alpha137/cvs/Linux x86_64)
Diffstat (limited to 'net-irc/irker')
-rw-r--r-- | net-irc/irker/ChangeLog | 5 | ||||
-rw-r--r-- | net-irc/irker/irker-1.12-r1.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/net-irc/irker/ChangeLog b/net-irc/irker/ChangeLog index 343405ac630a..ee0bc3fa4dcc 100644 --- a/net-irc/irker/ChangeLog +++ b/net-irc/irker/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-irc/irker # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/irker/ChangeLog,v 1.2 2012/10/13 20:52:57 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/irker/ChangeLog,v 1.3 2012/10/13 21:07:45 floppym Exp $ + + 13 Oct 2012; Mike Gilbert <floppym@gentoo.org> irker-1.12-r1.ebuild: + Force python2 shebangs. *irker-1.12-r1 (13 Oct 2012) diff --git a/net-irc/irker/irker-1.12-r1.ebuild b/net-irc/irker/irker-1.12-r1.ebuild index fc6c67ccc21f..2f7ac6c41c1f 100644 --- a/net-irc/irker/irker-1.12-r1.ebuild +++ b/net-irc/irker/irker-1.12-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/irker/irker-1.12-r1.ebuild,v 1.1 2012/10/13 20:52:57 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/irker/irker-1.12-r1.ebuild,v 1.2 2012/10/13 21:07:45 floppym Exp $ EAPI=4 @@ -15,7 +15,8 @@ KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="app-text/xmlto dev-python/irc" -RDEPEND="${DEPEND}" +RDEPEND="${DEPEND} + =dev-lang/python-2*" src_install() { # the irkerhook.py is not installed with the default makefile @@ -25,4 +26,5 @@ src_install() { cp ${FILESDIR}/irker.init ${D}/etc/init.d/irkerd || die "Failed to install init script" chmod 755 ${D}/etc/init.d/irkerd # need to be executable cp ${FILESDIR}/irker.conf.d ${D}/etc/conf.d/irkerd || die "Failed to install conf" + python_convert_shebangs -r 2 "${D}" } |