Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/datefudge/
Date: Sat, 05 Sep 2020 21:39:59
Message-Id: 1599341990.9bf8da750771c938d5ebe5090fe4e05e142d0dc6.whissi@gentoo
1 commit: 9bf8da750771c938d5ebe5090fe4e05e142d0dc6
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 5 21:39:38 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 5 21:39:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bf8da75
7
8 app-misc/datefudge: bump to v1.24
9
10 Closes: https://bugs.gentoo.org/709788
11 Package-Manager: Portage-3.0.4, Repoman-3.0.1
12 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
13
14 app-misc/datefudge/Manifest | 1 +
15 app-misc/datefudge/datefudge-1.24.ebuild | 31 +++++++++++++++++++++++++++++++
16 2 files changed, 32 insertions(+)
17
18 diff --git a/app-misc/datefudge/Manifest b/app-misc/datefudge/Manifest
19 index f36e6807492..153aac25f3c 100644
20 --- a/app-misc/datefudge/Manifest
21 +++ b/app-misc/datefudge/Manifest
22 @@ -1 +1,2 @@
23 DIST datefudge_1.22.tar.xz 12964 BLAKE2B 2f76647a3f7c73e43ff6b4fd57d57d21cae75fd8bc304a5cab7c66d9798795e2386f6219a51d71f57e13463e88a3e518160d90ae01bae5253cbcb7c8a3acf763 SHA512 ed67d334ca8296ae1c7b5ee1efc6ec7aafaad0aeb9f0f0387245c2eeea94ccc59ab804778b93ab8b34a512b83a3ec81d10f341d4f4f22b4a07fccdadaefb6d8b
24 +DIST datefudge_1.24.tar.xz 14152 BLAKE2B c0a386193e6761abade4643e2f56520738baf4bb739d4c94cec3e47a8feb5ebdf32a6e8b4a0c3dbb9584136b9855abcc68f5134e082083dfb61e977ae45c0bc7 SHA512 cd548a7e8ff10189e101fa339b2845cdd19a59354e43b02cf47e466855ec192dc2084951f7663a94da56a580dd24524047651d8bcb41aa478fe94b24dffaedeb
25
26 diff --git a/app-misc/datefudge/datefudge-1.24.ebuild b/app-misc/datefudge/datefudge-1.24.ebuild
27 new file mode 100644
28 index 00000000000..d9399fc46aa
29 --- /dev/null
30 +++ b/app-misc/datefudge/datefudge-1.24.ebuild
31 @@ -0,0 +1,31 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit toolchain-funcs
37 +
38 +DESCRIPTION="A program (and preload library) to fake system date"
39 +HOMEPAGE="https://packages.qa.debian.org/d/datefudge.html"
40 +SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
45 +IUSE=""
46 +
47 +src_prepare() {
48 + default
49 +
50 + sed -i \
51 + -e '/dpkg-parsechangelog/d' \
52 + Makefile || die
53 +}
54 +
55 +src_compile() {
56 + emake CC="$(tc-getCC)" libdir="/usr/$(get_libdir)" VERSION="${PV}"
57 +}
58 +
59 +src_install() {
60 + emake DESTDIR="${D}" CC="$(tc-getCC)" libdir="/usr/$(get_libdir)" install
61 + einstalldocs
62 +}