Bug#769831: [testng] Some sources are not included in your package

2014-11-16 Thread Bastien ROUCARIES
Package: testng
Version: 6.8.8-2
user: lintian-ma...@debian.org
usertags: source-is-missing
severity: serious
X-Debbugs-CC: ftpmas...@debian.org

Hi,

Your package seems to include some files that lack sources
in prefered forms of modification:

src/main/resources/jquery-1.7.1.min.js

According to Debian Free Software Guidelines [1] (DFSG) #2:
 The program must include source code, and must allow distribution
  in source code as well as compiled form..

This could also constitute a license violation for some copyleft
licenses such as the GNU GPL.

In order to solve this problem, you could:
1. repack the origin tarball adding the missing source to it.
2  add the source files to debian/missing-sources directory

Both way satisfies the requirement that we ship the source. Second option
might be preferable due to the following reasons [2]:
 - Upstream can do it too and you could even supply a patch to them,
thus full filling our social contract [3], see particularly §2.
 - If source and non-source are in different locations, ftpmasters may
   miss the source and (needlessly) reject the package.
 - The source isn't duplicated in every .diff.gz/.debian.tar.* (though
   this only really matters for larger sources).

You could also ask debian...@lists.debian.org or #debian-qa for more
guidance.

Waiting for next upstream release is not sufficient.

[1] https://www.debian.org/social_contract.en.html#guidelines
[2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=736873#8
[3] https://www.debian.org/social_contract

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Bug#761550: Imagemagick transition

2014-09-15 Thread Bastien ROUCARIES
the debdiff


debdiff
Description: Binary data
__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Bug#735227: Severity is still serious [was source of jquery is missing]

2014-06-21 Thread Bastien ROUCARIES
control: severity -1 serious
X-Debbugs-CC: ftpmas...@debian.org

activemq-web-demo/src/main/webapp/js/jquery-1.4.2.min.js lack source.,
env if you do not use it.

According to Debian Free Software Guidelines [1] (DFSG) #2:
 The program must include source code, and must allow distribution
  in source code as well as compiled form..

This could also constitute a license violation for some copyleft
licenses such as the GNU GPL.

In order to solve this problem, you could:
1. repack the origin tarball adding the missing source to it.
2  add the source files to debian/missing-sources directory

Both way satisfies the requirement that we ship the source. Second option
might be preferable due to the following reasons [2]:
 - Upstream can do it too and you could even supply a patch to them,
thus full filling our social contract [3], see particularly §2.
 - If source and non-source are in different locations, ftpmasters may
   miss the source and (needlessly) reject the package.
 - The source isn't duplicated in every .diff.gz/.debian.tar.* (though
   this only really matters for larger sources).

You could also ask debian...@lists.debian.org or #debian-qa for more
guidance.

Bastien

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Bug#747856: [jmagick] [imagemagick transition] Please use pkg-config

2014-05-12 Thread bastien ROUCARIES
Package: jmagick
Severity: important
x-debbugs-cc: Emmanuel Bourg ebo...@apache.org
x-debbugs-cc: sylves...@debian.org

hi,

We plan to made a transition for imagemagick as soon as possible.

Could you please include this patch in order to avoid FTBFS ?

Thanks 

BastienFrom c4e99452076369fd852147a1e6f6fe573ac55fe3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bastien=20ROUCARI=C3=88S?= roucaries.bast...@gmail.com
Date: Mon, 12 May 2014 11:59:56 +0200
Subject: [PATCH] Use pkgconfig for flags

---
 configure.in | 21 +
 debian/rules |  1 +
 2 files changed, 22 insertions(+)

diff --git a/configure.in b/configure.in
index 93de0f7..58da3d4 100644
--- a/configure.in
+++ b/configure.in
@@ -241,6 +241,15 @@ AC_ARG_ENABLE(diagnostic,
   C_DEBUG=-DDIAGNOSTIC,C_DEBUG=)
 AC_SUBST(C_DEBUG)
 
+AC_PATH_PROG(PKGCONFIG, pkg-config, not_found)
+USE_PKGCONFIG='no'
+if (test PKGCONFIG != 'not_found') ; then
+if pkg-config MagickCore  /dev/null 2/dev/null; then
+	USE_PKGCONFIG='yes'
+fi
+fi
+
+if (test USE_PKGCONFIG == 'no') ; then
 dnl Check if ImageMagick home specified
 AC_ARG_WITH(magick-home, --with-magick-home=path home directory of ImageMagick,
 MAGICK_HOME=${withval})
