Skip to content

Commit d844161

Browse files
author
Chris Lea
committed
added debian packaging
1 parent 905680d commit d844161

File tree

7 files changed

+60
-0
lines changed

7 files changed

+60
-0
lines changed

debian/changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
python-oauth2 (1.0.0-1simplegeo01) karmic; urgency=low
2+
3+
* Initial build for SimpleGeo
4+
5+
-- SimpleGeo Nerds <[email protected]> Wed, 21 Oct 2009 23:24:00 -0700

debian/compat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
5

debian/control

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Source: python-oauth2
2+
Section: python
3+
Priority: optional
4+
Maintainer: Chris Lea <[email protected]>
5+
Standards-Version: 3.8.0
6+
XS-Python-Version: all
7+
Build-Depends: debhelper (>= 4.1.13), cdbs (>= 0.4.49), python, python-central, python-setuptools, python-support
8+
Homepage: http://github.com/simplegeo/python-oauth2
9+
10+
Package: python-oauth2
11+
Architecture: all
12+
XB-Python-Version: ${python:Versions}
13+
Depends: ${python:Depends}, python-httplib2
14+
Provides: ${python:Provides}
15+
Suggests:
16+
Description: A Python OAuth class with several useful
17+
features.
18+
.
19+
* 100% unit test coverage.
20+
* The Request class now extends from dict.
21+
* The Client class works and extends from httplib2.
22+
It's a thin wrapper that handles automatically signing
23+
any normal HTTP request you might wish to make.

debian/copyright

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License
2+
3+
Copyright (c) 2007 Leah Culver
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

debian/pycompat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2

debian/pyversions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.5-

debian/rules

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/make -f
2+
# -*- mode: makefile; coding: utf-8 -*-
3+
4+
DEB_PYTHON_SYSTEM = pysupport
5+
6+
include /usr/share/cdbs/1/rules/debhelper.mk
7+
include /usr/share/cdbs/1/class/python-distutils.mk
8+

0 commit comments

Comments
 (0)