dpkg-buildpackage ignora o Vcs-Git no debian / control

0

Estou construindo um pacote Debian e tenho o seguinte arquivo debian/control :

Source: custom-package
Section: custom
Priority: optional
Maintainer: Dusan Rychnovsky <[email protected]>
Build-Depends: debhelper (>= 8.0.0)
Standards-Version: 3.9.2
Vcs-Git: git://github.com/project/custom-project.git

Package: custom-package
Architecture: amd64
Section: custom
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Custom package description.

Quando executo dpkg-buildpackage -us -uc , o arquivo DEBIAN/control no pacote .deb gerado é o seguinte:

Package: custom-package
Version: 0.1-1
Architecture: amd64
Maintainer: Dusan Rychnovsky <[email protected]>
Installed-Size: 6528
Depends: libatlas3gf-base, libc6 (>= 2.7), libgcc1 (>= 1:4.1.1), libhdf5-openmpi-1.8.4, libjpeg62 (>= 6b1), libopenmpi1.3, libprotobuf7, libstdc++6 (>= 4.4.0)
Section: custom
Priority: optional
Description: Custom package description.

Parece que dpkg-buildpackage está ignorando a tag Vcs-Git .

O que estou fazendo de errado?

    
por Dušan Rychnovský 17.08.2015 / 13:10

1 resposta

2

Nada. Os campos VCS-* são para pacotes de origem, não para pacotes binários. Comparar:

$ apt-cache showsrc php5 | grep -i git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-php/php.git
Vcs-Git: git://anonscm.debian.org/pkg-php/php.git
$ apt-cache show php5 | grep -i git   
$
    
por muru 17.08.2015 / 13:33