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.4-r2.ebuild
@ 2012-08-05 13:03 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 4+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-08-05 13:03 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/08/05 13:03:59

  Modified:             ChangeLog
  Added:                libimobiledevice-1.1.4-r2.ebuild
  Log:
  Fix segmentation fault when both XDG_CONFIG_HOME and HOME are unset wrt #423155c3 by Davide Pesavento
  
  (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)

Revision  Changes    Path
1.32                 app-pda/libimobiledevice/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	19 May 2012 08:19:58 -0000	1.31
+++ ChangeLog	5 Aug 2012 13:03:59 -0000	1.32
@@ -1,6 +1,14 @@
 # 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.31 2012/05/19 08:19:58 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.32 2012/08/05 13:03:59 ssuominen Exp $
+
+*libimobiledevice-1.1.4-r2 (05 Aug 2012)
+
+  05 Aug 2012; Samuli Suominen <ssuominen@gentoo.org>
+  +libimobiledevice-1.1.4-r2.ebuild,
+  +files/libimobiledevice-1.1.4-HOME-segfault.patch:
+  Fix segmentation fault when both $XDG_CONFIG_HOME and $HOME are unset wrt
+  #423155c3 by Davide Pesavento
 
   19 May 2012; Samuli Suominen <ssuominen@gentoo.org>
   -libimobiledevice-1.1.4.ebuild:



1.1                  app-pda/libimobiledevice/libimobiledevice-1.1.4-r2.ebuild

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

Index: libimobiledevice-1.1.4-r2.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.4-r2.ebuild,v 1.1 2012/08/05 13:03:59 ssuominen Exp $

EAPI=4
PYTHON_DEPEND="python? 2:2.7"
inherit autotools eutils 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="gnutls python"

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

DOCS="AUTHORS NEWS README"

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

src_prepare() {
	epatch \
		"${FILESDIR}"/${P}-cython.patch \
		"${FILESDIR}"/${P}-openssl.patch \
		"${FILESDIR}"/${P}-HOME-segfault.patch

	eautoreconf

	>py-compile
}

src_configure() {
	local myconf='--disable-static'
	use python || myconf+=' --without-cython'
	use gnutls && myconf+=' --disable-openssl'

	econf ${myconf}
}

