+1
--
Don't Panic!
Marcos Simental.
On Wed, 2019-03-20 at 08:58 -0700, Auke Kok wrote:
Postgresql and mariadb are almost entirely exclusive to users,
it's highly unlikely they will run both.
Sqlite is really very useful for small daemons and utilities and
may get many include() references. Not sure about vsqlite just yet,
though.
---
bundles/database-basic | 7 ++-----
bundles/mariadb | 16 ++++++++++++++++
bundles/sqlite | 16 ++++++++++++++++
packages.list | 4 +++-
4 files changed, 37 insertions(+), 6 deletions(-)
create mode 100644 bundles/mariadb
create mode 100644 bundles/sqlite
diff --git a/bundles/database-basic b/bundles/database-basic
index c4686f0..f4bbeb0 100644
--- a/bundles/database-basic
+++ b/bundles/database-basic
@@ -5,11 +5,8 @@
# [TAGS]:
# [MAINTAINER]: William Douglas <william.douglas(a)intel.com>
include(python3-basic)
-include(libstdcpp)
gdal
-mariadb
-mariadb-doc
+include(mariadb)
include(postgresql)
-sqlite-autoconf
-vsqlite
+include(sqlite)
diff --git a/bundles/mariadb b/bundles/mariadb
new file mode 100644
index 0000000..c14b8d0
--- /dev/null
+++ b/bundles/mariadb
@@ -0,0 +1,16 @@
+# [TITLE]: mariadb
+# [DESCRIPTION]: MariaDB Connector/C dynamic library/Database daemon
+# [STATUS]: Active
+# [CAPABILITIES]: Maintain an mysql compatible database.
+# [TAGS]:
+# [MAINTAINER]: Auke Kok <auke-jan.h.kok(a)intel.com>
+
+include(libstdcpp)
+
+# start of custom additions
+
+# end of custom additions
+
+# main package
+mariadb
+mariadb-doc
diff --git a/bundles/sqlite b/bundles/sqlite
new file mode 100644
index 0000000..7a3a86c
--- /dev/null
+++ b/bundles/sqlite
@@ -0,0 +1,16 @@
+# [TITLE]: sqlite-autoconf
+# [DESCRIPTION]: SQL database engine
+# [STATUS]: Active
+# [CAPABILITIES]: Manipulate .sqlite databases.
+# [TAGS]:
+# [MAINTAINER]: Auke Kok <auke-jan.h.kok(a)intel.com>
+
+
+# start of custom additions
+
+# end of custom additions
+
+# main package
+sqlite-autoconf
+vsqlite
+
diff --git a/packages.list b/packages.list
index 7455330..d844c2c 100644
--- a/packages.list
+++ b/packages.list
@@ -251,4 +251,6 @@ minicom # No detailed summary available
webkitgtk # Legacy Web content engine for GTK+ 3
bijiben # Write out notes, every detail matters
fontforge # Outline and bitmap font editor
-qemu-guest-additions # A lightweight multi-platform, multi-
architecture disassembly framework
+qemu-guest-additions # A lightweight multi-platform, multi-
architecture disassembly framework
+mariadb # MariaDB Connector/C dynamic library
+sqlite-autoconf # SQL database engine
--
Don't Panic!
Marcos Simental.