[Python-apps-commits] r7025 - in packages/fookebox/trunk/debian (7 files)

cockroach-guest at users.alioth.debian.org cockroach-guest at users.alioth.debian.org
Sat Apr 30 02:32:14 UTC 2011


    Date: Saturday, April 30, 2011 @ 02:32:12
  Author: cockroach-guest
Revision: 7025

Updated package for the new upstream release

Modified:
  packages/fookebox/trunk/debian/changelog
  packages/fookebox/trunk/debian/conf/apache.conf
  packages/fookebox/trunk/debian/conf/config.ini
  packages/fookebox/trunk/debian/conf/fookebox.wsgi
  packages/fookebox/trunk/debian/control
  packages/fookebox/trunk/debian/copyright
  packages/fookebox/trunk/debian/patches/01_javascript-urls.patch

Modified: packages/fookebox/trunk/debian/changelog
===================================================================
--- packages/fookebox/trunk/debian/changelog	2011-04-29 15:17:16 UTC (rev 7024)
+++ packages/fookebox/trunk/debian/changelog	2011-04-30 02:32:12 UTC (rev 7025)
@@ -1,5 +1,5 @@
-fookebox (0.5.2-1) unstable; urgency=low
+fookebox (0.6.0-1) unstable; urgency=low
 
   * Initial official debian package				closes: #510425
 
- -- Stefan Ott <stefan at ott.net>  Thu, 02 Dec 2010 15:58:25 +0100
+ -- Stefan Ott <stefan at ott.net>  Sat, 12 Feb 2011 05:20:34 +0100

Modified: packages/fookebox/trunk/debian/conf/apache.conf
===================================================================
--- packages/fookebox/trunk/debian/conf/apache.conf	2011-04-29 15:17:16 UTC (rev 7024)
+++ packages/fookebox/trunk/debian/conf/apache.conf	2011-04-30 02:32:12 UTC (rev 7025)
@@ -1,6 +1,15 @@
 WSGIScriptAlias /fookebox /etc/fookebox/fookebox.wsgi
 
+WSGIDaemonProcess fookebox
+WSGIProcessGroup fookebox
+
 <Location /fookebox>
 	Order deny,allow
 	Allow from all
 </Location>
+
+<Location /fookebox/schedule>
+	Order deny,allow
+	Deny from all
+	Allow from localhost
+</Location>

Modified: packages/fookebox/trunk/debian/conf/config.ini
===================================================================
--- packages/fookebox/trunk/debian/conf/config.ini	2011-04-29 15:17:16 UTC (rev 7024)
+++ packages/fookebox/trunk/debian/conf/config.ini	2011-04-30 02:32:12 UTC (rev 7025)
@@ -1,5 +1,5 @@
 #
-# fookebox - Pylons development environment configuration
+# fookebox - Pylons configuration
 #
 # The %(here)s variable will be replaced with the parent directory of this file
 #
@@ -12,7 +12,7 @@
 
 [server:main]
 use = egg:Paste#http
-host = 127.0.0.1
+host = 0.0.0.0
 port = 5000
 
 [app:main]
@@ -63,12 +63,22 @@
 # be anal about artist/album names (see README)
 #find_over_search = false
 
+# show cover art if available?
+#show_cover_art = true
+
+# directory that contains your music
+#music_base_path = /var/lib/mpd/
+
 # directory with cover art
 #album_cover_path = /home/stefan/.cache/rhythmbox/covers/
 
 # what to use as artist name when looking for compilations' cover art?
 #compliations_name = Various Artists
 
+# hide the credits in the fookebox main screen
+#hide_credits = false
+
+
 # Logging configuration
 [loggers]
 keys = root, routes, fookebox
@@ -101,8 +111,4 @@
 formatter = generic
 
 [formatter_generic]
-format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] [%(threadName)s] %(message)s
-datefmt = %H:%M:%S
-
-[fookebox]
-site_name = fookebox
+format = %(asctime)s %(levelname)-5.5s [%(name)s] [%(threadName)s] %(message)s

Modified: packages/fookebox/trunk/debian/conf/fookebox.wsgi
===================================================================
--- packages/fookebox/trunk/debian/conf/fookebox.wsgi	2011-04-29 15:17:16 UTC (rev 7024)
+++ packages/fookebox/trunk/debian/conf/fookebox.wsgi	2011-04-30 02:32:12 UTC (rev 7025)
@@ -1,7 +1,9 @@
+BASE_PATH = '/usr/share/fookebox'
 APP_CONFIG = '/etc/fookebox/config.ini'
 
 import sys
-sys.path.append('/usr/share/fookebox')
+if BASE_PATH not in sys.path:
+	sys.path.append(BASE_PATH)
 
 from paste.deploy import loadapp
 application = loadapp('config:' + APP_CONFIG)

