* [gentoo-commits] repo/gentoo:master commit in: net-misc/hashcash/
@ 2019-10-12 8:04 Michał Górny
0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2019-10-12 8:04 UTC (permalink / raw
To: gentoo-commits
commit: 2643d5574af0eef824dc7b9d1539c5fd27c6b826
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 12 07:55:33 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> 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 <mgorny <AT> 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}
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/hashcash/
@ 2022-10-21 12:48 Ionen Wolkens
0 siblings, 0 replies; 7+ messages in thread
From: Ionen Wolkens @ 2022-10-21 12:48 UTC (permalink / raw
To: gentoo-commits
commit: 5e271b86edf8e01a35bcc9befe76f134892f13ed
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 21 12:23:28 2022 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Fri Oct 21 12:47:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e271b86
net-misc/hashcash: drop c2x workaround
Changed the way test for this, and upon closer look
this one wasn't needed.
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
net-misc/hashcash/hashcash-1.22-r2.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/net-misc/hashcash/hashcash-1.22-r2.ebuild b/net-misc/hashcash/hashcash-1.22-r2.ebuild
index 55d0da7126d5..c52b23016a1b 100644
--- a/net-misc/hashcash/hashcash-1.22-r2.ebuild
+++ b/net-misc/hashcash/hashcash-1.22-r2.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-inherit flag-o-matic toolchain-funcs
+inherit toolchain-funcs
DESCRIPTION="Utility to generate hashcash tokens"
HOMEPAGE="http://www.hashcash.org"
@@ -25,7 +25,6 @@ src_prepare() {
src_compile() {
tc-export AR CC
- append-cflags -std=gnu89 # old codebase, incompatible with c2x
emake generic
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/hashcash/
@ 2022-10-11 8:56 Ionen Wolkens
0 siblings, 0 replies; 7+ messages in thread
From: Ionen Wolkens @ 2022-10-11 8:56 UTC (permalink / raw
To: gentoo-commits
commit: 8bf4290f40da2be134d475198d6ed46dee40664f
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 11 08:25:02 2022 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Oct 11 08:56:01 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bf4290f
net-misc/hashcash: pass -std=gnu89
Does not build with `clang -std=c2x`, early workaround for
when this will become a default.
(not actively hunting for these, merely revisiting packages
previously looked at for clang16 even if not an issue "yet").
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
net-misc/hashcash/hashcash-1.22-r2.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net-misc/hashcash/hashcash-1.22-r2.ebuild b/net-misc/hashcash/hashcash-1.22-r2.ebuild
index c52b23016a1b..55d0da7126d5 100644
--- a/net-misc/hashcash/hashcash-1.22-r2.ebuild
+++ b/net-misc/hashcash/hashcash-1.22-r2.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-inherit toolchain-funcs
+inherit flag-o-matic toolchain-funcs
DESCRIPTION="Utility to generate hashcash tokens"
HOMEPAGE="http://www.hashcash.org"
@@ -25,6 +25,7 @@ src_prepare() {
src_compile() {
tc-export AR CC
+ append-cflags -std=gnu89 # old codebase, incompatible with c2x
emake generic
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/hashcash/
@ 2022-09-28 2:35 Ionen Wolkens
0 siblings, 0 replies; 7+ messages in thread
From: Ionen Wolkens @ 2022-09-28 2:35 UTC (permalink / raw
To: gentoo-commits
commit: ddf596677c68bde73e8c57c350e93ae22c6c5ee7
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 28 01:00:05 2022 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Wed Sep 28 02:34:35 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddf59667
net-misc/hashcash: EAPI7->8, respect AR
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
net-misc/hashcash/hashcash-1.22-r2.ebuild | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/net-misc/hashcash/hashcash-1.22-r2.ebuild b/net-misc/hashcash/hashcash-1.22-r2.ebuild
index 867929119c5a..68a606092d65 100644
--- a/net-misc/hashcash/hashcash-1.22-r2.ebuild
+++ b/net-misc/hashcash/hashcash-1.22-r2.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit toolchain-funcs
@@ -15,18 +15,24 @@ KEYWORDS="~amd64 ~ppc ~x86"
src_prepare() {
default
+
sed -i -e "/COPT_GENERIC = -O3/d" Makefile || die
}
src_compile() {
- emake CC="$(tc-getCC)" generic
+ tc-export AR CC
+
+ emake generic
}
src_install() {
dobin hashcash
doman hashcash.1
+
dodoc CHANGELOG
+
docinto examples
dodoc contrib/hashcash-{request,sendmail{,.txt}} contrib/hashfork.{c,py,txt}
+
docompress -x /usr/share/doc/${PF}/examples
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/hashcash/
@ 2022-06-05 11:53 Matthew Smith
0 siblings, 0 replies; 7+ messages in thread
From: Matthew Smith @ 2022-06-05 11:53 UTC (permalink / raw
To: gentoo-commits
commit: 335539666e1e2e8b55f8c65e6210a847713dc2ea
Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 5 11:52:26 2022 +0000
Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Sun Jun 5 11:52:56 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33553966
net-misc/hashcash: drop to maintainer-needed
Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
net-misc/hashcash/metadata.xml | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/net-misc/hashcash/metadata.xml b/net-misc/hashcash/metadata.xml
index 3ea1da8fe807..bef24d2c2337 100644
--- a/net-misc/hashcash/metadata.xml
+++ b/net-misc/hashcash/metadata.xml
@@ -1,12 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person" proxied="yes">
- <email>ngg@ngg.hu</email>
- <name>Gergely Nagy</name>
- </maintainer>
- <maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
+ <!-- maintainer-needed -->
</pkgmetadata>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/hashcash/
@ 2022-02-13 21:08 Conrad Kostecki
0 siblings, 0 replies; 7+ messages in thread
From: Conrad Kostecki @ 2022-02-13 21:08 UTC (permalink / raw
To: gentoo-commits
commit: 326ba5340cc1379735474f2507fc1e994cdfcbbe
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 13 00:05:26 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Feb 13 21:07:22 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=326ba534
net-misc/hashcash: fix DeprecatedInsinto
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
net-misc/hashcash/hashcash-1.22-r2.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/net-misc/hashcash/hashcash-1.22-r2.ebuild b/net-misc/hashcash/hashcash-1.22-r2.ebuild
index e29148642453..867929119c5a 100644
--- a/net-misc/hashcash/hashcash-1.22-r2.ebuild
+++ b/net-misc/hashcash/hashcash-1.22-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -26,7 +26,7 @@ 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}
+ docinto examples
+ dodoc contrib/hashcash-{request,sendmail{,.txt}} contrib/hashfork.{c,py,txt}
+ docompress -x /usr/share/doc/${PF}/examples
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/hashcash/
@ 2019-10-11 13:48 Joonas Niilola
0 siblings, 0 replies; 7+ messages in thread
From: Joonas Niilola @ 2019-10-11 13:48 UTC (permalink / raw
To: gentoo-commits
commit: b1ec3a46c549679f89af1071f47fda4f5cbb6d0d
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 11 13:47:12 2019 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Oct 11 13:48:04 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1ec3a46
net-misc/hashcash: clean 1.22-r2 ebuild a bit
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-misc/hashcash/hashcash-1.22-r2.ebuild | 5 -----
1 file changed, 5 deletions(-)
diff --git a/net-misc/hashcash/hashcash-1.22-r2.ebuild b/net-misc/hashcash/hashcash-1.22-r2.ebuild
index 4c5088b4ca5..1533c90bd7b 100644
--- a/net-misc/hashcash/hashcash-1.22-r2.ebuild
+++ b/net-misc/hashcash/hashcash-1.22-r2.ebuild
@@ -12,11 +12,6 @@ SRC_URI="http://www.hashcash.org/source/${P}.tgz"
LICENSE="CPL-1.0"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-BDEPEND=""
src_prepare() {
default
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-10-21 12:48 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-12 8:04 [gentoo-commits] repo/gentoo:master commit in: net-misc/hashcash/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2022-10-21 12:48 Ionen Wolkens
2022-10-11 8:56 Ionen Wolkens
2022-09-28 2:35 Ionen Wolkens
2022-06-05 11:53 Matthew Smith
2022-02-13 21:08 Conrad Kostecki
2019-10-11 13:48 Joonas Niilola
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox