From a31936888923a862af91c2b0f1b1d3b4229e16da Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Fri, 6 Dec 2013 18:37:16 +0200 Subject: [PATCH] Packaged for Debian and Ubuntu Fixes: #1488 Change-Id: I1e51787ec214692cf2f812dd6dc8a8856b014b8c Signed-off-by: Ed Bartosh Reviewed-on: https://otctools.jf.intel.com/review/8367 Tested-by: OTC Tools Tester Reviewed-by: Markus Lehtonen Reviewed-by: Aleksi Hakli --- debian/changelog | 6 ++++++ debian/compat | 1 + debian/control | 22 ++++++++++++++++++++++ debian/copyright | 28 ++++++++++++++++++++++++++++ debian/rules | 4 ++++ 5 files changed, 61 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..5064bd4 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +repa (0.0.1) unstable; urgency=low + + * Initial packaging + + -- Ed Bartosh Fri, 06 Dec 2013 18:33:15 +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..5bdedf2 --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ +Source: repa +Maintainer: Ed Bartosh +Section: utils +Priority: optional +Build-Depends: debhelper (>= 9), + python-all (>= 2.6), + python-setuptools +Standards-Version: 3.8.4 +XS-Python-Version: >= 2.6 + +Package: repa +Architecture: all +Depends: python (>=2.6), + osc, + gbs-api, + ${misc:Depends}, + ${python:Depends} +Description: tool to help release engineers to maintain code submissions + Release Engineering Process Assistant(REPA) is a tool for release engineers + of Tizen projects. It allows to list submissions, accept or reject them and + group them into submission groups + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..ed758d3 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,28 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-name: repa +Upstream-Contact: Ed Bartosh +Source: git://review.otctools.jf.intel.com/repa.git + . + The initial package was put together by Ed Bartosh + on Sat Dec 6 18:30:19 EEST 2013. + +Files: * +Copyright: © 2013 Intel, Inc. +License: GPL-2 + +Files: debian/* +Copyright: © 2013 Intel, Inc. +License: GPL-2 + +License: GPL-2 + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License, version 2, + as published by the Free Software Foundation. + . + 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. +Comment: + On Debian systems, the full text of the GPL v2 can be found + in /usr/share/common-licenses/GPL-2. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..9c13336 --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ --with=python2 -- 2.7.4