Skip to content

Commit 071c766

Browse files
committed
add debian sources
1 parent 50b6bc7 commit 071c766

File tree

7 files changed

+776
-0
lines changed

7 files changed

+776
-0
lines changed

debian/changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
flask-restless (1.0.0b1) unstable; urgency=low
2+
3+
* Initial release
4+
5+
-- Thomas Sarboni <[email protected]> Thu, 03 Aug 2017 09:32:00 +0100

debian/compat

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

debian/control

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
Source: flask-restless
2+
Section: python
3+
Priority: optional
4+
Maintainer: Jeffrey Finkelstein <[email protected]>
5+
Uploaders: Jeffrey Finkelstein <[email protected]>
6+
Build-Depends:
7+
debhelper (>= 9),
8+
dh-python,
9+
python-all (>= 2.6),
10+
python-dateutil (>= 2.2),
11+
python-flask (>= 0.10),
12+
python-mimerender (>= 0.5.2),
13+
python-setuptools,
14+
python-sqlalchemy (>= 0.8),
15+
python3-all (>= 3.3),
16+
python3-dateutil (>= 2.2),
17+
python3-flask (>= 0.10),
18+
python3-mimerender (>= 0.5.2),
19+
python3-setuptools,
20+
python3-sqlalchemy (>= 0.8)
21+
X-Python-Version: >= 2.6
22+
X-Python3-Version: >= 3.3
23+
Standards-Version: 3.9.8
24+
Homepage: https://pypi.python.org/pypi/Flask-Restless
25+
Vcs-Git: https://github.com/jfinkels/flask-restless.git
26+
Vcs-Browser: https://github.com/jfinkels/flask-restless
27+
28+
Package: python-flask-restless
29+
Architecture: all
30+
Depends:
31+
python-dateutil (>= 2.2),
32+
python-flask (>= 0.10),
33+
python-mimerender (>= 0.5.2),
34+
python-sqlalchemy (>= 0.8),
35+
${misc:Depends},
36+
${python:Depends}
37+
Description: A Flask extension for creating simple ReSTful JSON APIs from SQLAlchemy models.
38+
This is Flask-Restless, a Flask extension that creates URL endpoints that satisfy the requirements
39+
of the JSON API specification.
40+
It is compatible with models that have been defined using either SQLAlchemy or Flask-SQLAlchemy.
41+
42+
Package: python3-flask-restless
43+
Architecture: all
44+
Depends:
45+
python3-dateutil (>= 2.2),
46+
python3-flask (>= 0.10),
47+
python3-mimerender (>= 0.5.2),
48+
python3-sqlalchemy (>= 0.8),
49+
${misc:Depends},
50+
${python3:Depends}
51+
Description: A Flask extension for creating simple ReSTful JSON APIs from SQLAlchemy models.
52+
This is Flask-Restless, a Flask extension that creates URL endpoints that satisfy the requirements
53+
of the JSON API specification.
54+
It is compatible with models that have been defined using either SQLAlchemy or Flask-SQLAlchemy.

debian/copyright

Lines changed: 700 additions & 0 deletions
Large diffs are not rendered by default.

debian/docs

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

debian/rules

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/make -f
2+
# -*- mode: makefile-mode; -*-
3+
4+
#export DH_VERBOSE = 1
5+
6+
export PYBUILD_NAME=flask-restless
7+
8+
%:
9+
dh $@ --with python2,python3 --buildsystem=pybuild
10+
11+
override_dh_auto_test:
12+

debian/watch

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version=3
2+
http://pypi.debian.net/Flask-Restless/Flask-SQLAlchemy-(.*)\.tar\.gz
3+

0 commit comments

Comments
 (0)