summaryrefslogblamecommitdiff
path: root/user/py3-tz/zoneinfo-noinstall.patch
blob: a41e0a6cc436dafee2accf851b11efa4c6c490fe (plain) (tree)



















                                                                               
Patch pulled from Gentoo. Prevents installation of pkg tzinfo files
--- a/setup.py
+++ b/setup.py
@@ -15,15 +15,8 @@
 memail = 'stuart@stuartbishop.net'
 packages = ['pytz']
 resources = ['zone.tab', 'locales/pytz.pot']
-for dirpath, dirnames, filenames in os.walk(os.path.join('pytz', 'zoneinfo')):
-    # remove the 'pytz' part of the path
-    basepath = dirpath.split(os.path.sep, 1)[1]
-    resources.extend([os.path.join(basepath, filename)
-                     for filename in filenames])
 package_data = {'pytz': resources}
 
-assert len(resources) > 10, 'zoneinfo files not found!'
-
 setup(
     name='pytz',
     version=pytz.VERSION,