[maven-verifier] 02/20: [svn-inject] Applying Debian modifications to trunk
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Thu Jul 20 10:35:22 UTC 2017
This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a commit to branch master
in repository maven-verifier.
commit f1e1a50b2043bbb3a681d03bfbdc4570b4510464
Author: Ludovic Claude <ludovic.claude at laposte.net>
Date: Wed Aug 5 21:29:57 2009 +0000
[svn-inject] Applying Debian modifications to trunk
---
debian/README.source | 9 +++++++++
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 36 ++++++++++++++++++++++++++++++++++++
debian/copyright | 20 ++++++++++++++++++++
debian/libmaven-verifier-java.poms | 1 +
debian/maven.rules | 1 +
debian/orig-tar.sh | 16 ++++++++++++++++
debian/rules | 9 +++++++++
debian/watch | 4 ++++
10 files changed, 102 insertions(+)
diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..7823200
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,9 @@
+Information about maven-verifier
+------------------------------
+
+This package was debianized using the mh_make command
+from the maven-debian-helper package.
+
+The build system uses Maven but prevents it from downloading
+anything from the Internet, making the build compliant with
+the Debian policy.
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..a19206d
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+maven-verifier (1.0-0ubuntu1~ppa3) karmic; urgency=low
+
+ * Initial release (Closes: #540053)
+
+ -- Ludovic Claude <ludovic.claude at laposte.net> Wed, 29 Jul 2009 22:56:37 +0100
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..e40d457
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,36 @@
+Source: maven-verifier
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Ludovic Claude <ludovic.claude at laposte.net>
+Build-Depends: debhelper (>= 7), cdbs, default-jdk, maven-debian-helper
+Build-Depends-Indep: junit
+Standards-Version: 3.8.2
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/maven-verifier
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/maven-verifier/
+Homepage: http://maven.apache.org/shared/maven-verifier/
+
+Package: libmaven-verifier-java
+Architecture: all
+Depends: ${misc:Depends}, ${maven:Depends}
+Recommends: ${maven:OptionalDepends}
+Description: Maven Verifier Component
+ Maven is a software project management and comprehension tool. Based on the
+ concept of a project object model (POM), Maven can manage a project's build,
+ reporting and documentation from a central piece of information.
+ .
+ Maven's primary goal is to allow a developer to comprehend the complete
+ state of a development effort in the shortest period of time. In order to
+ attain this goal there are several areas of concern that Maven attempts
+ to deal with:
+ .
+ * Making the build process easy
+ * Providing a uniform build system
+ * Providing quality project information
+ * Providing guidelines for best practices development
+ * Allowing transparent migration to new features
+ .
+ Maven Verifier is a shared library for Maven and it provides a test harness
+ for Maven integration tests.
+
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..6b33535
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,20 @@
+Format-Specification: http://dep.debian.net/deps/dep5/
+Name: Maven Verifier Component
+Maintainer: Apache Maven team
+Source: http://maven.apache.org/
+
+Files: *
+Copyright: 2001-2009, The Apache Software Foundation.
+License: Apache-2.0
+
+Files: debian/*
+Copyright: Copyright 2009, Ludovic Claude <ludovic.claude at laposte.net>
+License: GPL-3+
+
+License: Apache-2.0
+ On Debian GNU/Linux system you can find the complete text of the
+ Apache 2.0 license in '/usr/share/common-licenses/Apache-2.0'.
+
+License: GPL-3
+ On Debian GNU/Linux system you can find the complete text of the
+ GPL-3 license in '/usr/share/common-licenses/GPL-3'
diff --git a/debian/libmaven-verifier-java.poms b/debian/libmaven-verifier-java.poms
new file mode 100644
index 0000000..43e746b
--- /dev/null
+++ b/debian/libmaven-verifier-java.poms
@@ -0,0 +1 @@
+pom.xml --no-parent
diff --git a/debian/maven.rules b/debian/maven.rules
new file mode 100644
index 0000000..8577380
--- /dev/null
+++ b/debian/maven.rules
@@ -0,0 +1 @@
+junit junit jar s/3\..*/3.x/
diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh
new file mode 100644
index 0000000..f25f7d9
--- /dev/null
+++ b/debian/orig-tar.sh
@@ -0,0 +1,16 @@
+#!/bin/sh -e
+
+VERSION=$2
+TAR=../maven-verifier_$VERSION.orig.tar.gz
+DIR=maven-verifier-$VERSION
+TAG=$(echo "maven-verifier-$VERSION" | sed -re's/~(alpha|beta)/-\1-/')
+
+svn export http://svn.apache.org/repos/asf/maven/shared/tags/${TAG} $DIR
+GZIP=--best tar -c -z -f $TAR --exclude '*.jar' --exclude '*.class' $DIR
+rm -rf $DIR ../$TAG
+
+# move to directory 'tarballs'
+if [ -r .svn/deb-layout ]; then
+ . .svn/deb-layout
+ mv $TAR $origDir && echo "moved $TAR to $origDir"
+fi
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..b76c54a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/maven.mk
+
+JAVA_HOME := /usr/lib/jvm/default-java
+
+get-orig-source:
+ uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..665b25e
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts="uversionmangle=s/-(alpha|beta)-/~$1/" \
+ http://svn.apache.org/repos/asf/maven/shared/tags/ \
+ maven-verifier-(\d.*)/ debian debian/orig-tar.sh
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/maven-verifier.git
More information about the pkg-java-commits
mailing list