From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-928838-garchives=archives.gentoo.org@lists.gentoo.org> 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 3FCD0139085 for <garchives@archives.gentoo.org>; Thu, 2 Feb 2017 11:31:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 50A6EE0DC8; Thu, 2 Feb 2017 11:31:15 +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 2C3C1E0DC8 for <gentoo-commits@lists.gentoo.org>; Thu, 2 Feb 2017 11:31:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 5764633BEBE for <gentoo-commits@lists.gentoo.org>; Thu, 2 Feb 2017 11:31:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 290193B8E for <gentoo-commits@lists.gentoo.org>; Thu, 2 Feb 2017 11:31:07 +0000 (UTC) From: "Michael Palimaka" <kensington@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" <kensington@gentoo.org> Message-ID: <1486035052.fe7d96f7d1ceadfcf60ae100b5bd65aa8556a8a2.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/cdbkup/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/cdbkup/cdbkup-1.0.ebuild X-VCS-Directories: app-backup/cdbkup/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: fe7d96f7d1ceadfcf60ae100b5bd65aa8556a8a2 X-VCS-Branch: master Date: Thu, 2 Feb 2017 11:31:07 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b21b23c6-ced7-4ac9-b2d6-95a1fa3d8797 X-Archives-Hash: e7881d516a25af577c70f1e35c181ce2 commit: fe7d96f7d1ceadfcf60ae100b5bd65aa8556a8a2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org> AuthorDate: Thu Feb 2 11:30:39 2017 +0000 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org> CommitDate: Thu Feb 2 11:30:52 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe7d96f7 app-backup/cdbkup: remove old Package-Manager: Portage-2.3.3, Repoman-2.3.1 app-backup/cdbkup/cdbkup-1.0.ebuild | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/app-backup/cdbkup/cdbkup-1.0.ebuild b/app-backup/cdbkup/cdbkup-1.0.ebuild deleted file mode 100644 index b37a200..00000000 --- a/app-backup/cdbkup/cdbkup-1.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -inherit eutils - -DESCRIPTION="performs full/incremental backups of local/remote filesystems onto CD-R(W)s" -HOMEPAGE="http://cdbkup.sourceforge.net/" -SRC_URI="mirror://sourceforge/cdbkup/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ppc" -IUSE="" - -RDEPEND="virtual/cdrtools - virtual/eject - !app-misc/cdcat" -DEPEND="${RDEPEND} - >=sys-apps/sed-4" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i -e "s:doc/cdbkup:doc/${P}:" Makefile.in || die - epatch "${S}"/linuxtar_13.patch -} - -src_compile() { - econf --with-snardir=/etc/cdbkup --with-dumpgrp=users -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc COMPLIANCE ChangeLog README TODO -}