use correct changelog urls for pve repositories.

We always use a changelog file for each package (not source package).
This commit is contained in:
Dietmar Maurer 2013-09-09 11:36:22 +02:00
parent 446b96693a
commit 8fd7134c67

View File

@ -99,10 +99,10 @@ my $get_changelog_url =sub {
} elsif ($origin eq 'Proxmox') { } elsif ($origin eq 'Proxmox') {
if ($component eq 'pve-enterprise') { if ($component eq 'pve-enterprise') {
$changelog_url = "https://enterprise.proxmox.com/debian/$base/" . $changelog_url = "https://enterprise.proxmox.com/debian/$base/" .
"${srcpkg}_${pkgver}.changelog"; "${pkgname}_${pkgver}.changelog";
} else { } else {
$changelog_url = "http://download.proxmox.com/debian/$base/" . $changelog_url = "http://download.proxmox.com/debian/$base/" .
"${srcpkg}_${pkgver}.changelog"; "${pkgname}_${pkgver}.changelog";
} }
} }
} }