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/xcowsay/
Date: Sat, 05 Mar 2022 22:11:30
Message-Id: 1646518256.d2b3bcb64cc900ba4672eb37b634660ad76fac48.conikost@gentoo
1 commit: d2b3bcb64cc900ba4672eb37b634660ad76fac48
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 5 22:10:42 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 5 22:10:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2b3bcb6
7
8 games-misc/xcowsay: drop 1.5.1
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 games-misc/xcowsay/Manifest | 1 -
13 games-misc/xcowsay/xcowsay-1.5.1.ebuild | 58 ---------------------------------
14 2 files changed, 59 deletions(-)
15
16 diff --git a/games-misc/xcowsay/Manifest b/games-misc/xcowsay/Manifest
17 index 49d77a08a571..b5e8498a39b8 100644
18 --- a/games-misc/xcowsay/Manifest
19 +++ b/games-misc/xcowsay/Manifest
20 @@ -1,2 +1 @@
21 -DIST xcowsay-1.5.1.tar.gz 101281 BLAKE2B 568f6ad7225cd859c37d79bf3ddf66c184f47d8feb6dedbafbd29ca4e05d97d883c6d6e4f4d60cebe107f1527e1ff01e17ec61430a3e55e2f504c2c00e402488 SHA512 55c165b5b2c01b11463af0eeb13fd646ea50138e2938ddfc25d44f1a704b7473d047bc7c95165f449a600de51ee005904f007843e33a8ef02c725b827eaec616
22 DIST xcowsay-1.6.tar.gz 292845 BLAKE2B 88597063616928edfc74830171b287b676163faca0b3545dc4495cb0faee810ca7867f36223bba726074866de7fb3458621670265250c846ce94c035a0ad0828 SHA512 53016e1b2790b8bc213702f1b99a0ca0cacc57ef1c2cf821814ecb4aff68df05c98b279a1f39718f4fcee771e1397b27ad43123314b1f04dd442ddc0520a9f98
23
24 diff --git a/games-misc/xcowsay/xcowsay-1.5.1.ebuild b/games-misc/xcowsay/xcowsay-1.5.1.ebuild
25 deleted file mode 100644
26 index 53da3b690e10..000000000000
27 --- a/games-misc/xcowsay/xcowsay-1.5.1.ebuild
28 +++ /dev/null
29 @@ -1,58 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -MY_PV="r${PV}"
36 -
37 -inherit autotools
38 -
39 -DESCRIPTION="Displays a cute cow and message on your desktop"
40 -HOMEPAGE="
41 - https://github.com/nickg/xcowsay
42 - https://www.doof.me.uk/xcowsay/
43 -"
44 -SRC_URI="https://github.com/nickg/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
45 -S="${WORKDIR}/${PN}-${MY_PV}"
46 -
47 -LICENSE="GPL-3+"
48 -SLOT="0"
49 -KEYWORDS="amd64 x86"
50 -IUSE="dbus fortune nls"
51 -RESTRICT="test"
52 -
53 -RDEPEND="
54 - dev-libs/glib:2
55 - x11-libs/cairo
56 - x11-libs/gtk+:3
57 - x11-libs/pango
58 - dbus? ( dev-libs/dbus-glib )
59 - fortune? ( games-misc/fortune-mod )
60 -"
61 -
62 -DEPEND="${RDEPEND}"
63 -
64 -BDEPEND="
65 - sys-devel/gettext
66 - virtual/pkgconfig
67 -"
68 -
69 -src_prepare() {
70 - default
71 -
72 - if ! use fortune; then
73 - sed -e 's/xcowfortune//g' -i src/Makefile.am || die
74 - fi
75 -
76 - eautoreconf
77 -}
78 -
79 -src_configure() {
80 - local myeconfargs=(
81 - --disable-rpath
82 - $(use_enable dbus)
83 - $(use_enable nls)
84 - )
85 -
86 - econf ${myeconfargs[@]}
87 -}