diff --git a/mysql/MySQL-python.spec b/mysql/MySQL-python.spec new file mode 100644 index 0000000..c8dcfff --- /dev/null +++ b/mysql/MySQL-python.spec @@ -0,0 +1,63 @@ +%define ver 0.2.0 +%define rel 1 +Summary: Python interface to MySQL-3.22 +Name: MySQL-python +Version: %ver +Release: %rel +Copyright: Python-style +Group: Applications/Databases +Source: ftp://starsip.python.net/pub/crew/adustman/MySQLdb-%ver.tar.gz +URL: http://starship.python.net/crew/adustman +Requires: python >= 1.5.2 +BuildRoot: /tmp/mysqldb-root +Packager: Andy Dustman +#Icon: linux-python-db-icon.gif + +%changelog + +* Fri Mar 10 2000 Andy Dustman + +- change the name so that it's more of a MySQL package rather than + a Python package. + +* Tue Apr 06 1999 Andy Dustman + +- initial release + +- mostly this spec is ripped off from Oli Andrich. + +%description +Python interface to MySQL-3.22 + +MySQLdb is an interface to the popular MySQL database server for Python. +The design goals are: + +- Compliance with Python database API version 2.0 +- Thread-safety +- Thread-friendliness (threads will not block each other) +- Compatibility with MySQL 3.22 + +This module should be mostly compatible with an older interface +written by Joe Skinner and others. However, the older version is +a) not thread-friendly, b) written for MySQL 3.21, c) apparently +not actively maintained. No code from that version is used in +MySQLdb. MySQLdb is distributed free of charge under a license +derived from the Python license. +%prep +%setup -n MySQLdb-%ver + +%build +python build.py + +%install +mkdir -p $RPM_BUILD_ROOT/usr/lib/python1.5/site-packages +make install prefix=$RPM_BUILD_ROOT/usr +cp MySQLdb.py{,c,o} $RPM_BUILD_ROOT/usr/lib/python1.5/site-packages +%clean +%files +%defattr(-, root, root) +%doc ZMySQLDA.patch license.py examples/README examples/dbtrainer0 examples/dbtrainer1 examples/dbtrainer2 examples/dbtrainer3 examples/dbtrainer4 examples/test.sql doc/* +/usr/lib/python1.5/site-packages/MySQLdb.py +/usr/lib/python1.5/site-packages/MySQLdb.pyc +/usr/lib/python1.5/site-packages/MySQLdb.pyo +/usr/lib/python1.5/site-packages/_mysqlmodule.so