From: "Anthony G. Basile" <blueness@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libressl/
Date: Mon, 9 May 2016 06:51:18 +0000 (UTC) [thread overview]
Message-ID: <1462776728.011ba8f6e1d6118d585cd9e9e493086645c97db2.blueness@gentoo> (raw)
commit: 011ba8f6e1d6118d585cd9e9e493086645c97db2
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon May 9 06:51:49 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon May 9 06:52:08 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=011ba8f6
dev-libs/libressl: remove older versions
Package-Manager: portage-2.2.26
dev-libs/libressl/Manifest | 2 --
dev-libs/libressl/libressl-2.2.6.ebuild | 47 ------------------------------
dev-libs/libressl/libressl-2.3.3.ebuild | 51 ---------------------------------
3 files changed, 100 deletions(-)
diff --git a/dev-libs/libressl/Manifest b/dev-libs/libressl/Manifest
index 84c965a..8764dc8 100644
--- a/dev-libs/libressl/Manifest
+++ b/dev-libs/libressl/Manifest
@@ -1,4 +1,2 @@
-DIST libressl-2.2.6.tar.gz 2965531 SHA256 1ee19994cffd047d40f63ba149115dba18a681b0cc923beec301bf424b58d64f SHA512 41e29431ad9e8b18e2dbc30fe9df1d7be3ca372d5d7757b5b01f8904515bafd5333446957fbc9874f64f384dae56cf6bf29d6808a7c0df1836b55ea64804a4bf WHIRLPOOL 49b6efa211ea4789e51388d3ebfec941dfedad427b806b33d439a7639e09d16e5c9004edc4a4c8e3de63040ebc2fe0a3a3819c68ed674e3bb36bb52b49e75ce5
DIST libressl-2.2.7.tar.gz 2958862 SHA256 7e2c68b383bba8efb7dce5ea1eccfda77048547d1d2a7355c072efd7ccd893cd SHA512 562394e84903c5b121da21cb3f45744df80b06d8717efc5567a6f663d1dcb8dd2bf505db7ab78ea83c9223a62c1bc541bf6c905720d73410bff352a63f5f8fc1 WHIRLPOOL 5c4eadba9e1e46573ac07edeaf01a7c203877cbfedce7abdf618dfa4fe034420d0a1bac09c08190cf24a8c591ec6f1f7452ad5c0f7b5164b42500c0766a3dca4
-DIST libressl-2.3.3.tar.gz 3019069 SHA256 76733166187cc8587e0ebe1e83965ef257262a1a676a36806edd3b6d51b50aa9 SHA512 5b8003af0f6fd049de7d36cdda5b3e0b7e58aeef92455806f3927094fd63edb6281e827b8d237907b455d754a2be913682b1dd954a71873941117d082842f59e WHIRLPOOL b99f3585fef4e9ceaf0ce9f0cf2877e48c3be5f6b649a07c2ae235bc6b1c0835c9c9d7528135dd17cb3bfe9b353618de4d40915e573df6e93b79a2b612bc67c7
DIST libressl-2.3.4.tar.gz 3013286 SHA256 7a1135b2620f78928e89538c211a4df1d9415994001d1e7c9178c6b6d72de6a9 SHA512 468531303df47d52f06402db527737361e45424562e614e7575ba287ebfff9804f73c080d2f7530e26e483cd4245c131c2dd63a9509ec6646585c49f84411739 WHIRLPOOL c5afa71f9b9106cdc46a256e9e46c9bbd81e87427d570e05866074290406743303047a9e61f16b7cfa576e4e6ee1f369062c05767856f08c166b50db9cec6537
diff --git a/dev-libs/libressl/libressl-2.2.6.ebuild b/dev-libs/libressl/libressl-2.2.6.ebuild
deleted file mode 100644
index 1dcdc69..0000000
--- a/dev-libs/libressl/libressl-2.2.6.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils multilib-minimal
-
-DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
-HOMEPAGE="http://www.libressl.org/"
-SRC_URI="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz"
-
-LICENSE="ISC openssl"
-SLOT="0/35" # reflects ABI of libcrypto.so and libssl.so
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86"
-IUSE="+asm static-libs"
-
-RDEPEND="!dev-libs/openssl:0"
-DEPEND="${RDEPEND}"
-PDEPEND="app-misc/ca-certificates"
-
-src_prepare() {
- touch crypto/Makefile.in
- sed -i \
- -e '/^[ \t]*CFLAGS=/s#-g ##' \
- -e '/^[ \t]*CFLAGS=/s#-g"#"#' \
- -e '/^[ \t]*CFLAGS=/s#-O2 ##' \
- -e '/^[ \t]*CFLAGS=/s#-O2"#"#' \
- -e '/^[ \t]*USER_CFLAGS=/s#-O2 ##' \
- -e '/^[ \t]*USER_CFLAGS=/s#-O2"#"#' \
- configure || die "fixing CFLAGS failed"
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- $(use_enable asm) \
- $(use_enable static-libs static)
-}
-
-multilib_src_test() {
- emake check
-}
-
-multilib_src_install_all() {
- einstalldocs
- prune_libtool_files
-}
diff --git a/dev-libs/libressl/libressl-2.3.3.ebuild b/dev-libs/libressl/libressl-2.3.3.ebuild
deleted file mode 100644
index f65fed5..0000000
--- a/dev-libs/libressl/libressl-2.3.3.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils multilib-minimal
-
-DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
-HOMEPAGE="http://www.libressl.org/"
-SRC_URI="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz"
-
-LICENSE="ISC openssl"
-# Reflects ABI of libcrypto.so and libssl.so. Since these can differ,
-# we'll try to use the max of either. However, if either change between
-# versions, we have to change the subslot to trigger rebuild of consumers.
-SLOT="0/38"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86"
-IUSE="+asm static-libs"
-
-RDEPEND="!dev-libs/openssl:0"
-DEPEND="${RDEPEND}"
-PDEPEND="app-misc/ca-certificates"
-
-src_prepare() {
- touch crypto/Makefile.in
-
- sed -i \
- -e '/^[ \t]*CFLAGS=/s#-g ##' \
- -e '/^[ \t]*CFLAGS=/s#-g"#"#' \
- -e '/^[ \t]*CFLAGS=/s#-O2 ##' \
- -e '/^[ \t]*CFLAGS=/s#-O2"#"#' \
- -e '/^[ \t]*USER_CFLAGS=/s#-O2 ##' \
- -e '/^[ \t]*USER_CFLAGS=/s#-O2"#"#' \
- configure || die "fixing CFLAGS failed"
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- $(use_enable asm) \
- $(use_enable static-libs static)
-}
-
-multilib_src_test() {
- emake check
-}
-
-multilib_src_install_all() {
- einstalldocs
- prune_libtool_files
-}
next reply other threads:[~2016-05-09 6:51 UTC|newest]
Thread overview: 168+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-09 6:51 Anthony G. Basile [this message]
-- strict thread matches above, loose matches on Subject: below --
2020-12-31 11:22 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libressl/ Sergei Trofimovich
2020-12-31 4:24 Sam James
2020-12-31 4:24 Sam James
2020-12-31 4:16 Sam James
2020-12-11 20:46 Sam James
2020-12-11 20:21 Sam James
2020-12-10 21:41 Thomas Deutschmann
2020-12-09 18:56 Fabian Groffen
2020-12-09 4:45 Stefan Strogin
2020-11-26 17:18 Anthony G. Basile
2020-11-26 17:17 Anthony G. Basile
2020-11-03 3:54 Sam James
2020-11-02 2:29 Jory Pratt
2020-11-02 2:29 Jory Pratt
2020-09-07 3:28 Sam James
2020-09-07 3:26 Sam James
2020-09-07 3:26 Sam James
2020-09-05 0:38 Sam James
2020-09-04 2:34 Sam James
2020-09-04 2:34 Sam James
2020-09-03 14:29 Thomas Deutschmann
2020-08-25 23:37 Anthony G. Basile
2020-08-24 23:33 Sam James
2020-08-21 14:15 Anthony G. Basile
2020-08-15 1:42 Stefan Strogin
2020-07-27 20:35 Aaron Bauman
2020-07-27 20:33 Aaron Bauman
2020-07-20 16:10 Sam James
2020-07-20 14:59 Sam James
2020-07-09 21:19 Sergei Trofimovich
2020-06-29 16:12 Mikle Kolyada
2020-06-28 20:56 Thomas Deutschmann
2020-06-21 20:31 Thomas Deutschmann
2020-06-17 15:51 Anthony G. Basile
2020-05-25 3:36 Stefan Strogin
2020-05-25 3:36 Stefan Strogin
2020-05-08 20:20 Anthony G. Basile
2020-04-11 13:30 Sergei Trofimovich
2020-03-02 11:51 Sergei Trofimovich
2020-02-11 23:34 Sergei Trofimovich
2020-02-05 23:54 Sergei Trofimovich
2020-01-27 10:26 Mikle Kolyada
2020-01-10 1:26 Thomas Deutschmann
2019-12-31 18:32 Aaron Bauman
2019-12-31 10:52 Mikle Kolyada
2019-10-02 0:09 Stefan Strogin
2019-08-06 17:47 Anthony G. Basile
2019-07-28 13:59 Mikle Kolyada
2019-07-28 13:59 Mikle Kolyada
2019-07-21 10:01 Sergei Trofimovich
2019-07-02 8:19 Sergei Trofimovich
2019-07-01 19:23 Thomas Deutschmann
2019-06-26 20:05 Sergei Trofimovich
2019-05-25 0:42 Aaron Bauman
2019-05-24 14:55 Mikle Kolyada
2019-05-21 13:02 Anthony G. Basile
2019-05-14 2:27 Aaron Bauman
2019-05-14 1:18 Aaron Bauman
2019-04-24 1:57 Aaron Bauman
2019-04-24 1:49 Aaron Bauman
2019-04-24 1:49 Aaron Bauman
2019-04-24 1:07 Aaron Bauman
2019-04-24 1:07 Aaron Bauman
2019-04-17 21:36 Aaron Bauman
2019-03-04 21:33 Fabian Groffen
2019-03-03 18:58 Aaron Bauman
2019-03-03 18:04 Aaron Bauman
2019-03-02 15:33 Mikle Kolyada
2019-03-02 15:33 Mikle Kolyada
2019-02-25 0:46 Aaron Bauman
2019-02-24 21:53 Aaron Bauman
2019-02-18 21:31 Sergei Trofimovich
2019-02-18 0:31 Thomas Deutschmann
2019-02-17 18:37 Aaron Bauman
2019-02-17 18:32 Aaron Bauman
2018-12-28 23:15 Sergei Trofimovich
2018-12-28 7:56 Mikle Kolyada
2018-12-19 23:35 Anthony G. Basile
2018-11-25 1:48 Aaron Bauman
2018-11-25 1:48 Aaron Bauman
2018-11-25 1:47 Aaron Bauman
2018-10-31 13:25 Anthony G. Basile
2018-10-10 1:11 Anthony G. Basile
2018-09-17 23:21 Matt Turner
2018-09-17 23:21 Matt Turner
2018-08-07 11:08 Anthony G. Basile
2018-07-09 23:25 Mikle Kolyada
2018-07-07 10:47 Markus Meier
2018-06-29 20:08 Anthony G. Basile
2018-06-17 23:29 Thomas Deutschmann
2018-06-17 1:13 Aaron Bauman
2018-06-16 19:26 Sergei Trofimovich
2018-06-16 1:36 Aaron Bauman
2018-06-05 7:12 Jeroen Roovers
2018-06-03 17:16 Mikle Kolyada
2018-05-25 0:11 Aaron Bauman
2018-05-19 18:15 Sergei Trofimovich
2018-05-18 23:16 Jeroen Roovers
2018-05-06 16:37 Aaron Bauman
2018-05-06 16:16 Aaron Bauman
2018-05-06 12:06 Anthony G. Basile
2018-04-30 23:50 Anthony G. Basile
2018-04-30 0:29 Aaron Bauman
2018-04-19 23:51 Aaron Bauman
2018-04-17 1:32 Aaron Bauman
2018-04-15 16:39 Mikle Kolyada
2018-04-06 13:36 Anthony G. Basile
2018-04-01 22:43 Anthony G. Basile
2018-03-30 16:18 Anthony G. Basile
2018-03-30 14:01 Anthony G. Basile
2018-03-24 11:12 Anthony G. Basile
2018-03-23 0:04 Anthony G. Basile
2018-03-22 7:12 Anthony G. Basile
2017-12-20 14:15 Anthony G. Basile
2017-12-04 22:07 Sergei Trofimovich
2017-11-13 7:54 Sergei Trofimovich
2017-11-13 0:55 Thomas Deutschmann
2017-11-12 19:39 Anthony G. Basile
2017-11-12 19:39 Anthony G. Basile
2017-11-10 23:15 Anthony G. Basile
2017-11-10 12:40 Anthony G. Basile
2017-11-07 22:52 Sergei Trofimovich
2017-11-06 21:21 Anthony G. Basile
2017-09-27 7:40 Anthony G. Basile
2017-09-19 22:19 Anthony G. Basile
2017-09-19 21:04 Sergei Trofimovich
2017-09-07 19:16 Anthony G. Basile
2017-08-26 12:32 Mikle Kolyada
2017-07-15 0:59 Anthony G. Basile
2017-06-30 10:52 Sergei Trofimovich
2017-06-18 15:24 Alexis Ballier
2017-06-05 0:19 Anthony G. Basile
2017-05-03 21:36 Anthony G. Basile
2017-05-03 21:34 Anthony G. Basile
2017-04-12 15:14 Anthony G. Basile
2017-03-28 11:19 Anthony G. Basile
2017-02-02 23:45 Anthony G. Basile
2017-02-01 18:39 Anthony G. Basile
2017-01-26 16:08 Tobias Klausmann
2016-11-25 13:34 Anthony G. Basile
2016-11-09 3:23 Anthony G. Basile
2016-09-28 0:55 Anthony G. Basile
2016-08-31 16:07 Michael Palimaka
2016-08-01 22:40 Anthony G. Basile
2016-07-05 23:35 Anthony G. Basile
2016-06-10 7:26 Anthony G. Basile
2016-06-04 13:33 Anthony G. Basile
2016-06-01 8:35 Anthony G. Basile
2016-05-04 20:30 Anthony G. Basile
2016-04-23 12:26 Michał Górny
2016-04-18 9:43 Patrice Clement
2016-04-18 4:41 Michał Górny
2016-03-23 10:06 Anthony G. Basile
2016-03-23 10:06 Anthony G. Basile
2016-01-29 8:11 Anthony G. Basile
2016-01-29 0:27 Anthony G. Basile
2016-01-29 0:27 Anthony G. Basile
2015-12-08 10:00 Anthony G. Basile
2015-12-05 12:36 Anthony G. Basile
2015-12-04 23:40 Anthony G. Basile
2015-12-04 10:21 Anthony G. Basile
2015-12-04 10:12 Anthony G. Basile
2015-10-31 7:21 Jeroen Roovers
2015-10-19 21:07 Julian Ospald
2015-10-16 13:53 Julian Ospald
2015-10-16 13:53 Julian Ospald
2015-09-20 11:32 Julian Ospald
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1462776728.011ba8f6e1d6118d585cd9e9e493086645c97db2.blueness@gentoo \
--to=blueness@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox