Author: varun
Date: 2008-02-24 07:12:39 +0000 (Sun, 24 Feb 2008)
New Revision: 5870

Added:
   trunk/jericho-html/debian/docs
Modified:
   trunk/jericho-html/debian/ant.properties
   trunk/jericho-html/debian/changelog
   trunk/jericho-html/debian/control
   trunk/jericho-html/debian/copyright
   trunk/jericho-html/debian/doc-base
   trunk/jericho-html/debian/rules
Log:
* New upstream version
* Separate out Build-Depends and Build-Depends-Indep
* Add libslf4j-java to Build-Depends-Indep
* Add myself to Uploaders
* Modify build process to avoid hardcoding upstream version
* Fix doc-base file; move apidocs to api subfolder

Modified: trunk/jericho-html/debian/ant.properties
===================================================================
--- trunk/jericho-html/debian/ant.properties    2008-02-24 06:40:02 UTC (rev 
5869)
+++ trunk/jericho-html/debian/ant.properties    2008-02-24 07:12:39 UTC (rev 
5870)
@@ -1,4 +1,4 @@
-project.version=2.3
+jarfile=jericho-html.jar
 installdir=/usr/share/java
 installdocdir=/usr/share/doc/libjericho-html-java
 

Modified: trunk/jericho-html/debian/changelog
===================================================================
--- trunk/jericho-html/debian/changelog 2008-02-24 06:40:02 UTC (rev 5869)
+++ trunk/jericho-html/debian/changelog 2008-02-24 07:12:39 UTC (rev 5870)
@@ -1,7 +1,7 @@
 jericho-html (2.5-1) UNRELEASED; urgency=low
 
-  UNRELEASED (needs slf4j first)
-  * new upstream version
+  [ Torsten Werner ]
+  * New upstream version
   * Move package to Alioth.
   * Add Vcs and Homepage headers.
   * Move build.xml to debian directory.
@@ -9,8 +9,15 @@
   * Bump up Standards-Version: 3.7.3 (no changes needed).
   * Add missing Build-Depends.
 
- -- Torsten Werner <[EMAIL PROTECTED]>  Sun, 16 Dec 2007 11:23:44 +0100
+  [ Varun Hiremath ]
+  * Separate out Build-Depends and Build-Depends-Indep
+  * Add libslf4j-java to Build-Depends-Indep
+  * Add myself to Uploaders
+  * Modify build process to avoid hardcoding upstream version
+  * Fix doc-base file; move apidocs to api subfolder
 
+ -- Varun Hiremath <[EMAIL PROTECTED]>  Sun, 24 Feb 2008 12:42:22 +0530
+
 jericho-html (2.3-1) unstable; urgency=low
 
   * Initial release (Closes: #352591)

Modified: trunk/jericho-html/debian/control
===================================================================
--- trunk/jericho-html/debian/control   2008-02-24 06:40:02 UTC (rev 5869)
+++ trunk/jericho-html/debian/control   2008-02-24 07:12:39 UTC (rev 5870)
@@ -2,9 +2,10 @@
 Section: libs
 Priority: optional
 Maintainer: Debian Java Maintainers <[EMAIL PROTECTED]>
-Uploaders: Torsten Werner <[EMAIL PROTECTED]>
-Build-Depends: ant, cdbs, debhelper (>= 5), java-gcj-compat-dev,
- libcommons-logging-java, liblog4j1.2-java
+Uploaders: Torsten Werner <[EMAIL PROTECTED]>, Varun Hiremath <[EMAIL 
PROTECTED]>
+Build-Depends: cdbs, debhelper (>= 5)
+Build-Depends-Indep: ant, java-gcj-compat-dev, libslf4j-java,
+ libcommons-logging-java, liblog4j1.2-java 
 Standards-Version: 3.7.3
 Homepage: http://jerichohtml.sourceforge.net
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/jericho-html/

Modified: trunk/jericho-html/debian/copyright
===================================================================
--- trunk/jericho-html/debian/copyright 2008-02-24 06:40:02 UTC (rev 5869)
+++ trunk/jericho-html/debian/copyright 2008-02-24 07:12:39 UTC (rev 5870)
@@ -5,8 +5,7 @@
 
 Upstream Author: Martin Jericho <[EMAIL PROTECTED]>
 
-Copyright: 
-(C) 2006 Martin Jericho <[EMAIL PROTECTED]>
+Copyright: (C) 2006 Martin Jericho <[EMAIL PROTECTED]>
 
 License:
 

Modified: trunk/jericho-html/debian/doc-base
===================================================================
--- trunk/jericho-html/debian/doc-base  2008-02-24 06:40:02 UTC (rev 5869)
+++ trunk/jericho-html/debian/doc-base  2008-02-24 07:12:39 UTC (rev 5870)
@@ -5,6 +5,5 @@
 Section: Programming
 
 Format: HTML
-Index: /usr/share/doc/libjericho-html-java/index.html
-Files: /usr/share/doc/libjericho-html-java/*.html
- 
+Index: /usr/share/doc/libjericho-html-java/api/index.html
+Files: /usr/share/doc/libjericho-html-java/api/*.html

Added: trunk/jericho-html/debian/docs
===================================================================
--- trunk/jericho-html/debian/docs                              (rev 0)
+++ trunk/jericho-html/debian/docs      2008-02-24 07:12:39 UTC (rev 5870)
@@ -0,0 +1 @@
+doc/api

Modified: trunk/jericho-html/debian/rules
===================================================================
--- trunk/jericho-html/debian/rules     2008-02-24 06:40:02 UTC (rev 5869)
+++ trunk/jericho-html/debian/rules     2008-02-24 07:12:39 UTC (rev 5870)
@@ -5,10 +5,12 @@
 
 JAVA_HOME              := /usr/lib/jvm/java-gcj
 DEB_ANT_BUILDFILE      := debian/build.xml
-DEB_ANT_INSTALL_TARGET := install -Ddestdir=$(DEB_DESTDIR)
-DEB_JARS               := commons-logging log4j-1.2
+DEB_ANT_BUILD_TARGET   := build doc
+DEB_JARS               := commons-logging log4j-1.2 slf4j-api
 
 install/libjericho-html-java::
+       install -D -m644 jericho-html.jar \
+         $(DEB_DESTDIR)/usr/share/java/jericho-html-$(DEB_UPSTREAM_VERSION).jar
        dh_link /usr/share/java/jericho-html-$(DEB_UPSTREAM_VERSION).jar \
          /usr/share/java/jericho-html.jar
 


_______________________________________________
pkg-java-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits

Reply via email to