From f70c83aa0815295fb23a1a5e5502b477d12c2a42 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 18 May 2016 18:10:01 +0200 Subject: [PATCH] add debian packaging --- MANIFEST.in | 2 ++ debian/changelog | 5 +++++ debian/clean | 1 + debian/compat | 1 + debian/control | 14 ++++++++++++++ debian/copyright | 25 +++++++++++++++++++++++++ debian/pydist-overrides | 3 +++ debian/rules | 6 ++++++ 8 files changed, 57 insertions(+) create mode 100644 MANIFEST.in create mode 100644 debian/changelog create mode 100644 debian/clean create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/pydist-overrides create mode 100755 debian/rules diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..0d8124e --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include VERSION +include create_dates.sql diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..407179f --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +publik-bi (0.0.0-1) jessie; urgency=low + + * Initial package, targetting jessie. + + -- Benjamin Dauvergne Mon, 18 May 2016 13:59:28 +0200 diff --git a/debian/clean b/debian/clean new file mode 100644 index 0000000..d18410f --- /dev/null +++ b/debian/clean @@ -0,0 +1 @@ +wcs-olap.egg-info/* diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..d865e76 --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: publik-bi +Section: python +Priority: optional +Maintainer: Benjamin Dauvergne +Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6), debhelper (>= 7.4.3) +Standards-Version: 3.9.1 +X-Python-Version: >= 2.7 +Homepage: http://dev.entrouvert.org/projects/publik-bi/ + +Package: publik-bi +Architecture: all +Depends: ${python:Depends} +XB-Python-Version: ${python:Versions} +Description: Publik BI tools diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..21f55d4 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by Benjamin Dauvergne on +Mon, 18 May 2016 21:00:09 +0200 + +Upstream Author: Benjamin Dauvergne + +Copyright (c) 2016 Entr'ouvert; + +License is GNU GPL v3. + +This program is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the Free +Software Foundation; either version 3 of the License, or (at your option) +any later version. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License along with +this program; if not, write to the Free Software Foundation, Inc., 59 Temple +Place - Suite 330, Boston, MA 02111-1307, USA. + +On Debian GNU/Linux systems, the complete text of the GNU General Public +License can be found in `/usr/share/common-licenses/GPL'. diff --git a/debian/pydist-overrides b/debian/pydist-overrides new file mode 100644 index 0000000..b23a298 --- /dev/null +++ b/debian/pydist-overrides @@ -0,0 +1,3 @@ +python-ldap python-ldap +isodate python-isodate +psycopg2 python-psycopg2 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..46f5b5d --- /dev/null +++ b/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f + +%: + dh $@ --with python2 + +