From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?Beno=C3=AEt=20Allard?= Date: Tue, 7 Mar 2017 09:42:18 +0100 Subject: [Buildroot] [PATCH v2 1/1] dc3dd: new package In-Reply-To: <1488607456-30096-1-git-send-email-benoit.allard@greenbone.net> References: <1488607456-30096-1-git-send-email-benoit.allard@greenbone.net> Message-ID: <1488876138-19003-1-git-send-email-benoit.allard@greenbone.net> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net We actually prefer the version 7.2.641 (over 7.2.646) as the content of the release is identical and the 641 has the advantage of providing a proper .tar.xz file. Signed-off-by: Beno?t Allard --- Changes v1 -> v2 (Suggestions by Arnoud) - Fix line lengths in Config.in - Add a locally calculated sha256 - Use a version that has a proper tar.xz file - Correct license to be GPLv3+ - Add dependency on THREADS - Add conflict with musl - Add patch to not build the manpage --- DEVELOPERS | 3 +++ package/Config.in | 1 + package/dc3dd/0001-no_man.patch | 12 ++++++++++++ package/dc3dd/Config.in | 9 +++++++++ package/dc3dd/dc3dd.hash | 4 ++++ package/dc3dd/dc3dd.mk | 13 +++++++++++++ 6 files changed, 42 insertions(+) create mode 100644 package/dc3dd/0001-no_man.patch create mode 100644 package/dc3dd/Config.in create mode 100644 package/dc3dd/dc3dd.hash create mode 100644 package/dc3dd/dc3dd.mk diff --git a/DEVELOPERS b/DEVELOPERS index ff72ca1..e0a28a6 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -147,6 +147,9 @@ F: package/taskd/ N: Benjamin Kamath F: package/lapack/ +N: Beno?t Allard +F: package/dc3dd/ + N: Bernd Kuhls F: package/apache/ F: package/apr/ diff --git a/package/Config.in b/package/Config.in index cfe7fc6..d0fdca4 100644 --- a/package/Config.in +++ b/package/Config.in @@ -1767,6 +1767,7 @@ menu "System tools" source "package/cpuload/Config.in" source "package/dcron/Config.in" source "package/ddrescue/Config.in" + source "package/dc3dd/Config.in" source "package/debianutils/Config.in" source "package/docker-containerd/Config.in" source "package/docker-engine/Config.in" diff --git a/package/dc3dd/0001-no_man.patch b/package/dc3dd/0001-no_man.patch new file mode 100644 index 0000000..07bf713 --- /dev/null +++ b/package/dc3dd/0001-no_man.patch @@ -0,0 +1,12 @@ +--- a/Makefile.in 2017-03-06 16:42:29.728814841 +0100 ++++ b/Makefile.in 2017-03-06 16:42:54.191899036 +0100 +@@ -685,7 +685,7 @@ + target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ +-SUBDIRS = lib src man po ++SUBDIRS = lib src po + EXTRA_DIST = cfg.mk maint.mk \ + .prev-version THANKS-to-translators THANKStt.in \ + .version \ + diff --git a/package/dc3dd/Config.in b/package/dc3dd/Config.in new file mode 100644 index 0000000..de8fec1 --- /dev/null +++ b/package/dc3dd/Config.in @@ -0,0 +1,9 @@ +config BR2_PACKAGE_DC3DD + bool "dc3dd" + help + dc3dd is a patch to the GNU dd program, this version has + several features intended for forensic acquisition of data. + Highlights include hashing on-the-fly, split output files, + pattern writing, a progress meter, and file verification. + + https://sourceforge.net/projects/dc3dd/ diff --git a/package/dc3dd/dc3dd.hash b/package/dc3dd/dc3dd.hash new file mode 100644 index 0000000..5490d8d --- /dev/null +++ b/package/dc3dd/dc3dd.hash @@ -0,0 +1,4 @@ +# From https://sourceforge.net/projects/dc3dd/files/dc3dd/7.2/ +sha1 1bfe81a921a8473a6ecb46f328ecaab761afb55d dc3dd-7.2.641.tar.xz +# Locally computed +sha256 7f50aadc38649845ab11014d11013928411c9d2128c941e9630939d4c28cae6d dc3dd-7.2.641.tar.xz diff --git a/package/dc3dd/dc3dd.mk b/package/dc3dd/dc3dd.mk new file mode 100644 index 0000000..3c2aebe --- /dev/null +++ b/package/dc3dd/dc3dd.mk @@ -0,0 +1,13 @@ +################################################################################ +# +# dc3dd +# +################################################################################ + +DC3DD_VERSION = 7.2.641 +DC3DD_SOURCE = dc3dd-$(DC3DD_VERSION).tar.xz +DC3DD_SITE = https://downloads.sourceforge.net/project/dc3dd/dc3dd/7.2 +DC3DD_LICENSE = GPLv3+ +DC3DD_LICENSE_FILES = COPYING + +$(eval $(autotools-package)) -- 2.1.4