diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index eb73ff54..00000000 --- a/debian/changelog +++ /dev/null @@ -1,41 +0,0 @@ -python-cassandra-driver (2.1.2) unstable; urgency=low - - * Release 2.1.2 - - -- Adam Holmberg Thu, 16 Oct 2014 18:30:22 +0000 - -python-cassandra-driver (2.1.1) unstable; urgency=low - - * Release 2.1.1 - - -- Adam Holmberg Tue, 09 Sep 2014 17:14:41 +0000 - -python-cassandra-driver (2.1.0) unstable; urgency=low - - * Release 2.1.0 - - -- Adam Holmberg Thu, 07 Aug 2014 19:01:17 +0000 - -python-cassandra-driver (2.0.2-2) unstable; urgency=low - - * Fixed debian/patches - - -- Carsten Aulbert Thu, 19 Jun 2014 14:07:27 +0200 - -python-cassandra-driver (2.0.2-1) unstable; urgency=low - - * Release 2.0.2 - - -- Tyler Hobbs Tue, 10 Jun 2014 16:22:23 -0500 - -python-cassandra-driver (2.0.2~prerelease-1) unstable; urgency=low - - * Update dependencies for 2.0.x - - -- Tyler Hobbs Tue, 03 Jun 2014 15:16:53 -0500 - -python-cassandra-driver (1.1.0~prerelease-1) unstable; urgency=low - - * Initial packaging - - -- paul cannon Thu, 03 Apr 2014 10:30:11 -0600 diff --git a/debian/compat b/debian/compat deleted file mode 100644 index ec635144..00000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -9 diff --git a/debian/control b/debian/control deleted file mode 100644 index 6a698a8f..00000000 --- a/debian/control +++ /dev/null @@ -1,46 +0,0 @@ -Source: python-cassandra-driver -Maintainer: paul cannon -Section: python -Priority: optional -Build-Depends: python-all-dev (>= 2.6.6-3), python-all-dbg, debhelper (>= 9), - python-sphinx (>= 1.0.7+dfsg) | python3-sphinx, libev-dev, - python-concurrent.futures | python-futures, python-setuptools, - python-nose, python-mock, python-yaml, python-gevent, - python-blist, python-tz, python-six (>= 1.6) -X-Python-Version: >= 2.7 -Standards-Version: 3.9.4 - -Package: python-cassandra-driver -Architecture: any -Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}, - python-concurrent.futures | python-futures, python-six (>= 1.6) -Provides: ${python:Provides} -Recommends: python-scales, python-blist -Suggests: python-cassandra-driver-doc -Description: Python driver for Apache Cassandra - This driver works exclusively with the Cassandra Query Language v3 (CQL3) - and Cassandra's native protocol. As such, only Cassandra 1.2+ is supported. - -Package: python-cassandra-driver-dbg -Architecture: any -Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}, - python-cassandra-driver (= ${binary:Version}) -Provides: ${python:Provides} -Section: debug -Priority: extra -Description: Python driver for Apache Cassandra (debug build and symbols) - This driver works exclusively with the Cassandra Query Language v3 (CQL3) - and Cassandra's native protocol. As such, only Cassandra 1.2+ is supported. - . - This package contains debug builds of the extensions and debug symbols for - the extensions in the main package. - -Package: python-cassandra-driver-doc -Architecture: all -Section: doc -Priority: extra -Depends: ${misc:Depends}, ${sphinxdoc:Depends} -Suggests: python-cassandra-driver -Description: Python driver for Apache Cassandra (documentation) - This contains HTML documentation for the use of the Python Cassandra - driver. diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index f138547a..00000000 --- a/debian/copyright +++ /dev/null @@ -1,28 +0,0 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: python-driver -Upstream-Contact: Tyler Hobbs -Source: https://github.com/datastax/python-driver - -Files: * -Copyright: Copyright 2013, DataStax -License: Apache-2.0 - -Files: debian/* -Copyright: Copyright (c) 2014 by Space Monkey, Inc. -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 full text of the Apache License version 2.0 - can be found in the file `/usr/share/common-licenses/Apache-2.0'. diff --git a/debian/patches/0001-don-t-use-ez_setup.patch b/debian/patches/0001-don-t-use-ez_setup.patch deleted file mode 100644 index 32996d60..00000000 --- a/debian/patches/0001-don-t-use-ez_setup.patch +++ /dev/null @@ -1,38 +0,0 @@ -From: paul cannon -Date: Thu, 3 Apr 2014 11:27:09 -0600 -Subject: don't use ez_setup - -Debian packages aren't supposed to download stuff while building, and -since the version of setuptools in stable is less than the one ez_setup -wants, and since some system python packages don't ship their .egg-info -directories, it might try. - -It's ok though, we can rely on the Depends and Build-Depends for making -sure python-setuptools and the various other deps are around at the right -times. ---- -diff --git a/setup.py b/setup.py -index 11cfd4c..4f05d1f 100644 ---- a/setup.py -+++ b/setup.py -@@ -20,9 +20,6 @@ if __name__ == '__main__' and sys.argv[1] == "gevent_nosetests": - from gevent.monkey import patch_all - patch_all() - --import ez_setup --ez_setup.use_setuptools() -- - from setuptools import setup - from distutils.command.build_ext import build_ext - from distutils.core import Extension -@@ -194,8 +191,8 @@ def run_setup(extensions): - author_email='tyler@datastax.com', - packages=['cassandra', 'cassandra.io'], - include_package_data=True, -- install_requires=dependencies, -- tests_require=['nose', 'mock', 'PyYAML', 'pytz'], -+ install_requires=(), -+ tests_require=(), - classifiers=[ - 'Development Status :: 5 - Production/Stable', - 'Intended Audience :: Developers', diff --git a/debian/patches/series b/debian/patches/series deleted file mode 100644 index 25373f18..00000000 --- a/debian/patches/series +++ /dev/null @@ -1 +0,0 @@ -0001-don-t-use-ez_setup.patch diff --git a/debian/python-cassandra-driver-dbg.install b/debian/python-cassandra-driver-dbg.install deleted file mode 100644 index a75d4c78..00000000 --- a/debian/python-cassandra-driver-dbg.install +++ /dev/null @@ -1,2 +0,0 @@ -usr/lib/python2*/*-packages/cassandra/*_d.so -usr/lib/python2*/*-packages/cassandra/io/*_d.so diff --git a/debian/python-cassandra-driver-doc.docs b/debian/python-cassandra-driver-doc.docs deleted file mode 100644 index 300da921..00000000 --- a/debian/python-cassandra-driver-doc.docs +++ /dev/null @@ -1 +0,0 @@ -docs/_build/*/* diff --git a/debian/python-cassandra-driver.install b/debian/python-cassandra-driver.install deleted file mode 100644 index cf5c1ebe..00000000 --- a/debian/python-cassandra-driver.install +++ /dev/null @@ -1,4 +0,0 @@ -usr/lib/python2*/*-packages/cassandra/*[!_][!_].so -usr/lib/python2*/*-packages/cassandra/*.py -usr/lib/python2*/*-packages/cassandra/io/*[!_][!_].so -usr/lib/python2*/*-packages/cassandra/io/*.py diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 1943cfc1..00000000 --- a/debian/rules +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/make -f - -%: - dh $@ --with python2,sphinxdoc - -override_dh_auto_build: - dh_auto_build - python setup.py doc - -ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) -override_dh_auto_test: - python setup.py gevent_nosetests -endif - -override_dh_strip: - dh_strip --dbg-package=python-cassandra-driver-dbg diff --git a/debian/source/format b/debian/source/format deleted file mode 100644 index 163aaf8d..00000000 --- a/debian/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (quilt)