Diff torque-6.0.4-r4 with a torque-6.0.4-r5

/usr/portage/sys-cluster/torque/torque-6.0.4-r5.ebuild 2023-10-09 14:52:35.468368501 +0300
8 8

  
9 9
DESCRIPTION="Resource manager and queuing system based on OpenPBS"
10 10
HOMEPAGE="https://adaptivecomputing.com/cherry-services/torque-resource-manager/ https://github.com/adaptivecomputing/torque/"
11
SRC_URI="https://github.com/adaptivecomputing/torque/archive/${MY_COMMIT}.tar.gz -> ${P}-gh-20170829.tar.gz
11
SRC_URI="
12
	https://github.com/adaptivecomputing/torque/archive/${MY_COMMIT}.tar.gz -> ${P}-gh-20170829.tar.gz
12 13
	https://dev.gentoo.org/~juippis/distfiles/tmp/torque-6.0.4-gcc7.patch
13
	https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-6.0.4-glibc-2.34-pthread.patch.bz2"
14
	https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-glibc-2.34-pthread.patch.bz2
15
"
14 16

  
15 17
LICENSE="torque-2.5"
16 18
SLOT="0"
17
KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
19
KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
18 20
IUSE="autorun cgroups cpusets +crypt doc munge nvidia quickcommit server +syslog tk"
19 21

  
20 22
DEPEND_COMMON="
......
30 32
		dev-lang/tcl:0=
31 33
	)
32 34
	syslog? ( virtual/logger )
33
	!!games-util/qstat"
35
	!!games-util/qstat
36
"
34 37

  
35 38
# libncurses.so is only needed for configure check on readline
36
DEPEND="${DEPEND_COMMON}
39
DEPEND="
40
	${DEPEND_COMMON}
37 41
	sys-libs/ncurses:*
38
	!!sys-cluster/slurm"
42
	!!sys-cluster/slurm
43
"
39 44

  
40
RDEPEND="${DEPEND_COMMON}
45
RDEPEND="
46
	${DEPEND_COMMON}
41 47
	crypt? ( virtual/openssh )
42 48
	!crypt? ( net-misc/netkit-rsh )
43
	!dev-libs/uthash"
49
	!dev-libs/uthash
50
"
44 51

  
45 52
# Torque should depend on dev-libs/uthash but that's pretty much impossible
46 53
# to patch in as they ship with a broken configure such that files referenced
......
157 164
	newconfd "${FILESDIR}"/${PN}-conf.d-munge ${PN}
158 165
	newinitd "${FILESDIR}"/trqauthd-init.d trqauthd
159 166
	newenvd "${FILESDIR}"/${PN}-env.d 25${PN}
167

  
168
	find "${ED}" -name '*.la' -delete || die
160 169
}
161 170

  
162 171
pkg_preinst() {
Thank you!