From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2CE5B138359 for ; Sat, 26 Sep 2020 11:37:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69604E0815; Sat, 26 Sep 2020 11:37:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 35A17E0815 for ; Sat, 26 Sep 2020 11:37:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C8755340E04 for ; Sat, 26 Sep 2020 11:37:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D8BDEC for ; Sat, 26 Sep 2020 11:37:28 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1601119605.e8b05e8f8c424ce41ac5e757188035d9548d5ae0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/pshs/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/pshs/pshs-9999.ebuild X-VCS-Directories: www-servers/pshs/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e8b05e8f8c424ce41ac5e757188035d9548d5ae0 X-VCS-Branch: master Date: Sat, 26 Sep 2020 11:37:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 358f199f-04f8-43a6-a146-a6b71edaaaf3 X-Archives-Hash: 28f753842fea55001d135668e305213b commit: e8b05e8f8c424ce41ac5e757188035d9548d5ae0 Author: Michał Górny gentoo org> AuthorDate: Sat Sep 26 11:26:45 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Sep 26 11:26:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8b05e8f www-servers/pshs: Remove the live ebuild Signed-off-by: Michał Górny gentoo.org> www-servers/pshs/pshs-9999.ebuild | 43 --------------------------------------- 1 file changed, 43 deletions(-) diff --git a/www-servers/pshs/pshs-9999.ebuild b/www-servers/pshs/pshs-9999.ebuild deleted file mode 100644 index 51c8476b255..00000000000 --- a/www-servers/pshs/pshs-9999.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -EGIT_REPO_URI="https://github.com/mgorny/${PN}.git" - -inherit autotools git-r3 - -DESCRIPTION="Pretty small HTTP server -- a command-line tool to share files" -HOMEPAGE="https://github.com/mgorny/pshs/" -SRC_URI="" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="" -IUSE="libressl +magic qrcode ssl upnp" - -RDEPEND=">=dev-libs/libevent-2:0= - magic? ( sys-apps/file:0= ) - qrcode? ( media-gfx/qrencode:0= ) - ssl? ( >=dev-libs/libevent-2.1:0=[ssl] - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:= ) - ) - upnp? ( net-libs/miniupnpc:0= )" -DEPEND="${RDEPEND}" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myconf=( - $(use_enable magic libmagic) - $(use_enable qrcode qrencode) - $(use_enable ssl) - $(use_enable upnp) - ) - - econf "${myconf[@]}" -}