From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-pda/libplist/
Date: Thu, 16 Jul 2020 12:59:35 +0000 (UTC) [thread overview]
Message-ID: <1594904363.30457c628a8aaff54b01ff87d22eb66ecf0fccb0.juippis@gentoo> (raw)
commit: 30457c628a8aaff54b01ff87d22eb66ecf0fccb0
Author: Jeffrey Lin <jeffrey <AT> icurse <DOT> nl>
AuthorDate: Sat Jun 20 19:34:03 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Jul 16 12:59:23 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30457c62
app-pda/libplist: version bump to 2.2.0
Signed-off-by: Jeffrey Lin <jeffrey <AT> icurse.nl>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
app-pda/libplist/Manifest | 1 +
app-pda/libplist/libplist-2.2.0.ebuild | 98 ++++++++++++++++++++++++++++++++++
2 files changed, 99 insertions(+)
diff --git a/app-pda/libplist/Manifest b/app-pda/libplist/Manifest
index 9004ee69010..f7eb711f962 100644
--- a/app-pda/libplist/Manifest
+++ b/app-pda/libplist/Manifest
@@ -1 +1,2 @@
DIST libplist-2.1.0.tar.bz2 120602 BLAKE2B 8abfe3c295c4ebd242f2c4d49c80d1f214097df84f1d2fcf2696519bbbca4e8a5ce13c04690ac64fd981f84d585df25fc65c268a4e4f4092319053583e67736c SHA512 23156e882835bb0b894a05b57018b5e76f9f8f8f4b1d3fdad7b1970d2ef695033c98de74a1fa81bdf0829742a058fd65075cebc1512313d2be42e2f5367274be
+DIST libplist-2.2.0.tar.bz2 126808 BLAKE2B 7c3ec04aaa52eca33ae28851a6524c9ea531df939feef0f10827c8c2de78a6ccd856ea4d8a568b146ccb5de96f70dd5accec34aa2fdd61f9e6eba01256c0b518 SHA512 641bfd3ec0565f104d3a2d1ebdf6137bc9252b67ce90550e24ab0deeee4e820e119ba4f8f1ba04a0358d995d196fa61e35f2f0ee8ba37fc0270752ae842ab1f5
diff --git a/app-pda/libplist/libplist-2.2.0.ebuild b/app-pda/libplist/libplist-2.2.0.ebuild
new file mode 100644
index 00000000000..7c1f430c30f
--- /dev/null
+++ b/app-pda/libplist/libplist-2.2.0.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8} )
+inherit autotools python-r1 toolchain-funcs
+
+DESCRIPTION="Support library to deal with Apple Property Lists (Binary & XML)"
+HOMEPAGE="https://www.libimobiledevice.org/"
+SRC_URI="https://cgit.libimobiledevice.org/${PN}.git/snapshot/${P}.tar.bz2"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0/3"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="python static-libs"
+
+RDEPEND="python? ( ${PYTHON_DEPS} )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ python? ( >=dev-python/cython-0.17[${PYTHON_USEDEP}] )
+"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+DOCS=( AUTHORS NEWS README.md )
+
+BUILD_DIR="${S}_build"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local ECONF_SOURCE=${S}
+ local myeconfargs=( $(use_enable static-libs static) )
+
+ do_configure() {
+ mkdir -p "${BUILD_DIR}" || die
+ pushd "${BUILD_DIR}" >/dev/null || die
+ econf "${myeconfargs[@]}" "${@}"
+ popd >/dev/null || die
+ }
+
+ do_configure_python() {
+ local -x PYTHON_LDFLAGS="$(python_get_LIBS)"
+ do_configure "$@"
+ }
+
+ # Don't prefer clang.
+ tc-export CC CXX
+
+ do_configure --without-cython
+ use python && python_foreach_impl do_configure_python
+}
+
+src_compile() {
+ python_compile() {
+ emake -C "${BUILD_DIR}"/cython \
+ VPATH="${S}/cython:${native_builddir}/cython" \
+ plist_la_LIBADD="${native_builddir}/src/libplist.la"
+ }
+
+ local native_builddir=${BUILD_DIR}
+ pushd "${BUILD_DIR}" >/dev/null || die
+ emake
+ use python && python_foreach_impl python_compile
+ popd >/dev/null || die
+}
+
+src_test() {
+ emake -C "${BUILD_DIR}" check
+}
+
+src_install() {
+ python_install() {
+ emake -C "${BUILD_DIR}/cython" \
+ VPATH="${S}/cython:${native_builddir}/cython" \
+ DESTDIR="${D}" install
+ }
+
+ local native_builddir=${BUILD_DIR}
+ pushd "${BUILD_DIR}" >/dev/null || die
+ emake DESTDIR="${D}" install
+ use python && python_foreach_impl python_install
+ popd >/dev/null || die
+
+ einstalldocs
+
+ if use python ; then
+ insinto /usr/include/plist/cython
+ doins cython/plist.pxd
+ fi
+
+ find "${D}" -name '*.la' -delete || die
+}
next reply other threads:[~2020-07-16 12:59 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-16 12:59 Joonas Niilola [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-12 7:52 [gentoo-commits] repo/gentoo:master commit in: app-pda/libplist/ Michał Górny
2024-10-11 10:50 Sam James
2024-10-11 10:50 Sam James
2024-10-11 9:56 Arthur Zamarin
2024-09-08 12:05 Petr Vaněk
2024-09-05 15:47 Petr Vaněk
2024-09-05 15:47 Petr Vaněk
2024-05-28 22:28 Ionen Wolkens
2024-04-19 10:38 Sam James
2024-03-21 17:00 Arthur Zamarin
2024-03-13 23:57 Sam James
2024-03-13 15:20 Arthur Zamarin
2024-03-13 15:06 Arthur Zamarin
2024-03-13 15:03 Arthur Zamarin
2023-10-08 15:30 Matthew Smith
2023-02-17 16:59 Matthew Smith
2022-11-16 5:57 WANG Xuerui
2022-09-09 9:48 Matthew Smith
2022-08-26 23:27 Sam James
2022-08-26 5:46 Sam James
2022-08-25 18:17 Arthur Zamarin
2022-08-25 17:39 Arthur Zamarin
2022-07-25 18:50 Matthew Smith
2021-12-25 12:29 Georgy Yakovlev
2021-08-23 22:59 Marek Szuba
2021-03-29 14:50 Sam James
2021-03-27 22:16 Andreas Sturmlechner
2021-03-27 22:16 Andreas Sturmlechner
2021-01-17 4:10 Sam James
2020-12-20 19:28 Sam James
2020-12-20 19:07 Thomas Deutschmann
2020-12-17 16:41 Agostino Sarubbo
2020-12-17 8:58 Sam James
2020-07-18 10:57 Mart Raudsepp
2020-05-10 12:40 Andreas Sturmlechner
2020-05-09 7:48 Agostino Sarubbo
2020-05-09 7:40 Agostino Sarubbo
2020-05-08 17:11 Agostino Sarubbo
2020-03-28 13:32 James Le Cuirot
2020-03-21 21:36 James Le Cuirot
2020-03-21 16:57 James Le Cuirot
2020-03-05 16:21 Michał Górny
2020-02-10 21:00 Michał Górny
2020-01-13 18:56 Craig Andrews
2017-07-08 2:33 Michael Palimaka
2017-06-25 16:32 Agostino Sarubbo
2017-06-19 16:16 Alexis Ballier
2017-06-06 13:32 Thomas Deutschmann
2017-05-20 23:46 Michael Weber
2017-01-18 12:02 Michael Palimaka
2016-01-25 2:21 Mike Gilbert
2015-12-31 22:12 Steve Arnold
2015-12-21 15:43 Ian Stakenvicius
2015-12-09 22:01 Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1594904363.30457c628a8aaff54b01ff87d22eb66ecf0fccb0.juippis@gentoo \
--to=juippis@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox