Path: blob/main/deskutils/conkyforecast/files/patch-setup.py
16461 views
--- setup.py.orig 2011-04-29 09:12:29 UTC1+++ setup.py2@@ -46,7 +46,6 @@ setup(3('/usr/share/conkyforecast/', [ 'conkyForecast.config' ] ),4('/usr/share/conkyforecast/', [ 'conkyForecast-SunsetSunriseCountdown.py' ] ),5('/usr/share/conkyforecast/example', listfiles( 'example', '*' ) ),6- ('/usr/share/fonts/truetype/conkyforecast', listfiles( 'fonts', '*' ) ),7('/usr/share/conkyforecast/images/bearingicons', listfiles( 'images/bearingicons', '*' ) ),8('/usr/share/conkyforecast/images/moonicons', listfiles( 'images/moonicons', '*' ) ),9('/usr/share/conkyforecast/images/weathericons', listfiles( 'images/weathericons', '*' ) ),10@@ -68,5 +67,7 @@ setup(11('/usr/share/conkyforecast/locale/zh/LC_MESSAGES', listfiles( 'locale/zh/LC_MESSAGES', '*' ) ),12('/usr/share/conkyforecast/test', listfiles( 'test', '*' ) )13],14+ # Declare packages explicitly so that setuptools does not attempt auto discovery15+ packages=[],16)17181920