Diff gcl-2.6.13_pre99 with a gcl-2.6.14

/usr/portage/dev-lisp/gcl/gcl-2.6.14.ebuild 2023-10-09 14:52:29.776368357 +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
EAPI=7
4
EAPI=8
5 5
inherit elisp-common flag-o-matic
6 6

  
7 7
DESCRIPTION="GNU Common Lisp"
8 8
HOMEPAGE="https://www.gnu.org/software/gcl/gcl.html"
9
SRC_URI="https://dev.gentoo.org/~grozin/${P}.tar.xz"
9
SRC_URI="https://ftp.gnu.org/gnu/${PN}/${P}.tar.gz"
10 10

  
11 11
LICENSE="LGPL-2+ GPL-2+"
12 12
SLOT="0"
13
KEYWORDS="amd64 ~arm ~ppc ppc64 x86"
13
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
14 14
IUSE="+ansi athena emacs +readline tk X"
15 15
RESTRICT="strip"  #205803
16 16

  
......
26 26
	app-text/texi2html
27 27
	>=sys-devel/autoconf-2.52"
28 28

  
29
PATCHES=(
30
	# bug 778770
31
	"${FILESDIR}"/${P}-assertion.patch
32
)
33

  
34 29
src_configure() {
35 30
	strip-flags
36 31
	filter-flags -fstack-protector -fstack-protector-all
Thank you!