py-configobj: remove url function (#16522)

It seems the pypi version of the package somehow compiles just fine

Co-authored-by: Sinan81 <sbulut@3vgeomatics.com>
This commit is contained in:
Sinan 2020-05-11 01:43:56 -07:00 committed by GitHub
parent e08792cbcb
commit ff6a0fc7b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,15 +16,5 @@ class PyConfigobj(PythonPackage):
version('5.0.6', sha256='a2f5650770e1c87fb335af19a9b7eb73fc05ccf22144eb68db7d00cd2bcb0902') version('5.0.6', sha256='a2f5650770e1c87fb335af19a9b7eb73fc05ccf22144eb68db7d00cd2bcb0902')
version('4.7.2', sha256='515ff923462592e8321df8b48c47e3428f8d406ee22b8de77bef969d1af11171') version('4.7.2', sha256='515ff923462592e8321df8b48c47e3428f8d406ee22b8de77bef969d1af11171')
# The version on PyPi seems to be outdated (2014) although confusingly
# enough version number is the same as the latest release on github.
depends_on('py-six', type=('build', 'run')) depends_on('py-six', type=('build', 'run'))
depends_on('python@2.7:2.8,3.4:', type=('build', 'run')) depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
def url_for_version(self, version):
if version <= Version('5.0.0'):
url = "https://pypi.io/packages/source/c/configobj/configobj-{0}.tar.gz"
else:
url = "https://github.com/DiffSK/configobj/archive/v{0}.tar.gz"
return url.format(version)