jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/338374 )
Change subject: Add debian/ directory for packaging ...................................................................... Add debian/ directory for packaging Bug: T154588 Change-Id: Ic3d0282706fe307fb0dac2d77979bc1a06406ffb --- A debian/changelog A debian/compat A debian/control A debian/copyright A debian/cumin.dirs A debian/cumin.examples A debian/gbp.conf A debian/rules A debian/source/format 9 files changed, 71 insertions(+), 0 deletions(-) Approvals: Faidon Liambotis: Looks good to me, approved jenkins-bot: Verified diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..4096c4c --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +cumin (0.0.1-1) jessie-wikimedia; urgency=medium + + * Initial packaging. + + -- Riccardo Coccioli <[email protected]> Thu, 16 Feb 2017 11:15:24 +0100 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..c3de544 --- /dev/null +++ b/debian/control @@ -0,0 +1,26 @@ +Source: cumin +Section: python +Priority: optional +Maintainer: Riccardo Coccioli <[email protected]> +Standards-Version: 3.9.6 +Build-Depends: debhelper (>= 9), dh-python, python-all (>= 2.7), + python-setuptools, python-tqdm +Homepage: https://github.com/wikimedia/cumin +X-Python-Version: >= 2.7 + +Package: cumin +Architecture: any +Depends: ${python:Depends}, ${misc:Depends} +Description: Automation and orchestration framework written in Python + Cumin provides a flexible and scalable automation framework to + execute multiple commands on multiple targets in parallel. + . + It allows one to easily perform complex selections of hosts through + a user-friendly query language which can interface with different + backend modules. + . + The transport layer can also be selected, providing multiple + execution strategies. + . + It can be used both via its command line interface (CLI) and as a + Python library. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..1fee659 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,25 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: cumin +Source: https://github.com/wikimedia/cumin + +Files: * +Copyright: 2017 Riccardo Coccioli <[email protected]> + 2017 Wikimedia Foundation, Inc. +License: GPL-3.0+ + +License: GPL-3.0+ + 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 package 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, see <http://www.gnu.org/licenses/>. + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/debian/cumin.dirs b/debian/cumin.dirs new file mode 100644 index 0000000..5e61a4f --- /dev/null +++ b/debian/cumin.dirs @@ -0,0 +1,2 @@ +etc/cumin +var/log/cumin diff --git a/debian/cumin.examples b/debian/cumin.examples new file mode 100644 index 0000000..882f561 --- /dev/null +++ b/debian/cumin.examples @@ -0,0 +1 @@ +doc/examples/config.yaml diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..5f9be5f --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,4 @@ +[buildpackage] +upstream-tag = %(version)s +upstream-branch = master +debian-branch = debian diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..c78aa71 --- /dev/null +++ b/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f +DPKG_EXPORT_BUILDFLAGS = 1 +include /usr/share/dpkg/default.mk + +%: + dh $@ --with python2 --buildsystem=python_distutils 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) -- To view, visit https://gerrit.wikimedia.org/r/338374 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ic3d0282706fe307fb0dac2d77979bc1a06406ffb Gerrit-PatchSet: 6 Gerrit-Project: operations/software/cumin Gerrit-Branch: debian Gerrit-Owner: Volans <[email protected]> Gerrit-Reviewer: Faidon Liambotis <[email protected]> Gerrit-Reviewer: Hashar <[email protected]> Gerrit-Reviewer: Volans <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
