From 98840b1e931c83051d0b21f3b81af51ff21948d1 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Sun, 18 Dec 2022 15:47:06 -0500 Subject: add python-freeipa --- python-freeipa/debian/_service | 28 ++++++++++++++++++++++++++++ python-freeipa/debian/changelog | 5 +++++ python-freeipa/debian/control | 23 +++++++++++++++++++++++ python-freeipa/debian/copyright | 21 +++++++++++++++++++++ python-freeipa/debian/gbp.conf | 2 ++ python-freeipa/debian/patches/series | 0 python-freeipa/debian/python-freeipa.dsc | 16 ++++++++++++++++ python-freeipa/debian/rules | 16 ++++++++++++++++ python-freeipa/debian/source/format | 1 + python-freeipa/debian/upstream/metadata | 5 +++++ python-freeipa/debian/watch | 5 +++++ 11 files changed, 122 insertions(+) create mode 100644 python-freeipa/debian/_service create mode 100644 python-freeipa/debian/changelog create mode 100644 python-freeipa/debian/control create mode 100644 python-freeipa/debian/copyright create mode 100644 python-freeipa/debian/gbp.conf create mode 100644 python-freeipa/debian/patches/series create mode 100644 python-freeipa/debian/python-freeipa.dsc create mode 100755 python-freeipa/debian/rules create mode 100644 python-freeipa/debian/source/format create mode 100644 python-freeipa/debian/upstream/metadata create mode 100644 python-freeipa/debian/watch (limited to 'python-freeipa/debian') diff --git a/python-freeipa/debian/_service b/python-freeipa/debian/_service new file mode 100644 index 0000000..e294778 --- /dev/null +++ b/python-freeipa/debian/_service @@ -0,0 +1,28 @@ + + + git + https://bgstack15.ddns.net/cgit/stackrpms.git + python-freeipa/debian + debian + python-freeipa-bump + _none_ + + + *.tar + xz + + + git + https://github.com/waldur/python-freeipa.git + v1.0.7 + _none_ + + + *.tar + gz + + + *.tar.xz + */*.dsc + + diff --git a/python-freeipa/debian/changelog b/python-freeipa/debian/changelog new file mode 100644 index 0000000..7ee373c --- /dev/null +++ b/python-freeipa/debian/changelog @@ -0,0 +1,5 @@ +python-freeipa (1.0.7-1) obs; urgency=low + + * Initial release. (Fixes packages-want#26) + + -- B. Stack Sun, 18 Dec 2022 11:58:15 -0500 diff --git a/python-freeipa/debian/control b/python-freeipa/debian/control new file mode 100644 index 0000000..068bf5d --- /dev/null +++ b/python-freeipa/debian/control @@ -0,0 +1,23 @@ +Source: python-freeipa +Section: python +Priority: optional +Maintainer: B. Stack +Build-Depends: debhelper-compat (= 13), +# pybuild-plugin-pyproject, + dh-python, + python3-all-dev, + python3-setuptools, +# cython3 +Rules-Requires-Root: no +Vcs-Git: https://bgstack15.ddns.net/cgit/python-freeipa/ +Vcs-Browser: https://bgstack15.ddns.net/cgit/python-freeipa/ +Standards-Version: 4.6.1 +Homepage: https://github.com/waldur/python-freeipa/ + +Package: python3-freeipa +Architecture: any +Multi-Arch: allowed +Depends: ${python3:Depends}, ${shlibs:Depends}, ${misc:Depends} +Description: lightweight FreeIPA client + Python3-freeipa is a python client for FreeIPA. This is not part of the main + FreeIPA package set; it not part of an IPA client server installation. diff --git a/python-freeipa/debian/copyright b/python-freeipa/debian/copyright new file mode 100644 index 0000000..a78e81f --- /dev/null +++ b/python-freeipa/debian/copyright @@ -0,0 +1,21 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-name: python-freeipa +Source: https://github.com/waldur/python-freeipa + +Files: * +Copyright: 2017 OpenNode LLC +License: MIT + 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/python-freeipa/debian/gbp.conf b/python-freeipa/debian/gbp.conf new file mode 100644 index 0000000..3879982 --- /dev/null +++ b/python-freeipa/debian/gbp.conf @@ -0,0 +1,2 @@ +[DEFAULT] +debian-branch=debian/master diff --git a/python-freeipa/debian/patches/series b/python-freeipa/debian/patches/series new file mode 100644 index 0000000..e69de29 diff --git a/python-freeipa/debian/python-freeipa.dsc b/python-freeipa/debian/python-freeipa.dsc new file mode 100644 index 0000000..da73f6e --- /dev/null +++ b/python-freeipa/debian/python-freeipa.dsc @@ -0,0 +1,16 @@ +Format: 3.0 (quilt) +Source: python-freeipa +Binary: python3-freeipa +Architecture: any +Version: 1.0.7-1 +Maintainer: B. Stack +Homepage: https://github.com/waldur/python-freeipa/ +Standards-Version: 4.6.1 +Vcs-Browser: https://bgstack15.ddns.net/cgit/python-freeipa/ +Vcs-Git: https://bgstack15.ddns.net/cgit/python-freeipa/ +Build-Depends: debhelper-compat (= 13), dh-python, python3-all-dev, python3-setuptools +Package-List: + python3-freeipa deb python optional arch=any +Files: + 00000000000000000000000000000000 1 python-freeipa.orig.tar.gz + 00000000000000000000000000000000 1 python-freeipa.debian.tar.xz diff --git a/python-freeipa/debian/rules b/python-freeipa/debian/rules new file mode 100755 index 0000000..81201ef --- /dev/null +++ b/python-freeipa/debian/rules @@ -0,0 +1,16 @@ +#!/usr/bin/make -f +export DEB_BUILD_MAINT_OPTIONS=hardening=+all +export PYBUILD_NAME=freeipa +export PYBUILD_DISABLE=test + +build3vers := $(shell py3versions -sv) + +%: + dh $@ --with python3 --buildsystem pybuild + +override_dh_auto_configure: + dh_auto_configure + +override_dh_auto_clean: + -rm -rf src/python_freeipa.egg-info/ + dh_auto_clean diff --git a/python-freeipa/debian/source/format b/python-freeipa/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/python-freeipa/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/python-freeipa/debian/upstream/metadata b/python-freeipa/debian/upstream/metadata new file mode 100644 index 0000000..dcb366b --- /dev/null +++ b/python-freeipa/debian/upstream/metadata @@ -0,0 +1,5 @@ +Name: python-freeipa +Bug-Database: https://github.com/waldur/python-freeipa/issues +Bug-Submit: https://github.com/waldur/python-freeipa/issues/new +Repository: https://github.com/waldur/python-freeipa.git +Repository-Browse: https://github.com/waldur/python-freeipa diff --git a/python-freeipa/debian/watch b/python-freeipa/debian/watch new file mode 100644 index 0000000..802a9d2 --- /dev/null +++ b/python-freeipa/debian/watch @@ -0,0 +1,5 @@ +# Reference: https://codesearch.debian.net/search?q=github%5C.com%5C%2F.*%5C%28%5C%3F%3Azip%5C%7Ctgz&literal=0 +# pyaxmlparser package +version=4 +opts=dversionmangle=auto \ +https://github.com/waldur/python-freeipa/tags .*/v(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- cgit