[Python-apps-commits] r1837 - in packages/drobo-utils/trunk (8 files)

catlee-guest at users.alioth.debian.org catlee-guest at users.alioth.debian.org
Fri Sep 19 20:23:12 UTC 2008


    Date: Friday, September 19, 2008 @ 20:23:10
  Author: catlee-guest
Revision: 1837

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/drobo-utils/trunk/debian/
  packages/drobo-utils/trunk/debian/changelog
  packages/drobo-utils/trunk/debian/compat
  packages/drobo-utils/trunk/debian/control
  packages/drobo-utils/trunk/debian/copyright
  packages/drobo-utils/trunk/debian/docs
  packages/drobo-utils/trunk/debian/rules
  packages/drobo-utils/trunk/debian/watch


Property changes on: packages/drobo-utils/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: packages/drobo-utils/trunk/debian/changelog
===================================================================
--- packages/drobo-utils/trunk/debian/changelog	                        (rev 0)
+++ packages/drobo-utils/trunk/debian/changelog	2008-09-19 20:23:10 UTC (rev 1837)
@@ -0,0 +1,6 @@
+drobo-utils (0.3.0-1-1) unstable; urgency=low
+
+  * Initial release. (Closes: #498720: ITP: drobo-utils -- manage data
+    robotics storage units (drobos))
+
+ -- Chris AtLee <chris at atlee.ca>  Fri, 12 Sep 2008 11:31:43 -0400

Added: packages/drobo-utils/trunk/debian/compat
===================================================================
--- packages/drobo-utils/trunk/debian/compat	                        (rev 0)
+++ packages/drobo-utils/trunk/debian/compat	2008-09-19 20:23:10 UTC (rev 1837)
@@ -0,0 +1 @@
+5

Added: packages/drobo-utils/trunk/debian/control
===================================================================
--- packages/drobo-utils/trunk/debian/control	                        (rev 0)
+++ packages/drobo-utils/trunk/debian/control	2008-09-19 20:23:10 UTC (rev 1837)
@@ -0,0 +1,20 @@
+Source: drobo-utils
+Section: python
+Priority: extra
+Maintainer: Peter Silva <Peter.A.Silva at gmail.com>
+Uploaders: Chris AtLee <chris at atlee.ca>, Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
+Build-Depends: python-support (>= 0.6), debhelper (>= 5), python-all-dev, libsgutils1-dev
+Standards-Version: 3.8.0
+
+Package: drobo-utils
+Architecture: any
+Recommends: parted, gparted, kdesudo, gtksudo, python-qt4
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, libsgutils1
+Description: manage data robotics storage units (drobos)
+ Python gui, cli, and api providing the "Dashboard" functionality.
+ If you fire up droboview, it should look pretty familiar to those who 
+ have seen the dashboard on other operating systems.  Droboview is built 
+ on a little programmer interface which can be installed on the system 
+ and used by other applications as well.  For experienced Linux hands, 
+ there is a command line interface, drobom, which offers the same 
+ functionality as droboview.

Added: packages/drobo-utils/trunk/debian/copyright
===================================================================
--- packages/drobo-utils/trunk/debian/copyright	                        (rev 0)
+++ packages/drobo-utils/trunk/debian/copyright	2008-09-19 20:23:10 UTC (rev 1837)
@@ -0,0 +1,16 @@
+This package was debianized by Chris AtLee <chris at atlee.ca> on
+Fri Sep 12 11:14:15 EDT 2008
+
+It was downloaded from http://drobo-utils.sourceforge.net
+
+Upstream Author: 
+    Peter A Silva <Peter.A.Silva at gmail.com>
+
+Copyright:
+    Copyright (C) 2008 Peter A Silva
+
+License:
+    GPLv3
+
+The Debian packaging is (C) 2008, informavore <Peter.A.Silva at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: packages/drobo-utils/trunk/debian/docs
===================================================================
--- packages/drobo-utils/trunk/debian/docs	                        (rev 0)
+++ packages/drobo-utils/trunk/debian/docs	2008-09-19 20:23:10 UTC (rev 1837)
@@ -0,0 +1,4 @@
+README.txt
+Dunno.txt
+TODO
+DroboFirmwareWishes.txt

Added: packages/drobo-utils/trunk/debian/rules
===================================================================
--- packages/drobo-utils/trunk/debian/rules	                        (rev 0)
+++ packages/drobo-utils/trunk/debian/rules	2008-09-19 20:23:10 UTC (rev 1837)
@@ -0,0 +1,67 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PKGNAME := drobo-utils
+PYVERS=$(shell pyversions -vs)
+
+build: build-stamp
+build-stamp: $(PYVERS:%=build-python%-stamp)
+	touch $@
+
+build-python%-stamp:
+	python$* setup.py build
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f *-stamp
+
+	[ ! -d build ] || rm -rf build
+
+	python setup.py clean
+
+	find . -name "*\.pyc" -delete
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	for py in $(PYVERS); do \
+		python$$py setup.py install_lib -d $(CURDIR)/debian/$(PKGNAME)/usr/lib/python$$py/site-packages; \
+	done
+	python setup.py install_data -d $(CURDIR)/debian/$(PKGNAME)/usr/share/$(PKGNAME)
+	python setup.py install_scripts -d $(CURDIR)/debian/$(PKGNAME)/usr/sbin
+	for s in $(CURDIR)/debian/$(PKGNAME)/usr/sbin/*; do \
+	    sed -i '1s,#!.*python.*,#!/usr/bin/python,' $$s; \
+	done
+
+binary-indep: build install
+
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs 
+	dh_installdocs
+	dh_installexamples
+	dh_pysupport
+	dh_strip
+	dh_installman
+	dh_compress 		-X.py
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-arch binary-indep
+
+.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch configure


Property changes on: packages/drobo-utils/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/drobo-utils/trunk/debian/watch
===================================================================
--- packages/drobo-utils/trunk/debian/watch	                        (rev 0)
+++ packages/drobo-utils/trunk/debian/watch	2008-09-19 20:23:10 UTC (rev 1837)
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/drobo-utils/droboutils_(.+)\.tar\.gz




More information about the Python-apps-commits mailing list