This is an automated email from the git hooks/post-receive script. eighthave pushed a commit to branch master in repository ivyplusplus.
commit 2e23213cdb0c61de6ca2195226b8d4782f0fa3d7 Author: Hans-Christoph Steiner <[email protected]> Date: Sun Dec 13 22:20:43 2015 +0100 first stab at packaging --- debian/.gitignore | 5 +++++ debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 25 +++++++++++++++++++++++++ debian/copyright | 24 ++++++++++++++++++++++++ debian/rules | 15 +++++++++++++++ debian/source/format | 1 + 7 files changed, 76 insertions(+) diff --git a/debian/.gitignore b/debian/.gitignore new file mode 100644 index 0000000..a67db05 --- /dev/null +++ b/debian/.gitignore @@ -0,0 +1,5 @@ +files +ivyplusplus.debhelper.log +ivyplusplus.substvars +ivyplusplus/ + diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..20883a2 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +ivyplusplus (1.14-1) unstable; urgency=low + + * Initial release (Closes: #) + + -- Hans-Christoph Steiner <[email protected]> Sun, 13 Dec 2015 22:12:50 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..6326e52 --- /dev/null +++ b/debian/control @@ -0,0 +1,25 @@ +Source: ivyplusplus +Section: java +Priority: optional +Maintainer: Debian Java Maintainers <[email protected]> +Uploaders: Hans-Christoph Steiner <[email protected]> +Build-Depends: debhelper (>= 9), + ant, + ant-optional, + default-jdk, + ivy, + junit4 (>=4.8.12), + libjarjar-java +Standards-Version: 3.9.6 +Homepage: https://github.com/rzwitserloot/ivyplusplus +Vcs-Git: https://anonscm.debian.org/git/pkg-java/ivyplusplus.git +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/ivyplusplus.git + +Package: ivyplusplus +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Adds features to ivy for creating projects + ivyplusplus (ipp) adds a few useful features to ivy, such as creating + an eclipse project from your deps. Aside from ivy itself, you get a + few extra tasks and a command line tool that creates a new project by + filling out a skeleton build.xml and ivy configuration. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..29a89a2 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,24 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: ivyplusplus +Source: https://github.com/rzwitserloot/ivyplusplus + +Files: * +Copyright: 2010-2015 Reinier Zwitserloot +License: MIT + +Files: debian/* +Copyright: 2015 Hans-Christoph Steiner <[email protected]> +License: MIT + + +License: MIT + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + . + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..cf1b927 --- /dev/null +++ b/debian/rules @@ -0,0 +1,15 @@ +#!/usr/bin/make -f + +include /usr/share/dpkg/default.mk + + +%: + dh $@ + +override_dh_auto_clean: + dh_auto_clean + ant clean + -rm -rf ivyCache lib/build lib/test + +override_dh_auto_build: + ant dist -lib /usr/share/java/ivy.jar 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) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/ivyplusplus.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

