Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/deskutils/conkyforecast/files/patch-setup.py
16461 views
1
--- setup.py.orig 2011-04-29 09:12:29 UTC
2
+++ setup.py
3
@@ -46,7 +46,6 @@ setup(
4
('/usr/share/conkyforecast/', [ 'conkyForecast.config' ] ),
5
('/usr/share/conkyforecast/', [ 'conkyForecast-SunsetSunriseCountdown.py' ] ),
6
('/usr/share/conkyforecast/example', listfiles( 'example', '*' ) ),
7
- ('/usr/share/fonts/truetype/conkyforecast', listfiles( 'fonts', '*' ) ),
8
('/usr/share/conkyforecast/images/bearingicons', listfiles( 'images/bearingicons', '*' ) ),
9
('/usr/share/conkyforecast/images/moonicons', listfiles( 'images/moonicons', '*' ) ),
10
('/usr/share/conkyforecast/images/weathericons', listfiles( 'images/weathericons', '*' ) ),
11
@@ -68,5 +67,7 @@ setup(
12
('/usr/share/conkyforecast/locale/zh/LC_MESSAGES', listfiles( 'locale/zh/LC_MESSAGES', '*' ) ),
13
('/usr/share/conkyforecast/test', listfiles( 'test', '*' ) )
14
],
15
+ # Declare packages explicitly so that setuptools does not attempt auto discovery
16
+ packages=[],
17
)
18
19
20