public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-forensics/dfxml/
@ 2017-09-24 19:20 Jeroen Roovers
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers @ 2017-09-24 19:20 UTC (permalink / raw
  To: gentoo-commits

commit:     8523ba111ef0b942f241ccc0b95958632c5341e9
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 24 10:33:54 2017 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Sep 24 19:20:50 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8523ba11

app-forensics/dfxml: Do not install autotools helper.

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 .../dfxml/{dfxml-20170921.ebuild => dfxml-20170921-r1.ebuild}      | 7 -------
 app-forensics/dfxml/dfxml-99999999.ebuild                          | 7 -------
 2 files changed, 14 deletions(-)

diff --git a/app-forensics/dfxml/dfxml-20170921.ebuild b/app-forensics/dfxml/dfxml-20170921-r1.ebuild
similarity index 86%
rename from app-forensics/dfxml/dfxml-20170921.ebuild
rename to app-forensics/dfxml/dfxml-20170921-r1.ebuild
index fa4fcd22ca6..d291bbf43c4 100644
--- a/app-forensics/dfxml/dfxml-20170921.ebuild
+++ b/app-forensics/dfxml/dfxml-20170921-r1.ebuild
@@ -31,10 +31,3 @@ src_prepare() {
 
 	eautoreconf
 }
-
-src_install() {
-	default
-
-	insinto /usr/share/aclocal
-	doins dfxml_configure.m4
-}

diff --git a/app-forensics/dfxml/dfxml-99999999.ebuild b/app-forensics/dfxml/dfxml-99999999.ebuild
index 1ec11d75492..2acea0ac8a0 100644
--- a/app-forensics/dfxml/dfxml-99999999.ebuild
+++ b/app-forensics/dfxml/dfxml-99999999.ebuild
@@ -26,10 +26,3 @@ src_prepare() {
 
 	eautoreconf
 }
-
-src_install() {
-	default
-
-	insinto /usr/share/aclocal
-	doins dfxml_configure.m4
-}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-forensics/dfxml/
@ 2017-09-24 19:20 Jeroen Roovers
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers @ 2017-09-24 19:20 UTC (permalink / raw
  To: gentoo-commits

commit:     b17291d12e89bfce6922771c176c27eb80a7c649
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 24 10:27:26 2017 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Sep 24 19:20:43 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b17291d1

app-forensics/dfxml: From dev-libs to app-forensics.

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 app-forensics/dfxml/Manifest              |  1 +
 app-forensics/dfxml/dfxml-20170921.ebuild | 40 +++++++++++++++++++++++++++++++
 app-forensics/dfxml/dfxml-99999999.ebuild | 35 +++++++++++++++++++++++++++
 app-forensics/dfxml/metadata.xml          |  7 ++++++
 4 files changed, 83 insertions(+)

diff --git a/app-forensics/dfxml/Manifest b/app-forensics/dfxml/Manifest
new file mode 100644
index 00000000000..1ca18a4b31f
--- /dev/null
+++ b/app-forensics/dfxml/Manifest
@@ -0,0 +1 @@
+DIST dfxml-20170921.tar.gz 163616 SHA256 f24bd6c149d07f9ed1089fc25afdab2451f6615e57d5f25529e8d2a59989bc18 SHA512 0885947aaf8efe639c13324413ef0cca49750027b48b434f226fb9fbfba494e84e245da879dc0d77b46bddc27798f7f5df12590fce47b096683034bbc61280e1 WHIRLPOOL b693966c0da1b228415b1416cd3a7a3c25212d0c29839054739aa3fb821a9b429166d8be3e1c58bdcacdacc25fc2c9664e3aadc8aa40c060ec11fc7ca865145d

diff --git a/app-forensics/dfxml/dfxml-20170921.ebuild b/app-forensics/dfxml/dfxml-20170921.ebuild
new file mode 100644
index 00000000000..fa4fcd22ca6
--- /dev/null
+++ b/app-forensics/dfxml/dfxml-20170921.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools
+
+DESCRIPTION="Digital Forensics XML"
+HOMEPAGE="https://github.com/simsong/dfxml"
+SRC_URI="https://api.github.com/repos/simsong/${PN}/tarball/7d11eaa7da8d31f588ce8aecb4b4f5e7e8169ba6 -> ${P}.tar.gz"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+	dev-libs/expat
+"
+RDEPEND="
+	${DEPEND}
+"
+
+S=${WORKDIR}/${P}/src
+
+src_unpack() {
+	unpack ${A}
+	mv simsong-dfxml-* ${P} || die
+}
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_install() {
+	default
+
+	insinto /usr/share/aclocal
+	doins dfxml_configure.m4
+}

diff --git a/app-forensics/dfxml/dfxml-99999999.ebuild b/app-forensics/dfxml/dfxml-99999999.ebuild
new file mode 100644
index 00000000000..1ec11d75492
--- /dev/null
+++ b/app-forensics/dfxml/dfxml-99999999.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools git-r3
+
+DESCRIPTION="Digital Forensics XML"
+HOMEPAGE="https://github.com/simsong/dfxml"
+EGIT_REPO_URI="${HOMEPAGE}"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS=""
+
+DEPEND="
+	dev-libs/expat
+"
+RDEPEND="
+	${DEPEND}
+"
+
+S=${WORKDIR}/${P}/src
+
+src_prepare() {
+	default
+
+	eautoreconf
+}
+
+src_install() {
+	default
+
+	insinto /usr/share/aclocal
+	doins dfxml_configure.m4
+}

diff --git a/app-forensics/dfxml/metadata.xml b/app-forensics/dfxml/metadata.xml
new file mode 100644
index 00000000000..825589988b4
--- /dev/null
+++ b/app-forensics/dfxml/metadata.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="project">
+<email>netmon@gentoo.org</email>
+</maintainer>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-forensics/dfxml/
@ 2023-10-08 18:32 David Seifert
  0 siblings, 0 replies; 5+ messages in thread
From: David Seifert @ 2023-10-08 18:32 UTC (permalink / raw
  To: gentoo-commits

commit:     48979fa384ee620ea0b5ec71375b3f65f4ebdd8c
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  8 18:32:23 2023 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Oct  8 18:32:23 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48979fa3

app-forensics/dfxml: drop 99999999

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 app-forensics/dfxml/dfxml-99999999.ebuild | 28 ----------------------------
 1 file changed, 28 deletions(-)

diff --git a/app-forensics/dfxml/dfxml-99999999.ebuild b/app-forensics/dfxml/dfxml-99999999.ebuild
deleted file mode 100644
index c51103649341..000000000000
--- a/app-forensics/dfxml/dfxml-99999999.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools git-r3
-
-DESCRIPTION="Digital Forensics XML"
-HOMEPAGE="https://github.com/simsong/dfxml"
-EGIT_REPO_URI="https://github.com/simsong/dfxml"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS=""
-
-DEPEND="
-	dev-libs/expat
-"
-RDEPEND="
-	${DEPEND}
-"
-
-S=${WORKDIR}/${P}/src
-
-src_prepare() {
-	default
-
-	eautoreconf
-}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-forensics/dfxml/
@ 2023-10-08 18:32 David Seifert
  0 siblings, 0 replies; 5+ messages in thread
From: David Seifert @ 2023-10-08 18:32 UTC (permalink / raw
  To: gentoo-commits

commit:     38c1341fb4449782827efd6414ae094c85946e42
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  8 18:32:24 2023 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Oct  8 18:32:24 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38c1341f

app-forensics/dfxml: update EAPI 6 -> 8

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 ...ml-20170921-r1.ebuild => dfxml-20170921-r2.ebuild} | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

diff --git a/app-forensics/dfxml/dfxml-20170921-r1.ebuild b/app-forensics/dfxml/dfxml-20170921-r2.ebuild
similarity index 76%
rename from app-forensics/dfxml/dfxml-20170921-r1.ebuild
rename to app-forensics/dfxml/dfxml-20170921-r2.ebuild
index d291bbf43c4d..2cd2be159d72 100644
--- a/app-forensics/dfxml/dfxml-20170921-r1.ebuild
+++ b/app-forensics/dfxml/dfxml-20170921-r2.ebuild
@@ -1,33 +1,28 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
+
 inherit autotools
 
 DESCRIPTION="Digital Forensics XML"
 HOMEPAGE="https://github.com/simsong/dfxml"
 SRC_URI="https://api.github.com/repos/simsong/${PN}/tarball/7d11eaa7da8d31f588ce8aecb4b4f5e7e8169ba6 -> ${P}.tar.gz"
+S="${WORKDIR}/${P}/src"
 
 LICENSE="LGPL-3"
 SLOT="0"
 KEYWORDS="~amd64"
 
-DEPEND="
-	dev-libs/expat
-"
-RDEPEND="
-	${DEPEND}
-"
-
-S=${WORKDIR}/${P}/src
+DEPEND="dev-libs/expat:="
+RDEPEND="${DEPEND}"
 
 src_unpack() {
-	unpack ${A}
+	default
 	mv simsong-dfxml-* ${P} || die
 }
 
 src_prepare() {
 	default
-
 	eautoreconf
 }


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-forensics/dfxml/
@ 2023-10-08 18:32 David Seifert
  0 siblings, 0 replies; 5+ messages in thread
From: David Seifert @ 2023-10-08 18:32 UTC (permalink / raw
  To: gentoo-commits

commit:     b36eea88d9c76e122cb01c247cd111fb8d87b8f9
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  8 18:32:22 2023 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Oct  8 18:32:22 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b36eea88

app-forensics/dfxml: format metadata.xml

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 app-forensics/dfxml/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-forensics/dfxml/metadata.xml b/app-forensics/dfxml/metadata.xml
index c73b0839b368..f40d277e6b81 100644
--- a/app-forensics/dfxml/metadata.xml
+++ b/app-forensics/dfxml/metadata.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer type="project">
-<email>netmon@gentoo.org</email>
-</maintainer>
+	<maintainer type="project">
+		<email>netmon@gentoo.org</email>
+	</maintainer>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-10-08 18:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-24 19:20 [gentoo-commits] repo/gentoo:master commit in: app-forensics/dfxml/ Jeroen Roovers
  -- strict thread matches above, loose matches on Subject: below --
2017-09-24 19:20 Jeroen Roovers
2023-10-08 18:32 David Seifert
2023-10-08 18:32 David Seifert
2023-10-08 18:32 David Seifert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox