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

Chih-Hsuan Yen yan12125 at archlinux.org
Thu Jun 13 12:27:34 UTC 2019


    Date: Thursday, June 13, 2019 @ 12:27:34
  Author: yan12125
Revision: 481270

archrelease: copy trunk to community-any

Added:
  python-cfn-lint/repos/community-any/PKGBUILD
    (from rev 481269, python-cfn-lint/trunk/PKGBUILD)
  python-cfn-lint/repos/community-any/fix-tests.patch
    (from rev 481269, python-cfn-lint/trunk/fix-tests.patch)
Deleted:
  python-cfn-lint/repos/community-any/PKGBUILD
  python-cfn-lint/repos/community-any/fix-tests.patch

-----------------+
 PKGBUILD        |   84 +++++++++++++++++++++++++++---------------------------
 fix-tests.patch |   22 +++++++-------
 2 files changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-06-13 12:27:14 UTC (rev 481269)
+++ PKGBUILD	2019-06-13 12:27:34 UTC (rev 481270)
@@ -1,42 +0,0 @@
-# Maintainer: Chih-Hsuan Yen <yan12125 at archlinux.org>
-
-pkgname=python-cfn-lint
-pkgver=0.21.4
-pkgrel=1
-pkgdesc='CloudFormation Linter'
-arch=(any)
-url='https://github.com/aws-cloudformation/cfn-python-lint'
-license=('custom:MIT No Attribution')
-depends=(python python-pyaml python-six python-requests python-aws-sam-translator
-         python-jsonpatch python-jsonschema python-setuptools)
-checkdepends=(python-pytest python-mock)
-source=("$pkgname-$pkgver.tar.gz"::"https://github.com/aws-cloudformation/cfn-python-lint/archive/v$pkgver.tar.gz"
-        fix-tests.patch)
-sha256sums=('3f700ebcadc8bda9916c52dd2cc88f01cbb8f98521bcae3a74ac967ebeb8908c'
-            'e530839ba21e4aa6d19fb08563aa91b16d5f445e0ceb7f97021a130ff8948465')
-
-prepare() {
-  cd cfn-python-lint-$pkgver
-  patch -Np1 -i ../fix-tests.patch
-
-  # mimic https://github.com/awslabs/serverless-application-model/pull/927
-  sed -i 's#jsonschema~=2.6#jsonschema~=3.0#' setup.py
-}
-
-build() {
-  cd cfn-python-lint-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd cfn-python-lint-$pkgver
-
-  PYTHONPATH=build/lib pytest -v test
-}
-
-package() {
-  cd cfn-python-lint-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-cfn-lint/repos/community-any/PKGBUILD (from rev 481269, python-cfn-lint/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-06-13 12:27:34 UTC (rev 481270)
@@ -0,0 +1,42 @@
+# Maintainer: Chih-Hsuan Yen <yan12125 at archlinux.org>
+
+pkgname=python-cfn-lint
+pkgver=0.21.5
+pkgrel=1
+pkgdesc='CloudFormation Linter'
+arch=(any)
+url='https://github.com/aws-cloudformation/cfn-python-lint'
+license=('custom:MIT No Attribution')
+depends=(python python-pyaml python-six python-requests python-aws-sam-translator
+         python-jsonpatch python-jsonschema python-setuptools)
+checkdepends=(python-pytest python-mock)
+source=("https://github.com/aws-cloudformation/cfn-python-lint/archive/v$pkgver/cfn-python-lint-v$pkgver.tar.gz"
+        fix-tests.patch)
+sha256sums=('c7a31318c67a28c774cbd44ba72a79c7bba2efbe93a5c33fa943e0d813aa9b0f'
+            'e530839ba21e4aa6d19fb08563aa91b16d5f445e0ceb7f97021a130ff8948465')
+
+prepare() {
+  cd cfn-python-lint-$pkgver
+  patch -Np1 -i ../fix-tests.patch
+
+  # mimic https://github.com/awslabs/serverless-application-model/pull/927
+  sed -i 's#jsonschema~=2.6#jsonschema~=3.0#' setup.py
+}
+
+build() {
+  cd cfn-python-lint-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd cfn-python-lint-$pkgver
+
+  PYTHONPATH=build/lib pytest -v test
+}
+
+package() {
+  cd cfn-python-lint-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}

Deleted: fix-tests.patch
===================================================================
--- fix-tests.patch	2019-06-13 12:27:14 UTC (rev 481269)
+++ fix-tests.patch	2019-06-13 12:27:34 UTC (rev 481270)
@@ -1,11 +0,0 @@
---- cfn-python-lint-0.16.0/src/cfnlint/config.py.orig	2019-03-14 22:41:20.817312234 +0800
-+++ cfn-python-lint-0.16.0/src/cfnlint/config.py	2019-03-14 22:41:40.973955815 +0800
-@@ -456,7 +456,7 @@
-                     if add_filename not in ignore_templates:
-                         all_filenames.append(add_filename)
- 
--        return all_filenames
-+        return sorted(all_filenames)
- 
-     def _ignore_templates(self):
-         """ templates """

Copied: python-cfn-lint/repos/community-any/fix-tests.patch (from rev 481269, python-cfn-lint/trunk/fix-tests.patch)
===================================================================
--- fix-tests.patch	                        (rev 0)
+++ fix-tests.patch	2019-06-13 12:27:34 UTC (rev 481270)
@@ -0,0 +1,11 @@
+--- cfn-python-lint-0.16.0/src/cfnlint/config.py.orig	2019-03-14 22:41:20.817312234 +0800
++++ cfn-python-lint-0.16.0/src/cfnlint/config.py	2019-03-14 22:41:40.973955815 +0800
+@@ -456,7 +456,7 @@
+                     if add_filename not in ignore_templates:
+                         all_filenames.append(add_filename)
+ 
+-        return all_filenames
++        return sorted(all_filenames)
+ 
+     def _ignore_templates(self):
+         """ templates """



More information about the arch-commits mailing list