pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/databases Add databases/go-sqlite3 version 1.11.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/32943a1bfbb2
branches:  trunk
changeset: 417407:32943a1bfbb2
user:      ng0 <ng0%pkgsrc.org@localhost>
date:      Sun Nov 10 14:42:43 2019 +0000

description:
Add databases/go-sqlite3 version 1.11.0

Go-sqlite3 is a sqlite3 driver conforming to the built-in
database/sql interface.

diffstat:

 databases/Makefile                 |   3 +-
 databases/go-sqlite3/DESCR         |   2 +
 databases/go-sqlite3/Makefile      |  20 +++++++++++
 databases/go-sqlite3/PLIST         |  69 ++++++++++++++++++++++++++++++++++++++
 databases/go-sqlite3/buildlink3.mk |  15 ++++++++
 databases/go-sqlite3/distinfo      |   6 +++
 6 files changed, 114 insertions(+), 1 deletions(-)

diffs (149 lines):

diff -r 12f2c6fd451f -r 32943a1bfbb2 databases/Makefile
--- a/databases/Makefile        Sun Nov 10 14:24:10 2019 +0000
+++ b/databases/Makefile        Sun Nov 10 14:42:43 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.586 2019/10/30 12:27:20 kamil Exp $
+# $NetBSD: Makefile,v 1.587 2019/11/10 14:42:43 ng0 Exp $
 
 COMMENT=       Databases
 
@@ -40,6 +40,7 @@
 SUBDIR+=       gnome-mime-data
 SUBDIR+=       go-etcd
 SUBDIR+=       go-ldap
+SUBDIR+=       go-sqlite3
 SUBDIR+=       gourmet
 SUBDIR+=       gq
 SUBDIR+=       gramps3
