GNU bug report logs - #59363
The package transformation 'with-commit' does not work in user-friendly way

Previous Next

Package: guix;

Reported by: Jacob Hrbek <kreyren <at> rixotstudio.cz>

Date: Fri, 18 Nov 2022 15:57:02 UTC

Severity: normal

Tags: notabug

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 59363 in the body.
You can then email your comments to 59363 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-guix <at> gnu.org:
bug#59363; Package guix. (Fri, 18 Nov 2022 15:57:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Jacob Hrbek <kreyren <at> rixotstudio.cz>:
New bug report received and forwarded. Copy sent to bug-guix <at> gnu.org. (Fri, 18 Nov 2022 15:57:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Jacob Hrbek <kreyren <at> rixotstudio.cz>
To: "bug-guix <at> gnu.org" <bug-guix <at> gnu.org>
Subject: The package transformation 'with-commit' does not work in
 user-friendly way
Date: Fri, 18 Nov 2022 15:56:15 +0000
[Message part 1 (text/plain, inline)]
kreyren <at> dreamon /home/kreyren$ guix install --with-commit=flatpak=e084a4f14befc27d08094baba8cc8f714d7e417d flatpak
guix install: error: the source of flatpak <at> 1.14.0 is not a Git reference
kreyren <at> dreamon /home/kreyren$ guix install flatpak <at> 1.15.0
guix install: error: flatpak: package not found for version 1.15.0

Expected: To get the package flatpak <at> 1.15.0 in the user profile in a non-painful way

-- Jacob "Kreyren" Hrbek
[Message part 2 (text/html, inline)]

Information forwarded to bug-guix <at> gnu.org:
bug#59363; Package guix. (Fri, 18 Nov 2022 17:55:02 GMT) Full text and rfc822 format available.

Message #8 received at 59363 <at> debbugs.gnu.org (full text, mbox):

From: Jacob Hrbek <kreyren <at> rixotstudio.cz>
To: 59363 <at> debbugs.gnu.org
Cc: Jacob Hrbek <kreyren <at> rixotstudio.cz>
Subject: [PATCH] flatpak: Adjustments to make --with-commit work
Date: Fri, 18 Nov 2022 17:54:32 +0000
---
 gnu/packages/package-management.scm | 208 +++++++++++++++-------------
 1 file changed, 108 insertions(+), 100 deletions(-)

diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm
index 891b504a46..be5e581c49 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -1915,110 +1915,118 @@ (define-public libostree
 the boot loader configuration.")
     (license license:lgpl2.0+)))

