Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/clipmenu/
Date: Sun, 22 Nov 2020 09:11:56
Message-Id: 1606036303.58fa5e962d6e3fdbc50277e8a7a1d30638f0f856.juippis@gentoo
1 commit: 58fa5e962d6e3fdbc50277e8a7a1d30638f0f856
2 Author: Ferenc Erki <erkiferenc <AT> gmail <DOT> com>
3 AuthorDate: Tue Nov 17 19:40:47 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 22 09:11:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58fa5e96
7
8 x11-misc/clipmenu: bump version to 6.2.0
9
10 Signed-off-by: Ferenc Erki <erkiferenc <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/18301
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 x11-misc/clipmenu/Manifest | 1 +
15 x11-misc/clipmenu/clipmenu-6.2.0.ebuild | 34 +++++++++++++++++++++++++++++++++
16 2 files changed, 35 insertions(+)
17
18 diff --git a/x11-misc/clipmenu/Manifest b/x11-misc/clipmenu/Manifest
19 index 684bce97fb4..9605943c6a1 100644
20 --- a/x11-misc/clipmenu/Manifest
21 +++ b/x11-misc/clipmenu/Manifest
22 @@ -1,2 +1,3 @@
23 DIST clipmenu-6.0.1.tar.gz 7219 BLAKE2B 85d61c34e3b964e0a39051a1443b1498fedab1f5b45c61f3a8b6c0a63058642ff4fcfabc7d4913893320b5196edac2c5a9ad5a84b71a9d2191a3e147283a816c SHA512 0c91ad3a873081a6f9abfcc7a4a9be7cbd4ca5017f447dac204042ae3f051c550111c73d9d06f1d2a7a6783cfda631154373a932ea40315e72907d52120d4801
24 DIST clipmenu-6.1.0.tar.gz 8711 BLAKE2B a37f0f52343a4f22fdf4a37a57a2c715edd47aa1b77c90cf95f9af11a8107967eb24410ed43cee52ec5db5a1276c5e9bdf082668795f3054840b4f30e511ac55 SHA512 1392b08025b564dc17ca44e43847fdea85886b89fdd5426635c9c16d204610c6a9cc19297a20cdbc2eeef2c878adbfe994a2cfd05176457ca6fcbc75bc036acc
25 +DIST clipmenu-6.2.0.tar.gz 9019 BLAKE2B 2dddd900483656a38b2335f994a46302af797b0f47509b0bd2c1a302e1c27729cd80091a4c8bfd587844f7ee8c271742aea668910553d9a4c54595d18e4f1ec7 SHA512 adfd649a120264552e2c05314ae2ad039055308f77d620dbb3fc206e4244a6f1f2e5ed4a7e86fd547a78692aebaec1761528e10408d838f80def99959ef58295
26
27 diff --git a/x11-misc/clipmenu/clipmenu-6.2.0.ebuild b/x11-misc/clipmenu/clipmenu-6.2.0.ebuild
28 new file mode 100644
29 index 00000000000..cc2eeecc541
30 --- /dev/null
31 +++ b/x11-misc/clipmenu/clipmenu-6.2.0.ebuild
32 @@ -0,0 +1,34 @@
33 +# Copyright 2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit systemd
39 +
40 +DESCRIPTION="Clipboard management using dmenu"
41 +HOMEPAGE="https://github.com/cdown/clipmenu"
42 +SRC_URI="https://github.com/cdown/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="Unlicense"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE=""
48 +
49 +RDEPEND="
50 + x11-misc/clipnotify
51 + x11-misc/dmenu
52 + x11-misc/xsel
53 +"
54 +
55 +src_compile() {
56 + :
57 +}
58 +
59 +src_install() {
60 + local binfile
61 + for binfile in clipctl clipdel clipfsck clipmenu clipmenud; do
62 + dobin ${binfile}
63 + done
64 +
65 + systemd_douserunit "init/clipmenud.service"
66 +}