diff options
author | Maxim Koltsov <maksbotan@gentoo.org> | 2019-08-04 21:56:36 +0300 |
---|---|---|
committer | Maxim Koltsov <maksbotan@gentoo.org> | 2019-08-04 22:11:58 +0300 |
commit | 8c4c249ee789dcb7e309b2de845d60edc18a5fe1 (patch) | |
tree | 5dc4fb2615d31c2e01baea2cdb58c9615f20fdeb | |
parent | x11-plugins/vicious: remove old (diff) | |
download | gentoo-8c4c249ee789dcb7e309b2de845d60edc18a5fe1.tar.gz gentoo-8c4c249ee789dcb7e309b2de845d60edc18a5fe1.tar.bz2 gentoo-8c4c249ee789dcb7e309b2de845d60edc18a5fe1.zip |
x11-plugins/vicious: bump to 2.3.3
Package-Manager: Portage-2.3.67, Repoman-2.3.12
Signed-off-by: Maxim Koltsov <maksbotan@gentoo.org>
-rw-r--r-- | x11-plugins/vicious/Manifest | 1 | ||||
-rw-r--r-- | x11-plugins/vicious/vicious-2.3.3.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/x11-plugins/vicious/Manifest b/x11-plugins/vicious/Manifest index 039015d06850..e6d51bb8110b 100644 --- a/x11-plugins/vicious/Manifest +++ b/x11-plugins/vicious/Manifest @@ -1 +1,2 @@ DIST vicious-2.3.1.tar.gz 47484 BLAKE2B 2ef6e51507faf7477800091c738e65184439caba9b79004b53f3a479f1370ca64046bc1664c6b746d8ab71370b36f29095406439e2a8fab7524e6bb190350fb7 SHA512 9e89d36d708a7ccdff206451dfb98db8455a16f9d2254167a446af91fadc2103a5274442f38ddf1eb919da23480b6790639cdbbde4a08bffc1cf9221622064c9 +DIST vicious-2.3.3.tar.gz 50564 BLAKE2B f472b9e1514c9f731734e6512496da6ebb516a190225035811333ca7a275509828b8b4078d72856b5a488eeaee612e3070406138f1abd9de61aaa0f01ca370b9 SHA512 2549fa168a8c8cebcb9ecf1eafbc7658213b6a5487839e8acbc2aaed18f0d0b8081550ee7beb93770ae7e600158e12b99b9e1c29af8a8807bb200cc1cdf75807 diff --git a/x11-plugins/vicious/vicious-2.3.3.ebuild b/x11-plugins/vicious/vicious-2.3.3.ebuild new file mode 100644 index 000000000000..4934c0636f0d --- /dev/null +++ b/x11-plugins/vicious/vicious-2.3.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Modular widget library for x11-wm/awesome" +HOMEPAGE="https://github.com/Mic92/vicious" +SRC_URI="https://github.com/Mic92/vicious/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="contrib" + +DEPEND="" +RDEPEND="x11-wm/awesome" + +src_install() { + insinto /usr/share/awesome/lib/vicious + doins -r widgets helpers.lua init.lua + dodoc Changes.md README.md TODO + + if use contrib; then + insinto /usr/share/awesome/lib/vicious/contrib + doins contrib/*.lua + newdoc contrib/README.md README.contrib + fi +} |