Modified: packages/fookebox/trunk/debian/control
===================================================================
--- packages/fookebox/trunk/debian/control	2011-04-29 15:17:16 UTC (rev 7024)
+++ packages/fookebox/trunk/debian/control	2011-04-30 02:32:12 UTC (rev 7025)
@@ -17,4 +17,3 @@
  fookebox is a jukebox-style web-frontend to mpd. It can serve as a
  keyboard-less jukebox or as a generic mpd frontend, depending on your
  preferences.
-XB-Python-Version: ${python:Versions}

Modified: packages/fookebox/trunk/debian/copyright
===================================================================
--- packages/fookebox/trunk/debian/copyright	2011-04-29 15:17:16 UTC (rev 7024)
+++ packages/fookebox/trunk/debian/copyright	2011-04-30 02:32:12 UTC (rev 7025)
@@ -1,11 +1,11 @@
 This package was debianized by Stefan Ott <stefan at ott.net> on
-Thu, 01 Jul 2010 05:03:33 +0200.
+Sat, 30 Apr 2011 04:11:33 +0200.
 
 It was downloaded from http://fookebox.googlecode.com/
 
 Upstream Author: Stefan Ott <stefan at ott.net>
 
-Copyright (C) 2007-2010 Stefan Ott
+Copyright (C) 2007-2011 Stefan Ott
 
   You are free to distribute this software under the terms of the GNU
   General Public License.

Modified: packages/fookebox/trunk/debian/patches/01_javascript-urls.patch
===================================================================
--- packages/fookebox/trunk/debian/patches/01_javascript-urls.patch	2011-04-29 15:17:16 UTC (rev 7024)
+++ packages/fookebox/trunk/debian/patches/01_javascript-urls.patch	2011-04-30 02:32:12 UTC (rev 7025)
@@ -1,25 +1,25 @@
 Use debian's scriptaculous/prototype instead of the ones shipped with fookebox
-diff -Naur fookebox-0.5.0.orig/fookebox/templates/base.tpl fookebox-0.5.0/fookebox/templates/base.tpl
---- fookebox-0.5.0.orig/fookebox/templates/base.tpl	2010-06-22 05:32:46.034450886 +0200
-+++ fookebox-0.5.0/fookebox/templates/base.tpl	2010-06-22 05:34:15.237455463 +0200
-@@ -6,8 +6,8 @@
- 		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- 		<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />
- 		<script type="text/javascript" src="js/fookebox.js"></script>
--		<script type="text/javascript" src="js/prototype.js"></script>
--		<script type="text/javascript" src="js/scriptaculous.js?load=effects"></script>
+diff -Naur fookebox-0.6.0.orig//fookebox/templates/base.tpl fookebox-0.6.0/fookebox/templates/base.tpl
+--- fookebox-0.6.0.orig//fookebox/templates/base.tpl	2011-04-29 21:15:05.000000000 +0200
++++ fookebox-0.6.0/fookebox/templates/base.tpl	2011-04-30 03:59:38.978303499 +0200
+@@ -11,8 +11,8 @@
+ % if mobile:
+ 		<link rel="stylesheet" href="css/style-mobile.css" type="text/css" media="screen" />
+ % endif
+-		<script type="text/javascript" src="js/prototype/prototype.js"></script>
+-		<script type="text/javascript" src="js/scriptaculous/scriptaculous.js?load=effects"></script>
 +		<script type="text/javascript" src="/javascript/prototype/prototype.js"></script>
 +		<script type="text/javascript" src="/javascript/scriptaculous/scriptaculous.js?load=effects"></script>
- 	</head>
- 	<body id="body">
- 		${next.body()}
-diff -Naur fookebox-0.5.0.orig/MANIFEST.in fookebox-0.5.0/MANIFEST.in
---- fookebox-0.5.0.orig/MANIFEST.in	2010-06-22 06:21:43.663510631 +0200
-+++ fookebox-0.5.0/MANIFEST.in	2010-06-22 06:21:30.347701049 +0200
-@@ -2,3 +2,6 @@
+ % if config.get('lang'):
+ 		<script type="text/javascript" src="js/fookebox/i18n/${config.get('lang')}.js"></script>
+ % endif
+diff -Naur fookebox-0.6.0.orig//MANIFEST.in fookebox-0.6.0/MANIFEST.in
+--- fookebox-0.6.0.orig//MANIFEST.in	2011-02-12 05:01:50.000000000 +0100
++++ fookebox-0.6.0/MANIFEST.in	2011-04-30 03:59:56.515303458 +0200
+@@ -5,3 +5,6 @@
  recursive-include fookebox/public *
  recursive-include fookebox/templates *
  exclude *ini
-+exclude fookebox/public/js/effects.js
-+exclude fookebox/public/js/prototype.js
-+exclude fookebox/public/js/scriptaculous.js
++exclude fookebox/public/js/prototype/prototype.js
++exclude fookebox/public/js/scriptaculous/effects.js
++exclude fookebox/public/js/scriptaculous/scriptaculous.js




More information about the Python-apps-commits mailing list