@@ -289,6 +298,13 @@ AC_ARG_WITH(magick-inc-dir,
 if ( test -f ${MAGICK_INCLUDE_PATH}/magick/api.h ) ; then
 	MAGICK_INCLUDES=-I${MAGICK_INCLUDE_PATH}
 fi
+# pkgconfig
+else
+MAGICK_LIBS=`pkg-config --libs-only-l MagickCore`
+MAGICK_LDFLAGS=`pkg-config --libs-only-L --libs-only-other MagickCore`
+MAGICK_CFLAGS=`pkg-config --cflags-only-other MagickCore`
+MAGICK_INCLUDES=`pkg-config --cflags-only-I MagickCore`
+fi
 
 dnl Check for the ImageMagick header file magick/api.h
 OLD_CPPFLAGS=${CPPFLAGS}
@@ -306,12 +322,17 @@ OLD_LDFLAGS=${LDFLAGS}
 if test -n ${MAGICK_LIBS}; then
 	LDFLAGS=${MAGICK_LIBS} ${LDFLAGS}
 fi
+if (test USE_PKGCONFIG=='no'); then
 AC_CHECK_LIB(Magick, ConstituteImage,
  HAVE_MAGICK_LIB=yes, HAVE_MAGICK_LIB=no)
 if test ${HAVE_ImageMagick-6.2.4MAGICK_LIB} = no; then
 	AC_MSG_ERROR('Unable to find ImageMagick library')
 fi
+else
+HAVE_MAGICK_LIB='yes';
+fi
 LDFLAGS=${OLD_LDFLAGS}
+CFLAGS=${CFLAGS} ${MAGICK_CFLAGS}
 
 
 
diff --git a/debian/rules b/debian/rules
index 53ff56e..b82583e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -18,6 +18,7 @@ DEB_MAKE_CHECK_TARGET   =
 DEB_DH_INSTALL_SOURCEDIR = debian/tmp
 DEB_COMPRESS_EXCLUDE = .java
 DEB_INSTALL_CHANGELOGS_ALL := Changelog.txt
+DEB_AUTO_UPDATE_AUTOCONF := yes
 VERSION=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^~-]+).*,\1,p')
 
 export JFLAGS = -source 1.6 -target 1.6 -g
-- 
2.0.0.rc0

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Bug#737442: [src:netbeans] Sourceless file (minified) (jquery)

2014-03-20 Thread Bastien ROUCARIES
Le 19 mars 2014 23:29, Emmanuel Bourg ebo...@apache.org a écrit :

 Le 19/03/2014 23:09, Bastien ROUCARIES a écrit :

  Yes but it is distributed as source

 This is a non functional file, it can't be qualified as a 'source' file
 for this package. We aren't harming any freedom of the users by not
 providing the file in its preferred form of modification, because there
 is no point modifying it in the context of this package.

In this case why not removing it?
 Emmanuel Bourg

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Bug#737442: [src:netbeans] Sourceless file (minified) (jquery)

2014-03-20 Thread Bastien ROUCARIES
Le 19 mars 2014 14:37, Emmanuel Bourg ebo...@apache.org a écrit :

 jquery-1.3.min.js isn't used, the php samples are not packaged.

Yes but it is distributed as source
 Emmanuel Bourg

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Bug#737442: [src:netbeans] Sourceless file (minified) (jquery)

2014-02-02 Thread bastien ROUCARIES
Package: src:netbeans
Version:  7.0.1+dfsg1-5
Severity: serious
User: debian...@lists.debian.org
Usertags: source-contains-prebuilt-javascript-object
X-Debbugs-CC: ftpmas...@debian.org

I could not find the source of:
netbeans 7.0.1+dfsg1-5 (source)

php.samples/samples_src/Jobeet/web/js/jquery-1.3.min.js







Bastien

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#736866: [src:libjpfcodegen-java] Sourceless file (minified)

2014-01-27 Thread bastien ROUCARIES
Package: src:libjpfcodegen-java
Version: 0.4+dfsg-4
Severity: serious
User: debian...@lists.debian.org
Usertags: source-contains-prebuilt-javascript-object
X-Debbugs-CC: ftpmas...@debian.org


I could not find the source of:
libjpfcodegen-java 0.4+dfsg-4 (source)

resources/website/sh_main.min.js
resources/website/sh_xml.min.js





Bastien

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#736101: Non free files

2014-01-19 Thread bastien ROUCARIES
Package: src:fop
Version: 1:1.1.dfsg-2
Severity: serious
User: debian...@debian.org
Usertags:  license-problem-md5sum-non-free-file
X-Debbugs-CC: ftpmas...@debian.org

Thess file is not free 
fop 1:1.1.dfsg-2 (source)
src/java/org/apache/fop/pdf/sRGB Color Space Profile.icm usual name is 
sRGB.icm. This file may not be distributed without fee if modified. See also 
http://bugs.debian.org/657281.


Bastien

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#736101: Non free files

2014-01-19 Thread Bastien ROUCARIES
So
Le 19 janv. 2014 20:25, Mathieu Malaterre ma...@debian.org a écrit :

 forcemerge 657281 736101

 On Sun, Jan 19, 2014 at 8:52 PM, bastien ROUCARIES
 roucaries.bast...@gmail.com wrote:
  Package: src:fop
  Version: 1:1.1.dfsg-2
  Severity: serious
  User: debian...@debian.org
  Usertags:  license-problem-md5sum-non-free-file
  X-Debbugs-CC: ftpmas...@debian.org
 
  Thess file is not free
  fop 1:1.1.dfsg-2 (source)
  src/java/org/apache/fop/pdf/sRGB Color Space Profile.icm usual name is
