Gentoo Archives: gentoo-commits

From: "Markus Meier (maekke)" <maekke@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/gexiv2: gexiv2-0.10.3.ebuild ChangeLog
Date: Sun, 28 Jun 2015 09:20:07
Message-Id: 20150628091954.8FD5F744@oystercatcher.gentoo.org
1 maekke 15/06/28 09:19:54
2
3 Modified: ChangeLog
4 Added: gexiv2-0.10.3.ebuild
5 Log:
6 version bump by Pacho Ramos in bug #544732
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 072AD062)
9
10 Revision Changes Path
11 1.32 media-libs/gexiv2/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gexiv2/ChangeLog?rev=1.32&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gexiv2/ChangeLog?rev=1.32&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gexiv2/ChangeLog?r1=1.31&r2=1.32
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/gexiv2/ChangeLog,v
20 retrieving revision 1.31
21 retrieving revision 1.32
22 diff -u -r1.31 -r1.32
23 --- ChangeLog 8 Apr 2015 17:59:35 -0000 1.31
24 +++ ChangeLog 28 Jun 2015 09:19:54 -0000 1.32
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/gexiv2
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gexiv2/ChangeLog,v 1.31 2015/04/08 17:59:35 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gexiv2/ChangeLog,v 1.32 2015/06/28 09:19:54 maekke Exp $
30 +
31 +*gexiv2-0.10.3 (28 Jun 2015)
32 +
33 + 28 Jun 2015; Markus Meier <maekke@g.o> +gexiv2-0.10.3.ebuild:
34 + version bump by Pacho Ramos in bug #544732
35
36 08 Apr 2015; Michał Górny <mgorny@g.o> gexiv2-0.6.1.ebuild:
37 Drop old Python implementations
38
39
40
41 1.1 media-libs/gexiv2/gexiv2-0.10.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gexiv2/gexiv2-0.10.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gexiv2/gexiv2-0.10.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gexiv2-0.10.3.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/gexiv2/gexiv2-0.10.3.ebuild,v 1.1 2015/06/28 09:19:54 maekke Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
55
56 inherit eutils multilib python-r1 toolchain-funcs versionator
57
58 MY_PV=$(get_version_component_range 1-2)
59
60 DESCRIPTION="GObject-based wrapper around the Exiv2 library"
61 HOMEPAGE="https://wiki.gnome.org/Projects/gexiv2"
62 SRC_URI="mirror://gnome/sources/${PN}/${MY_PV}/${P}.tar.xz"
63
64 LICENSE="LGPL-2.1"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
67 IUSE="introspection python static-libs"
68
69 REQUIRED_USE="python? ( introspection ${PYTHON_REQUIRED_USE} )"
70
71 RDEPEND="${PYTHON_DEPS}
72 >=dev-libs/glib-2.26.1:2
73 >=media-gfx/exiv2-0.21:0=
74 introspection? ( dev-libs/gobject-introspection )"
75 DEPEND="${RDEPEND}
76 virtual/pkgconfig"
77
78 src_prepare() {
79 tc-export CXX
80 }
81
82 src_configure() {
83 econf \
84 $(use_enable introspection) \
85 $(use_enable static-libs static)
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" LIB="$(get_libdir)" install
90 dodoc AUTHORS NEWS README THANKS
91
92 if use python ; then
93 python_moduleinto gi/overrides/
94 python_foreach_impl python_domodule GExiv2.py
95 fi
96
97 use static-libs || prune_libtool_files --modules
98 }