[pkg-java] r13900 - in trunk: . gnome-split gnome-split/debian gnome-split/debian/patches gnome-split/debian/source

Guillaume Mazoyer gmazoyer-guest at alioth.debian.org
Tue Aug 2 19:38:24 UTC 2011


Author: gmazoyer-guest
Date: 2011-08-02 19:38:24 +0000 (Tue, 02 Aug 2011)
New Revision: 13900

Added:
   trunk/gnome-split/
   trunk/gnome-split/debian/
   trunk/gnome-split/debian/changelog
   trunk/gnome-split/debian/compat
   trunk/gnome-split/debian/control
   trunk/gnome-split/debian/copyright
   trunk/gnome-split/debian/docs
   trunk/gnome-split/debian/gnome-split.manpages
   trunk/gnome-split/debian/patches/
   trunk/gnome-split/debian/patches/01_manifest_main_class.patch
   trunk/gnome-split/debian/patches/02_manpage.patch
   trunk/gnome-split/debian/patches/series
   trunk/gnome-split/debian/rules
   trunk/gnome-split/debian/source/
   trunk/gnome-split/debian/source/format
   trunk/gnome-split/debian/watch
Log:
Add gnome-split project.


Added: trunk/gnome-split/debian/changelog
===================================================================
--- trunk/gnome-split/debian/changelog	                        (rev 0)
+++ trunk/gnome-split/debian/changelog	2011-08-02 19:38:24 UTC (rev 13900)
@@ -0,0 +1,5 @@
+gnome-split (0.7-1) unstable; urgency=low
+
+  * Initial release (Closes: #636253)
+
+ -- Guillaume Mazoyer <respawneral at gmail.com>  Mon, 01 Aug 2011 22:36:41 +0200

Added: trunk/gnome-split/debian/compat
===================================================================
--- trunk/gnome-split/debian/compat	                        (rev 0)
+++ trunk/gnome-split/debian/compat	2011-08-02 19:38:24 UTC (rev 13900)
@@ -0,0 +1 @@
+5

Added: trunk/gnome-split/debian/control
===================================================================
--- trunk/gnome-split/debian/control	                        (rev 0)
+++ trunk/gnome-split/debian/control	2011-08-02 19:38:24 UTC (rev 13900)
@@ -0,0 +1,23 @@
+Source: gnome-split
+Section: gnome
+Priority: optional
+Maintainer: Guillaume Mazoyer <respawneral at gmail.com>
+Build-Depends: autotools-dev,
+               debhelper (>= 7),
+               default-jdk,
+               libdbus-java,
+               libjava-gnome-java (>= 4.0.15)
+Standards-Version: 3.9.2
+Homepage: http://gnome-split.org/
+
+Package: gnome-split
+Architecture: all
+Depends: default-jre | java6-runtime,
+         libdbus-java,
+         libjava-gnome-java (>= 4.0.15),
+         ${misc:Depends}
+Description: GNOME Split - File splitter for GNOME desktop
+ Tool that allows you to split files and merge them back. It is written in Java
+ and uses a GTK+ user interface (thanks to the java-gnome project). The goal is
+ to offer a native implementation of similar projects which can handle multiple
+ file formats (e.g. Xtremsplit).

Added: trunk/gnome-split/debian/copyright
===================================================================
--- trunk/gnome-split/debian/copyright	                        (rev 0)
+++ trunk/gnome-split/debian/copyright	2011-08-02 19:38:24 UTC (rev 13900)
@@ -0,0 +1,34 @@
+This package was debianized by Guillaume Mazoyer <respawneral at gmail.com> on
+Tue, 01 Aug 2011 22:19:08 +0200.
+
+It was downloaded from http://gnome-split.org/releases/
+
+Upstream Author(s):
+
+    Guillaume Mazoyer <respawneral at gmail.com>
+
+Copyright:
+
+    Copyright (C) 2009-2011 Guillaume Mazoyer <respawneral at gmail.com>
+
+License:
+
+    GNOME Split is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    GNOME Split is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with GNOME Split.  If not, see <http://www.gnu.org/licenses/>.
+
+The Debian packaging is:
+
+    Copyright (C) 2011 Guillaume Mazoyer <respawneral at gmail.com>
+
+and is licensed under the GPL version 3,
+see `/usr/share/common-licenses/GPL-3'.

Added: trunk/gnome-split/debian/docs
===================================================================
--- trunk/gnome-split/debian/docs	                        (rev 0)
+++ trunk/gnome-split/debian/docs	2011-08-02 19:38:24 UTC (rev 13900)
@@ -0,0 +1,2 @@
+README
+NEWS

Added: trunk/gnome-split/debian/gnome-split.manpages
===================================================================
--- trunk/gnome-split/debian/gnome-split.manpages	                        (rev 0)
+++ trunk/gnome-split/debian/gnome-split.manpages	2011-08-02 19:38:24 UTC (rev 13900)
@@ -0,0 +1 @@
+gnome-split.1

Added: trunk/gnome-split/debian/patches/01_manifest_main_class.patch
===================================================================
--- trunk/gnome-split/debian/patches/01_manifest_main_class.patch	                        (rev 0)
+++ trunk/gnome-split/debian/patches/01_manifest_main_class.patch	2011-08-02 19:38:24 UTC (rev 13900)
@@ -0,0 +1,25 @@
+## Description: add some description
+## Origin/Author: add some origin or author
+## Bug: bug URL
+Index: gnome-split-0.7/Makefile
+===================================================================
+--- gnome-split-0.7.orig/Makefile	2011-08-02 16:41:18.656274646 +0200
++++ gnome-split-0.7/Makefile	2011-08-02 16:41:18.868275704 +0200
+@@ -111,7 +111,7 @@
+ 
+ tmp/gnome-split.jar: tmp/stamp/compile
+ 	@/bin/echo -e "$(JAR_CMD)\t$@"
+-	$(JAR) -cf tmp/gnome-split.jar -C tmp/classes .
++	$(JAR) cfm tmp/gnome-split.jar Manifest.txt -C tmp/classes .
+ 
+ $(DESTDIR)$(PREFIX)/share/pixmaps: 
+ 	@/bin/echo -e "MKDIR\t$@/"
+Index: gnome-split-0.7/Manifest.txt
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ gnome-split-0.7/Manifest.txt	2011-08-02 16:41:29.140326634 +0200
+@@ -0,0 +1,4 @@
++Manifest-Version: 1.0
++Main-Class: org.gnome.split.GnomeSplit
++Class-Path: /usr/share/java/gtk.jar /usr/share/java/dbus.jar /usr/share/java/debug-disable.jar /usr/share/java/debug-enable.jar /usr/share/java/hexdump.jar /usr/share/java/unix.jar /usr/share/java/gnome-split.jar
++

Added: trunk/gnome-split/debian/patches/02_manpage.patch
===================================================================
--- trunk/gnome-split/debian/patches/02_manpage.patch	                        (rev 0)
+++ trunk/gnome-split/debian/patches/02_manpage.patch	2011-08-02 19:38:24 UTC (rev 13900)
@@ -0,0 +1,29 @@
+## Description: add some description
+## Origin/Author: add some origin or author
+## Bug: bug URL
+Index: gnome-split-0.7/gnome-split.1
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ gnome-split-0.7/gnome-split.1	2011-08-02 21:26:29.233121415 +0200
+@@ -0,0 +1,21 @@
++.TH man 1 "August 2011" "GNOME Split 0.7" "GNOME Split manpage"
++.SH NAME
++GNOME Split \- File splitter for GNOME desktop
++.SH SYNOPSIS
++gnome-split [OPTION] [FILE]
++.SH DESCRIPTION
++GNOME Split is a tool that allows you to split files and merge them back. It is
++written in Java and uses a GTK+ user interface (thanks to the java-gnome
++project). The goal is to offer a native implementation of similar projects which
++can handle multiple file formats (e.g. Xtremsplit).
++.SH OPTIONS
++.TP
++\fB\-s\fR, \fB\-\-split\fR
++display the split view
++.TP
++\fB\-m\fR, \fB\-\-merge\fR
++display the merge view
++.SH BUGS
++Oh right, just go check them https://bugs.launchpad.net/gnome-split
++.SH AUTHOR
++Written by Guillaume Mazoyer

Added: trunk/gnome-split/debian/patches/series
===================================================================
--- trunk/gnome-split/debian/patches/series	                        (rev 0)
+++ trunk/gnome-split/debian/patches/series	2011-08-02 19:38:24 UTC (rev 13900)
@@ -0,0 +1,2 @@
+01_manifest_main_class.patch
+02_manpage.patch

Added: trunk/gnome-split/debian/rules
===================================================================
--- trunk/gnome-split/debian/rules	                        (rev 0)
+++ trunk/gnome-split/debian/rules	2011-08-02 19:38:24 UTC (rev 13900)
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+JAVA_HOME = /usr/lib/jvm/default-java
+DEB_CONFIGURE_EXTRA_FLAGS += --libdir=/usr/lib/jni jardir=/usr/share/java
+
+%:
+	dh $@


Property changes on: trunk/gnome-split/debian/rules
___________________________________________________________________
Added: svn:executable
   + 

Added: trunk/gnome-split/debian/source/format
===================================================================
--- trunk/gnome-split/debian/source/format	                        (rev 0)
+++ trunk/gnome-split/debian/source/format	2011-08-02 19:38:24 UTC (rev 13900)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: trunk/gnome-split/debian/watch
===================================================================
--- trunk/gnome-split/debian/watch	                        (rev 0)
+++ trunk/gnome-split/debian/watch	2011-08-02 19:38:24 UTC (rev 13900)
@@ -0,0 +1,2 @@
+version=3
+http://gnome-split.org/releases/gnome-split-([\d\.]+)\.tar\.bz2 debian




More information about the pkg-java-commits mailing list