From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/zeromq/
Date: Sat, 30 Dec 2017 19:30:34 +0000 (UTC) [thread overview]
Message-ID: <1514662218.a62dc01ebebe7a20eb595d0ff1e54508e9bd91ac.whissi@gentoo> (raw)
commit: a62dc01ebebe7a20eb595d0ff1e54508e9bd91ac
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 30 19:30:18 2017 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Dec 30 19:30:18 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a62dc01e
net-libs/zeromq: Bump to v4.2.3
Package-Manager: Portage-2.3.19, Repoman-2.3.6
net-libs/zeromq/Manifest | 1 +
net-libs/zeromq/zeromq-4.2.3.ebuild | 61 +++++++++++++++++++++++++++++++++++++
2 files changed, 62 insertions(+)
diff --git a/net-libs/zeromq/Manifest b/net-libs/zeromq/Manifest
index 8e54f7f657b..77a2488446f 100644
--- a/net-libs/zeromq/Manifest
+++ b/net-libs/zeromq/Manifest
@@ -6,3 +6,4 @@ DIST zeromq-4.1.6.tar.gz 799771 BLAKE2B 91ecc39122199846bfe0d9ea49c2acc076d0f827
DIST zeromq-4.2.0.tar.gz 1046254 BLAKE2B d14bad19861cef7bfd58f571118e5dce89afecf1b80c05c6089f7669b702c38a93825e736e73988cae3f2ce90ab4a3fc28dc34b5ca2e6ff0a12707eb238bc05e SHA512 3b6f0a1869fb1663ea40b3c3aa088b81399a35c051e4ade2b30bbac60bfceefe6b4403248a4635fb31d33767c1e478342f61c47b0ffdb4501419c13590ebeb96
DIST zeromq-4.2.1.tar.gz 1243428 BLAKE2B 2112f127d5e9624861adad455e77c21b17db09123adbe6473e86575a63ca1c21634078cce9af13e9ea1cc24e68658ae56172d98f24478161c14c5be56a922739 SHA512 6ef52edff930be34451e81bd21a7e23f08e135c8e10e006d0a6146e7fa4171e9dcf9065f77c33cb0c0db4c16cff4a50cab2a9d612e306490a02bc6a4a913ba6a
DIST zeromq-4.2.2.tar.gz 1236437 BLAKE2B 7104f8ad28cc00f1ba6d6cb5dbb9aa466971c73a513e206eee77db293f4e4845106910d539363dc0c21de7e83885056453a530c941c38e19c5ec1fa836e1bca0 SHA512 d78813a61ce3311a1f8c230f7da0f5aedc97ef4b792afb6d398c5710da239348c0c7a67bdfeb38a7ab0282af498f1ed173649aff4add1bc35f0ef1b66f965443
+DIST zeromq-4.2.3.tar.gz 1326780 BLAKE2B f76ff6461e5a180221b1fff471e795a457fe4f26ec1ca725438aff4e240be7da80e42b2aea49845b5712e1d63590f64bc681f9a793bcf4d32fe0ee08bcab482c SHA512 8ac588a7a4db9d65586dd7b501999edac151e1d03056c1014d7ded6cd4bcf5bb4f81252b47d89d60c3ad7d527685218992bf5853b4656c0702e0f64c2d77712b
diff --git a/net-libs/zeromq/zeromq-4.2.3.ebuild b/net-libs/zeromq/zeromq-4.2.3.ebuild
new file mode 100644
index 00000000000..cdef847f86e
--- /dev/null
+++ b/net-libs/zeromq/zeromq-4.2.3.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+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 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+IUSE="doc 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=()
+
+src_prepare() {
+ sed \
+ -e '/libzmq_werror=/s:yes:no:g' \
+ -i configure.ac || die
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --enable-shared
+ $(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:[~2017-12-30 19:30 UTC|newest]
Thread overview: 124+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-30 19:30 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-08-15 18:53 Thomas Deutschmann
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-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=1514662218.a62dc01ebebe7a20eb595d0ff1e54508e9bd91ac.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