Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-pda/libplist/
Date: Sat, 08 Jul 2017 02:33:12
Message-Id: 1499481180.26d39065ca9a589f4106ebd128d22258cd83b472.kensington@gentoo
1 commit: 26d39065ca9a589f4106ebd128d22258cd83b472
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 8 02:32:51 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 8 02:33:00 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26d39065
7
8 app-pda/libplist: remove 1.12
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 app-pda/libplist/Manifest | 1 -
13 app-pda/libplist/libplist-1.12.ebuild | 82 -----------------------------------
14 2 files changed, 83 deletions(-)
15
16 diff --git a/app-pda/libplist/Manifest b/app-pda/libplist/Manifest
17 index 73f0e7344a0..23105db5339 100644
18 --- a/app-pda/libplist/Manifest
19 +++ b/app-pda/libplist/Manifest
20 @@ -1,2 +1 @@
21 -DIST libplist-1.12.tar.bz2 384321 SHA256 0effdedcb3de128c4930d8c03a3854c74c426c16728b8ab5f0a5b6bdc0b644be SHA512 8af40d8f457ca9a8a9061e9429698c696200714cc05dcbe981e900106c52cd5222edb9dd8d8976bccd0c8997508ed14fb2e10f0ed29383f2ad4f7c5eb7eec0b3 WHIRLPOOL 7d3c4f7822683018b5b0e794d509b9cf5a703605ed772df849ad9ebba6e8191f2eb629444c07d2dcb265520d24c94f13287f200fec34779c9e6fe029536183a7
22 DIST libplist-2.0.0.tar.bz2 421405 SHA256 3a7e9694c2d9a85174ba1fa92417cfabaea7f6d19631e544948dc7e17e82f602 SHA512 81508bf6773483528816725c3b5b868563b84fd7810999404072e5ea9efa7fc9f11ef997f32208e4421aa26b15edd0c65f87c67c1472e8c4e356f1e9fe7740ee WHIRLPOOL cfea767321dda602722281f189dae708969c7471bc4b9388638b671257f3808358e1227cdf29cba7751cb715a8ec92fccb1c0dd5c8d150ebac19fdf8633c6339
23
24 diff --git a/app-pda/libplist/libplist-1.12.ebuild b/app-pda/libplist/libplist-1.12.ebuild
25 deleted file mode 100644
26 index 9467b05e68c..00000000000
27 --- a/app-pda/libplist/libplist-1.12.ebuild
28 +++ /dev/null
29 @@ -1,82 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -PYTHON_COMPAT=( python{2_7,3_4,3_5} )
35 -inherit autotools eutils python-r1
36 -
37 -DESCRIPTION="Support library to deal with Apple Property Lists (Binary & XML)"
38 -HOMEPAGE="http://www.libimobiledevice.org/"
39 -SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2"
40 -
41 -LICENSE="GPL-2 LGPL-2.1"
42 -SLOT="0/3" # based on SONAME of libplist.so
43 -KEYWORDS="amd64 ~arm ppc ~ppc64 x86 ~amd64-fbsd"
44 -IUSE="python static-libs"
45 -
46 -RDEPEND=">=dev-libs/libxml2-2.7.8
47 - python? ( ${PYTHON_DEPS} )"
48 -DEPEND="${RDEPEND}
49 - virtual/pkgconfig
50 - python? ( >=dev-python/cython-0.17[${PYTHON_USEDEP}] )"
51 -
52 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
53 -
54 -DOCS=( AUTHORS NEWS README )
55 -
56 -RESTRICT="test" # TODO: src_test() was dropped from 1.10 (cmake) -> 1.11 (autotools)
57 -
58 -BUILD_DIR="${S}_build"
59 -
60 -src_configure() {
61 - local ECONF_SOURCE=${S}
62 - local myeconfargs=( $(use_enable static-libs static) )
63 -
64 - do_configure() {
65 - mkdir -p "${BUILD_DIR}" || die
66 - pushd "${BUILD_DIR}" >/dev/null || die
67 - econf "${myeconfargs[@]}" "${@}"
68 - popd >/dev/null || die
69 - }
70 -
71 - do_configure_python() {
72 - PYTHON_LDFLAGS="$(python_get_LIBS)" do_configure "$@"
73 - }
74 -
75 - do_configure --without-cython
76 - use python && python_foreach_impl do_configure_python
77 -}
78 -
79 -src_compile() {
80 - python_compile() {
81 - emake -C "${BUILD_DIR}"/cython -j1 \
82 - VPATH="${S}/cython:${native_builddir}/cython" \
83 - plist_la_LIBADD="${native_builddir}/src/libplist.la"
84 - }
85 -
86 - local native_builddir=${BUILD_DIR}
87 - pushd "${BUILD_DIR}" >/dev/null || die
88 - emake -j1
89 - use python && python_foreach_impl python_compile
90 - popd >/dev/null || die
91 -}
92 -
93 -src_install() {
94 - python_install() {
95 - emake -C "${BUILD_DIR}/cython" -j1 \
96 - VPATH="${S}/cython:${native_builddir}/cython" \
97 - DESTDIR="${D}" install
98 - }
99 -
100 - local native_builddir=${BUILD_DIR}
101 - pushd "${BUILD_DIR}" >/dev/null || die
102 - emake -j1 DESTDIR="${D}" install
103 - use python && python_foreach_impl python_install
104 - popd >/dev/null || die
105 -
106 - if use python ; then
107 - insinto /usr/include/plist/cython
108 - doins cython/plist.pxd
109 - fi
110 - prune_libtool_files --all
111 -}