[Python-modules-commits] r19716 - in packages/python-django-social-auth/trunk (9 files)

janos-guest at users.alioth.debian.org janos-guest at users.alioth.debian.org
Fri Dec 23 17:09:46 UTC 2011


    Date: Friday, December 23, 2011 @ 17:09:44
  Author: janos-guest
Revision: 19716

[svn-inject] Applying Debian modifications (0.6.1-1) to trunk

Added:
  packages/python-django-social-auth/trunk/debian/
  packages/python-django-social-auth/trunk/debian/changelog
  packages/python-django-social-auth/trunk/debian/compat
  packages/python-django-social-auth/trunk/debian/control
  packages/python-django-social-auth/trunk/debian/copyright
  packages/python-django-social-auth/trunk/debian/rules
  packages/python-django-social-auth/trunk/debian/source/
  packages/python-django-social-auth/trunk/debian/source/format
  packages/python-django-social-auth/trunk/debian/watch


Property changes on: packages/python-django-social-auth/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-django-social-auth/trunk/debian/changelog
===================================================================
--- packages/python-django-social-auth/trunk/debian/changelog	                        (rev 0)
+++ packages/python-django-social-auth/trunk/debian/changelog	2011-12-23 17:09:44 UTC (rev 19716)
@@ -0,0 +1,5 @@
+python-django-social-auth (0.6.1-1) unstable; urgency=low
+
+  * Initial release. (Closes: #653082)
+
+ -- Janos Guljas <janos at resenje.org>  Fri, 23 Dec 2011 17:45:25 +0100

Added: packages/python-django-social-auth/trunk/debian/compat
===================================================================
--- packages/python-django-social-auth/trunk/debian/compat	                        (rev 0)
+++ packages/python-django-social-auth/trunk/debian/compat	2011-12-23 17:09:44 UTC (rev 19716)
@@ -0,0 +1 @@
+7

Added: packages/python-django-social-auth/trunk/debian/control
===================================================================
--- packages/python-django-social-auth/trunk/debian/control	                        (rev 0)
+++ packages/python-django-social-auth/trunk/debian/control	2011-12-23 17:09:44 UTC (rev 19716)
@@ -0,0 +1,48 @@
+Source: python-django-social-auth
+Section: python
+Priority: optional
+Maintainer: Janos Guljas <janos at resenje.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+DM-Upload-Allowed: yes
+Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.5), python-setuptools
+Standards-Version: 3.9.2
+Homepage: http://pypi.python.org/pypi/django-social-auth
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-django-social-auth/trunk
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-django-social-auth/trunk/
+
+Package: python-django-social-auth
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Provides: ${python:Provides}
+Description: Django social authentication made simple
+ Django Social Auth is an easy to setup social authentication/authorization
+ mechanism for Django projects.
+ .
+ This application provides user registration and login using social sites
+ credentials, some features are:
+ .
+  * Registration and Login using social sites using the following providers:
+     - Google OpenID
+     - Google OAuth
+     - Google OAuth2
+     - Yahoo OpenID
+     - OpenId like myOpenID
+     - Twitter OAuth
+     - Facebook OAuth
+ .
+  * Some contributions added support for:
+     - LiveJournal OpenID
+     - Orkut OAuth
+     - Linkedin OAuth
+     - Foursquare OAuth2
+     - GitHub OAuth
+     - Dropbox OAuth
+     - Flickr OAuth
+ .
+  * Basic user data population and signaling, to allows custom fields values
+    from providers response.
+ .
+  * Multiple social accounts association to single users.
+ .
+  * Custom User model override if needed (auth.User by default).
+

Added: packages/python-django-social-auth/trunk/debian/copyright
===================================================================
--- packages/python-django-social-auth/trunk/debian/copyright	                        (rev 0)
+++ packages/python-django-social-auth/trunk/debian/copyright	2011-12-23 17:09:44 UTC (rev 19716)
@@ -0,0 +1,37 @@
+Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5/index.html?revision=240
+Upstream-Name: django-social-auth
+Upstream-Contact: Matías Aguirre <matiasaguirre at gmail.com>
+Source: https://github.com/omab/django-social-auth
+
+Files: *
+Copyright: 2010, Matías Aguirre <matiasaguirre at gmail.com>
+License: BSD
+
+Files: debian/*
+Copyright: 2011 Janos Guljas <janos at resenje.org>
+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 the PyFilesystem nor the names of his contributors
+    may be used to endorse or promote products derived from this software
+    without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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-social-auth/trunk/debian/rules
===================================================================
--- packages/python-django-social-auth/trunk/debian/rules	                        (rev 0)
+++ packages/python-django-social-auth/trunk/debian/rules	2011-12-23 17:09:44 UTC (rev 19716)
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --with python2


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

Added: packages/python-django-social-auth/trunk/debian/source/format
===================================================================
--- packages/python-django-social-auth/trunk/debian/source/format	                        (rev 0)
+++ packages/python-django-social-auth/trunk/debian/source/format	2011-12-23 17:09:44 UTC (rev 19716)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-django-social-auth/trunk/debian/watch
===================================================================
--- packages/python-django-social-auth/trunk/debian/watch	                        (rev 0)
+++ packages/python-django-social-auth/trunk/debian/watch	2011-12-23 17:09:44 UTC (rev 19716)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/d/django-social-auth/ django-social-auth-(.*).tar.gz




More information about the Python-modules-commits mailing list