From aa72d9e9182f2770a0c629c95169e909e4e23a14 Mon Sep 17 00:00:00 2001 From: Dongsu Park Date: Mon, 21 Sep 2020 14:36:43 +0200 Subject: [PATCH] dev-db/sqlite: add README.md Try to elaborate reasons why we need this fork of Gentoo ebuilds. --- .../coreos-overlay/dev-db/sqlite/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 sdk_container/src/third_party/coreos-overlay/dev-db/sqlite/README.md diff --git a/sdk_container/src/third_party/coreos-overlay/dev-db/sqlite/README.md b/sdk_container/src/third_party/coreos-overlay/dev-db/sqlite/README.md new file mode 100644 index 0000000000..9b083d436a --- /dev/null +++ b/sdk_container/src/third_party/coreos-overlay/dev-db/sqlite/README.md @@ -0,0 +1,12 @@ +This is a fork of gentoo's `dev-db/sqlite` package. The main +reasons for having our fork are: + +1. Even in case of sqlite >= 3.32.0, we still need to keep conditions to + distinguish full archive from non-full archive. Main reason for that is + because it is not possible to build sqlite from its full archive (i.e. + "-src"), which depends `dev-lang/tcl`. Either we need to make + `dev-lang/tcl` available in the Flatcar SDK, or we need to bring back + the ability of dealing with its non-full archive. (i.e. "-autoconf") + While the former is ideal way to go in the future, it will require + additional updates in the SDK-only release. The latter is easier for + us to resolve the on-going security issues in the short term.