[Python-modules-commits] r18328 - in packages/python-django-localeurl/trunk/debian (9 files)

janos-guest at users.alioth.debian.org janos-guest at users.alioth.debian.org
Wed Aug 24 22:56:30 UTC 2011


    Date: Wednesday, August 24, 2011 @ 22:56:29
  Author: janos-guest
Revision: 18328

Initial packaging.

Added:
  packages/python-django-localeurl/trunk/debian/changelog
  packages/python-django-localeurl/trunk/debian/compat
  packages/python-django-localeurl/trunk/debian/control
  packages/python-django-localeurl/trunk/debian/copyright
  packages/python-django-localeurl/trunk/debian/docs
  packages/python-django-localeurl/trunk/debian/rules
  packages/python-django-localeurl/trunk/debian/source/local-options
  packages/python-django-localeurl/trunk/debian/watch
Modified:
  packages/python-django-localeurl/trunk/debian/source/format

Added: packages/python-django-localeurl/trunk/debian/changelog
===================================================================
--- packages/python-django-localeurl/trunk/debian/changelog	                        (rev 0)
+++ packages/python-django-localeurl/trunk/debian/changelog	2011-08-24 22:56:29 UTC (rev 18328)
@@ -0,0 +1,5 @@
+python-django-localeurl (1.5-1) unstable; urgency=low
+
+  * Initial release. (Closes: #572638)
+
+ -- Janos Guljas <janos at resenje.org>  Thu, 25 Aug 2011 00:23:08 +0200

Added: packages/python-django-localeurl/trunk/debian/compat
===================================================================
--- packages/python-django-localeurl/trunk/debian/compat	                        (rev 0)
+++ packages/python-django-localeurl/trunk/debian/compat	2011-08-24 22:56:29 UTC (rev 18328)
@@ -0,0 +1 @@
+7

Added: packages/python-django-localeurl/trunk/debian/control
===================================================================
--- packages/python-django-localeurl/trunk/debian/control	                        (rev 0)
+++ packages/python-django-localeurl/trunk/debian/control	2011-08-24 22:56:29 UTC (rev 18328)
@@ -0,0 +1,33 @@
+Source: python-django-localeurl
+Section: python
+Priority: optional
+Maintainer: Janos Guljas <janos at resenje.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.5), python-setuptools, python-django
+Standards-Version: 3.9.2
+Homepage: http://packages.python.org/django-localeurl/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-django-localeurl/trunk
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-django-localeurl/trunk/
+
+Package: python-django-localeurl
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-django
+Provides: ${python:Provides}
+Description: Django application allows the language be set in the URL
+ The localeurl Django application allows you to specify the language of a page
+ in the URL. Using localeurl, without modifying your URLconfs, you can have
+ URLs like this: http://www.example.com/nl/company/profile. Any URLs without a
+ language prefix will be redirected to add the prefix for the default language
+ (or, optionally, the language preferred in the user’s browser settings).
+ .
+ Some reasons for using localeurl:
+ .
+   *  Search engines will index all languages.
+   *  Every page should have a unique URL. If you feel that different languages
+      means different pages, then each language should get its own unique URL.
+   *  If you don’t set the language via the URL, setting the language for the
+      website should be done using a POST request (because it influences
+      subsequent page views, see Django ticket #3651). You might prefer a
+      simple link for changing the language, and localeurl allows this.
+
+

Added: packages/python-django-localeurl/trunk/debian/copyright
===================================================================
--- packages/python-django-localeurl/trunk/debian/copyright	                        (rev 0)
+++ packages/python-django-localeurl/trunk/debian/copyright	2011-08-24 22:56:29 UTC (rev 18328)
@@ -0,0 +1,52 @@
+Format: http://dep.debian.net/deps/dep5/
+Upstream-Name: django-localeurl
+Upstream-Contact: Joost Cassee <joost at cassee.net>
+Source: https://bitbucket.org/carljm/django-localeurl
+
+Files: *
+Copyright: 2008-2010 Joost Cassee and contributors
+License: MIT
+ Permission is hereby granted, free of charge, to any person
+ obtaining a copy of this software and associated documentation
+ files (the "Software"), to deal in the Software without
+ restriction, including without limitation the rights to use,
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the
+ Software is furnished to do so, subject to the following
+ conditions:
+  
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+  
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ OTHER DEALINGS IN THE SOFTWARE.
+
+Files: debian/*
+Copyright: 2011 Janos Guljas <janos at resenje.org>
+License: GPL-2+
+ This program is free software; you can redistribute it
+ and/or modify it under the terms of the GNU General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later
+ version.
+ .
+ This program is distributed in the hope that it will be
+ useful, but WITHOUT ANY WARRANTY; without even the implied
+ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ PURPOSE.  See the GNU General Public License for more
+ details.
+ .
+ You should have received a copy of the GNU General Public
+ License along with this package; if not, write to the Free
+ Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ Boston, MA  02110-1301 USA
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.

Added: packages/python-django-localeurl/trunk/debian/docs
===================================================================
--- packages/python-django-localeurl/trunk/debian/docs	                        (rev 0)
+++ packages/python-django-localeurl/trunk/debian/docs	2011-08-24 22:56:29 UTC (rev 18328)
@@ -0,0 +1,2 @@
+docs
+README.txt

Added: packages/python-django-localeurl/trunk/debian/rules
===================================================================
--- packages/python-django-localeurl/trunk/debian/rules	                        (rev 0)
+++ packages/python-django-localeurl/trunk/debian/rules	2011-08-24 22:56:29 UTC (rev 18328)
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --with python2
+
+override_dh_auto_test:
+	for pyvers in $(shell pyversions -vr); do \
+		python$$pyvers setup.py test; \
+	done


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

Modified: packages/python-django-localeurl/trunk/debian/source/format
===================================================================
--- packages/python-django-localeurl/trunk/debian/source/format	2011-08-24 22:21:07 UTC (rev 18327)
+++ packages/python-django-localeurl/trunk/debian/source/format	2011-08-24 22:56:29 UTC (rev 18328)
@@ -1 +1 @@
-1.0
+3.0 (quilt)

Added: packages/python-django-localeurl/trunk/debian/source/local-options
===================================================================
--- packages/python-django-localeurl/trunk/debian/source/local-options	                        (rev 0)
+++ packages/python-django-localeurl/trunk/debian/source/local-options	2011-08-24 22:56:29 UTC (rev 18328)
@@ -0,0 +1,2 @@
+unapply-patches
+abort-on-upstream-changes

Added: packages/python-django-localeurl/trunk/debian/watch
===================================================================
--- packages/python-django-localeurl/trunk/debian/watch	                        (rev 0)
+++ packages/python-django-localeurl/trunk/debian/watch	2011-08-24 22:56:29 UTC (rev 18328)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/d/django-localeurl/ django-localeurl-(.*).tar.gz




More information about the Python-modules-commits mailing list