emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#66826: closed ([PATCH] gnu: Add pantheon-iconbrowser.)


From: GNU bug Tracking System
Subject: bug#66826: closed ([PATCH] gnu: Add pantheon-iconbrowser.)
Date: Sun, 05 Nov 2023 15:11:03 +0000

Your message dated Sun, 05 Nov 2023 15:09:14 +0000
with message-id 
<iwRBbWGJR2Hdnh0XUWu3L36gQacypkQrjmOPmOYMx-NgUvmg6wU6v5x1CEFNfYhk6bGNz8_UIBAbfFLBTqbBe_tvYKZ5OgfhzJQfqgKhCsU=@protonmail.com>
and subject line Closing issue
has caused the debbugs.gnu.org bug report #66826,
regarding [PATCH] gnu: Add pantheon-iconbrowser.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
66826: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=66826
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add pantheon-iconbrowser. Date: Sun, 29 Oct 2023 19:21:26 +0000
* gnu/packages/pantheon.scm (pantheon-iconbrowser): New variable.

Change-Id: I4c1b0aa8a5593e384214e4b1fbad4fef8eaedf4d
---
guix build --no-grafts --check --rounds=2 was successfully run on a Zen4 CPU,
for the following --system= options:
- x86_64-linux
- i686-linux.
The build is currently failing for aarch64 because of a dependency’s build
failure.
 gnu/packages/pantheon.scm | 40 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/pantheon.scm b/gnu/packages/pantheon.scm
index 3465e5cb37..eb7044c5a9 100644
--- a/gnu/packages/pantheon.scm
+++ b/gnu/packages/pantheon.scm
@@ -136,6 +136,46 @@ (define-public pantheon-calculator
 desktop.")
     (license license:gpl3)))
 
+(define-public pantheon-iconbrowser
+  (package
+    (name "pantheon-iconbrowser")
+    (version "2.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/elementary/iconbrowser";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0b1afyizq3c94qkf4cqy5jnb4v3nib5vc88k34r08c604p1z2h8p"))))
+    (build-system meson-build-system)
+    (arguments
+     `(#:glib-or-gtk? #t
+       #:phases (modify-phases %standard-phases
+                  (add-after 'install 'install-symlinks
+                    (lambda* (#:key outputs #:allow-other-keys)
+                      (let* ((out (assoc-ref outputs "out"))
+                             (bin (string-append out
+                                   "/bin/io.elementary.iconbrowser"))
+                             (link (string-append out
+                                                  
"/bin/pantheon-iconbrowser")))
+                        (symlink bin link)))))))
+    (native-inputs (list gettext-minimal ;for msgfmt
+                         `(,glib "bin")
+                         `(,gtk "bin")
+                         pkg-config
+                         vala))
+    (inputs (list granite gtk gtksourceview))
+    (synopsis "Browse and search system icons")
+    (description
+     "Icon Browser is an application for browsing system icons by
+category or searching them by name.  It displays icons at different sizes, as
+well as code snippets (to use the icons in your own apps).  It is designed for
+the Pantheon desktop environment (originally from elementary OS).")
+    (home-page "https://elementary.io/open-source";)
+    (license license:gpl3+)))
+
 (define-public pantheon-photos
   (package
     (name "pantheon-photos")

base-commit: 26565f1bc8548011bc0e1b821a9a957db1bc2d8f
prerequisite-patch-id: b3506da85d629b0f39af22c99c099838a4720442
prerequisite-patch-id: 62b04b32dc257f4d4b62c8618b72931143d46627
-- 
2.41.0





--- End Message ---
--- Begin Message --- Subject: Closing issue Date: Sun, 05 Nov 2023 15:09:14 +0000
Closing as the patch has been sent as part of a series 
(https://issues.guix.gnu.org/66821).


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]