Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libffi: libffi-3.2.1.ebuild ChangeLog
Date: Wed, 31 Dec 2014 03:12:20
Message-Id: 20141231031214.8ADFCE89E@oystercatcher.gentoo.org
1 vapier 14/12/31 03:12:14
2
3 Modified: libffi-3.2.1.ebuild ChangeLog
4 Log:
5 Workaround O_TMPFILE bugs in the system #529044 by Simon MARCHUK.
6
7 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
8
9 Revision Changes Path
10 1.2 dev-libs/libffi/libffi-3.2.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/libffi-3.2.1.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/libffi-3.2.1.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/libffi-3.2.1.ebuild?r1=1.1&r2=1.2
15
16 Index: libffi-3.2.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libffi/libffi-3.2.1.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- libffi-3.2.1.ebuild 5 Dec 2014 06:45:22 -0000 1.1
23 +++ libffi-3.2.1.ebuild 31 Dec 2014 03:12:14 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/libffi-3.2.1.ebuild,v 1.1 2014/12/05 06:45:22 williamh Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/libffi-3.2.1.ebuild,v 1.2 2014/12/31 03:12:14 vapier Exp $
29
30 EAPI=5
31 inherit eutils libtool multilib multilib-minimal toolchain-funcs
32 @@ -11,8 +11,7 @@
33
34 LICENSE="MIT"
35 SLOT="0"
36 -# A number of people report python ctypes errors #529044
37 -#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
38 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
39 IUSE="debug pax_kernel static-libs test"
40
41 RDEPEND="abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r1
42 @@ -39,7 +38,7 @@
43
44 src_prepare() {
45 sed -i -e 's:@toolexeclibdir@:$(libdir):g' Makefile.in || die #462814
46 -
47 + epatch "${FILESDIR}"/${PN}-3.2.1-o-tmpfile-eacces.patch #529044
48 epatch_user
49 elibtoolize
50 }
51
52
53
54 1.197 dev-libs/libffi/ChangeLog
55
56 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/ChangeLog?rev=1.197&view=markup
57 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/ChangeLog?rev=1.197&content-type=text/plain
58 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libffi/ChangeLog?r1=1.196&r2=1.197
59
60 Index: ChangeLog
61 ===================================================================
62 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v
63 retrieving revision 1.196
64 retrieving revision 1.197
65 diff -u -r1.196 -r1.197
66 --- ChangeLog 5 Dec 2014 06:45:22 -0000 1.196
67 +++ ChangeLog 31 Dec 2014 03:12:14 -0000 1.197
68 @@ -1,6 +1,10 @@
69 # ChangeLog for dev-libs/libffi
70 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
71 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v 1.196 2014/12/05 06:45:22 williamh Exp $
72 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libffi/ChangeLog,v 1.197 2014/12/31 03:12:14 vapier Exp $
73 +
74 + 31 Dec 2014; Mike Frysinger <vapier@g.o>
75 + +files/libffi-3.2.1-o-tmpfile-eacces.patch, libffi-3.2.1.ebuild:
76 + Workaround O_TMPFILE bugs in the system #529044 by Simon MARCHUK.
77
78 *libffi-3.2.1 (05 Dec 2014)