mirror of
https://github.com/flatcar/scripts.git
synced 2025-10-03 19:42:15 +02:00
dev-libs/cowsql: Sync with Gentoo
It's from Gentoo commit 021a93593aae39ba2b46c79dd747d410e0cccdad. Signed-off-by: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
This commit is contained in:
parent
26520286ee
commit
2626b2149f
@ -1 +1,2 @@
|
||||
DIST cowsql-1.15.8.tar.gz 364600 BLAKE2B 14fcc1a77351e433962aa4ccde671ee11839f2a69606d5b130f5fe168012ee39dba254f23fb338e246f5215bb15c1e14958818d71008bb03afac7fea8733efec SHA512 3946433897efb190edec4d6900d7bdc40d3b25c07d732526b7d83fe2c38269a5525c6e9d352f017709ecf2a9e6ea908462b1b31fe31b4d02699a89834f3f3ce3
|
||||
DIST cowsql-1.15.9.tar.gz 364588 BLAKE2B fd986c42d0caed8ff18caefa86e1403d5357bca249185b2905df2e5ae0762fa0f470c9c3823d9a0797b775d3aa1a326dd0fcee04858a6703b89726d5f5ec2c96 SHA512 482681923119a2e1b07d91ed158640c30db34f2448892221fc2834d3120b35992de6ed2ce6606c227ef15c351769c3457eb87bd825ed13a252ccb171ffd43543
|
||||
|
51
sdk_container/src/third_party/portage-stable/dev-libs/cowsql/cowsql-1.15.9.ebuild
vendored
Normal file
51
sdk_container/src/third_party/portage-stable/dev-libs/cowsql/cowsql-1.15.9.ebuild
vendored
Normal file
@ -0,0 +1,51 @@
|
||||
# Copyright 2020-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="Embeddable, replicated and fault tolerant SQL engine (fork of dqlite)"
|
||||
HOMEPAGE="https://cowsql.dev/ https://github.com/cowsql/cowsql"
|
||||
SRC_URI="https://github.com/cowsql/cowsql/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3-with-linking-exception"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="dev-db/sqlite:3
|
||||
dev-libs/libuv:=
|
||||
>=dev-libs/raft-0.18.1:="
|
||||
DEPEND="${RDEPEND}
|
||||
test? ( dev-libs/raft[lz4,test] )"
|
||||
BDEPEND="virtual/pkgconfig"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/dqlite-1.12.0-disable-werror.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myeconfargs=(
|
||||
--disable-backtrace
|
||||
--disable-debug
|
||||
--disable-sanitize
|
||||
--disable-static
|
||||
|
||||
# Will build a bundled libsqlite3.so.
|
||||
--enable-build-sqlite=no
|
||||
)
|
||||
|
||||
econf "${myeconfargs[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${ED}" -name '*.la' -delete || die
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user