Codebase list debian-goodies / 642b18a
Imported Debian version 0.58 Javier Fernandez-Sanguino 12 years ago
2 changed file(s) with 10 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 debian-goodies (0.58) unstable; urgency=low
1
2 * [dglob]
3 - Remove any empty lines from grep-dctrl's output (Closes: 646189)
4
5 -- Javier Fernandez-Sanguino Pen~a <jfs@debian.org> Sun, 23 Oct 2011 13:54:27 +0200
6
07 debian-goodies (0.57) unstable; urgency=low
18
29 * [checkrestart]:
1219 * [checkrestart]:
1320 - Use patch provided by Jörg Sommer and Piotr Kaczuba that makes the
1421 script use a set for the initscripts information, thus making the
15 program work with Python 2.7 (Closes: #64397)
22 program work with Python 2.7 (Closes: #643977)
1623 - Fix behaviour of -p so that it does not consider files that do
1724 not belong to any package, thanks to Peter Eisentraut for the
1825 patch. (Closes: #608387)
5757 if [ -z "$packages" ] ; then
5858 exit 1
5959 fi
60 eval $filter /var/lib/dpkg/status | grep-dctrl -PnsPackage $grep_dctrl_options "$1" |
60 eval $filter /var/lib/dpkg/status | grep-dctrl -PnsPackage $grep_dctrl_options "$1" | grep -v ^$ |
6161 (eval $expand)
6262 else
6363 # Use grep-available as the status file does not include all available
6464 # packages
65 grep-aptavail -PnsPackage $grep_dctrl_options "$1" |
65 grep-aptavail -PnsPackage $grep_dctrl_options "$1" | grep -v ^$ |
6666 (eval $expand)
6767 fi