Skip to content
Snippets Groups Projects
Commit 4c6c8975 authored by Scott Kitterman's avatar Scott Kitterman
Browse files

* Switch from using lsb-release to dpkg-vendor to determine distro and drop

  lsb-release from build-depends (Closes: #751706)
  - Thanks to Peter Pentchev for the patch
parent ee517d71
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,9 @@ python-defaults (2.7.7-1) UNRELEASED; urgency=medium ...@@ -10,6 +10,9 @@ python-defaults (2.7.7-1) UNRELEASED; urgency=medium
[ Scott Kitterman ] [ Scott Kitterman ]
* Fix error in pydist package relationship regex (Closes: #735163) * Fix error in pydist package relationship regex (Closes: #735163)
- Thanks to Rafael Laboissiere for the patch - Thanks to Rafael Laboissiere for the patch
* Switch from using lsb-release to dpkg-vendor to determine distro and drop
lsb-release from build-depends (Closes: #751706)
- Thanks to Peter Pentchev for the patch
-- Matthias Klose <doko@debian.org> Mon, 02 Jun 2014 19:54:25 +0200 -- Matthias Klose <doko@debian.org> Mon, 02 Jun 2014 19:54:25 +0200
......
...@@ -4,7 +4,7 @@ Priority: optional ...@@ -4,7 +4,7 @@ Priority: optional
Maintainer: Matthias Klose <doko@debian.org> Maintainer: Matthias Klose <doko@debian.org>
Uploaders: Scott Kitterman <scott@kitterman.com>, Piotr Ożarowski <piotr@debian.org>, Barry Warsaw <barry@debian.org> Uploaders: Scott Kitterman <scott@kitterman.com>, Piotr Ożarowski <piotr@debian.org>, Barry Warsaw <barry@debian.org>
Build-Depends: debhelper (>= 8~), python-docutils (>= 0.4-3), Build-Depends: debhelper (>= 8~), python-docutils (>= 0.4-3),
libhtml-tree-perl, debiandoc-sgml, lsb-release libhtml-tree-perl, debiandoc-sgml
Standards-Version: 3.9.5 Standards-Version: 3.9.5
Homepage: http://www.python.org/ Homepage: http://www.python.org/
Vcs-Bzr: http://alioth.debian.org/anonscm/bzr/pkg-python/python-defaults-debian Vcs-Bzr: http://alioth.debian.org/anonscm/bzr/pkg-python/python-defaults-debian
......
...@@ -2,9 +2,9 @@ Source: python-defaults ...@@ -2,9 +2,9 @@ Source: python-defaults
Section: python Section: python
Priority: optional Priority: optional
Maintainer: Matthias Klose <doko@debian.org> Maintainer: Matthias Klose <doko@debian.org>
Uploaders: Scott Kitterman <scott@kitterman.com>, Piotr Ożarowski <piotr@debian.org> Uploaders: Scott Kitterman <scott@kitterman.com>, Piotr Ożarowski <piotr@debian.org>, Barry Warsaw <barry@debian.org>
Build-Depends: debhelper (>= 8~), python-docutils (>= 0.4-3), Build-Depends: debhelper (>= 8~), python-docutils (>= 0.4-3),
libhtml-tree-perl, debiandoc-sgml, lsb-release libhtml-tree-perl, debiandoc-sgml
Standards-Version: 3.9.5 Standards-Version: 3.9.5
Homepage: http://www.python.org/ Homepage: http://www.python.org/
Vcs-Bzr: http://alioth.debian.org/anonscm/bzr/pkg-python/python-defaults-debian Vcs-Bzr: http://alioth.debian.org/anonscm/bzr/pkg-python/python-defaults-debian
......
...@@ -14,7 +14,7 @@ changelog_values := $(shell dpkg-parsechangelog \ ...@@ -14,7 +14,7 @@ changelog_values := $(shell dpkg-parsechangelog \
PKGSOURCE := $(word 1, $(changelog_values)) PKGSOURCE := $(word 1, $(changelog_values))
PKGVERSION := $(word 2, $(changelog_values)) PKGVERSION := $(word 2, $(changelog_values))
distribution := $(shell lsb_release -is) distribution := $(shell dpkg-vendor --query Vendor)
export VER=2.7 export VER=2.7
export NVER=2.8 export NVER=2.8
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment