diff options
author | Sam James <sam@gentoo.org> | 2022-04-17 20:03:29 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-04-17 20:16:50 +0100 |
commit | aa0984068ddef65828a4b35ad49f2ab81eff4470 (patch) | |
tree | 9a2c9122b2f7b7303e55b3f8d4378b00a6edd958 /net-libs/czmq | |
parent | net-libs/canlock: drop 3.2.2 (diff) | |
download | gentoo-aa0984068ddef65828a4b35ad49f2ab81eff4470.tar.gz gentoo-aa0984068ddef65828a4b35ad49f2ab81eff4470.tar.bz2 gentoo-aa0984068ddef65828a4b35ad49f2ab81eff4470.zip |
net-libs/czmq: drop 4.2.0
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-libs/czmq')
-rw-r--r-- | net-libs/czmq/Manifest | 1 | ||||
-rw-r--r-- | net-libs/czmq/czmq-4.2.0.ebuild | 50 |
2 files changed, 0 insertions, 51 deletions
diff --git a/net-libs/czmq/Manifest b/net-libs/czmq/Manifest index 8e879cecd352..d50579096f33 100644 --- a/net-libs/czmq/Manifest +++ b/net-libs/czmq/Manifest @@ -1,2 +1 @@ -DIST czmq-4.2.0.tar.gz 1522824 BLAKE2B 2b2ec308f37a122d5478f63ed029c5ac01d8da40e676e812ec321e039839c7d364fef3eef67df928e6514f0fd2cd65ae35ba89347ead2b44c610812a012364dd SHA512 a3716efbece193196355fb7055b7e81067d29551765de2533178804ca5d85f98cd8cd01f88b4eecbea905adf3b7513e3b8a7e78e350adf1a6e69edbea5f6260c DIST czmq-4.2.1.tar.gz 1617066 BLAKE2B 5b635ccd7e85f05cd4f81f1ddaef80f7478feccfb916b1a7317f539354d0a4dabb7bf14a9dbee4dae3f6fbfcaf402c51ee9ba9810d952fc837c03c14304d4dab SHA512 776c524ffeba3dbe2534351f91623a6f9db31268aa2e794e29b7eca99c9fd0a726de0f7fba4376a5b3d7321b1033314e86644efaa5a9c7226fc1f06805f7aa9f diff --git a/net-libs/czmq/czmq-4.2.0.ebuild b/net-libs/czmq/czmq-4.2.0.ebuild deleted file mode 100644 index 678a10dbc555..000000000000 --- a/net-libs/czmq/czmq-4.2.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -DESCRIPTION="High-level C Binding for ZeroMQ" -HOMEPAGE="http://czmq.zeromq.org" -SRC_URI="https://github.com/zeromq/${PN}/releases/download/v${PV}/${P}.tar.gz" - -LICENSE="MPL-2.0" -SLOT="0/4" -KEYWORDS="amd64 arm arm64 ~hppa x86" -IUSE="curl drafts http-client http-server lz4 static-libs systemd +uuid" - -BDEPEND="app-text/asciidoc - app-text/xmlto - virtual/pkgconfig" - -RDEPEND=">=net-libs/zeromq-4:=[drafts?] - http-client? ( net-misc/curl ) - http-server? ( net-libs/libmicrohttpd:= ) - lz4? ( app-arch/lz4:= ) - systemd? ( sys-apps/systemd ) - uuid? ( sys-apps/util-linux:0= )" - -DEPEND="${RDEPEND}" - -DOCS=( AUTHORS NEWS README.md ) - -src_configure() { - local myeconfargs=( - --enable-drafts=$(usex drafts) - --with-docs=no - --with-uuid=$(usex uuid) - --with-libcurl=$(usex http-client) - --with-libmicrohttpd=$(usex http-server) - --with-libsystemd=$(usex systemd) - --with-liblz4=$(usex lz4) - ) - - econf "${myeconfargs[@]}" -} - -src_install() { - default - - if ! use static-libs ; then - find "${ED}" -type f \( -name "*.a" -o -name "*.la" \) -delete || die - fi -} |