Codebase list cli-common / 5ff0b98
* update to 0.4.8 Sebastian Dröge 17 years ago
2 changed file(s) with 18 addition(s) and 10 deletion(s). Raw diff Collapse all Expand all
0 cli-common (0.4.8) unstable; urgency=low
1
2 * debian/control,
3 debian/cli-policy.sgml:
4 + Update to use my debian.org mail address
5
6 -- Sebastian Dröge <slomo@debian.org> Mon, 8 Jan 2007 00:41:51 +0100
0 cli-common (0.4.8) experimental; urgency=low
1
2 * Sebastian 'slomo' Dröge:
3 + debian/rules:
4 - Add binary-arch target (Closes: #395583)
5 + debian/control,
6 debian/cli-policy.sgml:
7 - Update to use my debian.org mail address
8 * Mirco 'meebey' Bauer':
9 + dh_clideps:
10 - Add support for kfreebsd-i386 and kfreebsd-amd64
11
12 -- Sebastian Dröge <slomo@debian.org> Tue, 27 Feb 2007 14:37:02 +0100
713
814 cli-common (0.4.7) unstable; urgency=low
915
388388 $newpkgref =~ m/(\S+)(?:\s+(\(\S+\s+\S+\)))?/;
389389 my $pkgname = $1;
390390 my $ver = $2;
391 # hack for libc6, for ia64 and alpha the package name is libc6.1
392 if ($pkgname =~ m/^libc6/) {
393 $newpkgref = "libc6 $ver | libc6.1 $ver";
391 # hack for libc6,
392 # for ia64 and alpha the package name is libc6.1,
393 # for kfreebsd-i386 and kfreebsd-amd64 it is libc0.1
394 if ($pkgname =~ m/^libc[06]/) {
395 $newpkgref = "libc6 $ver | libc6.1 $ver | libc0.1 $ver";
394396 }
395397
396398 my %overridedata;