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 5FB881381F1 for ; Mon, 2 May 2016 13:59:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 059A621C003; Mon, 2 May 2016 13:59:37 +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 9C65B21C003 for ; Mon, 2 May 2016 13:59:36 +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 576863409ED for ; Mon, 2 May 2016 13:59:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D686E16 for ; Mon, 2 May 2016 13:59:30 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1462197516.f3476b3f26fb9209c9ca6d3ee4fb3cd2e1839c2c.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/bdelta/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/bdelta/bdelta-9999.ebuild X-VCS-Directories: dev-util/bdelta/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: f3476b3f26fb9209c9ca6d3ee4fb3cd2e1839c2c X-VCS-Branch: master Date: Mon, 2 May 2016 13:59:30 +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: 9c548d28-9c67-4101-adc6-0f1f499a4e30 X-Archives-Hash: 6508b99384c70d2f66cb14be98d86280 commit: f3476b3f26fb9209c9ca6d3ee4fb3cd2e1839c2c Author: Sergei Trofimovich gentoo org> AuthorDate: Mon May 2 13:58:36 2016 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Mon May 2 13:58:36 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3476b3f dev-util/bdelta: drop live ebuild Package-Manager: portage-2.2.28 dev-util/bdelta/bdelta-9999.ebuild | 41 -------------------------------------- 1 file changed, 41 deletions(-) diff --git a/dev-util/bdelta/bdelta-9999.ebuild b/dev-util/bdelta/bdelta-9999.ebuild deleted file mode 100644 index a7cdf5a..0000000 --- a/dev-util/bdelta/bdelta-9999.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -if [[ ${PV} = *9999* ]]; then - EGIT_REPO_URI="git://github.com/jjwhitney/BDelta.git" - UNPACKER_ECLASS="git-2" - LIVE_EBUILD=yes -else - UNPACKER_ECLASS="vcs-snapshot" -fi - -inherit multilib toolchain-funcs ${UNPACKER_ECLASS} - -if [[ -z ${LIVE_EBUILD} ]]; then - KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-linux" - SRC_URI="https://github.com/jjwhitney/BDelta/tarball/v${PV} -> ${P}.tar.gz" -fi - -DESCRIPTION="Binary Delta - Efficient difference algorithm and format" -HOMEPAGE="http://bdelta.org" - -SLOT="0" -LICENSE="MPL-2.0" -IUSE="" - -src_compile() { - emake -C src \ - CXX="$(tc-getCXX)" \ - CXXFLAGS="${CXXFLAGS}" -} - -src_install() { - emake -C src install \ - DESTDIR="${D}" \ - PREFIX="${EPREFIX}/usr" \ - LIBDIR="${EPREFIX}/usr/$(get_libdir)" - dodoc README -}