[javaparser] 01/03: - started debian packaging
Benjamin Mesing
ben at alioth.debian.org
Wed Oct 23 20:05:55 UTC 2013
This is an automated email from the git hooks/post-receive script.
ben pushed a commit to branch master
in repository javaparser.
commit cc05d0f296d2b5376b5f98dc950969dd4a8db673
Author: Benjamin Mesing <bensmail at gmx.net>
Date: Wed Oct 23 20:15:44 2013 +0200
- started debian packaging
---
debian/README.source | 9 +++++++++
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++
debian/copyright | 40 +++++++++++++++++++++++++++++++++++++++
debian/rules | 9 +++++++++
debian/source/format | 1 +
debian/watch | 2 ++
8 files changed, 118 insertions(+)
diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..b740629
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,9 @@
+This package uses a version control system as described in
+http://wiki.debian.org/Java/JavaVcs and the pages linked from there.
+
+It contains the upstream source within the VCS upstream branch.
+Upstream versions are tagged as upstream/<version>.
+
+The original tarball was repackaged, because it was distributed in there
+zip format.
+
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0ee0740
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+javaparser (1.0.8-1) UNRELEASED; urgency=low
+
+ * Initial release. (Closes: #711109)
+
+ -- Benjamin Mesing <ben at debian.org> Mon, 21 Oct 2013 22:14:08 +0200
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..c18f407
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,51 @@
+Source: autocomplete
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Benjamin Mesing <ben at debian.org>
+Build-Depends: debhelper (>= 9), javahelper (>= 0.4), maven-repo-helper, ant
+Build-Depends-Indep: default-jdk, default-jdk-doc, librsyntaxtextarea-java (>= 2.5), librsyntaxtextarea-java-doc (>= 2.5)
+Standards-Version: 3.9.4
+Vcs-Git: git://git.debian.org/git/pkg-java/autocomplete.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/autocomplete.git
+Homepage: http://fifesoft.com/autocomplete/
+
+Package: libautocomplete-java
+Architecture: all
+Depends: ${java:Depends}, ${misc:Depends}
+Suggests: libautocomplete-java-doc
+Description: Java library for auto-completion in text component
+ AutoComplete is a library allowing you to add IDE-like auto-completion
+ (aka "code completion" or "Intellisense") to any Swing JTextComponent.
+ Special integration is added for RSyntaxTextArea.
+ .
+ It features:
+ * Drop-down completion choice list
+ * Optional companion "description" window, complete with full HTML
+ support and navigable with hyperlinks
+ * Optional parameter completion assistance for functions/methods,
+ ala Eclipse and NetBeans
+ * Completion information is typically specified in an XML file,
+ but can even be dynamic.
+
+Package: libautocomplete-java-doc
+Architecture: all
+Section: doc
+Depends: ${java:Depends}, ${misc:Depends}
+Recommends: default-jdk-doc, librsyntaxtextarea-java-doc
+Suggests: libautocomplete-java
+Description: Java library for auto-completion in text component (documentation)
+ AutoComplete is a library allowing you to add IDE-like auto-completion
+ (aka "code completion" or "Intellisense") to any Swing JTextComponent.
+ Special integration is added for RSyntaxTextArea.
+ .
+ It features:
+ * Drop-down completion choice list
+ * Optional companion "description" window, complete with full HTML
+ support and navigable with hyperlinks
+ * Optional parameter completion assistance for functions/methods,
+ ala Eclipse and NetBeans
+ * Completion information is typically specified in an XML file,
+ but can even be dynamic.
+ .
+ This package contains the API documentation of libautocomplete-java.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..eb9e4cd
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,40 @@
+Format: http://dep.debian.net/deps/dep5/
+Upstream-Name: AutoComplete
+Upstream-Contact: Robert Futrell
+Source: http://fifesoft.com/autocomplete/
+
+Files: *
+Copyright: 2013, Robert Futrell
+License: modified BSD license
+
+Files: debian/*
+Copyright: 2011, Vladimir Kotov <vladimir at kotov.lv>
+ 2013, Benjamin Mesing <bensmail at gmx.net>
+License: LGPL-2.1+
+
+License: modified BSD license
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ * Neither the name of the author nor the names of its contributors may
+ be used to endorse or promote products derived from this software
+ without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+License: LGPL-2.1+
+ On Debian GNU/Linux system you can find the complete text of the
+ LGPL-2.1 license in '/usr/share/common-licenses/LGPL-2.1'
diff --git a/debian/rules b/debian/rules
new file mode 100644
index 0000000..b15a192
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+VERSION := $(shell dpkg-parsechangelog | sed -ne 's/^Version: \(.*\)-.*/\1/p')
+
+%:
+ dh $@ --with javahelper
+
+get-orig-source:
+ uscan --download-version $(VERSION) --force-download --repack
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..46a4f1b
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://code.google.com/p/javaparser/downloads/list?can=1 .*/javaparser-(\d[\d.]*)-src.zip
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/javaparser.git
More information about the pkg-java-commits
mailing list