Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/pshs/
Date: Sat, 26 Sep 2020 11:37:32
Message-Id: 1601119605.e8b05e8f8c424ce41ac5e757188035d9548d5ae0.mgorny@gentoo
1 commit: e8b05e8f8c424ce41ac5e757188035d9548d5ae0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 26 11:26:45 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 26 11:26:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8b05e8f
7
8 www-servers/pshs: Remove the live ebuild
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 www-servers/pshs/pshs-9999.ebuild | 43 ---------------------------------------
13 1 file changed, 43 deletions(-)
14
15 diff --git a/www-servers/pshs/pshs-9999.ebuild b/www-servers/pshs/pshs-9999.ebuild
16 deleted file mode 100644
17 index 51c8476b255..00000000000
18 --- a/www-servers/pshs/pshs-9999.ebuild
19 +++ /dev/null
20 @@ -1,43 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -EGIT_REPO_URI="https://github.com/mgorny/${PN}.git"
27 -
28 -inherit autotools git-r3
29 -
30 -DESCRIPTION="Pretty small HTTP server -- a command-line tool to share files"
31 -HOMEPAGE="https://github.com/mgorny/pshs/"
32 -SRC_URI=""
33 -
34 -LICENSE="BSD"
35 -SLOT="0"
36 -KEYWORDS=""
37 -IUSE="libressl +magic qrcode ssl upnp"
38 -
39 -RDEPEND=">=dev-libs/libevent-2:0=
40 - magic? ( sys-apps/file:0= )
41 - qrcode? ( media-gfx/qrencode:0= )
42 - ssl? ( >=dev-libs/libevent-2.1:0=[ssl]
43 - !libressl? ( dev-libs/openssl:0= )
44 - libressl? ( dev-libs/libressl:= )
45 - )
46 - upnp? ( net-libs/miniupnpc:0= )"
47 -DEPEND="${RDEPEND}"
48 -
49 -src_prepare() {
50 - default
51 - eautoreconf
52 -}
53 -
54 -src_configure() {
55 - local myconf=(
56 - $(use_enable magic libmagic)
57 - $(use_enable qrcode qrencode)
58 - $(use_enable ssl)
59 - $(use_enable upnp)
60 - )
61 -
62 - econf "${myconf[@]}"
63 -}