View | Details | Raw Unified | Return to bug 78508 | Differences between
and this patch

Collapse All | Expand All

(-)py-PySQLite10/Makefile (-24 / +20 lines)
Lines 5-44 Link Here
5
# $FreeBSD: ports/databases/py-PySQLite/Makefile,v 1.8 2005/03/05 22:09:34 vs Exp $
5
# $FreeBSD: ports/databases/py-PySQLite/Makefile,v 1.8 2005/03/05 22:09:34 vs Exp $
6
#
6
#
7
7
8
PORTNAME=	PySQLite
8
PORTNAME=		PySQLite
9
PORTVERSION=	1.0
9
PORTVERSION=		1.0.1
10
PORTREVISION=	1
10
CATEGORIES=		databases python
11
CATEGORIES=	databases python
11
MASTER_SITES=		${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITE_SUBDIR=	pysqlite
12
MASTER_SITE_SUBDIR=	pysqlite
14
PKGNAMEPREFIX=	py-
13
PKGNAMEPREFIX=		${PYTHON_PKGNAMEPREFIX}
15
DISTNAME=	pysqlite-${PORTVERSION}
14
DISTNAME=		pysqlite-${PORTVERSION}
16
15
17
MAINTAINER=	ports@FreeBSD.org
16
MAINTAINER=		marcus@corp.grupos.com.br
18
COMMENT=	A DB-API v2 Python library for the SQLite embedded SQL engine
17
COMMENT=		A DB-API v2 Python library for the SQLite 2 embedded SQL engine
19
18
20
RUN_DEPENDS=	${DATETIME_DEP}:${PORTSDIR}/lang/py-mx-base
19
LIB_DEPENDS=		sqlite.2:${PORTSDIR}/databases/sqlite2
21
LIB_DEPENDS=	sqlite.2:${PORTSDIR}/databases/sqlite2
22
20
23
WRKSRC=		${WRKDIR}/pysqlite
21
CONFLICTS=		py*-PySQLite-1.1*
24
EXAMPLESDIR=	${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
25
USE_PYTHON=	yes
26
USE_PYDISTUTILS=	yes
27
28
PORTDOCS=	README
29
30
DATETIME_DEP=	${PYTHON_SITELIBDIR}/mx/DateTime/__init__.py
31
22
32
DOCSDIR=	${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
23
WRKSRC=			${WRKDIR}/pysqlite
24
USE_PYTHON=		yes
25
USE_PYDISTUTILS=	yes
33
26
34
.if !defined(NOPORTDOCS)
27
.if !defined(NOPORTDOCS)
28
PORTDOCS=		*
29
.endif
30
35
post-install:
31
post-install:
32
.if !defined(NOPORTDOCS)
36
	@${MKDIR} ${DOCSDIR}
33
	@${MKDIR} ${DOCSDIR}
37
.for file in ${PORTDOCS}
34
	@${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
38
	@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
35
	@${INSTALL_DATA} ${WRKSRC}/doc/rest/manual.txt ${DOCSDIR}
39
.endfor
40
	@${MKDIR} ${EXAMPLESDIR}
36
	@${MKDIR} ${EXAMPLESDIR}
41
	${CP} ${WRKSRC}/examples/*.py ${EXAMPLESDIR}
37
	@${INSTALL_DATA} ${WRKSRC}/examples/*.py ${EXAMPLESDIR}
42
.endif
38
.endif
43
39
44
.include <bsd.port.mk>
40
.include <bsd.port.mk>
(-)py-PySQLite10/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (pysqlite-1.0.tar.gz) = f21b19ff048f6bafbbfc3edb86b4c4e4
1
MD5 (pysqlite-1.0.1.tar.gz) = 4797b5ea7a3d96b87333e6b5af7b9979
2
SIZE (pysqlite-1.0.tar.gz) = 40547
2
SIZE (pysqlite-1.0.1.tar.gz) = 41099
(-)py-PySQLite10/pkg-descr (-4 / +3 lines)
Lines 1-10 Link Here
1
The goal of the PySQLite project is to develop a Python extension for SQLite
1
The goal of the PySQLite project is to develop a Python extension for SQLite 2
2
that conforms to the Python Database API Specification 2.0. SQLite is a
2
that conforms to the Python Database API Specification 2.0. SQLite is a
3
powerful embedded relational database management system in a compact C library.
3
powerful embedded relational database management system in a compact C library.
4
It offers support for a large subset of SQL92, multiple tables, indices,
4
It offers support for a large subset of SQL92, multiple tables, indices,
5
transactions and triggers.
5
transactions and triggers.
6
6
7
WWW: http://pysqlite.sourceforge.net/
7
WWW: http://sourceforge.net/projects/pysqlite
8
developed by Gerhard Haering and Michael Owens
9
8
10
- Gerhard Haering <gh@ghaering.de>
9
Marcus Grando <marcus@corp.grupos.com.br>

Return to bug 78508