* [gentoo-commits] repo/gentoo:master commit in: app-crypt/md4sum/
@ 2018-11-10 17:55 Hanno Boeck
0 siblings, 0 replies; 4+ messages in thread
From: Hanno Boeck @ 2018-11-10 17:55 UTC (permalink / raw
To: gentoo-commits
commit: 9f177a3055b06a3bf070ca91da8520d3ac71d4eb
Author: Hanno <hanno <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 10 17:54:57 2018 +0000
Commit: Hanno Boeck <hanno <AT> gentoo <DOT> org>
CommitDate: Sat Nov 10 17:54:57 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f177a30
app-crypt/md4sum: EAPI 7, HTTPS links, cleanup.
Closes: https://github.com/gentoo/gentoo/pull/9030
Closes: https://bugs.gentoo.org/663038
Signed-off-by: Hanno Boeck <hanno <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.12
app-crypt/md4sum/md4sum-0.02.03-r2.ebuild | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild b/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild
new file mode 100644
index 00000000000..8198a1631ad
--- /dev/null
+++ b/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="md4 and edonkey hash algorithm tool"
+HOMEPAGE="https://linux.xulin.de/c/"
+SRC_URI="https://linux.xulin.de/c/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+PATCHES=( "${FILESDIR}"/md4sum-fix-out-of-bounds-write.diff )
+
+src_prepare() {
+ default
+ sed -i -e "s:CFLAGS=:CFLAGS=${CFLAGS} :g" \
+ -e "s:install -s:install:g" Makefile.Linux || die
+}
+
+src_compile() {
+ emake LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)"
+}
+
+src_install() {
+ dobin ${PN}
+ doman ${PN}.1
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/md4sum/
@ 2019-11-17 19:58 Hanno Böck
0 siblings, 0 replies; 4+ messages in thread
From: Hanno Böck @ 2019-11-17 19:58 UTC (permalink / raw
To: gentoo-commits
commit: d36f2f7237b06a390a423cb639974044191aa2a3
Author: Hanno Böck <hanno <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 17 19:57:28 2019 +0000
Commit: Hanno Böck <hanno <AT> gentoo <DOT> org>
CommitDate: Sun Nov 17 19:58:03 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d36f2f72
app-crypt/md4sum: Remove old ebuild
Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
Package-Manager: Portage-2.3.79, Repoman-2.3.18
app-crypt/md4sum/md4sum-0.02.03-r1.ebuild | 30 ------------------------------
1 file changed, 30 deletions(-)
diff --git a/app-crypt/md4sum/md4sum-0.02.03-r1.ebuild b/app-crypt/md4sum/md4sum-0.02.03-r1.ebuild
deleted file mode 100644
index 089194c7aff..00000000000
--- a/app-crypt/md4sum/md4sum-0.02.03-r1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="md4 and edonkey hash algorithm tool"
-HOMEPAGE="http://linux.xulin.de/c/"
-SRC_URI="http://linux.xulin.de/c/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-src_prepare() {
- epatch "${FILESDIR}/md4sum-fix-out-of-bounds-write.diff"
-}
-
-src_compile() {
- sed -i -e "s:CFLAGS=:CFLAGS=${CFLAGS} :g" \
- -e "s:install -s:install:g" Makefile
- emake LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" || die "emake failed"
-}
-
-src_install() {
- mkdir -p "${D}/usr/bin"
- mkdir -p "${D}/usr/share/man/man1"
- einstall || die "einstall failed"
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/md4sum/
@ 2020-04-30 8:34 Hanno Böck
0 siblings, 0 replies; 4+ messages in thread
From: Hanno Böck @ 2020-04-30 8:34 UTC (permalink / raw
To: gentoo-commits
commit: 0c9b4f108fea55858387d5b87fbc2cd5e1481911
Author: Hanno Böck <hanno <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 30 08:33:39 2020 +0000
Commit: Hanno Böck <hanno <AT> gentoo <DOT> org>
CommitDate: Thu Apr 30 08:33:39 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c9b4f10
app-crypt/md4sum: Use safer sed delimiter
Closes: https://bugs.gentoo.org/710806
Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
Package-Manager: Portage-2.3.99, Repoman-2.3.22
app-crypt/md4sum/md4sum-0.02.03-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild b/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild
index 8198a1631ad..af650312ff4 100644
--- a/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild
+++ b/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -17,7 +17,7 @@ PATCHES=( "${FILESDIR}"/md4sum-fix-out-of-bounds-write.diff )
src_prepare() {
default
- sed -i -e "s:CFLAGS=:CFLAGS=${CFLAGS} :g" \
+ sed -i -e "s;CFLAGS=;CFLAGS=${CFLAGS} ;g" \
-e "s:install -s:install:g" Makefile.Linux || die
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/md4sum/
@ 2022-01-22 14:14 Hanno Böck
0 siblings, 0 replies; 4+ messages in thread
From: Hanno Böck @ 2022-01-22 14:14 UTC (permalink / raw
To: gentoo-commits
commit: e520f3c34e92f86ae1327d831a95c234b32bd835
Author: Hanno Böck <hanno <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 22 14:14:20 2022 +0000
Commit: Hanno Böck <hanno <AT> gentoo <DOT> org>
CommitDate: Sat Jan 22 14:14:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e520f3c3
app-crypt/md4sum: Remove myself as maintainer
Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
Package-Manager: Portage-3.0.30, Repoman-3.0.3
app-crypt/md4sum/metadata.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-crypt/md4sum/metadata.xml b/app-crypt/md4sum/metadata.xml
index dcdae049d7cf..85e4ed814fa2 100644
--- a/app-crypt/md4sum/metadata.xml
+++ b/app-crypt/md4sum/metadata.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="person"><email>hanno@gentoo.org</email></maintainer>
+<!-- maintainer-needed -->
</pkgmetadata>
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-01-22 14:14 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-30 8:34 [gentoo-commits] repo/gentoo:master commit in: app-crypt/md4sum/ Hanno Böck
-- strict thread matches above, loose matches on Subject: below --
2022-01-22 14:14 Hanno Böck
2019-11-17 19:58 Hanno Böck
2018-11-10 17:55 Hanno Boeck
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox