X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=admin%2Fdebootstrap%2FMakefile;h=ad3f8fff1cb9b09476a79b0f9aab01c7627cd35e;hb=7e63ae14901e312d4908f3f179de3054cd9f37c1;hp=82c81e95d147a3c6f0680d9cd30357382d87cad3;hpb=2cb1c511ad6795d412af1f5fed65a8f726aa658d;p=packages.git diff --git a/admin/debootstrap/Makefile b/admin/debootstrap/Makefile index 82c81e95d..ad3f8fff1 100644 --- a/admin/debootstrap/Makefile +++ b/admin/debootstrap/Makefile @@ -1,6 +1,6 @@ # # Copyright (C) 2010 Gianluigi Tiesi -# Copyright (C) 2011-2012 OpenWrt.org +# Copyright (C) 2011-2013 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,14 +9,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=debootstrap -PKG_VERSION:=1.0.38 +PKG_VERSION:=1.0.60~bpo70+1 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-udeb_$(PKG_VERSION)_all.udeb PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/d/debootstrap -PKG_MD5SUM:=9bc9c55504c73bad27105aeed1a94f42 +PKG_MD5SUM:=6d4e3b97981b9e0bb86f49d8edac91af -UNPACK_CMD=ar -p "$(DL_DIR)/$(PKG_SOURCE)" data.tar.gz | ( cd $(1) && tar -xzf - ) +UNPACK_CMD=ar -p "$(DL_DIR)/$(PKG_SOURCE)" data.tar.xz | xzcat | tar -C $(1) -xf - include $(INCLUDE_DIR)/package.mk @@ -25,19 +25,18 @@ define Package/debootstrap CATEGORY:=Administration TITLE:=Bootstrap a basic Debian system URL:=http://wiki.debian.org/Debootstrap - DEPENDS:=+coreutils-chroot +coreutils-sha1sum - MAINTAINER:=Luka Perkov + DEPENDS:= +coreutils +coreutils-chroot +coreutils-sha1sum endef define Package/debootstrap/description debootstrap is used to create a Debian base system from scratch, without requiring the availability of dpkg or apt. It does this by downloading .deb files from a mirror site, and carefully unpacking them into a directory which - can eventually be chrooted into. + can eventually be chrooted into. endef define Build/Compile -# file pkgdetails.c was imported from debian package base-installer version 1.122 +# file pkgdetails.c was imported from debian package base-installer version 1.130 $(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) ./files/pkgdetails.c -o $(PKG_BUILD_DIR)/usr/share/debootstrap/pkgdetails endef @@ -47,6 +46,7 @@ define Package/debootstrap/install $(INSTALL_DIR) $(1)/usr/share/debootstrap $(INSTALL_BIN) $(PKG_BUILD_DIR)/usr/share/debootstrap/pkgdetails $(1)/usr/share/debootstrap $(INSTALL_DATA) $(PKG_BUILD_DIR)/usr/share/debootstrap/functions $(1)/usr/share/debootstrap + $(INSTALL_DATA) $(PKG_BUILD_DIR)/usr/share/debootstrap/devices.tar.gz $(1)/usr/share/debootstrap $(INSTALL_DIR) $(1)/usr/share/debootstrap/scripts $(INSTALL_DATA) $(PKG_BUILD_DIR)/usr/share/debootstrap/scripts/* $(1)/usr/share/debootstrap/scripts endef