From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4F6581384C3 for ; Mon, 7 Sep 2015 11:19:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 759121419B; Mon, 7 Sep 2015 11:19:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1F6751419B for ; Mon, 7 Sep 2015 11:19:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0E53E34070A for ; Mon, 7 Sep 2015 11:19:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2BCAE18B for ; Mon, 7 Sep 2015 11:19:25 +0000 (UTC) From: "Marc Schiffbauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marc Schiffbauer" Message-ID: <1441624697.4d9106a32d438d4059e21dd08721764c681b937b.mschiff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/obnam/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/obnam/obnam-1.13.ebuild X-VCS-Directories: app-backup/obnam/ X-VCS-Committer: mschiff X-VCS-Committer-Name: Marc Schiffbauer X-VCS-Revision: 4d9106a32d438d4059e21dd08721764c681b937b X-VCS-Branch: master Date: Mon, 7 Sep 2015 11:19:25 +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: 26587be6-ac3b-4d98-ac0a-47ffb130ebf2 X-Archives-Hash: 0dc63dcb26a3918df014ab558ab2ffa9 commit: 4d9106a32d438d4059e21dd08721764c681b937b Author: Marc Schiffbauer gentoo org> AuthorDate: Mon Sep 7 11:18:17 2015 +0000 Commit: Marc Schiffbauer gentoo org> CommitDate: Mon Sep 7 11:18:17 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d9106a3 app-backup/obnam: remove old version app-backup/obnam/obnam-1.13.ebuild | 54 -------------------------------------- 1 file changed, 54 deletions(-) diff --git a/app-backup/obnam/obnam-1.13.ebuild b/app-backup/obnam/obnam-1.13.ebuild deleted file mode 100644 index cd42b25..0000000 --- a/app-backup/obnam/obnam-1.13.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE="threads" - -inherit eutils distutils-r1 - -DESCRIPTION="A backup program that supports encryption and deduplication" -HOMEPAGE="http://obnam.org/" -SRC_URI="http://git.liw.fi/cgi-bin/cgit/cgit.cgi/obnam/snapshot/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="${PYTHON_DEPS} - dev-python/cliapp - dev-python/fuse-python - dev-python/larch - !=dev-python/paramiko-1.13.0 - || ( dev-python/paramiko-1.13.0 ) - dev-python/pyyaml - dev-python/tracing - dev-python/ttystatus - " -RDEPEND="${DEPEND}" - -PATCHES=( ) - -src_compile() { - addwrite /proc/self/comm - distutils-r1_src_compile -} - -src_install() { - distutils-r1_src_install - find "${D}" -name "obnam-viewprof*" -delete - insinto /etc - doins "${FILESDIR}"/obnam.conf - keepdir /var/log/obnam -} - -pkg_postinst() { - if [[ $REPLACING_VERSIONS < "1.2" ]]; then - elog "You will need to setup a config file before running obnam for the first time." - elog "For details, please see the obnam(1) manual page." - elog "An example file has been installed as /etc/obnam.conf for your convenience." - fi -}