src_install() {
	default
	dohtml docs/html/*

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





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

* [gentoo-commits] gentoo-x86 commit in app-pda/libimobiledevice: ChangeLog libimobiledevice-1.1.4-r2.ebuild
@ 2012-08-05 14:49 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 4+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-08-05 14:49 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/08/05 14:49:41

  Modified:             ChangeLog libimobiledevice-1.1.4-r2.ebuild
  Log:
  Use prune_libtool_files from eutils.eclass
  
  (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)

Revision  Changes    Path
1.33                 app-pda/libimobiledevice/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	5 Aug 2012 13:03:59 -0000	1.32
+++ ChangeLog	5 Aug 2012 14:49:41 -0000	1.33
@@ -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.32 2012/08/05 13:03:59 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.33 2012/08/05 14:49:41 ssuominen Exp $
+
+  05 Aug 2012; Samuli Suominen <ssuominen@gentoo.org>
+  libimobiledevice-1.1.4-r2.ebuild:
+  Use prune_libtool_files from eutils.eclass
 
 *libimobiledevice-1.1.4-r2 (05 Aug 2012)
 



1.2                  app-pda/libimobiledevice/libimobiledevice-1.1.4-r2.ebuild

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

Index: libimobiledevice-1.1.4-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.4-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libimobiledevice-1.1.4-r2.ebuild	5 Aug 2012 13:03:59 -0000	1.1
+++ libimobiledevice-1.1.4-r2.ebuild	5 Aug 2012 14:49:41 -0000	1.2
@@ -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.4-r2.ebuild,v 1.1 2012/08/05 13:03:59 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.4-r2.ebuild,v 1.2 2012/08/05 14:49:41 ssuominen Exp $
 
 EAPI=4
 PYTHON_DEPEND="python? 2:2.7"
@@ -59,5 +59,5 @@
 	default
 	dohtml docs/html/*
 
-	find "${ED}" -name '*.la' -exec rm -f {} +
+	prune_libtool_files --all
 }





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

* [gentoo-commits] gentoo-x86 commit in app-pda/libimobiledevice: ChangeLog libimobiledevice-1.1.4-r2.ebuild
@ 2012-08-11 18:03 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-08-11 18:03 UTC (permalink / raw
  To: gentoo-commits

ago         12/08/11 18:03:36

  Modified:             ChangeLog libimobiledevice-1.1.4-r2.ebuild
  Log:
  Stable for amd64, wrt bug #423155
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.35                 app-pda/libimobiledevice/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	5 Aug 2012 15:51:21 -0000	1.34
+++ ChangeLog	11 Aug 2012 18:03:36 -0000	1.35
@@ -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.34 2012/08/05 15:51:21 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.35 2012/08/11 18:03:36 ago Exp $
+
+  11 Aug 2012; Agostino Sarubbo <ago@gentoo.org>
+  libimobiledevice-1.1.4-r2.ebuild:
+  Stable for amd64, wrt bug #423155
 
   05 Aug 2012; Samuli Suominen <ssuominen@gentoo.org>
   -libimobiledevice-1.1.4-r1.ebuild:



1.3                  app-pda/libimobiledevice/libimobiledevice-1.1.4-r2.ebuild

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

Index: libimobiledevice-1.1.4-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.4-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libimobiledevice-1.1.4-r2.ebuild	5 Aug 2012 14:49:41 -0000	1.2
+++ libimobiledevice-1.1.4-r2.ebuild	11 Aug 2012 18:03:36 -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.4-r2.ebuild,v 1.2 2012/08/05 14:49:41 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.4-r2.ebuild,v 1.3 2012/08/11 18:03:36 ago Exp $
 
 EAPI=4
 PYTHON_DEPEND="python? 2:2.7"
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 ~x86"
 IUSE="gnutls python"
 
 RDEPEND=">=app-pda/libplist-1.8-r1[python?]





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

* [gentoo-commits] gentoo-x86 commit in app-pda/libimobiledevice: ChangeLog libimobiledevice-1.1.4-r2.ebuild
@ 2012-08-16 22:00 Johannes Huber (johu)
  0 siblings, 0 replies; 4+ messages in thread
From: Johannes Huber (johu) @ 2012-08-16 22:00 UTC (permalink / raw
  To: gentoo-commits

johu        12/08/16 22:00:20

  Modified:             ChangeLog libimobiledevice-1.1.4-r2.ebuild
  Log:
  Stable for x86, wrt bug #423155
  
  (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)

Revision  Changes    Path
1.36                 app-pda/libimobiledevice/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	11 Aug 2012 18:03:36 -0000	1.35
+++ ChangeLog	16 Aug 2012 22:00:20 -0000	1.36
@@ -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.35 2012/08/11 18:03:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.36 2012/08/16 22:00:20 johu Exp $
+
+  16 Aug 2012; Johannes Huber <johu@gentoo.org>
+  libimobiledevice-1.1.4-r2.ebuild:
+  Stable for x86, wrt bug #423155
 
   11 Aug 2012; Agostino Sarubbo <ago@gentoo.org>
   libimobiledevice-1.1.4-r2.ebuild:



1.4                  app-pda/libimobiledevice/libimobiledevice-1.1.4-r2.ebuild

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

Index: libimobiledevice-1.1.4-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.4-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libimobiledevice-1.1.4-r2.ebuild	11 Aug 2012 18:03:36 -0000	1.3
+++ libimobiledevice-1.1.4-r2.ebuild	16 Aug 2012 22:00:20 -0000	1.4
@@ -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.4-r2.ebuild,v 1.3 2012/08/11 18:03:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.4-r2.ebuild,v 1.4 2012/08/16 22:00:20 johu Exp $
 
 EAPI=4
 PYTHON_DEPEND="python? 2:2.7"
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 x86"
 IUSE="gnutls python"
 
 RDEPEND=">=app-pda/libplist-1.8-r1[python?]





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

end of thread, other threads:[~2012-08-16 22:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-16 22:00 [gentoo-commits] gentoo-x86 commit in app-pda/libimobiledevice: ChangeLog libimobiledevice-1.1.4-r2.ebuild Johannes Huber (johu)
  -- strict thread matches above, loose matches on Subject: below --
2012-08-11 18:03 Agostino Sarubbo (ago)
2012-08-05 14:49 Samuli Suominen (ssuominen)
2012-08-05 13:03 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