[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/13: gnu: gfeeds: Modernize package description.
From: |
guix-commits |
Subject: |
10/13: gnu: gfeeds: Modernize package description. |
Date: |
Sat, 1 Oct 2022 12:10:53 -0400 (EDT) |
lilyp pushed a commit to branch master
in repository guix.
commit 9619a31dc33c37014f501e8a9eca7de16e5cb468
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Thu Sep 15 22:16:55 2022 +0200
gnu: gfeeds: Modernize package description.
* gnu/packages/syndication.scm (gfeeds)[arguments]: Convert to list of
G-Expressions. Drop trailing #t.
[native-inputs]: Drop labels.
[inputs]: Add bash-minimal.
---
gnu/packages/syndication.scm | 52 +++++++++++++++++++++++---------------------
1 file changed, 27 insertions(+), 25 deletions(-)
diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm
index 05e4c20d97..7c2031cabf 100644
--- a/gnu/packages/syndication.scm
+++ b/gnu/packages/syndication.scm
@@ -26,6 +26,7 @@
#:use-module (guix git-download)
#:use-module (guix packages)
#:use-module (guix utils)
+ #:use-module (guix gexp)
#:use-module (guix build-system cargo)
#:use-module (guix build-system glib-or-gtk)
#:use-module (guix build-system gnu)
@@ -35,6 +36,7 @@
#:use-module (gnu packages)
#:use-module (gnu packages autotools)
#:use-module (gnu packages base)
+ #:use-module (gnu packages bash)
#:use-module (gnu packages build-tools)
#:use-module (gnu packages check)
#:use-module (gnu packages cmake)
@@ -533,33 +535,33 @@ parser. It is \"not fit for use at this point\", but
gfeeds uses it anyway.")
"045889417506w2l25j7jxx7jfdpfljbirhm1s4whvhk83xap19zb"))))
(build-system meson-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'patch-mpv-path
- (lambda* (#:key inputs #:allow-other-keys)
- (substitute* "gfeeds/confManager.py"
- (("mpv") (search-input-file inputs "/bin/mpv")))
- #t))
- (add-after 'unpack 'patch-webkit2-version
- (lambda* (#:key inputs #:allow-other-keys)
- (substitute* "bin/gfeeds.in"
- (("gi\\.require_version\\('WebKit2', '4\\.0'\\)")
- "gi.require_version('WebKit2', '4.1')"))))
- (add-after 'install 'wrap-gfeeds
- (lambda* (#:key outputs #:allow-other-keys)
- (wrap-program (string-append
- (assoc-ref outputs "out") "/bin/gfeeds")
- `("PYTHONPATH" ":" prefix (,(getenv "GUIX_PYTHONPATH")))
- `("GI_TYPELIB_PATH" ":" prefix (,(getenv "GI_TYPELIB_PATH")))
- `("XDG_DATA_DIRS" ":" prefix (,(getenv "XDG_DATA_DIRS"))))
- #t)))))
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-mpv-path
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "gfeeds/confManager.py"
+ (("mpv") (search-input-file inputs "/bin/mpv")))))
+ (add-after 'unpack 'patch-webkit2-version
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "bin/gfeeds.in"
+ (("gi\\.require_version\\('WebKit2', '4\\.0'\\)")
+ "gi.require_version('WebKit2', '4.1')"))))
+ (add-after 'install 'wrap-gfeeds
+ (lambda* (#:key outputs #:allow-other-keys)
+ (wrap-program (string-append
+ (assoc-ref outputs "out") "/bin/gfeeds")
+ `("PYTHONPATH" ":" prefix (,(getenv "GUIX_PYTHONPATH")))
+ `("GI_TYPELIB_PATH" ":" prefix (,(getenv "GI_TYPELIB_PATH")))
+ `("XDG_DATA_DIRS" ":" prefix (,(getenv "XDG_DATA_DIRS")))))))))
(native-inputs
- `(("glib:bin" ,glib "bin")
- ("gobject-introspection" ,gobject-introspection)
- ("gtk+:bin" ,gtk+ "bin")
- ("pkg-config" ,pkg-config)))
+ (list `(,glib "bin")
+ `(,gtk+ "bin")
+ gobject-introspection
+ pkg-config))
(inputs
- (list glib
+ (list bash-minimal
+ glib
gsettings-desktop-schemas
gtk+
hicolor-icon-theme
- 07/13: gnu: Add python-readability-lxml., (continued)
- 07/13: gnu: Add python-readability-lxml., guix-commits, 2022/10/01
- 08/13: gnu: Add syndication-domination., guix-commits, 2022/10/01
- 03/13: gnu: libadwaita: Update to 1.2.0., guix-commits, 2022/10/01
- 09/13: gnu: gfeeds: Use git origin., guix-commits, 2022/10/01
- 11/13: gnu: gfeeds: Update to 1.0.3., guix-commits, 2022/10/01
- 13/13: gnu: komikku: Update to 1.0.0., guix-commits, 2022/10/01
- 06/13: gnu: Add python-timeout-decorator., guix-commits, 2022/10/01
- 04/13: gnu: blueprint-compiler: Wrap GUIX_PYTHONPATH and GI_TYPELIB_PATH., guix-commits, 2022/10/01
- 12/13: gnu: komikku: Use G-Expressions., guix-commits, 2022/10/01
- 05/13: gnu: pugixml: Update to 1.12.1., guix-commits, 2022/10/01
- 10/13: gnu: gfeeds: Modernize package description.,
guix-commits <=