Update Debian packaging bugfix-0.5 / v0.5.13

file:f47363a5db92f45b8b1fb44ab6513869c5245dfb -> file:d9d18eb16e46bca128c4ae1eefd29fef0be02d79
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+mp3togo (0.5.13) unstable; urgency=low
+
+ * Changed default verbosity to 2.
+ Cleaned up cluster.py.
+
+ -- Simeon Veldstra <reallifesim@gmail.com> Thu, 03 Apr 2008 13:39:53 -0700
+
mp3togo (0.5.12) unstable; urgency=low
* Fixed eyeD3 to work without ID3 present.
file:7ffd3478a26391dbcab528c048f9b0655344a9df -> file:244d893cc528303076b3e241cb2b9c03364ff8c6
--- a/debian/control
+++ b/debian/control
@@ -5,11 +5,11 @@ Maintainer: Simeon Veldstra <reallifesim
Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5.0.37.2), python, python-support (>=0.5.2)
#Build-Depends-Indep: python, python-support (>=0.5.3), docbook-to-man
Build-Depends-Indep: docbook-to-man
-Standards-Version: 3.7.2
+Standards-Version: 3.7.3
+#XS-Python-Version: current
Package: mp3togo
Architecture: all
-#XS-Python-Version: current
#XB-Python-Version: ${python:Versions}
Depends: ${python:Depends}, python-pyvorbis, python-eyeD3, mpg321, vorbis-tools
#Provides: ${python:Provides}
file:b0072736f0b1ebc3e5f0867bac438b0e3154b5c7 -> file:6cfe823d1016fb52d0c63f28295d7dda08bb2122
--- a/debian/mp3togo.1
+++ b/debian/mp3togo.1
@@ -134,4 +134,4 @@ License can be found in /usr/share/commo
.PP
mp3togo can be found online at http://puddle.ca/mp3togo
-.\" created by instant / docbook-to-man, Mon 11 Jun 2007, 19:51
+.\" created by instant / docbook-to-man, Thu 03 Apr 2008, 13:45
file:88c098c7679465e5c7847caf35e865ea0ea9d594 -> file:ed6c464e6e905c2b3bf8a5c5fbc671acc38db86e
--- a/mp3togo/cluster.py
+++ b/mp3togo/cluster.py
@@ -93,26 +93,12 @@ def slave(opts):
fcntl.fcntl(sys.stdin.fileno(), fcntl.F_SETFL, os.O_NONBLOCK) #Want
- #fcntl.fcntl(sys.stdout.fileno(), fcntl.F_SETFL, os.O_NONBLOCK) #Don't
def initialize(ropts):
"""Integrate remote options into local opts"""
- # of = file('/home/sim/temp/2go/cluster/opts-slave', 'w')
-# for key in ropts.keys():
-# if opts.has_key(key):
-# opts[key] = ropts[key]
-# # of.write("%s: %s\n" % (key, opts[key]))
-# else:
-# return None
- # of.close()
st = ropts['pickle']
opts._d = cPickle.loads(st)
-
opts['verbosity'] = 0
- of = file('/home/sim/temp/2go/cluster/opts-slave', 'w')
- for key in opts.keys():
- of.write("%s: %s\n" % (key, opts[key]))
- of.close()
return "SLAVE: ready"
def perform(rotps):
@@ -222,7 +208,6 @@ class Boss:
if self.pid == 0:
args = r_schema.replace('%h', host)
args += " mp3togo --cluster-slave True"
- #args += " test-mp3togo --cluster-slave True"
args = args.split()
os.execvp(args[0], args)
else:
@@ -245,8 +230,6 @@ class Boss:
def poll(self):
start = 0
last_action = ''
- #for key in self.opts.keys():
- # self.wf.write('%s=%s\n' % (key, self.opts[key]))
optd = self.opts._d.copy()
optd['arg_files'] = []
st = "pickle=" + cPickle.dumps(optd) + '\n'