Diff soju-0.6.1 with a soju-0.6.2

/usr/portage/net-irc/soju/soju-0.6.2.ebuild 2023-10-09 14:52:34.468368476 +0300
2 2
# Distributed under the terms of the GNU General Public License v2
3 3
EAPI=8
4 4

  
5
inherit go-module systemd
5
inherit flag-o-matic go-module systemd
6 6

  
7 7
DESCRIPTION="soju is a user-friendly IRC bouncer"
8 8
HOMEPAGE="https://soju.im/"
......
11 11

  
12 12
LICENSE="AGPL-3 Apache-2.0 MIT BSD"
13 13
SLOT="0"
14
KEYWORDS="~amd64 ~arm64 ~riscv"
14
KEYWORDS="~amd64 ~arm ~arm64 ~riscv"
15 15
IUSE="moderncsqlite +sqlite pam"
16 16
REQUIRED_USE="?? ( moderncsqlite sqlite )"
17 17

  
......
26 26
DEPEND="${RDEPEND}"
27 27

  
28 28
src_compile() {
29
	# musl removed legacy LFS64 interfaces in version 1.2.4
30
	# temporarily reenabled using _LARGEFILE64_SOURCE until
31
	# this is resolved upstream
32
	# https://github.com/mattn/go-sqlite3/issues/1164
33
	append-cflags "-D_LARGEFILE64_SOURCE"
34

  
29 35
	if use sqlite; then
30 36
		GOFLAGS+=" -tags=libsqlite3"
31 37
	elif use moderncsqlite; then
Thank you!