Diff xsel-1.2.0-r2 with a xsel-1.2.1

/usr/portage/x11-misc/xsel/xsel-1.2.1.ebuild 2023-10-09 14:52:35.956368513 +0300
6 6
inherit autotools
7 7

  
8 8
DESCRIPTION="Command-line program for getting and setting the contents of the X selection"
9
HOMEPAGE="https://www.vergenet.net/~conrad/software/xsel"
10
SRC_URI="https://www.vergenet.net/~conrad/software/${PN}/download/${P}.tar.gz"
9
HOMEPAGE="https://vergenet.net/~conrad/software/xsel"
10
SRC_URI="https://github.com/kfish/xsel/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
11 11

  
12 12
LICENSE="HPND"
13 13
SLOT="0"
14
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux"
14
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
15 15

  
16
RDEPEND="
17
	x11-libs/libX11
18
	x11-libs/libXext"
19
DEPEND="${RDEPEND}
20
	x11-base/xorg-proto
21
	x11-libs/libXt"
22

  
23
PATCHES=( "${FILESDIR}"/${P}-Werror.patch )
16
DEPEND="x11-libs/libX11"
17
RDEPEND="${DEPEND}"
18
BDEPEND="virtual/pkgconfig"
24 19

  
25 20
src_prepare() {
26 21
	default
Thank you!