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 C570B138330 for ; Sun, 2 Oct 2016 12:38:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2567CE0BDD; Sun, 2 Oct 2016 12:37:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C45EE0BDD for ; Sun, 2 Oct 2016 12:37:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4412A340CC8 for ; Sun, 2 Oct 2016 12:37:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F63324B0 for ; Sun, 2 Oct 2016 12:37:41 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1475411830.dba2ed859bc8e07edb6cf02cf1b3b69abb8eb600.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/sobby/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/sobby/sobby-0.4.8.ebuild X-VCS-Directories: net-misc/sobby/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: dba2ed859bc8e07edb6cf02cf1b3b69abb8eb600 X-VCS-Branch: master Date: Sun, 2 Oct 2016 12:37:41 +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-Archives-Salt: fb182b43-ef68-4567-9bb8-5dfd9c2b39e0 X-Archives-Hash: 6e6f5fdb9237ce8241272af93b370dec commit: dba2ed859bc8e07edb6cf02cf1b3b69abb8eb600 Author: Pacho Ramos gentoo org> AuthorDate: Sun Oct 2 11:43:28 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Oct 2 12:37:10 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dba2ed85 net-misc/sobby: Drop old Package-Manager: portage-2.3.1 net-misc/sobby/sobby-0.4.8.ebuild | 59 --------------------------------------- 1 file changed, 59 deletions(-) diff --git a/net-misc/sobby/sobby-0.4.8.ebuild b/net-misc/sobby/sobby-0.4.8.ebuild deleted file mode 100644 index f8bf7b8..00000000 --- a/net-misc/sobby/sobby-0.4.8.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit eutils user - -DESCRIPTION="Standalone Obby server" -HOMEPAGE="http://gobby.0x539.de/" -SRC_URI="http://releases.0x539.de/${PN}/${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~ppc x86" -IUSE="avahi" - -RDEPEND=">=dev-cpp/glibmm-2.6 - >=dev-libs/libsigc++-2.0 - >=dev-libs/gmp-4.1.4 - >=dev-cpp/libxmlpp-2.6 - >=net-libs/net6-1.3.12 - >=net-libs/obby-0.4.6[avahi=]" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -pkg_setup() { - enewgroup sobby - enewuser sobby -1 -1 /var/lib/sobby sobby -} - -src_configure() { - econf $(use_enable avahi zeroconf) -} - -src_install() { - default - - newconfd "${FILESDIR}/${PN}-conf-0.4.7" sobby - newinitd "${FILESDIR}/${PN}-init-0.4.7" sobby - - insinto /etc/sobby - doins "${FILESDIR}/sobby.xml" - - keepdir /var/lib/sobby - - fperms -R 0700 /var/lib/sobby - fperms -R 0700 /etc/sobby - - fowners sobby:sobby /var/lib/sobby - fowners -R sobby:sobby /etc/sobby -} - -pkg_postinst() { - elog "To start sobby, you can use the init script:" - elog " /etc/init.d/sobby start" - elog "" - elog "Please check the configuration in /etc/sobby/sobby.xml" - elog "before you start sobby" -}