* [gentoo-commits] repo/gentoo:master commit in: app-forensics/memdump/
@ 2017-08-11 17:38 Michał Górny
0 siblings, 0 replies; 3+ messages in thread
From: Michał Górny @ 2017-08-11 17:38 UTC (permalink / raw
To: gentoo-commits
commit: 309ca6a3995682c85001c0f1fb07166b4ae45c1b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 11 17:30:53 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Aug 11 17:37:59 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=309ca6a3
app-forensics/memdump: Remove forensics@ project, #626500
app-forensics/memdump/metadata.xml | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/app-forensics/memdump/metadata.xml b/app-forensics/memdump/metadata.xml
index dd0b0bba73e..7a38bb90096 100644
--- a/app-forensics/memdump/metadata.xml
+++ b/app-forensics/memdump/metadata.xml
@@ -1,8 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="project">
- <email>forensics@gentoo.org</email>
- <name>Gentoo Forensics Project</name>
-</maintainer>
+ <!-- maintainer-needed -->
</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/memdump/
@ 2019-06-04 20:54 Agostino Sarubbo
0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo @ 2019-06-04 20:54 UTC (permalink / raw
To: gentoo-commits
commit: a0f5d692bdb402c828fd1fe4b59a08df04b008d2
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 4 20:54:23 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Jun 4 20:54:23 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0f5d692
app-forensics/memdump: amd64 stable wrt bug #683882
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
app-forensics/memdump/memdump-1.01-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-forensics/memdump/memdump-1.01-r1.ebuild b/app-forensics/memdump/memdump-1.01-r1.ebuild
index 94c56047b02..1c531655322 100644
--- a/app-forensics/memdump/memdump-1.01-r1.ebuild
+++ b/app-forensics/memdump/memdump-1.01-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.porcupine.org/forensics/${P}.tar.gz"
LICENSE="IBM"
SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
PATCHES=( "${FILESDIR}"/${P}-linux3.patch )
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/memdump/
@ 2019-06-25 17:57 Andreas Sturmlechner
0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2019-06-25 17:57 UTC (permalink / raw
To: gentoo-commits
commit: 847da4796eaa12346d6515ae28d5e30ccda8130d
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Tue Jun 25 17:34:04 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Jun 25 17:57:39 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=847da479
app-forensics/memdump: remove old
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12328
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
app-forensics/memdump/memdump-1.01.ebuild | 46 -------------------------------
1 file changed, 46 deletions(-)
diff --git a/app-forensics/memdump/memdump-1.01.ebuild b/app-forensics/memdump/memdump-1.01.ebuild
deleted file mode 100644
index efa73c2f97f..00000000000
--- a/app-forensics/memdump/memdump-1.01.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit toolchain-funcs eutils
-
-DESCRIPTION="Simple memory dumper for UNIX-Like systems"
-HOMEPAGE="http://www.porcupine.org/forensics"
-SRC_URI="http://www.porcupine.org/forensics/${P}.tar.gz"
-
-LICENSE="IBM"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-src_prepare() {
- sed -i -e 's:$(CFLAGS):\0 $(LDFLAGS):' Makefile || die
- epatch "${FILESDIR}"/${P}-linux3.patch
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" XFLAGS="${CFLAGS}" OPT= DEBUG=
-}
-
-src_test() {
- if [[ ${EUID} -ne 0 ]];
- then
- einfo "Cannot test with FEATURES=userpriv"
- elif [ -x /bin/wc ];
- then
- einfo "testing"
- if [ "`./memdump -s 344 | wc -c`" = "344" ];
- then
- einfo "passed test"
- else
- die "failed test"
- fi
- fi
-}
-
-src_install() {
- dosbin memdump
- dodoc README
- doman memdump.1
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-06-25 17:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-04 20:54 [gentoo-commits] repo/gentoo:master commit in: app-forensics/memdump/ Agostino Sarubbo
-- strict thread matches above, loose matches on Subject: below --
2019-06-25 17:57 Andreas Sturmlechner
2017-08-11 17:38 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox