diff options
author | drochner <drochner@pkgsrc.org> | 2009-07-31 08:50:27 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2009-07-31 08:50:27 +0000 |
commit | 11a7f41f921cd19d07b391ed85ca47c3a8a09adc (patch) | |
tree | 35630ceb110d921a3abb9b523415a27939bfd6f5 /audio/rhythmbox/patches | |
parent | c3e28b1b6dbb563adf787cf862221454f7fceaf4 (diff) | |
download | pkgsrc-11a7f41f921cd19d07b391ed85ca47c3a8a09adc.tar.gz |
update to 0.12.3
changes: many bugfixes
pkgsrc changes:
-use brasero rather than nautilus-cd-burner for CD writing
(this works well for me now)
-use musicbrainz rather than -2
(audio CD reading doesn't work on NetBSD due to HAL problems,
so I couldn't test)
Diffstat (limited to 'audio/rhythmbox/patches')
-rw-r--r-- | audio/rhythmbox/patches/patch-aa | 13 | ||||
-rw-r--r-- | audio/rhythmbox/patches/patch-ab | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/audio/rhythmbox/patches/patch-aa b/audio/rhythmbox/patches/patch-aa new file mode 100644 index 00000000000..2e6db05ffdc --- /dev/null +++ b/audio/rhythmbox/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.10 2009/07/31 08:50:27 drochner Exp $ + +--- plugins/coherence/upnp_coherence/UpnpSource.py.orig 2009-06-30 01:38:57.000000000 +0200 ++++ plugins/coherence/upnp_coherence/UpnpSource.py +@@ -132,7 +132,7 @@ class UpnpSource(rb.BrowserSource,log.Lo + + if duration is not None: + h,m,s = duration.split(':') +- seconds = int(h)*3600 + int(m)*60 + int(s) ++ seconds = int(h)*3600 + int(m)*60 + int(round(float(s))) + self.info("%r %r:%r:%r %r", duration, h, m , s, seconds) + self.__db.set(entry, rhythmdb.PROP_DURATION, seconds) + diff --git a/audio/rhythmbox/patches/patch-ab b/audio/rhythmbox/patches/patch-ab new file mode 100644 index 00000000000..74e6f0557ec --- /dev/null +++ b/audio/rhythmbox/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.8 2009/07/31 08:50:27 drochner Exp $ + +--- plugins/audiocd/sj-metadata-musicbrainz3.c.orig 2009-07-23 20:24:18.000000000 +0200 ++++ plugins/audiocd/sj-metadata-musicbrainz3.c +@@ -231,6 +231,8 @@ mb_list_albums (SjMetadata *metadata, ch + } + + priv->disc = mb_read_disc (priv->cdrom); ++ if (!priv->disc) ++ return NULL; + if (url != NULL) { + mb_get_submission_url (priv->disc, NULL, 0, buffer, sizeof (buffer)); + *url = g_strdup (buffer); |