Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/arandr/
Date: Mon, 03 May 2021 20:07:24
Message-Id: 1620072431.615d13fc36ff67088e0c097fa71efe5b23219241.conikost@gentoo
1 commit: 615d13fc36ff67088e0c097fa71efe5b23219241
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 3 20:07:03 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Mon May 3 20:07:11 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=615d13fc
7
8 x11-misc/arandr: drop old version
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 x11-misc/arandr/arandr-0.1.10.ebuild | 44 ------------------------------------
14 1 file changed, 44 deletions(-)
15
16 diff --git a/x11-misc/arandr/arandr-0.1.10.ebuild b/x11-misc/arandr/arandr-0.1.10.ebuild
17 deleted file mode 100644
18 index d7ff5629bcc..00000000000
19 --- a/x11-misc/arandr/arandr-0.1.10.ebuild
20 +++ /dev/null
21 @@ -1,44 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -PYTHON_COMPAT=( python3_{7,8} )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Another XRandR GUI"
30 -HOMEPAGE="https://christian.amsuess.com/tools/arandr/"
31 -SRC_URI="https://christian.amsuess.com/tools/arandr/files/${P}.tar.gz"
32 -
33 -LICENSE="GPL-3+"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~arm64 x86"
36 -
37 -RDEPEND="
38 - dev-python/pygobject:3=[${PYTHON_USEDEP}]
39 - x11-apps/xrandr
40 -"
41 -DEPEND="
42 - >=dev-python/docutils-0.6[${PYTHON_USEDEP}]
43 -"
44 -
45 -src_prepare() {
46 - local i p
47 - # simulate gettext behavior:
48 - # LINGUAS unset => install all
49 - # LINGUAS="" => install none
50 - # LINGUAS="de fr" => install de and fr
51 - if [[ -n "${LINGUAS+x}" ]] ; then # if LINGUAS is set
52 - for i in $(cd "${S}"/data/po ; for p in *.po ; do echo ${p%.po} ; done) ; do # for every supported language
53 - if ! has ${i} ${LINGUAS} ; then # if language is disabled
54 - rm data/po/${i}.po || die
55 - fi
56 - done
57 - fi
58 -
59 - distutils-r1_src_prepare
60 -}
61 -
62 -src_install() {
63 - distutils-r1_src_install
64 - gunzip "${D}"/usr/share/man/man1/{${PN},unxrandr}.1.gz || die
65 -}