summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorFelipe Sateler <fsateler@gmail.com>2014-10-30 22:57:06 -0300
committerFelipe Sateler <fsateler@debian.org>2014-11-05 00:41:31 -0300
commit2240fe3b08bdcf1aecf87ee23cb55cfabf26cd52 (patch)
tree28c7fec0b75a4b8d2989f8d7b35e682faa0ccb09 /debian
parent692ccd53a425c25c043b55717f7785633bbb9b5d (diff)
debian
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control25
-rw-r--r--debian/copyright32
-rw-r--r--debian/patches/edit11
-rw-r--r--debian/patches/series1
-rwxr-xr-xdebian/rules13
-rw-r--r--debian/source/format1
8 files changed, 89 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 00000000..b88b97b4
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+fig (1.0.0-1) unstable; urgency=low
+
+ * source package automatically created by stdeb 0.8.2
+
+ -- unknown <unknown@unknown> Thu, 30 Oct 2014 19:53:20 -0300
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 00000000..ec635144
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 00000000..a43f4d36
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,25 @@
+Source: fig
+Maintainer: Felipe Sateler <fsateler@debian.org>
+Section: admin
+Priority: optional
+Build-Depends:
+ debhelper (>= 9),
+ python (>= 2.6.6-3),
+ dh-python,
+ python-setuptools (>= 0.6b3),
+ python-docker (>= 0.5.3),
+ python-docopt (>= 0.6.1),
+ python-yaml (>= 3.10),
+ python-requests (>= 2.2.1),
+ python-six (>= 1.7.3),
+ python-texttable (>= 0.8.1),
+ python-websocket (>= 0.11),
+Standards-Version: 3.9.1
+X-Python-Version: >= 2.5
+
+Package: fig
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Punctual, lightweight development environments using Docker
+ Fig is a Docker container orchestrator. Define your services and their
+ relationships with a simple YAML file, and let fig do the rest.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 00000000..c54566e8
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,32 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: fig
+Source: http://www.fig.sh/
+
+Files: *
+Copyright: 2014 Docker Inc
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2014 Felipe Sateler <fsateler@debian.org>
+License: Apache-2.0
+
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ On Debian systems, the complete text of the Apache version 2.0 license
+ can be found in "/usr/share/common-licenses/Apache-2.0".
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.
+# Please avoid to pick license terms that are more restrictive than the
+# packaged work, as it may make Debian's contributions unacceptable upstream.
diff --git a/debian/patches/edit b/debian/patches/edit
new file mode 100644
index 00000000..31f5144a
--- /dev/null
+++ b/debian/patches/edit
@@ -0,0 +1,11 @@
+--- a/setup.py
++++ b/setup.py
+@@ -29,7 +29,7 @@ install_requires = [
+ 'PyYAML >= 3.10, < 4',
+ 'requests >= 2.2.1, < 3',
+ 'texttable >= 0.8.1, < 0.9',
+- 'websocket-client >= 0.11.0, < 0.12',
++ 'websocket-client >= 0.11.0, < 1',
+ 'docker-py >= 0.5, < 0.6',
+ 'six >= 1.3.0, < 2',
+ ]
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 00000000..366226fb
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+edit
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 00000000..88991831
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=fig
+%:
+ dh $@ --with python2 --buildsystem=pybuild
+
+override_dh_auto_test:
+
+override_dh_auto_build:
+
+override_dh_auto_install:
+ python setup.py install --root=debian/fig --install-layout=deb --install-lib=/usr/share/fig --install-scripts=/usr/share/fig
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 00000000..163aaf8d
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)