diff options
author | Ferenc Erki <erkiferenc@gmail.com> | 2020-11-17 20:40:47 +0100 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-11-22 11:11:43 +0200 |
commit | 58fa5e962d6e3fdbc50277e8a7a1d30638f0f856 (patch) | |
tree | 9bb1d7bb0ee3c62b6ab272d3c1b99472ad7e5aed /x11-misc | |
parent | dev-db/postgis: add 3.1.0_alpha3 (diff) | |
download | gentoo-58fa5e962d6e3fdbc50277e8a7a1d30638f0f856.tar.gz gentoo-58fa5e962d6e3fdbc50277e8a7a1d30638f0f856.tar.bz2 gentoo-58fa5e962d6e3fdbc50277e8a7a1d30638f0f856.zip |
x11-misc/clipmenu: bump version to 6.2.0
Signed-off-by: Ferenc Erki <erkiferenc@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18301
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/clipmenu/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/clipmenu/clipmenu-6.2.0.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/x11-misc/clipmenu/Manifest b/x11-misc/clipmenu/Manifest index 684bce97fb41..9605943c6a1d 100644 --- a/x11-misc/clipmenu/Manifest +++ b/x11-misc/clipmenu/Manifest @@ -1,2 +1,3 @@ DIST clipmenu-6.0.1.tar.gz 7219 BLAKE2B 85d61c34e3b964e0a39051a1443b1498fedab1f5b45c61f3a8b6c0a63058642ff4fcfabc7d4913893320b5196edac2c5a9ad5a84b71a9d2191a3e147283a816c SHA512 0c91ad3a873081a6f9abfcc7a4a9be7cbd4ca5017f447dac204042ae3f051c550111c73d9d06f1d2a7a6783cfda631154373a932ea40315e72907d52120d4801 DIST clipmenu-6.1.0.tar.gz 8711 BLAKE2B a37f0f52343a4f22fdf4a37a57a2c715edd47aa1b77c90cf95f9af11a8107967eb24410ed43cee52ec5db5a1276c5e9bdf082668795f3054840b4f30e511ac55 SHA512 1392b08025b564dc17ca44e43847fdea85886b89fdd5426635c9c16d204610c6a9cc19297a20cdbc2eeef2c878adbfe994a2cfd05176457ca6fcbc75bc036acc +DIST clipmenu-6.2.0.tar.gz 9019 BLAKE2B 2dddd900483656a38b2335f994a46302af797b0f47509b0bd2c1a302e1c27729cd80091a4c8bfd587844f7ee8c271742aea668910553d9a4c54595d18e4f1ec7 SHA512 adfd649a120264552e2c05314ae2ad039055308f77d620dbb3fc206e4244a6f1f2e5ed4a7e86fd547a78692aebaec1761528e10408d838f80def99959ef58295 diff --git a/x11-misc/clipmenu/clipmenu-6.2.0.ebuild b/x11-misc/clipmenu/clipmenu-6.2.0.ebuild new file mode 100644 index 000000000000..cc2eeecc5417 --- /dev/null +++ b/x11-misc/clipmenu/clipmenu-6.2.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit systemd + +DESCRIPTION="Clipboard management using dmenu" +HOMEPAGE="https://github.com/cdown/clipmenu" +SRC_URI="https://github.com/cdown/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Unlicense" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + x11-misc/clipnotify + x11-misc/dmenu + x11-misc/xsel +" + +src_compile() { + : +} + +src_install() { + local binfile + for binfile in clipctl clipdel clipfsck clipmenu clipmenud; do + dobin ${binfile} + done + + systemd_douserunit "init/clipmenud.service" +} |