[pkg-java] r7058 - in trunk/jsymphonic: . debian
fourmond at alioth.debian.org
fourmond at alioth.debian.org
Sat Sep 27 19:03:03 UTC 2008
Author: fourmond
Date: 2008-09-27 19:03:02 +0000 (Sat, 27 Sep 2008)
New Revision: 7058
Added:
trunk/jsymphonic/debian/
trunk/jsymphonic/debian/README.Debian
trunk/jsymphonic/debian/changelog
trunk/jsymphonic/debian/compat
trunk/jsymphonic/debian/control
trunk/jsymphonic/debian/copyright
trunk/jsymphonic/debian/docs
trunk/jsymphonic/debian/get-svn-source
trunk/jsymphonic/debian/menu
trunk/jsymphonic/debian/rules
Log:
[svn-inject] Applying Debian modifications to trunk
Property changes on: trunk/jsymphonic/debian
___________________________________________________________________
Name: mergeWithUpstream
+ 1
Added: trunk/jsymphonic/debian/README.Debian
===================================================================
--- trunk/jsymphonic/debian/README.Debian (rev 0)
+++ trunk/jsymphonic/debian/README.Debian 2008-09-27 19:03:02 UTC (rev 7058)
@@ -0,0 +1,6 @@
+jsymphonic for Debian
+---------------------
+
+<possible notes regarding this package - if none, delete this file>
+
+ -- Vincent Fourmond <fourmond at debian.org> Wed, 06 Aug 2008 23:47:40 +0200
Added: trunk/jsymphonic/debian/changelog
===================================================================
--- trunk/jsymphonic/debian/changelog (rev 0)
+++ trunk/jsymphonic/debian/changelog 2008-09-27 19:03:02 UTC (rev 7058)
@@ -0,0 +1,6 @@
+jsymphonic (0.2.1alpha+r196-1) unstable; urgency=low
+
+ * Initial release (Closes: #493971)
+
+ -- Vincent Fourmond <fourmond at debian.org> Wed, 06 Aug 2008 23:47:40 +0200
+
Added: trunk/jsymphonic/debian/compat
===================================================================
--- trunk/jsymphonic/debian/compat (rev 0)
+++ trunk/jsymphonic/debian/compat 2008-09-27 19:03:02 UTC (rev 7058)
@@ -0,0 +1 @@
+7
Added: trunk/jsymphonic/debian/control
===================================================================
--- trunk/jsymphonic/debian/control (rev 0)
+++ trunk/jsymphonic/debian/control 2008-09-27 19:03:02 UTC (rev 7058)
@@ -0,0 +1,20 @@
+Source: jsymphonic
+Section: sound
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Vincent Fourmond <fourmond at debian.org>
+Build-Depends: cdbs, debhelper (>= 7)
+Standards-Version: 3.8.0
+Homepage: http://sourceforge.net/projects/symphonic/
+
+Package: jsymphonic
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: File manager for Sony's MP3 players
+ Symphonic is a file manager for Sony's flash players (such as the
+ NW-E00x series), where songs are stored in a proprietary format
+ not very Unix-friendly.
+ .
+ This program provides functionalities similar to the proprietary
+ Windows-only SonicStage software given by Sony to interact with
+ the players.
\ No newline at end of file
Added: trunk/jsymphonic/debian/copyright
===================================================================
--- trunk/jsymphonic/debian/copyright (rev 0)
+++ trunk/jsymphonic/debian/copyright 2008-09-27 19:03:02 UTC (rev 7058)
@@ -0,0 +1,26 @@
+This package was debianized by Vincent Fourmond <fourmond at debian.org> on
+Wed, 06 Aug 2008 23:47:40 +0200.
+
+It was downloaded from the SVN repository at
+https://symphonic.svn.sourceforge.net/svnroot/symphonic/trunk/jsymphonic,
+using the script debian/get-svn-source.
+
+Upstream Author(s):
+
+ <put author's name and email here>
+ <likewise for another author>
+
+Copyright:
+
+ <Copyright (C) YYYY Name OfAuthor>
+ <likewise for another author>
+
+License:
+
+ <Put the license of the package here indented by 4 spaces>
+
+The Debian packaging is (C) 2008, Vincent Fourmond <fourmond at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.
Added: trunk/jsymphonic/debian/docs
===================================================================
--- trunk/jsymphonic/debian/docs (rev 0)
+++ trunk/jsymphonic/debian/docs 2008-09-27 19:03:02 UTC (rev 7058)
@@ -0,0 +1,6 @@
+READ
+ME_fr.txt
+READ
+ME_old.txt
+READ
+ME.txt
Added: trunk/jsymphonic/debian/get-svn-source
===================================================================
--- trunk/jsymphonic/debian/get-svn-source (rev 0)
+++ trunk/jsymphonic/debian/get-svn-source 2008-09-27 19:03:02 UTC (rev 7058)
@@ -0,0 +1,37 @@
+#!/bin/sh
+
+# Script to export the source code of jsymphonic from its SVN repository,
+# and repackage that into a decent .orig tarball...
+
+# It takes one argument: the latest version, anterior to the code.
+
+version="$1"
+package="jsymphonic"
+
+REP="https://symphonic.svn.sourceforge.net/svnroot/symphonic/trunk/jsymphonic"
+
+tmpdir=`mktemp -d `
+curdir=`pwd`
+
+cd $tmpdir;
+
+echo $tmpdir
+
+echo -n "Getting revision... "
+revision=$(svn info "$REP" | grep Revision | grep -Eo '[0-9]+')
+echo "r$revision"
+
+echo "Exporting source"
+dir="${package}-${version}+r${revision}"
+tarball="${package}_${version}+r${revision}.orig.tar.gz"
+svn export "$REP" "$dir"
+
+echo "Cleaning up source..."
+rm -rf $dir/build $dir/dist
+
+echo "Making tarball"
+tar cvzf "$curdir/$tarball" "$dir"
+
+echo "Cleaning up temporary files"
+cd $curdir
+rm -rf $tmpdir
\ No newline at end of file
Added: trunk/jsymphonic/debian/menu
===================================================================
--- trunk/jsymphonic/debian/menu (rev 0)
+++ trunk/jsymphonic/debian/menu 2008-09-27 19:03:02 UTC (rev 7058)
@@ -0,0 +1,2 @@
+?package(jsymphonic):needs="X11|text|vc|wm" section="Applications/see-menu-manual"\
+ title="jsymphonic" command="/usr/bin/jsymphonic"
Added: trunk/jsymphonic/debian/rules
===================================================================
--- trunk/jsymphonic/debian/rules (rev 0)
+++ trunk/jsymphonic/debian/rules 2008-09-27 19:03:02 UTC (rev 7058)
@@ -0,0 +1,5 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+# Add here any variable or target overrides you need.
Property changes on: trunk/jsymphonic/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
More information about the pkg-java-commits
mailing list