Skip to content

Commit

Permalink
databases/futuresql: new port -- A non-blocking database framework fo…
Browse files Browse the repository at this point in the history
…r Qt.

FutureSQL was in part inspired by Diesel, and provides a higher level of
abstraction than QtSql. Its features include non-blocking database access by
default, relatively boilderplate-free queries, automatic database migrations
and simple mapping to objects.

In order to make FutureSQL's use of templates less confusing, FutureSQL uses
C++20 concepts, and requires a C++20 compiler.

Warning: The API is not finalized yet.
  • Loading branch information
tcberner committed Aug 13, 2023
1 parent 60d77ba commit d1189ad
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions databases/Makefile
Expand Up @@ -82,6 +82,7 @@
SUBDIR += freetds
SUBDIR += freetds-devel
SUBDIR += frontbase-jdbc
SUBDIR += futuresql
SUBDIR += galera
SUBDIR += galera26
SUBDIR += gdbm
Expand Down
15 changes: 15 additions & 0 deletions databases/futuresql/Makefile
@@ -0,0 +1,15 @@
PORTNAME= futuresql
DISTVERSION= 0.1.1
CATEGORIES= databases kde
MASTER_SITES= KDE/stable/${PORTNAME}/

MAINTAINER= kde@FreeBSD.org
COMMENT= Non-blocking database framework for Qt
WWW= https://api.kde.org/futuresql/html/index.html

USES= cmake kde:5 qt:5 tar:xz

USE_KDE= ecm
USE_QT= core sql buildtools:build qmake:build

.include <bsd.port.mk>
3 changes: 3 additions & 0 deletions databases/futuresql/distinfo
@@ -0,0 +1,3 @@
TIMESTAMP = 1691920947
SHA256 (futuresql-0.1.1.tar.xz) = e44ed8d5a9618b3ca7ba2983ed9c5f7572e6e0a5b199f94868834b71ccbebd43
SIZE (futuresql-0.1.1.tar.xz) = 27844
11 changes: 11 additions & 0 deletions databases/futuresql/pkg-descr
@@ -0,0 +1,11 @@
A non-blocking database framework for Qt.

FutureSQL was in part inspired by Diesel, and provides a higher level of
abstraction than QtSql. Its features include non-blocking database access by
default, relatively boilderplate-free queries, automatic database migrations
and simple mapping to objects.

In order to make FutureSQL's use of templates less confusing, FutureSQL uses
C++20 concepts, and requires a C++20 compiler.

Warning: The API is not finalized yet.
10 changes: 10 additions & 0 deletions databases/futuresql/pkg-plist
@@ -0,0 +1,10 @@
include/FutureSQL5/ThreadedDatabase
include/FutureSQL5/futuresql_export.h
include/FutureSQL5/threadeddatabase.h
include/FutureSQL5/threadeddatabase_p.h
lib/cmake/FutureSQL5/FutureSQL5Config.cmake
lib/cmake/FutureSQL5/FutureSQL5ConfigVersion.cmake
lib/cmake/FutureSQL5/FutureSQLTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/FutureSQL5/FutureSQLTargets.cmake
lib/libfuturesql5.so
lib/libfuturesql5.so.0

0 comments on commit d1189ad

Please sign in to comment.