+2008-02-07 Guillem Jover <guillem@debian.org>
+
+ * scripts/dpkg-gencontrol.pl: Do not output the Homepage field on udeb.
+
2008-02-04 Guillem Jover <guillem@debian.org>
* libcompat/Makefile.am (localedir): Remove unused variable.
* Add Raphael Hertzog to Uploaders, and remove Brendan O'Dea and
Christian Perrier with their permission.
* Use functions from libcompat when those are not provided by the system.
+ * Change dpkg-gencontrol to not output the Homapage field on udeb.
[ Raphael Hertzog ]
* Add a warning displayed by dpkg-genchanges if the current version is
$package_type = $fields->{'Package-Type'} if (defined($fields->{'Package-Type'}));
-if ($package_type ne 'udeb') {
+if ($package_type eq 'udeb') {
+ delete $fields->{'Homepage'};
+} else {
for my $f (qw(Subarchitecture Kernel-Version Installer-Menu-Item)) {
warning(_g("%s package with udeb specific field %s"), $package_type, $f)
if defined($fields->{$f});