Diff cvector-1.0.3.1 with a cvector-1.0.4.1

/usr/portage/dev-libs/cvector/cvector-1.0.4.1.ebuild 2026-03-17 11:46:07.475985669 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=9
5 5

  
6 6
inherit toolchain-funcs
7 7

  
......
10 10

  
11 11
DESCRIPTION="An ANSI C implementation of dynamic arrays (approximation of C++ vectors)"
12 12
HOMEPAGE="http://cvector.sourceforge.net/"
13
SRC_URI="https://downloads.sourceforge.net/${PN}/${PN}/${MY_PN}-$(ver_cut 1-3)/${MY_P}.tar.gz"
14
S="${WORKDIR}"/${MY_P}
13
SRC_URI="https://github.com/yayahjb/${PN}/archive/refs/tags/${MY_P}.tar.gz"
14
S="${WORKDIR}"/${PN}-${MY_P}
15 15

  
16 16
LICENSE="LGPL-2.1"
17 17
SLOT="0"
18
KEYWORDS="amd64 ppc x86"
18
KEYWORDS="~amd64 ~ppc ~x86"
19 19

  
20 20
PATCHES=(
21 21
	"${FILESDIR}"/${P}-LDFLAGS.patch
Thank you!