public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-pda/libimobiledevice: ChangeLog libimobiledevice-1.1.2.ebuild
@ 2012-03-31 15:35 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-03-31 15:35 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/03/31 15:35:03

  Modified:             ChangeLog
  Added:                libimobiledevice-1.1.2.ebuild
  Log:
  Version bump wrt #409941 by "feiyd"
  
  (Portage version: 2.2.0_alpha96/cvs/Linux x86_64)

Revision  Changes    Path
1.23                 app-pda/libimobiledevice/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	13 Nov 2011 11:37:54 -0000	1.22
+++ ChangeLog	31 Mar 2012 15:35:02 -0000	1.23
@@ -1,6 +1,12 @@
 # ChangeLog for app-pda/libimobiledevice
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.22 2011/11/13 11:37:54 ssuominen Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.23 2012/03/31 15:35:02 ssuominen Exp $
+
+*libimobiledevice-1.1.2 (31 Mar 2012)
+
+  31 Mar 2012; Samuli Suominen <ssuominen@gentoo.org>
+  +libimobiledevice-1.1.2.ebuild:
+  Version bump wrt #409941 by "feiyd"
 
   13 Nov 2011; Samuli Suominen <ssuominen@gentoo.org>
   libimobiledevice-1.1.1.ebuild:



1.1                  app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild?rev=1.1&content-type=text/plain

Index: libimobiledevice-1.1.2.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild,v 1.1 2012/03/31 15:35:02 ssuominen Exp $

EAPI=4

PYTHON_DEPEND="python? 2:2.7"

inherit python

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"
KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE="python ssl static-libs"

RDEPEND=">=app-pda/libplist-1.8-r1[python?]
	>=app-pda/usbmuxd-0.1.4
	ssl? ( dev-libs/openssl:0 )
	!ssl? (
		dev-libs/libgcrypt
		>=dev-libs/libtasn1-1.1
		>=net-libs/gnutls-2.2.0
		)"
DEPEND="${RDEPEND}
	dev-util/pkgconfig
	python? ( >=dev-python/cython-0.13 )"

pkg_setup() {
	if use python; then
		python_set_active_version 2
		python_pkg_setup
	fi
}

src_prepare() {
	>py-compile
}

src_configure() {
	local myconf
	use python || myconf="--without-cython"
	use ssl || myconf="--disable-openssl"

	econf \
		$(use_enable static-libs static) \
		${myconf}
}

src_install() {
	emake DESTDIR="${D}" install || die

	dodoc AUTHORS NEWS README
	dohtml docs/html/*

	find "${ED}" -name '*.la' -exec rm -f {} +
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-pda/libimobiledevice: ChangeLog libimobiledevice-1.1.2.ebuild
@ 2012-04-03  4:56 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-04-03  4:56 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/04/03 04:56:34

  Modified:             ChangeLog libimobiledevice-1.1.2.ebuild
  Log:
  Convert USE="ssl" to IMOBILEDEVICE_BACKEND USE_EXPAND to clarify it's exactly-one-of from gnutls or openssl.
  
  (Portage version: 2.2.0_alpha96/cvs/Linux x86_64)

Revision  Changes    Path
1.25                 app-pda/libimobiledevice/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	3 Apr 2012 04:35:14 -0000	1.24
+++ ChangeLog	3 Apr 2012 04:56:34 -0000	1.25
@@ -1,6 +1,11 @@
 # ChangeLog for app-pda/libimobiledevice
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.24 2012/04/03 04:35:14 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.25 2012/04/03 04:56:34 ssuominen Exp $
+
+  03 Apr 2012; Samuli Suominen <ssuominen@gentoo.org>
+  libimobiledevice-1.1.2.ebuild:
+  Convert USE="ssl" to IMOBILEDEVICE_BACKEND USE_EXPAND to clarify it's
+  exactly-one-of from gnutls or openssl.
 
   03 Apr 2012; Samuli Suominen <ssuominen@gentoo.org>
   libimobiledevice-1.1.1.ebuild:



1.3                  app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild?r1=1.2&r2=1.3

Index: libimobiledevice-1.1.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libimobiledevice-1.1.2.ebuild	31 Mar 2012 15:39:16 -0000	1.2
+++ libimobiledevice-1.1.2.ebuild	3 Apr 2012 04:56:34 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild,v 1.2 2012/03/31 15:39:16 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild,v 1.3 2012/04/03 04:56:34 ssuominen Exp $
 
 EAPI=4
 
@@ -15,12 +15,12 @@
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc64 ~x86"
-IUSE="python ssl static-libs"
+IUSE="imobiledevice_backend_gnutls +imobiledevice_backend_openssl python static-libs"
 
 RDEPEND=">=app-pda/libplist-1.8-r1[python?]
 	>=app-pda/usbmuxd-0.1.4
-	ssl? ( dev-libs/openssl:0 )
-	!ssl? (
+	imobiledevice_backend_openssl? ( dev-libs/openssl:0 )
+	imobiledevice_backend_gnutls? (
 		dev-libs/libgcrypt
 		>=dev-libs/libtasn1-1.1
 		>=net-libs/gnutls-2.2.0
@@ -29,6 +29,8 @@
 	dev-util/pkgconfig
 	python? ( >=dev-python/cython-0.13 )"
 
+REQUIRED_USE="^^ ( imobiledevice_backend_openssl imobiledevice_backend_gnutls )"
+
 DOCS=( AUTHORS NEWS README )
 
 pkg_setup() {
@@ -45,7 +47,7 @@
 src_configure() {
 	local myconf
 	use python || myconf+=' --without-cython'
-	use ssl || myconf+=' --disable-openssl'
+	use imobiledevice_backend_openssl || myconf+=' --disable-openssl'
 
 	econf \
 		$(use_enable static-libs static) \






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-pda/libimobiledevice: ChangeLog libimobiledevice-1.1.2.ebuild
@ 2012-04-12 14:42 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-04-12 14:42 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/04/12 14:42:36

  Modified:             ChangeLog
  Removed:              libimobiledevice-1.1.2.ebuild
  Log:
  old
  
  (Portage version: 2.2.0_alpha100/cvs/Linux x86_64)

Revision  Changes    Path
1.27                 app-pda/libimobiledevice/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	12 Apr 2012 14:41:27 -0000	1.26
+++ ChangeLog	12 Apr 2012 14:42:35 -0000	1.27
@@ -1,6 +1,10 @@
 # ChangeLog for app-pda/libimobiledevice
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.26 2012/04/12 14:41:27 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.27 2012/04/12 14:42:35 ssuominen Exp $
+
+  12 Apr 2012; Samuli Suominen <ssuominen@gentoo.org>
+  -libimobiledevice-1.1.2.ebuild:
+  old
 
 *libimobiledevice-1.1.4 (12 Apr 2012)
 






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-04-12 14:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-31 15:35 [gentoo-commits] gentoo-x86 commit in app-pda/libimobiledevice: ChangeLog libimobiledevice-1.1.2.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2012-04-03  4:56 Samuli Suominen (ssuominen)
2012-04-12 14:42 Samuli Suominen (ssuominen)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox