[controlsfx] 01/01: Import Debian changes 8.40.12-1

Tony Mancill tmancill at moszumanska.debian.org
Mon May 22 05:08:16 UTC 2017


This is an automated email from the git hooks/post-receive script.

tmancill pushed a commit to branch master
in repository controlsfx.

commit e34e14ff079a5f03b70ec1a2781fa6c9ac1e26dd
Author: tony mancill <tmancill at debian.org>
Date:   Sun May 21 21:38:34 2017 -0700

    Import Debian changes 8.40.12-1
    
    controlsfx (8.40.12-1) unstable; urgency=medium
    
      * Initial release (Closes: #848396)
      * Add patch to prevent JAR being versioned as a -SNAPSHOT.
---
 debian/README.source                 | 12 ++++++++
 debian/changelog                     |  6 ++++
 debian/compat                        |  1 +
 debian/control                       | 26 ++++++++++++++++++
 debian/copyright                     | 53 ++++++++++++++++++++++++++++++++++++
 debian/libcontrolsfx-java.poms       |  1 +
 debian/patches/release-version.patch | 12 ++++++++
 debian/patches/series                |  1 +
 debian/rules                         |  5 ++++
 debian/source/format                 |  1 +
 debian/watch                         |  3 ++
 11 files changed, 121 insertions(+)

diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..fe500d9
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,12 @@
+controlsfx for Debian
+---------------------
+
+The debian/watch file strips the gradle wrapper from the upstream sources
+via the Files-Excluded stanza in debian/copyright before repacking the
+tarball.  Otherwise, the sources are identical to upstream.
+
+The -SNAPSHOT suffix is removed from the version via a patch, since the
+sources are for a release version. 
+
+ -- tony mancill <tmancill at debian.org>  Thu, 04 May 2017 21:16:31 -0700
+
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..ff4e183
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+controlsfx (8.40.12-1) unstable; urgency=medium
+
+  * Initial release (Closes: #848396)
+  * Add patch to prevent JAR being versioned as a -SNAPSHOT.
+
+ -- tony mancill <tmancill at debian.org>  Sun, 21 May 2017 21:38:34 -0700
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..47cea4b
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,26 @@
+Source: controlsfx
+Section: java
+Priority: optional
+Maintainer: tony mancill <tmancill at debian.org>
+Build-Depends: debhelper (>= 10), default-jdk,
+ gradle-debian-helper,
+ maven-repo-helper,
+ openjfx
+Standards-Version: 3.9.8
+Homepage: https://bitbucket.org/controlsfx/controlsfx
+Vcs-Git: https://anonscm.debian.org/pkg-java/controlsfx.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/controlsfx.git
+
+Package: libcontrolsfx-java
+Architecture: all
+Depends: ${misc:Depends}
+Description: high quality UI controls and other tools to complement JavaFX
+ ControlsFX is a collection of UI controls and other tools to complement 
+ the core JavaFX distribution.  It has been developed for JavaFX 8.0 and
+ beyond, and has a guiding principle of only accepting new controls and
+ features when all existing code is at an acceptably high level, including
+ having high quality javadoc documentation.
+ . 
+ The full list of features is provided at:
+ http://fxexperience.com/controlsfx/features/
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..8c43466
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,53 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: controlsfx
+Source: https://bitbucket.org/controlsfx/controlsfx
+Files-Excluded: gradle/*
+ gradlew
+ gradlew.bat
+
+Files: *
+Copyright: 2013, 2014, ControlsFX
+License: BSD-3-Clause
+ 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 ControlsFX, any associated website, 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 CONTROLSFX 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.
+
+Files: debian/*
+Copyright: 2017 tony mancill <tmancill at debian.org>
+License: Expat
+ 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.
+ . 
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/debian/libcontrolsfx-java.poms b/debian/libcontrolsfx-java.poms
new file mode 100644
index 0000000..7269dee
--- /dev/null
+++ b/debian/libcontrolsfx-java.poms
@@ -0,0 +1 @@
+controlsfx/build/debian/controlsfx.pom --java-lib --artifact=controlsfx/build/libs/*.jar
diff --git a/debian/patches/release-version.patch b/debian/patches/release-version.patch
new file mode 100644
index 0000000..63ba82c
--- /dev/null
+++ b/debian/patches/release-version.patch
@@ -0,0 +1,12 @@
+Description: remove -SNAPSHOT suffix from version
+Author: tony mancill <tmancill at debian.org>
+Forwarded: not-needed
+
+--- a/controlsfx-build.properties
++++ b/controlsfx-build.properties
+@@ -9,4 +9,4 @@
+ 
+ fxsampler_specification_version=1.0.9
+ 
+-artifact_suffix=-SNAPSHOT
++artifact_suffix=
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..b54a9d8
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+release-version.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..6a42393
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,5 @@
+#!/usr/bin/make -f
+#export DH_VERBOSE = 1
+
+%:
+	dh $@ --buildsystem=gradle --with=maven-repo-helper
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..09d8d7e
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=4
+opts="compression=xz,repack" \
+    https://bitbucket.org/controlsfx/controlsfx/downloads?tab=tags .*/(\d\S+)\.tar\.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/controlsfx.git



More information about the pkg-java-commits mailing list