diff --git a/MANIFEST.in b/MANIFEST.in index a17ee1f..9e1fa5e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,3 +2,7 @@ exclude .gitignore exclude .gitreview global-exclude *.pyc + +include *.txt *.ini *.cfg *.rst *.md + +recursive-include monikerclient * diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..4600344 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +python-monikerclient (0.0-1) quantal; urgency=low + + * Initial packaging + + -- Kiall Mac Innes Mon, 29 Oct 2012 21:03:33 +0000 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..3b82a82 --- /dev/null +++ b/debian/control @@ -0,0 +1,38 @@ +Source: python-monikerclient +Section: python +Priority: extra +Maintainer: Kiall Mac Innes +Build-Depends: + debhelper (>= 8.0.0), + python-all (>= 2.6), + git +Build-Depends-Indep: + python-setuptools, + python-setuptools-git +Standards-Version: 3.9.3 +XS-Python-Version: >= 2.6 +Homepage: https://launchpad.net/python-monikerclient/ +Vcs-Git: git://github.com/managedit/python-monikerclient.git +Vcs-Browser: http://github.com/managedit/python-monikerclient + +Package: python-monikerclient +Architecture: all +Depends: + python-cliff, + python-pyparsing, + ${python:Depends}, + ${misc:Depends} +Provides: + ${python:Provides} +XB-Python-Version: ${python:Versions} +Description: Moniker Python Client Library + Moniker Python Client Library + +Package: monikerclient +Architecture: all +Depends: + python-monikerclient (= ${binary:Version}), + ${python:Depends}, + ${misc:Depends} +Description: Moniker CLI Client + Moniker CLI Client diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..117b64a --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,5 @@ +[DEFAULT] +pristine-tar = False +upstream-tree = branch +upstream-branch = master +debian-branch = debian diff --git a/debian/monikerclient.install b/debian/monikerclient.install new file mode 100644 index 0000000..ca1a1dd --- /dev/null +++ b/debian/monikerclient.install @@ -0,0 +1 @@ +usr/bin/moniker diff --git a/debian/python-monikerclient.install b/debian/python-monikerclient.install new file mode 100644 index 0000000..036c6b9 --- /dev/null +++ b/debian/python-monikerclient.install @@ -0,0 +1 @@ +usr/lib/python*/dist-packages/* diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..607c494 --- /dev/null +++ b/debian/rules @@ -0,0 +1,21 @@ +#!/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. +# +# Modified to make a template file for a multi-binary package with separated +# build-arch and build-indep targets by Bill Allombert 2001 + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This has to be exported to make some magic below work. +export DH_OPTIONS + + +%: + dh $@ --with python2 diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)