diff options
author | Zac Medico <zmedico@gentoo.org> | 2023-05-30 22:24:32 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2023-05-30 22:25:18 -0700 |
commit | d91dce9aba1079ce7ac7590b3f5f2bdcac0c3bdd (patch) | |
tree | 90a36946d0e6ddf6b13e3a9d9b47932b42bd11eb /www-servers | |
parent | net-libs/nodejs: Stabilize 20.2.0 arm64, #907052 (diff) | |
download | gentoo-d91dce9aba1079ce7ac7590b3f5f2bdcac0c3bdd.tar.gz gentoo-d91dce9aba1079ce7ac7590b3f5f2bdcac0c3bdd.tar.bz2 gentoo-d91dce9aba1079ce7ac7590b3f5f2bdcac0c3bdd.zip |
www-servers/civetweb: drop 1.12
Bug: https://bugs.gentoo.org/907314
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/civetweb/Manifest | 1 | ||||
-rw-r--r-- | www-servers/civetweb/civetweb-1.12.ebuild | 33 |
2 files changed, 0 insertions, 34 deletions
diff --git a/www-servers/civetweb/Manifest b/www-servers/civetweb/Manifest index bd365934dc8c..cd6fef3fc1f6 100644 --- a/www-servers/civetweb/Manifest +++ b/www-servers/civetweb/Manifest @@ -1,2 +1 @@ -DIST civetweb-1.12.tar.gz 11463079 BLAKE2B 1182f798a2f9cdb34754b3c0edf80160efda31f72d800b26b27ec36ff4a5623745495a52632a128aefda67c6b902250c4e01ec7debd73d4a95abfc42a1b17ea6 SHA512 d6f8d29011bc1accd5384856bef16c0f20305f622a8f8c127cdf3ae5c567db3aba0d76293cc8c77f90f4989c44b2896a45e533d2f2408cc49488d1d234d308f5 DIST civetweb-1.16.tar.gz 12094780 BLAKE2B 7c2e094f6e4730459082c8557925f51775beb0b07fa01291f7a46bf3ea69d7f879566e71a8c6d5b9ad1b3b28d910d99e587eccc703e8b2d3d5797f589c24074a SHA512 a0b943dfc76d7fd47f5a7d2c834fd38ddd4cf01a11730cf2f7cfaf32fea9698f59672f3a0f86ac80e0abc315d94d2367a500d37013f305c87d45e84cf39ca816 diff --git a/www-servers/civetweb/civetweb-1.12.ebuild b/www-servers/civetweb/civetweb-1.12.ebuild deleted file mode 100644 index 6113b682b26d..000000000000 --- a/www-servers/civetweb/civetweb-1.12.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -HOMEPAGE="https://github.com/civetweb/civetweb/" -DESCRIPTION="Embedded C/C++ web server" -SRC_URI="https://github.com/civetweb/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~riscv x86" -IUSE="cxx +server ssl" - -RDEPEND="ssl? ( dev-libs/openssl:0= )" -DEPEND="${RDEPEND}" - -src_configure() { - local mycmakeargs=( - -DBUILD_TESTING=OFF - -DBUILD_SHARED_LIBS=ON - -DCIVETWEB_BUILD_TESTING=OFF - -DCIVETWEB_ENABLE_LUA=OFF - -DCIVETWEB_ENABLE_DUKTAPE=OFF - -DCIVETWEB_ENABLE_CXX="$(usex cxx)" - -DCIVETWEB_ENABLE_SERVER_EXECUTABLE="$(usex server)" - -DCIVETWEB_ENABLE_SSL="$(usex ssl)" - ) - - cmake_src_configure -} |