From d930180e1572850c973bb29d43b1279d2e657d52 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Tue, 17 Jun 2014 19:28:16 +0200 Subject: Add Debian packaging --- debian/changelog | 6 ++++++ debian/compat | 1 + debian/control | 20 ++++++++++++++++++++ debian/copyright | 13 +++++++++++++ debian/dirs | 1 + debian/gbp.conf | 4 ++++ debian/rules | 10 ++++++++++ 7 files changed, 55 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/dirs create mode 100644 debian/gbp.conf create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..5c4701f --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +stagepkg (0.0.1-1) unstable; urgency=low + + * Initial Release. + + -- Guido Günther Tue, 17 Jun 2014 14:48:48 +0200 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..b4658ee --- /dev/null +++ b/debian/control @@ -0,0 +1,20 @@ +Source: stagepkg +Section: admin +Priority: optional +Maintainer: Guido Günther +Build-Depends: debhelper (>= 9), python-setuptools, python +Standards-Version: 3.9.5 +X-Python-Version: >= 2.7 + +Package: stagepkg +Architecture: all +Depends: ${misc:Depends}, + ${python:Depends}, + gnupg, + python-pkg-resources +Description: Move Packages between repositories + Using stagepkg you can move packages between different dinstall + managed repositores. This can be useful in continuous delivery + scenarios to move packages between different stages. + . + It allows one to resign the changes file on the fly. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..c9a513e --- /dev/null +++ b/debian/copyright @@ -0,0 +1,13 @@ +This package was debianized by Guido Günther in the +distant past. + +It was downloaded from https://honk.sigxcpu.org/piki/projects/stagepkg/ + +Copyright Holder: 2014 Guido Günther + +License: + +You are free to distribute this software under the terms of the GNU General +Public License Version 2. The full text of this license can be found in the +file /usr/share/common-licenses/GPL-2 + diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..e772481 --- /dev/null +++ b/debian/dirs @@ -0,0 +1 @@ +usr/bin diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..9678e28 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,4 @@ +[DEFAULT] +debian-branch = debian/master +upstream-tag = v%(version)s +upstream-branch = master diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..cb87dae --- /dev/null +++ b/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +%: + dh $@ --with python2 -- cgit v1.2.3