[libitext-java] 47/76: Prepare 2.1.7-2
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Thu Jul 28 22:46:35 UTC 2016
This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a commit to branch master
in repository libitext-java.
commit 8f131beff5ee55319ec8022256b286c88e05480a
Author: Onkar Shinde <onkarshinde at ubuntu.com>
Date: Tue May 18 15:58:05 2010 +0000
Prepare 2.1.7-2
---
debian/changelog | 13 +++++++++++--
debian/control | 4 ++--
debian/patches/01_allow_standard_input.diff | 26 ++++++++++++++++++++++++++
debian/patches/series | 1 +
debian/rules | 1 -
debian/source/format | 1 +
6 files changed, 41 insertions(+), 5 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 775a7dc..2094d48 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,17 @@
-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
diff --git a/debian/control b/debian/control
index 2c387d2..805fe35 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.or
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 @@ Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libitext-java
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,
diff --git a/debian/patches/01_allow_standard_input.diff b/debian/patches/01_allow_standard_input.diff
new file mode 100644
index 0000000..2bca04b
--- /dev/null
+++ b/debian/patches/01_allow_standard_input.diff
@@ -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 {
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..138aae3
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+01_allow_standard_input.diff
diff --git a/debian/rules b/debian/rules
index ea063cb..6a18479 100755
--- a/debian/rules
+++ b/debian/rules
@@ -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
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libitext-java.git
More information about the pkg-java-commits
mailing list