summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <marcin.juszkiewicz@linaro.org>2012-05-28 12:07:28 +0800
committerAntonio Terceiro <antonio.terceiro@linaro.org>2013-04-30 16:10:14 -0300
commit4a70dab325e43cb0ed79da7362a8eb17593f329c (patch)
treece745bfc1e460484d71a41fbfe5e4c95d9cedf6b
parent6b4766b36ce16bd7e4ecce86499d36df00222e5a (diff)
Imported Debian patch 0.5-0ubuntu1~linaro1
-rw-r--r--debian/changelog49
-rw-r--r--debian/compat1
-rw-r--r--debian/control26
-rw-r--r--debian/copyright7
-rw-r--r--debian/pyversions1
-rwxr-xr-xdebian/rules16
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch2
8 files changed, 103 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..8b2ec32
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,49 @@
+lava-scheduler-tool (0.5-0ubuntu1~linaro1) quantal; urgency=low
+
+ * New upstream release.
+
+ -- Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Mon, 28 May 2012 12:07:28 +0800
+
+lava-scheduler-tool (0.4-0ubuntu1) precise; urgency=low
+
+ * New upstream release.
+ * Switched to dh_python2
+
+ -- Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Thu, 26 Apr 2012 08:57:21 +0200
+
+lava-scheduler-tool (0.3-0) unstable; urgency=low
+
+ * New upstream release.
+ * Cleanup before uploading to Ubuntu.
+ - added link to licence text in debian/copyright
+ * Switch to dpkg-source 3.0 (quilt) source format.
+ * Added debian/watch file.
+ * Changed (build-)dependencies from python-argparse to python (>=
+ 2.7.2-9ubuntu2)
+ * Lintian changes:
+ - fixed missing-license-paragraph-in-dep5-copyright warning
+ * Added myself to Uploaders.
+ * Bumped standards version to 3.9.3.
+
+ -- Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> Thu, 22 Mar 2012 21:25:45 +0100
+
+lava-scheduler-tool (0.2.2-0ubuntu0~lava1) lucid; urgency=low
+
+ * New upstream release.
+
+ -- Michael Hudson-Doyle <michael.hudson@linaro.org> Fri, 21 Oct 2011 17:06:35 +1300
+
+lava-scheduler-tool (0.2.1-0ubuntu0~lava1) lucid; urgency=low
+
+ * New upstream release.
+ * Add cancel-job command.
+ * submit-job now prints out the id of the submitted job.
+ * Upstream packaging fixes.
+
+ -- Michael Hudson-Doyle <michael.hudson@linaro.org> Tue, 30 Aug 2011 16:01:22 +1200
+
+lava-scheduler-tool (0.1.1-0ubuntu0~zyga1) lucid; urgency=low
+
+ * Initial release
+
+ -- Zygmunt Krynicki <zygmunt.krynicki@linaro.org> Fri, 01 Jul 2011 15:30:49 +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..2c4200a
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,26 @@
+Source: lava-scheduler-tool
+Section: admin
+Priority: optional
+Build-Depends:
+ debhelper (>= 7.0.50~),
+ python (>= 2.7.2-10),
+ python-setuptools (>= 0.6b3),
+Build-Depends-Indep:
+ lava-tool (>= 0.4),
+ python-versiontools (>= 1.4),
+Standards-Version: 3.9.3
+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
+XSBC-Original-Maintainer: Linaro Developers <linaro-dev@lists.linaro.org>
+Uploaders: Zygmunt Krynicki <zygmunt.krynicki@linaro.org>, Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
+Homepage: http://launchpad.net/lava-scheduler-tool/
+
+Package: lava-scheduler-tool
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends},
+ lava-tool (>= 0.4),
+ python (>= 2.7.2-10),
+ python-versiontools (>= 1.4),
+Provides: ${python:Provides}
+Description: Command line utility for the LAVA Scheduler
+ This package contains command-line tool for interacting with launch control
+ scheduler developed by the Linaro (www.linaro.org) Infrastructure Team.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..cca5464
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,7 @@
+Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=166
+Upstream-Name: lava-scheduler-tool
+Upstream-Contact: Michael Hudson-Doyle <michael.hudson@linaro.org>
+Source: http://launchpad.net/lava-scheduler-tool
+Copyright: Copyright 2010-2012, Linaro Limited
+License: LGPL-3
+ See /usr/share/common-licenses/LGPL-3 for full text
diff --git a/debian/pyversions b/debian/pyversions
new file mode 100644
index 0000000..0c043f1
--- /dev/null
+++ b/debian/pyversions
@@ -0,0 +1 @@
+2.6-
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..28fe0d4
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,16 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --with python2
+
+.PHONY: override_dh_auto_test
+override_dh_auto_test:
+ # Run the bundled tests when building the package
+ LC_ALL=C python setup.py test
+
+.PHONY: override_dh_auto_clean
+override_dh_auto_clean:
+ # Remove everything else
+ dh_auto_clean
+ # Remove build directory with sphinx files
+ rm -rf build
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..93fff55
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/l/lava-scheduler-tool/lava-scheduler-tool-([^abc]*)\.tar\.gz