openbsd-ports/audio/radiotray/patches/patch-src_RadioTray_py
landry f47fb91133 Import radiotray 0.7.3.
Radio Tray is an online radio streaming player that runs in the GUI
system tray.

From maintainer Fred Crowson, thanks!
ok benoit@ sthen@ tweaks daniel@ & myself
2014-12-11 09:02:38 +00:00

21 lines
833 B
Plaintext

$OpenBSD: patch-src_RadioTray_py,v 1.1.1.1 2014/12/11 09:02:38 landry Exp $
Setting file permission on config.xml and bookmark.xml to allow user writing.
--- src/RadioTray.py.orig Fri Mar 9 01:22:31 2012
+++ src/RadioTray.py Fri Nov 21 10:15:17 2014
@@ -157,11 +157,13 @@ class RadioTray(object):
else:
self.logger.info('Copying default bookmarks file to user directory')
copy2(DEFAULT_RADIO_LIST, self.filename)
+ os.chmod(self.filename, 0644)
if not os.access(self.cfg_filename, os.R_OK|os.W_OK):
self.logger.warn('Configuration file not found. Copying default configuration file to user directory')
copy2(DEFAULT_CONFIG_FILE, self.cfg_filename)
+ os.chmod(self.cfg_filename, 0644)
def configLogging(self):