[jitescript] 01/01: Imported Debian patch 0.4.1-1
Miguel Landaeta
nomadium at moszumanska.debian.org
Sun Jan 15 11:01:24 UTC 2017
This is an automated email from the git hooks/post-receive script.
nomadium pushed a commit to branch master
in repository jitescript.
commit 59379a0b24a8ce683e6fefbce20c4065660ff318
Author: Miguel Landaeta <nomadium at debian.org>
Date: Sun Jan 15 09:39:11 2017 +0000
Imported Debian patch 0.4.1-1
---
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 28 ++++++++++++++++++++++++++++
debian/copyright | 29 +++++++++++++++++++++++++++++
debian/libjitescript-java.poms | 28 ++++++++++++++++++++++++++++
debian/maven.cleanIgnoreRules | 1 +
debian/maven.ignoreRules | 5 +++++
debian/maven.publishedRules | 1 +
debian/maven.rules | 4 ++++
debian/rules | 6 ++++++
debian/source/format | 1 +
debian/watch | 3 +++
12 files changed, 112 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..e340491
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+jitescript (0.4.1-1) unstable; urgency=medium
+
+ * Initial release. (Closes: #851350)
+
+ -- Miguel Landaeta <nomadium at debian.org> Sun, 15 Jan 2017 09:37:28 +0000
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..6d9f615
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,28 @@
+Source: jitescript
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Miguel Landaeta <nomadium at debian.org>
+Build-Depends: debhelper (>= 10~),
+ default-jdk,
+ junit4,
+ libasm4-java,
+ libfest-assert-java,
+ maven-debian-helper
+Standards-Version: 3.9.8
+Homepage: https://github.com/qmx/jitescript
+Vcs-Git: https://anonscm.debian.org/git/pkg-java/jitescript.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/jitescript.git
+
+Package: libjitescript-java
+Architecture: all
+Depends: ${misc:Depends}
+Description: Java API for generating JVM bytecode
+ jitescript provides a nice domain specific language around the
+ popular ASM Java library for bytecode generation purposes. It's
+ modeled after a Ruby library called BiteScript with similar
+ functionality.
+ .
+ The goal is to offer a Java library with a similar API so that
+ bytecode generation can be as nice in Java as BiteScript makes
+ it in JRuby.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..5fe9311
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,29 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: jitescript
+Upstream-Contact: Douglas Campos <qmx at qmx.me>
+Source: https://github.com/qmx/jitescript
+
+Files: *
+Copyright: 2011-2016 Douglas Campos <qmx at qmx.me>
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2017 Miguel Landaeta <nomadium at debian.org>
+License: Apache-2.0
+Comment: the Debian packaging is licensed under the same terms as the original package.
+
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ 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 complete text of the Apache version 2.0 license
+ can be found in "/usr/share/common-licenses/Apache-2.0".
diff --git a/debian/libjitescript-java.poms b/debian/libjitescript-java.poms
new file mode 100644
index 0000000..8545d14
--- /dev/null
+++ b/debian/libjitescript-java.poms
@@ -0,0 +1,28 @@
+# List of POM files for the package
+# Format of this file is:
+# <path to pom file> [option]*
+# where option can be:
+# --ignore: ignore this POM and its artifact if any
+# --ignore-pom: don't install the POM. To use on POM files that are created
+# temporarily for certain artifacts such as Javadoc jars. [mh_install, mh_installpoms]
+# --no-parent: remove the <parent> tag from the POM
+# --package=<package>: an alternative package to use when installing this POM
+# and its artifact
+# --has-package-version: to indicate that the original version of the POM is the same as the upstream part
+# of the version for the package.
+# --keep-elements=<elem1,elem2>: a list of XML elements to keep in the POM
+# during a clean operation with mh_cleanpom or mh_installpom
+# --artifact=<path>: path to the build artifact associated with this POM,
+# it will be installed when using the command mh_install. [mh_install]
+# --java-lib: install the jar into /usr/share/java to comply with Debian
+# packaging guidelines
+# --usj-name=<name>: name to use when installing the library in /usr/share/java
+# --usj-version=<version>: version to use when installing the library in /usr/share/java
+# --no-usj-versionless: don't install the versionless link in /usr/share/java
+# --dest-jar=<path>: the destination for the real jar.
+# It will be installed with mh_install. [mh_install]
+# --classifier=<classifier>: Optional, the classifier for the jar. Empty by default.
+# --site-xml=<location>: Optional, the location for site.xml if it needs to be installed.
+# Empty by default. [mh_install]
+#
+pom.xml --no-parent
diff --git a/debian/maven.cleanIgnoreRules b/debian/maven.cleanIgnoreRules
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/debian/maven.cleanIgnoreRules
@@ -0,0 +1 @@
+
diff --git a/debian/maven.ignoreRules b/debian/maven.ignoreRules
new file mode 100644
index 0000000..2a22cf8
--- /dev/null
+++ b/debian/maven.ignoreRules
@@ -0,0 +1,5 @@
+
+com.mycila.maven-license-plugin maven-license-plugin * * * *
+org.apache.maven.plugins maven-release-plugin * * * *
+org.apache.maven.plugins maven-source-plugin * * * *
+org.apache.maven.wagon wagon-webdav-jackrabbit * * * *
diff --git a/debian/maven.publishedRules b/debian/maven.publishedRules
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/debian/maven.publishedRules
@@ -0,0 +1 @@
+
diff --git a/debian/maven.rules b/debian/maven.rules
new file mode 100644
index 0000000..8e4feb9
--- /dev/null
+++ b/debian/maven.rules
@@ -0,0 +1,4 @@
+
+junit junit jar s/.*/4.x/ * *
+org.easytesting s/fest-assert/fest-assert-core/ jar s/.*/debian/ * *
+org.ow2.asm * * s/.*/4.x/ * *
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..8e053ea
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+%:
+ dh $@ --buildsystem=maven
+
+get-orig-source:
+ uscan --verbose --download-current-version
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..fbda62c
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+https://github.com/qmx/jitescript/releases \
+ /qmx/jitescript/archive/v([0-9].+)\.tar\.gz
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jitescript.git
More information about the pkg-java-commits
mailing list