-(define-public flatpak
-  (package
-    (name "flatpak")
-    (version "1.14.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/flatpak/flatpak/releases/download/"
-                           version "/flatpak-" version ".tar.xz"))
-       (sha256
-        (base32 "05bqy9kwmaj32y7f94fydcz3k63bsgn4mbcp4pglv8hffxrnj9wf"))
-       (patches
-        (search-patches "flatpak-fix-path.patch"
-                        "flatpak-unset-gdk-pixbuf-for-sandbox.patch"))))
+;; FIXME: Does not respect #:tests? according to guix lint
+;; FIXME: Accodring to guix-lint it's probably vulnerable to CVE-2022-21682, CVE-2021-21261, CVE-2021-21381, CVE-2021-41133, CVE-2021-43860, CVE-2019-10063, CVE-2019-8308
+(define-public flatpak-0.14.0
+  (let ((commit "f9a768721e881debe3a0effa3a47748033d20045"))
+    (package
+      (name "flatpak")
+      (version (git-version "0.14.0" "0" commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/flatpak/flatpak.git")
+                      (commit commit)))
+                (sha256
+                 (base32
+                  "05bqy9kwmaj32y7f94fydcz3k63bsgn4mbcp4pglv8hffxrnj9wf"))
+                (file-name (git-file-name name version))
+                (patches (search-patches "flatpak-fix-path.patch"
+                          "flatpak-unset-gdk-pixbuf-for-sandbox.patch"))))

-    ;; Wrap 'flatpak' so that GIO_EXTRA_MODULES is set, thereby allowing GIO to
-    ;; find the TLS backend in glib-networking.
-    (build-system glib-or-gtk-build-system)
+      ;; Wrap 'flatpak' so that GIO_EXTRA_MODULES is set, thereby allowing GIO to
+      ;; find the TLS backend in glib-networking.
+      (build-system glib-or-gtk-build-system)

-    (arguments
-     (list
-      #:configure-flags
-      #~(list
-         "--enable-documentation=no" ;; FIXME
-         "--enable-system-helper=no"
-         "--localstatedir=/var"
-         (string-append "--with-system-bubblewrap="
-                        (assoc-ref %build-inputs "bubblewrap")
-                        "/bin/bwrap")
-         (string-append "--with-system-dbus-proxy="
-                        (assoc-ref %build-inputs "xdg-dbus-proxy")
-                        "/bin/xdg-dbus-proxy"))
-      #:phases
-      #~(modify-phases %standard-phases
-          (add-after 'unpack 'fix-tests
-            (lambda* (#:key inputs #:allow-other-keys)
-              (copy-recursively
-               (search-input-directory inputs "lib/locale")
-               "/tmp/locale")
-              (for-each make-file-writable (find-files "/tmp"))
-              (substitute* "tests/make-test-runtime.sh"
-                (("cp `which.*") "echo guix\n")
-                (("cp -r /usr/lib/locale/C\\.\\*")
-                 (string-append "mkdir ${DIR}/usr/lib/locale/en_US; \
-cp -r /tmp/locale/*/en_US.*")))
-              (substitute* "tests/libtest.sh"
-                (("/bin/kill") (which "kill"))
-                (("/usr/bin/python3") (which "python3")))
-              #t))
-          (add-after 'unpack 'p11-kit-fix
-            (lambda* (#:key inputs #:allow-other-keys)
-              (let ((p11-path (search-input-file inputs "/bin/p11-kit")))
-                (substitute* "session-helper/flatpak-session-helper.c"
-                  (("\"p11-kit\",")
-                   (string-append "\"" p11-path "\","))
-                  (("if \\(g_find_program_in_path \\(\"p11-kit\"\\)\\)")
-                   (string-append "if (g_find_program_in_path (\""
-                                  p11-path "\"))"))))))
-          ;; Many tests fail for unknown reasons, so we just run a few basic
-          ;; tests.
-          (replace 'check
-            (lambda _
-              (setenv "HOME" "/tmp")
-              (invoke "make" "check"
-                      "TESTS=tests/test-basic.sh tests/test-config.sh testcommon"))))))
-    (native-inputs
-     (list bison
-           dbus ; for dbus-daemon
-           gettext-minimal
-           `(,glib "bin") ; for glib-mkenums + gdbus-codegen
-           glibc-utf8-locales
-           gobject-introspection
-           libcap
-           pkg-config
-           python
-           python-pyparsing
-           socat
-           which))
-    (inputs
-     (list appstream
-           appstream-glib
-           bubblewrap
-           curl
-           dconf
-           fuse
-           gdk-pixbuf
-           gpgme
-           json-glib
-           libarchive
-           libostree
-           libseccomp
-           libsoup-minimal-2
-           libxau
-           libxml2
-           p11-kit-next
-           util-linux
-           xdg-dbus-proxy))
-    (propagated-inputs (list glib-networking gnupg gsettings-desktop-schemas))
-    (home-page "https://flatpak.org")
-    (synopsis "System for building, distributing, and running sandboxed desktop
+      (arguments
+       (list #:configure-flags #~(list "--enable-documentation=no"
+                                       "--enable-system-helper=no"
+                                       "--localstatedir=/var"
+                                       (string-append
+                                        "--with-system-bubblewrap="
+                                        (assoc-ref %build-inputs "bubblewrap")
+                                        "/bin/bwrap")
+                                       (string-append
+                                        "--with-system-dbus-proxy="
+                                        (assoc-ref %build-inputs
+                                                   "xdg-dbus-proxy")
+                                        "/bin/xdg-dbus-proxy"))
+             #:phases #~(modify-phases %standard-phases
+                          (add-after 'unpack 'fix-tests
+                            (lambda* (#:key inputs #:allow-other-keys)
+                              (copy-recursively (search-input-directory inputs
+                                                 "lib/locale") "/tmp/locale")
+                              (for-each make-file-writable
+                                        (find-files "/tmp"))
+                              (substitute* "tests/make-test-runtime.sh"
+                                (("cp `which.*")
+                                 "echo guix\n")
+                                (("cp -r /usr/lib/locale/C\\.\\*")
+                                 (string-append
+                                  "mkdir ${DIR}/usr/lib/locale/en_US; cp -r /tmp/locale/*/en_US.*")))
+                              (substitute* "tests/libtest.sh"
+                                (("/bin/kill")
+                                 (which "kill"))
+                                (("/usr/bin/python3")
+                                 (which "python3"))) #t))
+                          (add-after 'unpack 'p11-kit-fix
+                            (lambda* (#:key inputs #:allow-other-keys)
+                              (let ((p11-path (search-input-file inputs
+                                               "/bin/p11-kit")))
+                                (substitute* "session-helper/flatpak-session-helper.c"
+                                  (("\"p11-kit\",")
+                                   (string-append "\"" p11-path "\","))
+                                  (("if \\(g_find_program_in_path \\(\"p11-kit\"\\)\\)")
+                                   (string-append
+                                    "if (g_find_program_in_path (\"" p11-path
+                                    "\"))"))))))
+                          (replace 'check
+                            (lambda _
+                              (setenv "HOME" "/tmp")
+                              (invoke "make" "check"
+                               "TESTS=tests/test-basic.sh tests/test-config.sh testcommon"))))))
+      (native-inputs (list autoconf
+                           automake ;for alocal
+                           bison
+                           dbus ;for dbus-daemon
+                           gettext-minimal
+                           `(,glib "bin") ;for glib-mkenums + gdbus-codegen
+                           glibc-utf8-locales
+                           gobject-introspection
+                           libcap
+                           libtool
+                           pkg-config
+                           python
+                           python-pyparsing
+                           socat
+                           which))
+      (inputs (list appstream
+                    appstream-glib
+                    bubblewrap
+                    curl
+                    dconf
+                    fuse
+                    gdk-pixbuf
+                    gpgme
+                    json-glib
+                    libarchive
+                    libostree
+                    libseccomp
+                    libsoup-minimal-2
+                    libxau
+                    libxml2
+                    p11-kit-next
+                    util-linux
+                    xdg-dbus-proxy))
+      (propagated-inputs (list glib-networking gnupg gsettings-desktop-schemas))
+      (home-page "https://flatpak.org")
+      (synopsis
+       "System for building, distributing, and running sandboxed desktop
 applications")
-    (description "Flatpak is a system for building, distributing, and running
+      (description
+       "Flatpak is a system for building, distributing, and running
 sandboxed desktop applications on GNU/Linux.")
-    (license license:lgpl2.1+)))
+      (license license:lgpl2.1+))))

 (define-public akku
   (package
--
2.37.3






Information forwarded to bug-guix <at> gnu.org:
bug#59363; Package guix. (Sat, 19 Nov 2022 23:06:01 GMT) Full text and rfc822 format available.

Message #11 received at 59363 <at> debbugs.gnu.org (full text, mbox):

From: Jacob Hrbek <kreyren <at> rixotstudio.cz>
To: "59363 <at> debbugs.gnu.org" <59363 <at> debbugs.gnu.org>
Cc: "zimon.toutoune <at> gmail.com" <zimon.toutoune <at> gmail.com>,
 Mathieu Othacehe <othacehe <at> gnu.org>, "ludo <at> gnu.org" <ludo <at> gnu.org>,
 "mail <at> cbaines.net" <mail <at> cbaines.net>, Ricardo Wurmus <rekado <at> elephly.net>,
 "rg <at> raghavgururajan.name" <rg <at> raghavgururajan.name>,
 "jgart <at> dismail.de" <jgart <at> dismail.de>, "paren <at> disroot.org" <paren <at> disroot.org>
Subject: Fw: [PATCH] flatpak: Adjustments to make --with-commit work
Date: Sat, 19 Nov 2022 23:05:21 +0000
CC mentors -- please review and merge if appropriate

-- Jacob "Kreyren" Hrbek

------- Original Message -------
On Friday, November 18th, 2022 at 6:54 PM, Jacob Hrbek <kreyren <at> rixotstudio.cz> wrote:


> ---
> gnu/packages/package-management.scm | 208 +++++++++++++++-------------
> 1 file changed, 108 insertions(+), 100 deletions(-)
> 
> diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm
> index 891b504a46..be5e581c49 100644
> --- a/gnu/packages/package-management.scm
> +++ b/gnu/packages/package-management.scm
> @@ -1915,110 +1915,118 @@ (define-public libostree
> the boot loader configuration.")
> (license license:lgpl2.0+)))
> 
> -(define-public flatpak
> - (package
> - (name "flatpak")
> - (version "1.14.0")
> - (source
> - (origin
> - (method url-fetch)
> - (uri (string-append "https://github.com/flatpak/flatpak/releases/download/"
> - version "/flatpak-" version ".tar.xz"))
> - (sha256
> - (base32 "05bqy9kwmaj32y7f94fydcz3k63bsgn4mbcp4pglv8hffxrnj9wf"))
> - (patches
> - (search-patches "flatpak-fix-path.patch"
> - "flatpak-unset-gdk-pixbuf-for-sandbox.patch"))))
> +;; FIXME: Does not respect #:tests? according to guix lint
> +;; FIXME: Accodring to guix-lint it's probably vulnerable to CVE-2022-21682, CVE-2021-21261, CVE-2021-21381, CVE-2021-41133, CVE-2021-43860, CVE-2019-10063, CVE-2019-8308
> +(define-public flatpak-0.14.0
> + (let ((commit "f9a768721e881debe3a0effa3a47748033d20045"))
> + (package
> + (name "flatpak")
> + (version (git-version "0.14.0" "0" commit))
> + (source (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/flatpak/flatpak.git")
> + (commit commit)))
> + (sha256
> + (base32
> + "05bqy9kwmaj32y7f94fydcz3k63bsgn4mbcp4pglv8hffxrnj9wf"))
> + (file-name (git-file-name name version))
> + (patches (search-patches "flatpak-fix-path.patch"
> + "flatpak-unset-gdk-pixbuf-for-sandbox.patch"))))
> 
> - ;; Wrap 'flatpak' so that GIO_EXTRA_MODULES is set, thereby allowing GIO to
> - ;; find the TLS backend in glib-networking.
> - (build-system glib-or-gtk-build-system)
> + ;; Wrap 'flatpak' so that GIO_EXTRA_MODULES is set, thereby allowing GIO to
> + ;; find the TLS backend in glib-networking.
> + (build-system glib-or-gtk-build-system)
> 
> - (arguments
> - (list
> - #:configure-flags
> - #~(list
> - "--enable-documentation=no" ;; FIXME
> - "--enable-system-helper=no"
> - "--localstatedir=/var"
> - (string-append "--with-system-bubblewrap="
> - (assoc-ref %build-inputs "bubblewrap")
> - "/bin/bwrap")
> - (string-append "--with-system-dbus-proxy="
> - (assoc-ref %build-inputs "xdg-dbus-proxy")
> - "/bin/xdg-dbus-proxy"))
> - #:phases
> - #~(modify-phases %standard-phases
> - (add-after 'unpack 'fix-tests
> - (lambda* (#:key inputs #:allow-other-keys)
> - (copy-recursively
> - (search-input-directory inputs "lib/locale")
> - "/tmp/locale")
> - (for-each make-file-writable (find-files "/tmp"))
> - (substitute* "tests/make-test-runtime.sh"
> - (("cp `which.*") "echo guix\\n") - (("cp -r /usr/lib/locale/C\\\\.\\\\*") - (string-append "mkdir ${DIR}/usr/lib/locale/en_US; \\ -cp -r /tmp/locale/*/en_US.*"))) - (substitute* "tests/libtest.sh" - (("/bin/kill") (which "kill")) - (("/usr/bin/python3") (which "python3"))) - #t)) - (add-after 'unpack 'p11-kit-fix - (lambda* (#:key inputs #:allow-other-keys) - (let ((p11-path (search-input-file inputs "/bin/p11-kit"))) - (substitute* "session-helper/flatpak-session-helper.c" - (("\\"p11-kit\\",") - (string-append "\\"" p11-path "\\",")) - (("if \\\\(g_find_program_in_path \\\\(\\"p11-kit\\"\\\\)\\\\)") - (string-append "if (g_find_program_in_path (\\"" - p11-path "\\"))")))))) - ;; Many tests fail for unknown reasons, so we just run a few basic - ;; tests. - (replace 'check - (lambda _ - (setenv "HOME" "/tmp") - (invoke "make" "check" - "TESTS=tests/test-basic.sh tests/test-config.sh testcommon")))))) - (native-inputs - (list bison - dbus ; for dbus-daemon - gettext-minimal -` (,glib "bin") ; for glib-mkenums + gdbus-codegen
> - glibc-utf8-locales
> - gobject-introspection
> - libcap
> - pkg-config
> - python
> - python-pyparsing
> - socat
> - which))
> - (inputs
> - (list appstream
> - appstream-glib
> - bubblewrap
> - curl
> - dconf
> - fuse
> - gdk-pixbuf
> - gpgme
> - json-glib
> - libarchive
> - libostree
> - libseccomp
> - libsoup-minimal-2
> - libxau
> - libxml2
> - p11-kit-next
> - util-linux
> - xdg-dbus-proxy))
> - (propagated-inputs (list glib-networking gnupg gsettings-desktop-schemas))
> - (home-page "https://flatpak.org")
> - (synopsis "System for building, distributing, and running sandboxed desktop
> + (arguments
> + (list #:configure-flags #~(list "--enable-documentation=no"
> + "--enable-system-helper=no"
> + "--localstatedir=/var"
> + (string-append
> + "--with-system-bubblewrap="
> + (assoc-ref %build-inputs "bubblewrap")
> + "/bin/bwrap")
> + (string-append
> + "--with-system-dbus-proxy="
> + (assoc-ref %build-inputs
> + "xdg-dbus-proxy")
> + "/bin/xdg-dbus-proxy"))
> + #:phases #~(modify-phases %standard-phases
> + (add-after 'unpack 'fix-tests
> + (lambda* (#:key inputs #:allow-other-keys)
> + (copy-recursively (search-input-directory inputs
> + "lib/locale") "/tmp/locale")
> + (for-each make-file-writable
> + (find-files "/tmp"))
> + (substitute* "tests/make-test-runtime.sh"
> + (("cp `which.*") + "echo guix\\n") + (("cp -r /usr/lib/locale/C\\\\.\\\\*") + (string-append + "mkdir ${DIR}/usr/lib/locale/en_US; cp -r /tmp/locale/*/en_US.*"))) + (substitute* "tests/libtest.sh" + (("/bin/kill") + (which "kill")) + (("/usr/bin/python3") + (which "python3"))) #t)) + (add-after 'unpack 'p11-kit-fix + (lambda* (#:key inputs #:allow-other-keys) + (let ((p11-path (search-input-file inputs + "/bin/p11-kit"))) + (substitute* "session-helper/flatpak-session-helper.c" + (("\\"p11-kit\\",") + (string-append "\\"" p11-path "\\",")) + (("if \\\\(g_find_program_in_path \\\\(\\"p11-kit\\"\\\\)\\\\)") + (string-append + "if (g_find_program_in_path (\\"" p11-path + "\\"))")))))) + (replace 'check + (lambda _ + (setenv "HOME" "/tmp") + (invoke "make" "check" + "TESTS=tests/test-basic.sh tests/test-config.sh testcommon")))))) + (native-inputs (list autoconf + automake ;for alocal + bison + dbus ;for dbus-daemon + gettext-minimal +` (,glib "bin") ;for glib-mkenums + gdbus-codegen
> + glibc-utf8-locales
> + gobject-introspection
> + libcap
> + libtool
> + pkg-config
> + python
> + python-pyparsing
> + socat
> + which))
> + (inputs (list appstream
> + appstream-glib
> + bubblewrap
> + curl
> + dconf
> + fuse
> + gdk-pixbuf
> + gpgme
> + json-glib
> + libarchive
> + libostree
> + libseccomp
> + libsoup-minimal-2
> + libxau
> + libxml2
> + p11-kit-next
> + util-linux
> + xdg-dbus-proxy))
> + (propagated-inputs (list glib-networking gnupg gsettings-desktop-schemas))
> + (home-page "https://flatpak.org")
> + (synopsis
> + "System for building, distributing, and running sandboxed desktop
> applications")
> - (description "Flatpak is a system for building, distributing, and running
> + (description
> + "Flatpak is a system for building, distributing, and running
> sandboxed desktop applications on GNU/Linux.")
> - (license license:lgpl2.1+)))
> + (license license:lgpl2.1+))))
> 
> (define-public akku
> (package
> --
> 2.37.3




Information forwarded to bug-guix <at> gnu.org:
bug#59363; Package guix. (Sun, 20 Nov 2022 00:25:01 GMT) Full text and rfc822 format available.

Message #14 received at 59363 <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: Jacob Hrbek <kreyren <at> rixotstudio.cz>
Cc: "zimon.toutoune <at> gmail.com" <zimon.toutoune <at> gmail.com>,
 "paren <at> disroot.org" <paren <at> disroot.org>, "ludo <at> gnu.org" <ludo <at> gnu.org>,
 "mail <at> cbaines.net" <mail <at> cbaines.net>, Ricardo Wurmus <rekado <at> elephly.net>,
 "rg <at> raghavgururajan.name" <rg <at> raghavgururajan.name>,
 "59363 <at> debbugs.gnu.org" <59363 <at> debbugs.gnu.org>,
 Mathieu Othacehe <othacehe <at> gnu.org>
Subject: Re: Fw: [PATCH] flatpak: Adjustments to make --with-commit work
Date: Sat, 19 Nov 2022 18:23:47 -0600
On Sat, 19 Nov 2022 23:05:21 +0000 Jacob Hrbek <kreyren <at> rixotstudio.cz> wrote:
> CC mentors -- please review and merge if appropriate

Thanks for sending! I'll take a look soon.




Information forwarded to bug-guix <at> gnu.org:
bug#59363; Package guix. (Sun, 20 Nov 2022 09:35:02 GMT) Full text and rfc822 format available.

Message #17 received at 59363 <at> debbugs.gnu.org (full text, mbox):

From: Christopher Baines <mail <at> cbaines.net>
To: Jacob Hrbek <kreyren <at> rixotstudio.cz>
Cc: "59363 <at> debbugs.gnu.org" <59363 <at> debbugs.gnu.org>
Subject: Re: Fw: [PATCH] flatpak: Adjustments to make --with-commit work
Date: Sun, 20 Nov 2022 09:33:29 +0000
[Message part 1 (text/plain, inline)]
Jacob Hrbek <kreyren <at> rixotstudio.cz> writes:

> CC mentors -- please review and merge if appropriate

I think patches are best sent to guix-patches, even if they relate to a
bug filed against the guix package.

Also, for some reason, I'm missing the original mail for this bug.

Anyway, --with-commit doesn't work because of the reason displayed when
you try and use it. --with-source is what you should be using:

  guix build flatpak --with-source=https://github.com/flatpak/flatpak/releases/download/1.15.0/flatpak-1.15.0.tar.xz
[signature.asc (application/pgp-signature, inline)]

Information forwarded to bug-guix <at> gnu.org:
bug#59363; Package guix. (Sun, 20 Nov 2022 12:12:01 GMT) Full text and rfc822 format available.

Message #20 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Tobias Geerinckx-Rice <me <at> tobias.gr>
To: bug-guix <at> gnu.org
Subject: Re: bug#59363: Fw: [PATCH] flatpak: Adjustments to make --with-commit work
Date: Sun, 20 Nov 2022 12:11:28 +0000
[Off list]

Hi Chris,

You didn't receive their mails because their address is banned from all lists that support doing so.

Unfortunately, there are loopholes.

Kind regards,

T G-R

Sent on the go.  Excuse or enjoy my brevity.




Information forwarded to bug-guix <at> gnu.org:
bug#59363; Package guix. (Sun, 20 Nov 2022 12:15:01 GMT) Full text and rfc822 format available.

Message #23 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Tobias Geerinckx-Rice <me <at> tobias.gr>
To: bug-guix <at> gnu.org
Subject: Re: bug#59363: Fw: [PATCH] flatpak: Adjustments to make --with-commit work
Date: Sun, 20 Nov 2022 12:14:19 +0000
On 20 November 2022 12:11:28 UTC, Tobias Geerinckx-Rice <me <at> tobias.gr> wrote:
>[Off list]

...or not!  :-D. Phones are a cruel joke.

Anyway, that's the dealio.





Added tag(s) notabug. Request was from Ludovic Courtès <ludo <at> gnu.org> to control <at> debbugs.gnu.org. (Tue, 22 Nov 2022 08:18:02 GMT) Full text and rfc822 format available.

bug closed, send any further explanations to 59363 <at> debbugs.gnu.org and Jacob Hrbek <kreyren <at> rixotstudio.cz> Request was from Ludovic Courtès <ludo <at> gnu.org> to control <at> debbugs.gnu.org. (Tue, 22 Nov 2022 08:18:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-guix <at> gnu.org:
bug#59363; Package guix. (Tue, 22 Nov 2022 15:01:02 GMT) Full text and rfc822 format available.

Message #30 received at 59363 <at> debbugs.gnu.org (full text, mbox):

From: Jacob Hrbek <kreyren <at> rixotstudio.cz>
To: "59363 <at> debbugs.gnu.org" <59363 <at> debbugs.gnu.org>
Subject: The package transformation 'with-commit' does not work in
 user-friendly way
Date: Tue, 22 Nov 2022 15:00:03 +0000
[Message part 1 (text/plain, inline)]
>> You didn't receive their mails because their address is banned from all lists that support doing so.

I am not aware of being banned from any gnu list or any reasoning to be banned to begin with. So I am once again asking you to behave appropriately and stop sabotaging my contributions, this is an evident bug that I want to fix.

-- Jacob "Kreyren" Hrbek
[Message part 2 (text/html, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 21 Dec 2022 12:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 124 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.