Gentoo Archives: gentoo-commits

From: Piotr Karbowski <slashbeast@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/gmrun/
Date: Mon, 29 Aug 2022 19:14:47
Message-Id: 1661800460.fb7ab158478ebd19c76267608193e255c508b51a.slashbeast@gentoo
1 commit: fb7ab158478ebd19c76267608193e255c508b51a
2 Author: Henning Schild <henning <AT> hennsch <DOT> de>
3 AuthorDate: Mon Aug 1 18:37:56 2022 +0000
4 Commit: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 29 19:14:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb7ab158
7
8 x11-misc/gmrun: bump version to 1.4w
9
10 Closes: https://bugs.gentoo.org/576992
11 Signed-off-by: Henning Schild <henning <AT> hennsch.de>
12 Closes: https://github.com/gentoo/gentoo/pull/26699
13 Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>
14
15 x11-misc/gmrun/Manifest | 1 +
16 x11-misc/gmrun/gmrun-1.4w.ebuild | 36 ++++++++++++++++++++++++++++++++++++
17 x11-misc/gmrun/metadata.xml | 5 ++++-
18 3 files changed, 41 insertions(+), 1 deletion(-)
19
20 diff --git a/x11-misc/gmrun/Manifest b/x11-misc/gmrun/Manifest
21 index 0c1fd75d5ce5..8087db6e09bf 100644
22 --- a/x11-misc/gmrun/Manifest
23 +++ b/x11-misc/gmrun/Manifest
24 @@ -1 +1,2 @@
25 DIST gmrun-0.9.2.tar.gz 66097 BLAKE2B 3b8f253e8d683d02c8b6cc8da3d54103b53c6b9ebd4d90b4675325809f592f407a32532e6f0d3d3a112f5c7b9304eaae75bc3ba7f1e1b372614d95206edf0da3 SHA512 3ce881463c23b6c2c39b4d41ff98f3d4a2b77f45a46d4ac43d8bbf726fcb3769b643436932714f9f5c22b855188928453810468d165af2c2433059a0149d6422
26 +DIST gmrun-1.4w.tar.xz 43304 BLAKE2B 14c4ffc0770b37d851ad101c7967f691801bf2e95abb8c7fc06abc7c39f94ffac289253febb51bdba6e5237abdea38981e8072ceb997fb410620f691b8fc7ae7 SHA512 3e36304782d4d288abf2e81b4dee60230d262fa9e3ca8ab236d52619f0a226cfa95c8cc830e6506308ed65191ff7295501a9dfe162b54d67ce1f9154d33d9473
27
28 diff --git a/x11-misc/gmrun/gmrun-1.4w.ebuild b/x11-misc/gmrun/gmrun-1.4w.ebuild
29 new file mode 100644
30 index 000000000000..0d37c5769256
31 --- /dev/null
32 +++ b/x11-misc/gmrun/gmrun-1.4w.ebuild
33 @@ -0,0 +1,36 @@
34 +# Copyright 1999-2022 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=8
38 +
39 +if [[ ${PV} == 9999 ]]; then
40 + inherit git-r3
41 + EGIT_REPO_URI="https://github.com/WdesktopX/${PN}.git"
42 + EGIT_BRANCH="master"
43 +else
44 + SRC_URI="https://github.com/WdesktopX/${PN}/releases/download/${PV}/${P}.tar.xz"
45 + KEYWORDS="~amd64 ~mips ~ppc x86"
46 +fi
47 +
48 +DESCRIPTION="A GTK-2 based launcher box with bash style auto completion!"
49 +HOMEPAGE="https://github.com/WdesktopX/gmrun/"
50 +
51 +LICENSE="ISC"
52 +SLOT="0"
53 +IUSE="elibc_glibc nls xdg"
54 +
55 +RDEPEND="
56 + x11-libs/gtk+:3
57 +"
58 +DEPEND="${RDEPEND}
59 + virtual/pkgconfig
60 + elibc_glibc? ( >=sys-libs/glibc-2.10 )"
61 +
62 +src_configure() {
63 + econf --disable-gtk2 $(use_enable nls) $(use_enable xdg)
64 +}
65 +
66 +src_install() {
67 + emake DESTDIR="${D}" install || die "emake install failed"
68 + dodoc AUTHORS ChangeLog README.md
69 +}
70
71 diff --git a/x11-misc/gmrun/metadata.xml b/x11-misc/gmrun/metadata.xml
72 index 55a75350739c..c6596064216b 100644
73 --- a/x11-misc/gmrun/metadata.xml
74 +++ b/x11-misc/gmrun/metadata.xml
75 @@ -18,6 +18,9 @@
76 features include slim design and bash style auto-completion.
77 </longdescription>
78 <upstream>
79 - <remote-id type="sourceforge">gmrun</remote-id>
80 + <remote-id type="github">WdesktopX/gmrun</remote-id>
81 </upstream>
82 + <use>
83 + <flag name="xdg">Enable xdf spec for configuration and history file location</flag>
84 + </use>
85 </pkgmetadata>