From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 24 06:43:24 2020 Received: (at submit) by debbugs.gnu.org; 24 Jul 2020 10:43:24 +0000 Received: from localhost ([127.0.0.1]:46944 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jyvAh-0005bt-Mp for submit@debbugs.gnu.org; Fri, 24 Jul 2020 06:43:23 -0400 Received: from lists.gnu.org ([209.51.188.17]:49392) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jyvAe-0005bk-UZ for submit@debbugs.gnu.org; Fri, 24 Jul 2020 06:43:22 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:53714) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jyvAe-0006X6-L3 for guix-patches@gnu.org; Fri, 24 Jul 2020 06:43:20 -0400 Received: from tobias.gr ([2a02:c205:2020:6054::1]:45284) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jyvAc-0003IN-L2 for guix-patches@gnu.org; Fri, 24 Jul 2020 06:43:20 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id 62ac1eea for ; Fri, 24 Jul 2020 10:43:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to :subject:date:message-id:mime-version:content-transfer-encoding; s=2018; i=me@tobias.gr; bh=6T+UExqmn5fuMo+568XZyXfj76s+/w1/A0aq tOTpOR4=; b=FDXqeX+PQ8tfkNC3D4yWQu46rJghU5JSz0wZKz8AXxsMAZTWfG6C E7AfCjHstQ/ktrI0YrJI/ou9ndsrcqm34NOJIdqMWuew8MICEIRsHm1UOwo9gJD2 tgprymcKjtWK2QTIO/ImeJQ4O2/g18Ch3gX185WXheW+CfI+DFpr+64WzxhxVffE mWQab2jDnIqYtBclII5LJzUOSZmVnddcu5Y8Pa9wO7qgmkARqpIUcBalE5ZrnWA2 /qgnwrxaWC/J5AGRDB2hZiM44eSBh+QL02Ws8C432/C5R9sN2MLMKptwXm5aIrsi Ro5SGHmAEes6wGVy1zF5uQsCDM9ny0d6Aw== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 612dae42 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Fri, 24 Jul 2020 10:43:29 +0000 (UTC) From: Tobias Geerinckx-Rice To: guix-patches@gnu.org Subject: [PATCH] doc: Extend tlp-service-type example. Date: Fri, 24 Jul 2020 12:43:07 +0200 Message-Id: <20200724104307.30992-1-me@tobias.gr> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2a02:c205:2020:6054::1; envelope-from=me@tobias.gr; helo=tobias.gr X-detected-operating-system: by eggs.gnu.org: No matching host in p0f cache. That's all we know. X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * doc/guix.texi (Power Management Services): Demonstrate tlp-configuration usage. Suggested by rovanion on #guix. --- doc/guix.texi | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index fb1c66dcf4..56085865fa 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -23490,17 +23490,17 @@ source is detected. More information can be found at @uref{https://linrunner.de/en/tlp/tlp.html, TLP home page}. @deffn {Scheme Variable} tlp-service-type -The service type for the TLP tool. Its value should be a valid -TLP configuration (see below). To use the default settings, simply -write: +The service type for the TLP tool. The default settings are optimised +for battery life on most systems, but you can tweak them to your heart's +content by passing a valid @code{tlp-configuration} as its value: @lisp -(service tlp-service-type) +(service tlp-service-type + (tlp-configuration + (cpu-scaling-governor-on-ac (list "performance")) + (sched-powersave-on-bat? #t))) @end lisp @end deffn -By default TLP does not need much configuration but most TLP parameters -can be tweaked using @code{tlp-configuration}. - Each parameter definition is preceded by its type; for example, @samp{boolean foo} indicates that the @code{foo} parameter should be specified as a boolean. Types starting with -- 2.27.0 From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 24 18:55:48 2020 Received: (at 42516) by debbugs.gnu.org; 24 Jul 2020 22:55:48 +0000 Received: from localhost ([127.0.0.1]:48927 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jz6bT-0001Lw-Qh for submit@debbugs.gnu.org; Fri, 24 Jul 2020 18:55:48 -0400 Received: from eggs.gnu.org ([209.51.188.92]:52328) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jz6bS-0001Lk-FT for 42516@debbugs.gnu.org; Fri, 24 Jul 2020 18:55:46 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:34860) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jz6bN-0004oK-4Y; Fri, 24 Jul 2020 18:55:41 -0400 Received: from [2605:6000:1a0d:48fb::e9] (port=59220 helo=lenovo-t430) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jz6bI-0007z8-3j; Fri, 24 Jul 2020 18:55:40 -0400 From: Brett Gilio To: Tobias Geerinckx-Rice Subject: Re: [bug#42516] [PATCH] doc: Extend tlp-service-type example. References: <20200724104307.30992-1-me@tobias.gr> Date: Fri, 24 Jul 2020 17:55:47 -0500 In-Reply-To: <20200724104307.30992-1-me@tobias.gr> (Tobias Geerinckx-Rice's message of "Fri, 24 Jul 2020 12:43:07 +0200") Message-ID: <871rl0frpo.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42516 Cc: 42516@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Tobias Geerinckx-Rice writes: > @deffn {Scheme Variable} tlp-service-type > -The service type for the TLP tool. Its value should be a valid > -TLP configuration (see below). To use the default settings, simply > -write: > +The service type for the TLP tool. The default settings are optimised > +for battery life on most systems, but you can tweak them to your heart's > +content by passing a valid @code{tlp-configuration} as its value: > @lisp > -(service tlp-service-type) > +(service tlp-service-type > + (tlp-configuration > + (cpu-scaling-governor-on-ac (list "performance")) > + (sched-powersave-on-bat? #t))) > @end lisp > @end deffn > > -By default TLP does not need much configuration but most TLP parameters > -can be tweaked using @code{tlp-configuration}. > - > Each parameter definition is preceded by its type; for example, > @samp{boolean foo} indicates that the @code{foo} parameter > should be specified as a boolean. Types starting with I would replace "as its value:" with "to the service type:", so it reads "... but you can tweak them to your heart's content by passing a valid tlp-configuration to the service type:" Otherwise, it looks great to me! Brett Gilio From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 25 13:21:40 2020 Received: (at 42516) by debbugs.gnu.org; 25 Jul 2020 17:21:40 +0000 Received: from localhost ([127.0.0.1]:51056 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jzNrf-0006e1-W2 for submit@debbugs.gnu.org; Sat, 25 Jul 2020 13:21:40 -0400 Received: from eggs.gnu.org ([209.51.188.92]:51204) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jzNrb-0006dm-4q for 42516@debbugs.gnu.org; Sat, 25 Jul 2020 13:21:38 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:47528) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jzNrU-0004uZ-Cn; Sat, 25 Jul 2020 13:21:28 -0400 Received: from 84-52-226.102.3p.ntebredband.no ([84.52.226.102]:45310 helo=localhost) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jzNrT-0003Ta-V7; Sat, 25 Jul 2020 13:21:28 -0400 From: Marius Bakke To: Brett Gilio , Tobias Geerinckx-Rice Subject: Re: [bug#42516] [PATCH] doc: Extend tlp-service-type example. In-Reply-To: <871rl0frpo.fsf@gnu.org> References: <20200724104307.30992-1-me@tobias.gr> <871rl0frpo.fsf@gnu.org> Date: Sat, 25 Jul 2020 19:21:10 +0200 Message-ID: <877durse7t.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42516 Cc: 42516@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Brett Gilio writes: > Tobias Geerinckx-Rice writes: > >> @deffn {Scheme Variable} tlp-service-type >> -The service type for the TLP tool. Its value should be a valid >> -TLP configuration (see below). To use the default settings, simply >> -write: >> +The service type for the TLP tool. The default settings are optimised >> +for battery life on most systems, but you can tweak them to your heart's >> +content by passing a valid @code{tlp-configuration} as its value: >> @lisp >> -(service tlp-service-type) >> +(service tlp-service-type >> + (tlp-configuration >> + (cpu-scaling-governor-on-ac (list "performance")) >> + (sched-powersave-on-bat? #t))) >> @end lisp >> @end deffn >>=20=20 >> -By default TLP does not need much configuration but most TLP parameters >> -can be tweaked using @code{tlp-configuration}. >> - >> Each parameter definition is preceded by its type; for example, >> @samp{boolean foo} indicates that the @code{foo} parameter >> should be specified as a boolean. Types starting with > > I would replace "as its value:" with "to the service type:", so it reads > "... but you can tweak them to your heart's content by passing a valid > tlp-configuration to the service type:" Something about "tweak to your heart's content" rubs me the wrong way, though I can't really explain why. It feels like the manual is passive-aggressively mocking me for trying to understand how to configure the thing. But that's probably just me. :-) --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAl8cagYACgkQoqBt8qM6 VPpoQwgA00InE2LcrkZ9rVV7vNxEUP0gucmixBhif84aTBIWaIfB9RdAyNsjpOBd cSXH6BnEnk9VhqdVKDgltshKf5XIHYrxCdNb78IMoQ2LqCLm7SSrU5+u0beY1/91 3xjmipx8Xvus3AKDc8NzmidM56KKxSRseGolqPUZdH/0dxSg/ZMGJYHDs5lPBiup FH0aLtv/IiUP2UBdmgKQG+SODJGT83WyAXEzMWlQBYDA3CgI2I14XL8sVHeOdP04 Y0B4tCTuJ3/SfByZf9O0NT9OwU9pAYy5EaZA4j7E1hfwuYv8upXOZ8gf97hiveQ1 a75yrhbovLKHacsoQ5G8AsXoTSTzOQ== =5nqU -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 25 14:45:47 2020 Received: (at 42516) by debbugs.gnu.org; 25 Jul 2020 18:45:47 +0000 Received: from localhost ([127.0.0.1]:51130 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jzPB5-0000FG-20 for submit@debbugs.gnu.org; Sat, 25 Jul 2020 14:45:47 -0400 Received: from tobias.gr ([80.241.217.52]:53600) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jzPB3-0000F6-9N for 42516@debbugs.gnu.org; Sat, 25 Jul 2020 14:45:46 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id 977f6add; Sat, 25 Jul 2020 18:45:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to:cc :subject:references:in-reply-to:date:message-id:mime-version :content-type; s=2018; i=me@tobias.gr; bh=m2jYgtZJmGO+uWhxydyHMV Hm58vRmMrMWtsF+l4xcs4=; b=H963dwwfgr+11usj/Opy8pnQ3VJqaHWaz+MWyB 1rvlPrSpA4VcCDOAB4mSHlerfdI7S8H7fEYKl2NoVxc7uOpGCAw8vuMxQIV0ol7H hUgo6KFDxH4ej/7ycjgm5jfXCUmYHAnVeD6RBmNjzBVFd28jDSPEnuzqbZCcHL4k CK53jy3mCLhcbSME4U5jNourHS9ziOb/mumAZkuaAewiu9NdeVgN7OAMe9IsFc5O Vm++XW2OEt/Ar1068oiDz6Hlpr3SQDKDDUcoZby/C8I3res0F8sUVPNsoq0LvPS6 Xl03GimCSIGCE+kKVqLhWS6YoLhIZM010LHpaWks0JDL0sAg== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id bd65168a (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Sat, 25 Jul 2020 18:45:58 +0000 (UTC) BIMI-Selector: v=BIMI1; s=default; From: Tobias Geerinckx-Rice To: Brett Gilio Subject: Re: [bug#42516] [PATCH] doc: Extend tlp-service-type example. References: <20200724104307.30992-1-me@tobias.gr> <871rl0frpo.fsf@gnu.org> In-reply-to: <871rl0frpo.fsf@gnu.org> Date: Sat, 25 Jul 2020 20:45:43 +0200 Message-ID: <87imebe8mg.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42516 Cc: 42516@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Brett, Brett Gilio =E5=86=99=E9=81=93=EF=BC=9A >> -The service type for the TLP tool. Its value should be a=20 >> valid >> -TLP configuration (see below). To use the default settings,=20 >> simply >> -write: >> +The service type for the TLP tool. The default settings are=20 >> optimised >> +for battery life on most systems, but you can tweak them to=20 >> your heart's >> +content by passing a valid @code{tlp-configuration} as its=20 >> value: [=E2=80=A6] > I would replace "as its value:" with "to the service type:", so=20 > it reads > "... but you can tweak them to your heart's content by passing a=20 > valid > tlp-configuration to the service type:" Ding. You picked up on the same niggle that bugged me =E2=80=94 both in=20 the original & here. I thought I'd just stared at it for too=20 long. =E2=80=98Value=E2=80=99 is a reference to the terminology used in (gnu serv= ices).=20 =E2=80=98To the service type=E2=80=99 sounds less accurate. I find the sen= tence=20 close to clunky is it is; what about a short and sweet: +The service type for the TLP tool. The default settings are=20 optimised +for battery life on most systems, but you can tweak them to your=20 heart's +content by adding a valid @code{tlp-configuration}: ^^^^^^ Now I've definitely stared at this for too long. How typical for=20 a prose patch :-) > Otherwise, it looks great to me! Thanks, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQT12iAyS4c9C3o4dnINsP+IT1VteQUCXxx91wAKCRANsP+IT1Vt ecFcAQDR3nj7G+cR0A6w/NWQs86Lx1N/BEAZiYnX0Txg5UdszwD9HdvbEXyq+rPc +5FKrJWrGwWi2g1xcV7JwwLzNidiOAk= =MM8l -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 25 15:54:27 2020 Received: (at 42516) by debbugs.gnu.org; 25 Jul 2020 19:54:28 +0000 Received: from localhost ([127.0.0.1]:51198 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jzQFX-0001vP-Mw for submit@debbugs.gnu.org; Sat, 25 Jul 2020 15:54:27 -0400 Received: from tobias.gr ([80.241.217.52]:43428) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jzQFV-0001vF-At for 42516@debbugs.gnu.org; Sat, 25 Jul 2020 15:54:26 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id d80745e5; Sat, 25 Jul 2020 19:54:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to:cc :subject:references:in-reply-to:date:message-id:mime-version :content-type; s=2018; i=me@tobias.gr; bh=IOB3pj6lmP6ze0ZsAkQvA8 wZtgjyz4owiel4JWFAqq0=; b=gGZAl0+Ih1sG54NWEYH8BoTb8geEtYmD6+j9Ct aSENLhblVSjofL2w1oSdJjY8qsW4+OHBKOQbrN1igYkdQbLibV68WXsTXgEUSSsj lrnyyMlWfXDOlnWG8Cllm+gjgzGpgHb/j0JPvE7BsV9ughkYnFtezgP2rKamPfwI PbdJpBLj4aLWSC8u4NyAMr6GV6mtONX2sw2DZgIs4ugRszuLu3ZF2137E8k9Lg/Q cC/I3zwtZv3nAKjJJQDbklV7R+y66bgLFxgqVyVcCVkPk5/qhm6bPmbW5UiVvr38 RL/Lh8Nrc+5zuTrpaN1Uk8OGzBfKLMZvzqWP6SjGK+kBCTOA== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 47d7c9fe (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Sat, 25 Jul 2020 19:54:39 +0000 (UTC) BIMI-Selector: v=BIMI1; s=default; From: Tobias Geerinckx-Rice To: Marius Bakke Subject: Re: [bug#42516] [PATCH] doc: Extend tlp-service-type example. References: <20200724104307.30992-1-me@tobias.gr> <871rl0frpo.fsf@gnu.org> <877durse7t.fsf@gnu.org> In-reply-to: <877durse7t.fsf@gnu.org> Date: Sat, 25 Jul 2020 21:54:23 +0200 Message-ID: <87ft9fe5g0.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42516 Cc: 42516@debbugs.gnu.org, Brett Gilio X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Marius Bakke =E5=86=99=E9=81=93=EF=BC=9A > passive-aggressively mocking me Wow. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQT12iAyS4c9C3o4dnINsP+IT1VteQUCXxyN7wAKCRANsP+IT1Vt eTIaAQDRDdFu9kYtJQle1etAXxHUP0EMtIu/CCHJ2N6fM6ZJEwEAtIpy67bQpU3l /6K9eODHJCfJKQ+NV0XKbUOQ0Z5HTAs= =d8Yi -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 25 17:01:01 2020 Received: (at 42516) by debbugs.gnu.org; 25 Jul 2020 21:01:01 +0000 Received: from localhost ([127.0.0.1]:51252 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jzRHw-0003Zc-Om for submit@debbugs.gnu.org; Sat, 25 Jul 2020 17:01:01 -0400 Received: from eggs.gnu.org ([209.51.188.92]:34884) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jzRHr-0003ZA-Pk for 42516@debbugs.gnu.org; Sat, 25 Jul 2020 17:00:56 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:50375) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jzRHl-0005CD-8f; Sat, 25 Jul 2020 17:00:49 -0400 Received: from 84-52-226.102.3p.ntebredband.no ([84.52.226.102]:34972 helo=localhost) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jzRHk-0002zW-9s; Sat, 25 Jul 2020 17:00:48 -0400 From: Marius Bakke To: Tobias Geerinckx-Rice Subject: Re: [bug#42516] [PATCH] doc: Extend tlp-service-type example. In-Reply-To: <87ft9fe5g0.fsf@nckx> References: <20200724104307.30992-1-me@tobias.gr> <871rl0frpo.fsf@gnu.org> <877durse7t.fsf@gnu.org> <87ft9fe5g0.fsf@nckx> Date: Sat, 25 Jul 2020 23:00:08 +0200 Message-ID: <87v9ibqpif.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42516 Cc: 42516@debbugs.gnu.org, Brett Gilio X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Tobias Geerinckx-Rice writes: > Marius Bakke =E5=86=99=E9=81=93=EF=BC=9A >> passive-aggressively mocking me > > Wow. I know, right. It does not make any sense. So LGTM rationally... --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAl8cnVgACgkQoqBt8qM6 VPrVAQf/ds5im2t+8OwcsABcDxfEdwpVBDmL69AO6l+1j/7VWLMCGpmhY1WacnCv ji8wvPyoG1byeunuyKFpDIq9i9eYoX2BylCAbMbgUw4zVfilMm1oti/71okk0uXr xlYH1NLsZXBZVCBjFq7xAjkclProV7Hv8lqKKjspProqiBLNghluZRtTZYQn/Nro DhQcvWt1dt0oU5JRhfh8VRvM7190/9ecfIfduskv3pMtofPmFqSCmJgDhPMgWxb+ ionC/ARc9msvJre+qEvACrndhOcbRUgZzORGmAerPV+GUJ8TuzCdYvoIne8wbRnF HypWh4otR3wSpXB5x8ikz6ETXQetPA== =YXlg -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Wed Jul 29 09:23:51 2020 Received: (at 42516-done) by debbugs.gnu.org; 29 Jul 2020 13:23:51 +0000 Received: from localhost ([127.0.0.1]:60371 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k0m3j-0000Ou-L1 for submit@debbugs.gnu.org; Wed, 29 Jul 2020 09:23:51 -0400 Received: from tobias.gr ([80.241.217.52]:48934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k0m3h-0000Ol-L3 for 42516-done@debbugs.gnu.org; Wed, 29 Jul 2020 09:23:50 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id 99985d58; Wed, 29 Jul 2020 13:24:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to:cc :subject:references:in-reply-to:date:message-id:mime-version :content-type; s=2018; i=me@tobias.gr; bh=9VM5ssN2giQ7IeR0bVkPD8 iYT4xwJggz0hv7f/DqXtw=; b=o/nY7GYgg4H7SEzo563X0fB7Lkp80G5Gaug5mY DqR1ptT8NKt43JbsVQIz/tZNzLOcT8hO3UZTpVPubIoDYufnLESbQBhs5VLYe993 GvjXSi9iEzN5j7yFD0CwvCgVianuEGmjUq0KBgZ/fNaCsUvtvE/vBTmauTHX7X6H ycrRsj6p6DKuLAZyVr/Ajcs89WBgfMHxSWup6vcRtS6RY6iuVPEnEu8Fh1U3SmE4 0EQY5ous++yAUBAEyjgcbdCCo0NBP6Qw4EAyKWRRL2xR9HqF0TekgkIAl5OJ5aNu ZjNXd/rSBIuxKtHcxVjuo+uTj7m8piL/VSqNMDSwcxHswa6w== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 2140ba7b (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Wed, 29 Jul 2020 13:24:05 +0000 (UTC) BIMI-Selector: v=BIMI1; s=default; From: Tobias Geerinckx-Rice To: Marius Bakke Subject: Re: [bug#42516] [PATCH] doc: Extend tlp-service-type example. References: <20200724104307.30992-1-me@tobias.gr> <871rl0frpo.fsf@gnu.org> <877durse7t.fsf@gnu.org> <87ft9fe5g0.fsf@nckx> <87v9ibqpif.fsf@gnu.org> In-reply-to: <87v9ibqpif.fsf@gnu.org> Date: Wed, 29 Jul 2020 15:23:49 +0200 Message-ID: <87v9i6xxne.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42516-done Cc: Brett Gilio , 42516-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Marius Bakke =E5=86=99=E9=81=93=EF=BC=9A > Tobias Geerinckx-Rice writes: >> Wow. > > I know, right. It does not make any sense. So LGTM=20 > rationally... I was so #attacked. Pushed as=20 cdc2e2bba959ec3afa7de6f9a867c862982e079a. Thank you Brett & Marius! T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQT12iAyS4c9C3o4dnINsP+IT1VteQUCXyF4ZQAKCRANsP+IT1Vt eVQZAQDNPHQ4t2nr3sapinkLu+tw/5eaJdLYyViirLfPyUFb4QEAsL0WCX27TIPk 5zCalXtSp2PSTxqpGEVuTOtHX575pw4= =Exgn -----END PGP SIGNATURE----- --=-=-=-- From unknown Sun Jun 22 11:49:45 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 27 Aug 2020 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator