diff options
-rw-r--r-- | dev-util/setconf/setconf-0.6.6.ebuild | 17 | ||||
-rw-r--r-- | dev-util/setconf/setconf-0.6.7.ebuild | 15 |
2 files changed, 15 insertions, 17 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" } diff --git a/dev-util/setconf/setconf-0.6.7.ebuild b/dev-util/setconf/setconf-0.6.7.ebuild index bd589375e9c8..b0646c4fed59 100644 --- a/dev-util/setconf/setconf-0.6.7.ebuild +++ b/dev-util/setconf/setconf-0.6.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -12,7 +12,6 @@ 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() { - python_doscript ${PN}.py - dosym ${PN}.py /usr/bin/${PN} - doman ${PN}.1 + python_doscript "${PN}.py" + dosym "${PN}.py" "/usr/bin/${PN}" + doman "${PN}.1" } |