From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3C1C0138350 for ; Thu, 5 Mar 2020 19:16:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74496E075F; Thu, 5 Mar 2020 19:16:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 41989E075F for ; Thu, 5 Mar 2020 19:16:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9DCC434ED45 for ; Thu, 5 Mar 2020 19:16:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12FAB145 for ; Thu, 5 Mar 2020 19:16:36 +0000 (UTC) From: "Ian Stakenvicius" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Stakenvicius" Message-ID: <1583435788.e9eca8ffeb8fb002255605616789264880d3a2d2.axs@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/torque/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/torque/torque-6.0.4-r1.ebuild X-VCS-Directories: sys-cluster/torque/ X-VCS-Committer: axs X-VCS-Committer-Name: Ian Stakenvicius X-VCS-Revision: e9eca8ffeb8fb002255605616789264880d3a2d2 X-VCS-Branch: master Date: Thu, 5 Mar 2020 19:16:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: aa171f9c-66c2-418f-933c-23ec86a10681 X-Archives-Hash: ec1993e64a760c14cff41643ec49fc13 commit: e9eca8ffeb8fb002255605616789264880d3a2d2 Author: Ian Stakenvicius gentoo org> AuthorDate: Thu Mar 5 19:15:56 2020 +0000 Commit: Ian Stakenvicius gentoo org> CommitDate: Thu Mar 5 19:16:28 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9eca8ff sys-cluster/torque: drop broken USE=drmaa, fix doc and econf warn -Fixed the documentation link in pkg_postinst -Dropped USE=drmaa as its broken and upstream hasn't done anything with the code since torque-2 -Removed the --disable-geometry-request config option Closes: https://bugs.gentoo.org/697124 Package-Manager: Portage-2.3.79, Repoman-2.3.16 Signed-off-by: Ian Stakenvicius gentoo.org> sys-cluster/torque/torque-6.0.4-r1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-cluster/torque/torque-6.0.4-r1.ebuild b/sys-cluster/torque/torque-6.0.4-r1.ebuild index 456675c959f..6f18c025266 100644 --- a/sys-cluster/torque/torque-6.0.4-r1.ebuild +++ b/sys-cluster/torque/torque-6.0.4-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/adaptivecomputing/torque/archive/6a0b37f85c7d644e921 LICENSE="torque-2.5" SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="autorun cgroups cpusets +crypt doc drmaa kernel_linux libressl munge nvidia quickcommit server +syslog tk" +IUSE="autorun cgroups cpusets +crypt doc kernel_linux libressl munge nvidia quickcommit server +syslog tk" DEPEND_COMMON=" sys-libs/zlib @@ -100,12 +100,11 @@ src_configure() { $(use_enable tk tcl-qstat) \ $(use_enable syslog) \ $(use_enable server) \ - $(use_enable drmaa) \ + --disable-drmaa \ $(use_enable munge munge-auth) \ $(use_enable nvidia nvidia-gpus) \ $(usex crypt "--with-rcp=scp" "--with-rcp=mom_rcp") \ $(usex kernel_linux $(use_enable cpusets cpuset) --disable-cpuset) \ - $(usex kernel_linux $(use_enable cpusets geometry-request) --disable-geometry-request) \ $(usex kernel_linux $(use_enable cgroups) --disable-cgroups) \ $(use_enable autorun) \ $(use_enable quickcommit) \ @@ -113,6 +112,7 @@ src_configure() { --with-environ=/etc/pbs_environment \ --with-default-server=${PBS_SERVER_NAME} \ --disable-gcc-warnings \ + --disable-silent-rules \ --with-tcp-retry-limit=2 \ --without-loadlibfile } @@ -174,6 +174,6 @@ pkg_postinst() { if [[ -z "${REPLACING_VERSIONS}" ]] ; then elog "If this is the first time torque has been installed, then you are not" elog "ready to start the server. Please refer to the documentation located at:" - elog "http://docs.adaptivecomputing.com/torque/${PN//./-}/adminGuide/help.htm#topics/torque/1-installConfig/initializeConfigOnServer.htm" + elog "http://docs.adaptivecomputing.com/torque/${PV//./-}/adminGuide/torquehelp.htm#topics/torque/1-installConfig/initializeConfigOnServer.htm" fi }