From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/zeromq/
Date: Wed, 4 Jan 2017 01:23:55 +0000 (UTC) [thread overview]
Message-ID: <1483492993.08b80bd3d9ec71d00dca71d247600f0ee01db268.whissi@gentoo> (raw)
commit: 08b80bd3d9ec71d00dca71d247600f0ee01db268
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 4 01:23:13 2017 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Jan 4 01:23:13 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08b80bd3
net-libs/zeromq: Bump to v4.2.1
Package-Manager: Portage-2.3.3, Repoman-2.3.1
net-libs/zeromq/Manifest | 1 +
net-libs/zeromq/zeromq-4.2.1.ebuild | 56 +++++++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/net-libs/zeromq/Manifest b/net-libs/zeromq/Manifest
index 89e02df..0a8e92a 100644
--- a/net-libs/zeromq/Manifest
+++ b/net-libs/zeromq/Manifest
@@ -5,3 +5,4 @@ DIST zeromq-4.1.1.tar.gz 1383196 SHA256 43d61e5706b43946aad4a661400627bcde9c63cc
DIST zeromq-4.1.4.tar.gz 1400012 SHA256 e99f44fde25c2e4cb84ce440f87ca7d3fe3271c2b8cfbc67d55e4de25e6fe378 SHA512 8a8cf4f52ad78dddfff104bfba0f80bbc12566920906a0fafb9fc340aa92f5577c2923cb2e5346c69835cd2ea1609647a8893c2883cd22c1f0340a720511460c WHIRLPOOL ef7a700ab732cb319dbc3647184710bcc0f7d265b92d3e97b5e3ae393a4e055d9530de48fadf369c705e68bcfbd4c4c592db1e1f081e6fbe18eff12a9d74a83c
DIST zeromq-4.1.6.tar.gz 799771 SHA256 02ebf60a43011e770799336365bcbce2eb85569e9b5f52aa0d8cc04672438a0a SHA512 c04a6bb7a719687d8e8e5e8a103f93ab75ead3fcd3516e6089959e4f02cff7c18e9d7a8696af4245d434b45e6aa6e2ca8f73d98db058df621bca3def97bf7af1 WHIRLPOOL 5c266d2f257584a606f7ec1d4d00a5c2d7a636814f33ce2a1bfd19a4ca650c5fa86527d70948bb4e04b20bd5e068ffd29a2bf63f9979459bf825c23e55340abb
DIST zeromq-4.2.0.tar.gz 1046254 SHA256 53b83bf0ee978931f76fa9cb46ad4affea65787264a5f3d140bc743412d0c117 SHA512 3b6f0a1869fb1663ea40b3c3aa088b81399a35c051e4ade2b30bbac60bfceefe6b4403248a4635fb31d33767c1e478342f61c47b0ffdb4501419c13590ebeb96 WHIRLPOOL 432a8b04a28bd371a85c79dfd79d498808af8afe0e4d8b9bd903eef9d4f5e9c09c165484ee651b1a54e2e416bb324e39bee2db3a5880e216a7472c56c6e64190
+DIST zeromq-4.2.1.tar.gz 1243428 SHA256 27d1e82a099228ee85a7ddb2260f40830212402c605a4a10b5e5498a7e0e9d03 SHA512 6ef52edff930be34451e81bd21a7e23f08e135c8e10e006d0a6146e7fa4171e9dcf9065f77c33cb0c0db4c16cff4a50cab2a9d612e306490a02bc6a4a913ba6a WHIRLPOOL f86f2ea735f398b489fcba145dc3f98bf3b50e8cc26ccb91e0c57998c13aa030765634a82be5e24f6d63ad346fcf1214d42983788eee236f0d5409181b67f910
diff --git a/net-libs/zeromq/zeromq-4.2.1.ebuild b/net-libs/zeromq/zeromq-4.2.1.ebuild
new file mode 100644
index 00000000..1eb5be1
--- /dev/null
+++ b/net-libs/zeromq/zeromq-4.2.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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"
+IUSE="pgm +sodium static-libs test"
+
+RDEPEND="
+ sys-libs/libunwind
+ sodium? ( dev-libs/libsodium:= )
+ pgm? ( =net-libs/openpgm-5.2.122 )"
+DEPEND="${RDEPEND}
+ app-text/asciidoc
+ app-text/xmlto
+ sys-apps/util-linux
+ pgm? ( virtual/pkgconfig )"
+
+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_with sodium libsodium)
+ $(use_with pgm)
+ )
+ 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-01-04 1:23 UTC|newest]
Thread overview: 124+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-04 1:23 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-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-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=1483492993.08b80bd3d9ec71d00dca71d247600f0ee01db268.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