Author: fourmond Date: 2008-10-13 19:43:33 +0000 (Mon, 13 Oct 2008) New Revision: 7140
Added: trunk/xmlgraphics-commons/debian/new-upstream Modified: trunk/xmlgraphics-commons/debian/changelog trunk/xmlgraphics-commons/debian/copyright trunk/xmlgraphics-commons/debian/watch Log: [xmlgraphics-common] Some updates, but xmlgraphics-common currently fails to build :-< ... Modified: trunk/xmlgraphics-commons/debian/changelog =================================================================== --- trunk/xmlgraphics-commons/debian/changelog 2008-10-13 19:18:22 UTC (rev 7139) +++ trunk/xmlgraphics-commons/debian/changelog 2008-10-13 19:43:33 UTC (rev 7140) @@ -1,11 +1,16 @@ -xmlgraphics-commons (1.3.1-0.1) experimental; urgency=low +xmlgraphics-commons (1.3.1.dfsg-1) UNRELEASED experimental; urgency=low - * Non-maintainer upload. - * New upstream version + [ Sylvestre Ledru ] + * New upstream version (closes: #490749) * debian/rules now uses DEB_UPSTREAM_VERSION - -- Sylvestre Ledru <[EMAIL PROTECTED]> Fri, 19 Sep 2008 15:52:22 +0200 + [ Vincent Fourmond ] + * Created a debian/new-upstream script to repackage upstream + tarball + * Updated debian/watch + -- Vincent Fourmond <[EMAIL PROTECTED]> Mon, 13 Oct 2008 21:36:29 +0200 + xmlgraphics-commons (1.2.dfsg+dak-1) experimental; urgency=low [ Michael Koch ] Modified: trunk/xmlgraphics-commons/debian/copyright =================================================================== --- trunk/xmlgraphics-commons/debian/copyright 2008-10-13 19:18:22 UTC (rev 7139) +++ trunk/xmlgraphics-commons/debian/copyright 2008-10-13 19:43:33 UTC (rev 7140) @@ -24,3 +24,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + + On Debian systems, the Apache License Version 2.0 can be found in the file +/usr/share/common-licenses/Apache-2.0 \ No newline at end of file Copied: trunk/xmlgraphics-commons/debian/new-upstream (from rev 7137, trunk/statcvs/debian/new-upstream) =================================================================== --- trunk/xmlgraphics-commons/debian/new-upstream (rev 0) +++ trunk/xmlgraphics-commons/debian/new-upstream 2008-10-13 19:43:33 UTC (rev 7140) @@ -0,0 +1,32 @@ +#!/bin/sh +# +# new-upstream: copyright 2007,2008 by Vincent Fourmond. +# See debian/copyright file for details. +# +# Called by uscan; from uscan(1): +# +# Finally, if a third parameter (an action) is given in the watchfile +# line, this is taken as the name of a command, and the command +# command --upstream-version version filename +# +# is executed, using either the original file or the symlink name. +# +# Thanks to Sam Morris <[EMAIL PROTECTED]> for giving me the idea + +version=$2 +filename=$3 + +dir=`mktemp -d` + + +# We repackage the upstream tarball, removing the jars in the library and +# the examples, which have dubious copyright status +tar xvzf $filename -C "$dir" --exclude '*/lib/*.jar' --exclude '*/examples' +origname=xmlgraphics-commons_$version.dfsg.orig.tar.gz + +# We repackage excluding the lib/ subdir +cd $dir +tar cvz -f $origname xml* +cd - +mv $dir/$origname .. +rm -rf $dir \ No newline at end of file Property changes on: trunk/xmlgraphics-commons/debian/new-upstream ___________________________________________________________________ Name: svn:executable + * Name: svn:mergeinfo + Modified: trunk/xmlgraphics-commons/debian/watch =================================================================== --- trunk/xmlgraphics-commons/debian/watch 2008-10-13 19:18:22 UTC (rev 7139) +++ trunk/xmlgraphics-commons/debian/watch 2008-10-13 19:43:33 UTC (rev 7140) @@ -1,3 +1,3 @@ version=3 opts=dversionmangle=s/\.dfsg(\+dak)?$// \ - http://www.apache.org/dist/xmlgraphics/commons/source/xmlgraphics-commons-(.*)-src\.tar\.gz + http://www.apache.org/dist/xmlgraphics/commons/source/xmlgraphics-commons-(.*)-src\.tar\.gz debian debian/new-upstream _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-java-commits

