Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/kapow/
Date: Thu, 21 May 2020 19:47:03
Message-Id: 1590090401.de41b1c6bcbf8110a6c1ca51490622ba0b5d6c52.asturm@gentoo
1 commit: de41b1c6bcbf8110a6c1ca51490622ba0b5d6c52
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 21 19:46:41 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu May 21 19:46:41 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de41b1c6
7
8 x11-misc/kapow: Drop 1.5.8
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 x11-misc/kapow/Manifest | 1 -
14 x11-misc/kapow/kapow-1.5.8.ebuild | 67 ---------------------------------------
15 2 files changed, 68 deletions(-)
16
17 diff --git a/x11-misc/kapow/Manifest b/x11-misc/kapow/Manifest
18 index 3a03ae3f686..2fb720194c7 100644
19 --- a/x11-misc/kapow/Manifest
20 +++ b/x11-misc/kapow/Manifest
21 @@ -1,3 +1,2 @@
22 DIST kapow-1.5.10-src.tar.bz2 834452 BLAKE2B 0ca2eb71a13119689ba878b6981bb66d26565035441f0a02d20097becd19a539742b37989543d18db6438f5cdccfa1aed1c698a94a0287b3d0b0b316cb9bd8b4 SHA512 6aa47bcf7ccb0a4c3dba4d675786ed63bd27ef7b6ed4d62074ae8409fcc640574d264c9c4952f764792b8280f11cd3a736f46389db2239b68589595e4424e518
23 -DIST kapow-1.5.8-src.tar.bz2 834178 BLAKE2B dc24e2d47e3e8286336e4de509e2486f0b6f6c912e5be532e36035e6fbff09a0f0453108b061aff2aa7bab45e1c782b63ee94f6183d17b0b50e04c24611b2e7c SHA512 168e9581b360a905e24d8dc4d01af58823789f4ea6fe533744c14d9c6830720e640923859c2726c51aa9ef9064038a2bb920960c74ca858e3fdc6b0ff17cf861
24 DIST kapow-1.5.9-src.tar.bz2 834677 BLAKE2B ed02b76e8c764ccf7f9fb752322dad61113c82348bc4e75af2858136369423a02114b312637460cfa1127fa0389f50ea951aed5e69b3e90d276aa10ea7e52be2 SHA512 a026b2254835b4eb2d211bb8b56d68e6f07c07beb79e2b019d2ce108b6197e812222b5964f889fe31b856a0081107f3fca314684883b3eb3f778f6fe7cceb0b6
25
26 diff --git a/x11-misc/kapow/kapow-1.5.8.ebuild b/x11-misc/kapow/kapow-1.5.8.ebuild
27 deleted file mode 100644
28 index 2dd79d2b2ec..00000000000
29 --- a/x11-misc/kapow/kapow-1.5.8.ebuild
30 +++ /dev/null
31 @@ -1,67 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -inherit gnome2-utils qmake-utils
37 -
38 -DESCRIPTION="A punch clock program designed to easily keep track of your hours"
39 -HOMEPAGE="https://gottcode.org/kapow/"
40 -SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2"
41 -
42 -LICENSE="GPL-3"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -
46 -RDEPEND="
47 - dev-qt/qtcore:5
48 - dev-qt/qtgui:5
49 - dev-qt/qtnetwork:5
50 - dev-qt/qtprintsupport:5
51 - dev-qt/qtwidgets:5
52 -"
53 -DEPEND="
54 - ${RDEPEND}
55 - dev-qt/linguist-tools:5
56 -"
57 -K_LANGS="
58 - ar bg cs da de el en es fr it lt nl no pl pt_BR pt ro ru sv tr uk
59 -"
60 -for K_LANG in ${K_LANGS}; do
61 - IUSE+=" l10n_${K_LANG/_/-}"
62 -done
63 -DOCS=( ChangeLog README )
64 -
65 -src_prepare() {
66 - default
67 -
68 - count() { echo ${#}; }
69 - local lang_count=$(count ${K_LANGS})
70 - local locale_count=$(count translations/${PN}_*.ts)
71 - [[ ${lang_count} = ${locale_count} ]] \
72 - || die "Number of LANGS does not match number of locales"
73 - unset count
74 -
75 - local lang
76 - for lang in ${K_LANGS}; do
77 - if ! use l10n_${lang/_/-}; then
78 - rm translations/${PN}_${lang}.* || die
79 - fi
80 - done
81 -}
82 -
83 -src_configure() {
84 - eqmake5 kapow.pro PREFIX=/usr
85 -}
86 -
87 -src_install() {
88 - export INSTALL_ROOT="${D}"
89 - default
90 -}
91 -
92 -pkg_postinst() {
93 - gnome2_icon_cache_update
94 -}
95 -
96 -pkg_postrm() {
97 - gnome2_icon_cache_update
98 -}