Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libsodium/
Date: Sat, 14 Dec 2019 23:05:25
Message-Id: 1576364714.62dcc5081390eb28adf7ac622da97d5d61e20f84.pacho@gentoo
1 commit: 62dcc5081390eb28adf7ac622da97d5d61e20f84
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 14 22:35:25 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 14 23:05:14 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62dcc508
7
8 dev-libs/libsodium: Drop old
9
10 Package-Manager: Portage-2.3.80, Repoman-2.3.19
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-libs/libsodium/Manifest | 3 --
14 dev-libs/libsodium/libsodium-1.0.11-r1.ebuild | 43 -----------------------
15 dev-libs/libsodium/libsodium-1.0.15-r1.ebuild | 45 ------------------------
16 dev-libs/libsodium/libsodium-1.0.16-r2.ebuild | 50 ---------------------------
17 4 files changed, 141 deletions(-)
18
19 diff --git a/dev-libs/libsodium/Manifest b/dev-libs/libsodium/Manifest
20 index 5cb0dd246a9..9388c672020 100644
21 --- a/dev-libs/libsodium/Manifest
22 +++ b/dev-libs/libsodium/Manifest
23 @@ -1,4 +1 @@
24 -DIST libsodium-1.0.11.tar.gz 1846782 BLAKE2B aadab6c89d11740dca72d7686d06cfeca6c504fca9e78108778817da4071d9e7bb6115df42e9509cd872ae7a5489ef15c099cabaf564f28e90b7f74a63bae140 SHA512 4b1293c4d0e52264beecdd05833857bc4d77d1c2a97eea0138fe04df383b9a2dfcad4a79ccd9aed8f6c0047ba67c49292b0d2ccf987ab0b5046b46b1586ccbd7
25 -DIST libsodium-1.0.15.tar.gz 1866057 BLAKE2B 220e327f7803c6cf0b1260b313a225d7cc7a965b36920c744379c5939643e588687032478e3d7a79b4614c5fa57b0dd2afd216b2e23ca69ad16ea67764a840ca SHA512 299a208f8342793d13498e95b23f1749f5b5b13ec276db3ec401130615e837ef475b6a1283b6e87a5f8227d23e70e38ca721073dadd5dc88fe4aff342aa64adc
26 -DIST libsodium-1.0.16.tar.gz 1910835 BLAKE2B d0d83730cfdb64a928c4597a3bcf4ae179d74bb9f850364bf0670547a12842009c0ca32d36d06053906fb649497406b1d7988e167772d5f1138d23798d8775f7 SHA512 eab917d599c9c1fe971a6ecf915b9a6476ccec2d46cf23cbfbf06dd3833089b422f192de4d55f17b93362f1251ba8d5ddeb95ced1a422a3a2631b4b82553907f
27 DIST libsodium-1.0.18.tar.gz 1919817 BLAKE2B a42d898fe77f232dcbb75728e776b88f006e89f734c4d335e75e01d37b1034cc024df2e89d4350ecbe713d3e4b32c08bec537922c81cc63b0e87ee7fd89b2940 SHA512 17e8638e46d8f6f7d024fe5559eccf2b8baf23e143fadd472a7d29d228b186d86686a5e6920385fe2020729119a5f12f989c3a782afbd05a8db4819bb18666ef
28
29 diff --git a/dev-libs/libsodium/libsodium-1.0.11-r1.ebuild b/dev-libs/libsodium/libsodium-1.0.11-r1.ebuild
30 deleted file mode 100644
31 index fe9bd6598f3..00000000000
32 --- a/dev-libs/libsodium/libsodium-1.0.11-r1.ebuild
33 +++ /dev/null
34 @@ -1,43 +0,0 @@
35 -# Copyright 1999-2018 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=6
39 -
40 -inherit eutils autotools
41 -
42 -DESCRIPTION="A portable fork of NaCl, a higher-level cryptographic library"
43 -HOMEPAGE="https://github.com/jedisct1/libsodium"
44 -SRC_URI="http://download.libsodium.org/${PN}/releases/${P}.tar.gz"
45 -
46 -LICENSE="ISC"
47 -SLOT="0/18"
48 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
49 -IUSE="+asm minimal static-libs +urandom cpu_flags_x86_sse4_1 cpu_flags_x86_aes"
50 -
51 -PATCHES=( "${FILESDIR}"/${PN}-1.0.10-cpuflags.patch )
52 -
53 -src_prepare() {
54 - default
55 - eautoreconf
56 -}
57 -
58 -src_configure() {
59 - local myconf
60 -
61 - # --disable-pie needed on x86, bug #512734
62 - use x86 && myconf="${myconf} --disable-pie"
63 -
64 - econf \
65 - $(use_enable asm) \
66 - $(use_enable minimal) \
67 - $(use_enable !urandom blocking-random) \
68 - $(use_enable static-libs static) \
69 - $(use_enable cpu_flags_x86_sse4_1 sse4_1) \
70 - $(use_enable cpu_flags_x86_aes aesni) \
71 - ${myconf}
72 -}
73 -
74 -src_install() {
75 - default
76 - prune_libtool_files
77 -}
78
79 diff --git a/dev-libs/libsodium/libsodium-1.0.15-r1.ebuild b/dev-libs/libsodium/libsodium-1.0.15-r1.ebuild
80 deleted file mode 100644
81 index ae0419e4c36..00000000000
82 --- a/dev-libs/libsodium/libsodium-1.0.15-r1.ebuild
83 +++ /dev/null
84 @@ -1,45 +0,0 @@
85 -# Copyright 1999-2019 Gentoo Authors
86 -# Distributed under the terms of the GNU General Public License v2
87 -
88 -EAPI=6
89 -
90 -inherit eutils autotools
91 -
92 -DESCRIPTION="A portable fork of NaCl, a higher-level cryptographic library"
93 -HOMEPAGE="https://github.com/jedisct1/libsodium"
94 -SRC_URI="http://download.libsodium.org/${PN}/releases/${P}.tar.gz"
95 -
96 -LICENSE="ISC"
97 -SLOT="0/23"
98 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux"
99 -IUSE="+asm minimal static-libs +urandom cpu_flags_x86_sse4_1 cpu_flags_x86_aes"
100 -
101 -PATCHES=( "${FILESDIR}"/${PN}-1.0.10-cpuflags.patch )
102 -
103 -src_prepare() {
104 - default
105 - eautoreconf
106 -}
107 -
108 -src_configure() {
109 - local myconf
110 -
111 - # --disable-pie needed on x86, bug #512734
112 - use x86 && myconf="${myconf} --disable-pie"
113 - # --disable-ssp is needed on musl x86
114 - use x86 && use elibc_musl && myconf+="${myconf} --disable-ssp"
115 -
116 - econf \
117 - $(use_enable asm) \
118 - $(use_enable minimal) \
119 - $(use_enable !urandom blocking-random) \
120 - $(use_enable static-libs static) \
121 - $(use_enable cpu_flags_x86_sse4_1 sse4_1) \
122 - $(use_enable cpu_flags_x86_aes aesni) \
123 - ${myconf}
124 -}
125 -
126 -src_install() {
127 - default
128 - prune_libtool_files
129 -}
130
131 diff --git a/dev-libs/libsodium/libsodium-1.0.16-r2.ebuild b/dev-libs/libsodium/libsodium-1.0.16-r2.ebuild
132 deleted file mode 100644
133 index 4bec9558e24..00000000000
134 --- a/dev-libs/libsodium/libsodium-1.0.16-r2.ebuild
135 +++ /dev/null
136 @@ -1,50 +0,0 @@
137 -# Copyright 1999-2019 Gentoo Authors
138 -# Distributed under the terms of the GNU General Public License v2
139 -
140 -EAPI=6
141 -
142 -inherit autotools multilib-minimal
143 -
144 -DESCRIPTION="A portable fork of NaCl, a higher-level cryptographic library"
145 -HOMEPAGE="https://github.com/jedisct1/libsodium"
146 -SRC_URI="http://download.libsodium.org/${PN}/releases/${P}.tar.gz"
147 -
148 -LICENSE="ISC"
149 -SLOT="0/23"
150 -KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
151 -IUSE="+asm minimal static-libs +urandom cpu_flags_x86_sse4_1 cpu_flags_x86_aes"
152 -
153 -PATCHES=( "${FILESDIR}"/${PN}-1.0.10-cpuflags.patch )
154 -
155 -src_prepare() {
156 - default
157 - eautoreconf
158 -}
159 -
160 -multilib_src_configure() {
161 - local ECONF_SOURCE="${S}"
162 - local myconf
163 -
164 - # --disable-pie is needed on x86, see bug #512734
165 - if [[ "${MULTILIB_ABI_FLAG}" == "abi_x86_32" ]]; then
166 - myconf="${myconf} --disable-pie"
167 - # --disable-ssp is needed on musl x86
168 - if use elibc_musl; then
169 - myconf+="${myconf} --disable-ssp"
170 - fi
171 - fi
172 -
173 - econf \
174 - $(use_enable asm) \
175 - $(use_enable minimal) \
176 - $(use_enable !urandom blocking-random) \
177 - $(use_enable static-libs static) \
178 - $(use_enable cpu_flags_x86_sse4_1 sse4_1) \
179 - $(use_enable cpu_flags_x86_aes aesni) \
180 - ${myconf}
181 -}
182 -
183 -multilib_src_install_all() {
184 - einstalldocs
185 - find "${D}" -name "*.la" -delete || die
186 -}