This is an automated email from the git hooks/post-receive script. henrich pushed a commit to branch debian/sid in repository jruby-joni.
commit b16c4f416d6552470f619b67c19fe00d11359d6b Author: Hideki Yamane (Debian-JP) <[email protected]> Date: Fri Mar 19 10:32:00 2010 +0900 Imported Debian patch 1.1.3-1 --- debian/README.source | 17 ++++++++++++++++ debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 14 +++++++++++++ debian/copyright | 37 ++++++++++++++++++++++++++++++++++ debian/docs | 0 debian/libjruby-joni-java.dirs | 2 ++ debian/libjruby-joni-java.install | 1 + debian/libjruby-joni-java.links | 2 ++ debian/patches/build.xml-jcoding.patch | 18 +++++++++++++++++ debian/patches/series | 1 + debian/rules | 5 +++++ debian/source/format | 1 + debian/watch | 23 +++++++++++++++++++++ 14 files changed, 127 insertions(+) diff --git a/debian/README.source b/debian/README.source new file mode 100644 index 0000000..d021276 --- /dev/null +++ b/debian/README.source @@ -0,0 +1,17 @@ +jruby-joni for Debian +--------------------- + +<this file describes information about the source package, see Debian policy +manual section 4.14. You WILL either need to modify or delete this file> + +This package uses quilt to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. Please see: + + /usr/share/doc/quilt/README.source + +for more information on how to apply the patches, modify patches, or +remove a patch. + + + diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..8f82a03 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +jruby-joni (1.1.3-1) unstable; urgency=low + + * Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP> + + -- Hideki Yamane (Debian-JP) <[email protected]> Fri, 19 Mar 2010 10:32:00 +0900 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..28be76c --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: jruby-joni +Section: java +Priority: extra +Maintainer: Hideki Yamane (Debian-JP) <[email protected]> +Build-Depends: quilt (>= 0.46-7~), debhelper (>= 7) +Build-Depends-Indep: libjruby-jcodings-java, libasm3-java +Standards-Version: 3.8.4 +Homepage: http://github.com/jruby/joni/ + +Package: libjruby-joni-java +Architecture: all +Depends: ${misc:Depends} +Description: Java port of Oniguruma regexp library + Java port of Oniguruma regexp library diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..7f8fa79 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,37 @@ +This work was packaged for Debian by: + + Hideki Yamane (Debian-JP) <[email protected]> on Fri, 19 Mar 2010 10:32:00 +0900 + +It was downloaded from: + + <url://example.com> + +Upstream Author(s): + + <put author's name and email here> + <likewise for another author> + +Copyright: + + <Copyright (C) YYYY Firstname Lastname> + <likewise for another author> + +License: + + <Put the license of the package here indented by 4 spaces> + +The Debian packaging is: + + Copyright (C) 2010 Hideki Yamane (Debian-JP) <[email protected]> + +# Please chose a license for your packaging work. If the program you package +# uses a mainstream license, using the same license is the safest choice. +# Please avoid to pick license terms that are more restrictive than the +# packaged work, as it may make Debian's contributions unacceptable upstream. +# If you just want it to be GPL version 3, leave the following lines in. + +and is licensed under the GPL version 3, +see "/usr/share/common-licenses/GPL-3". + +# Please also look if there are files or directories which have a +# different copyright/license attached and list them here. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e69de29 diff --git a/debian/libjruby-joni-java.dirs b/debian/libjruby-joni-java.dirs new file mode 100644 index 0000000..e54e844 --- /dev/null +++ b/debian/libjruby-joni-java.dirs @@ -0,0 +1,2 @@ +usr/share/java +usr/lib/jruby/lib diff --git a/debian/libjruby-joni-java.install b/debian/libjruby-joni-java.install new file mode 100644 index 0000000..6bc4281 --- /dev/null +++ b/debian/libjruby-joni-java.install @@ -0,0 +1 @@ +target/joni*.jar usr/lib/jruby/lib diff --git a/debian/libjruby-joni-java.links b/debian/libjruby-joni-java.links new file mode 100644 index 0000000..57943ff --- /dev/null +++ b/debian/libjruby-joni-java.links @@ -0,0 +1,2 @@ +usr/lib/jruby/lib/joni.jar usr/share/java/joni.jar + diff --git a/debian/patches/build.xml-jcoding.patch b/debian/patches/build.xml-jcoding.patch new file mode 100644 index 0000000..40d9875 --- /dev/null +++ b/debian/patches/build.xml-jcoding.patch @@ -0,0 +1,18 @@ +Index: jruby-joni-1.1.3/build.xml +=================================================================== +--- jruby-joni-1.1.3.orig/build.xml 2010-03-19 10:58:05.181454419 +0900 ++++ jruby-joni-1.1.3/build.xml 2010-03-19 10:58:52.441454788 +0900 +@@ -14,7 +14,12 @@ + + <target name="compile"> + <mkdir dir="${bin.dir}" /> +- <javac srcdir="${src.dir}" destdir="${bin.dir}"/> ++ <javac srcdir="${src.dir}" destdir="${bin.dir}"> ++ <classpath> ++ <pathelement location="/usr/share/java/jcodings.jar" /> ++ <pathelement location="/usr/share/java/asm3.jar" /> ++ </classpath> ++ </javac> + </target> + + <target name="build" depends="compile"> diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..4cb9a3b --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +build.xml-jcoding.patch diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..2bfb9d1 --- /dev/null +++ b/debian/rules @@ -0,0 +1,5 @@ +#!/usr/bin/make -f +#export DH_VERBOSE=1 + +%: + dh --with quilt $@ 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) diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..9a189dc --- /dev/null +++ b/debian/watch @@ -0,0 +1,23 @@ +# Example watch control file for uscan +# Rename this file to "watch" and then you can run the "uscan" command +# to check for upstream updates and more. +# See uscan(1) for format + +# Compulsory line, this is a version 3 file +version=3 + +# Uncomment to examine a Webpage +# <Webpage URL> <string match> +#http://www.example.com/downloads.php jruby-joni-(.*)\.tar\.gz + +# Uncomment to examine a Webserver directory +#http://www.example.com/pub/jruby-joni-(.*)\.tar\.gz + +# Uncommment to examine a FTP server +#ftp://ftp.example.com/pub/jruby-joni-(.*)\.tar\.gz debian uupdate + +# Uncomment to find new files on sourceforge, for devscripts >= 2.9 +# http://sf.net/jruby-joni/jruby-joni-(.*)\.tar\.gz + +# Uncomment to find new files on GooglePages +# http://example.googlepages.com/foo.html jruby-joni-(.*)\.tar\.gz -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jruby-joni.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

