python-automat: update to 0.7.0, refresh patches
authorJeffery To <jeffery.to@gmail.com>
Sun, 24 Jun 2018 18:30:08 +0000 (02:30 +0800)
committerJeffery To <jeffery.to@gmail.com>
Mon, 25 Jun 2018 20:56:38 +0000 (04:56 +0800)
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
lang/python/python-automat/Makefile
lang/python/python-automat/patches/001-do-not-use-setuptools-scm-m2r.patch
lang/python/python-automat/patches/002-omit-visualize.patch
lang/python/python-automat/patches/003-omit-tests.patch

index 8ddaad0874c494240d4efdd9e372e31a345e737b..0c0ae594767f21e80463c58eade7c198b985b6d4 100644 (file)
@@ -8,12 +8,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=python-automat
-PKG_VERSION:=0.6.0
+PKG_VERSION:=0.7.0
 PKG_RELEASE:=1
 
 PKG_SOURCE:=Automat-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/A/Automat
-PKG_HASH:=3c1fd04ecf08ac87b4dd3feae409542e9bf7827257097b2b6ed5692f69d6f6a8
+PKG_HASH:=cbd78b83fa2d81fe2a4d23d258e1661dd7493c9a50ee2f1a5b2cac61c1793b0e
 
 PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-automat-$(PKG_VERSION)
 
index 46fd241566d3a38d127021e61fed231f03beaeef..babcda4b1f4d501abe68a3af167b63afa7926532 100644 (file)
@@ -26,5 +26,5 @@
 -        'm2r',
 -    ],
      install_requires=[
-         "attrs",
+         "attrs>=16.1.0",
          "six",
index bea12d37a9e8e203c1c0d947a9e0c65734162483..0d68d891feb7a7605be0f8ff6160e10b2b52253b 100644 (file)
@@ -1,7 +1,7 @@
 --- a/setup.py
 +++ b/setup.py
 @@ -27,15 +27,6 @@ setup(
-         "attrs",
+         "attrs>=16.1.0",
          "six",
      ],
 -    extras_require={
index 8742aa3efbfe20a747a0793c8a854ce8cc436fc5..774b683d89a4e74695a7297c81c7c7f64be037fa 100644 (file)
@@ -8,7 +8,7 @@
 +    packages=find_packages(exclude=["*._test", "*._test.*"]),
      package_dir={'automat': 'automat'},
      install_requires=[
-         "attrs",
+         "attrs>=16.1.0",
 @@ -30,6 +30,7 @@ setup(
      author='Glyph',
      author_email='glyph@twistedmatrix.com',
@@ -16,4 +16,4 @@
 +    exclude_package_data={'':['_test/*']},
      license="MIT",
      keywords='fsm finite state machine automata',
- )
+     classifiers=[