Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/timew/
Date: Wed, 01 Feb 2023 19:27:23
Message-Id: 1675279597.28ed32e8f037caa34e3a25d07c8b25a9e95a3188.asturm@gentoo
1 commit: 28ed32e8f037caa34e3a25d07c8b25a9e95a3188
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 27 21:08:13 2023 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 1 19:26:37 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28ed32e8
7
8 app-misc/timew: drop 1.4.2
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 app-misc/timew/Manifest | 1 -
13 app-misc/timew/timew-1.4.2.ebuild | 36 ------------------------------------
14 2 files changed, 37 deletions(-)
15
16 diff --git a/app-misc/timew/Manifest b/app-misc/timew/Manifest
17 index 0bd242c5a8db..c4d13de3b458 100644
18 --- a/app-misc/timew/Manifest
19 +++ b/app-misc/timew/Manifest
20 @@ -1,2 +1 @@
21 -DIST timew-1.4.2.tar.gz 1316841 BLAKE2B c451f37aeb32e999fe2cdca2eb5f234c7424b76f489324d5723a3649da37f53f5094989bdf8d5c2d27f5daa0d75c72ec4a01e3c19b8b064f28e4db82587498b9 SHA512 fe4c3def6b2cd78793dd97a38a61497b3910cd87a3315f826c64893b96a998bf30363f0df1892b74b718d03a279d51c1a636739225e101c5c126794e434076f0
22 DIST timew-1.4.3.tar.gz 3188726 BLAKE2B ded92b2ba801023e7f6bc59c0fc17ce069c8279ee92f39280c50dabec0a2425b8612f73edf7842abdbb0b21772244eda325512070c091f32d17ff69cfcd844fa SHA512 89c98ad19d3a5ab5d4e02819d79e553cca4e93da99ec02bbf845b96b421cd084f6786de160e90c97854b50da49448472e9a4c7d23e75c8a93ecd67dda768b24a
23
24 diff --git a/app-misc/timew/timew-1.4.2.ebuild b/app-misc/timew/timew-1.4.2.ebuild
25 deleted file mode 100644
26 index ec2bdffe0327..000000000000
27 --- a/app-misc/timew/timew-1.4.2.ebuild
28 +++ /dev/null
29 @@ -1,36 +0,0 @@
30 -# Copyright 1999-2023 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit cmake
36 -
37 -DESCRIPTION="Tracks your time from the command line, and generates reports"
38 -HOMEPAGE="https://timewarrior.net"
39 -SRC_URI="https://github.com/GothenburgBitFactory/timewarrior/releases/download/v${PV}/${P}.tar.gz"
40 -
41 -LICENSE="MIT"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86"
44 -
45 -src_configure() {
46 - local mycmakeargs=(
47 - -DTIMEW_DOCDIR=share/doc/${PF}
48 - )
49 -
50 - cmake_src_configure
51 -}
52 -
53 -src_install() {
54 - cmake_src_install
55 -
56 - dodoc -r ext
57 - docompress -x /usr/share/doc/${PF}/ext/{on-modify.timewarrior,README}
58 -}
59 -
60 -pkg_postinst() {
61 - elog "To integrate timewarrior with taskwarrior, issue the following commands:"
62 - elog "cp /usr/share/doc/${PF}/ext/on-modify.timewarrior ~/.task/hooks/"
63 - elog "chmod +x ~/.task/hooks/on-modify.timewarrior"
64 - elog "see https://timewarrior.net/docs/taskwarrior.html"
65 -}