Your message dated Wed, 01 Apr 2009 23:32:03 +0000
with message-id <[email protected]>
and subject line Bug#522130: fixed in libjaudiotagger-java 1.0.9-1
has caused the Debian Bug report #522130,
regarding libjaudiotagger-java: New upstream release 1.0.9 (patch)
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
522130: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522130
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: libjaudiotagger-java
Version: 1.0.8-1
Severity: wishlist
Tags: patch
Hi,
I've prepared a new release of libjaudiotagger-java for upstream 1.0.9.
It's targeted and needed by jajuk upstream release 1.7.1.
Can you please review this ?
* New upstream release
* debian/watch: Use java.net repository (which contains new releases!)
* debian/control:
- Build-Depends on default-jdk-builddep
- Bump Standards-Version to 3.8.1 (no changes needed)
- Change section to "java"
* debian/rules: use default-java as JAVA_HOME
* debina/orig-tar.{sh|excludes}: strip audio and others binary files from
ZIP
* debian/build.xml:
- compile with "nowarn" to keep build log readable
- exclude LogFormatter from build (use com.sun classes)
* debian/ant.properties: new source directory is "src" in orig.tar.gz
* Add myself as Uploaders
You'll find the patch attached or you can find my work on pkg-java SVN
repository (r8161)
Cheers,
--
Damien Raude-Morvan / www.drazzib.com
--
Damien Raude-Morvan / www.drazzib.com
Index: debian/control
===================================================================
--- debian/control (révision 8159)
+++ debian/control (copie de travail)
@@ -1,18 +1,18 @@
Source: libjaudiotagger-java
-Section: libs
+Section: java
Priority: optional
Maintainer: Debian Java Maintainers <[email protected]>
-Uploaders: Varun Hiremath <[email protected]>, Torsten Werner <[email protected]>
+Uploaders: Varun Hiremath <[email protected]>, Torsten Werner <[email protected]>, Damien Raude-Morvan <[email protected]>
Build-Depends: debhelper (>= 6), cdbs
-Build-Depends-Indep: java-gcj-compat-dev, ant
-Standards-Version: 3.8.0
+Build-Depends-Indep: default-jdk-builddep, ant
+Standards-Version: 3.8.1
Homepage: https://jaudiotagger.dev.java.net/
Vcs-Svn: svn+ssh://svn.debian.org/svn/pkg-java/trunk/libjaudiotagger-java/
Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libjaudiotagger-java/
Package: libjaudiotagger-java
Architecture: all
-Depends: java-gcj-compat | java2-runtime
+Depends: ${misc:Depends}, java-gcj-compat | java2-runtime
Description: library for editing tags like ID3 in audio files such as MP3s
Jaudiotagger is the Audio Tagging library used for tagging data in
audio files. It currently supports Mp4 (Mp4, M4p, M4a), Mp3 (id3v1,
Index: debian/watch
===================================================================
--- debian/watch (révision 8159)
+++ debian/watch (copie de travail)
@@ -1,3 +1,4 @@
version=3
-http://repository.jboss.org/maven2/org/jaudiotagger/jaudiotagger/([\d\.]*)/jaudiotagger-([\d\.]*)-sources.jar \
+https://jaudiotagger.dev.java.net/servlets/ProjectDocumentList?folderID=5855 \
+ /files/documents/(?:.*)/(?:.*)/jaudiotaggerv([\d\.]*).zip \
debian debian/orig-tar.sh
Index: debian/changelog
===================================================================
--- debian/changelog (révision 8159)
+++ debian/changelog (copie de travail)
@@ -1,3 +1,21 @@
+libjaudiotagger-java (1.0.9-1) UNRELEASED; urgency=low
+
+ * New upstream release
+ * debian/watch: Use java.net repository (which contains new releases!)
+ * debian/control:
+ - Build-Depends on default-jdk-builddep
+ - Bump Standards-Version to 3.8.1 (no changes needed)
+ - Change section to "java"
+ * debian/rules: use default-java as JAVA_HOME
+ * debina/orig-tar.{sh|excludes}: strip audio and others binary files from ZIP
+ * debian/build.xml:
+ - compile with "nowarn" to keep build log readable
+ - exclude LogFormatter from build (use com.sun classes)
+ * debian/ant.properties: new source directory is "src" in orig.tar.gz
+ * Add myself as Uploaders
+
+ -- Damien Raude-Morvan <[email protected]> Wed, 01 Apr 2009 01:25:30 +0200
+
libjaudiotagger-java (1.0.8-1) unstable; urgency=low
* Initial Release (Closes: #506476)
Index: debian/rules
===================================================================
--- debian/rules (révision 8159)
+++ debian/rules (copie de travail)
@@ -3,7 +3,7 @@
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/ant.mk
-JAVA_HOME := /usr/lib/jvm/java-gcj/
+JAVA_HOME := /usr/lib/jvm/default-java
DEB_ANT_BUILDFILE := debian/build.xml
DEB_ANT_BUILD_TARGET := jar
DEB_JARS :=
Index: debian/ant.properties
===================================================================
--- debian/ant.properties (révision 8159)
+++ debian/ant.properties (copie de travail)
@@ -1,4 +1,4 @@
project.name=jaudiotagger
class.dir=build
-source.dir=.
+source.dir=src
jar=jaudiotagger.jar
Index: debian/orig-tar.sh
===================================================================
--- debian/orig-tar.sh (révision 8159)
+++ debian/orig-tar.sh (copie de travail)
@@ -5,9 +5,9 @@
TAR=libjaudiotagger-java_$2.orig.tar.gz
# clean up upstream sources
-mkdir $DIR
-(cd $DIR; jar xf ../$3)
-GZIP=--best tar czf $TAR $DIR
+unzip $3
+mv jaudiotaggerv* $DIR
+GZIP=--best tar czf $TAR -X debian/orig-tar.exclude $DIR
rm -rf $DIR $3
# move to directory 'tarballs'
Index: debian/build.xml
===================================================================
--- debian/build.xml (révision 8159)
+++ debian/build.xml (copie de travail)
@@ -9,7 +9,8 @@
<target name="compile" description="o Compile the source files">
<mkdir dir="${class.dir}"/>
<javac srcdir="${source.dir}" destdir="${class.dir}"
- debug="true" source="1.5"/>
+ debug="true" source="1.5" nowarn="true"
+ excludes="**/LogFormatter.java"/>
</target>
<target name="jar" description="o Create the jar" depends="compile">
--- End Message ---
--- Begin Message ---
Source: libjaudiotagger-java
Source-Version: 1.0.9-1
We believe that the bug you reported is fixed in the latest version of
libjaudiotagger-java, which is due to be installed in the Debian FTP archive:
libjaudiotagger-java_1.0.9-1.diff.gz
to pool/main/libj/libjaudiotagger-java/libjaudiotagger-java_1.0.9-1.diff.gz
libjaudiotagger-java_1.0.9-1.dsc
to pool/main/libj/libjaudiotagger-java/libjaudiotagger-java_1.0.9-1.dsc
libjaudiotagger-java_1.0.9-1_all.deb
to pool/main/libj/libjaudiotagger-java/libjaudiotagger-java_1.0.9-1_all.deb
libjaudiotagger-java_1.0.9.orig.tar.gz
to pool/main/libj/libjaudiotagger-java/libjaudiotagger-java_1.0.9.orig.tar.gz
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Varun Hiremath <[email protected]> (supplier of updated libjaudiotagger-java
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Wed, 01 Apr 2009 19:17:56 -0400
Source: libjaudiotagger-java
Binary: libjaudiotagger-java
Architecture: source all
Version: 1.0.9-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers
<[email protected]>
Changed-By: Varun Hiremath <[email protected]>
Description:
libjaudiotagger-java - library for editing tags like ID3 in audio files such
as MP3s
Closes: 522130
Changes:
libjaudiotagger-java (1.0.9-1) unstable; urgency=low
.
[ Damien Raude-Morvan ]
* New upstream release
* debian/watch: Use java.net repository (which contains new releases!)
* debian/control:
- Build-Depends on default-jdk-builddep
- Bump Standards-Version to 3.8.1 (no changes needed)
- Change section to "java"
* debian/rules: use default-java as JAVA_HOME
* debina/orig-tar.{sh|excludes}: strip audio and others binary files from ZIP
* debian/build.xml:
- compile with "nowarn" to keep build log readable
- exclude LogFormatter from build (use com.sun classes)
* debian/ant.properties: new source directory is "src" in orig.tar.gz
* Add myself as Uploaders
.
[ Varun Hiremath ]
* Accept changes made by Damien Raude-Morvan (Closes: #522130)
Checksums-Sha1:
21961f3cef3b9f93001c6387f243533c0cf9cf63 1460 libjaudiotagger-java_1.0.9-1.dsc
9e65c4955d727e2bdf42faede408c375e9084b9d 1520731
libjaudiotagger-java_1.0.9.orig.tar.gz
662e73363f7328ec2240d6b955b079c9cda60f1c 2639
libjaudiotagger-java_1.0.9-1.diff.gz
4b06e7c9bde2e5823e5fbee02f1b9f600d276088 678012
libjaudiotagger-java_1.0.9-1_all.deb
Checksums-Sha256:
c38ad90c31f4157289e8c9dd74f2449518971285081a7e7ba8e1d5970fd0efc9 1460
libjaudiotagger-java_1.0.9-1.dsc
c2692bd1b51666071cba0ddfaae08766f3808d2d5e4e696a548f5c3cd6797625 1520731
libjaudiotagger-java_1.0.9.orig.tar.gz
ec03d313bb05d75aea2fe769cf5ff8ea68e7346f956fdb0b37926cd3145c9efb 2639
libjaudiotagger-java_1.0.9-1.diff.gz
2eded2a497031ca6bb5cce1e901fd0f8ac4573f8d6853e509ee38b66211c7000 678012
libjaudiotagger-java_1.0.9-1_all.deb
Files:
aec65d560b503c6ac4a71e2eb1bcdd10 1460 java optional
libjaudiotagger-java_1.0.9-1.dsc
037972aafbbf4569965180e32a4ab35b 1520731 java optional
libjaudiotagger-java_1.0.9.orig.tar.gz
b10e75075a76456201ed5fe10a46e775 2639 java optional
libjaudiotagger-java_1.0.9-1.diff.gz
a03c87a5a17f553e5c2948e77403eaed 678012 java optional
libjaudiotagger-java_1.0.9-1_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iEYEARECAAYFAknT9swACgkQPEFSUMxFMZczAQCgh1bUdPhJr490/grefMRgqv+m
dkwAn2+lXDBVdKWbSIeF9Kjhee9QcXqr
=tfrk
-----END PGP SIGNATURE-----
--- End Message ---
_______________________________________________
pkg-java-maintainers mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers