Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/apngasm/, media-gfx/apngasm/files/
Date: Thu, 06 Feb 2020 03:46:08
Message-Id: 1580960743.b0d7d89d8d55947a35583e246f07825a740cbf74.radhermit@gentoo
1 commit: b0d7d89d8d55947a35583e246f07825a740cbf74
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 6 03:27:30 2020 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 6 03:45:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0d7d89d
7
8 media-gfx/apngasm: remove old
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 media-gfx/apngasm/Manifest | 1 -
13 media-gfx/apngasm/apngasm-2.7.ebuild | 36 ----------------------
14 media-gfx/apngasm/files/apngasm-2.7-string_h.patch | 16 ----------
15 3 files changed, 53 deletions(-)
16
17 diff --git a/media-gfx/apngasm/Manifest b/media-gfx/apngasm/Manifest
18 index bae411f61e7..1c19c3e95c9 100644
19 --- a/media-gfx/apngasm/Manifest
20 +++ b/media-gfx/apngasm/Manifest
21 @@ -1,2 +1 @@
22 -DIST apngasm-2.7-src.zip 11448 BLAKE2B 848a5c9be65bacb3297c9f0b54235f2143be91840c5f0730c0c7bd1c6d273855d730eb9722860f7543eb6e57e8ace5b775f73f5789ee6814f5d62fec02bd2b14 SHA512 28ec70a4ac02021ff85390ad6863aaca5451937209345128ecd5baf76bef9495168c3c4ee5d823afbeb569ca673328673a81b807e7985c3d5d1843c056af7810
23 DIST apngasm-2.91-src.zip 597267 BLAKE2B a34a765fef49aa0ac29973b8dc450bfcdfe7aa83dffe19919f916a136db3d0bfebf3c1fac79bfb81a3900cee87afd888469e5432500d181a9539696b4573a42b SHA512 2415389a989f7a7ff7f3e1328f7920c7515c9a492c89ef216ff53db68fe2f1a674ff60d5f4bfd5a8c710f625456557ae7d5b25f486ac826e3113976cd9fc11dc
24
25 diff --git a/media-gfx/apngasm/apngasm-2.7.ebuild b/media-gfx/apngasm/apngasm-2.7.ebuild
26 deleted file mode 100644
27 index 49660f693fc..00000000000
28 --- a/media-gfx/apngasm/apngasm-2.7.ebuild
29 +++ /dev/null
30 @@ -1,36 +0,0 @@
31 -# Copyright 1999-2014 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="5"
35 -
36 -inherit eutils toolchain-funcs
37 -
38 -DESCRIPTION="create an APNG from multiple PNG files"
39 -HOMEPAGE="https://sourceforge.net/projects/apngasm/"
40 -SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}-src.zip"
41 -
42 -LICENSE="ZLIB"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -IUSE=""
46 -
47 -RDEPEND="media-libs/libpng:0=[apng]
48 - sys-libs/zlib:="
49 -DEPEND="${RDEPEND}
50 - app-arch/unzip
51 - virtual/pkgconfig"
52 -
53 -S=${WORKDIR}
54 -
55 -src_prepare() {
56 - epatch "${FILESDIR}"/${P}-string_h.patch #465780
57 -}
58 -
59 -src_compile() {
60 - emake CC="$(tc-getCC)" LDLIBS="$($(tc-getPKG_CONFIG) --libs libpng --libs zlib)" ${PN}
61 -}
62 -
63 -src_install() {
64 - dobin ${PN}
65 - dodoc readme.txt
66 -}
67
68 diff --git a/media-gfx/apngasm/files/apngasm-2.7-string_h.patch b/media-gfx/apngasm/files/apngasm-2.7-string_h.patch
69 deleted file mode 100644
70 index 303e832b37c..00000000000
71 --- a/media-gfx/apngasm/files/apngasm-2.7-string_h.patch
72 +++ /dev/null
73 @@ -1,16 +0,0 @@
74 -http://bugs.gentoo.org/465780
75 -
76 -Same for all of memcpy(), memset(), strlen() and strcpy():
77 -
78 -apngasm.c:141:11: warning: incompatible implicit declaration of built-in function ‘memcpy’ [enabled by default]
79 -
80 ---- apngasm.c
81 -+++ apngasm.c
82 -@@ -29,6 +29,7 @@
83 - */
84 - #include <stdio.h>
85 - #include <stdlib.h>
86 -+#include <string.h>
87 - #include "png.h" /* original (unpatched) libpng is ok */
88 - #include "zlib.h"
89 -