summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Delaney <idella4@gentoo.org>2014-11-02 04:17:33 +0000
committerIan Delaney <idella4@gentoo.org>2014-11-02 04:17:33 +0000
commit6303c602747a9f34a13eb5bda3517927e6125ee3 (patch)
treef4a3ff8934b2b7669ddf4632b3c04fe987feb5f5 /dev-util/setconf
parentVersion bump, update HOMEPAGE, and add musepack and opus use flags. (diff)
downloadgentoo-2-6303c602747a9f34a13eb5bda3517927e6125ee3.tar.gz
gentoo-2-6303c602747a9f34a13eb5bda3517927e6125ee3.tar.bz2
gentoo-2-6303c602747a9f34a13eb5bda3517927e6125ee3.zip
bump; drop py3.2
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-util/setconf')
-rw-r--r--dev-util/setconf/ChangeLog7
-rw-r--r--dev-util/setconf/setconf-0.6.3.ebuild41
2 files changed, 47 insertions, 1 deletions
diff --git a/dev-util/setconf/ChangeLog b/dev-util/setconf/ChangeLog
index 3c9f5e873401..b6d6da3baf68 100644
--- a/dev-util/setconf/ChangeLog
+++ b/dev-util/setconf/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-util/setconf
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/setconf/ChangeLog,v 1.6 2014/03/29 15:08:53 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/setconf/ChangeLog,v 1.7 2014/11/02 04:17:33 idella4 Exp $
+
+*setconf-0.6.3 (02 Nov 2014)
+
+ 02 Nov 2014; Ian Delaney <idella4@gentoo.org> +setconf-0.6.3.ebuild:
+ bump; drop py3.2
29 Mar 2014; Mike Gilbert <floppym@gentoo.org> setconf-0.6.2.ebuild:
Add python2.7.
diff --git a/dev-util/setconf/setconf-0.6.3.ebuild b/dev-util/setconf/setconf-0.6.3.ebuild
new file mode 100644
index 000000000000..7e3a841e5621
--- /dev/null
+++ b/dev-util/setconf/setconf-0.6.3.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/setconf/setconf-0.6.3.ebuild,v 1.1 2014/11/02 04:17:33 idella4 Exp $
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_{3,4}} )
+inherit python-single-r1
+
+DESCRIPTION="A small python based utility that can be 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}
+
+# "REQUIRED_USE is needed to have a (un-)nice error when someone disabled all of python3" -mgorny
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+pkg_setup() {
+ python-single-r1_pkg_setup
+}
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ unpack ./${PN}.1.gz
+}
+
+src_prepare() {
+ python_fix_shebang ${PN}.py #462326
+}
+
+src_install() {
+ dobin ${PN}.py
+ ln -s ${PN}.py "${ED}"/usr/bin/${PN}
+ doman ${PN}.1
+}