Diff boxes-2.2.0 with a boxes-2.2.1

/usr/portage/app-misc/boxes/boxes-2.2.1.ebuild 2023-10-09 14:52:28.788368332 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
7 7

  
8 8
DESCRIPTION="Draw any kind of boxes around your text"
9 9
HOMEPAGE="https://boxes.thomasjensen.com/ https://github.com/ascii-boxes/boxes"
10
SRC_URI="https://github.com/ascii-boxes/boxes/archive/v${PV}.tar.gz -> ${P}.tar.gz"
10
SRC_URI="https://github.com/ascii-boxes/boxes/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
11 11

  
12 12
LICENSE="GPL-3"
13 13
SLOT="0"
14
KEYWORDS="~alpha amd64 ~ia64 ~mips ppc ppc64 sparc x86"
14
KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
15 15
IUSE="test"
16 16
RESTRICT="!test? ( test )"
17 17

  
......
26 26
	test? ( app-editors/vim-core )
27 27
"
28 28

  
29
PATCHES=( "${FILESDIR}/${P}-fix-clang16-build.patch" )
30

  
31 29
src_prepare() {
32 30
	default
33 31

  
Thank you!