From owner-dev-commits-ports-main@freebsd.org Thu Jun 10 02:11:00 2021 Return-Path: Delivered-To: dev-commits-ports-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 555BB6403FE; Thu, 10 Jun 2021 02:11:00 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4G0nWm1p8vz4j7w; Thu, 10 Jun 2021 02:11:00 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2627727154; Thu, 10 Jun 2021 02:11:00 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 15A2B0lV039495; Thu, 10 Jun 2021 02:11:00 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 15A2B0XM039494; Thu, 10 Jun 2021 02:11:00 GMT (envelope-from git) Date: Thu, 10 Jun 2021 02:11:00 GMT Message-Id: <202106100211.15A2B0XM039494@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Yuri Victorovich Subject: git: ddd5d93e0916 - main - databases/sqlitecpp: New port: SQLiteC++: Easy to use C++ SQLite3 wrapper MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: yuri X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: ddd5d93e0916ead2ae4693b513210344c25eb7e0 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jun 2021 02:11:00 -0000 The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=ddd5d93e0916ead2ae4693b513210344c25eb7e0 commit ddd5d93e0916ead2ae4693b513210344c25eb7e0 Author: Yuri Victorovich AuthorDate: 2021-06-10 02:09:58 +0000 Commit: Yuri Victorovich CommitDate: 2021-06-10 02:10:57 +0000 databases/sqlitecpp: New port: SQLiteC++: Easy to use C++ SQLite3 wrapper --- databases/Makefile | 1 + databases/sqlitecpp/Makefile | 25 +++++++++++++++++++++++++ databases/sqlitecpp/distinfo | 3 +++ databases/sqlitecpp/pkg-descr | 4 ++++ databases/sqlitecpp/pkg-plist | 18 ++++++++++++++++++ 5 files changed, 51 insertions(+) diff --git a/databases/Makefile b/databases/Makefile index 8d19611241b2..988dc8f7876e 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -1008,6 +1008,7 @@ SUBDIR += sqlite3 SUBDIR += sqlitebrowser SUBDIR += sqliteconvert + SUBDIR += sqlitecpp SUBDIR += sqlitemanager SUBDIR += sqliteodbc SUBDIR += sqlitestudio diff --git a/databases/sqlitecpp/Makefile b/databases/sqlitecpp/Makefile new file mode 100644 index 000000000000..1c435e9350cd --- /dev/null +++ b/databases/sqlitecpp/Makefile @@ -0,0 +1,25 @@ +PORTNAME= sqlitecpp +DISTVERSION= 3.1.1-28 +DISTVERSIONSUFFIX= -g0c46d86 +CATEGORIES= databases devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= SQLiteC++: Easy to use C++ SQLite3 wrapper + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +TEST_DEPENDS= googletest>0:devel/googletest + +USES= cmake:testing compiler:c++11-lang sqlite +USE_LDCONFIG= yes + +USE_GITHUB= yes +GH_ACCOUNT= SRombauts +GH_PROJECT= SQLiteCpp + +CMAKE_ON= BUILD_SHARED_LIBS +CMAKE_OFF= SQLITECPP_INTERNAL_SQLITE SQLITECPP_RUN_CPPLINT +CMAKE_TESTING_ON= SQLITECPP_BUILD_TESTS + +.include diff --git a/databases/sqlitecpp/distinfo b/databases/sqlitecpp/distinfo new file mode 100644 index 000000000000..9e0f4b726fa3 --- /dev/null +++ b/databases/sqlitecpp/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1623289372 +SHA256 (SRombauts-SQLiteCpp-3.1.1-28-g0c46d86_GH0.tar.gz) = f7037c4726fae366988467b21d8c699211c6a19f051c5544653b4d413087dc7f +SIZE (SRombauts-SQLiteCpp-3.1.1-28-g0c46d86_GH0.tar.gz) = 2431117 diff --git a/databases/sqlitecpp/pkg-descr b/databases/sqlitecpp/pkg-descr new file mode 100644 index 000000000000..0221061b0b31 --- /dev/null +++ b/databases/sqlitecpp/pkg-descr @@ -0,0 +1,4 @@ +SQLiteC++ offers an encapsulation layer around the native C APIs of SQLite, with +a few intuitive and well documented C++ classes. + +WWW: https://github.com/SRombauts/SQLiteCpp diff --git a/databases/sqlitecpp/pkg-plist b/databases/sqlitecpp/pkg-plist new file mode 100644 index 000000000000..5bcbec25253a --- /dev/null +++ b/databases/sqlitecpp/pkg-plist @@ -0,0 +1,18 @@ +include/SQLiteCpp/Assertion.h +include/SQLiteCpp/Backup.h +include/SQLiteCpp/Column.h +include/SQLiteCpp/Database.h +include/SQLiteCpp/Exception.h +include/SQLiteCpp/ExecuteMany.h +include/SQLiteCpp/SQLiteCpp.h +include/SQLiteCpp/Savepoint.h +include/SQLiteCpp/Statement.h +include/SQLiteCpp/Transaction.h +include/SQLiteCpp/Utils.h +include/SQLiteCpp/VariadicBind.h +lib/cmake/SQLiteCpp/SQLiteCppConfig.cmake +lib/cmake/SQLiteCpp/SQLiteCppConfigVersion.cmake +lib/cmake/SQLiteCpp/SQLiteCppTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/SQLiteCpp/SQLiteCppTargets.cmake +lib/libSQLiteCpp.so +lib/libSQLiteCpp.so.0