[Python-modules-commits] r22946 - in packages/python-secretstorage/trunk/debian/patches (1 file)

mitya57-guest at users.alioth.debian.org mitya57-guest at users.alioth.debian.org
Sat Nov 10 14:13:24 UTC 2012


    Date: Saturday, November 10, 2012 @ 14:13:23
  Author: mitya57-guest
Revision: 22946

Actually remove bzr_use_check_call.patch

Deleted:
  packages/python-secretstorage/trunk/debian/patches/bzr_use_check_call.patch

Deleted: packages/python-secretstorage/trunk/debian/patches/bzr_use_check_call.patch
===================================================================
--- packages/python-secretstorage/trunk/debian/patches/bzr_use_check_call.patch	2012-11-10 14:12:35 UTC (rev 22945)
+++ packages/python-secretstorage/trunk/debian/patches/bzr_use_check_call.patch	2012-11-10 14:13:23 UTC (rev 22946)
@@ -1,25 +0,0 @@
-From: Dmitry Shachnev <mitya57 at gmail.com>
-Subject: Use check_call instead of Popen in setup.py
-
-=== modified file 'setup.py'
---- a/setup.py	2012-06-21 10:09:25 +0000
-+++ b/setup.py	2012-06-22 09:27:22 +0000
-@@ -2,7 +2,7 @@
- 
- from distutils.core import setup, Command
- from distutils.command.build import build
--from subprocess import Popen
-+from subprocess import check_call
- 
- long_description = \
- '''This module provides a way for securely storing passwords and other secrets.
-@@ -30,7 +30,7 @@
- class build_docs(Command):
- 	def run(self):
- 		try:
--			Popen(['wpgen', 'updateall'], cwd='docs')
-+			check_call(['wpgen', 'updateall'], cwd='docs')
- 		except OSError:
- 			print('Warning: wpgen not found, skipping build_docs')
- 	def initialize_options(self): pass
-




More information about the Python-modules-commits mailing list