diff -r 12f2c6fd451f -r 32943a1bfbb2 databases/go-sqlite3/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/go-sqlite3/DESCR        Sun Nov 10 14:42:43 2019 +0000
@@ -0,0 +1,2 @@
+Go-sqlite3 is a sqlite3 driver conforming to the built-in
+database/sql interface.
diff -r 12f2c6fd451f -r 32943a1bfbb2 databases/go-sqlite3/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/go-sqlite3/Makefile     Sun Nov 10 14:42:43 2019 +0000
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1 2019/11/10 14:42:43 ng0 Exp $
+
+GITHUB_TAG=            v${PKGVERSION_NOREV}
+DISTNAME=              go-sqlite3-1.11.0
+CATEGORIES=            devel
+MASTER_SITES=          ${MASTER_SITE_GITHUB:=mattn/}
+GITHUB_PROJECT=                go-sqlite3
+
+MAINTAINER=            ng0%NetBSD.org@localhost
+HOMEPAGE=              https://github.com/mattn/go-sqlite3
+COMMENT=               Sqlite3 driver for Go using database/sql
+LICENSE=               mit
+
+GO_SRCPATH=            github.com/mattn/go-sqlite3
+GO_DIST_BASE=          go-sqlite3-${PKGVERSION_NOREV}
+
+MAKE_ENV+=             CGO_ENABLED=1
+
+.include "../../lang/go/go-package.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 12f2c6fd451f -r 32943a1bfbb2 databases/go-sqlite3/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/go-sqlite3/PLIST        Sun Nov 10 14:42:43 2019 +0000
@@ -0,0 +1,69 @@
+@comment $NetBSD: PLIST,v 1.1 2019/11/10 14:42:43 ng0 Exp $
+gopkg/pkg/${GO_PLATFORM}/github.com/mattn/go-sqlite3.a
+gopkg/pkg/${GO_PLATFORM}/github.com/mattn/go-sqlite3/upgrade.a
+gopkg/src/github.com/mattn/go-sqlite3/LICENSE
+gopkg/src/github.com/mattn/go-sqlite3/README.md
+gopkg/src/github.com/mattn/go-sqlite3/_example/custom_func/main.go
+gopkg/src/github.com/mattn/go-sqlite3/_example/hook/hook.go
+gopkg/src/github.com/mattn/go-sqlite3/_example/limit/limit.go
+gopkg/src/github.com/mattn/go-sqlite3/_example/mod_regexp/Makefile
+gopkg/src/github.com/mattn/go-sqlite3/_example/mod_regexp/extension.go
+gopkg/src/github.com/mattn/go-sqlite3/_example/mod_regexp/sqlite3_mod_regexp.c
+gopkg/src/github.com/mattn/go-sqlite3/_example/mod_vtable/Makefile
+gopkg/src/github.com/mattn/go-sqlite3/_example/mod_vtable/extension.go
+gopkg/src/github.com/mattn/go-sqlite3/_example/mod_vtable/picojson.h
+gopkg/src/github.com/mattn/go-sqlite3/_example/mod_vtable/sqlite3_mod_vtable.cc
+gopkg/src/github.com/mattn/go-sqlite3/_example/simple/simple.go
+gopkg/src/github.com/mattn/go-sqlite3/_example/trace/main.go
+gopkg/src/github.com/mattn/go-sqlite3/_example/vtable/main.go
+gopkg/src/github.com/mattn/go-sqlite3/_example/vtable/vtable.go
+gopkg/src/github.com/mattn/go-sqlite3/backup.go
+gopkg/src/github.com/mattn/go-sqlite3/backup_test.go
+gopkg/src/github.com/mattn/go-sqlite3/callback.go
+gopkg/src/github.com/mattn/go-sqlite3/callback_test.go
+gopkg/src/github.com/mattn/go-sqlite3/doc.go
+gopkg/src/github.com/mattn/go-sqlite3/error.go
+gopkg/src/github.com/mattn/go-sqlite3/error_test.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3-binding.c
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3-binding.h
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_context.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_func_crypt.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_func_crypt_test.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_go18.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_go18_test.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_libsqlite3.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_load_extension.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_load_extension_omit.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_allow_uri_authority.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_app_armor.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_foreign_keys.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_fts3_test.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_fts5.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_icu.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_introspect.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_json1.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_secure_delete.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_secure_delete_fast.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_stat4.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.c
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify_test.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_userauth.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_userauth_omit.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_userauth_test.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_vacuum_full.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_vacuum_incr.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_vtable.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_opt_vtable_test.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_other.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_solaris.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_test.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_trace.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_type.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_usleep_windows.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3_windows.go
+gopkg/src/github.com/mattn/go-sqlite3/sqlite3ext.h
+gopkg/src/github.com/mattn/go-sqlite3/static_mock.go
+gopkg/src/github.com/mattn/go-sqlite3/upgrade/package.go
+gopkg/src/github.com/mattn/go-sqlite3/upgrade/upgrade.go
diff -r 12f2c6fd451f -r 32943a1bfbb2 databases/go-sqlite3/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/go-sqlite3/buildlink3.mk        Sun Nov 10 14:42:43 2019 +0000
@@ -0,0 +1,15 @@
+# $NetBSD: buildlink3.mk,v 1.1 2019/11/10 14:42:43 ng0 Exp $
+
+BUILDLINK_TREE+=       go-sqlite3
+
+.if !defined(GO_SQLITE3_BUILDLINK3_MK)
+GO_SQLITE3_BUILDLINK3_MK:=
+
+BUILDLINK_CONTENTS_FILTER.go-sqlite3=  ${EGREP} gopkg/
+BUILDLINK_DEPMETHOD.go-sqlite3?=       build
+
+BUILDLINK_API_DEPENDS.go-sqlite3+=     go-sqlite3>=1.10.0
+BUILDLINK_PKGSRCDIR.go-sqlite3?=       ../../databases/go-sqlite3
+.endif # GO_SQLITE3_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -go-sqlite3
diff -r 12f2c6fd451f -r 32943a1bfbb2 databases/go-sqlite3/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/go-sqlite3/distinfo     Sun Nov 10 14:42:43 2019 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2019/11/10 14:42:43 ng0 Exp $
+
+SHA1 (go-sqlite3-1.11.0.tar.gz) = 01b77fa14f0ba2b94bbf51fb72f48695ad4afc75
+RMD160 (go-sqlite3-1.11.0.tar.gz) = b18750ee5c89ebc7627eb4b848811b042f460ec7
+SHA512 (go-sqlite3-1.11.0.tar.gz) = 91c31fd06c61a28f1aa0ecd96a199c679979e37722ca8ea9f846e6090408580af0b89670434eadbca69428ff8727446e97eb052893aa632ef2c096abb51db089
+Size (go-sqlite3-1.11.0.tar.gz) = 2278788 bytes



Home | Main Index | Thread Index | Old Index