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 DFF1D138334 for ; Thu, 25 Apr 2019 11:40:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D62E2E0960; Thu, 25 Apr 2019 11:40:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B91F3E0956 for ; Thu, 25 Apr 2019 11:40:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 62BBF342675 for ; Thu, 25 Apr 2019 11:40:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD4E958A for ; Thu, 25 Apr 2019 11:40:53 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1556192446.b94b088cecc8c7c9a29d24eba3d725fe3e9c6ca0.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/hardlink/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/hardlink/hardlink-0.3.0.ebuild X-VCS-Directories: app-arch/hardlink/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: b94b088cecc8c7c9a29d24eba3d725fe3e9c6ca0 X-VCS-Branch: master Date: Thu, 25 Apr 2019 11:40:53 +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: 649ed782-e386-42d2-ade1-27fd8debff52 X-Archives-Hash: dc98494841cca31a0166a94b1165ee3c commit: b94b088cecc8c7c9a29d24eba3d725fe3e9c6ca0 Author: Lars Wendler gentoo org> AuthorDate: Thu Apr 25 11:40:31 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu Apr 25 11:40:46 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b94b088c app-arch/hardlink: Removed old. Package-Manager: Portage-2.3.64, Repoman-2.3.12 Signed-off-by: Lars Wendler gentoo.org> app-arch/hardlink/hardlink-0.3.0.ebuild | 39 --------------------------------- 1 file changed, 39 deletions(-) diff --git a/app-arch/hardlink/hardlink-0.3.0.ebuild b/app-arch/hardlink/hardlink-0.3.0.ebuild deleted file mode 100644 index 8b23adc7d94..00000000000 --- a/app-arch/hardlink/hardlink-0.3.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit toolchain-funcs - -DESCRIPTION="A tool which replaces copies of a file with hardlinks" -HOMEPAGE="https://jak-linux.org/projects/hardlink/" -SRC_URI="https://jak-linux.org/projects/${PN}/${PN}_${PV}.tar.xz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" -IUSE="" - -RDEPEND="dev-libs/libpcre" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS="README ${T}/README.rsync" - -src_prepare() { - sed -i -e '/^CF/s:?=:+=:' -e '/^CF/s:-O2 -g::' Makefile || die - - cat <<-EOF > "${T}"/README.rsync - https://hardlinkpy.googlecode.com/svn/trunk/hardlink.py has regex '^\..*\.\?{6,6}$' - for excluding rsync temporary files by default. - - To accomplish same with this version, you can use following syntax: - # hardlink -x '^\..*\.\?{6,6}$' - - This was discussed at https://bugs.gentoo.org/416613 - EOF -} - -src_compile() { - tc-export CC - emake -}