[Python-modules-commits] r8433 - in packages/python-django-filebrowser (10 files)

odd_bloke-guest at users.alioth.debian.org odd_bloke-guest at users.alioth.debian.org
Wed May 13 08:39:44 UTC 2009


    Date: Wednesday, May 13, 2009 @ 08:39:43
  Author: odd_bloke-guest
Revision: 8433

First packaging.

Added:
  packages/python-django-filebrowser/trunk/
  packages/python-django-filebrowser/trunk/debian/
  packages/python-django-filebrowser/trunk/debian/changelog
  packages/python-django-filebrowser/trunk/debian/compat
  packages/python-django-filebrowser/trunk/debian/control
  packages/python-django-filebrowser/trunk/debian/copyright
  packages/python-django-filebrowser/trunk/debian/install
  packages/python-django-filebrowser/trunk/debian/rules
  packages/python-django-filebrowser/trunk/debian/setup.py
  packages/python-django-filebrowser/trunk/debian/watch

Added: packages/python-django-filebrowser/trunk/debian/changelog
===================================================================
--- packages/python-django-filebrowser/trunk/debian/changelog	                        (rev 0)
+++ packages/python-django-filebrowser/trunk/debian/changelog	2009-05-13 08:39:43 UTC (rev 8433)
@@ -0,0 +1,5 @@
+python-django-filebrowser (0+svn279-1) UNRELEASED; urgency=low
+
+  * Initial release. (Closes: #516330)
+
+ -- Daniel Watkins <daniel at daniel-watkins.co.uk>  Fri, 20 Feb 2009 17:46:36 +0000

Added: packages/python-django-filebrowser/trunk/debian/compat
===================================================================
--- packages/python-django-filebrowser/trunk/debian/compat	                        (rev 0)
+++ packages/python-django-filebrowser/trunk/debian/compat	2009-05-13 08:39:43 UTC (rev 8433)
@@ -0,0 +1 @@
+7

Added: packages/python-django-filebrowser/trunk/debian/control
===================================================================
--- packages/python-django-filebrowser/trunk/debian/control	                        (rev 0)
+++ packages/python-django-filebrowser/trunk/debian/control	2009-05-13 08:39:43 UTC (rev 8433)
@@ -0,0 +1,17 @@
+Source: python-django-filebrowser
+Section: python
+Priority: optional
+Maintainer: Daniel Watkins <daniel at daniel-watkins.co.uk>
+Build-Depends: debhelper (>= 7), python
+Build-Depends-Indep: python-support
+Standards-Version: 3.8.0
+Homepage: http://code.google.com/p/django-filebrowser
+
+Package: python-django-filebrowser
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-django (>= 1.0)
+Description: file management in the Django admin interface
+ Allows browsing of specific directories on the webserver and upload, deletion,
+ editing and renaming of files. It is a tool for editors using the admin
+ interface, to make it easier to work with images and documents. For most common
+ cases, it should replace an FTP client.

Added: packages/python-django-filebrowser/trunk/debian/copyright
===================================================================
--- packages/python-django-filebrowser/trunk/debian/copyright	                        (rev 0)
+++ packages/python-django-filebrowser/trunk/debian/copyright	2009-05-13 08:39:43 UTC (rev 8433)
@@ -0,0 +1,38 @@
+Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat
+Upstream-Name: FileBrowser
+Upstream-Maintainer: Patrick Kranzlmueller <patrick at vonautomatisch.at>
+Upstream-Source: http://django-filebrowser.googlecode.com/svn/trunk/
+
+Files: filebrowser/*
+Copyright: Copyright (c) 2008, Patrick Kranzlmueller (vonautomatisch werkstaetten), All rights reserved.
+License: BSD
+
+Files: debian/*
+Copyright: Copyright (C) 2009  Daniel Watkins <daniel at daniel-watkins.co.uk>
+License: BSD
+
+License: BSD
+ Redistribution and use in source and binary forms, with or without modification,
+ are permitted provided that the following conditions are met:
+ .
+     1. Redistributions of source code must retain the above copyright notice,
+        this list of conditions and the following disclaimer.
+ .
+     2. 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.
+ .
+     3. Neither the name of FileBrowser 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 OWNER 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.

Added: packages/python-django-filebrowser/trunk/debian/install
===================================================================
--- packages/python-django-filebrowser/trunk/debian/install	                        (rev 0)
+++ packages/python-django-filebrowser/trunk/debian/install	2009-05-13 08:39:43 UTC (rev 8433)
@@ -0,0 +1 @@
+filebrowser/media           usr/share/python-django-filebrowser/

Added: packages/python-django-filebrowser/trunk/debian/rules
===================================================================
--- packages/python-django-filebrowser/trunk/debian/rules	                        (rev 0)
+++ packages/python-django-filebrowser/trunk/debian/rules	2009-05-13 08:39:43 UTC (rev 8433)
@@ -0,0 +1,30 @@
+#!/usr/bin/make -f
+
+clean:
+	dh $@
+	rm -rf setup.py
+
+build:
+	cp debian/setup.py .
+	dh $@
+	find filebrowser -executable -type f -exec chmod -x {} +
+
+install: build
+	dh $@
+
+binary-indep: install
+	dh $@
+
+binary-arch:
+
+binary: binary-indep binary-arch
+	dh $@
+
+get-orig-source:
+	svn checkout http://django-filebrowser.googlecode.com/svn/trunk/ filebrowser
+	revno=`svn info filebrowser | grep Revision | cut -d" " -f2`; \
+	dirname=python-django-filebrowser-0+svn$$revno; \
+	mkdir $$dirname; \
+	svn export filebrowser $$dirname/filebrowser; \
+	tar zcf python-django-filebrowser_0+svn$$revno.orig.tar.gz $$dirname; \
+	rm -rf filebrowser $$dirname


Property changes on: packages/python-django-filebrowser/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-django-filebrowser/trunk/debian/setup.py
===================================================================
--- packages/python-django-filebrowser/trunk/debian/setup.py	                        (rev 0)
+++ packages/python-django-filebrowser/trunk/debian/setup.py	2009-05-13 08:39:43 UTC (rev 8433)
@@ -0,0 +1,15 @@
+from distutils.core import setup
+
+setup(
+    name = 'django-filebrowser',
+    version = 'svn271',
+    url = 'http://code.google.com/p/django-filebrowser/',
+    author = 'Patrick Kranzlmueller',
+    author_email = 'patrick at vonautomatisch.at',
+    license = 'BSD',
+    packages = ['filebrowser'],
+    package_data = {'filebrowser': ['templates/filebrowser/*.html',
+                                    'templates/filebrowser/include/*',
+                                    'locale/*/LC_MESSAGES/*']},
+    description = 'file management in the Django admin interface',
+)

Added: packages/python-django-filebrowser/trunk/debian/watch
===================================================================
--- packages/python-django-filebrowser/trunk/debian/watch	                        (rev 0)
+++ packages/python-django-filebrowser/trunk/debian/watch	2009-05-13 08:39:43 UTC (rev 8433)
@@ -0,0 +1 @@
+# This is an SVN snapshot, so a watch file is impractical.




More information about the Python-modules-commits mailing list