mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
INTAINER] Update port: databases/py-MySQLdb to 1.0.1
Update port: databases/py-MySQLdb to 1.0.1 - Change to 1.0.1 - Rediff patch-_mysql.c - Install more docs PR: ports/75866 Submitted by: Marcus Grando <marcus@corp.grupos.com.br>
This commit is contained in:
parent
c20b538b7d
commit
882df49ad9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=126267
@ -6,8 +6,8 @@
|
||||
#
|
||||
|
||||
PORTNAME= MySQLdb
|
||||
PORTVERSION= 1.0.0
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 1.0.1
|
||||
PORTREVISION= 0
|
||||
CATEGORIES= databases python
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= mysql-python
|
||||
@ -21,7 +21,7 @@ USE_PYTHON= yes
|
||||
USE_PYDISTUTILS= yes
|
||||
USE_MYSQL= yes
|
||||
|
||||
CONFLICTS= py*-MySQLdb-devel-*
|
||||
CONFLICTS= py*-MySQLdb-devel-[0-9]*
|
||||
|
||||
pre-fetch:
|
||||
@${ECHO} ""
|
||||
@ -52,12 +52,16 @@ MAKE_ENV+= mysqloptlibs=""
|
||||
.endif
|
||||
.endif
|
||||
|
||||
PORTDOCS= MANIFEST README
|
||||
.if !defined(NOPORTDOCS)
|
||||
PORTDOCS= *
|
||||
.endif
|
||||
|
||||
.if !defined(NOPORTDOCS)
|
||||
post-install:
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
.for FILE in ${PORTDOCS}
|
||||
@${INSTALL_DATA} ${WRKSRC}/MANIFEST ${DOCSDIR}
|
||||
@${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
||||
.for FILE in ${WRKSRC}/doc/*
|
||||
@${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
|
||||
.endfor
|
||||
.endif
|
||||
|
@ -1,2 +1,2 @@
|
||||
MD5 (MySQL-python-1.0.0.tar.gz) = 0f9527a3aa4111802f376cc6816cc7cf
|
||||
SIZE (MySQL-python-1.0.0.tar.gz) = 53708
|
||||
MD5 (MySQL-python-1.0.1.tar.gz) = dbdc534cbf95b788d201857d8a3082c8
|
||||
SIZE (MySQL-python-1.0.1.tar.gz) = 68580
|
||||
|
@ -1,18 +1,11 @@
|
||||
Index: MySQLdb/_mysql.c
|
||||
===================================================================
|
||||
RCS file: /cvsroot/mysql-python/MySQLdb/_mysql.c,v
|
||||
retrieving revision 1.49
|
||||
diff -u -r1.49 _mysql.c
|
||||
--- _mysql.c 7 Jun 2004 03:44:38 -0000 1.49
|
||||
+++ _mysql.c 26 Jul 2004 16:58:29 -0000
|
||||
@@ -1542,7 +1542,13 @@
|
||||
--- _mysql.c.orig Sat Jan 1 15:40:13 2005
|
||||
+++ _mysql.c Wed Jan 5 18:35:18 2005
|
||||
@@ -1542,7 +1542,11 @@
|
||||
if (!PyArg_ParseTuple(args, "")) return NULL;
|
||||
check_connection(self);
|
||||
Py_BEGIN_ALLOW_THREADS
|
||||
+
|
||||
+#if MYSQL_VERSION_ID >= 40103 && MYSQL_VERSION_ID < 50000
|
||||
+ r = mysql_shutdown(&(self->connection),
|
||||
+ SHUTDOWN_DEFAULT);
|
||||
+#if MYSQL_VERSION_ID >= 40103
|
||||
+ r = mysql_shutdown(&(self->connection), SHUTDOWN_DEFAULT);
|
||||
+#else
|
||||
r = mysql_shutdown(&(self->connection));
|
||||
+#endif
|
||||
|
Loading…
Reference in New Issue
Block a user