Package: devscripts
Version: 2.10.10
Followup-For: Bug #448000
Hi,
please find attached a patch for the reported problem.
Regards,
Patrick
-- System Information:
Debian Release: lenny/sid
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.22-2-k7 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages devscripts depends on:
ii debianutils 2.26 Miscellaneous utilities specific t
ii dpkg-dev 1.14.7 package building tools for Debian
ii libc6 2.6.1-6 GNU C Library: Shared libraries
ii perl 5.8.8-11.1 Larry Wall's Practical Extraction
ii sed 4.1.5-4 The GNU sed stream editor
Versions of packages devscripts recommends:
ii fakeroot 1.8.2 Gives a fake root environment
-- no debconf information
Index: debian/changelog
===================================================================
--- debian/changelog (Revision 819)
+++ debian/changelog (Arbeitskopie)
@@ -21,8 +21,11 @@
* debcommit: Name git tags "debian/$version" or just with the package
version number for native version numbers. Closes: #446699
- -- Adam D. Barratt <[EMAIL PROTECTED]> Mon, 22 Oct 2007 18:49:49 +0100
+ [ Patrick Schoenfeld ]
+ * licensecheck: Implemented checking for ISC license (Closes: #448000)
+ -- Patrick Schoenfeld <[EMAIL PROTECTED]> Thu, 25 Oct 2007 11:07:26 +0200
+
devscripts (2.10.9) unstable; urgency=low
[ Mohammed Adnène Trojette ]
Index: scripts/licensecheck.pl
===================================================================
--- scripts/licensecheck.pl (Revision 819)
+++ scripts/licensecheck.pl (Arbeitskopie)
@@ -398,6 +398,11 @@
}
}
+ if ($licensetext =~ /Permission to use, copy, modify, and\/or distribute this software for any purpose with or without fee is hereby granted, provided.*copyright notice.*permission notice.*all copies/)
+ {
+ $license = "ISC";
+ }
+
if ($licensetext =~ /Mozilla Public License Version ([^ ]+)/) {
$license = "MPL (v$1) $license";
}