Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/wtf/
Date: Tue, 02 Feb 2021 21:27:52
Message-Id: 1612301210.4474b12134a18bdad61f88f68de85b0343668d16.conikost@gentoo
1 commit: 4474b12134a18bdad61f88f68de85b0343668d16
2 Author: Bernd Waibel <waebbl <AT> gmail <DOT> com>
3 AuthorDate: Sun Jan 31 10:05:44 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 2 21:26:50 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4474b121
7
8 games-misc/wtf: bump to version 20210130
9
10 Closes: https://github.com/gentoo/gentoo/pull/19268/files
11 Package-Manager: Portage-3.0.14, Repoman-3.0.2
12 Signed-off-by: Bernd Waibel <waebbl <AT> gmail.com>
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 games-misc/wtf/Manifest | 1 +
16 games-misc/wtf/wtf-20210130.ebuild | 29 +++++++++++++++++++++++++++++
17 2 files changed, 30 insertions(+)
18
19 diff --git a/games-misc/wtf/Manifest b/games-misc/wtf/Manifest
20 index 65a6a6240dc..aa12df1b691 100644
21 --- a/games-misc/wtf/Manifest
22 +++ b/games-misc/wtf/Manifest
23 @@ -1 +1,2 @@
24 DIST wtf-20200518.tar.gz 30204 BLAKE2B 6e05561e78c8c6644d8891a72f064f5e18c4e546f8c22dbcf04a3a8e805ef3756cb9332ecc8e6b35b569008f203ddc0e156f216b53ff585dbe4946d0a059958a SHA512 8538021b09c6863cec63faa14df3e1b1e9019c7741f13ed3adf243c36cf9c57fcf973d619c9152560d061ab293a2b333a59739c38d351387a2a0bf2093c40a94
25 +DIST wtf-20210130.tar.gz 30840 BLAKE2B 7f959b98495a302d736064d75b63f0847c59b128320b5761efa2b9e13f80e5204e64dfb50c612081b21e5ff00c2782e5a949eb514dc4e5c0d7036ac46918d9e2 SHA512 6cd71f3e5d8a2b40509634717f977cfe1f1b366acb1bfd7a942942af1e8e639ee3ad192a5e4a9d7dd668010dea0172b5966bc2f1667bc497a92773b09c99b973
26
27 diff --git a/games-misc/wtf/wtf-20210130.ebuild b/games-misc/wtf/wtf-20210130.ebuild
28 new file mode 100644
29 index 00000000000..a309400b998
30 --- /dev/null
31 +++ b/games-misc/wtf/wtf-20210130.ebuild
32 @@ -0,0 +1,29 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit prefix
39 +
40 +DESCRIPTION="Translates acronyms for you"
41 +HOMEPAGE="https://netbsd.org/"
42 +SRC_URI="https://sourceforge.net/projects/bsd${PN}/files/${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
47 +
48 +DEPEND="!games-misc/bsd-games"
49 +RDEPEND="${DEPEND}"
50 +
51 +src_prepare() {
52 + default
53 + hprefixify wtf
54 +}
55 +
56 +src_install() {
57 + dobin wtf
58 + doman wtf.6
59 + insinto /usr/share/misc
60 + doins acronyms*
61 +}