From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EB6E51396D0 for ; Sun, 24 Sep 2017 19:20:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C42A2BC029; Sun, 24 Sep 2017 19:20:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 25C4E2BC00E for ; Sun, 24 Sep 2017 19:20:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1D1CE33BF47 for ; Sun, 24 Sep 2017 19:20:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9CEAC8F66 for ; Sun, 24 Sep 2017 19:20:55 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1506280843.b17291d12e89bfce6922771c176c27eb80a7c649.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/dfxml/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-forensics/dfxml/Manifest app-forensics/dfxml/dfxml-20170921.ebuild app-forensics/dfxml/dfxml-99999999.ebuild app-forensics/dfxml/metadata.xml X-VCS-Directories: app-forensics/dfxml/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: b17291d12e89bfce6922771c176c27eb80a7c649 X-VCS-Branch: master Date: Sun, 24 Sep 2017 19:20:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 513e5b62-78f8-4c7f-be9d-2d6e9fdaf97a X-Archives-Hash: 68ea3f7f825c7ce4d9dd9da462cf8f59 commit: b17291d12e89bfce6922771c176c27eb80a7c649 Author: Jeroen Roovers gentoo org> AuthorDate: Sun Sep 24 10:27:26 2017 +0000 Commit: Jeroen Roovers gentoo 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 @@ + + + + +netmon@gentoo.org + +