summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Widman <jeff@jeffwidman.com>2017-07-24 13:34:12 -0600
committerHanno Schlichting <hanno@hannosch.eu>2017-07-24 21:34:12 +0200
commita28423aac7f33111388372dec50653a3091b9045 (patch)
treeaa8335f087c419fe743f5d8a639ac73cafb51b70
parentaf9b4cab39982d961647afca8119816ffe7bf5e6 (diff)
downloadkazoo-a28423aac7f33111388372dec50653a3091b9045.tar.gz
chore: remove debian packaging (#468)
Removing the debian packaging files as they're maintained in Debian itself these days. Removing them won't mean having to remove it from Debian. See further discussion in https://github.com/python-zk/kazoo/issues/465 closes #465
-rw-r--r--debian/changelog5
-rw-r--r--debian/clean1
-rw-r--r--debian/compat1
-rw-r--r--debian/control50
-rw-r--r--debian/copyright13
-rw-r--r--debian/docs1
-rw-r--r--debian/patches/no-tag-build.patch15
-rw-r--r--debian/patches/series1
-rw-r--r--debian/python-kazoo-doc.doc-base10
-rw-r--r--debian/python-kazoo-doc.docs1
-rw-r--r--debian/python-kazoo.install1
-rwxr-xr-xdebian/rules18
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch2
14 files changed, 0 insertions, 120 deletions
diff --git a/debian/changelog b/debian/changelog
deleted file mode 100644
index aa1a331..0000000
--- a/debian/changelog
+++ /dev/null
@@ -1,5 +0,0 @@
-kazoo (0+git20130102) unstable; urgency=low
-
- * Initial package.
-
- -- Neil Williams <neil@spladug.net> Fri, 02 Jan 2013 23:20:03 -0800
diff --git a/debian/clean b/debian/clean
deleted file mode 100644
index e099d65..0000000
--- a/debian/clean
+++ /dev/null
@@ -1 +0,0 @@
-kazoo.egg-info/*
diff --git a/debian/compat b/debian/compat
deleted file mode 100644
index 45a4fb7..0000000
--- a/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-8
diff --git a/debian/control b/debian/control
deleted file mode 100644
index 9ef97cd..0000000
--- a/debian/control
+++ /dev/null
@@ -1,50 +0,0 @@
-Source: kazoo
-Section: python
-Priority: optional
-Maintainer: Neil Williams <neil@spladug.net>
-Build-Depends: python-setuptools (>= 0.6b3),
- python-all (>= 2.6.6-3),
- debhelper (>= 8.0.0),
- python-sphinx (>= 1.0.7+dfsg) | python3-sphinx,
-Standards-Version: 3.9.3
-Homepage: https://kazoo.readthedocs.io
-X-Python-Version: >= 2.6
-
-Package: python-kazoo
-Architecture: all
-Depends: ${python:Depends}, ${misc:Depends}
-Description: higher level API to Apache Zookeeper for Python clients
- Kazoo features:
- .
- * Support for gevent 0.13 and gevent 1.0
- * Unified asynchronous API for use with greenlets or threads
- * Lock, Party, Election, and Partitioner recipe implementations (more
- implementations are in development)
- * Data and Children Watchers
- * Integrated testing helpers for Zookeeper clusters
- * Simplified Zookeeper connection state tracking
- * Pure-Python based implementation of the wire protocol, avoiding all the
- memory leaks, lacking features, and debugging madness of the C library
- .
- Kazoo is heavily inspired by Netflix Curator simplifications and helpers.
-
-Package: python-kazoo-doc
-Architecture: all
-Section: doc
-Depends: ${misc:Depends}, ${sphinxdoc:Depends}
-Description: API to Apache Zookeeper for Python clients. - API documentation
- Kazoo features:
- .
- * Support for gevent 0.13 and gevent 1.0
- * Unified asynchronous API for use with greenlets or threads
- * Lock, Party, Election, and Partitioner recipe implementations (more
- implementations are in development)
- * Data and Children Watchers
- * Integrated testing helpers for Zookeeper clusters
- * Simplified Zookeeper connection state tracking
- * Pure-Python based implementation of the wire protocol, avoiding all the
- memory leaks, lacking features, and debugging madness of the C library
- .
- Kazoo is heavily inspired by Netflix Curator simplifications and helpers.
- .
- This package contains the API documentation.
diff --git a/debian/copyright b/debian/copyright
deleted file mode 100644
index 07a592c..0000000
--- a/debian/copyright
+++ /dev/null
@@ -1,13 +0,0 @@
-Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
-Upstream-Name: kazoo
-Source: https://github.com/python-zk/kazoo
-
-Files: *
-Copyright: 2012 Kazoo Team
-License: Apache-2.0
- See /usr/share/common-licenses/Apache-2.0
-
-Files: debian/*
-Copyright: 2012 Neil Williams <neil@spladug.net>
-License: Apache-2.0
- See /usr/share/common-licenses/Apache-2.0
diff --git a/debian/docs b/debian/docs
deleted file mode 100644
index a1320b1..0000000
--- a/debian/docs
+++ /dev/null
@@ -1 +0,0 @@
-README.rst
diff --git a/debian/patches/no-tag-build.patch b/debian/patches/no-tag-build.patch
deleted file mode 100644
index a66a194..0000000
--- a/debian/patches/no-tag-build.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Description: Unset build_tag so the installed module isn't "dev" suffixed.
-Author: Neil Williams <neil@spladug.net>
-Forwarded: not-needed
-Last-Update: 2012-12-24
-Index: kazoo/setup.cfg
-===================================================================
---- kazoo.orig/setup.cfg 2012-12-21 19:25:50.649997478 -0800
-+++ kazoo/setup.cfg 2012-12-23 22:43:45.557703554 -0800
-@@ -1,5 +1,5 @@
- [egg_info]
--tag_build = dev
-+tag_build =
-
- [nosetests]
- where=kazoo
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index d71a0aa..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-no-tag-build.patch
diff --git a/debian/python-kazoo-doc.doc-base b/debian/python-kazoo-doc.doc-base
deleted file mode 100644
index 5a076fb..0000000
--- a/debian/python-kazoo-doc.doc-base
+++ /dev/null
@@ -1,10 +0,0 @@
-Document: python-kazoo-doc
-Title: Python Kazoo Documentation
-Author: Kazoo Team
-Section: Programming/Python
-
-Format: HTML
-Index: /usr/share/doc/python-kazoo-doc/html/index.html
-Files: /usr/share/doc/python-kazoo-doc/html/*.html
- /usr/share/doc/python-kazoo-doc/html/api/*.html
- /usr/share/doc/python-kazoo-doc/html/api/*/*.html
diff --git a/debian/python-kazoo-doc.docs b/debian/python-kazoo-doc.docs
deleted file mode 100644
index 6d28621..0000000
--- a/debian/python-kazoo-doc.docs
+++ /dev/null
@@ -1 +0,0 @@
-build/html
diff --git a/debian/python-kazoo.install b/debian/python-kazoo.install
deleted file mode 100644
index b2cc136..0000000
--- a/debian/python-kazoo.install
+++ /dev/null
@@ -1 +0,0 @@
-usr/lib/python2*
diff --git a/debian/rules b/debian/rules
deleted file mode 100755
index 7d774fa..0000000
--- a/debian/rules
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/make -f
-
-%:
- dh $@ --with python2,sphinxdoc --buildsystem=python_distutils
-
-.PHONY: override_dh_installchangelogs
-override_dh_installchangelogs:
- dh_installchangelogs CHANGES.rst
-
-.PHONY: override_dh_auto_build
-override_dh_auto_build:
- sphinx-build -b html docs build/html
- dh_auto_build
-
-.PHONY: override_dh_clean
-override_dh_clean:
- rm -rf build
- dh_clean
diff --git a/debian/source/format b/debian/source/format
deleted file mode 100644
index 163aaf8..0000000
--- a/debian/source/format
+++ /dev/null
@@ -1 +0,0 @@
-3.0 (quilt)
diff --git a/debian/watch b/debian/watch
deleted file mode 100644
index 42d2458..0000000
--- a/debian/watch
+++ /dev/null
@@ -1,2 +0,0 @@
-version=3
-https://github.com/python-zk/kazoo/tags .*/(\d[\d\.]+)\.tar\.gz