Your message dated Sun, 16 Mar 2014 23:41:52 +0100
with message-id <[email protected]>
and subject line Re: Bug#138443: debootstrap using files for list of packages 
to include/exclude
has caused the Debian Bug report #138443,
regarding debootstrap using files for list of packages to include/exclude
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
138443: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=138443
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: debootstrap
Version: 0.1.16.3
Severity: wishlist
Tags: patch

Here is a patch that add 2 options so you can get the list of packages to
include/exclude from files.

--- debootstrap.orig    Fri Mar 15 12:55:29 2002
+++ debootstrap Fri Mar 15 13:20:30 2002
@@ -27,7 +27,9 @@
       --boot-floppies        used for internal purposes by boot-floppies
       --help                 display this help and exit
       --include=A,B,C        adds specified names to the list of base packages
+      --file-include=file    adds package listed in file to the list of base 
packages
       --exclude=A,B,C        removes specified packages from the list
+      --file-exclude=file    removes packages specified in file from the list
       --verbose              don't turn off the output of wget
 EOF
 }
@@ -77,8 +79,28 @@
     export additional=$(echo $1 | cut -f2 -d"="|tr , " ")
     shift 1
     ;;
+  --file-include*)
+    fn=$(echo $1 | cut -f2 -d"=")
+    additional=""
+    for pkg in $(cat $fn)
+    do
+        additional="$additional $pkg"
+    done
+    export additional
+    shift 1
+    ;;
   --exclude*)
     export exclude=$(echo $1 | cut -f2 -d"="|tr , " ")
+    shift 1
+    ;;
+  --file-exclude*)
+    fn=$(echo $1 | cut -f2 -d"=")
+    exclude=""
+    for pkg in $(cat $fn)
+    do
+        exclude="$exclude $pkg"
+    done
+    export exclude
     shift 1
     ;;
   --verbose)



-- System Information
Debian Release: 3.0
Architecture: i386
Kernel: Linux galaad 2.4.9 #1 Tue Oct 2 14:44:17 CEST 2001 i686
Locale: LANG=C, LC_CTYPE=fr_BE

Versions of packages debootstrap depends on:
ii  libc6                         2.2.5-3    GNU C Library: Shared libraries an
ii  wget                          1.8.1-4    retrieves files from the web



--- End Message ---
--- Begin Message ---
Cyril Brulebois <[email protected]> (2014-03-16):
> (Tagging moreinfo for now, but could be wontfix or -done@.)

[email protected]
  SMTP error from remote mail server after RCPT TO:<[email protected]>: 
  host smtp.secureserver.net [72.167.238.201]: 550 #5.1.0 Address rejected.

→ -done@.

Mraw,
KiBi.

Attachment: signature.asc
Description: Digital signature


--- End Message ---

Reply via email to