diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2014-08-03 12:19:40 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2014-08-03 12:19:40 +0000 |
commit | 66c8eb39ad3c4b43f43994fab6d629e78ee56d7a (patch) | |
tree | 145c90687e3cf517a19113f63b0762b3a4433401 | |
parent | old (diff) | |
download | gentoo-2-66c8eb39ad3c4b43f43994fab6d629e78ee56d7a.tar.gz gentoo-2-66c8eb39ad3c4b43f43994fab6d629e78ee56d7a.tar.bz2 gentoo-2-66c8eb39ad3c4b43f43994fab6d629e78ee56d7a.zip |
old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
-rw-r--r-- | app-pda/libimobiledevice/ChangeLog | 6 | ||||
-rw-r--r-- | app-pda/libimobiledevice/files/libimobiledevice-1.1.5-cython.patch | 14 | ||||
-rw-r--r-- | app-pda/libimobiledevice/libimobiledevice-1.1.5.ebuild | 61 |
3 files changed, 5 insertions, 76 deletions
diff --git a/app-pda/libimobiledevice/ChangeLog b/app-pda/libimobiledevice/ChangeLog index 6dec9c17f38d..0caff7ac4958 100644 --- a/app-pda/libimobiledevice/ChangeLog +++ b/app-pda/libimobiledevice/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-pda/libimobiledevice # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.56 2014/08/03 12:08:45 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.57 2014/08/03 12:19:40 ssuominen Exp $ + + 03 Aug 2014; Samuli Suominen <ssuominen@gentoo.org> + -files/libimobiledevice-1.1.5-cython.patch, -libimobiledevice-1.1.5.ebuild: + old 03 Aug 2014; Samuli Suominen <ssuominen@gentoo.org> libimobiledevice-1.1.6.ebuild: diff --git a/app-pda/libimobiledevice/files/libimobiledevice-1.1.5-cython.patch b/app-pda/libimobiledevice/files/libimobiledevice-1.1.5-cython.patch deleted file mode 100644 index df6e6637c549..000000000000 --- a/app-pda/libimobiledevice/files/libimobiledevice-1.1.5-cython.patch +++ /dev/null @@ -1,14 +0,0 @@ -http://bugs.gentoo.org/471620 -http://github.com/libimobiledevice/libimobiledevice/commit/62ab50f64fa210304338a5bfccdc6a26fac5f0ec - ---- cython/lockdown.pxi -+++ cython/lockdown.pxi -@@ -221,7 +221,7 @@ - char* c_session_id = NULL - bint ssl_enabled - bytes session_id -- err = lockdownd_start_session(self._c_client, host_id, &c_session_id, &ssl_enabled) -+ err = lockdownd_start_session(self._c_client, host_id, &c_session_id, <int *>&ssl_enabled) - try: - self.handle_error(err) - diff --git a/app-pda/libimobiledevice/libimobiledevice-1.1.5.ebuild b/app-pda/libimobiledevice/libimobiledevice-1.1.5.ebuild deleted file mode 100644 index 494b355ecd17..000000000000 --- a/app-pda/libimobiledevice/libimobiledevice-1.1.5.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.5.ebuild,v 1.6 2014/03/01 22:19:35 mgorny Exp $ - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) -inherit eutils python-r1 multilib - -DESCRIPTION="Support library to communicate with Apple iPhone/iPod Touch devices" -HOMEPAGE="http://www.libimobiledevice.org/" -SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0/4" -KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86" -IUSE="gnutls python" - -RDEPEND=">=app-pda/libplist-1.10[python?,${PYTHON_USEDEP}] - >=app-pda/usbmuxd-1.0.8 - gnutls? ( - dev-libs/libgcrypt:0 - >=dev-libs/libtasn1-1.1 - >=net-libs/gnutls-2.2.0 - ) - !gnutls? ( dev-libs/openssl:0 )" -DEPEND="${RDEPEND} - virtual/pkgconfig - python? ( - ${PYTHON_DEPS} - >=dev-python/cython-0.17[${PYTHON_USEDEP}] - )" - -DOCS=( AUTHORS NEWS README ) - -pkg_setup() { - # Prevent linking to the installed copy - if has_version "<${CATEGORY}/${P}"; then - rm -f "${EROOT}"/usr/$(get_libdir)/${PN}$(get_libname) - fi -} - -src_prepare() { - epatch "${FILESDIR}"/${P}-cython.patch -} - -src_configure() { - use python && python_export_best - - local myconf - use gnutls && myconf='--disable-openssl' - use python || myconf+=' --without-cython' - - econf --disable-static ${myconf} -} - -src_install() { - default - dohtml docs/html/* - - prune_libtool_files --all -} |