diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2017-05-05 00:31:32 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-05-05 00:58:09 +0200 |
commit | c74ae2589a6140d0ae634c3c6a93b49613fc278a (patch) | |
tree | 52e0d9b2a7015b53e90698db26647887cbb3cad2 /dev-util/setconf/setconf-0.6.6.ebuild | |
parent | dev-util/huc: clean up old. (diff) | |
download | gentoo-c74ae2589a6140d0ae634c3c6a93b49613fc278a.tar.gz gentoo-c74ae2589a6140d0ae634c3c6a93b49613fc278a.tar.bz2 gentoo-c74ae2589a6140d0ae634c3c6a93b49613fc278a.zip |
dev-util/setconf: fix shebang.
Gentoo-Bug: https://bugs.gentoo.org/617268
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-util/setconf/setconf-0.6.6.ebuild')
-rw-r--r-- | dev-util/setconf/setconf-0.6.6.ebuild | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/dev-util/setconf/setconf-0.6.6.ebuild b/dev-util/setconf/setconf-0.6.6.ebuild index 94a64a1fb57d..b0646c4fed59 100644 --- a/dev-util/setconf/setconf-0.6.6.ebuild +++ b/dev-util/setconf/setconf-0.6.6.ebuild @@ -1,18 +1,17 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 PYTHON_COMPAT=( python{2_7,3_4} ) inherit python-single-r1 -DESCRIPTION="A small python based utility that can be used to change configuration files" +DESCRIPTION="A small python based utility used to change configuration files" HOMEPAGE="http://setconf.roboticoverlords.org/" SRC_URI="http://${PN}.roboticoverlords.org/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" RDEPEND=${PYTHON_DEPS} @@ -25,16 +24,16 @@ pkg_setup() { src_unpack() { unpack ${A} - cd "${S}" - unpack ./${PN}.1.gz + cd "${S}" || die + unpack "./${PN}.1.gz" } src_prepare() { - python_fix_shebang ${PN}.py #462326 + python_fix_shebang -f "${PN}.py" } src_install() { - dobin ${PN}.py - ln -s ${PN}.py "${ED}"/usr/bin/${PN} - doman ${PN}.1 + python_doscript "${PN}.py" + dosym "${PN}.py" "/usr/bin/${PN}" + doman "${PN}.1" } |