diff options
author | Chow Loong Jin <hyperair@ubuntu.com> | 2011-03-15 01:12:42 +0800 |
---|---|---|
committer | Gabriel Burt <gabriel.burt@gmail.com> | 2011-03-14 14:05:29 -0500 |
commit | 6662931f6aac73614dd7dde8f721e0ad86758a99 (patch) | |
tree | 1094b9ab037530a2a23307b34b6f9faa8777d3a6 /extras | |
parent | 133ee90c8e0e30c2e640b2e8626cca6c884af1de (diff) |
Complete rename of binaries and desktop files
Signed-off-by: Gabriel Burt <gabriel.burt@gmail.com>
Diffstat (limited to 'extras')
-rwxr-xr-x | extras/banshee-gather-debug | 6 | ||||
-rwxr-xr-x | extras/create-release-notes | 6 | ||||
-rwxr-xr-x | extras/push-meego | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/extras/banshee-gather-debug b/extras/banshee-gather-debug index 901a40c29..aaf0cb7a9 100755 --- a/extras/banshee-gather-debug +++ b/extras/banshee-gather-debug @@ -24,8 +24,8 @@ function begin_log () { } function find_pid () { - BANSHEE_PID=`(pidof banshee-1 2>/dev/null || - (ps -eo pid,cmd | awk '/mono.*banshee-1\/.*.exe/ { print $1 }')2>/dev/null) | + BANSHEE_PID=`(pidof banshee 2>/dev/null || + (ps -eo pid,cmd | awk '/mono.*banshee\/.*.exe/ { print $1 }')2>/dev/null) | tr -d '[:space:]'` [[ -z "$BANSHEE_PID" ]] && \ @@ -41,7 +41,7 @@ function capture_mono_stack_trace () { function capture_gdb_stack_trace () { echo -n " - Running gdb to get a stack dump: " begin_log "Running gdb (where, detach, quit)" - gdb --quiet --pid=$(pidof banshee-1) -ex where -ex detach -ex quit 1>&2 \ + gdb --quiet --pid=$(pidof banshee) -ex where -ex detach -ex quit 1>&2 \ && echo "success" \ || echo "error" } diff --git a/extras/create-release-notes b/extras/create-release-notes index 0ef3c9b52..430f5b0ed 100755 --- a/extras/create-release-notes +++ b/extras/create-release-notes @@ -36,10 +36,10 @@ $all_contributors = $3; $html = <<END; <ul> <li><strong>Release Date:</strong> $release_date</li> - <li><strong>Source Tarball:</strong> <a href="http://download.banshee-project.org/banshee/$stable/$version/banshee-1-$version.tar.bz2">banshee-1-$version.tar.bz2</a></li> + <li><strong>Source Tarball:</strong> <a href="http://download.banshee-project.org/banshee/$stable/$version/banshee-$version.tar.bz2">banshee-1-$version.tar.bz2</a></li> <li><strong>Release Information:</strong> -<a href="http://download.banshee-project.org/banshee/$stable/$version/banshee-1-$version.news">NEWS</a>, -<a href="http://download.banshee-project.org/banshee/$stable/$version/banshee-1-$version.sha256sum">sha256sum</a></li> +<a href="http://download.banshee-project.org/banshee/$stable/$version/banshee-$version.news">NEWS</a>, +<a href="http://download.banshee-project.org/banshee/$stable/$version/banshee-$version.sha256sum">sha256sum</a></li> </ul> <p style="margin-left: 1.5em"><a href="/download"><img title="Download the latest Banshee!" src="/theme/css/images/download-button.png" alt="Download Now" /></a></p> diff --git a/extras/push-meego b/extras/push-meego index 6b7e7f43b..2893902a1 100755 --- a/extras/push-meego +++ b/extras/push-meego @@ -4,7 +4,7 @@ import os import sys import subprocess -prefix = '/usr/lib/banshee-1' +prefix = '/usr/lib/banshee' exclude_files = [] sync_files = {} last_sync_files = {} @@ -50,4 +50,4 @@ for dirname, files in sync_files.iteritems (): scp.append (os.path.abspath (os.path.join (prefix, dirname))) os.waitpid (subprocess.Popen (scp).pid, 0) -subprocess.call (['meego-ssh', 'killall', '-9', 'Xorg', 'mutter', 'banshee-1']) +subprocess.call (['meego-ssh', 'killall', '-9', 'Xorg', 'mutter', 'banshee']) |