sRGB.icm. This file may not be distributed without fee if modified. See
also http://bugs.debian.org/657281.

 Dup of 657281 AFAIK

Sorry about that mass bug filling render me stupid.

At least we know that Lintian work

Bastien
__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Bug#736105: Sourceless file

2014-01-19 Thread bastien ROUCARIES
Package: src:freemind
Version:0.9.0+dfsg-3
Severity: serious
User: debian...@lists.debian.org
Usertags: source-contains-prebuilt-flash-object
X-Debbugs-CC: ftpmas...@debian.org

I could not find the source of file
freemind 0.9.0+dfsg-3 (source)
freemind/accessories/plugins/flash/visorFreemind.swf

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#736106: Sourceless file

2014-01-19 Thread bastien ROUCARIES
Package: src:freeplane
Version:1.2.23-2
Severity: serious
User: debian...@lists.debian.org
Usertags: source-contains-prebuilt-flash-object
X-Debbugs-CC: ftpmas...@debian.org

I could not find the source of file
freeplane 1.2.23-2 (source)
freeplane/resources/flash/visorFreeplane.swf

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#735498: Non free icons

2014-01-15 Thread bastien ROUCARIES
Package: src:cronometer
Version:0.9.9-2
Severity: serious
User: debian...@debian.org
Usertags:  license-problem-md5sum-non-free-file
X-Debbugs-CC: ftpmas...@debian.org

This file is not free it a logo
docs/project-support.jpg usual name is project-support.jpg. Non free logo. See 
also 
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3t=24735sid=00d5a91304948ce71a38e695d225e122.

Bastien

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#735227: [activemq] usertags

2014-01-14 Thread bastien ROUCARIES
User debian...@debian.org
Usertags  735227  source-contains-prebuilt-javascript-object
thanks

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#735227: [activemq] Non sourced jquery

2014-01-13 Thread bastien ROUCARIES
Package: activemq
Severity: serious
X-CC-debug: ftpmast...@debian.org

activemq-web-demo/src/main/webapp/js/jquery-1.4.2.min.js lack source.

Bastien

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#714509: [jmagick] jmagick broken in respect to ABI

2013-06-30 Thread bastien ROUCARIES
Package: jmagick
Severity: serious

Hi,

Jmagick is seriously broken using a combinaison of manually generated 
importation of ABI and really really old version.

A solution to fx this problem is to:
1. download last version from svn that match imagemagick 6.6.9 (released in 
2011! )
2. check http://upstream-tracker.org/versions/imagemagick.html to see the 
breakage of ABI and manually add patches to this branch.

Since newer version in experimental I try my best to keep ABI stable and will 
forward you in cas of ABI breakage proposing patches.

I could do my homework doing 2.

Bastien

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#708873: GFDL invariant

2013-05-19 Thread bastien ROUCARIES
Package: src:eclipse-linuxtools
user: debian...@lists.debian.org
usertags: gfdl-invariant
severity: serious

The file libhover/org.eclipse.linuxtools.cdt.libhover.glibc/data/glibc-2.14.xml 
has a problem

This file documents the GNU C library.

This is based on Edition 0.12, last updated 2007-10-27
of The GNU C Library Reference Manual, for version 2.8.

Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002,
2003, 2007, 2008, 2010 Free Software Foundation, Inc.

Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being ``Free Software Needs Free Documentation''
and ``GNU Lesser General Public License'', the Front-Cover texts being
``A GNU Manual'', and with the Back-Cover Texts as in (a) below.  A
copy of the license is included in the section entitled GNU Free
Documentation License.

(a) The FSF's Back-Cover Text is: ``You have the freedom to
copy and modify this GNU manual.  Buying copies from the FSF
supports it in developing GNU and promoting software freedom.''

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#625595: transition: libmagick4 and old depend on libmagick9-dev

2011-05-04 Thread Bastien ROUCARIES
Package: src:jmagick
Severity: normal
block: 625544


Hi,

We would like to perform the transition from  libmagickcore3, libmagick++3, 
libmagickwand3 to libmagickcore4, libmagick++4, 
libmagickwand4

This transition will requires sourcefull uploads as there is a (minimal) API 
change.

Packages are in experimental.

Please note that in your case a binNMU will not work because you depend on old 
library  libmagick9-dev instead of ibmagickcore-
dev/libmagickwand-dev

Thanks

Bastien




__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers. Please 
use
debian-j...@lists.debian.org for discussions and questions.


New version of imagemagick will hit experimental

2011-05-03 Thread Bastien ROUCARIES
Hi,

I have just achieved to get imagemagick sponsored. New version will
have a so bump (so experimental). Please take care of this.

Will upload in unstable in two weeks.

Bastien

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers. Please 
use
debian-j...@lists.debian.org for discussions and questions.


[libspin-java] It seems that libspin-java could be moved to main

2009-07-30 Thread Bastien ROUCARIES
Dear debian java maintenair,

It seems that libspin-java could be moved to main. Reading changelog it was 
put to contrib due to libcglib2.1-java be in contrib, but libcglib2.1-java has 
moved to main please move therefore to main.

Bastien


___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers