mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 17:29:23 -04:00
sqlcc is a SQL Command Composer for Python. It make you coding SQL command
with Python's syntax, no more string composing. You can insert, update, and query with sqlcc. Even you can initial a database with schema defined with sqlcc. WWW: https://opensvn.csie.org/traccgi/PumperWeb/wiki/sqlcc PR: ports/110925 Submitted by: Thinker K.F. Li <thinker at branda.to>
This commit is contained in:
parent
70b8577fa3
commit
1d28d00540
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=188560
5 changed files with 46 additions and 0 deletions
|
@ -1860,6 +1860,7 @@
|
|||
SUBDIR += py-simpy
|
||||
SUBDIR += py-sip
|
||||
SUBDIR += py-spark
|
||||
SUBDIR += py-sqlcc
|
||||
SUBDIR += py-statgrab
|
||||
SUBDIR += py-tables
|
||||
SUBDIR += py-testgears
|
||||
|
|
22
devel/py-sqlcc/Makefile
Normal file
22
devel/py-sqlcc/Makefile
Normal file
|
@ -0,0 +1,22 @@
|
|||
# New ports collection makefile for: py-sqlcc
|
||||
# Date created: 2007-03-27
|
||||
# Whom: Thinker K.F. Li <thinker@branda.to>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= sqlcc
|
||||
PORTVERSION= 0.2
|
||||
CATEGORIES= devel databases
|
||||
MASTER_SITES= http://master.branda.to/downloads/sqlcc/
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= thinker@branda.to
|
||||
COMMENT= The sqlcc is a Python SQL Command Composer
|
||||
|
||||
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pythk/__init__.py:${PORTSDIR}/devel/pythk
|
||||
|
||||
USE_PYTHON= yes
|
||||
USE_PYDISTUTILS=yes
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/py-sqlcc/distinfo
Normal file
3
devel/py-sqlcc/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (sqlcc-0.2.tar.gz) = 59e6e55d47db00a601d5d9ba09f2fc81
|
||||
SHA256 (sqlcc-0.2.tar.gz) = e320402b9b6e73129d133eeb1e1926f4c390a2ace0654dcae6eb48a98039f76e
|
||||
SIZE (sqlcc-0.2.tar.gz) = 6289
|
6
devel/py-sqlcc/pkg-descr
Normal file
6
devel/py-sqlcc/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
sqlcc is a SQL Command Composer for Python. It make you coding SQL command
|
||||
with Python's syntax, no more string composing. You can insert, update, and
|
||||
query with sqlcc. Even you can initial a database with schema defined with
|
||||
sqlcc.
|
||||
|
||||
WWW: https://opensvn.csie.org/traccgi/PumperWeb/wiki/sqlcc
|
14
devel/py-sqlcc/pkg-plist
Normal file
14
devel/py-sqlcc/pkg-plist
Normal file
|
@ -0,0 +1,14 @@
|
|||
@comment $FreeBSD$
|
||||
%%PYTHON_SITELIBDIR%%/sqlcc/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/sqlcc/data_src.py
|
||||
%%PYTHON_SITELIBDIR%%/sqlcc/funcs.py
|
||||
%%PYTHON_SITELIBDIR%%/sqlcc/sql.py
|
||||
%%PYTHON_SITELIBDIR%%/sqlcc/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/sqlcc/data_src.pyc
|
||||
%%PYTHON_SITELIBDIR%%/sqlcc/funcs.pyc
|
||||
%%PYTHON_SITELIBDIR%%/sqlcc/sql.pyc
|
||||
%%PYTHON_SITELIBDIR%%/sqlcc/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/sqlcc/data_src.pyo
|
||||
%%PYTHON_SITELIBDIR%%/sqlcc/funcs.pyo
|
||||
%%PYTHON_SITELIBDIR%%/sqlcc/sql.pyo
|
||||
@dirrmtry %%PYTHON_SITELIBDIR%%/sqlcc
|
Loading…
Add table
Reference in a new issue