Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/dsx/
Date: Thu, 09 Feb 2017 21:53:24
Message-Id: 1486677132.69d830b8a39f884ce2586b4294dbade618e8a772.soap@gentoo
1 commit: 69d830b8a39f884ce2586b4294dbade618e8a772
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Wed Feb 8 14:55:34 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 9 21:52:12 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69d830b8
7
8 x11-misc/dsx: EAPI bump 2 -> 6, migrate to python-single-r1
9
10 Fixes: https://bugs.gentoo.org/599800
11
12 Package-Manager: Portage-2.3.3, Repoman-2.3.1
13 Closes: https://github.com/gentoo/gentoo/pull/3882
14
15 x11-misc/dsx/dsx-0.1-r1.ebuild | 35 +++++++++++++++++++++++++++++++++++
16 1 file changed, 35 insertions(+)
17
18 diff --git a/x11-misc/dsx/dsx-0.1-r1.ebuild b/x11-misc/dsx/dsx-0.1-r1.ebuild
19 new file mode 100644
20 index 0000000000..bb4c35bd73
21 --- /dev/null
22 +++ b/x11-misc/dsx/dsx-0.1-r1.ebuild
23 @@ -0,0 +1,35 @@
24 +# Copyright 1999-2017 Gentoo Foundation
25 +# Distributed under the terms of the GNU General Public License v2
26 +# $Id$
27 +
28 +EAPI=6
29 +
30 +PYTHON_COMPAT=( python2_7 )
31 +
32 +inherit python-single-r1
33 +
34 +DESCRIPTION="Command line selection of your X desktop environment"
35 +HOMEPAGE="https://www.gentoo.org/"
36 +SRC_URI=""
37 +
38 +LICENSE="GPL-2"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~ppc ~x86"
41 +IUSE=""
42 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
43 +
44 +DEPEND=""
45 +RDEPEND="
46 + ${PYTHON_DEPS}
47 + x11-apps/xinit"
48 +
49 +S="${WORKDIR}"
50 +
51 +src_prepare() {
52 + cp "${FILESDIR}/${P}" "${PN}" || die
53 + default
54 +}
55 +
56 +src_install() {
57 + python_doscript "${WORKDIR}/${PN}"
58 +}