Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/civetweb/
Date: Fri, 08 Oct 2021 08:33:31
Message-Id: 1633681997.65bbd220157588b000f2ae3e74ebb952401d66a6.asturm@gentoo
1 commit: 65bbd220157588b000f2ae3e74ebb952401d66a6
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 9 23:28:57 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 8 08:33:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65bbd220
7
8 www-servers/civetweb: Drop 1.11, EAPI6--, overshadowed by stable 1.12
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 www-servers/civetweb/Manifest | 1 -
14 www-servers/civetweb/civetweb-1.11.ebuild | 39 -------------------------------
15 2 files changed, 40 deletions(-)
16
17 diff --git a/www-servers/civetweb/Manifest b/www-servers/civetweb/Manifest
18 index b10a725710a..da62a017d55 100644
19 --- a/www-servers/civetweb/Manifest
20 +++ b/www-servers/civetweb/Manifest
21 @@ -1,2 +1 @@
22 -DIST civetweb-1.11.tar.gz 11421650 BLAKE2B 487044a313c2ff005a8dfa247b3d8a3c3b52ef048cbc3050ec8c0402ccef4e12e28de53fed5a3a91df1e7f59ba6c03bf545413ffdd0ce3e4d604148c16c661e9 SHA512 e1520fd2f4a54b6ab4838f4da2ce3f0956e9884059467d196078935a3fce61dad619f3bb1bc2b4c6a757e1a8abfed0e83cba38957c7c52fff235676e9dd1d428
23 DIST civetweb-1.12.tar.gz 11463079 BLAKE2B 1182f798a2f9cdb34754b3c0edf80160efda31f72d800b26b27ec36ff4a5623745495a52632a128aefda67c6b902250c4e01ec7debd73d4a95abfc42a1b17ea6 SHA512 d6f8d29011bc1accd5384856bef16c0f20305f622a8f8c127cdf3ae5c567db3aba0d76293cc8c77f90f4989c44b2896a45e533d2f2408cc49488d1d234d308f5
24
25 diff --git a/www-servers/civetweb/civetweb-1.11.ebuild b/www-servers/civetweb/civetweb-1.11.ebuild
26 deleted file mode 100644
27 index b723333e365..00000000000
28 --- a/www-servers/civetweb/civetweb-1.11.ebuild
29 +++ /dev/null
30 @@ -1,39 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit cmake-utils
37 -
38 -HOMEPAGE="https://github.com/civetweb/civetweb/"
39 -DESCRIPTION="Embedded C/C++ web server"
40 -SRC_URI="https://github.com/civetweb/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="cxx +server ssl"
46 -
47 -RDEPEND="ssl? ( dev-libs/openssl:0= )"
48 -DEPEND="${RDEPEND}"
49 -
50 -src_prepare() {
51 - sed -e 's|DESTINATION lib$|DESTINATION ${CMAKE_INSTALL_LIBDIR}|' \
52 - -i src/CMakeLists.txt || die
53 - cmake-utils_src_prepare
54 -}
55 -
56 -src_configure() {
57 - local mycmakeargs=(
58 - -DBUILD_TESTING=OFF
59 - -DBUILD_SHARED_LIBS=ON
60 - -DCIVETWEB_BUILD_TESTING=OFF
61 - -DCIVETWEB_ENABLE_LUA=OFF
62 - -DCIVETWEB_ENABLE_DUKTAPE=OFF
63 - -DCIVETWEB_ENABLE_CXX="$(usex cxx)"
64 - -DCIVETWEB_ENABLE_SERVER_EXECUTABLE="$(usex server)"
65 - -DCIVETWEB_ENABLE_SSL="$(usex ssl)"
66 - )
67 -
68 - cmake-utils_src_configure
69 -}