From 68adc8536f8a146e7f7597f92e14c7ab0debaa53 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 14:06:50 +0200 Subject: Adding debian version 6.17.2-1. Signed-off-by: Daniel Baumann --- debian/NEWS | 12 ++ debian/ansible-lint.1 | 139 +++++++++++++++++++ debian/changelog | 223 ++++++++++++++++++++++++++++++ debian/clean | 1 + debian/control | 43 ++++++ debian/copyright | 42 ++++++ debian/docs | 1 + debian/gbp.conf | 19 +++ debian/manpages | 1 + debian/patches/remove_version_check.patch | 76 ++++++++++ debian/patches/series | 1 + debian/rules | 8 ++ debian/source/format | 1 + debian/source/options | 1 + debian/upstream/metadata | 4 + debian/watch | 6 + 16 files changed, 578 insertions(+) create mode 100644 debian/NEWS create mode 100644 debian/ansible-lint.1 create mode 100644 debian/changelog create mode 100644 debian/clean create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/docs create mode 100644 debian/gbp.conf create mode 100644 debian/manpages create mode 100644 debian/patches/remove_version_check.patch create mode 100644 debian/patches/series create mode 100755 debian/rules create mode 100644 debian/source/format create mode 100644 debian/source/options create mode 100644 debian/upstream/metadata create mode 100644 debian/watch diff --git a/debian/NEWS b/debian/NEWS new file mode 100644 index 0000000..97fef07 --- /dev/null +++ b/debian/NEWS @@ -0,0 +1,12 @@ +ansible-lint (5.4.0-1) unstable; urgency=medium + + Starting with version 5.x, ansible-lint will try and download + the roles and collections found in requirements.yml (if it exists) + using ansible-galaxy. + The download contents will be placed into a temporary folder. + Without this, ansible-lint would error out for that given project. + + If you want to disable this behavior, you can pass "--offline" to the CLI + commands or even set "offline: false" in ansible-lint's configuration. + + -- Samuel Henrique Sat, 26 Feb 2022 00:30:15 +0000 diff --git a/debian/ansible-lint.1 b/debian/ansible-lint.1 new file mode 100644 index 0000000..03f1775 --- /dev/null +++ b/debian/ansible-lint.1 @@ -0,0 +1,139 @@ +.TH ANSIBLE-LINT "1" "June 2023" "ansible-lint" "User Commands" +.SH NAME +ansible-lint \- lint tool for Ansible playbooks +.SH DESCRIPTION +usage: ansible\-lint [\-h] [\-P | \fB\-L\fR | \fB\-T]\fR +.TP +[\-f {brief,full,md,json,codeclimate,quiet,pep8,sarif}] +[\-\-sarif\-file SARIF_FILE] [\-q] +[\-\-profile {min,basic,moderate,safety,shared,production}] +[\-p] [\-\-project\-dir PROJECT_DIR] [\-r RULESDIR] [\-R] [\-s] +[\-\-write [WRITE_LIST]] [\-\-show\-relpath] [\-t TAGS] [\-v] +[\-x SKIP_LIST] [\-\-generate\-ignore] [\-w WARN_LIST] +[\-\-enable\-list ENABLE_LIST] [\-\-nocolor] [\-\-force\-color] +[\-\-exclude EXCLUDE_PATHS [EXCLUDE_PATHS ...]] +[\-c CONFIG_FILE] [\-i IGNORE_FILE] [\-\-offline] [\-\-version] +[lintables ...] +.SS "positional arguments:" +.TP +lintables +One or more files or paths. When missing it will +enable auto\-detection mode. +.SS "options:" +.TP +\fB\-h\fR, \fB\-\-help\fR +show this help message and exit +.TP +\fB\-P\fR, \fB\-\-list\-profiles\fR +List all profiles, no formatting options available. +.TP +\fB\-L\fR, \fB\-\-list\-rules\fR +List all the rules. For listing rules only the +following formats for argument \fB\-f\fR are supported: +{brief, full, md} with 'brief' as default. +.TP +\fB\-T\fR, \fB\-\-list\-tags\fR +List all the tags and the rules they cover. Increase +the verbosity level with `\-v` to include 'opt\-in' tag +and its rules. +.TP +\fB\-f\fR {brief,full,md,json,codeclimate,quiet,pep8,sarif}, \fB\-\-format\fR {brief,full,md,json,codeclimate,quiet,pep8,sarif} +stdout formatting, json being an alias for +codeclimate. (default: None) +.TP +\fB\-\-sarif\-file\fR SARIF_FILE +SARIF output file +.TP +\fB\-q\fR +quieter, reduce verbosity, can be specified twice. +.TP +\fB\-\-profile\fR {min,basic,moderate,safety,shared,production} +Specify which rules profile to be used. +.TP +\fB\-p\fR, \fB\-\-parseable\fR +parseable output, same as '\-f pep8' +.TP +\fB\-\-project\-dir\fR PROJECT_DIR +Location of project/repository, autodetected based on +location of configuration file. +.TP +\fB\-r\fR RULESDIR, \fB\-\-rules\-dir\fR RULESDIR +Specify custom rule directories. Add \fB\-R\fR to keep using +embedded rules from \fI\,/usr/lib/python3/dist-packages/ansiblelint/rules\/\fP +.TP +\fB\-R\fR +Keep default rules when using \fB\-r\fR +.TP +\fB\-s\fR, \fB\-\-strict\fR +Return non\-zero exit code on warnings as well as +errors +.TP +\fB\-\-write\fR [WRITE_LIST] +Allow ansible\-lint to reformat YAML files and run rule +transforms (Reformatting YAML files standardizes +spacing, quotes, etc. A rule transform can fix or +simplify fixing issues identified by that rule). You +can limit the effective rule transforms (the +\&'write_list') by passing a keywords 'all' or 'none' or +a comma separated list of rule ids or rule tags. YAML +reformatting happens whenever '\-\-write' or '\-\-write=' +is used. '\-\-write' and '\-\-write=all' are equivalent: +they allow all transforms to run. The effective list +of transforms comes from 'write_list' in the config +file, followed whatever '\-\-write' args are provided on +the commandline. '\-\-write=none' resets the list of +transforms to allow reformatting YAML without running +any of the transforms (ie '\-\-write=none,rule\-id' will +ignore write_list in the config file and only run the +rule\-id transform). +.TP +\fB\-\-show\-relpath\fR +Display path relative to CWD +.TP +\fB\-t\fR TAGS, \fB\-\-tags\fR TAGS +only check rules whose id/tags match these values +.TP +\fB\-v\fR +Increase verbosity level (\fB\-vv\fR for more) +.TP +\fB\-x\fR SKIP_LIST, \fB\-\-skip\-list\fR SKIP_LIST +only check rules whose id/tags do not match these +values. e.g: \fB\-\-skip\-list\fR=\fI\,name\/\fR,run\-once +.TP +\fB\-\-generate\-ignore\fR +Generate a text file '.ansible\-lint\-ignore' that +ignores all found violations. Each line contains +filename and rule id separated by a space. +.TP +\fB\-w\fR WARN_LIST, \fB\-\-warn\-list\fR WARN_LIST +only warn about these rules, unless overridden in +config file. Current version default value is: +experimental, jinja[spacing], fqcn[deep] +.TP +\fB\-\-enable\-list\fR ENABLE_LIST +activate optional rules by their tag name +.TP +\fB\-\-nocolor\fR +disable colored output, same as NO_COLOR=1 +.TP +\fB\-\-force\-color\fR +Force colored output, same as FORCE_COLOR=1 +.TP +\fB\-\-exclude\fR EXCLUDE_PATHS [EXCLUDE_PATHS ...] +path to directories or files to skip. This option is +repeatable. +.TP +\fB\-c\fR CONFIG_FILE, \fB\-\-config\-file\fR CONFIG_FILE +Specify configuration file to use. By default it will +look for '.ansible\-lint', '.config/ansible\-lint.yml', +or '.config/ansible\-lint.yaml' +.TP +\fB\-i\fR IGNORE_FILE, \fB\-\-ignore\-file\fR IGNORE_FILE +Specify ignore file to use. By default it will look +for '.ansible\-lint\-ignore' or '.config/ansible\-lintignore.txt' +.TP +\fB\-\-offline\fR +Disable installation of requirements.yml and schema +refreshing +.HP +\fB\-\-version\fR diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..dc82f62 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,223 @@ +ansible-lint (6.17.2-1) unstable; urgency=medium + + * New upstream version 6.17.2 + * d/ansible-lint.1: Update manpage (closes: #1037412) + + -- Samuel Henrique Thu, 22 Jun 2023 23:36:14 +0100 + +ansible-lint (6.17.1-1) unstable; urgency=medium + + * New upstream version 6.17.1 + * d/patches: + - Update remove_version_check.patch + - Drop remove_vendored_code.patch + * d/control: Update dependencies as per upstream + + -- Samuel Henrique Fri, 16 Jun 2023 20:26:47 +0100 + +ansible-lint (6.13.1-1) unstable; urgency=medium + + * New upstream version 6.13.1 + * d/p/remove_version_check.patch: Refresh patch + + -- Samuel Henrique Sun, 26 Feb 2023 11:49:21 +0000 + +ansible-lint (6.12.2-1) unstable; urgency=medium + + * New upstream version 6.12.2 + * d/p/remove_version_check.patch: Refresh patch + * d/p/remove_vendored_code.patch: New patch to remove vendored code usage + + -- Samuel Henrique Fri, 10 Feb 2023 23:03:31 +0000 + +ansible-lint (6.12.1-1) unstable; urgency=medium + + * New upstream version 6.12.1 + + -- Samuel Henrique Wed, 08 Feb 2023 18:52:46 +0000 + +ansible-lint (6.11.0-1) unstable; urgency=medium + + * New upstream version 6.11.0 + * d/control: Add new dependencies: black, git and python3-jinja2 + * d/p/remove_version_check.patch: Refresh patch + + -- Samuel Henrique Fri, 20 Jan 2023 22:44:05 +0000 + +ansible-lint (6.9.1-1) unstable; urgency=medium + + * New upstream version 6.9.1 + * Bump Standards-Version to 4.6.2 + * d/control: Add new dependency python3-filelock and bump jsonschema + requirement to 4.10.0 + * d/p/disable_scm_version.patch: Drop patch in favor of using + python3-setuptools-scm + * d/p/remove_version_check.patch: New patch to disable external version + check + + -- Samuel Henrique Sun, 15 Jan 2023 21:56:11 +0000 + +ansible-lint (6.7.0-1) unstable; urgency=medium + + * New upstream version 6.7.0 + * Bump Standards-Version to 4.6.1. + * d/control: Bump version requirement of jsonschema to 4.9.0. + * d/tests: Drop autopkgtests, they were never too good and the maintenance + cost is too high. + * d/watch: Update file to drop alpha and beta releases, also use GitHub's + API. + + -- Samuel Henrique Sat, 17 Dec 2022 20:22:48 +0000 + +ansible-lint (6.3.0-2) unstable; urgency=medium + + * Upload to unstable + * d/tests/control: Disable nomatch test, broken upstream + + -- Samuel Henrique Sun, 17 Jul 2022 16:28:05 +0200 + +ansible-lint (6.3.0-1) experimental; urgency=medium + + * New upstream version 6.3.0 (closes: #1012366) + - This upload is blocked from going to unstable until + python3-jsonschema >= 4.6.0 gets uploaded to it. + * Move package maintenance under the Python's team + * d/control: + - New dependencies python3-ansible-compat and python3-jsonschema + - Drop ansible in favor of ansible-core (closes: #982653) + * d/copyright: Remove entry for deleted file 'NoLogPasswordsRule.py' + * d/docs: + - Stop installing examples folder (they're actually ansible test data) + - Rename README.rst to README.md + * d/p/disable_scm_version.patch: Update patch + + -- Samuel Henrique Sat, 18 Jun 2022 18:55:02 +0100 + +ansible-lint (5.4.0-2) unstable; urgency=medium + + * d/watch: Fix URL regression/typo from last upload + + -- Samuel Henrique Sat, 26 Feb 2022 17:52:12 +0000 + +ansible-lint (5.4.0-1) unstable; urgency=medium + + * New upstream version 5.4.0 + * Bump Standards-Version to 4.6.0 + * Update upstream URLs + * d/NEWS: Create news file and warn about new "--offline" flag, + without it, ansible-lint will try and download roles and collections set + in requirements.yml (if the file exists), using ansible-galaxy, into a + temporary folder. + * d/control: + - Add ansible-core as an alternative dependency (will become the default + once #1001040 is fixed) + - Update dependencies list according to upstream and + wrap-and-sort + * d/copyright: + - Update copyright info (upstream is both GPL-3 and Expat) + - Update debian/ years and remove deleted file + * d/p/disable_scm_version.patch: Update patch + * d/salsa-ci.yml: Remove file in favor of using default CI settings + * d/t/tests + - Ignore experimental findings in tests and use package + provided files + - Don't call tests from source code root to avoid parsing upstream's + .yamllint + + -- Samuel Henrique Sat, 26 Feb 2022 00:30:15 +0000 + +ansible-lint (4.3.7-1) unstable; urgency=medium + + * New upstream version 4.3.7 + * d/p/fix-examples.patch: Remove patch, merged upstream + + -- Samuel Henrique Wed, 04 Nov 2020 19:37:49 +0000 + +ansible-lint (4.3.5-1) unstable; urgency=medium + + * New upstream version 4.3.5 + * Add d/salsa-ci.yml + * d/t/lots-of-warnings: Update test + + -- Samuel Henrique Sat, 03 Oct 2020 18:23:01 +0100 + +ansible-lint (4.3.1-1) unstable; urgency=medium + + * New upstream version 4.3.1 + * Bump DH to 13 + * Bump Standards-Version to 4.5.0 + * Add d/gbp.conf + * d/p/fix-examples.patch: new patch to fix example used on autopkgtest + * d/t/lots-of-warnings: Update test + * d/copyright: Remove Files-Excluded field as there's no repackaging anymore + + [ Debian Janitor ] + * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, + Repository-Browse. + + -- Samuel Henrique Sat, 03 Oct 2020 17:30:44 +0100 + +ansible-lint (4.2.0-1) unstable; urgency=medium + + * New upstream version 4.2.0 + * Update Standards-Version to 4.4.1 + * Use debhelper-compat + * The upstream tarball is now dfsg compliant as it does not ship the "docs" + directory anymore. + * d/control: + - Add Dependency python3-ruamel.yaml + - Add Rules-Requires-Root: no + - Remove Build-Dependency python3-setuptools-scm-git-archive + * d/patches: + - add_setup_py.patch: New patch to add setup_py + - disable_scm_version.patch: + ~ Set version on setup.cfg without using scm module + ~ Update patch + * d/tests/lots-of-warnings: Get a predictable output for different test envs + + -- Samuel Henrique Sun, 08 Dec 2019 20:39:41 +0000 + +ansible-lint (4.1.0+dfsg.1-2) unstable; urgency=medium + + [ Ryo IGARASHI ] + * Fix rules location in manpage (closes: #934011) + + [ Samuel Henrique ] + * Bump Standards-Version to 4.4.0 + * Remove underline of runtime test name + * Add missing dependency of python3-pkg-resources + + -- Samuel Henrique Wed, 04 Sep 2019 01:01:45 +0100 + +ansible-lint (4.1.0+dfsg.1-1) unstable; urgency=medium + + * New upstream version 4.1.0+dfsg.1 (closes: #918783) + - dfsg.1: Remove docs dir, which contains non-free code + and we don't use any of it anyway. + * Use python3 instead of python2 (closes: #921030) + * Bump DH level to 12 + * Bump Standards-Version to 4.3.0 + * Add myself as an uploader + * Move packaging to salsa + * Add autopkgtests + * d/docs: update docs of new release + * d/control: add new build dependencies of latest release + * d/copyright: update all entries + * d/p/disable_scm_version.patch: new patch to disable usage of pypi + * d/rules: use pybuild instead of distutils + * d/watch: create file and point to GitHub + * wrap-and-sort -a + + -- Samuel Henrique Sun, 24 Feb 2019 12:30:38 +0000 + +ansible-lint (3.4.20+git.20180203-1) unstable; urgency=medium + + * New upstream release (Closes: #882066) + + -- Gregory Colpart Sat, 03 Feb 2018 18:50:23 +0100 + +ansible-lint (3.4.13+git.20170811-1-1) unstable; urgency=medium + + * Initial release (Closes: #799144) + + -- Gregory Colpart Fri, 11 Aug 2017 16:56:58 -0400 diff --git a/debian/clean b/debian/clean new file mode 100644 index 0000000..35751c3 --- /dev/null +++ b/debian/clean @@ -0,0 +1 @@ +lib/ansible_lint.egg-info/ diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..2ce3808 --- /dev/null +++ b/debian/control @@ -0,0 +1,43 @@ +Source: ansible-lint +Section: misc +Priority: optional +Maintainer: Debian Python Team +Uploaders: Samuel Henrique , Gregory Colpart +Build-Depends: debhelper-compat (= 13), + dh-python, + pybuild-plugin-pyproject, + python3-all, + python3-setuptools, + python3-setuptools-scm, +Standards-Version: 4.6.2 +Rules-Requires-Root: no +Homepage: https://github.com/ansible-community/ansible-lint +Vcs-Browser: https://salsa.debian.org/python-team/packages/ansible-lint +Vcs-Git: https://salsa.debian.org/python-team/packages/ansible-lint.git + +Package: ansible-lint +Architecture: all +Depends: ansible-core (>= 2.12.0), + black (>= 22.8.0), + git, + python3-ansible-compat (>= 4.0.5), + python3-filelock (>= 3.3.0), + python3-jinja2, + python3-jsonschema (>= 4.10.0), + python3-packaging (>= 21.3), + python3-pathspec (>= 0.10.3), + python3-rich (>= 12.0.0), + python3-ruamel.yaml (>= 0.17.0), + python3-ruamel.yaml (<< 0.18), + python3-wcmatch (>= 8.1.2), + python3-yaml (>= 5.4.1), + yamllint (>= 1.30.0), + ${misc:Depends}, + ${python3:Depends} +Description: lint tool for Ansible playbooks + Ansible playbooks express configuration, deployment and orchestration in YAML + format. They can describe a policy you want your remote systems to enforce, + or a set of steps in a general IT process. + . + ansible-lint checks Ansible playbooks for practices and behaviour that could + potentially be improved. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..04ae728 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,42 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: ansible-lint +Source: https://github.com/ansible-community/ansible-lint + +Files: * +Copyright: 2016 Tsukinowa Inc. + 2013-2018 Will Thames + 2018-2021 Ansible Project +License: Expat and GPL-3 +Comment: The ansible-lint project is distributed as GPLv3 due to use of + GPLv3 runtime dependencies, like ansible and yamllint. + For historical reasons, its own code-base remains licensed + under a more liberal MIT license and any contributions made + are accepted as being made under original MIT license. + +Files: debian/* +Copyright: 2017-2018 Gregory Colpart + 2019-2022 Samuel Henrique +License: Expat + +License: GPL-3 + On Debian systems the full text of the GPL-3 license can be found in + /usr/share/common-licenses/GPL-3 + +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/docs b/debian/docs new file mode 100644 index 0000000..b43bf86 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README.md diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..6cbc70d --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,19 @@ +[DEFAULT] +debian-branch=debian/master +pristine-tar = True +cleaner = /bin/true + +[buildpackage] +sign-tags = True +export-dir = ../build-area/ +ignore-branch = True + +[import-orig] +filter-pristine-tar = True + +[pq] +patch-numbers = False + +[dch] +multimaint-merge = True +ignore-branch = True diff --git a/debian/manpages b/debian/manpages new file mode 100644 index 0000000..5ced7db --- /dev/null +++ b/debian/manpages @@ -0,0 +1 @@ +debian/ansible-lint.1 diff --git a/debian/patches/remove_version_check.patch b/debian/patches/remove_version_check.patch new file mode 100644 index 0000000..8e57d96 --- /dev/null +++ b/debian/patches/remove_version_check.patch @@ -0,0 +1,76 @@ +Description: Remove version check at runtime +Author: Samuel Henrique +Forwarded: not-needed +Index: ansible-lint/src/ansiblelint/config.py +=================================================================== +--- ansible-lint.orig/src/ansiblelint/config.py ++++ ansible-lint/src/ansiblelint/config.py +@@ -270,53 +270,5 @@ def get_deps_versions() -> dict[str, Ver + + + def get_version_warning() -> str: +- """Display warning if current version is outdated.""" +- # 0.1dev1 is special fallback version +- if __version__ == "0.1.dev1": # pragma: no cover +- return "" +- +- msg = "" +- data = {} +- current_version = Version(__version__) +- +- if not os.path.exists(CACHE_DIR): # pragma: no cover +- os.makedirs(CACHE_DIR) +- cache_file = f"{CACHE_DIR}/latest.json" +- refresh = True +- if os.path.exists(cache_file): +- age = time.time() - os.path.getmtime(cache_file) +- if age < 24 * 60 * 60: +- refresh = False +- with open(cache_file, encoding="utf-8") as f: +- data = json.load(f) +- +- if refresh or not data: +- release_url = ( +- "https://api.github.com/repos/ansible/ansible-lint/releases/latest" +- ) +- try: +- with urllib.request.urlopen(release_url) as url: # noqa: S310 +- data = json.load(url) +- with open(cache_file, "w", encoding="utf-8") as f: +- json.dump(data, f) +- except (URLError, HTTPError) as exc: # pragma: no cover +- _logger.debug( +- "Unable to fetch latest version from %s due to: %s", +- release_url, +- exc, +- ) +- return "" +- +- html_url = data["html_url"] +- new_version = Version(data["tag_name"][1:]) # removing v prefix from tag +- +- if current_version > new_version: +- msg = "[dim]You are using a pre-release version of ansible-lint.[/]" +- elif current_version < new_version: +- msg = f"""[warning]A new release of ansible-lint is available: [red]{current_version}[/] → [green][link={html_url}]{new_version}[/][/][/]""" +- +- pip = guess_install_method() +- if pip: +- msg += f" Upgrade by running: [info]{pip}[/]" +- +- return msg ++ """Patched on Debian to not download release information from third parties""" ++ return "" +Index: ansible-lint/test/test_main.py +=================================================================== +--- ansible-lint.orig/test/test_main.py ++++ ansible-lint/test/test_main.py +@@ -48,7 +48,7 @@ def test_call_from_outside_venv(expected + warning_found = "PATH altered to include" in proc.stderr + assert warning_found is expected_warning + +- ++@pytest.mark.skip(reason="This functionality is disabled on Debian") + @pytest.mark.parametrize( + ("ver_diff", "found", "check", "outlen"), + ( diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..836a30d --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +remove_version_check.patch diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..24db829 --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f + +include /usr/share/dpkg/pkg-info.mk + +%: + dh $@ --with python3 --buildsystem=pybuild + +override_dh_auto_test: 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) diff --git a/debian/source/options b/debian/source/options new file mode 100644 index 0000000..cb61fa5 --- /dev/null +++ b/debian/source/options @@ -0,0 +1 @@ +extend-diff-ignore = "^[^/]*[.]egg-info/" diff --git a/debian/upstream/metadata b/debian/upstream/metadata new file mode 100644 index 0000000..d0fc2e1 --- /dev/null +++ b/debian/upstream/metadata @@ -0,0 +1,4 @@ +Bug-Database: https://github.com/ansible/ansible-lint/issues +Bug-Submit: https://github.com/ansible/ansible-lint/issues/new +Repository: https://github.com/ansible/ansible-lint.git +Repository-Browse: https://github.com/ansible/ansible-lint diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..ba95a1f --- /dev/null +++ b/debian/watch @@ -0,0 +1,6 @@ +version=4 +opts="searchmode=plain,\ +filenamemangle=s%v?@ANY_VERSION@%@PACKAGE@-$1.tar.xz%,\ +uversionmangle=s/(\d)[_\.\-\+]?(\d)[_\.\-\+]?(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha|a|b)\d*)$/$1~$2/" \ +https://api.github.com/repos/ansible-community/ansible-lint/releases?per_page=30 \ +https://api.github.com/repos/[^/]+/[^/]+/tarball/v?@ANY_VERSION@ -- cgit v1.2.3