diff options
author | Ed Bartosh <eduard.bartosh@intel.com> | 2012-05-24 16:16:12 +0300 |
---|---|---|
committer | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2014-11-14 14:45:04 +0200 |
commit | fc30d408b984555489e3466c2eb2b0d3212219a0 (patch) | |
tree | 4464eabad01c2116d96123732074b37bd4a84233 /debian/control | |
parent | 185681604c4b3a953728bb9c4ae4dc5b7c5b7d4a (diff) | |
download | git-buildpackage-fc30d408b984555489e3466c2eb2b0d3212219a0.tar.gz git-buildpackage-fc30d408b984555489e3466c2eb2b0d3212219a0.tar.bz2 git-buildpackage-fc30d408b984555489e3466c2eb2b0d3212219a0.zip |
debian packaging: introduce -common subpackage
Split the git-buildpackage into git-buildpackage and
git-buildpackage-common. Now there are three binary packages:
- git-buildpackage-common contains the common code for Deb and RPM tools
- git-buildpackage contains the Debian-specific modules/tools
- git-buildpackage-rpm contains the RPM-specific modules/tools
After this change the Debian packaging resembles the RPM side packaging.
Signed-off-by: Zhang Qiang <qiang.z.zhang@intel.com>
Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Diffstat (limited to 'debian/control')
-rw-r--r-- | debian/control | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/debian/control b/debian/control index e9cc8932..c7347fa6 100644 --- a/debian/control +++ b/debian/control @@ -33,17 +33,28 @@ Vcs-Browser: https://honk.sigxcpu.org/gitweb/?p=git-buildpackage.git Homepage: https://honk.sigxcpu.org/piki/projects/git-buildpackage/ X-Python-Version: >= 2.6 -Package: git-buildpackage + +Package: git-buildpackage-common Architecture: all Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}, - devscripts (>= 2.13.5~), git (>= 1:1.7.9.1-1~), man-db, - python-pkg-resources, -Recommends: pristine-tar (>= 0.5), cowbuilder + python-pkg-resources +Recommends: pristine-tar (>= 0.5) Suggests: python-notify, unzip, zipmerge +Description: Suite to help with packaging in Git repositories + This package contains the common API and scripts for Debian and rpm packaging + +Package: git-buildpackage +Architecture: all +Depends: ${python:Depends}, + ${shlibs:Depends}, + ${misc:Depends}, + devscripts (>= 2.13.5~), + git-buildpackage-common (= ${binary:Version}) +Recommends: cowbuilder Description: Suite to help with Debian packages in Git repositories This package contains the following tools: * gbp import-{dsc,dscs}: import existing Debian source packages into a git @@ -60,12 +71,14 @@ Package: git-buildpackage-rpm Architecture: all Depends: ${python:Depends}, ${misc:Depends}, - git-buildpackage (= ${binary:Version}), + git-buildpackage-common (= ${binary:Version}), python-rpm, rpm, -Recommends: pristine-tar (>= 0.5) -Suggests: python-notify, unzip Description: Suite to help with RPM packages in Git repositories This package contains the following tools: * gbp import-srpm: import existing RPM source packages into a git repository + * git-import-orig-rpm: import a new upstream version into the git repository + * git-buildpackage-rpm: build a package out of a git repository, check for local + modifications and tag appropriately + * gbp-pq-rpm: manage separate development and packaging branches |