diff options
author | gdt <gdt> | 2013-02-14 14:53:31 +0000 |
---|---|---|
committer | gdt <gdt> | 2013-02-14 14:53:31 +0000 |
commit | fcda28c187d412ee9e9e63b5a3b74326b6313e0d (patch) | |
tree | ea01ab61189741c07e0c22a5306ce4e94dc22773 /www/ja-trac | |
parent | a5847572641e0de931e5f40fb92c1b0047f9fdca (diff) | |
download | pkgsrc-fcda28c187d412ee9e9e63b5a3b74326b6313e0d.tar.gz |
Add comment explaining that py-sqlite2 is for sqlite3.
(I'm assuming that if I can't follow this, at least some others will
be confused as well.)
This is a comment-only change.
Diffstat (limited to 'www/ja-trac')
-rw-r--r-- | www/ja-trac/options.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/www/ja-trac/options.mk b/www/ja-trac/options.mk index 79ce2508123..4905cc840df 100644 --- a/www/ja-trac/options.mk +++ b/www/ja-trac/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.3 2013/01/20 08:56:48 obache Exp $ +# $NetBSD: options.mk,v 1.4 2013/02/14 14:53:31 gdt Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.trac PKG_OPTIONS_REQUIRED_GROUPS= db @@ -9,6 +9,10 @@ PKG_OPTIONS_LEGACY_OPTS= psycopg2:pgsql .include "../../mk/bsd.options.mk" .if !empty(PKG_OPTIONS:Msqlite) +# py-sqlite2 is the external (vs. bundled with Python source) +# implementation of Python DB API 2.0 for sqlite version 3. It is +# preferred over "py-sqlite3", the bundled version of sqlite3 support, +# because it is more up to date. DEPENDS+= ${PYPKGPREFIX}-sqlite2>=2.5.5:../../databases/py-sqlite2 .endif .if !empty(PKG_OPTIONS:Mpgsql) |