[rest-gradle-plugin] 80/83: WIP: First cut of debian/

Alastair McKinstry mckinstry at moszumanska.debian.org
Wed Oct 25 15:59:09 UTC 2017


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

mckinstry pushed a commit to branch debian/master
in repository rest-gradle-plugin.

commit 32aacfb4115f46ca6d3fe218f2e6b197dd38bec8
Author: Alastair McKinstry <mckinstry at debian.org>
Date:   Wed Jun 8 17:01:09 2016 +0100

    WIP: First cut of debian/
---
 debian/changelog                       |  5 +++++
 debian/compat                          |  1 +
 debian/control                         | 28 ++++++++++++++++++++++++++++
 debian/copyright                       | 17 +++++++++++++++++
 debian/libgradle-rest-plugin-java.poms |  1 +
 debian/pom.xml                         | 32 ++++++++++++++++++++++++++++++++
 debian/rules                           |  8 ++++++++
 debian/source/format                   |  2 ++
 debian/source/options                  |  1 +
 debian/watch                           |  3 +++
 10 files changed, 98 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..5d4cf19
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+rest-gradle-plugin (0.4.2-1) UNRELEASED; urgency=medium
+
+  * Initial release. (Closes: #XXXXXX)
+
+ -- Alastair McKinstry <mckinstry at debian.org>  Thu, 18 Feb 2016 15:44:05 +0000
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..848542b
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,28 @@
+Source: rest-gradle-plugin
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders:
+ Alastair McKinstry <mckinstry at debian.org>
+Build-Depends:
+ debhelper (>= 9),
+ gradle-debian-helper,
+ maven-repo-helper,
+ default-jdk
+Standards-Version: 3.9.8
+Homepage: https://plugins.gradle.org/plugin/org.10ne.rest/0.3
+Vcs-Git: https://anonscm.debian.org/git/pkg-java/gradle-shadow-plugin.git
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/gradle-shadow-plugin.git
+
+Package: libgradle-rest-plugin-java.poms
+Architecture: all
+Depends:
+ ${misc:Depends}
+Description: Gradle plugin for Shadow
+ Shadow is an extension of the Gradle Jar task that optimizes FatJar/UberJar
+ creation by using JarInputStream and JarOutputStream to copy file contents.
+ This avoids the unnecessary I/O overhead of expanding jar files to
+ disk before recombining them. Shadow provides the similar filtering,
+ relocation, and transformation capabilities as the Maven Shade plugin.
+ The gradle-shadow-plugin makes it possible to integrate JFlex into the Gradle
+ - build system.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..08fb0fe
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,17 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: gradle-jflex-plugin
+Source: https://github.com/thomaslee/gradle-jflex-plugin
+Files-Excluded:
+ *.jar
+
+Files: *
+Copyright: 2014-2015, Tom Lee
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2016, Markus Koschany <apo at debian.org>
+License: Apache-2.0
+
+License: Apache-2.0
+ On Debian systems, the complete text of the Apache 2.0 license
+ can be found in /usr/share/common-licenses/Apache-2.0.
diff --git a/debian/libgradle-rest-plugin-java.poms b/debian/libgradle-rest-plugin-java.poms
new file mode 100644
index 0000000..df4b280
--- /dev/null
+++ b/debian/libgradle-rest-plugin-java.poms
@@ -0,0 +1 @@
+debian/pom.xml --no-parent --java-lib --usj-name=rest-gradle-plugin --artifact=build/libs/shadow-1.2.3.jar
diff --git a/debian/pom.xml b/debian/pom.xml
new file mode 100644
index 0000000..20af22e
--- /dev/null
+++ b/debian/pom.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.10ne.rest</groupId>
+  <artifactId>gradle-shadow-plugin</artifactId>
+  <version>0.4.3</version>
+  <name>rest-gradle-plugin</name>
+  <description>A Gradle plugin for Shadowm, which optimizes FatJar/UberJar creation by using JarInputStream and JarOutputStream to copy file contents</description>
+  <url>https://plugins.gradle.org/plugin/org.10ne.rest/0.3</url>
+  <inceptionYear>2014</inceptionYear>
+  <licenses>
+    <license>
+      <name>Apache License 2.0</name>
+      <url>http://opensource.org/licenses/Apache-2.0</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>johnrengelman</id>
+      <name>John R. Engelman</name>
+      <email>johnrengelman at github.com</email>
+    </developer>
+  </developers>
+  <scm>
+    <connection>scm:git://github.com/johnrengelman/shadow.git</connection>
+    <developerConnection>scm:git at github.com:johnrengelman/shadow.git</developerConnection>
+    <url>https://github.com/johnrengelman/shadow</url>
+  </scm>
+  <dependencies>
+  </dependencies>
+</project>
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..33a9122
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --parallel --with maven_repo_helper --buildsystem=gradle
+
+get-orig-source:
+	uscan --force-download --download-current-version
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..c3d9f24
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1,2 @@
+3.0 (quilt)
+
diff --git a/debian/source/options b/debian/source/options
new file mode 100644
index 0000000..b7bc1f2
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1 @@
+compression = "xz"
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..83ed750
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/gradle-shadow-plugin-$1\.tar\.gz/ \
+  https://github.com/johnrengelman/shadow/tags .*/v?(\d\S*)\.tar\.gz

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



More information about the pkg-java-commits mailing list