Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/tint2/
Date: Sat, 01 Apr 2017 10:24:23
Message-Id: 1491042171.ae429c4f05cc236107b11c511ead9a9b13311aa6.soap@gentoo
1 commit: ae429c4f05cc236107b11c511ead9a9b13311aa6
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Tue Mar 28 18:23:52 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 1 10:22:51 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae429c4f
7
8 x11-misc/tint2: Remove old
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11 Closes: https://github.com/gentoo/gentoo/pull/4319
12
13 x11-misc/tint2/Manifest | 1 -
14 x11-misc/tint2/metadata.xml | 1 -
15 x11-misc/tint2/tint2-0.12.3.ebuild | 66 --------------------------------------
16 3 files changed, 68 deletions(-)
17
18 diff --git a/x11-misc/tint2/Manifest b/x11-misc/tint2/Manifest
19 index 7a6660f32aa..77ae5af232e 100644
20 --- a/x11-misc/tint2/Manifest
21 +++ b/x11-misc/tint2/Manifest
22 @@ -1,2 +1 @@
23 DIST tint2-0.12.12.tar.gz 469724 SHA256 e4c6ffb67eb1242f19d94037b072602bc751ac71ca61352dea3465168e643450 SHA512 10a1f42df6a66f6e092d69cd0ea3d900dcef57b06391206d950a1d7f576a880829bb44d00828a030d3172184db238a22f205169c12cc32cf42c6321d61929a8c WHIRLPOOL 197b92a93eb0368708824159bde41bd81143d0423a1f9ab83b2af4a11b3e3055a40481b9746f095e10cca84f7d772237a92d06bf267761021be308c0b3b5d553
24 -DIST tint2-0.12.3.tar.gz 251977 SHA256 655cde38f4d358d69f3628f722c7da7768e193769ac876cc24b59f328bcd3d6c SHA512 8022895617905446bc01e548ece9df63d32ae1ef3bafc2de2c79fb2c0e91ab78d036e8c9165ea4d4224dd70edb510266bbea47baf382abbf27a275b60b7d1465 WHIRLPOOL 057ba74074d5e013d9c882a6cbef1bd75f80b1eba857bda933c5936511b1d2b9a519c770b1a2f31360774232e03962ca47dea73ad5f4ef21bcd6530d2c123662
25
26 diff --git a/x11-misc/tint2/metadata.xml b/x11-misc/tint2/metadata.xml
27 index 25ea024dffb..3187164d5a9 100644
28 --- a/x11-misc/tint2/metadata.xml
29 +++ b/x11-misc/tint2/metadata.xml
30 @@ -5,7 +5,6 @@
31 <email>amynka@g.o</email>
32 </maintainer>
33 <use>
34 - <flag name="examples">Install tint2rc examples</flag>
35 <flag name="battery">Enable battery status plugin</flag>
36 <flag name="tint2conf">Build/Install tint2conf as well</flag>
37 </use>
38
39 diff --git a/x11-misc/tint2/tint2-0.12.3.ebuild b/x11-misc/tint2/tint2-0.12.3.ebuild
40 deleted file mode 100644
41 index 8f076c0c139..00000000000
42 --- a/x11-misc/tint2/tint2-0.12.3.ebuild
43 +++ /dev/null
44 @@ -1,66 +0,0 @@
45 -# Copyright 1999-2017 Gentoo Foundation
46 -# Distributed under the terms of the GNU General Public License v2
47 -
48 -EAPI=5
49 -
50 -inherit cmake-utils gnome2-utils
51 -
52 -DESCRIPTION="tint2 is a lightweight panel/taskbar for Linux."
53 -HOMEPAGE="https://gitlab.com/o9000/tint2"
54 -SRC_URI="https://gitlab.com/o9000/${PN}/repository/archive.tar.gz?ref=v${PV} -> ${P}.tar.gz"
55 -
56 -LICENSE="GPL-2"
57 -SLOT="0"
58 -KEYWORDS="amd64 x86"
59 -IUSE="battery examples svg startup-notification tint2conf"
60 -
61 -DEPEND="
62 - dev-libs/glib:2
63 - svg? ( gnome-base/librsvg:2 )
64 - >=media-libs/imlib2-1.4.2[X,png]
65 - x11-libs/cairo
66 - x11-libs/pango[X]
67 - tint2conf? ( x11-libs/gtk+:2 )
68 - x11-libs/libX11
69 - x11-libs/libXcomposite
70 - x11-libs/libXdamage
71 - x11-libs/libXinerama
72 - >=x11-libs/libXrandr-1.3
73 - x11-libs/libXrender
74 - startup-notification? ( x11-libs/startup-notification )
75 - "
76 -RDEPEND="${DEPEND}"
77 -
78 -S="${WORKDIR}/${PN}-v${PV}"
79 -
80 -PATCHES=( "${FILESDIR}/${PV}-no-hardcode-update-icon-cache.patch" )
81 -
82 -src_unpack() {
83 - default
84 - # Chop off the SHA1 gitlab's automated tarballs inject
85 - mv "${PN}-v${PV}-"* "${PN}-v${PV}"
86 -}
87 -
88 -src_configure() {
89 - local mycmakeargs=(
90 - $(cmake-utils_use_enable battery BATTERY)
91 - $(cmake-utils_use_enable examples EXAMPLES)
92 - $(cmake-utils_use_enable tint2conf TINT2CONF)
93 - $(cmake-utils_use_enable startup-notification SN)
94 - $(cmake-utils_use_enable svg RSVG)
95 - )
96 -
97 - cmake-utils_src_configure
98 -}
99 -
100 -src_install() {
101 - cmake-utils_src_install
102 -}
103 -
104 -pkg_postinst() {
105 - gnome2_icon_cache_update
106 -}
107 -
108 -pkg_postrm() {
109 - gnome2_icon_cache_update
110 -}