From patchwork Thu Mar 17 15:06:39 2016 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: 599099 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 3qQsC46YwKz9sD5 for ; Fri, 18 Mar 2016 02:06:56 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id DB95293717; Thu, 17 Mar 2016 15:06:55 +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 oZUvs+Uel8fQ; Thu, 17 Mar 2016 15:06:54 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id D81F48B08B; Thu, 17 Mar 2016 15:06:53 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 499BF1C1EC3 for ; Thu, 17 Mar 2016 15:06:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 42CB38BC03 for ; Thu, 17 Mar 2016 15:06:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id j-N9fCiNOXWT for ; Thu, 17 Mar 2016 15:06:51 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from kolab.intevation.de (kolab.intevation.de [212.95.122.130]) by whitealder.osuosl.org (Postfix) with ESMTP id 308078A97E for ; Thu, 17 Mar 2016 15:06:51 +0000 (UTC) Received: from localhost (localhost.localdomain [127.0.0.1]) by kolab.intevation.de (Postfix) with ESMTP id 465A194D168 for ; Thu, 17 Mar 2016 16:06:49 +0100 (CET) X-Virus-Scanned: by amavisd-new at intevation.de Received: from localhost (localhost.localdomain [127.0.0.1]) by kolab.intevation.de (Postfix) with ESMTP id AD71494D16E for ; Thu, 17 Mar 2016 16:06:47 +0100 (CET) Received: from scaphoid.gb.intevation.de (scaphoid.gb.intevation.de [192.168.201.227]) by kolab.intevation.de (Postfix) with ESMTP id 94B9A94D166; Thu, 17 Mar 2016 16:06:47 +0100 (CET) From: =?UTF-8?q?Beno=C3=AEt=20Allard?= To: buildroot@buildroot.org Date: Thu, 17 Mar 2016 16:06:39 +0100 Message-Id: <1458227200-19903-1-git-send-email-benoit.allard@greenbone.net> X-Mailer: git-send-email 2.1.4 MIME-Version: 1.0 Cc: =?UTF-8?q?Beno=C3=AEt=20Allard?= Subject: [Buildroot] [PATCH 1/2] libdebian-installer: new package 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" This package is a mandatory dependency of cdebootstrap. Signed-off-by: BenoƮt Allard --- package/Config.in | 1 + package/libdebian-installer/Config.in | 11 +++++++++++ package/libdebian-installer/libdebian-installer.hash | 3 +++ package/libdebian-installer/libdebian-installer.mk | 19 +++++++++++++++++++ 4 files changed, 34 insertions(+) create mode 100644 package/libdebian-installer/Config.in create mode 100644 package/libdebian-installer/libdebian-installer.hash create mode 100644 package/libdebian-installer/libdebian-installer.mk diff --git a/package/Config.in b/package/Config.in index 2401867..db4ceab 100644 --- a/package/Config.in +++ b/package/Config.in @@ -1208,6 +1208,7 @@ menu "Other" source "package/libcroco/Config.in" source "package/libcrossguid/Config.in" source "package/libdaemon/Config.in" + source "package/libdebian-installer/Config.in" source "package/libee/Config.in" source "package/libev/Config.in" source "package/libevdev/Config.in" diff --git a/package/libdebian-installer/Config.in b/package/libdebian-installer/Config.in new file mode 100644 index 0000000..f3b0ed3 --- /dev/null +++ b/package/libdebian-installer/Config.in @@ -0,0 +1,11 @@ +config BR2_PACKAGE_LIBDEBIAN_INSTALLER + bool "libdebian-installer" + select BR2_PACKAGE_CHECK + help + This library is used by debian-installer to perform common + functions such as logging messages and executing commands. + If you aren't working on debian-installer or building your + own install system based on debian-installer, then you + probably don't need this library. + + http://debian.org diff --git a/package/libdebian-installer/libdebian-installer.hash b/package/libdebian-installer/libdebian-installer.hash new file mode 100644 index 0000000..1a647a8 --- /dev/null +++ b/package/libdebian-installer/libdebian-installer.hash @@ -0,0 +1,3 @@ +# Locally computed +sha256 5bf6c1b88e99164d0411f8434523f0f3b8e7e3902da17c55fee740ab34746ebf libdebian-installer_0.104.tar.xz + diff --git a/package/libdebian-installer/libdebian-installer.mk b/package/libdebian-installer/libdebian-installer.mk new file mode 100644 index 0000000..18330fc --- /dev/null +++ b/package/libdebian-installer/libdebian-installer.mk @@ -0,0 +1,19 @@ +################################################################################ +# +# libdebian-installer +# +################################################################################ + + +LIBDEBIAN_INSTALLER_VERSION = 0.104 +LIBDEBIAN_INSTALLER_SOURCE = libdebian-installer_$(LIBDEBIAN_INSTALLER_VERSION).tar.xz +LIBDEBIAN_INSTALLER_SITE = http://http.debian.net/debian/pool/main/libd/libdebian-installer +LIBDEBIAN_INSTALLER_LICENSE = GPLv2 +LIBDEBIAN_INSTALLER_LICENSE_FILES = debian/copyright +LIBDEBIAN_INSTALLER_INSTALL_STAGING = YES +LIBDEBIAN_INSTALLER_INSTALL_TARGET = YES +# Provided files are too old. +LIBDEBIAN_INSTALLER_AUTORECONF = YES +LIBDEBIAN_INSTALLER_DEPENDENCIES = check host-pkgconf + +$(eval $(autotools-package))