From patchwork Thu Mar 2 15:27:04 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Beno=C3=AEt_Allard?= X-Patchwork-Id: 734642 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3vYxVN1bHPz9s7m for ; Fri, 3 Mar 2017 02:45:48 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 3BD3E30CB6; Thu, 2 Mar 2017 15:45:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DlTJ2VtinJBu; Thu, 2 Mar 2017 15:45:42 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 0F69630CB8; Thu, 2 Mar 2017 15:45:42 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id CEDE51C0E93 for ; Thu, 2 Mar 2017 15:45:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id C99E68A4FE for ; Thu, 2 Mar 2017 15:45:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id L7FbNdEPk-7F for ; Thu, 2 Mar 2017 15:45:39 +0000 (UTC) X-Greylist: delayed 00:17:41 by SQLgrey-1.7.6 Received: from mail.dn-systems.net (amalthea.dnx.de [193.108.181.146]) by hemlock.osuosl.org (Postfix) with ESMTPS id 19842822F7 for ; Thu, 2 Mar 2017 15:45:39 +0000 (UTC) Received: from relay.dn-systems.net ([2001:67c:274c:42::150]:51237) by mail.dn-systems.net with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1cjSe2-0006ya-TT for buildroot@buildroot.org; Thu, 02 Mar 2017 16:27:55 +0100 Received: from [212.95.124.162] (port=61791 helo=scaphoid.devel.greenbone.net) by relay.dn-systems.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1cjSdi-0007Yu-PE for buildroot@buildroot.org; Thu, 02 Mar 2017 16:27:34 +0100 Date: Thu, 02 Mar 2017 16:27:04 +0100 From: =?utf-8?Q?Beno=C3=AEt?= Allard To: buildroot@buildroot.org Message-ID: <20170302152704.AiJSy0RHm%benoit.allard@greenbone.net> User-Agent: mail v14.8.16 MIME-Version: 1.0 X-Scan-Signature: 845a1a291ddbae2454980b6167dc28e5 Subject: [Buildroot] (no subject) X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" From cba443f28cdc816450acd0f7cdcf47d7655dff04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Allard?= Date: Sat, 4 Mar 2017 00:31:42 +0100 Subject: [PATCH 1/1] dc3dd: new package MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Benoît Allard --- DEVELOPERS | 3 +++ package/Config.in | 1 + package/dc3dd/Config.in | 9 +++++++++ package/dc3dd/dc3dd.hash | 2 ++ package/dc3dd/dc3dd.mk | 19 +++++++++++++++++++ 5 files changed, 34 insertions(+) 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 1bf07c3..6ed713b 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -146,6 +146,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 921a06c..376c573 100644 --- a/package/Config.in +++ b/package/Config.in @@ -1762,6 +1762,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/Config.in b/package/dc3dd/Config.in new file mode 100644 index 0000000..0a2a32e --- /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..edd75c2 --- /dev/null +++ b/package/dc3dd/dc3dd.hash @@ -0,0 +1,2 @@ +# From https://sourceforge.net/projects/dc3dd/files/dc3dd/7.2.646/dc3dd%207.2.646/ +sha1 3d3d9ba5f3b18fbf4798e1f3554f2d34d0ce5e2c dc3dd-7.2.646.zip diff --git a/package/dc3dd/dc3dd.mk b/package/dc3dd/dc3dd.mk new file mode 100644 index 0000000..5a25bee --- /dev/null +++ b/package/dc3dd/dc3dd.mk @@ -0,0 +1,19 @@ +################################################################################ +# +# dc3dd +# +################################################################################ + +DC3DD_VERSION = 7.2.646 +DC3DD_SOURCE = dc3dd-$(DC3DD_VERSION).zip +DC3DD_SITE = http://downloads.sourceforge.net/project/dc3dd/dc3dd/$(DC3DD_VERSION)/dc3dd%20$(DC3DD_VERSION) +DC3DD_LICENSE = GPLv3 +DC3DD_LICENSE_FILES = COPYING + +define DC3DD_EXTRACT_CMDS + $(UNZIP) -d $(@D)/.. $(DL_DIR)/$(DC3DD_SOURCE) || true + chmod a+x $(@D)/configure + chmod a+x $(@D)/build-aux/install-sh +endef + +$(eval $(autotools-package))