Skip to content

Commit f4d9c5a

Browse files
committed
Merge pull request influxdata#15 from bbinet/debian-packaging
debianize influxdb-python
2 parents f9f0da7 + accba55 commit f4d9c5a

File tree

8 files changed

+62
-1
lines changed

8 files changed

+62
-1
lines changed

.gitignore

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,14 @@ influxdb.egg-info/
55
dist/
66
build/
77
mock*/
8-
nose*/
8+
nose*/
9+
.pybuild/
10+
debian/files
11+
debian/python-influxdb.debhelper.log
12+
debian/python-influxdb.postinst.debhelper
13+
debian/python-influxdb.prerm.debhelper
14+
debian/python-influxdb.substvars
15+
debian/python-influxdb/
16+
debian/python3-influxdb.debhelper.log
17+
debian/python3-influxdb.substvars
18+
debian/python3-influxdb/

debian/changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
influxdb-python (0.1.4-1) unstable; urgency=low
2+
3+
* debianize influxdb-python.
4+
5+
-- unknown <unknown@unknown> Wed, 05 Mar 2014 14:57:11 +0100

debian/compat

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

debian/control

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
Source: influxdb-python
2+
Maintainer: unknown <unknown@unknown>
3+
Homepage: https://pypi.python.org/pypi/influxdb
4+
Section: python
5+
X-Python-Version: >= 2.7
6+
X-Python3-Version: >= 3.3
7+
Priority: optional
8+
Build-Depends: debhelper (>= 8),
9+
dh-python,
10+
python-all,
11+
python-setuptools,
12+
python-requests,
13+
python-six,
14+
python-mock,
15+
python-nose,
16+
python3-all,
17+
python3-setuptools,
18+
python3-requests,
19+
python3-six,
20+
python3-mock,
21+
python3-nose
22+
Standards-Version: 3.9.5
23+
24+
Package: python-influxdb
25+
Architecture: all
26+
Depends: ${misc:Depends}, ${python:Depends}, python-six, python-requests (>= 1.0.3)
27+
Description: Python client for InfluxDB
28+
.
29+
This is the Python 2 compatible package.
30+
31+
Package: python3-influxdb
32+
Architecture: all
33+
Depends: ${misc:Depends}, ${python3:Depends}, python3-six, python3-requests
34+
Description: Python client for InfluxDB
35+
.
36+
This is the Python 3 compatible package.

debian/patches/series

Whitespace-only changes.

debian/python-influxdb.pyremove

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
influxdb*.egg-info/SOURCES.txt

debian/rules

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/make -f
2+
3+
export PYBUILD_NAME=influxdb
4+
#export PYBUILD_TEST_TOX=1
5+
6+
%:
7+
dh $@ --with python2,python3 --buildsystem=pybuild

debian/source/format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0 (native)

0 commit comments

Comments
 (0)