14
0

Accepting request 682851 from home:jayvdb:coala:python3-bears

- Initial spec for v1.2.0

OBS-URL: https://build.opensuse.org/request/show/682851
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pythonfinder?expand=0&rev=1
This commit is contained in:
Tomáš Chvátal
2019-03-08 13:57:50 +00:00
committed by Git OBS Bridge
commit d07bc48333
6 changed files with 123 additions and 0 deletions

17
setup-ascii.patch Normal file
View File

@@ -0,0 +1,17 @@
--- pythonfinder-1.2.0/setup.py.orig 2019-03-07 11:23:59.616077036 +0700
+++ pythonfinder-1.2.0/setup.py 2019-03-07 11:28:00.449877443 +0700
@@ -49,11 +49,11 @@
pass
def run(self):
- self.status('Building Source distribution…')
+ self.status('Building Source distribution.')
os.system('{0} setup.py sdist'.format(sys.executable))
- self.status('Uploading the package to PyPi via Twine…')
+ self.status('Uploading the package to PyPi via Twine.')
os.system('twine upload dist/*')
- self.status('Pushing git tags…')
+ self.status('Pushing git tags.')
os.system('git tag v{0}'.format(find_version("src", "pythonfinder", "__init__.py")))
os.system('git push --tags')
sys.exit()