From unknown Sat Sep 13 02:39:37 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#42335 <42335@debbugs.gnu.org> To: bug#42335 <42335@debbugs.gnu.org> Subject: Status: [PATCH guix-past] Add old versions of RGBDS Reply-To: bug#42335 <42335@debbugs.gnu.org> Date: Sat, 13 Sep 2025 09:39:37 +0000 retitle 42335 [PATCH guix-past] Add old versions of RGBDS reassign 42335 guix-patches submitter 42335 Jakub K=C4=85dzio=C5=82ka severity 42335 normal tag 42335 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 12 12:02:29 2020 Received: (at submit) by debbugs.gnu.org; 12 Jul 2020 16:02:29 +0000 Received: from localhost ([127.0.0.1]:46651 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jueQv-0002pC-9t for submit@debbugs.gnu.org; Sun, 12 Jul 2020 12:02:29 -0400 Received: from lists.gnu.org ([209.51.188.17]:58858) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jueQs-0002p4-Kw for submit@debbugs.gnu.org; Sun, 12 Jul 2020 12:02:27 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:40696) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jueQs-0000L7-DV for guix-patches@gnu.org; Sun, 12 Jul 2020 12:02:26 -0400 Received: from pat.zlotemysli.pl ([37.59.186.212]:45432) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jueQn-0004B7-SA for guix-patches@gnu.org; Sun, 12 Jul 2020 12:02:26 -0400 Received: (qmail 16110 invoked by uid 1009); 12 Jul 2020 18:02:13 +0200 Received: from 188.123.215.55 (kuba@kadziolka.net@188.123.215.55) by pat.zlotemysli.pl (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25870. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(188.123.215.55):. Processed in 0.065558 secs); 12 Jul 2020 16:02:13 -0000 Received: from unknown (HELO localhost.localdomain) (kuba@kadziolka.net@188.123.215.55) by pat.zlotemysli.pl with AES256-SHA encrypted SMTP; 12 Jul 2020 18:02:12 +0200 From: =?UTF-8?q?Jakub=20K=C4=85dzio=C5=82ka?= To: guix-patches@gnu.org Subject: [PATCH guix-past] Add old versions of RGBDS Date: Sun, 12 Jul 2020 18:02:06 +0200 Message-Id: <20200712160206.6768-1-kuba@kadziolka.net> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=37.59.186.212; envelope-from=kuba@kadziolka.net; helo=pat.zlotemysli.pl X-detected-operating-system: by eggs.gnu.org: First seen = 2020/07/12 12:02:13 X-ACL-Warn: Detected OS = Linux 3.11 and newer X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_NONE=0.001, URIBL_BLOCKED=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) 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: -3.3 (---) * modules/past/packages/assembly.scm: New file. --- This patch adds quite a few old versions of RGBDS. The project has quite a history of small, possibly accidental breaking changes. As a measurement of the necessity of this many different versions, I looked into the git history of the Game Boy homebrew project that inspired this addition. The repository (which is unfortunately private) goes back to the days of 0.2.5, and for almost all versions in that time range, there exists a git commit that requires it. I am on the fence on including versions 0.3.4 and 0.3.6. Their changelog on GitHub was updated to warn of silent bugs with miscompilation potential, and are what the 'almost' above accounts for ;) I decided to omit them in the patch, hoping that this will prevent a lost soul or two from tripping over those dangerous (in terms of potential time loss) bugs. I did not include versions 0.1.0 and 0.1.1, as they fail to compile and I have no idea why. This is my first patch for guix-past, so any review remarks specific to pastraising are very much appreciated :) Regards, Jakub Kądziołka modules/past/packages/assembly.scm | 157 +++++++++++++++++++++++++++++ 1 file changed, 157 insertions(+) create mode 100644 modules/past/packages/assembly.scm diff --git a/modules/past/packages/assembly.scm b/modules/past/packages/assembly.scm new file mode 100644 index 0000000..8b6e4e0 --- /dev/null +++ b/modules/past/packages/assembly.scm @@ -0,0 +1,157 @@ +;;; Guix Past --- Packages from the past for GNU Guix. +;;; Copyright © 2020 Jakub Kądziołka +;;; +;;; This file is part of Guix Past. +;;; +;;; Guix Past is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; Guix Past is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with Guix Past. If not, see . + +(define-module (past packages assembly) + #:use-module (guix) + #:use-module (guix git-download) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (gnu packages assembly)) + +(define (rgbds-with-version version source-hash) + (package + (inherit rgbds) + (name "rgbds") + (version version) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rednex/rgbds.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 (base32 source-hash)))))) + +;; The tests are failing for the 0.2 releases, the ones before 0.2.3 don't even +;; provide them +(define (without-tests base-rgbds) + (package + (inherit base-rgbds) + (arguments + (substitute-keyword-arguments (package-arguments base-rgbds) + ((#:phases phases) + `(modify-phases ,phases + (delete 'check))))))) + +;; RGBDS versions before 0.1.2 fail to build. + +(define-public rgbds-0.1.2 + (let ((base-rgbds + (rgbds-with-version + "0.1.2" "1haqswx50hsgfanz9j17y437ciwvbq8lpw445zfiqipawh45a415"))) + (package + (inherit (without-tests base-rgbds)) + (license (license:non-copyleft "file://LICENSE"))))) + +(define-public rgbds-0.2.0 + (let ((base-rgbds + (rgbds-with-version + "0.2.0" "1q9jci95jrvgc2cyzpsskx92l4m3sv3jyy59bmld3qhqh3nw6jwd"))) + (package + (inherit (without-tests base-rgbds)) + (license (license:non-copyleft "file://LICENSE"))))) + +(define-public rgbds-0.2.1 + (let ((base-rgbds + (rgbds-with-version + "0.2.1" "06hxdq4b9y4bd8c89x4baia18s34814jikgj86d0hjxkqx4ki204"))) + (package + (inherit (without-tests base-rgbds)) + (license (license:non-copyleft "file://LICENSE"))))) + +(define-public rgbds-0.2.2 + (let ((base-rgbds + (rgbds-with-version + "0.2.2" "0ga6myr737wxvbldm886chxca2d6i5jnbzqac0xakf87il1i6kb3"))) + (package + (inherit (without-tests base-rgbds)) + (license (license:non-copyleft "file://LICENSE"))))) + +(define-public rgbds-0.2.3 + (let ((base-rgbds + (rgbds-with-version + "0.2.3" "05fkqrn0fiins61aq3iwzmkm0ii5ihqskv2xv0wk8xd8fp4j2ga1"))) + (package + (inherit (without-tests base-rgbds)) + (license (license:non-copyleft "file://LICENSE"))))) + +(define-public rgbds-0.2.4 + (let ((base-rgbds + (rgbds-with-version + "0.2.4" "0dwq0p9g1lci8sm12a2rfk0g33z2vr75x78zdf1g84djwbz8ipc6"))) + (package + (inherit (without-tests base-rgbds)) + (license (license:non-copyleft "file://LICENSE"))))) + +(define-public rgbds-0.2.5 + (let ((base-rgbds + (rgbds-with-version + "0.2.5" "11lri6p1pr3byxrmbz542263587smb4czq46vr1kyn94lxa3ikbp"))) + (package + (inherit (without-tests base-rgbds)) + (license (license:non-copyleft "file://LICENSE"))))) + +(define-public rgbds-0.3.0 + (let ((base-rgbds + (rgbds-with-version + "0.3.0" "19gk9lakrpn46waxvd4v8fa86xig006r1xvhgqw2acdc50xnxqmk"))) + (package + (inherit base-rgbds) + (license (license:non-copyleft "file://LICENSE.md"))))) + +(define-public rgbds-0.3.1 + (let ((base-rgbds + (rgbds-with-version + "0.3.1" "1bx5yhdyp22q3k9x2kly54pmq78aikx8pmygbhz34mgv8n5w4qss"))) + (package + (inherit base-rgbds) + (license (license:non-copyleft "file://LICENSE.md"))))) + +(define-public rgbds-0.3.2 + (let ((base-rgbds + (rgbds-with-version + "0.3.2" "034l1xqp46h7yjgbvszyky2gmvyy8cq1fcqsnj9c92mbsv81g9qh"))) + (package + (inherit base-rgbds) + (license (license:non-copyleft "file://LICENSE.md"))))) + +(define-public rgbds-0.3.3 + (let ((base-rgbds + (rgbds-with-version + "0.3.3" "1dsw01ylbfqjbwv13n6yxjyakqmlfsvmlzv6h83df5mpix6mjfxv"))) + (package + (inherit base-rgbds) + (license (license:non-copyleft "file://LICENSE.md"))))) + +;; Skipping 0.3.4 and 0.3.6: potentially silent bugs mentioned in release notes, +;; and the releases are short-lived. + +(define-public rgbds-0.3.5 + (rgbds-with-version "0.3.5" "1wxrvqrwg72rys4jhsk7id7lmvv40gw6xpn4sg29f8alfpc2bsry")) + +(define-public rgbds-0.3.7 + (rgbds-with-version "0.3.7" "1bj082zi8lxrkkbsg5kvx6k1hkl156pqbxpblpidamk6qxqyssb9")) + +(define-public rgbds-0.3.8 + (rgbds-with-version "0.3.8" "0db37z886026svhj6qnc3wk56sndbnz1vi41gn2k3bl6ppbnjlpk")) + +;; Skipping 0.3.9 - from release notes: +;; This version is missing definitions of the `__RGBDS_MAJOR__` etc. symbols. +;; Please use 0.3.10 instead, which rectifies this problem (and does not +;; introduce additional changes). + +(define-public rgbds-0.3.10 + (rgbds-with-version "0.3.10" "0752fbffxgxyf3jw2iij88l05dqhppgcxy7dvk82hp4wdg4cflpq")) -- 2.27.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Jul 21 12:33:15 2020 Received: (at 42335) by debbugs.gnu.org; 21 Jul 2020 16:33:15 +0000 Received: from localhost ([127.0.0.1]:40199 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jxvCd-0002kJ-6N for submit@debbugs.gnu.org; Tue, 21 Jul 2020 12:33:15 -0400 Received: from eggs.gnu.org ([209.51.188.92]:49534) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jxvCb-0002k3-2q for 42335@debbugs.gnu.org; Tue, 21 Jul 2020 12:33:13 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:59983) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jxvCV-0008Cc-7Y; Tue, 21 Jul 2020 12:33:07 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=55868 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jxvCU-0003T1-JZ; Tue, 21 Jul 2020 12:33:06 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= Subject: Re: [bug#42335] [PATCH guix-past] Add old versions of RGBDS References: <20200712160206.6768-1-kuba@kadziolka.net> Date: Tue, 21 Jul 2020 18:33:05 +0200 In-Reply-To: <20200712160206.6768-1-kuba@kadziolka.net> ("Jakub \=\?utf-8\?B\?S8SFZHppb8WCa2EiJ3M\=\?\= message of "Sun, 12 Jul 2020 18:02:06 +0200") Message-ID: <87v9ign7zy.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42335 Cc: 42335@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 (---) Hi Jakub, Jakub K=C4=85dzio=C5=82ka skribis: > * modules/past/packages/assembly.scm: New file. > --- > > This patch adds quite a few old versions of RGBDS. The project has quite > a history of small, possibly accidental breaking changes. As a > measurement of the necessity of this many different versions, I looked > into the git history of the Game Boy homebrew project that inspired this > addition. > > The repository (which is unfortunately private) goes back to the days > of 0.2.5, and for almost all versions in that time range, there exists > a git commit that requires it. > > I am on the fence on including versions 0.3.4 and 0.3.6. Their changelog > on GitHub was updated to warn of silent bugs with miscompilation > potential, and are what the 'almost' above accounts for ;) > I decided to omit them in the patch, hoping that this will prevent a > lost soul or two from tripping over those dangerous (in terms of > potential time loss) bugs. > > I did not include versions 0.1.0 and 0.1.1, as they fail to compile and > I have no idea why. > > This is my first patch for guix-past, so any review remarks specific to > pastraising are very much appreciated :) Nothing to say, this LGTM, nice work! You should now have a gitlab.inria.fr account. We need to add you to =E2=80=98.guix-authorizations=E2=80=99; will you use the same OpenPGP key a= s in Guix? Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Tue Jul 21 17:29:08 2020 Received: (at 42335) by debbugs.gnu.org; 21 Jul 2020 21:29:08 +0000 Received: from localhost ([127.0.0.1]:40557 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jxzoy-0001kx-DK for submit@debbugs.gnu.org; Tue, 21 Jul 2020 17:29:08 -0400 Received: from pat.zlotemysli.pl ([37.59.186.212]:49574) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jxzow-0001kn-5M for 42335@debbugs.gnu.org; Tue, 21 Jul 2020 17:29:06 -0400 Received: (qmail 2558 invoked by uid 1009); 21 Jul 2020 23:29:04 +0200 Received: from user-94-254-206-182.play-internet.pl (kuba@kadziolka.net@user-94-254-206-182.play-internet.pl) by pat.zlotemysli.pl (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25879. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(94.254.206.182):. Processed in 0.072445 secs); 21 Jul 2020 21:29:04 -0000 Received: from user-94-254-206-182.play-internet.pl (HELO gravity) (kuba@kadziolka.net@94.254.206.182) by pat.zlotemysli.pl with SMTP; 21 Jul 2020 23:29:04 +0200 Date: Tue, 21 Jul 2020 23:29:01 +0200 From: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#42335] [PATCH guix-past] Add old versions of RGBDS Message-ID: <20200721212901.62cphwttdurjdyda@gravity> References: <20200712160206.6768-1-kuba@kadziolka.net> <87v9ign7zy.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="hxr6qpw5hcan26xr" Content-Disposition: inline In-Reply-To: <87v9ign7zy.fsf@gnu.org> X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 42335 Cc: 42335@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: -1.0 (-) --hxr6qpw5hcan26xr Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jul 21, 2020 at 06:33:05PM +0200, Ludovic Court=C3=A8s wrote: > Hi Jakub, >=20 > Jakub K=C4=85dzio=C5=82ka skribis: >=20 > > * modules/past/packages/assembly.scm: New file. > > --- > > > > This patch adds quite a few old versions of RGBDS. The project has quite > > a history of small, possibly accidental breaking changes. As a > > measurement of the necessity of this many different versions, I looked > > into the git history of the Game Boy homebrew project that inspired this > > addition. > > > > The repository (which is unfortunately private) goes back to the days > > of 0.2.5, and for almost all versions in that time range, there exists > > a git commit that requires it. > > > > I am on the fence on including versions 0.3.4 and 0.3.6. Their changelog > > on GitHub was updated to warn of silent bugs with miscompilation > > potential, and are what the 'almost' above accounts for ;) > > I decided to omit them in the patch, hoping that this will prevent a > > lost soul or two from tripping over those dangerous (in terms of > > potential time loss) bugs. > > > > I did not include versions 0.1.0 and 0.1.1, as they fail to compile and > > I have no idea why. > > > > This is my first patch for guix-past, so any review remarks specific to > > pastraising are very much appreciated :) >=20 > Nothing to say, this LGTM, nice work! Thanks! > You should now have a gitlab.inria.fr account. We need to add you to > =E2=80=98.guix-authorizations=E2=80=99; will you use the same OpenPGP key= as in Guix? Nice! Yeah, I'll use the same key. Regards, Jakub K=C4=85dzio=C5=82ka --hxr6qpw5hcan26xr Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEE5Xa/ss9usT31cTO54xWnWEYTFWQFAl8XXhUACgkQ4xWnWEYT FWR1DBAAz8H75pLHtyMIQ0LAsjcnME3lx8qLyzZ/n0pvXUzmvPAmX3jG+yvSW/Dn HTX53LtmPboGbtBNYWWB0D48pTUIBHN58/mJIXkFZDH9Ry4HJPbSQ4pDcQ3iNl0M BQRdUSD+vRRt3RxPBVqlxs1JcKcJqLgoJavWYO5/znutWHyUPcbsfrxK+PtLivQ3 ZEDG5OhXhSEBAmabnkr/1FZioOmumAZzP2Cl/6qeBJIgJSMuAkUYUPKkzxFU0NUb H4N8ONXy5WiXMQL5xfv7WVAeppqVdPleyvOfaQkK81IwTmvdopNKTWLqywMa0cZ9 sMBYOYuFdZVzIEjNn/z+6BqFLXR9Kqhzgsnl0v2yB8fZ7q+B/2LVK/kpILFHNNtD HmwxWvdjbvbEIfXaJ6LPCFnR8sTc6SLC7nZUTUU9xsYoFd66VLEnlVq117AV52z9 GhFYZsBupQr3OD0GrtMYa/A2dKTDM1LIuT26JmSdZoyyUAzX7fp8BHOrNuo/kLqh WDK7J562B/Au4iudtDmBDj0eVZwZ/ZTkPWHdb6nEUsIp0cRNISDt+BQtOxe5vASy tNzQitJ1oRHpPt6YR10/bDV5IRdGTP1kAGZKfMZBP6WQZZHOpJa8h/8f4WBktWKE XYmTsyXiQBP5ycAbPh4OaP+ftwosHSBwlOmIBDccmn3DRecHjsc= =DQXs -----END PGP SIGNATURE----- --hxr6qpw5hcan26xr-- From debbugs-submit-bounces@debbugs.gnu.org Wed Jul 22 06:20:19 2020 Received: (at 42335) by debbugs.gnu.org; 22 Jul 2020 10:20:19 +0000 Received: from localhost ([127.0.0.1]:41318 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jyBrH-0001yq-BR for submit@debbugs.gnu.org; Wed, 22 Jul 2020 06:20:19 -0400 Received: from eggs.gnu.org ([209.51.188.92]:50372) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jyBrD-0001yW-7l for 42335@debbugs.gnu.org; Wed, 22 Jul 2020 06:20:18 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:46107) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jyBr7-0006Yj-HC; Wed, 22 Jul 2020 06:20:09 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=59024 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jyBr6-0007CJ-EE; Wed, 22 Jul 2020 06:20:09 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= Subject: Re: [bug#42335] [PATCH guix-past] Add old versions of RGBDS References: <20200712160206.6768-1-kuba@kadziolka.net> <87v9ign7zy.fsf@gnu.org> <20200721212901.62cphwttdurjdyda@gravity> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 5 Thermidor an 228 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Wed, 22 Jul 2020 12:20:07 +0200 In-Reply-To: <20200721212901.62cphwttdurjdyda@gravity> ("Jakub \=\?utf-8\?B\?S8SFZHppb8WCa2EiJ3M\=\?\= message of "Tue, 21 Jul 2020 23:29:01 +0200") Message-ID: <87a6zrkg14.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42335 Cc: 42335@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 (---) Hi, Jakub K=C4=85dzio=C5=82ka skribis: > On Tue, Jul 21, 2020 at 06:33:05PM +0200, Ludovic Court=C3=A8s wrote: [...] >> You should now have a gitlab.inria.fr account. We need to add you to >> =E2=80=98.guix-authorizations=E2=80=99; will you use the same OpenPGP ke= y as in Guix? > > Nice! Yeah, I'll use the same key. Done! You should be able to push now. Please do install the pre-push hook as noted in =E2=80=98README.md=E2=80=99, and let me know if anything i= s amiss. Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Wed Jul 22 18:48:04 2020 Received: (at 42335) by debbugs.gnu.org; 22 Jul 2020 22:48:04 +0000 Received: from localhost ([127.0.0.1]:43359 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jyNWu-0008MC-7W for submit@debbugs.gnu.org; Wed, 22 Jul 2020 18:48:04 -0400 Received: from pat.zlotemysli.pl ([37.59.186.212]:46840) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jyNWs-0008Lt-Q1 for 42335@debbugs.gnu.org; Wed, 22 Jul 2020 18:48:03 -0400 Received: (qmail 32634 invoked by uid 1009); 23 Jul 2020 00:48:01 +0200 Received: from user-94-254-154-173.play-internet.pl (kuba@kadziolka.net@user-94-254-154-173.play-internet.pl) by pat.zlotemysli.pl (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25880. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(94.254.154.173):. Processed in 0.052131 secs); 22 Jul 2020 22:48:01 -0000 Received: from user-94-254-154-173.play-internet.pl (HELO gravity) (kuba@kadziolka.net@94.254.154.173) by pat.zlotemysli.pl with SMTP; 23 Jul 2020 00:48:01 +0200 Date: Thu, 23 Jul 2020 00:47:59 +0200 From: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#42335] [PATCH guix-past] Add old versions of RGBDS Message-ID: <20200722224759.fjkulvgw37r4ot4r@gravity> References: <20200712160206.6768-1-kuba@kadziolka.net> <87v9ign7zy.fsf@gnu.org> <20200721212901.62cphwttdurjdyda@gravity> <87a6zrkg14.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="gpuhufnh7qhbtr6e" Content-Disposition: inline In-Reply-To: <87a6zrkg14.fsf@gnu.org> X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 42335 Cc: 42335@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: -1.0 (-) --gpuhufnh7qhbtr6e Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jul 22, 2020 at 12:20:07PM +0200, Ludovic Court=C3=A8s wrote: > Hi, >=20 > Jakub K=C4=85dzio=C5=82ka skribis: >=20 > > On Tue, Jul 21, 2020 at 06:33:05PM +0200, Ludovic Court=C3=A8s wrote: >=20 > [...] >=20 > >> You should now have a gitlab.inria.fr account. We need to add you to > >> =E2=80=98.guix-authorizations=E2=80=99; will you use the same OpenPGP = key as in Guix? > > > > Nice! Yeah, I'll use the same key. >=20 > Done! You should be able to push now. Please do install the pre-push > hook as noted in =E2=80=98README.md=E2=80=99, and let me know if anything= is amiss. Thank you. It seems that I don't have GitLab-level permissions for the repository, though. I tried to find the widget that lets me copy the ssh:// URL for pushing, but couldn't. I did see a "Request access" link, though. I clicked it, so you should see an access request in your notifications soon. Regards, Jakub K=C4=85dzio=C5=82ka --gpuhufnh7qhbtr6e Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEE5Xa/ss9usT31cTO54xWnWEYTFWQFAl8Ywh8ACgkQ4xWnWEYT FWTcFw/+LI7j6CgUnlWd09i/QH+2ey3qmcbVOI0bht5uPO43StXwe69VC841d2vO p7jQ0hFEhpXuSZvG/oYaEE6VatsYPagrAsy+GubVV48t3f4/oVqcA2dEzjt3RU5k LW5jKm+fc1edKCvqsDoOJawSPIRsEq7rC/Q87S6iUKY9F1t5H1tSteNC4s+pcxL0 L/+j4RIHKCxNlR19KzPeL5phfUbsEk6QS7BKdDzJPoWcH8bjbVRM+jZ5xNNxqX8Q lOHCGw3fLFbQrRSXNiFoAemuOwCCQOfzW4XHM5+GlRosOWDatCgjuEuQg7bH3qv6 ks9SBPJ/Kk35llhSuzBOE6GL7DAqSv8nGDGwGPP8YGZWYFI8tfx8GMSYK2tujOT/ XOri1M8mCJPkLAsTOaSIpmMFLvzyx2OCWIjPo4AmTKvfAD4zASdsG12UY6t3AEo8 GUb5qqBc7v9QHyN/WQwc1cO4ysHwDhp8Hsl5zGtUre27cguGz4iJjMZyYfZKkcHi h/0UhDABjPRhngA7uDGEdxygglRxKS+TxIoDAJJsTDzh47L8A82UbqPZ/riSEKEA j7LqbLQYUIUMAKmEidEg/f+GT9gFrmt8bH/12EHAYE7UO5+OtjHu8i9KFObpQvYN 0icwXBIGZ24V3aqBS/U+z5MHdoHnkMr+6xnClS6kgBSVGG521G0= =Bg/g -----END PGP SIGNATURE----- --gpuhufnh7qhbtr6e-- From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 23 03:51:58 2020 Received: (at 42335) by debbugs.gnu.org; 23 Jul 2020 07:51:58 +0000 Received: from localhost ([127.0.0.1]:43843 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jyW1F-00050Q-N3 for submit@debbugs.gnu.org; Thu, 23 Jul 2020 03:51:57 -0400 Received: from eggs.gnu.org ([209.51.188.92]:53924) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jyW1D-000505-GE for 42335@debbugs.gnu.org; Thu, 23 Jul 2020 03:51:56 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:37062) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jyW18-00047M-6P; Thu, 23 Jul 2020 03:51:50 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=59734 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jyW17-0003ml-6b; Thu, 23 Jul 2020 03:51:49 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= Subject: Re: [bug#42335] [PATCH guix-past] Add old versions of RGBDS References: <20200712160206.6768-1-kuba@kadziolka.net> <87v9ign7zy.fsf@gnu.org> <20200721212901.62cphwttdurjdyda@gravity> <87a6zrkg14.fsf@gnu.org> <20200722224759.fjkulvgw37r4ot4r@gravity> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 6 Thermidor an 228 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Thu, 23 Jul 2020 09:51:48 +0200 In-Reply-To: <20200722224759.fjkulvgw37r4ot4r@gravity> ("Jakub \=\?utf-8\?B\?S8SFZHppb8WCa2EiJ3M\=\?\= message of "Thu, 23 Jul 2020 00:47:59 +0200") Message-ID: <87sgdiekiz.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42335 Cc: 42335@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 (---) Hi, Jakub K=C4=85dzio=C5=82ka skribis: > On Wed, Jul 22, 2020 at 12:20:07PM +0200, Ludovic Court=C3=A8s wrote: >> Hi, >>=20 >> Jakub K=C4=85dzio=C5=82ka skribis: >>=20 >> > On Tue, Jul 21, 2020 at 06:33:05PM +0200, Ludovic Court=C3=A8s wrote: >>=20 >> [...] >>=20 >> >> You should now have a gitlab.inria.fr account. We need to add you to >> >> =E2=80=98.guix-authorizations=E2=80=99; will you use the same OpenPGP= key as in Guix? >> > >> > Nice! Yeah, I'll use the same key. >>=20 >> Done! You should be able to push now. Please do install the pre-push >> hook as noted in =E2=80=98README.md=E2=80=99, and let me know if anythin= g is amiss. > > Thank you. It seems that I don't have GitLab-level permissions for the > repository, though. I tried to find the widget that lets me copy the > ssh:// URL for pushing, but couldn't. I did see a "Request access" > link, though. I clicked it, so you should see an access request in your > notifications soon. Oops, my bad. Access granted now, lemme know how it goes! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 23 09:22:27 2020 Received: (at 42335) by debbugs.gnu.org; 23 Jul 2020 13:22:27 +0000 Received: from localhost ([127.0.0.1]:44382 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jybB4-00075C-U1 for submit@debbugs.gnu.org; Thu, 23 Jul 2020 09:22:27 -0400 Received: from pat.zlotemysli.pl ([37.59.186.212]:45550) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jybB2-000752-C0 for 42335@debbugs.gnu.org; Thu, 23 Jul 2020 09:22:25 -0400 Received: (qmail 13194 invoked by uid 1009); 23 Jul 2020 15:22:23 +0200 Received: from user-94-254-202-205.play-internet.pl (kuba@kadziolka.net@user-94-254-202-205.play-internet.pl) by pat.zlotemysli.pl (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25881. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(94.254.202.205):. Processed in 0.056505 secs); 23 Jul 2020 13:22:23 -0000 Received: from user-94-254-202-205.play-internet.pl (HELO gravity) (kuba@kadziolka.net@94.254.202.205) by pat.zlotemysli.pl with SMTP; 23 Jul 2020 15:22:22 +0200 Date: Thu, 23 Jul 2020 15:22:20 +0200 From: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#42335] [PATCH guix-past] Add old versions of RGBDS Message-ID: <20200723132220.fqffszsufux4t5y2@gravity> References: <20200712160206.6768-1-kuba@kadziolka.net> <87v9ign7zy.fsf@gnu.org> <20200721212901.62cphwttdurjdyda@gravity> <87a6zrkg14.fsf@gnu.org> <20200722224759.fjkulvgw37r4ot4r@gravity> <87sgdiekiz.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="r4x2jyqnnenjps7q" Content-Disposition: inline In-Reply-To: <87sgdiekiz.fsf@gnu.org> X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 42335 Cc: 42335@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: -1.0 (-) --r4x2jyqnnenjps7q Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 23, 2020 at 09:51:48AM +0200, Ludovic Court=C3=A8s wrote: > Hi, >=20 > Jakub K=C4=85dzio=C5=82ka skribis: >=20 > > On Wed, Jul 22, 2020 at 12:20:07PM +0200, Ludovic Court=C3=A8s wrote: > >> Hi, > >>=20 > >> Jakub K=C4=85dzio=C5=82ka skribis: > >>=20 > >> > On Tue, Jul 21, 2020 at 06:33:05PM +0200, Ludovic Court=C3=A8s wrote: > >>=20 > >> [...] > >>=20 > >> >> You should now have a gitlab.inria.fr account. We need to add you = to > >> >> =E2=80=98.guix-authorizations=E2=80=99; will you use the same OpenP= GP key as in Guix? > >> > > >> > Nice! Yeah, I'll use the same key. > >>=20 > >> Done! You should be able to push now. Please do install the pre-push > >> hook as noted in =E2=80=98README.md=E2=80=99, and let me know if anyth= ing is amiss. > > > > Thank you. It seems that I don't have GitLab-level permissions for the > > repository, though. I tried to find the widget that lets me copy the > > ssh:// URL for pushing, but couldn't. I did see a "Request access" > > link, though. I clicked it, so you should see an access request in your > > notifications soon. >=20 > Oops, my bad. Access granted now, lemme know how it goes! >=20 > Ludo=E2=80=99. I think we're making progress: remote: GitLab: You are not allowed to push code to protected branches on t= his project. To ssh://gitlab.inria.fr/guix-hpc/guix-past.git ! [remote rejected] master -> master (pre-receive hook declined) error: failed to push some refs to 'ssh://gitlab.inria.fr/guix-hpc/guix-pas= t.git' If I'm understanding this correctly, pushing to master requires the Maintainer permission. Would you like me to open a Merge Request instead, or would you rather give me the Maintainer permission? Regards, Jakub K=C4=85dzio=C5=82ka --r4x2jyqnnenjps7q Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEE5Xa/ss9usT31cTO54xWnWEYTFWQFAl8ZjwwACgkQ4xWnWEYT FWQ+6RAApIbA4C05v7LOG30ZHllbu1wYOrhy+SOzbpO7HktimJhMm8dGk6gi0YDH wiRpab0n9RJwt/VaIth3w3t3W98qu2y5chyCJmjw7mOvEEvRQY+wKy3sr+BkY39L Ec41kfuiCjBs5twSHAkpnL0Pq2olJcpvjqmNIyUlJ1QyhOYowK1IAu7HCA7xAzXD ifqB2miZmv1YPVqDzUEwntbXDOwPIHBiBJEPDbrw43bkT9FSzS81QbI3oVWHnkqy fnFy9F22xgsGjIjWwxGChWq08cxOL9b466zkL8vDW3AChFqb6x9g6+u+gWKBclop xAHMvOwtB5IZzMUf9HwtOePF560FaS0nAOOOw+/Ubz3luSxPsjYubcu/RpM2fCNR xdAuWN/oP1qRsavpqCaQCGeoGw7EqOrtQDnVT/clDkPfysIFBDRJ4LQbss9dq/j9 9TnLztROy0kh68IMw5EXPOP1q8lETD7uiVKH9ILwyRPh0iE+ysQVlnNLkBKbLnNJ kxbCz+r6pK6uy8gQX+gQiWVsULp9GwguEW9YYP/D6z8NBoNQ1+wHH1W8RMU6UmSE w/Qlqi9/r+1q06dJKW6r/NhlpukroMtyOxw3qzXa9C1QiR++gwyafKAi20P2WqqZ rZT1PQByWZ0p5FxRigRCQGvRhS4AKUNLS3FX7jIAp14MuFmJ2os= =ljHj -----END PGP SIGNATURE----- --r4x2jyqnnenjps7q-- From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 24 09:09:05 2020 Received: (at 42335) by debbugs.gnu.org; 24 Jul 2020 13:09:05 +0000 Received: from localhost ([127.0.0.1]:47286 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jyxRg-0005KV-S3 for submit@debbugs.gnu.org; Fri, 24 Jul 2020 09:09:05 -0400 Received: from eggs.gnu.org ([209.51.188.92]:46064) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jyxRe-0005K1-Va for 42335@debbugs.gnu.org; Fri, 24 Jul 2020 09:09:03 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:51629) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jyxRZ-0006pg-8Q; Fri, 24 Jul 2020 09:08:57 -0400 Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=49608 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jyxRY-0003p7-P6; Fri, 24 Jul 2020 09:08:57 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= Subject: Re: [bug#42335] [PATCH guix-past] Add old versions of RGBDS References: <20200712160206.6768-1-kuba@kadziolka.net> <87v9ign7zy.fsf@gnu.org> <20200721212901.62cphwttdurjdyda@gravity> <87a6zrkg14.fsf@gnu.org> <20200722224759.fjkulvgw37r4ot4r@gravity> <87sgdiekiz.fsf@gnu.org> <20200723132220.fqffszsufux4t5y2@gravity> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 7 Thermidor an 228 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Fri, 24 Jul 2020 15:08:55 +0200 In-Reply-To: <20200723132220.fqffszsufux4t5y2@gravity> ("Jakub \=\?utf-8\?B\?S8SFZHppb8WCa2EiJ3M\=\?\= message of "Thu, 23 Jul 2020 15:22:20 +0200") Message-ID: <875zad9i1k.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42335 Cc: 42335@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 (---) Hi, Jakub K=C4=85dzio=C5=82ka skribis: > remote: GitLab: You are not allowed to push code to protected branches on= this project. > To ssh://gitlab.inria.fr/guix-hpc/guix-past.git > ! [remote rejected] master -> master (pre-receive hook declined) > error: failed to push some refs to 'ssh://gitlab.inria.fr/guix-hpc/guix-p= ast.git' Bah, I always forget about that. You should be allowed to push now. Ping me on IRC if not! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 24 11:24:48 2020 Received: (at 42335-done) by debbugs.gnu.org; 24 Jul 2020 15:24:48 +0000 Received: from localhost ([127.0.0.1]:48545 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jyzZ2-00079V-9m for submit@debbugs.gnu.org; Fri, 24 Jul 2020 11:24:48 -0400 Received: from pat.zlotemysli.pl ([37.59.186.212]:54236) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jyzYy-00079J-Iz for 42335-done@debbugs.gnu.org; Fri, 24 Jul 2020 11:24:47 -0400 Received: (qmail 7933 invoked by uid 1009); 24 Jul 2020 17:24:42 +0200 Received: from user-5-173-96-40.play-internet.pl (kuba@kadziolka.net@user-5-173-96-40.play-internet.pl) by pat.zlotemysli.pl (envelope-from , uid 1002) with qmail-scanner-2.08st (clamdscan: 0.98.6/25882. spamassassin: 3.4.0. perlscan: 2.08st. Clear:RC:1(5.173.96.40):. Processed in 0.056767 secs); 24 Jul 2020 15:24:42 -0000 Received: from user-5-173-96-40.play-internet.pl (HELO gravity) (kuba@kadziolka.net@5.173.96.40) by pat.zlotemysli.pl with SMTP; 24 Jul 2020 17:24:42 +0200 Date: Fri, 24 Jul 2020 17:24:40 +0200 From: Jakub =?utf-8?B?S8SFZHppb8WCa2E=?= To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#42335] [PATCH guix-past] Add old versions of RGBDS Message-ID: <20200724152440.bjes4qsvmdjfec5s@gravity> References: <20200712160206.6768-1-kuba@kadziolka.net> <87v9ign7zy.fsf@gnu.org> <20200721212901.62cphwttdurjdyda@gravity> <87a6zrkg14.fsf@gnu.org> <20200722224759.fjkulvgw37r4ot4r@gravity> <87sgdiekiz.fsf@gnu.org> <20200723132220.fqffszsufux4t5y2@gravity> <875zad9i1k.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="3hl56izn264w7jh4" Content-Disposition: inline In-Reply-To: <875zad9i1k.fsf@gnu.org> X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 42335-done Cc: 42335-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: -1.0 (-) --3hl56izn264w7jh4 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jul 24, 2020 at 03:08:55PM +0200, Ludovic Court=C3=A8s wrote: > Hi, >=20 > Jakub K=C4=85dzio=C5=82ka skribis: >=20 > > remote: GitLab: You are not allowed to push code to protected branches = on this project. > > To ssh://gitlab.inria.fr/guix-hpc/guix-past.git > > ! [remote rejected] master -> master (pre-receive hook declined) > > error: failed to push some refs to 'ssh://gitlab.inria.fr/guix-hpc/guix= -past.git' >=20 > Bah, I always forget about that. You should be allowed to push now. > Ping me on IRC if not! It worked this time :D Thanks, Jakub K=C4=85dzio=C5=82ka --3hl56izn264w7jh4 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEE5Xa/ss9usT31cTO54xWnWEYTFWQFAl8a/TgACgkQ4xWnWEYT FWSmwg//Uyn5zLswKUS/0ooya3fPoxj5zWg07Il3XTI07/zYrfTk1Q/xiRpHzf6r WUaqUBptuKuRCR/8ViKXL+GkxV/sDOX1vtQVTQNHRjzJ2JBr6nBBkNoVJQznTucA HRnfcTmluc0Y5JWnYas8dgf4hOxtyqrh60ye9QTLdqjIviECy9nLFbHhEsfWZAj2 QVKUwjweUYAtuLqlf6HsjhcwaCKrG3Vcce15xqz6KqSR6PhV0+PtejGer29SBgs6 DK/4btCEIEBKoIIUm3kiEX48xdCxORjy3f3o3O6mogSuNf9q0zC2aMH0d2ibbIRj gDbwypFbYkksALh8Tj9yLKaMNoJg+iz50afYq4/3eTlENo7a9fUPbeiqUuvd7S9+ UPNvjVrI/YAC4D+UNANYLhR7QlLN2YOD9DcO1zDGYbvmxxv0mk+i4KDvCBJ/G7Ib BbKmDVPVTBu5othQHqoKENz0hYFD8hF6mqPB4zN5dsAYK4nNAGQccKAEEmjP4vQP PU7Vqd8zsyB44pHwMnJConGqeHpyV9Ips4hbh+ZaKifp4hGTtCP+yKS6ifwDwjlW sDPakZFcRLkz9dXBAIFt79tPOFClQLnRj4ueDNyPFwYTxdrDBNpKq3ieCoQ4QmYT r2rUhjf1F6d3kBtwBk2oxghRYoWYXnC4/5ifZRXlthcVy9rtnco= =ENPu -----END PGP SIGNATURE----- --3hl56izn264w7jh4-- From unknown Sat Sep 13 02:39:37 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 22 Aug 2020 11:24:09 +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