Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/qrencode/
Date: Fri, 19 Oct 2018 09:57:43
Message-Id: 1539942660.4a7a6f7c8a6c2eedd06d7e8cf22e493d3b943207.mgorny@gentoo
1 commit: 4a7a6f7c8a6c2eedd06d7e8cf22e493d3b943207
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 19 09:51:00 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 19 09:51:00 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a7a6f7c
7
8 media-gfx/qrencode: Drop old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 media-gfx/qrencode/Manifest | 1 -
13 media-gfx/qrencode/qrencode-4.0.0.ebuild | 39 --------------------------------
14 2 files changed, 40 deletions(-)
15
16 diff --git a/media-gfx/qrencode/Manifest b/media-gfx/qrencode/Manifest
17 index 9322b519e62..317f19945c5 100644
18 --- a/media-gfx/qrencode/Manifest
19 +++ b/media-gfx/qrencode/Manifest
20 @@ -1,2 +1 @@
21 -DIST qrencode-4.0.0.tar.bz2 429244 BLAKE2B 45fe8afe602e7ff20b750b5a0de8a3b52b61340ebf0bbcad2ae00e4a0ff2976077b5add4e2c1358d4ca852f79f4cdb27d9dab8c726bf72ff53964661335b5a0a SHA512 d4140d77fce3a1c39735cc3e98e3a19018daaa08c870644f71727d27ffb17711e76b4ed4e51718d90d812e78df75fe575617580ea9b1bf210438f8fd1734204e
22 DIST qrencode-4.0.2.tar.bz2 430309 BLAKE2B 1f68d2a921ba60df3a6c7381d7886b27a2876f90771d78c12d5d0fed2d6a4edb4d7da5985e2b244406a0cf3434b351fbec8b12c5944c365078ef2b227edb0acd SHA512 2429c7938e32eacbaf327c029c7745ba33259f879661a8b6470cc617c780daf5bd1d5689599151df62e84badd2568eccab6c12f157331e512ab24a3899e0f002
23
24 diff --git a/media-gfx/qrencode/qrencode-4.0.0.ebuild b/media-gfx/qrencode/qrencode-4.0.0.ebuild
25 deleted file mode 100644
26 index d7cd09ed89a..00000000000
27 --- a/media-gfx/qrencode/qrencode-4.0.0.ebuild
28 +++ /dev/null
29 @@ -1,39 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -DESCRIPTION="C library for encoding data in a QR Code symbol"
36 -HOMEPAGE="https://fukuchi.org/works/qrencode/"
37 -SRC_URI="https://fukuchi.org/works/${PN}/${P}.tar.bz2"
38 -
39 -LICENSE="LGPL-2"
40 -SLOT="0/4"
41 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
42 -IUSE="test"
43 -
44 -RDEPEND="media-libs/libpng:0="
45 -DEPEND="${RDEPEND}
46 - virtual/pkgconfig"
47 -
48 -src_configure() {
49 - local myconf=(
50 - $(use_with test tests)
51 - # TODO: figure out how to make SDL check fail as the SDL test
52 - # program is not useful
53 - )
54 -
55 - econf "${myconf[@]}"
56 -}
57 -
58 -src_test() {
59 - cd tests || die
60 - # the configure test checks if reconfiguring works...
61 - sed -i -e '/configure/d' test_all.sh || die
62 - sh test_all.sh || die
63 -}
64 -
65 -src_install() {
66 - default
67 - find "${D}" -name '*.la' -delete || die
68 -}