Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/vicious/
Date: Fri, 11 Aug 2017 03:08:10
Message-Id: 1502420872.7e20fc44f723150c1876c6fb418d4b842cd2164c.prometheanfire@gentoo
1 commit: 7e20fc44f723150c1876c6fb418d4b842cd2164c
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 11 03:06:22 2017 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 11 03:07:52 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e20fc44
7
8 x11-plugins/vicious: 2.2.0 bup
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 x11-plugins/vicious/Manifest | 1 +
13 x11-plugins/vicious/vicious-2.2.0.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/x11-plugins/vicious/Manifest b/x11-plugins/vicious/Manifest
17 index a57b459c981..ad6cacde5b7 100644
18 --- a/x11-plugins/vicious/Manifest
19 +++ b/x11-plugins/vicious/Manifest
20 @@ -1 +1,2 @@
21 DIST vicious-2.1.3.tar.xz 39336 SHA256 97ffb824af89f2d205b0f0909601a32d761c0c02353b59b4314fd2cc47b2a387 SHA512 8b03fe4b770f0fcd52fad77a46145032a112cecbe27daa725054cb4c6307fb36727debb48243cd2d1becf2ad0fe3a2aaaa7495e0f041424ee9e45c2b107e7f7f WHIRLPOOL 98d810bc8b839d5ac4eff726a3129bdcc16794901ee0ba66b9264b48d453b645bfe2ae7bcb9fa1a2aec41c08926a0e80b92892fa13a2390d9f7be75300279e59
22 +DIST vicious-2.2.0.tar.gz 45247 SHA256 93b45dca464530f8b9de7ed56bc62916bb693d587a796f8d642cd5c195eee190 SHA512 717c57b14870bb72a35c90c5356a807e2431d50f28be6e50abdbf17d39fea33c5b16ee14746726d238a80f9fe30c0ad1a6a98d6c9730e42437495656fed8cfbe WHIRLPOOL cad86ca8c2b5392883b5a2e6761b5e0cd2edcc76a31b0ebd2adc4ead8c3b89478c94a9ee4a47d32fcf88a5dfec7d95e4c2092cb042adf7d4f62ec06ee0d656bb
23
24 diff --git a/x11-plugins/vicious/vicious-2.2.0.ebuild b/x11-plugins/vicious/vicious-2.2.0.ebuild
25 new file mode 100644
26 index 00000000000..601ea74cde5
27 --- /dev/null
28 +++ b/x11-plugins/vicious/vicious-2.2.0.ebuild
29 @@ -0,0 +1,28 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +DESCRIPTION="Modular widget library for x11-wm/awesome"
36 +HOMEPAGE="https://github.com/Mic92/vicious"
37 +SRC_URI="https://github.com/Mic92/vicious/archive/v${PV}.tar.gz -> ${P}.tar.gz"
38 +
39 +LICENSE="GPL-2"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~arm ~x86"
42 +IUSE="contrib"
43 +
44 +DEPEND=""
45 +RDEPEND="x11-wm/awesome"
46 +
47 +src_install() {
48 + insinto /usr/share/awesome/lib/vicious
49 + doins -r widgets helpers.lua init.lua
50 + dodoc Changes.md README.md TODO
51 +
52 + if use contrib; then
53 + insinto /usr/share/awesome/lib/vicious/contrib
54 + doins contrib/*.lua
55 + newdoc contrib/README.md README.contrib
56 + fi
57 +}