[pkg-java] r12443 - in trunk/libitext-java/debian: . patches source
Onkar Shinde
onkarshinde-guest at alioth.debian.org
Tue May 18 15:58:06 UTC 2010
Author: onkarshinde-guest
Date: 2010-05-18 15:58:05 +0000 (Tue, 18 May 2010)
New Revision: 12443
Added:
trunk/libitext-java/debian/patches/
trunk/libitext-java/debian/patches/01_allow_standard_input.diff
trunk/libitext-java/debian/patches/series
trunk/libitext-java/debian/source/
trunk/libitext-java/debian/source/format
Modified:
trunk/libitext-java/debian/changelog
trunk/libitext-java/debian/control
trunk/libitext-java/debian/rules
Log:
Prepare 2.1.7-2
Modified: trunk/libitext-java/debian/changelog
===================================================================
--- trunk/libitext-java/debian/changelog 2010-05-17 19:53:39 UTC (rev 12442)
+++ trunk/libitext-java/debian/changelog 2010-05-18 15:58:05 UTC (rev 12443)
@@ -1,9 +1,18 @@
-libitext-java (2.1.7-2) UNRELEASED; urgency=low
+libitext-java (2.1.7-2) unstable; urgency=low
+ [ Michael Koch ]
* Removed Gerardo Curiel from Uploaders (Closes: #553081).
- -- Michael Koch <konqueror at gmx.de> Thu, 29 Oct 2009 14:58:04 +0100
+ [ Onkar Shinde ]
+ * Move -gcj package from 'Recommends' to 'Suggests' as discussed on Debian
+ Java mailing list.
+ * Update standards version to 3.8.4.
+ * Convert direct code changes to patch.
+ * Remove simple-patchsys inclusion from rules file.
+ * Convert package to source format 3.0.
+ -- Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org> Tue, 18 May 2010 20:08:26 +0530
+
libitext-java (2.1.7-1) unstable; urgency=low
* New upstream release (Closes: #549347).
Modified: trunk/libitext-java/debian/control
===================================================================
--- trunk/libitext-java/debian/control 2010-05-17 19:53:39 UTC (rev 12442)
+++ trunk/libitext-java/debian/control 2010-05-18 15:58:05 UTC (rev 12443)
@@ -5,7 +5,7 @@
Uploaders: Michael Koch <konqueror at gmx.de>, Adriaan Peeters <apeeters at lashout.net>, Torsten Werner <twerner at debian.org>
Build-Depends: debhelper (>= 7), cdbs, default-jdk-builddep, ant, libbcprov-java,
libbcmail-java, libbctsp-java, libdom4j-java, libpdfrenderer-java
-Standards-Version: 3.8.3
+Standards-Version: 3.8.4
Homepage: http://www.lowagie.com/iText/
Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libitext-java
Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libitext-java
@@ -13,7 +13,7 @@
Package: libitext-java
Architecture: all
Depends: default-jre | java2-runtime, ${misc:Depends}
-Recommends: libitext-java-gcj
+Suggests: libitext-java-gcj
Description: Java Library to create and manipulate PDF on the fly
iText is a library that allows you to generate PDF files on the fly.
The iText classes are very useful for people who need to generate read-only,
Added: trunk/libitext-java/debian/patches/01_allow_standard_input.diff
===================================================================
--- trunk/libitext-java/debian/patches/01_allow_standard_input.diff (rev 0)
+++ trunk/libitext-java/debian/patches/01_allow_standard_input.diff 2010-05-18 15:58:05 UTC (rev 12443)
@@ -0,0 +1,26 @@
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: http://bugs.debian.org/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: <YYYY-MM-DD>
+
+--- libitext-java-2.1.7.orig/core/com/lowagie/text/pdf/RandomAccessFileOrArray.java
++++ libitext-java-2.1.7/core/com/lowagie/text/pdf/RandomAccessFileOrArray.java
+@@ -99,7 +99,11 @@ public class RandomAccessFileOrArray imp
+ }
+ }
+ else {
+- InputStream is = BaseFont.getResourceStream(filename);
++ InputStream is;
++ if( filename.equals("-"))
++ is = System.in;
++ else
++ is = BaseFont.getResourceStream(filename);
+ if (is == null)
+ throw new IOException(filename + " not found as file or resource.");
+ try {
Added: trunk/libitext-java/debian/patches/series
===================================================================
--- trunk/libitext-java/debian/patches/series (rev 0)
+++ trunk/libitext-java/debian/patches/series 2010-05-18 15:58:05 UTC (rev 12443)
@@ -0,0 +1 @@
+01_allow_standard_input.diff
Modified: trunk/libitext-java/debian/rules
===================================================================
--- trunk/libitext-java/debian/rules 2010-05-17 19:53:39 UTC (rev 12442)
+++ trunk/libitext-java/debian/rules 2010-05-18 15:58:05 UTC (rev 12443)
@@ -2,7 +2,6 @@
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/ant.mk
-include /usr/share/cdbs/1/rules/simple-patchsys.mk
JAVA_HOME := /usr/lib/jvm/default-java
ANT_HOME := /usr/share/ant
Added: trunk/libitext-java/debian/source/format
===================================================================
--- trunk/libitext-java/debian/source/format (rev 0)
+++ trunk/libitext-java/debian/source/format 2010-05-18 15:58:05 UTC (rev 12443)
@@ -0,0 +1 @@
+3.0 (quilt)
More information about the pkg-java-commits
mailing list