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-0.5.0.ebuild ChangeLog
Date: Sun, 25 May 2014 16:27:27
Message-Id: 20140525162724.959192004E@flycatcher.gentoo.org
1 mrueg 14/05/25 16:27:24
2
3 Modified: ChangeLog
4 Added: libsodium-0.5.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.9 dev-libs/libsodium/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsodium/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsodium/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsodium/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libsodium/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 16 Mar 2014 02:25:23 -0000 1.8
24 +++ ChangeLog 25 May 2014 16:27:24 -0000 1.9
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.8 2014/03/16 02:25:23 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsodium/ChangeLog,v 1.9 2014/05/25 16:27:24 mrueg Exp $
30 +
31 +*libsodium-0.5.0 (25 May 2014)
32 +
33 + 25 May 2014; Manuel RĂ¼ger <mrueg@g.o> +libsodium-0.5.0.ebuild:
34 + Version bump.
35
36 16 Mar 2014; Mike Frysinger <vapier@g.o> libsodium-0.4.5.ebuild:
37 Add ia64 love.
38
39
40
41 1.1 dev-libs/libsodium/libsodium-0.5.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsodium/libsodium-0.5.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsodium/libsodium-0.5.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libsodium-0.5.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-0.5.0.ebuild,v 1.1 2014/05/25 16:27:24 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"
62 KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~x86 ~amd64-linux ~x86-linux"
63 IUSE="+asm static-libs +urandom"
64
65 src_configure() {
66 econf \
67 $(use_enable asm) \
68 $(use_enable !urandom blocking-random) \
69 $(use_enable static-libs static)
70 }
71
72 src_install() {
73 default
74 prune_libtool_files
75 }