Diff pygresql-5.2.4 with a pygresql-5.2.5

/usr/portage/dev-python/pygresql/pygresql-5.2.5.ebuild 2023-10-09 14:52:30.340368372 +0300
8 8
PYPI_NO_NORMALIZE=1
9 9
PYPI_PN="PyGreSQL"
10 10
POSTGRES_COMPAT=( 9.6 {10..14} )
11
PYTHON_COMPAT=( python3_{10..11} )
11
PYTHON_COMPAT=( python3_{10..12} )
12 12

  
13 13
inherit distutils-r1 postgres pypi
14 14

  
......
17 17

  
18 18
LICENSE="POSTGRESQL"
19 19
SLOT="0"
20
KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~sparc x86"
20
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
21 21

  
22 22
DEPEND="${POSTGRES_DEP}"
23 23
RDEPEND="${DEPEND}"
......
28 28

  
29 29
distutils_enable_tests unittest
30 30

  
31
pkg_setup() {
32
	if [[ ${MERGE_TYPE} != binary ]]; then
33
		postgres_pkg_setup
34
	fi
35
}
36

  
31 37
src_test() {
32 38
	local db="${T}/pgsql"
33 39
	initdb --username=portage -D "${db}" || die
Thank you!