Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libsodium: libsodium-1.0.0.ebuild ChangeLog
Date: Wed, 24 Sep 2014 23:51:15
Message-Id: 20140924235111.9EDBC62B3@oystercatcher.gentoo.org
1 mrueg 14/09/24 23:51:11
2
3 Modified: ChangeLog
4 Added: libsodium-1.0.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.13/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.18 dev-libs/libsodium/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsodium/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsodium/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsodium/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libsodium/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 23 Sep 2014 23:47:23 -0000 1.17
24 +++ ChangeLog 24 Sep 2014 23:51:11 -0000 1.18
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libsodium
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsodium/ChangeLog,v 1.17 2014/09/23 23:47:23 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsodium/ChangeLog,v 1.18 2014/09/24 23:51:11 mrueg Exp $
30 +
31 +*libsodium-1.0.0 (24 Sep 2014)
32 +
33 + 24 Sep 2014; Manuel RĂ¼ger <mrueg@g.o> +libsodium-1.0.0.ebuild:
34 + Version bump.
35
36 *libsodium-0.7.1 (23 Sep 2014)
37
38
39
40
41 1.1 dev-libs/libsodium/libsodium-1.0.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsodium/libsodium-1.0.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsodium/libsodium-1.0.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libsodium-1.0.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libsodium/libsodium-1.0.0.ebuild,v 1.1 2014/09/24 23:51:11 mrueg Exp $
51
52 EAPI=5
53
54 inherit eutils
55
56 DESCRIPTION="A portable fork of NaCl, a higher-level cryptographic library"
57 HOMEPAGE="https://github.com/jedisct1/libsodium"
58 SRC_URI="http://download.libsodium.org/${PN}/releases/${P}.tar.gz"
59
60 LICENSE="ISC"
61 SLOT="0/13"
62 KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~x86 ~amd64-linux ~x86-linux"
63 IUSE="+asm minimal static-libs +urandom"
64
65 src_configure() {
66 econf \
67 $(use_enable asm) \
68 $(use_enable minimal) \
69 $(use_enable !urandom blocking-random) \
70 $(use_enable static-libs static)
71 }
72
73 src_install() {
74 default
75 prune_libtool_files
76 }