diff options
| author | Evax Software <contact@evax.fr> | 2012-10-04 13:34:39 -0400 |
|---|---|---|
| committer | farcepest <farcepest@gmail.com> | 2012-10-04 13:34:39 -0400 |
| commit | 7a846cf5e35ebcad852309aebaa0bac8a7244744 (patch) | |
| tree | 4fbd759ae4894cabcd590e15e61b535766a13ee2 | |
| parent | 0164ffeb2534f050148348e50a51641491b6a65d (diff) | |
| download | mysqldb1-7a846cf5e35ebcad852309aebaa0bac8a7244744.tar.gz | |
Allow pip install from git
Merged with modifications from https://github.com/evax/MySQLdb1/commit/a8152690101733904b16a32ff8467220ca07242c
| -rw-r--r-- | .travis.yml | 4 | ||||
| -rw-r--r-- | GPL-2.0 (renamed from MySQLdb/GPL-2.0) | 0 | ||||
| -rw-r--r-- | HISTORY (renamed from MySQLdb/HISTORY) | 0 | ||||
| -rw-r--r-- | MANIFEST.in (renamed from MySQLdb/MANIFEST.in) | 0 | ||||
| -rw-r--r-- | MySQLdb/MySQLdb/constants/.cvsignore | 1 | ||||
| -rw-r--r-- | MySQLdb/__init__.py (renamed from MySQLdb/MySQLdb/__init__.py) | 0 | ||||
| -rw-r--r-- | MySQLdb/connections.py (renamed from MySQLdb/MySQLdb/connections.py) | 0 | ||||
| -rw-r--r-- | MySQLdb/constants/CLIENT.py (renamed from MySQLdb/MySQLdb/constants/CLIENT.py) | 0 | ||||
| -rw-r--r-- | MySQLdb/constants/CR.py (renamed from MySQLdb/MySQLdb/constants/CR.py) | 0 | ||||
| -rw-r--r-- | MySQLdb/constants/ER.py (renamed from MySQLdb/MySQLdb/constants/ER.py) | 0 | ||||
| -rw-r--r-- | MySQLdb/constants/FIELD_TYPE.py (renamed from MySQLdb/MySQLdb/constants/FIELD_TYPE.py) | 0 | ||||
| -rw-r--r-- | MySQLdb/constants/FLAG.py (renamed from MySQLdb/MySQLdb/constants/FLAG.py) | 0 | ||||
| -rw-r--r-- | MySQLdb/constants/REFRESH.py (renamed from MySQLdb/MySQLdb/constants/REFRESH.py) | 0 | ||||
| -rw-r--r-- | MySQLdb/constants/__init__.py (renamed from MySQLdb/MySQLdb/constants/__init__.py) | 0 | ||||
| -rw-r--r-- | MySQLdb/converters.py (renamed from MySQLdb/MySQLdb/converters.py) | 0 | ||||
| -rw-r--r-- | MySQLdb/cursors.py (renamed from MySQLdb/MySQLdb/cursors.py) | 0 | ||||
| -rw-r--r-- | MySQLdb/release.py (renamed from MySQLdb/MySQLdb/release.py) | 0 | ||||
| -rw-r--r-- | MySQLdb/times.py (renamed from MySQLdb/MySQLdb/times.py) | 0 | ||||
| -rw-r--r-- | README (renamed from MySQLdb/README) | 0 | ||||
| -rw-r--r-- | README.md | 41 | ||||
| -rw-r--r-- | _mysql.c (renamed from MySQLdb/_mysql.c) | 0 | ||||
| -rw-r--r-- | _mysql_exceptions.py (renamed from MySQLdb/_mysql_exceptions.py) | 0 | ||||
| -rw-r--r-- | distribute_setup.py (renamed from MySQLdb/distribute_setup.py) | 0 | ||||
| -rw-r--r-- | doc/FAQ.txt (renamed from MySQLdb/doc/FAQ.txt) | 0 | ||||
| -rw-r--r-- | doc/MySQLdb.txt (renamed from MySQLdb/doc/MySQLdb.txt) | 0 | ||||
| -rw-r--r-- | ez_setup.py (renamed from MySQLdb/ez_setup.py) | 0 | ||||
| -rw-r--r-- | metadata.cfg (renamed from MySQLdb/metadata.cfg) | 0 | ||||
| -rw-r--r-- | pymemcompat.h (renamed from MySQLdb/pymemcompat.h) | 0 | ||||
| -rw-r--r-- | setup.cfg (renamed from MySQLdb/setup.cfg) | 0 | ||||
| -rw-r--r-- | setup.py (renamed from MySQLdb/setup.py) | 0 | ||||
| -rw-r--r-- | setup_common.py (renamed from MySQLdb/setup_common.py) | 0 | ||||
| -rw-r--r-- | setup_posix.py (renamed from MySQLdb/setup_posix.py) | 0 | ||||
| -rw-r--r-- | setup_windows.py (renamed from MySQLdb/setup_windows.py) | 0 | ||||
| -rw-r--r-- | site.cfg (renamed from MySQLdb/site.cfg) | 0 | ||||
| -rw-r--r-- | tests/capabilities.py (renamed from MySQLdb/tests/capabilities.py) | 0 | ||||
| -rw-r--r-- | tests/configdb.py (renamed from MySQLdb/tests/configdb.py) | 0 | ||||
| -rw-r--r-- | tests/dbapi20.py (renamed from MySQLdb/tests/dbapi20.py) | 0 | ||||
| -rw-r--r-- | tests/default.cnf (renamed from MySQLdb/tests/default.cnf) | 0 | ||||
| -rw-r--r-- | tests/test_MySQLdb_capabilities.py (renamed from MySQLdb/tests/test_MySQLdb_capabilities.py) | 0 | ||||
| -rw-r--r-- | tests/test_MySQLdb_dbapi20.py (renamed from MySQLdb/tests/test_MySQLdb_dbapi20.py) | 0 | ||||
| -rw-r--r-- | tests/test_MySQLdb_nonstandard.py (renamed from MySQLdb/tests/test_MySQLdb_nonstandard.py) | 0 | ||||
| -rw-r--r-- | tests/travis.cnf (renamed from MySQLdb/tests/travis.cnf) | 0 |
42 files changed, 2 insertions, 44 deletions
diff --git a/.travis.yml b/.travis.yml index af7abea..0805439 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,6 @@ python: - "2.5" - "2.6" - "2.7" -install: (cd MySQLdb && python setup.py install) +install: python setup.py install before_script: mysql -e 'create database mysqldb_test charset utf8;' -script: (cd MySQLdb && TESTDB=travis.cnf nosetests) +script: TESTDB=travis.cnf nosetests diff --git a/MySQLdb/GPL-2.0 b/GPL-2.0 index d159169..d159169 100644 --- a/MySQLdb/GPL-2.0 +++ b/GPL-2.0 diff --git a/MySQLdb/HISTORY b/HISTORY index f90b466..f90b466 100644 --- a/MySQLdb/HISTORY +++ b/HISTORY diff --git a/MySQLdb/MANIFEST.in b/MANIFEST.in index 4e9fa05..4e9fa05 100644 --- a/MySQLdb/MANIFEST.in +++ b/MANIFEST.in diff --git a/MySQLdb/MySQLdb/constants/.cvsignore b/MySQLdb/MySQLdb/constants/.cvsignore deleted file mode 100644 index 0d20b64..0000000 --- a/MySQLdb/MySQLdb/constants/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.pyc diff --git a/MySQLdb/MySQLdb/__init__.py b/MySQLdb/__init__.py index 8761671..8761671 100644 --- a/MySQLdb/MySQLdb/__init__.py +++ b/MySQLdb/__init__.py diff --git a/MySQLdb/MySQLdb/connections.py b/MySQLdb/connections.py index 1d6fa82..1d6fa82 100644 --- a/MySQLdb/MySQLdb/connections.py +++ b/MySQLdb/connections.py diff --git a/MySQLdb/MySQLdb/constants/CLIENT.py b/MySQLdb/constants/CLIENT.py index 6559917..6559917 100644 --- a/MySQLdb/MySQLdb/constants/CLIENT.py +++ b/MySQLdb/constants/CLIENT.py diff --git a/MySQLdb/MySQLdb/constants/CR.py b/MySQLdb/constants/CR.py index 249dfec..249dfec 100644 --- a/MySQLdb/MySQLdb/constants/CR.py +++ b/MySQLdb/constants/CR.py diff --git a/MySQLdb/MySQLdb/constants/ER.py b/MySQLdb/constants/ER.py index ed45f3a..ed45f3a 100644 --- a/MySQLdb/MySQLdb/constants/ER.py +++ b/MySQLdb/constants/ER.py diff --git a/MySQLdb/MySQLdb/constants/FIELD_TYPE.py b/MySQLdb/constants/FIELD_TYPE.py index 8a57b17..8a57b17 100644 --- a/MySQLdb/MySQLdb/constants/FIELD_TYPE.py +++ b/MySQLdb/constants/FIELD_TYPE.py diff --git a/MySQLdb/MySQLdb/constants/FLAG.py b/MySQLdb/constants/FLAG.py index 00e6c7c..00e6c7c 100644 --- a/MySQLdb/MySQLdb/constants/FLAG.py +++ b/MySQLdb/constants/FLAG.py diff --git a/MySQLdb/MySQLdb/constants/REFRESH.py b/MySQLdb/constants/REFRESH.py index 4a08b94..4a08b94 100644 --- a/MySQLdb/MySQLdb/constants/REFRESH.py +++ b/MySQLdb/constants/REFRESH.py diff --git a/MySQLdb/MySQLdb/constants/__init__.py b/MySQLdb/constants/__init__.py index 3da4a0e..3da4a0e 100644 --- a/MySQLdb/MySQLdb/constants/__init__.py +++ b/MySQLdb/constants/__init__.py diff --git a/MySQLdb/MySQLdb/converters.py b/MySQLdb/converters.py index 14b1f52..14b1f52 100644 --- a/MySQLdb/MySQLdb/converters.py +++ b/MySQLdb/converters.py diff --git a/MySQLdb/MySQLdb/cursors.py b/MySQLdb/cursors.py index a8cfa3e..a8cfa3e 100644 --- a/MySQLdb/MySQLdb/cursors.py +++ b/MySQLdb/cursors.py diff --git a/MySQLdb/MySQLdb/release.py b/MySQLdb/release.py index d0767e1..d0767e1 100644 --- a/MySQLdb/MySQLdb/release.py +++ b/MySQLdb/release.py diff --git a/MySQLdb/MySQLdb/times.py b/MySQLdb/times.py index bc92eb4..bc92eb4 100644 --- a/MySQLdb/MySQLdb/times.py +++ b/MySQLdb/times.py diff --git a/README.md b/README.md deleted file mode 100644 index f0ca032..0000000 --- a/README.md +++ /dev/null @@ -1,41 +0,0 @@ -MySQLdb1
-========
-
-This is the legacy (1.x) version of MySQLdb. While it is still being
-maintained, there will not be a lot of new feature development.
-
-[](http://travis-ci.org/farcepest/MySQLdb1)
-
-TODO
-----
-
-* A bugfix 1.2.4 release
-* A 1.3.0 release that will support Python 2.7-3.3
-* The 2.0 version is being renamed [moist][] and is heavily refactored.
-
-Projects
---------
-
-* [MySQLdb-svn][]
-
- This is the old Subversion repository located on SourceForge.
- It has all the early historical development of MySQLdb through 1.2.3,
- and also is the working repository for ZMySQLDA. The trunk on this
- repository was forked to create the [MySQLdb2][] repository.
-
-* [MySQLdb1][]
-
- This is the new (active) git repository.
- Only updates to the 1.x series will happen here.
-
-* [MySQLdb2][]
-
- This is the now obsolete Mercurial repository for MySQLdb-2.0
- located on SourceForge. This repository has been migrated to the
- [moist][] repository.
-
-
-[MySQLdb1]: https://github.com/farcepest/MySQLdb1
-[moist]: https://github.com/farcepest/moist
-[MySQLdb-svn]: https://sourceforge.net/p/mysql-python/svn/
-[MySQLdb2]: https://sourceforge.net/p/mysql-python/mysqldb-2/
\ No newline at end of file diff --git a/MySQLdb/_mysql.c b/_mysql.c index b721a66..b721a66 100644 --- a/MySQLdb/_mysql.c +++ b/_mysql.c diff --git a/MySQLdb/_mysql_exceptions.py b/_mysql_exceptions.py index 3241e74..3241e74 100644 --- a/MySQLdb/_mysql_exceptions.py +++ b/_mysql_exceptions.py diff --git a/MySQLdb/distribute_setup.py b/distribute_setup.py index 8f5b063..8f5b063 100644 --- a/MySQLdb/distribute_setup.py +++ b/distribute_setup.py diff --git a/MySQLdb/doc/FAQ.txt b/doc/FAQ.txt index b6a4ce9..b6a4ce9 100644 --- a/MySQLdb/doc/FAQ.txt +++ b/doc/FAQ.txt diff --git a/MySQLdb/doc/MySQLdb.txt b/doc/MySQLdb.txt index fbc86e5..fbc86e5 100644 --- a/MySQLdb/doc/MySQLdb.txt +++ b/doc/MySQLdb.txt diff --git a/MySQLdb/ez_setup.py b/ez_setup.py index 1ff1d3e..1ff1d3e 100644 --- a/MySQLdb/ez_setup.py +++ b/ez_setup.py diff --git a/MySQLdb/metadata.cfg b/metadata.cfg index 79edfff..79edfff 100644 --- a/MySQLdb/metadata.cfg +++ b/metadata.cfg diff --git a/MySQLdb/pymemcompat.h b/pymemcompat.h index e7c538c..e7c538c 100644 --- a/MySQLdb/pymemcompat.h +++ b/pymemcompat.h diff --git a/MySQLdb/setup.cfg b/setup.cfg index e357362..e357362 100644 --- a/MySQLdb/setup.cfg +++ b/setup.cfg diff --git a/MySQLdb/setup.py b/setup.py index 798f96f..798f96f 100644 --- a/MySQLdb/setup.py +++ b/setup.py diff --git a/MySQLdb/setup_common.py b/setup_common.py index 03c39bb..03c39bb 100644 --- a/MySQLdb/setup_common.py +++ b/setup_common.py diff --git a/MySQLdb/setup_posix.py b/setup_posix.py index f7cb588..f7cb588 100644 --- a/MySQLdb/setup_posix.py +++ b/setup_posix.py diff --git a/MySQLdb/setup_windows.py b/setup_windows.py index ffe6397..ffe6397 100644 --- a/MySQLdb/setup_windows.py +++ b/setup_windows.py diff --git a/MySQLdb/site.cfg b/site.cfg index 369c87e..369c87e 100644 --- a/MySQLdb/site.cfg +++ b/site.cfg diff --git a/MySQLdb/tests/capabilities.py b/tests/capabilities.py index 076361c..076361c 100644 --- a/MySQLdb/tests/capabilities.py +++ b/tests/capabilities.py diff --git a/MySQLdb/tests/configdb.py b/tests/configdb.py index cd6d43d..cd6d43d 100644 --- a/MySQLdb/tests/configdb.py +++ b/tests/configdb.py diff --git a/MySQLdb/tests/dbapi20.py b/tests/dbapi20.py index ad292ae..ad292ae 100644 --- a/MySQLdb/tests/dbapi20.py +++ b/tests/dbapi20.py diff --git a/MySQLdb/tests/default.cnf b/tests/default.cnf index 2aeda7c..2aeda7c 100644 --- a/MySQLdb/tests/default.cnf +++ b/tests/default.cnf diff --git a/MySQLdb/tests/test_MySQLdb_capabilities.py b/tests/test_MySQLdb_capabilities.py index 60bbfad..60bbfad 100644 --- a/MySQLdb/tests/test_MySQLdb_capabilities.py +++ b/tests/test_MySQLdb_capabilities.py diff --git a/MySQLdb/tests/test_MySQLdb_dbapi20.py b/tests/test_MySQLdb_dbapi20.py index 44830e0..44830e0 100644 --- a/MySQLdb/tests/test_MySQLdb_dbapi20.py +++ b/tests/test_MySQLdb_dbapi20.py diff --git a/MySQLdb/tests/test_MySQLdb_nonstandard.py b/tests/test_MySQLdb_nonstandard.py index 92fcbdc..92fcbdc 100644 --- a/MySQLdb/tests/test_MySQLdb_nonstandard.py +++ b/tests/test_MySQLdb_nonstandard.py diff --git a/MySQLdb/tests/travis.cnf b/tests/travis.cnf index e78f52d..e78f52d 100644 --- a/MySQLdb/tests/travis.cnf +++ b/tests/travis.cnf |
