summaryrefslogtreecommitdiffstats
path: root/collections-debian-merged/debian
diff options
context:
space:
mode:
Diffstat (limited to 'collections-debian-merged/debian')
-rw-r--r--collections-debian-merged/debian/changelog5
-rw-r--r--collections-debian-merged/debian/control25
-rw-r--r--collections-debian-merged/debian/copyright25
-rw-r--r--collections-debian-merged/debian/rules18
4 files changed, 73 insertions, 0 deletions
diff --git a/collections-debian-merged/debian/changelog b/collections-debian-merged/debian/changelog
new file mode 100644
index 00000000..fdbb1c43
--- /dev/null
+++ b/collections-debian-merged/debian/changelog
@@ -0,0 +1,5 @@
+ansible (2.10.7-1) unstable; urgency=medium
+
+ * Ansible 2.10.7 release
+
+ -- Red Hat, Inc. <info@ansible.com> Tue, 09 Feb 2021 19:52:41 +0000 \ No newline at end of file
diff --git a/collections-debian-merged/debian/control b/collections-debian-merged/debian/control
new file mode 100644
index 00000000..d728200c
--- /dev/null
+++ b/collections-debian-merged/debian/control
@@ -0,0 +1,25 @@
+Source: ansible
+Section: admin
+Priority: optional
+Maintainer: Rick Elrod <relrod@redhat.com>
+Build-Depends: debhelper-compat (= 12), dh-python, python3-setuptools, python3-all
+Standards-Version: 4.4.1
+Homepage: https://ansible.com/
+Vcs-Browser: https://github.com/ansible-community/
+Vcs-Git: https://github.com/ansible-community/antsibull.git
+#Testsuite: autopkgtest-pkg-python
+
+Package: ansible
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}, ansible-base
+#Suggests: python-ansible-doc
+Description: ansible collections for ansible-base
+
+#Package: python-ansible-doc
+#Architecture: all
+#Section: doc
+#Depends: ${sphinxdoc:Depends}, ${misc:Depends}
+#Description: <insert up to 60 chars description> (common documentation)
+# <insert long description, indented with spaces>
+# .
+# This is the common documentation package.
diff --git a/collections-debian-merged/debian/copyright b/collections-debian-merged/debian/copyright
new file mode 100644
index 00000000..56dcfc4e
--- /dev/null
+++ b/collections-debian-merged/debian/copyright
@@ -0,0 +1,25 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: ansible
+Upstream-Contact: https://github.com/ansible-community/antsibull
+Source: https://github.com/ansible-community/anstibull
+
+Files: *
+Copyright: 2020 Red Hat, Inc.
+License: GPL-3+
+ Copyright (C) 2020 Red Hat, Inc.
+ .
+ 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, 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/collections-debian-merged/debian/rules b/collections-debian-merged/debian/rules
new file mode 100644
index 00000000..d960e324
--- /dev/null
+++ b/collections-debian-merged/debian/rules
@@ -0,0 +1,18 @@
+#!/usr/bin/make -f
+# See debhelper(7) (uncomment to enable)
+# output every command that modifies files on the build system.
+#export DH_VERBOSE = 1
+
+export PYBUILD_NAME=ansible
+
+%:
+ dh $@ --with python3 --buildsystem=pybuild
+
+
+# If you need to rebuild the Sphinx documentation
+# Add spinxdoc to the dh --with line
+#override_dh_auto_build:
+# dh_auto_build
+# PYTHONPATH=. http_proxy='127.0.0.1:9' sphinx3-build -N -bhtml docs/ build/html # HTML generator
+# PYTHONPATH=. http_proxy='127.0.0.1:9' sphinx3-build -N -bman docs/ build/man # Manpage generator
+