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 8771613933E for ; Tue, 13 Jul 2021 20:57:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9BED8E0D91; Tue, 13 Jul 2021 20:57:33 +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 6A6A7E0D89 for ; Tue, 13 Jul 2021 20:57:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 76D36342CFA for ; Tue, 13 Jul 2021 20:57:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C4C717D9 for ; Tue, 13 Jul 2021 20:57:29 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1626209704.44c8a6eaceb96243e64b4f473b73d2972962cb36.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ices/, net-misc/ices/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/ices/files/ices.initd net-misc/ices/ices-2.0.2.ebuild X-VCS-Directories: net-misc/ices/files/ net-misc/ices/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 44c8a6eaceb96243e64b4f473b73d2972962cb36 X-VCS-Branch: master Date: Tue, 13 Jul 2021 20:57:29 +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: aed3f06f-6450-4888-94d8-c2473e129e5f X-Archives-Hash: 21deb1129ab7004e7dbd1d14ffb4171b commit: 44c8a6eaceb96243e64b4f473b73d2972962cb36 Author: Conrad Kostecki gentoo org> AuthorDate: Tue Jul 13 19:14:12 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Tue Jul 13 20:55:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44c8a6ea net-misc/ices: drop old version Closes: https://bugs.gentoo.org/781419 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> net-misc/ices/files/ices.initd | 17 ----------------- net-misc/ices/ices-2.0.2.ebuild | 42 ----------------------------------------- 2 files changed, 59 deletions(-) diff --git a/net-misc/ices/files/ices.initd b/net-misc/ices/files/ices.initd deleted file mode 100644 index ada3b4943e2..00000000000 --- a/net-misc/ices/files/ices.initd +++ /dev/null @@ -1,17 +0,0 @@ -#!/sbin/openrc-run - -depend() { - need net -} - -start() { - ebegin "Starting IceS 2" - start-stop-daemon --background --start --pidfile /var/run/ices.pid --make-pidfile --exec /usr/bin/ices /etc/ices2/ices.xml - eend $? -} - -stop() { - ebegin "Stopping IceS 2" - start-stop-daemon --stop --pidfile /var/run/ices.pid --name ices - eend $? -} diff --git a/net-misc/ices/ices-2.0.2.ebuild b/net-misc/ices/ices-2.0.2.ebuild deleted file mode 100644 index 34319a5138b..00000000000 --- a/net-misc/ices/ices-2.0.2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit user - -DESCRIPTION="Icecast OGG streaming client, supports on the fly re-encoding" -HOMEPAGE="https://icecast.org/ices/" -SRC_URI="http://downloads.xiph.org/releases/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ppc64 sparc x86" -IUSE="" - -RDEPEND="dev-libs/libxml2 - >=media-libs/libshout-2 - >=media-libs/libvorbis-1" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -pkg_setup() { - enewgroup ices - enewuser ices -1 -1 -1 ices -} - -src_configure() { - econf --sysconfdir=/etc/ices2 -} - -src_install() { - default - insinto /etc/ices2 - doins conf/*.xml - dohtml doc/*.{html,css} - newinitd "${FILESDIR}"/ices.initd-r1 ices - keepdir /var/log/ices - fperms 660 /var/log/ices - fowners ices:ices /var/log/ices - rm -rf "${D}"/usr/share/ices -}