Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/hashcash/
Date: Sat, 12 Oct 2019 08:04:52
Message-Id: 1570866933.2643d5574af0eef824dc7b9d1539c5fd27c6b826.mgorny@gentoo
1 commit: 2643d5574af0eef824dc7b9d1539c5fd27c6b826
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 12 07:55:33 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 12 07:55:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2643d557
7
8 net-misc/hashcash: Drop old (EAPI 0)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 net-misc/hashcash/hashcash-1.22-r1.ebuild | 34 -------------------------------
13 1 file changed, 34 deletions(-)
14
15 diff --git a/net-misc/hashcash/hashcash-1.22-r1.ebuild b/net-misc/hashcash/hashcash-1.22-r1.ebuild
16 deleted file mode 100644
17 index 99ebc450c64..00000000000
18 --- a/net-misc/hashcash/hashcash-1.22-r1.ebuild
19 +++ /dev/null
20 @@ -1,34 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=0
25 -
26 -inherit eutils toolchain-funcs
27 -
28 -IUSE=""
29 -DESCRIPTION="Utility to generate hashcash tokens"
30 -HOMEPAGE="http://www.hashcash.org"
31 -SRC_URI="http://www.hashcash.org/source/${P}.tgz"
32 -
33 -LICENSE="CPL-1.0"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~ppc x86"
36 -
37 -src_unpack() {
38 - unpack ${A}
39 - cd "${S}"
40 - sed -i -e "/COPT_GENERIC = -O3/d" Makefile || die
41 -}
42 -
43 -src_compile() {
44 - emake CC="$(tc-getCC)" generic || die
45 -}
46 -
47 -src_install() {
48 - dobin hashcash
49 - doman hashcash.1
50 - dodoc CHANGELOG
51 - insinto /usr/share/doc/${PF}/examples
52 - doins contrib/hashcash-{request,sendmail{,.txt}} \
53 - contrib/hashfork.{c,py,txt}
54 -}