summaryrefslogtreecommitdiff
path: root/www/py-gandi.cli/files/patch-setup.py
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2016-07-28 13:55:58 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2016-07-28 13:55:58 +0000
commit61d8f584454f579176ff3ceeed470c66f85e9ff6 (patch)
tree377c8be83468a4769db44cf59d39db8e26b268cf /www/py-gandi.cli/files/patch-setup.py
parentdevel/pear-HTML_Table: Update version 1.8.3=>1.8.4 (diff)
Update to 0.19
Update create commands for namespaces: vm, paas, ip, disk, vlan, webacc to handle new datacenter status: * prevent using a closed datacenter for creation * display a warning when using a datacenter which will be closed in the future Update 'gandi mailbox info' command: aliases are now sorted Fixes #178: 'gandi account info' command now display prepaid amount Fixes #185: 'gandi domain create' command can now change nameservers Fixes #187: 'gandi record list' command has a --limit parameter Fixes #188: broken links in README Fixes certificate unittest for python3 Sponsored by: Gandi.net
Notes
Notes: svn path=/head/; revision=419220
Diffstat (limited to 'www/py-gandi.cli/files/patch-setup.py')
-rw-r--r--www/py-gandi.cli/files/patch-setup.py35
1 files changed, 0 insertions, 35 deletions
diff --git a/www/py-gandi.cli/files/patch-setup.py b/www/py-gandi.cli/files/patch-setup.py
deleted file mode 100644
index d7d047c6e05c..000000000000
--- a/www/py-gandi.cli/files/patch-setup.py
+++ /dev/null
@@ -1,35 +0,0 @@
---- setup.py.orig 2016-02-08 14:17:09 UTC
-+++ setup.py
-@@ -6,11 +6,11 @@ import os
- import sys
-
- from setuptools import setup, find_packages
-+from io import open
-
- here = os.path.abspath(os.path.dirname(__file__))
--README = open(os.path.join(here, 'README.md')).read()
--CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
--
-+README = open(os.path.join(here, 'README.md'), encoding='utf-8').read()
-+CHANGES = open(os.path.join(here, 'CHANGES.rst'), encoding='utf-8').read()
-
- with open(os.path.join(here, 'gandi', 'cli', '__init__.py')) as v_file:
- version = re.compile(r".*__version__ = '(.*?)'",
-@@ -18,7 +18,7 @@ with open(os.path.join(here, 'gandi', 'c
-
- requires = ['setuptools', 'pyyaml', 'click>=3.1', 'requests', 'IPy']
-
--tests_require = ['nose', 'coverage', 'tox', 'httpretty==0.8.6']
-+tests_require = ['httpretty>=0.8.6']
- if sys.version_info < (2, 7):
- tests_require += ['unittest2', 'importlib']
-
-@@ -54,7 +54,7 @@ setup(name='gandi.cli',
- zip_safe=False,
- install_requires=requires,
- tests_require=tests_require,
-- test_suite='nose.collector',
-+ test_suite='gandi.cli.tests',
- extras_require=extras_require,
- entry_points={
- 'console_scripts': [