[arch-commits] Commit in yq/repos/community-any (3 files)

Felix Yan felixonmars at archlinux.org
Mon May 25 14:24:32 UTC 2020


    Date: Monday, May 25, 2020 @ 14:24:32
  Author: felixonmars
Revision: 634397

archrelease: copy trunk to community-any

Added:
  yq/repos/community-any/PKGBUILD
    (from rev 634396, yq/trunk/PKGBUILD)
Deleted:
  yq/repos/community-any/0001-Fix-test_datestimes-for-PyYAML-5.3.patch
  yq/repos/community-any/PKGBUILD

-----------------------------------------------+
 0001-Fix-test_datestimes-for-PyYAML-5.3.patch |   37 ------------
 PKGBUILD                                      |   69 ++++++++++--------------
 2 files changed, 31 insertions(+), 75 deletions(-)

Deleted: 0001-Fix-test_datestimes-for-PyYAML-5.3.patch
===================================================================
--- 0001-Fix-test_datestimes-for-PyYAML-5.3.patch	2020-05-25 14:24:15 UTC (rev 634396)
+++ 0001-Fix-test_datestimes-for-PyYAML-5.3.patch	2020-05-25 14:24:32 UTC (rev 634397)
@@ -1,37 +0,0 @@
-From 57b9698ce56a78c783b5535910e2db81c0cc9e2c Mon Sep 17 00:00:00 2001
-From: "Daniel M. Capella" <polyzen at archlinux.org>
-Date: Sat, 29 Feb 2020 16:10:50 -0500
-Subject: [PATCH] Fix test_datestimes for PyYAML >=5.3
-
----
- test/test.py | 7 +++++--
- 1 file changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/test/test.py b/test/test.py
-index 12fa806..8897196 100755
---- a/test/test.py
-+++ b/test/test.py
-@@ -3,7 +3,7 @@
- 
- from __future__ import absolute_import, division, print_function, unicode_literals
- 
--import os, sys, unittest, tempfile, json, io, platform, subprocess
-+import os, sys, unittest, tempfile, json, io, platform, subprocess, yaml
- 
- sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
- from yq import yq, cli  # noqa
-@@ -116,7 +116,10 @@ class TestYq(unittest.TestCase):
- 
-     def test_datetimes(self):
-         self.assertEqual(self.run_yq("- 2016-12-20T22:07:36Z\n", ["."]), "")
--        self.assertEqual(self.run_yq("- 2016-12-20T22:07:36Z\n", ["-y", "."]), "- '2016-12-20T22:07:36'\n")
-+        if yaml.__version__ < '5.3':
-+            self.assertEqual(self.run_yq("- 2016-12-20T22:07:36Z\n", ["-y", "."]), "- '2016-12-20T22:07:36'\n")
-+        else:
-+            self.assertEqual(self.run_yq("- 2016-12-20T22:07:36Z\n", ["-y", "."]), "- '2016-12-20T22:07:36+00:00'\n")
- 
-         self.assertEqual(self.run_yq("2016-12-20", ["."]), "")
-         self.assertEqual(self.run_yq("2016-12-20", ["-y", "."]), "'2016-12-20'\n")
--- 
-2.25.1
-

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-05-25 14:24:15 UTC (rev 634396)
+++ PKGBUILD	2020-05-25 14:24:32 UTC (rev 634397)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Caleb Maclennan <caleb at alerque.com>
-
-pkgname=yq
-pkgver=2.10.0
-pkgrel=1
-pkgdesc="Command-line YAML/XML processor - jq wrapper for YAML/XML documents"
-url="https://github.com/kislyuk/yq"
-depends=('jq' 'python-setuptools' 'python-yaml' 'python-xmltodict'
-         'python-argcomplete')
-checkdepends=('python-toml')
-optdepends=('python-toml')
-license=('Apache')
-arch=('any')
-source=("https://files.pythonhosted.org/packages/source/y/$pkgname/$pkgname-$pkgver.tar.gz"
-        0001-Fix-test_datestimes-for-PyYAML-5.3.patch)
-sha256sums=('abaf2c0728f1c38dee852e976b0a6def5ab660d67430ee5af76b7a37072eba46'
-            '4323f882c110ad4936892e295e634785086839b97730d74f924bc98e547a66cb')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch --forward --strip=1 --input=../0001-Fix-test_datestimes-for-PyYAML-5.3.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $pkgname-$pkgver
-  python test/test.py
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: yq/repos/community-any/PKGBUILD (from rev 634396, yq/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-05-25 14:24:32 UTC (rev 634397)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Caleb Maclennan <caleb at alerque.com>
+
+pkgname=yq
+pkgver=2.10.1
+pkgrel=1
+pkgdesc="Command-line YAML/XML processor - jq wrapper for YAML/XML documents"
+url="https://github.com/kislyuk/yq"
+depends=('jq' 'python-setuptools' 'python-yaml' 'python-xmltodict'
+         'python-argcomplete')
+checkdepends=('python-toml')
+optdepends=('python-toml')
+license=('Apache')
+arch=('any')
+source=("https://files.pythonhosted.org/packages/source/y/$pkgname/$pkgname-$pkgver.tar.gz")
+sha512sums=('7fd38d454a924810117b7b87e519b4e91be654631827f806a95723ca04218fe3a7ece84a5a88787fe4b2d9acd60da74d6a7131950724f339b4e1bf3d0e35c792')
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $pkgname-$pkgver
+  python test/test.py
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



More information about the arch-commits mailing list