Gentoo Archives: gentoo-commits

From: Sergey Popov <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/dex/
Date: Thu, 30 Dec 2021 06:59:24
Message-Id: 1640847098.a45623966ad5651c9e3beb9e09428dbc09f1da52.pinkbyte@gentoo
1 commit: a45623966ad5651c9e3beb9e09428dbc09f1da52
2 Author: Douglas Agbeve <douglas <AT> agbeve <DOT> com>
3 AuthorDate: Sun Dec 19 18:48:51 2021 +0000
4 Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 30 06:51:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4562396
7
8 x11-misc/dex: bump to v0.9.0
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Douglas Agbeve <douglas <AT> agbeve.com>
12 Signed-off-by: Sergey Popov <pinkbyte <AT> gentoo.org>
13 Closes: https://github.com/gentoo/gentoo/pull/23422
14
15 x11-misc/dex/Manifest | 1 +
16 x11-misc/dex/dex-0.9.0.ebuild | 36 ++++++++++++++++++++++++++++++++++++
17 2 files changed, 37 insertions(+)
18
19 diff --git a/x11-misc/dex/Manifest b/x11-misc/dex/Manifest
20 index 1dd247ef3213..bb41aa8b1a15 100644
21 --- a/x11-misc/dex/Manifest
22 +++ b/x11-misc/dex/Manifest
23 @@ -1 +1,2 @@
24 DIST dex-0.8.0.tar.gz 8665 BLAKE2B de62557d207d257286cc706c07969b10b0d753b197333f1d24c0c0a22a897fb2e3c64a25f71770424e6cc365d028c9a1e994fcf35c68c96be7281d24ce19b1e3 SHA512 d87a7306b931736aa302dc883cbd9c635397eda2c119133a3ae8028869a4302ce3713b43cc85fdb2f804d1a74ab2499ef32a2680d5d6be039831006e617aa70a
25 +DIST dex-0.9.0.tar.gz 10056 BLAKE2B 7abc01ccc6938e926840e4448eb6436db77703c1f8e1fef334d97196803a0b59af0f05fc507d1ac4337367120f7d9d9a211aecec6ac3644424edee3599067a89 SHA512 d68f5482cb0948f27a724437ddfc6de9a0f502bfd0d5c60c76fb85dda3c30e4c432013e530f6a91138c9ac9ff36b3824cd5e382e9d29bb9fb2ec2b9de4133094
26
27 diff --git a/x11-misc/dex/dex-0.9.0.ebuild b/x11-misc/dex/dex-0.9.0.ebuild
28 new file mode 100644
29 index 000000000000..191bf3097bcb
30 --- /dev/null
31 +++ b/x11-misc/dex/dex-0.9.0.ebuild
32 @@ -0,0 +1,36 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +PYTHON_COMPAT=( python3_{8..10} )
39 +
40 +inherit python-r1
41 +
42 +DESCRIPTION="DesktopEntry eXecution - tool to manage and launch autostart entries"
43 +HOMEPAGE="http://e-jc.de/"
44 +SRC_URI="https://github.com/jceb/dex/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="GPL-3"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
49 +
50 +IUSE="doc"
51 +
52 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
53 +
54 +RDEPEND="${PYTHON_DEPS}"
55 +DEPEND="${RDEPEND}
56 + doc? ( dev-python/sphinx )"
57 +
58 +src_compile() {
59 + # Makefile is for creating man page only
60 + use doc && emake
61 +}
62 +
63 +src_install() {
64 + dobin dex
65 + python_replicate_script "${ED}/usr/bin/dex"
66 + dodoc CHANGELOG.md README.rst
67 + use doc && doman dex.1
68 +}