unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#36382] A service for adding support for running portable binaries built for most linux distributions that use the filesystem hierarchy standard
@ 2019-06-25 23:00 pkill9
  2019-07-04  7:16 ` Efraim Flashner
  0 siblings, 1 reply; 2+ messages in thread
From: pkill9 @ 2019-06-25 23:00 UTC (permalink / raw)
  To: 36382

[-- Attachment #1: Type: text/plain, Size: 1708 bytes --]

Hi Guix, for a while now I have been using a service I wrote that allows you to run portable binaries, such as AppImages, which expect to be run on distros that respect the filesystem hierarchy standard i.e store required libraries in /usr, /lib, etc, which is most distros.

I think it could be a valuable tool to have in Guix, as it allows you to run software that hasn't yet been packaged in Guix that is distributed as binaries by the author. Also, if builds are failing in Guix, it's useful to have the alternative - for example, calibre currently can't be built due to build failure of a dependency (qtwebkit), so I use the Calibre tar bundle distributed by the website for now.

This still requires some work before it's ready for inclusion in Guix - decisions on how it's implemented need to be made, and the code needs cleanup. But if I don't submit it in it's imperfect state, i won't get anything done on it.

I've done a little writeup on how it works here: http://miha.info/2019/June/24/guix-fhs-service

I've attached a patch for it. To build a guix system with it, add to the guix system services:

(service fhs-binaries-compatibility-service-type
  (fhs-configuration
    (lib-packages <list of package objects to provide libraries for the binaries>)
    (additional-special-files <more special files to add>)
    (additional-profile-packages <packages to add to system profile>)))

The additional-special-files and additional-profile-packages are functionally exactly the same as using special-files-service-type and profile-service-type separately, it's purely for organising the config so the admin knows why those special files and profile packages were added.






[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: fhs-service.patch --]
[-- Type: text/x-patch; name="fhs-service.patch", Size: 7116 bytes --]

diff --git a/gnu/services/fhs.scm b/gnu/services/fhs.scm
new file mode 100644
index 0000000..9ca6ab9
--- /dev/null
+++ b/gnu/services/fhs.scm
@@ -0,0 +1,140 @@
+(define-module (gnu services fhs)
+  #:use-module (ice-9 ftw) ;; for creating recursive list of directories of libs for FHS  #:use-module (guix download)
+  #:use-module (srfi srfi-1) ;; For filter-map
+  #:use-module (guix records) ;; For defining record types
+  #:use-module (guix profiles) ;; for  manifest-entries
+  #:use-module (gnu services) ;; For defining services
+  #:use-module (guix gexp) ;; For computed-file and other things
+  #:use-module (guix packages) ;; For package
+  #:use-module (gnu packages) ;; For specifications->manifest
+  #:use-module (gnu packages base) ;; For glibc
+
+  #:export (fhs-binaries-compatibility-service-type
+            fhs-binaries-compatibility-service
+            fhs-configuration))
+
+(define (32bit-package pkg)
+  (package (inherit pkg)
+           (name (string-append (package-name pkg) "-i686-linux"))
+	   (arguments
+	    `(#:system "i686-linux"
+	      ,@(package-arguments pkg)))))
+
+(define glibc-for-fhs
+  (package (inherit glibc)
+           (name "glibc-for-fhs") ;; Maybe rename this to "glibc-with-ldconfig-for-fhs"
+           (source (origin
+                    (inherit (package-source glibc))
+                    (snippet #f))))) ;; Re-enable ldconfig
+
+
+(define (packages->ld.so.conf packages)
+  (computed-file
+   "ld.so.conf"
+   (with-imported-modules
+    `((guix build union)
+      (guix build utils))
+    #~(begin
+        (use-modules (guix build union)
+                     (guix build utils))
+        (let* ((packages '#$packages) ;; Need to quote "#$packages" as #$packages tries to "apply" the first item to the rest, like a procedure.
+               (find-lib-directories-in-single-package
+                (lambda (package)
+                  (find-files (string-append package "/lib")
+                              (lambda (file stat)
+                                ;; setting keyword "stat" to "stat" means it will follow
+                                ;; symlinks, unlike what it's set to by default ("lstat").
+                                (eq? 'directory (stat:type stat)))
+                              #:stat stat
+                              #:directories? #t)))
+               (find-lib-directories-in-all-packages
+                (lambda (packages)
+                  (apply append ;; Concatenate the directory lists from "map" into one list
+                         (map (lambda (package)
+                                (find-lib-directories-in-single-package package))
+                              packages))))
+               (fhs-lib-dirs
+                 (find-lib-directories-in-all-packages packages)))
+               (with-output-to-file
+                   #$output
+                 (lambda _
+                   (format #t
+                           (string-join fhs-lib-dirs "\n"))
+                   #$output)))))))
+
+(define (ld.so.conf->ld.so.cache ld-conf)
+  (computed-file "ld.so.cache"
+                 (with-imported-modules `((guix build utils))
+                                        #~(begin
+                                            (use-modules (guix build utils))
+                                            (let* ((ldconfig (string-append #$glibc-for-fhs "/sbin/ldconfig")))
+                                              (invoke ldconfig
+                                                      "-X" ;; Don't update symbolic links
+                                                      "-f" #$ld-conf ;; Use #$configuration as configuration file
+                                                      "-C" #$output)))))) ;; Use #$output as cache file
+
+(define (packages->ld.so.cache packages)
+  (ld.so.conf->ld.so.cache (packages->ld.so.conf packages)))
+
+(define-record-type* <fhs-configuration>
+  fhs-configuration
+  make-fhs-configuration
+  fhs-configuration?
+  (lib-packages                   fhs-configuration-lib-packages
+                                  (default '()))
+  (additional-profile-packages    fhs-configuration-additional-profile-packages ;; For putting programs in $PATH and for share data
+                                  (default '()))
+  (additional-special-files       fhs-configuration-additional-special-files
+                                  (default '())))
+
+(define* (union name packages #:key options)
+  (computed-file name
+                 (with-imported-modules `((guix build union))
+                                        #~(begin
+                                            (use-modules (guix build union))
+                                            (union-build #$output '#$packages)))
+                 #:options options))
+
+(define* (fhs-libs-union packages #:key system)
+  (let* ((name (if system
+                   (string-append "fhs-libs-" system)
+                   "fhs-libs")))
+    (union name
+           packages
+           #:options `(#:system ,system))))
+
+(define (fhs-special-files-service config)
+  "Return the list of special files for the fhs service"
+  (let* ((fhs-lib-packages (fhs-configuration-lib-packages config))
+         (fhs-lib-package-unions (append fhs-lib-packages
+                                         `(,(fhs-libs-union fhs-lib-packages #:system "i686-linux"))))
+         (fhs-glibc-special-files
+          `(("/etc/ld.so.cache" ,(packages->ld.so.cache fhs-lib-package-unions))
+            ("/etc/ld.so.conf" ,(packages->ld.so.conf fhs-lib-package-unions)) ;;Not needed to function, but put it here anyway for debugging purposes
+            ("/lib64/ld-linux-x86-64.so.2" ,(file-append (canonical-package glibc-for-fhs) "/lib/ld-linux-x86-64.so.2"))
+            ("/lib/ld-linux.so.2" ,(file-append (canonical-package (32bit-package glibc-for-fhs)) "/lib/ld-linux.so.2"))))
+         ;;             ("/fhs/libs" ,(file-append (canonical-package fhs-libs-64) "/lib"))
+         (fhs-additional-special-files (fhs-configuration-additional-special-files config)))
+    (append fhs-glibc-special-files
+            fhs-additional-special-files)))
+
+(define (fhs-profile-service config)
+  "Return the list of packages to add to the system profile"
+  ;; Get list of packages from config to add to system profile and return them
+  (fhs-configuration-additional-profile-packages config))
+
+
+(define fhs-binaries-compatibility-service-type
+  (service-type (name 'fhs-compatibility-service)
+                (extensions
+                 (list (service-extension special-files-service-type
+                                          fhs-special-files-service)
+                       (service-extension profile-service-type
+                                          fhs-profile-service)
+                       ))
+                (description
+                 "Support binaries compiled for the filesystem hierarchy standard.")
+                (default-value (fhs-configuration))))
+
+(define fhs-binaries-compatibility-service
+  (service fhs-binaries-compatibility-service-type))

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-07-04  7:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-25 23:00 [bug#36382] A service for adding support for running portable binaries built for most linux distributions that use the filesystem hierarchy standard pkill9
2019-07-04  7:16 ` Efraim Flashner

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).