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 429C3138334 for ; Sat, 12 Oct 2019 08:04:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DC74E089D; Sat, 12 Oct 2019 08:04:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 31EFEE089D for ; Sat, 12 Oct 2019 08:04:50 +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 EC3C134BBCC for ; Sat, 12 Oct 2019 08:04:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F504840 for ; Sat, 12 Oct 2019 08:04:46 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1570866933.2643d5574af0eef824dc7b9d1539c5fd27c6b826.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/hashcash/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/hashcash/hashcash-1.22-r1.ebuild X-VCS-Directories: net-misc/hashcash/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2643d5574af0eef824dc7b9d1539c5fd27c6b826 X-VCS-Branch: master Date: Sat, 12 Oct 2019 08:04:46 +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: dc0b8c2a-131d-4c74-8336-ac0aa6f469df X-Archives-Hash: a420c68cc0a96c85a3673bcfe5d9d053 commit: 2643d5574af0eef824dc7b9d1539c5fd27c6b826 Author: Michał Górny gentoo org> AuthorDate: Sat Oct 12 07:55:33 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Oct 12 07:55:33 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2643d557 net-misc/hashcash: Drop old (EAPI 0) Signed-off-by: Michał Górny gentoo.org> net-misc/hashcash/hashcash-1.22-r1.ebuild | 34 ------------------------------- 1 file changed, 34 deletions(-) diff --git a/net-misc/hashcash/hashcash-1.22-r1.ebuild b/net-misc/hashcash/hashcash-1.22-r1.ebuild deleted file mode 100644 index 99ebc450c64..00000000000 --- a/net-misc/hashcash/hashcash-1.22-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils toolchain-funcs - -IUSE="" -DESCRIPTION="Utility to generate hashcash tokens" -HOMEPAGE="http://www.hashcash.org" -SRC_URI="http://www.hashcash.org/source/${P}.tgz" - -LICENSE="CPL-1.0" -SLOT="0" -KEYWORDS="~amd64 ~ppc x86" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i -e "/COPT_GENERIC = -O3/d" Makefile || die -} - -src_compile() { - emake CC="$(tc-getCC)" generic || die -} - -src_install() { - dobin hashcash - doman hashcash.1 - dodoc CHANGELOG - insinto /usr/share/doc/${PF}/examples - doins contrib/hashcash-{request,sendmail{,.txt}} \ - contrib/hashfork.{c,py,txt} -}