GNU bug report logs - #62640
[PATCH] gnu: Add pmbootstrap.

Previous Next

Package: guix-patches;

Reported by: Sughosha <Sughosha <at> proton.me>

Date: Mon, 3 Apr 2023 08:19:01 UTC

Severity: normal

Tags: patch

Merged with 49577

Done: Danny Milosavljevic <dannym <at> friendly-machines.com>

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Sughosha <Sughosha <at> proton.me>
Subject: bug#62640: closed (Re: [bug#62640] [PATCH v5] gnu: Add pmbootstrap.)
Date: Thu, 05 Jun 2025 23:22:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#62640: [PATCH] gnu: Add pmbootstrap.

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 62640 <at> debbugs.gnu.org.

-- 
62640: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=62640
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Danny Milosavljevic <dannym <at> friendly-machines.com>
To: Sughosha <Sughosha <at> proton.me>,  André Batista
 <nandre <at> riseup.net>
Cc: Herman Rimm <herman <at> rimm.ee>, 62640-done <at> debbugs.gnu.org
Subject: Re: [bug#62640] [PATCH v5] gnu: Add pmbootstrap.
Date: Fri, 06 Jun 2025 01:21:05 +0200
Merged pmboostrap to guix master as commit e4e3176a061d046e34d30a0c39a8afc913d4228d.

[Message part 3 (message/rfc822, inline)]
From: Sughosha <Sughosha <at> proton.me>
To: "guix-patches <at> gnu.org" <guix-patches <at> gnu.org>
Subject: [PATCH] gnu: Add pmbootstrap.
Date: Mon, 03 Apr 2023 08:17:50 +0000
* gnu/packages/postmarketos.scm: New file.
(pmbootstrap): New public variable.
* gnu/packages/local.mk (GNU_SYSTEM_MODULES): Add the new file.
---
 gnu/local.mk                  |  1 +
 gnu/packages/postmarketos.scm | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 69 insertions(+)
 create mode 100644 gnu/packages/postmarketos.scm

diff --git a/gnu/local.mk b/gnu/local.mk
index 186d82a..92848b2 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -502,6 +502,7 @@ GNU_SYSTEM_MODULES =				\
   %D%/packages/poedit.scm				\
   %D%/packages/polkit.scm			\
   %D%/packages/popt.scm				\
+  %D%/packages/postmarketos			\
   %D%/packages/printers.scm			\
   %D%/packages/profiling.scm			\
   %D%/packages/prolog.scm			\
diff --git a/gnu/packages/postmarketos.scm b/gnu/packages/postmarketos.scm
new file mode 100644
index 0000000..9de45ec
--- /dev/null
+++ b/gnu/packages/postmarketos.scm
@@ -0,0 +1,68 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2023 Sughosha <sughosha <at> proton.me>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix 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.
+;;;
+;;; GNU Guix 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 GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages postmarketos)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix packages)
+  #:use-module (guix download)
+  #:use-module (guix build-system python)
+  #:use-module (gnu packages admin)
+  #:use-module (gnu packages bash)
+  #:use-module (gnu packages linux)
+  #:use-module (gnu packages tls)
+  #:use-module (gnu packages version-control))
+
+(define-public pmbootstrap
+  (package
+    (name "pmbootstrap")
+    (version "1.51.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "pmbootstrap" version))
+              (sha256
+               (base32
+                "08g55fh24n3wpva7d1ps6fnk65ik49wfycjpwrjs9w0889zlwsl1"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f
+       #:phases (modify-phases %standard-phases
+                  (replace 'wrap
+                    (lambda* (#:key outputs #:allow-other-keys)
+                      (wrap-program (string-append (assoc-ref outputs "out")
+                                                   "/bin/pmbootstrap")
+                        `("PATH" = ("/run/setuid-programs" ,(getenv "PATH")))
+                        `("GUIX_PYTHONPATH" =
+                          (,(getenv "GUIX_PYTHONPATH"))))))
+                  ;; Dissociate "sudo" as setuid-programs is preferred
+                  (add-after 'sanity-check 'dissociate-sudo
+                    (lambda* (#:key outputs inputs #:allow-other-keys)
+                      (let ((out (assoc-ref outputs "out"))
+                            (sudo (assoc-ref inputs "sudo")))
+                        (substitute* (string-append out "/bin/pmbootstrap")
+                          (((string-append ":" sudo "/sbin"))
+                           "")
+                          (((string-append ":" sudo "/bin"))
+                           ""))))))))
+    (native-inputs (list sudo))
+    (inputs (list bash-minimal git openssl procps))
+    (home-page "https://git.sr.ht/~postmarketos/pmbootstrap")
+    (synopsis "Bootstrap a postmarketOS system")
+    (description
+     "This package provides a sophisticated chroot / build / flash tool to
+     develop and install postmarketOS.")
+    (license license:gpl3+)))
--
libgit2 1.5.1




This bug report was last modified 8 days ago.

Previous Next


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