Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

debianize influxdb-python #15

Merged
merged 3 commits into from
Apr 18, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,14 @@ influxdb.egg-info/
dist/
build/
mock*/
nose*/
nose*/
.pybuild/
debian/files
debian/python-influxdb.debhelper.log
debian/python-influxdb.postinst.debhelper
debian/python-influxdb.prerm.debhelper
debian/python-influxdb.substvars
debian/python-influxdb/
debian/python3-influxdb.debhelper.log
debian/python3-influxdb.substvars
debian/python3-influxdb/
5 changes: 5 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
influxdb-python (0.1.4-1) unstable; urgency=low

* debianize influxdb-python.

-- unknown <unknown@unknown> Wed, 05 Mar 2014 14:57:11 +0100
1 change: 1 addition & 0 deletions debian/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8
36 changes: 36 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
Source: influxdb-python
Maintainer: unknown <unknown@unknown>
Homepage: https://pypi.python.org/pypi/influxdb
Section: python
X-Python-Version: >= 2.7
X-Python3-Version: >= 3.3
Priority: optional
Build-Depends: debhelper (>= 8),
dh-python,
python-all,
python-setuptools,
python-requests,
python-six,
python-mock,
python-nose,
python3-all,
python3-setuptools,
python3-requests,
python3-six,
python3-mock,
python3-nose
Standards-Version: 3.9.5

Package: python-influxdb
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}, python-six, python-requests (>= 1.0.3)
Description: Python client for InfluxDB
.
This is the Python 2 compatible package.

Package: python3-influxdb
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}, python3-six, python3-requests
Description: Python client for InfluxDB
.
This is the Python 3 compatible package.
Empty file added debian/patches/series
Empty file.
1 change: 1 addition & 0 deletions debian/python-influxdb.pyremove
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
influxdb*.egg-info/SOURCES.txt
7 changes: 7 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/make -f

export PYBUILD_NAME=influxdb
#export PYBUILD_TEST_TOX=1

%:
dh $@ --with python2,python3 --buildsystem=pybuild
1 change: 1 addition & 0 deletions debian/source/format
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0 (native)