Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libexif/
Date: Sun, 27 Dec 2020 09:29:15
Message-Id: 1609061343.f4b670bf10be44aa2a4108c8e0bb79662aa2421c.asturm@gentoo
1 commit: f4b670bf10be44aa2a4108c8e0bb79662aa2421c
2 Author: John Helmert III <jchelmert3 <AT> posteo <DOT> net>
3 AuthorDate: Sun Dec 27 08:51:06 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 27 09:29:03 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4b670bf
7
8 media-libs/libexif: security cleanup (drop <0.6.22_p20201105)
9
10 Bug: https://bugs.gentoo.org/754681
11 Package-Manager: Portage-3.0.12, Repoman-3.0.2
12 Signed-off-by: John Helmert III <jchelmert3 <AT> posteo.net>
13 Closes: https://github.com/gentoo/gentoo/pull/18828
14 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
15
16 media-libs/libexif/Manifest | 1 -
17 media-libs/libexif/libexif-0.6.22.ebuild | 49 --------------------------------
18 2 files changed, 50 deletions(-)
19
20 diff --git a/media-libs/libexif/Manifest b/media-libs/libexif/Manifest
21 index 8aae44788f2..bc21d723f6f 100644
22 --- a/media-libs/libexif/Manifest
23 +++ b/media-libs/libexif/Manifest
24 @@ -1,2 +1 @@
25 -DIST libexif-0.6.22.tar.gz 2741296 BLAKE2B df57aa0ff7d20faa47ea34f4d8164c33b113887bc2179405481b2c12c0d0336dc9e5321a260ffda64d974bfa9ac6af55c0cfb4cc9a57a941c17944a3d049befd SHA512 e399804c9d67072861988638349115c585546be20f15c4d26bb6f411ff4ee5bce979c1a41305c1456ecc2f830837349f93cfa4136b7a864e0486cecd3607b469
26 DIST libexif-0.6.22_p20201105.tar.gz 1111695 BLAKE2B d4eb856ad950f8ae068a27088e54311789c7b8b646dd1c4851ef637b626015119b3b5ac9cbac58f9c79c37c07ba7d3e9a9a67dc52715187495aa824846ec2335 SHA512 5472bf2531d9147be5c6e681d0257325f6609d6aa3935243f887df0ab32e51242ff9d853fc2c183cf5c2709c89d5c52d8fecb9144343d6f959f4bed1062098ab
27
28 diff --git a/media-libs/libexif/libexif-0.6.22.ebuild b/media-libs/libexif/libexif-0.6.22.ebuild
29 deleted file mode 100644
30 index a1b021eb878..00000000000
31 --- a/media-libs/libexif/libexif-0.6.22.ebuild
32 +++ /dev/null
33 @@ -1,49 +0,0 @@
34 -# Copyright 1999-2020 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -inherit libtool multilib-minimal
40 -
41 -DESCRIPTION="Library for parsing, editing, and saving EXIF data"
42 -HOMEPAGE="https://libexif.github.io/ https://github.com/libexif/libexif"
43 -SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PN}-${PV//./_}-release/${P}.tar.gz"
44 -
45 -LICENSE="LGPL-2+"
46 -SLOT="0"
47 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
48 -IUSE="doc nls static-libs"
49 -
50 -RDEPEND="nls? ( virtual/libintl )"
51 -DEPEND="${RDEPEND}"
52 -BDEPEND="
53 - virtual/pkgconfig
54 - doc? ( app-doc/doxygen )
55 - nls? ( sys-devel/gettext )"
56 -
57 -PATCHES=(
58 - "${FILESDIR}"/${PN}-0.6.13-pkgconfig.patch
59 -)
60 -
61 -src_prepare() {
62 - default
63 - sed -i -e '/FLAGS=/s:-g::' configure || die #390249
64 - elibtoolize # For *-bsd
65 -}
66 -
67 -multilib_src_configure() {
68 - ECONF_SOURCE=${S} econf \
69 - $(use_enable doc docs) \
70 - $(use_enable nls) \
71 - $(use_enable static-libs static) \
72 - --with-doc-dir="${EPREFIX}"/usr/share/doc/${PF}
73 -}
74 -
75 -multilib_src_install() {
76 - emake DESTDIR="${D}" install
77 -}
78 -
79 -multilib_src_install_all() {
80 - find "${D}" -name '*.la' -delete || die
81 - rm -f "${ED}"/usr/share/doc/${PF}/{ABOUT-NLS,COPYING} || die
82 -}