Diff Compress-Raw-Zlib-2.206.0 with a Compress-Raw-Zlib-2.212.0

/usr/portage/perl-core/Compress-Raw-Zlib/Compress-Raw-Zlib-2.212.0.ebuild 2025-02-03 17:39:35.902677895 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
5 5

  
6 6
DIST_AUTHOR=PMQS
7 7
DIST_TEST=parallel
8
DIST_VERSION=2.206
8
DIST_VERSION=2.212
9 9
inherit perl-module
10 10

  
11 11
DESCRIPTION="Low-Level Interface to zlib compression library"
......
15 15

  
16 16
# We use the bundled version of zlib as the minimum version for the system copy
17 17
# Check on bumps! Look in https://github.com/pmqs/Compress-Raw-Zlib/commits/master/zlib-src.
18
RDEPEND=">=sys-libs/zlib-1.2.13"
18
RDEPEND=">=sys-libs/zlib-1.3.1"
19 19
DEPEND="${RDEPEND}"
20 20
BDEPEND="virtual/perl-ExtUtils-MakeMaker"
21 21

  
......
26 26
}
27 27

  
28 28
src_configure() {
29
	BUILD_ZLIB=False ZLIB_INCLUDE="${ESYSROOT}"/usr/include \
30
		ZLIB_LIB="${ESYSROOT}"/usr/$(get_libdir) perl-module_src_configure
29
	export BUILD_ZLIB=False
30
	export USE_ZLIB_NG=False
31
	export OLD_ZLIB=True
32
	export ZLIB_INCLUDE="${ESYSROOT}"/usr/include
33
	export ZLIB_LIB="${ESYSROOT}"/usr/$(get_libdir)
34
	perl-module_src_configure
31 35
}
Thank you!