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 628171382C5 for ; Mon, 24 May 2021 10:35:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FCE7E0831; Mon, 24 May 2021 10:35:26 +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 27723E0831 for ; Mon, 24 May 2021 10:35:26 +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 C6EC63404A5 for ; Mon, 24 May 2021 10:35:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 20C7D795 for ; Mon, 24 May 2021 10:35:23 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1621763660.e8a781295a5ea78570c5f186317a7cf4d5ae6758.ulm@gentoo> Subject: [gentoo-commits] proj/pms:eapi-8 commit in: / X-VCS-Repository: proj/pms X-VCS-Files: ebuild-vars.tex X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: e8a781295a5ea78570c5f186317a7cf4d5ae6758 X-VCS-Branch: eapi-8 Date: Mon, 24 May 2021 10:35:23 +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: 1ae16f7d-e0b8-45b4-934c-a2684d7bd871 X-Archives-Hash: dbf9f35cc2bc97ebf9ec900f5ec1452c commit: e8a781295a5ea78570c5f186317a7cf4d5ae6758 Author: Ulrich Müller gentoo org> AuthorDate: Wed May 19 14:54:00 2021 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun May 23 09:54:20 2021 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=e8a78129 Recognise "test_network" as token in PROPERTIES This was originally proposed as a RESTRICT token for EAPI 8, but implementing it retroactively in PROPERTIES (where it is optional from the spec's point of view) appears to be more feasible. Bug: https://bugs.gentoo.org/553696 Signed-off-by: Ulrich Müller gentoo.org> ebuild-vars.tex | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ebuild-vars.tex b/ebuild-vars.tex index fca8565..bbd286f 100644 --- a/ebuild-vars.tex +++ b/ebuild-vars.tex @@ -225,6 +225,8 @@ The following tokens are permitted inside \t{PROPERTIES}: \item[interactive] The package may require interaction with the user via the tty. \item[live] The package uses ``live'' source code that may vary each time that the package is installed. +\item[test_network] The package manager may run tests that require an internet connection, even if + the ebuild has \t{RESTRICT=test}. \end{description} Package managers may recognise other tokens. Ebuilds may not rely upon any token being supported. 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 666521382C5 for ; Thu, 27 May 2021 16:43:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85832E091D; Thu, 27 May 2021 16:43:38 +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 68741E091D for ; Thu, 27 May 2021 16:43:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 1DB75335CA3 for ; Thu, 27 May 2021 16:43:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 863C8793 for ; Thu, 27 May 2021 16:43:35 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1621763660.e8a781295a5ea78570c5f186317a7cf4d5ae6758.ulm@gentoo> Subject: [gentoo-commits] proj/pms:master commit in: / X-VCS-Repository: proj/pms X-VCS-Files: ebuild-vars.tex X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: e8a781295a5ea78570c5f186317a7cf4d5ae6758 X-VCS-Branch: master Date: Thu, 27 May 2021 16:43:35 +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: 956aeb40-217e-4db1-9c6e-d36b2266fbbf X-Archives-Hash: 7369366088382adc7ff64623ce7266d2 Message-ID: <20210527164335.MOAMIVJ91DSBBIEEQCadVebuJ2JWeUvjWX4wclmdvQ8@z> commit: e8a781295a5ea78570c5f186317a7cf4d5ae6758 Author: Ulrich Müller gentoo org> AuthorDate: Wed May 19 14:54:00 2021 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun May 23 09:54:20 2021 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=e8a78129 Recognise "test_network" as token in PROPERTIES This was originally proposed as a RESTRICT token for EAPI 8, but implementing it retroactively in PROPERTIES (where it is optional from the spec's point of view) appears to be more feasible. Bug: https://bugs.gentoo.org/553696 Signed-off-by: Ulrich Müller gentoo.org> ebuild-vars.tex | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ebuild-vars.tex b/ebuild-vars.tex index fca8565..bbd286f 100644 --- a/ebuild-vars.tex +++ b/ebuild-vars.tex @@ -225,6 +225,8 @@ The following tokens are permitted inside \t{PROPERTIES}: \item[interactive] The package may require interaction with the user via the tty. \item[live] The package uses ``live'' source code that may vary each time that the package is installed. +\item[test_network] The package manager may run tests that require an internet connection, even if + the ebuild has \t{RESTRICT=test}. \end{description} Package managers may recognise other tokens. Ebuilds may not rely upon any token being supported. 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 AC75C1382C5 for ; Mon, 24 May 2021 08:54:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2522E0802; Mon, 24 May 2021 08:54:21 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 CC9D2E0802 for ; Mon, 24 May 2021 08:54:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 F1BEC340BEA for ; Mon, 24 May 2021 08:54:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC437795 for ; Mon, 24 May 2021 08:54:19 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1621763660.e8a781295a5ea78570c5f186317a7cf4d5ae6758.ulm@gentoo> Subject: [gentoo-commits] proj/pms:retroactive commit in: / X-VCS-Repository: proj/pms X-VCS-Files: ebuild-vars.tex X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: e8a781295a5ea78570c5f186317a7cf4d5ae6758 X-VCS-Branch: retroactive Date: Mon, 24 May 2021 08:54:19 +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: 4f9486d6-6c92-46c8-92b5-a17b4ff5bb05 X-Archives-Hash: b7807605a400abd198239f5d6f730fbb Message-ID: <20210524085419.px2ktvgAKgTCbztxO4suwdiJQKMZDbTsHycHqsYxoD0@z> commit: e8a781295a5ea78570c5f186317a7cf4d5ae6758 Author: Ulrich Müller gentoo org> AuthorDate: Wed May 19 14:54:00 2021 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun May 23 09:54:20 2021 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=e8a78129 Recognise "test_network" as token in PROPERTIES This was originally proposed as a RESTRICT token for EAPI 8, but implementing it retroactively in PROPERTIES (where it is optional from the spec's point of view) appears to be more feasible. Bug: https://bugs.gentoo.org/553696 Signed-off-by: Ulrich Müller gentoo.org> ebuild-vars.tex | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ebuild-vars.tex b/ebuild-vars.tex index fca8565..bbd286f 100644 --- a/ebuild-vars.tex +++ b/ebuild-vars.tex @@ -225,6 +225,8 @@ The following tokens are permitted inside \t{PROPERTIES}: \item[interactive] The package may require interaction with the user via the tty. \item[live] The package uses ``live'' source code that may vary each time that the package is installed. +\item[test_network] The package manager may run tests that require an internet connection, even if + the ebuild has \t{RESTRICT=test}. \end{description} Package managers may recognise other tokens. Ebuilds may not rely upon any token being supported.