Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libgcrypt: libgcrypt-1.6.0.ebuild ChangeLog
Date: Fri, 27 Dec 2013 20:35:37
Message-Id: 20131227203532.68E862004C@flycatcher.gentoo.org
1 grobian 13/12/27 20:35:32
2
3 Modified: libgcrypt-1.6.0.ebuild ChangeLog
4 Log:
5 Fix building the asm bits on Solaris by allowing the divide operand there
6
7 (Portage version: 2.2.7-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)
8
9 Revision Changes Path
10 1.2 dev-libs/libgcrypt/libgcrypt-1.6.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.6.0.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.6.0.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.6.0.ebuild?r1=1.1&r2=1.2
15
16 Index: libgcrypt-1.6.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.6.0.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- libgcrypt-1.6.0.ebuild 16 Dec 2013 22:52:10 -0000 1.1
23 +++ libgcrypt-1.6.0.ebuild 27 Dec 2013 20:35:32 -0000 1.2
24 @@ -1,12 +1,12 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.6.0.ebuild,v 1.1 2013/12/16 22:52:10 radhermit Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.6.0.ebuild,v 1.2 2013/12/27 20:35:32 grobian Exp $
29
30 EAPI=5
31 AUTOTOOLS_AUTORECONF=1
32 WANT_AUTOMAKE=1.12
33
34 -inherit autotools-utils
35 +inherit autotools-utils flag-o-matic
36
37 DESCRIPTION="General purpose crypto library based on the code used in GnuPG"
38 HOMEPAGE="http://www.gnupg.org/"
39 @@ -29,6 +29,12 @@
40 )
41
42 src_configure() {
43 + if [[ ${CHOST} == *-solaris* ]] ; then
44 + # ASM code uses GNU ELF syntax, divide in particular, we need to
45 + # allow this via ASFLAGS, since we don't have a flag-o-matic
46 + # function for that, we'll have to abuse cflags for this
47 + append-cflags -Wa,--divide
48 + fi
49 local myeconfargs=(
50 --disable-padlock-support # bug 201917
51 --disable-dependency-tracking
52
53
54
55 1.195 dev-libs/libgcrypt/ChangeLog
56
57 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgcrypt/ChangeLog?rev=1.195&view=markup
58 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgcrypt/ChangeLog?rev=1.195&content-type=text/plain
59 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgcrypt/ChangeLog?r1=1.194&r2=1.195
60
61 Index: ChangeLog
62 ===================================================================
63 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/ChangeLog,v
64 retrieving revision 1.194
65 retrieving revision 1.195
66 diff -u -r1.194 -r1.195
67 --- ChangeLog 16 Dec 2013 22:52:10 -0000 1.194
68 +++ ChangeLog 27 Dec 2013 20:35:32 -0000 1.195
69 @@ -1,6 +1,9 @@
70 # ChangeLog for dev-libs/libgcrypt
71 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
72 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/ChangeLog,v 1.194 2013/12/16 22:52:10 radhermit Exp $
73 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/ChangeLog,v 1.195 2013/12/27 20:35:32 grobian Exp $
74 +
75 + 27 Dec 2013; Fabian Groffen <grobian@g.o> libgcrypt-1.6.0.ebuild:
76 + Fix building the asm bits on Solaris by allowing the divide operand there
77
78 *libgcrypt-1.6.0 (16 Dec 2013)