Diff libwww-perl-6.580.0-r1 with a libwww-perl-6.600.0-r1

/usr/portage/dev-perl/libwww-perl/libwww-perl-6.600.0-r1.ebuild 2023-10-09 14:52:29.952368362 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6 6
DIST_AUTHOR=OALDERS
7
DIST_VERSION=6.58
7
DIST_VERSION=6.60
8 8
inherit perl-module
9 9

  
10 10
DESCRIPTION="A collection of Perl Modules for the WWW"
11 11

  
12 12
SLOT="0"
13
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
13
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
14 14
IUSE="ssl"
15 15

  
16 16
RDEPEND="
......
54 54
	)
55 55
"
56 56

  
57
src_install() {
58
	perl-module_src_install
59

  
57
pkg_postinst() {
60 58
	# Perform a check to see if the live filesystem is case-INsensitive
61 59
	# or not.  If it is, the symlinks GET, POST and in particular HEAD
62 60
	# will collide with e.g. head from coreutils.  While under Linux
......
67 65
	# bash should always be there, if we can find it in capitals, we're
68 66
	# on a case-INsensitive filesystem.
69 67
	if [[ ! -f ${EROOT}/BIN/BASH ]] ; then
70
		dosym lwp-request /usr/bin/GET
71
		dosym lwp-request /usr/bin/POST
72
		dosym lwp-request /usr/bin/HEAD
68
		ln -s lwp-request "${EROOT}"/usr/bin/GET
69
		ln -s lwp-request "${EROOT}"/usr/bin/POST
70
		ln -s lwp-request "${EROOT}"/usr/bin/HEAD
73 71
	fi
74 72
}
Thank you!