Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gexiv2/
Date: Sun, 28 Feb 2016 11:09:35
Message-Id: 1456657731.42cf50789a8332713d1ad76a05e414be0096d88c.pacho@gentoo
1 commit: 42cf50789a8332713d1ad76a05e414be0096d88c
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 28 11:03:35 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 11:08:51 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42cf5078
7
8 media-libs/gexiv2: Drop old
9
10 Package-Manager: portage-2.2.27
11
12 media-libs/gexiv2/Manifest | 1 -
13 media-libs/gexiv2/gexiv2-0.6.1.ebuild | 52 -----------------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/media-libs/gexiv2/Manifest b/media-libs/gexiv2/Manifest
17 index 3002b71..e6b9f4d 100644
18 --- a/media-libs/gexiv2/Manifest
19 +++ b/media-libs/gexiv2/Manifest
20 @@ -1,3 +1,2 @@
21 DIST gexiv2-0.10.2.tar.xz 242704 SHA256 2fd21f0ed5125e51d02226e7f41be751cfa8ae411a8ed1a651e16b06d79047b2 SHA512 4f2f666b0dc1beb730dbd791dc690bebd8acefbc32a5e2d22fc72a4e2d839d3965b5367134c79c6076507713369193d5fb3e6d0fad984d53e53d57a20e41deab WHIRLPOOL d29a2e13ab12ce7f78ec664ce08f10efb70ce38bae6c8eb4061b16925c6eb498265ceb936eeef35788ea7ac5dc8fd98ddd873dcbd686ceb38f6bd1ebd571810f
22 DIST gexiv2-0.10.3.tar.xz 244816 SHA256 390cfb966197fa9f3f32200bc578d7c7f3560358c235e6419657206a362d3988 SHA512 a258a95e3e9dddc6636430d8a2bc222b6605e5d0d122ea1b951f97568cecd04b2d3cbc522625918faf3b5a3e670b01db81a45c2c5c5d65e6eb4b4f4a2ac69e8f WHIRLPOOL e50401f642a2252cad664716004038fdd364e9a42b93c7b9748e0f93b652cad31432f7f58571dd0ff67c8dcb1deca590eaaf42ad287d8d27110d0626a352154b
23 -DIST libgexiv2_0.6.1.tar.xz 27300 SHA256 72ee2fcc6a98c9e83467adea45b10d1b61c55654c204dcce9c2463615389a9e3 SHA512 76aecd20ffac202badb51eab4e40fee563c3073892beec716bcf24e285df42f2498594a9e0bf487e198e8c955047d55e5b49b506bbf8b67c64956c0b99a84b1b WHIRLPOOL f0d9b514c96ecd8924395a614f4e69d046eff7f99dcad332c843d934923d5a2ad115975c083cfa9fb5b6fe620e5a8fe662738691a54d5c42219279591d79846d
24
25 diff --git a/media-libs/gexiv2/gexiv2-0.6.1.ebuild b/media-libs/gexiv2/gexiv2-0.6.1.ebuild
26 deleted file mode 100644
27 index ad1f26e..0000000
28 --- a/media-libs/gexiv2/gexiv2-0.6.1.ebuild
29 +++ /dev/null
30 @@ -1,52 +0,0 @@
31 -# Copyright 1999-2015 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -# $Id$
34 -
35 -EAPI=5
36 -
37 -PYTHON_COMPAT=( python{2_7,3_3,3_4} )
38 -
39 -inherit eutils multilib python-r1 toolchain-funcs versionator
40 -
41 -MY_PV=$(get_version_component_range 1-2)
42 -
43 -DESCRIPTION="GObject-based wrapper around the Exiv2 library"
44 -HOMEPAGE="http://trac.yorba.org/wiki/gexiv2/"
45 -SRC_URI="http://www.yorba.org/download/${PN}/${MY_PV}/lib${PN}_${PV}.tar.xz"
46 -
47 -LICENSE="LGPL-2.1"
48 -SLOT="0"
49 -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86"
50 -IUSE="introspection static-libs"
51 -
52 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
53 -
54 -RDEPEND="${PYTHON_DEPS}
55 - dev-libs/glib:2
56 - >=media-gfx/exiv2-0.21"
57 -DEPEND="${RDEPEND}
58 - virtual/pkgconfig"
59 -
60 -S=${WORKDIR}/lib${P}
61 -
62 -src_prepare() {
63 - tc-export CXX
64 - sed -e 's:CFLAGS:CXXFLAGS:g' -i Makefile || die
65 -}
66 -
67 -src_configure() {
68 - ./configure \
69 - --prefix=/usr \
70 - $(use_enable introspection) \
71 - || die
72 -}
73 -
74 -src_install() {
75 - emake DESTDIR="${D}" LIB="$(get_libdir)" install
76 - dodoc AUTHORS NEWS README THANKS
77 -
78 - python_moduleinto gi/overrides/
79 - python_foreach_impl python_domodule GExiv2.py
80 -
81 - use static-libs || find "${D}" \( -name '*.a' -or -name '*.la' \) -delete
82 -}