Diff squashfuse-0.1.103 with a squashfuse-0.1.105

/usr/portage/sys-fs/squashfuse/squashfuse-0.1.105.ebuild 2023-10-09 14:52:35.524368502 +0300
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
5
inherit flag-o-matic
5
inherit autotools flag-o-matic
6 6

  
7 7
DESCRIPTION="FUSE filesystem to mount squashfs archives"
8 8
HOMEPAGE="https://github.com/vasi/squashfuse"
9
SRC_URI="https://github.com/vasi/squashfuse/releases/download/${PV}/${P}.tar.gz"
9
SRC_URI="https://github.com/vasi/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
10 10

  
11 11
LICENSE="BSD-2"
12 12
SLOT="0"
......
25 25
DEPEND="${COMMON_DEPEND}
26 26
	virtual/pkgconfig"
27 27
RDEPEND="${COMMON_DEPEND}"
28
# Tests require access to /dev/fuse.
29
RESTRICT+=" test"
28 30

  
29 31
src_configure() {
30 32
	filter-lto
31 33
	filter-flags -fwhole-program -fno-common
34
	eautoreconf
32 35

  
33 36
	local econfargs=(
34 37
		$(use_enable static-libs static)
Thank you!