From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/zeromq/
Date: Thu, 15 Aug 2019 18:53:17 +0000 (UTC) [thread overview]
Message-ID: <1565895175.db77a1dc3ae7e03aaa2b8035b6a410e63380bb72.whissi@gentoo> (raw)
commit: db77a1dc3ae7e03aaa2b8035b6a410e63380bb72
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 15 18:52:43 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Aug 15 18:52:55 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db77a1dc
net-libs/zeromq: security cleanup (bug #689426)
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
net-libs/zeromq/Manifest | 1 -
net-libs/zeromq/zeromq-4.3.1.ebuild | 62 -------------------------------------
2 files changed, 63 deletions(-)
diff --git a/net-libs/zeromq/Manifest b/net-libs/zeromq/Manifest
index 9bf69324706..822566c7851 100644
--- a/net-libs/zeromq/Manifest
+++ b/net-libs/zeromq/Manifest
@@ -1,4 +1,3 @@
DIST zeromq-2.2.0.tar.gz 1899104 BLAKE2B 1c02629e33151db11c529d538ce519dae7f3426ee13f8a2b840960779cd7514f7cc3257983704f2c392a00ad62f4a955bc33fcbdadb8bada3858753a1790ab41 SHA512 fb3cf421b2dc48c31956b3e3ee4ab6ebc743deec3bf626c2238a1996c8c51be87260bd6aa662793a1f0c34dcda9b3146763777bb162dfad6fec4ca7acc403b2e
DIST zeromq-3.2.5.tar.gz 2082960 BLAKE2B 88fe3b3206f0e59acb3cf370964c9e40df2dceb5e40aef85ae8cd8fedef4c655fd2698a7f81431e34550b5156814a75c0b1a738393e7c44acbfefe96acc4c4bc SHA512 3682204e5a47824d149968e62fbf9768134370e4f7debbbf8f2bfa24bdd0a781e50c4a9b4231af8a0c4bab61839169100525a91472448ef180a9672342e10a3f
-DIST zeromq-4.3.1.tar.gz 1490122 BLAKE2B 95d0a1359e85a3868ae0b1cd4f711d9715ddc07d21fbb7799c6beaa269aa77fb68e087898033f8a515be974a799c1ee2f2afba1f50b1bc806255750b95990367 SHA512 b80388a3703993425cdd73054139a8e2895aedb9992ea68d6eadb4ea39b9af576ea14f306dfb432e4c24535feb6b293f82fac5679b655d258f0f921f2b71e772
DIST zeromq-4.3.2.tar.gz 1697442 BLAKE2B 70a1f6da357987c32483050fcf86cb81a1fb0b65a527f6900f54eea8958c6aa6024af04067114663824d42305f507cba67e03c7aaab7e23e4f6332d4368613eb SHA512 b6251641e884181db9e6b0b705cced7ea4038d404bdae812ff47bdd0eed12510b6af6846b85cb96898e253ccbac71eca7fe588673300ddb9c3109c973250c8e4
diff --git a/net-libs/zeromq/zeromq-4.3.1.ebuild b/net-libs/zeromq/zeromq-4.3.1.ebuild
deleted file mode 100644
index 48d315ec333..00000000000
--- a/net-libs/zeromq/zeromq-4.3.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit autotools
-
-DESCRIPTION="A brokerless kernel"
-HOMEPAGE="http://www.zeromq.org/"
-SRC_URI="https://github.com/zeromq/libzmq/releases/download/v${PV}/${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0/5"
-KEYWORDS="amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
-IUSE="doc drafts pgm +sodium static-libs test unwind elibc_Darwin"
-
-RDEPEND="
- !elibc_Darwin? ( unwind? ( sys-libs/libunwind ) )
- sodium? ( dev-libs/libsodium:= )
- pgm? ( =net-libs/openpgm-5.2.122 )"
-DEPEND="${RDEPEND}
- !elibc_Darwin? ( sys-apps/util-linux )
- doc? (
- app-text/asciidoc
- app-text/xmlto
- )
- pgm? ( virtual/pkgconfig )"
-
-PATCHES=( "${FILESDIR}"/${P}-fix-test_security_zap.patch )
-
-src_prepare() {
- sed \
- -e '/libzmq_werror=/s:yes:no:g' \
- -i configure.ac || die
- default
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --enable-shared
- $(use_enable drafts)
- $(use_enable static-libs static)
- $(use_enable unwind libunwind)
- $(use_with sodium libsodium)
- $(use_with pgm)
- $(use_with doc docs)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_test() {
- # Restricting to one job because multiple tests are using the same port.
- # Upstream knows the problem and says it doesn't support parallel test
- # execution, see ${S}/INSTALL.
- emake -j1 check
-}
-
-src_install() {
- default
- find "${ED%/}"/usr/lib* -name '*.la' -delete || die
-}
next reply other threads:[~2019-08-15 18:53 UTC|newest]
Thread overview: 124+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-15 18:53 Thomas Deutschmann [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-09-23 9:59 [gentoo-commits] repo/gentoo:master commit in: net-libs/zeromq/ Petr Vaněk
2024-04-08 7:04 Sam James
2023-12-19 17:01 Arthur Zamarin
2023-12-18 7:40 Joonas Niilola
2023-12-18 7:40 Joonas Niilola
2023-12-18 1:09 Sam James
2023-12-18 0:11 Sam James
2023-12-18 0:11 Sam James
2023-12-18 0:11 Sam James
2023-12-18 0:11 Sam James
2023-12-17 19:38 Arthur Zamarin
2023-11-10 5:47 Viorel Munteanu
2023-11-07 2:22 Michael Orlitzky
2023-04-12 3:28 Sam James
2023-04-12 1:50 Sam James
2023-04-11 21:38 Jakov Smolić
2023-04-11 20:11 Arthur Zamarin
2023-04-11 19:04 Arthur Zamarin
2023-04-11 18:43 Arthur Zamarin
2023-04-11 18:40 Arthur Zamarin
2023-04-11 18:36 Arthur Zamarin
2022-11-16 5:57 WANG Xuerui
2022-01-29 14:29 James Le Cuirot
2022-01-03 23:26 David Seifert
2021-09-06 0:18 Sam James
2021-05-08 18:58 Sam James
2021-05-08 18:55 Sam James
2021-05-08 18:49 Sam James
2021-05-08 18:49 Sam James
2021-05-08 18:44 Sam James
2021-05-08 18:41 Sam James
2021-02-26 15:44 Thomas Deutschmann
2021-02-26 15:44 Thomas Deutschmann
2021-01-21 23:49 Thomas Deutschmann
2021-01-21 23:49 Thomas Deutschmann
2020-09-19 19:51 Sam James
2020-09-12 17:47 Sam James
2020-09-10 21:08 Sergei Trofimovich
2020-09-09 21:59 Sergei Trofimovich
2020-09-09 21:35 Sergei Trofimovich
2020-09-08 15:58 Sam James
2020-09-08 15:56 Thomas Deutschmann
2020-09-08 4:07 Sam James
2020-09-07 22:06 Thomas Deutschmann
2020-05-06 17:25 Michał Górny
2020-02-10 0:26 David Seifert
2020-02-08 16:25 David Seifert
2019-07-28 20:04 Mikle Kolyada
2019-07-21 22:51 Aaron Bauman
2019-07-18 10:48 Agostino Sarubbo
2019-07-18 9:57 Agostino Sarubbo
2019-07-15 19:10 Sergei Trofimovich
2019-07-14 9:11 Sergei Trofimovich
2019-07-09 23:11 Sergei Trofimovich
2019-07-09 0:33 Thomas Deutschmann
2019-07-09 0:33 Thomas Deutschmann
2019-04-05 17:22 Thomas Deutschmann
2019-01-23 13:41 Mikle Kolyada
2019-01-17 22:41 Sergei Trofimovich
2019-01-17 21:12 Mikle Kolyada
2019-01-17 8:29 Sergei Trofimovich
2019-01-17 8:08 Sergei Trofimovich
2019-01-17 7:23 Sergei Trofimovich
2019-01-16 23:35 Sergei Trofimovich
2019-01-16 0:42 Mart Raudsepp
2019-01-15 22:10 Thomas Deutschmann
2019-01-14 2:19 Thomas Deutschmann
2019-01-04 10:29 Mikle Kolyada
2018-12-29 13:21 Sergei Trofimovich
2018-12-28 19:40 Sergei Trofimovich
2018-12-25 19:49 Sergei Trofimovich
2018-12-20 1:30 Thomas Deutschmann
2018-12-03 0:08 Thomas Deutschmann
2018-08-29 21:51 Sergei Trofimovich
2018-06-19 19:13 Sergei Trofimovich
2018-05-28 14:49 Thomas Deutschmann
2018-05-19 18:15 Sergei Trofimovich
2018-04-20 19:01 Sergei Trofimovich
2018-04-17 19:11 Sergei Trofimovich
2018-04-16 12:46 Thomas Deutschmann
2018-03-28 20:53 Mart Raudsepp
2018-01-05 22:07 David Seifert
2017-12-30 19:30 Thomas Deutschmann
2017-12-03 21:11 Sergei Trofimovich
2017-10-29 11:20 Sergei Trofimovich
2017-10-25 7:06 Sergei Trofimovich
2017-10-17 19:05 Markus Meier
2017-10-03 0:15 Thomas Deutschmann
2017-10-02 13:52 Manuel Rüger
2017-09-25 18:46 Sergei Trofimovich
2017-09-24 20:22 Thomas Deutschmann
2017-06-20 11:29 Fabian Groffen
2017-06-20 11:29 Fabian Groffen
2017-04-07 10:45 Jeroen Roovers
2017-03-01 10:08 Michael Weber
2017-02-27 8:24 Agostino Sarubbo
2017-02-26 14:11 Thomas Deutschmann
2017-02-26 14:11 Thomas Deutschmann
2017-02-12 17:01 Agostino Sarubbo
2017-02-05 16:46 Markus Meier
2017-02-03 22:58 Jeroen Roovers
2017-01-04 1:23 Thomas Deutschmann
2017-01-01 21:49 Agostino Sarubbo
2016-12-25 16:40 Justin Lecher
2016-12-10 1:28 Thomas Deutschmann
2016-12-10 1:28 Thomas Deutschmann
2016-11-04 2:41 Thomas Deutschmann
2016-11-04 2:41 Thomas Deutschmann
2016-10-02 10:58 Jeroen Roovers
2016-08-23 3:04 Mike Gilbert
2016-08-22 23:38 Thomas Deutschmann
2016-08-22 23:38 Thomas Deutschmann
2016-08-22 18:05 Manuel Rüger
2016-08-22 18:05 Manuel Rüger
2016-05-29 20:21 Alexander Vershilov
2016-04-18 9:43 Patrice Clement
2016-04-06 19:57 Markus Meier
2016-04-02 13:44 Agostino Sarubbo
2016-02-28 6:51 Matt Thode
2016-02-18 21:52 Manuel Rüger
2015-12-22 8:45 Jason Zaman
2015-11-23 12:22 Jason Zaman
2015-08-26 4:26 Jeroen Roovers
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=1565895175.db77a1dc3ae7e03aaa2b8035b6a410e63380bb72.whissi@gentoo \
--to=whissi@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