Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/civetweb/
Date: Sat, 31 Aug 2019 20:19:05
Message-Id: 1567282733.8f03ff3fffa965cee9a189a4d5fd36bc82ee0ebc.zmedico@gentoo
1 commit: 8f03ff3fffa965cee9a189a4d5fd36bc82ee0ebc
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 31 20:16:32 2019 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 31 20:18:53 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f03ff3f
7
8 www-servers/civetweb: Remove old version 1.10
9
10 Package-Manager: Portage-2.3.74, Repoman-2.3.17
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 www-servers/civetweb/Manifest | 1 -
14 www-servers/civetweb/civetweb-1.10.ebuild | 36 -------------------------------
15 2 files changed, 37 deletions(-)
16
17 diff --git a/www-servers/civetweb/Manifest b/www-servers/civetweb/Manifest
18 index d83660b0b20..8d85e589685 100644
19 --- a/www-servers/civetweb/Manifest
20 +++ b/www-servers/civetweb/Manifest
21 @@ -1,2 +1 @@
22 -DIST civetweb-1.10.tar.gz 11350512 BLAKE2B b0a2ef514a0d9f821a1e05e72000901092f722a5628b759401ef4118301ef79ee8b00f44a9fe9e9f64a14b4af6511419d1684cbe9d2b7c0eb18dbd9d98cd7cbe SHA512 54035883fbec590f339a2b4b5bf1b9a93591ea50bff056830d0c45b874cf6e46ce5af39e9dd9d4e0e6c82bec844aa0f159503f337998e9e10e59099b8ecc3f79
23 DIST civetweb-1.11.tar.gz 11421650 BLAKE2B 487044a313c2ff005a8dfa247b3d8a3c3b52ef048cbc3050ec8c0402ccef4e12e28de53fed5a3a91df1e7f59ba6c03bf545413ffdd0ce3e4d604148c16c661e9 SHA512 e1520fd2f4a54b6ab4838f4da2ce3f0956e9884059467d196078935a3fce61dad619f3bb1bc2b4c6a757e1a8abfed0e83cba38957c7c52fff235676e9dd1d428
24
25 diff --git a/www-servers/civetweb/civetweb-1.10.ebuild b/www-servers/civetweb/civetweb-1.10.ebuild
26 deleted file mode 100644
27 index 62190ba870b..00000000000
28 --- a/www-servers/civetweb/civetweb-1.10.ebuild
29 +++ /dev/null
30 @@ -1,36 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
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="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_ENABLE_LUA=OFF
61 - -DCIVETWEB_ENABLE_DUKTAPE=OFF
62 - -DCIVETWEB_ENABLE_SSL="$(usex ssl)"
63 - )
64 -
65 - cmake-utils_src_configure
66 -}