[arch-commits] Commit in ansible-lint/repos/community-any (4 files)

Frederik Schwan freswa at archlinux.org
Thu Mar 18 20:14:52 UTC 2021


    Date: Thursday, March 18, 2021 @ 20:14:51
  Author: freswa
Revision: 894516

archrelease: copy trunk to community-any

Added:
  ansible-lint/repos/community-any/PKGBUILD
    (from rev 894515, ansible-lint/trunk/PKGBUILD)
  ansible-lint/repos/community-any/disable_use_scm_version.patch
    (from rev 894515, ansible-lint/trunk/disable_use_scm_version.patch)
Deleted:
  ansible-lint/repos/community-any/PKGBUILD
  ansible-lint/repos/community-any/disable_use_scm_version.patch

-------------------------------+
 PKGBUILD                      |   76 ++++++++++++++++++++--------------------
 disable_use_scm_version.patch |   62 ++++++++++++++++----------------
 2 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-03-18 20:14:48 UTC (rev 894515)
+++ PKGBUILD	2021-03-18 20:14:51 UTC (rev 894516)
@@ -1,38 +0,0 @@
-# Maintainer: Jelle van der Waa <jelle at archlinux.org>
-# Maintainer: Frederik Schwan <freswa at archlinux dot org>
-# Contributor: Sander Boom <sanderboom at gmail.com>
-
-pkgname=ansible-lint
-pkgver=5.0.3
-pkgrel=3
-pkgdesc="Checks playbooks for practices and behaviour that could potentially be improved."
-arch=('any')
-url="https://github.com/ansible/ansible-lint"
-license=('MIT')
-depends=('python' 'ansible-base' 'python-ruamel-yaml' 'python-pyaml' 'python-rich' 'python-packaging'
-          'python-wcmatch' 'python-enrich')
-checkdepends=('python-pytest')
-optdepends=('yamllint: check for yaml syntax mistakes'
-            'ansible: check official ansible collections')
-source=(https://github.com/ansible/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
-        disable_use_scm_version.patch)
-b2sums=('7dd7de2bc08a38ca757f3a4d59a97d01bb205c77d91f2316a2b6392eec3b3c189716c4e5fefd74c866274db73014dc866f8dfdf6f49a9d47ef7b215f13d073ca'
-        'a090862e657bfc29c89b23b2ecc8c585e15f098310b997e39600b6bdf0cd433e1045e2da348ce27dc2d3c0f9ef01950cf0ec5e7b071bc43d85161faabd8a1f60')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # stop setuptools from using the scm version which doesn't exist in this context
-  patch -Np1 < "${srcdir}"/disable_use_scm_version.patch
-  sed -i "/^\[metadata\]/a version = ${pkgver}" setup.cfg
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  PYTHONHASHSEED=0 python setup.py install --root="${pkgdir}" --optimize=1
-  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: ansible-lint/repos/community-any/PKGBUILD (from rev 894515, ansible-lint/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-03-18 20:14:51 UTC (rev 894516)
@@ -0,0 +1,38 @@
+# Maintainer: Jelle van der Waa <jelle at archlinux.org>
+# Maintainer: Frederik Schwan <freswa at archlinux dot org>
+# Contributor: Sander Boom <sanderboom at gmail.com>
+
+pkgname=ansible-lint
+pkgver=5.0.4
+pkgrel=1
+pkgdesc="Checks playbooks for practices and behaviour that could potentially be improved."
+arch=('any')
+url="https://github.com/ansible/ansible-lint"
+license=('MIT')
+depends=('python' 'ansible-base' 'python-ruamel-yaml' 'python-pyaml' 'python-rich' 'python-packaging'
+          'python-wcmatch' 'python-enrich')
+checkdepends=('python-pytest')
+optdepends=('yamllint: check for yaml syntax mistakes'
+            'ansible: check official ansible collections')
+source=(https://github.com/ansible/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+        disable_use_scm_version.patch)
+b2sums=('95099b38636afda029c556bd662167efa6fac459aeeca49c1649d08ed137fb6d18f3423d1a90cebe9cced3b0ce5ffc146e9942eb925ff525276c8bc324efe128'
+        'a090862e657bfc29c89b23b2ecc8c585e15f098310b997e39600b6bdf0cd433e1045e2da348ce27dc2d3c0f9ef01950cf0ec5e7b071bc43d85161faabd8a1f60')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # stop setuptools from using the scm version which doesn't exist in this context
+  patch -Np1 < "${srcdir}"/disable_use_scm_version.patch
+  sed -i "/^\[metadata\]/a version = ${pkgver}" setup.cfg
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  PYTHONHASHSEED=0 python setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}

Deleted: disable_use_scm_version.patch
===================================================================
--- disable_use_scm_version.patch	2021-03-18 20:14:48 UTC (rev 894515)
+++ disable_use_scm_version.patch	2021-03-18 20:14:51 UTC (rev 894516)
@@ -1,31 +0,0 @@
-diff -aur origsrc/ansible-lint-5.0.0/setup.cfg src/ansible-lint-5.0.0/setup.cfg
---- aaa/setup.cfg	2021-02-09 19:19:11.689518714 +0100
-+++ bbb/setup.cfg	2021-02-09 19:19:30.538804812 +0100
-@@ -54,18 +54,12 @@
-   lint
- 
- [options]
--use_scm_version = True
- python_requires = >=3.6
- package_dir =
-   = src
- packages = find:
- zip_safe = False
- 
--# These are required during `setup.py` run:
--setup_requires =
--  setuptools_scm>=1.15.0
--  setuptools_scm_git_archive>=1.0
--
- # These are required in actual runtime:
- install_requires =
-   # ansible-lint does not list ansible as direct dependency in order to
-diff -aur origsrc/ansible-lint-5.0.0/setup.py src/ansible-lint-5.0.0/setup.py
---- aaa/setup.py	2021-02-09 19:19:11.689518714 +0100
-+++ bbb/setup.py	2021-02-09 19:19:42.271693765 +0100
-@@ -9,5 +9,4 @@
- # https://github.com/jazzband/pip-tools/issues/1278
- setuptools.setup(
-     use_scm_version={"local_scheme": "no-local-version"},
--    setup_requires=["setuptools_scm[toml]>=3.5.0"],
- )

Copied: ansible-lint/repos/community-any/disable_use_scm_version.patch (from rev 894515, ansible-lint/trunk/disable_use_scm_version.patch)
===================================================================
--- disable_use_scm_version.patch	                        (rev 0)
+++ disable_use_scm_version.patch	2021-03-18 20:14:51 UTC (rev 894516)
@@ -0,0 +1,31 @@
+diff -aur origsrc/ansible-lint-5.0.0/setup.cfg src/ansible-lint-5.0.0/setup.cfg
+--- aaa/setup.cfg	2021-02-09 19:19:11.689518714 +0100
++++ bbb/setup.cfg	2021-02-09 19:19:30.538804812 +0100
+@@ -54,18 +54,12 @@
+   lint
+ 
+ [options]
+-use_scm_version = True
+ python_requires = >=3.6
+ package_dir =
+   = src
+ packages = find:
+ zip_safe = False
+ 
+-# These are required during `setup.py` run:
+-setup_requires =
+-  setuptools_scm>=1.15.0
+-  setuptools_scm_git_archive>=1.0
+-
+ # These are required in actual runtime:
+ install_requires =
+   # ansible-lint does not list ansible as direct dependency in order to
+diff -aur origsrc/ansible-lint-5.0.0/setup.py src/ansible-lint-5.0.0/setup.py
+--- aaa/setup.py	2021-02-09 19:19:11.689518714 +0100
++++ bbb/setup.py	2021-02-09 19:19:42.271693765 +0100
+@@ -9,5 +9,4 @@
+ # https://github.com/jazzband/pip-tools/issues/1278
+ setuptools.setup(
+     use_scm_version={"local_scheme": "no-local-version"},
+-    setup_requires=["setuptools_scm[toml]>=3.5.0"],
+ )



More information about the arch-commits mailing list