Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/libspectrum/
Date: Thu, 13 May 2021 19:50:10
Message-Id: 1620935386.5975b083a5fe86a89ed74dfc8d60a65fc93d7ffe.marecki@gentoo
1 commit: 5975b083a5fe86a89ed74dfc8d60a65fc93d7ffe
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 13 19:19:49 2021 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Thu May 13 19:49:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5975b083
7
8 app-emulation/libspectrum: drop 1.4.4
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 app-emulation/libspectrum/Manifest | 1 -
13 app-emulation/libspectrum/libspectrum-1.4.4.ebuild | 55 ----------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/app-emulation/libspectrum/Manifest b/app-emulation/libspectrum/Manifest
17 index f5e4ed8bbe5..9ac9f648158 100644
18 --- a/app-emulation/libspectrum/Manifest
19 +++ b/app-emulation/libspectrum/Manifest
20 @@ -1,2 +1 @@
21 -DIST libspectrum-1.4.4.tar.gz 568684 BLAKE2B b6ab4fc4173e7de9a7c3b14fda03420a56f02c5c590770158443bc37bee99a55dd3bdf6864f8ca33adb5ed59f4abd5c5b97736456ba2e6e6aaa2b49e07097cc4 SHA512 83bb9242010d49898531bb62e0d4d55439b0b6a548b57a7932f074429aca70cf252dfb195e9751384510b08c98bd6bc8eefd8cb3f82b0c8d07fa245ba66e9fe2
22 DIST libspectrum-1.5.0.tar.gz 602354 BLAKE2B fc62437ececfe2c86b475efa512bf7aa7c5af182e16a00f75f77f78656fca01d46a71ac90b38008ff46e5fd0710b1c671b283d65544b5556d98e8c5b66525c35 SHA512 55f4cf623bc6c469a0fd80751ada694259d834c19d98400ba244aabf2ac21fed7cdd6de069d9ed7326e099bd3bd62c42cfb8a669b64ae002f90a52563fa2dcd1
23
24 diff --git a/app-emulation/libspectrum/libspectrum-1.4.4.ebuild b/app-emulation/libspectrum/libspectrum-1.4.4.ebuild
25 deleted file mode 100644
26 index f830494fd23..00000000000
27 --- a/app-emulation/libspectrum/libspectrum-1.4.4.ebuild
28 +++ /dev/null
29 @@ -1,55 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit autotools
36 -
37 -DESCRIPTION="Spectrum emulation library"
38 -HOMEPAGE="http://fuse-emulator.sourceforge.net/libspectrum.php"
39 -SRC_URI="mirror://sourceforge/fuse-emulator/${P}.tar.gz"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~ppc ~x86"
44 -IUSE="audiofile bzip2 gcrypt zlib"
45 -
46 -RDEPEND="dev-libs/glib:2
47 - audiofile? ( >=media-libs/audiofile-0.3.6 )
48 - bzip2? ( >=app-arch/bzip2-1.0 )
49 - gcrypt? ( dev-libs/libgcrypt:0 )
50 - zlib? ( sys-libs/zlib )"
51 -DEPEND="${RDEPEND}
52 - dev-lang/perl
53 - virtual/pkgconfig"
54 -
55 -PATCHES=(
56 - "${FILESDIR}"/remove-local-prefix.patch
57 -)
58 -
59 -src_prepare() {
60 - default
61 - eautoreconf
62 -}
63 -
64 -src_configure() {
65 - local myconf=(
66 - --disable-static
67 - $(use_with audiofile libaudiofile)
68 - $(use_with bzip2)
69 - $(use_with gcrypt libgcrypt)
70 - $(use_with zlib)
71 - )
72 - econf "${myconf[@]}"
73 -}
74 -
75 -src_test() {
76 - # check only builds test executable but doesn't run it
77 - emake check
78 - ./test/test || die
79 -}
80 -
81 -src_install() {
82 - default
83 - dodoc doc/*.txt *.txt
84 -}