Diff usrsctp-0.9.5.0 with a usrsctp-0.9.5.0_p20250331

/usr/portage/net-libs/usrsctp/usrsctp-0.9.5.0_p20250331.ebuild 2025-07-29 16:22:17.272467493 +0300
1
# Copyright 2021-2022 Gentoo Authors
1
# Copyright 2021-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit cmake
7 7

  
8 8
DESCRIPTION="A cross-platform userland SCTP stack"
9 9
HOMEPAGE="https://github.com/sctplab/usrsctp"
10
SRC_URI="https://github.com/sctplab/usrsctp/archive/${PV}.tar.gz -> ${P}.tar.gz"
10
GIT_REV=881513ab3fc75b4c53ffce7b22b08e7b07fcc67a
11
SRC_URI="https://github.com/sctplab/usrsctp/archive/${GIT_REV}.tar.gz -> ${P}.tar.gz"
12
S="${WORKDIR}/${PN}-${GIT_REV}"
11 13

  
12 14
LICENSE="BSD"
13 15
SLOT="0"
14
KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv ~x86"
16
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
15 17

  
16 18
DOCS=( LICENSE.md Manual.md README.md )
17
PATCHES=( "${FILESDIR}/${P}-pc-inc-path.patch" )
19
PATCHES=( "${FILESDIR}/${PN}-0.9.5.0-cmake-4.patch" )
18 20

  
19 21
src_configure() {
20 22
	local mycmakeargs=(
Thank you!