]> git-server-git.apps.pok.os.sepia.ceph.com Git - remoto.git/commitdiff
debian: add packaging files
authorAlfredo Deza <alfredo@deza.pe>
Fri, 22 Mar 2019 04:50:49 +0000 (00:50 -0400)
committerAlfredo Deza <alfredo@deza.pe>
Fri, 22 Mar 2019 04:51:46 +0000 (00:51 -0400)
Signed-off-by: Alfredo Deza <alfredo@deza.pe>
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/gbp.conf [new file with mode: 0644]
debian/remoto.lintian-overrides [new file with mode: 0644]
debian/rules [new file with mode: 0755]
debian/source/format [new file with mode: 0644]
debian/source/options [new file with mode: 0644]

diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..30ef689
--- /dev/null
@@ -0,0 +1,13 @@
+remoto (0.0.29-0ubuntu0.16.04.2) xenial; urgency=medium
+
+  * d/patches: drop bundled execnet, rework patches for gbp
+  * d/control: add extended description for lintian
+  * d/control: Build-Depends execnet
+
+ -- Ken Dreyer <kdreyer@redhat.com>  Mon, 03 Jul 2017 16:19:14 -0600
+
+remoto (0.0.29-0ubuntu0.16.04.1) xenial; urgency=medium
+
+  * Latest upstream release
+
+ -- Ken Dreyer <kdreyer@redhat.com>  Thu, 29 Jun 2017 11:22:45 -0600
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..7f8f011
--- /dev/null
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..4c95fd6
--- /dev/null
@@ -0,0 +1,33 @@
+Source: remoto
+Maintainer: Ken Dreyer <kdreyer@redhat.com>
+Section: python
+Priority: optional
+Build-Depends:
+ debhelper (>= 7.4.3),
+ dh-python,
+ python,
+ python-execnet,
+ python-mock,
+ python-pytest,
+ python-setuptools,
+ python3,
+ python3-execnet,
+ python3-mock,
+ python3-pytest,
+ python3-setuptools
+Standards-Version: 3.9.7
+X-Python-Version: >=2.7
+
+Package: python-remoto
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Execute remote commands or processes
+ A very simplistic remote-command-executor using ssh and Python in the remote
+ end.
+
+Package: python3-remoto
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: Execute remote commands or processes
+ A very simplistic remote-command-executor using ssh and Python in the remote
+ end.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..b9c4f54
--- /dev/null
@@ -0,0 +1,30 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0
+Upstream-Name: remoto
+Source: https://github.com/alfredodeza/remoto
+
+Files: *
+Copyright: 2013 Alfredo Deza
+License: Expat
+
+Files: debian/*
+Copyright: 2017 Red Hat, Inc.
+License: Expat
+
+License: Expat
+  Permission is hereby granted, free of charge, to any person obtaining a
+  copy of this software and associated documentation files (the "Software"),
+  to deal in the Software without restriction, including without limitation
+  the rights to use, copy, modify, merge, publish, distribute, sublicense,
+  and/or sell copies of the Software, and to permit persons to whom the
+  Software is furnished to do so, subject to the following conditions:
+  .
+  The above copyright notice and this permission notice shall be included in
+  all copies or substantial portions of the Software.
+  .
+  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+  DEALINGS IN THE SOFTWARE.
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644 (file)
index 0000000..c7a5ad9
--- /dev/null
@@ -0,0 +1,10 @@
+[DEFAULT]
+debian-branch = xenial
+pristine-tar = True
+upstream-tag = upstream/%(version)s
+
+[dch]
+# Use git committer as author
+git-author = True
+# Use a simple message format
+multimaint-merge = False
diff --git a/debian/remoto.lintian-overrides b/debian/remoto.lintian-overrides
new file mode 100644 (file)
index 0000000..b811d18
--- /dev/null
@@ -0,0 +1,2 @@
+# Package has not yet been submitted to Debian.
+new-package-should-close-itp-bug
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..55bc857
--- /dev/null
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+export DH_VERBOSE=1
+
+export PYBUILD_NAME=remoto
+
+%:
+       dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/source/format b/debian/source/format
new file mode 100644 (file)
index 0000000..163aaf8
--- /dev/null
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/source/options b/debian/source/options
new file mode 100644 (file)
index 0000000..bcc4bbb
--- /dev/null
@@ -0,0 +1 @@
+extend-diff-ignore="\.egg-info$"
\ No newline at end of file