diff options
author | Alfred Persson Forsberg <cat@catcream.org> | 2023-04-05 20:36:38 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-04-10 03:51:53 +0100 |
commit | d255ee2ba21dbf50109d5b42dd6a63e61bc52a52 (patch) | |
tree | f3fb867f57280fa1a0ace9bebfde6a0e0fdf0787 /net-irc | |
parent | net-irc/soju: build the sojudb tool (diff) | |
download | gentoo-d255ee2ba21dbf50109d5b42dd6a63e61bc52a52.tar.gz gentoo-d255ee2ba21dbf50109d5b42dd6a63e61bc52a52.tar.bz2 gentoo-d255ee2ba21dbf50109d5b42dd6a63e61bc52a52.zip |
net-irc/soju: drop USE=sqlite and use native go version
Signed-off-by: Alfred Persson Forsberg <cat@catcream.org>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/soju/soju-0.6.0.ebuild | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net-irc/soju/soju-0.6.0.ebuild b/net-irc/soju/soju-0.6.0.ebuild index f726d1503050..f5b9f0231436 100644 --- a/net-irc/soju/soju-0.6.0.ebuild +++ b/net-irc/soju/soju-0.6.0.ebuild @@ -13,7 +13,6 @@ SRC_URI+=" https://github.com/alfredfo/${PN}-deps/raw/master/${P}-deps.tar.xz" LICENSE="AGPL-3" SLOT="0" KEYWORDS="~amd64 ~riscv" -IUSE="sqlite" BDEPEND=" app-text/scdoc @@ -21,12 +20,11 @@ BDEPEND=" RDEPEND=" acct-user/soju acct-group/soju - sqlite? ( dev-db/sqlite:3 ) " DEPEND="${RDEPEND}" src_compile() { - GOFLAGS+=" -tags=$(usex sqlite libsqlite3 nosqlite)" + GOFLAGS+=" -tags=moderncsqlite" ego build ${GOFLAGS} ./cmd/soju ego build ${GOFLAGS} ./cmd/sojudb |