[med-svn] [libbroad-barclay-java] 02/02: Import Debian changes 1.2.1-1

Steffen Möller moeller at moszumanska.debian.org
Fri Sep 1 07:55:22 UTC 2017


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

moeller pushed a commit to branch master
in repository libbroad-barclay-java.

commit cb96382cb0a1126b67b06c3c31190d1edd42168f
Author: Steffen Moeller <moeller at debian.org>
Date:   Wed Aug 30 21:12:17 2017 +0200

    Import Debian changes 1.2.1-1
    
    libbroad-barclay-java (1.2.1-1) unstable; urgency=medium
    
      * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
---
 debian/changelog                   |  5 +++++
 debian/compat                      |  1 +
 debian/control                     | 16 ++++++++++++++++
 debian/copyright                   | 37 ++++++++++++++++++++++++++++++++++++
 debian/patches/no_gitversion.patch | 39 ++++++++++++++++++++++++++++++++++++++
 debian/patches/series              |  1 +
 debian/rules                       |  7 +++++++
 debian/source/format               |  1 +
 debian/watch                       |  4 ++++
 9 files changed, 111 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..11fe63d
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libbroad-barclay-java (1.2.1-1) unstable; urgency=medium
+
+  * Initial release (Closes: #873847)
+
+ -- Steffen Moeller <moeller at debian.org>  Wed, 30 Aug 2017 21:12:17 +0200
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..242de9f
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,16 @@
+Source: libbroad-barclay-java
+Section: java
+Priority: optional
+Maintainer: Steffen Moeller <moeller at debian.org>
+Build-Depends: debhelper (>= 9), gradle-debian-helper, libfreemarker-java, libjoptsimple-java, liblog4j2-java
+Standards-Version: 4.1.0
+Homepage: https://github.com/broadinstitute/barclay
+Vcs-Git: https://anonscm.debian.org/debian-med/libbroad-barclay-java.git
+Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/libbroad-barclay-java.git
+
+Package: libbroad-barclay-java
+Architecture: all
+Depends: ${misc:Depends}
+Description: Command line argument parsing and documentation generation
+ Barclay is a Java library for the interpretation of command line
+ argument and their documentation. It is based on jopt-simple.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..3616255
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,37 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: barclay
+Source: https://github.com/broadinstitute/barclay
+
+Files: *
+Copyright: 2009-2016, GATK Authors.
+License: 3-clause BSD
+
+Files: debian/*
+Copyright: 2017 Steffen Moeller <moeller at debian.org>
+License: 3-clause BSD
+
+License: 3-clause BSD
+ 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 Broad Institute, Inc. 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 THE COPYRIGHT HOLDER OR CONTRIBUTORS 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
diff --git a/debian/patches/no_gitversion.patch b/debian/patches/no_gitversion.patch
new file mode 100644
index 0000000..bac8f24
--- /dev/null
+++ b/debian/patches/no_gitversion.patch
@@ -0,0 +1,39 @@
+Index: libbroad-barclay-java-1.2.1/build.gradle
+===================================================================
+--- libbroad-barclay-java-1.2.1.orig/build.gradle
++++ libbroad-barclay-java-1.2.1/build.gradle
+@@ -3,9 +3,9 @@ import javax.tools.ToolProvider
+ plugins {
+     id "java"
+     id 'maven'
+-    id 'signing'
++//    id 'signing'
+     id 'jacoco'
+-    id 'com.palantir.git-version' version '0.5.1' //version helper
++//    id 'com.palantir.git-version' version '0.5.1' //version helper
+ }
+ 
+ sourceCompatibility = 1.8
+@@ -14,7 +14,8 @@ targetCompatibility = 1.8
+ group = 'org.broadinstitute'
+ 
+ final isRelease = Boolean.getBoolean("release")
+-version = (isRelease ? gitVersion() : gitVersion() + "-SNAPSHOT").replaceAll(".dirty", "")
++//version = (isRelease ? gitVersion() : gitVersion() + "-SNAPSHOT").replaceAll(".dirty", "")
++version = '1.2.1'
+ 
+ repositories {
+     mavenCentral()
+@@ -117,10 +118,12 @@ artifacts {
+ /**
+  * Sign non-snapshot releases with our secret key.  This should never need to be invoked directly.
+  */
++/*
+ signing {
+     required { isRelease && gradle.taskGraph.hasTask("uploadArchives") }
+     sign configurations.archives
+ }
++*/
+ 
+ /**
+  * Upload a release to sonatype.  You must be an authorized uploader and have your sonatype
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..14b6286
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+no_gitversion.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..37cf72d
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+# See debhelper(7) (uncomment to enable)
+# output every command that modifies files on the build system.
+#export DH_VERBOSE = 1
+
+%:
+	dh $@ --buildsystem=gradle
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..4ba1c01
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=4
+opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%libbroad-barclay-java-$1.tar.gz%" \
+   https://github.com/broadinstitute/barclay/tags \
+   (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian uupdate

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/libbroad-barclay-java.git



More information about the debian-med-commit mailing list