Remove ./debian directory

Based on recommendation of Debian OpenStack maintainer, in accordance with https://wiki.debian.org/UpstreamGuide#Pristine_Upstream_Source
This commit is contained in:
Adam Holmberg
2014-11-26 18:34:23 +00:00
parent 9b5b4bd305
commit d600e5144c
11 changed files with 0 additions and 179 deletions

41
debian/changelog vendored
View File

@@ -1,41 +0,0 @@
python-cassandra-driver (2.1.2) unstable; urgency=low
* Release 2.1.2
-- Adam Holmberg <adam.holmberg@datastax.com> Thu, 16 Oct 2014 18:30:22 +0000
python-cassandra-driver (2.1.1) unstable; urgency=low
* Release 2.1.1
-- Adam Holmberg <adam.holmberg@datastax.com> Tue, 09 Sep 2014 17:14:41 +0000
python-cassandra-driver (2.1.0) unstable; urgency=low
* Release 2.1.0
-- Adam Holmberg <adam.holmberg@datastax.com> Thu, 07 Aug 2014 19:01:17 +0000
python-cassandra-driver (2.0.2-2) unstable; urgency=low
* Fixed debian/patches
-- Carsten Aulbert <carsten.aulbert@aei.mpg.de> Thu, 19 Jun 2014 14:07:27 +0200
python-cassandra-driver (2.0.2-1) unstable; urgency=low
* Release 2.0.2
-- Tyler Hobbs <tyler@datastax.com> 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 <tyler@datastax.com> Tue, 03 Jun 2014 15:16:53 -0500
python-cassandra-driver (1.1.0~prerelease-1) unstable; urgency=low
* Initial packaging
-- paul cannon <pik@debian.org> Thu, 03 Apr 2014 10:30:11 -0600

1
debian/compat vendored
View File

@@ -1 +0,0 @@
9

46
debian/control vendored
View File

@@ -1,46 +0,0 @@
Source: python-cassandra-driver
Maintainer: paul cannon <pik@debian.org>
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.

28
debian/copyright vendored
View File

@@ -1,28 +0,0 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: python-driver
Upstream-Contact: Tyler Hobbs <tyler@datastax.com>
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'.

View File

@@ -1,38 +0,0 @@
From: paul cannon <paul@spacemonkey.com>
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',

View File

@@ -1 +0,0 @@
0001-don-t-use-ez_setup.patch

View File

@@ -1,2 +0,0 @@
usr/lib/python2*/*-packages/cassandra/*_d.so
usr/lib/python2*/*-packages/cassandra/io/*_d.so

View File

@@ -1 +0,0 @@
docs/_build/*/*

View File

@@ -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

16
debian/rules vendored
View File

@@ -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

View File

@@ -1 +0,0 @@
3.0 (quilt)