GNU bug report logs - #52012
[PATCH] gnu: Add gnome-shell-extension-customize-ibus.

Previous Next

Package: guix-patches;

Reported by: "Songlin Jiang" <hollowman <at> hollowman.ml>

Date: Sun, 21 Nov 2021 08:52:01 UTC

Severity: normal

Tags: patch

Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>

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 52012 in the body.
You can then email your comments to 52012 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 guix-patches <at> gnu.org:
bug#52012; Package guix-patches. (Sun, 21 Nov 2021 08:52:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to "Songlin Jiang" <hollowman <at> hollowman.ml>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 21 Nov 2021 08:52:02 GMT) Full text and rfc822 format available.

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

From: "Songlin Jiang" <hollowman <at> hollowman.ml>
To: "guix-patches" <guix-patches <at> gnu.org>
Cc: Hollow Man <hollowman <at> hollowman.ml>
Subject: [PATCH] gnu: Add gnome-shell-extension-customize-ibus.
Date: Sun, 21 Nov 2021 14:10:32 +0800
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-customize-ibus): New variable
---
 gnu/packages/gnome-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 6d8d02fb9c..51a746e143 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -11,6 +11,7 @@
 ;;; Copyright © 2020 Ellis Kenyo <me <at> elken.dev>
 ;;; Copyright © 2020 Stefan Reichör <stefan <at> xsteve.at>
 ;;; Copyright © 2021 Vinicius Monego <monego <at> posteo.net>
+;;; Copyright © 2021 Songlin Jiang <hollowman <at> hollowman.ml>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -990,3 +991,38 @@ palette.")
 outputs notifications to STDOUT in order to allow the user to process
 notifications any way they prefer.")
       (license license:expat))))
+
+(define-public gnome-shell-extension-customize-ibus
+  (package
+    (name "gnome-shell-extension-customize-ibus")
+    (version "78")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/openSUSE/Customize-IBus.git")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1hnnsjriq7xaakk8biwz55mn077lnm9nsmi4wz5zk7clgxmasvq9"))))
+    (build-system copy-build-system)
+    (arguments
+     '(#:install-plan
+       '(("_build" "share/gnome-shell/extensions/customize-ibus <at> hollowman.ml"))
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'install 'compile-everything
+           (lambda _
+             (with-directory-excursion "."
+               (invoke "make"
+                       "_build"
+                       "VERSION=78"))
+             #t)))))
+    (native-inputs
+     `(("gettext" ,gettext-minimal)
+       ("glib:bin" ,glib "bin")))
+    (home-page "https://github.com/openSUSE/Customize-IBus")
+    (synopsis "GNOME Shell Extension for IBus Customization")
+    (description "Customize IBus provides full customization of appearance,
+behavior, system tray and input source indicator for IBus")
+    (license license:gpl3+)))
-- 
2.31.1

Reply sent to Liliana Marie Prikler <liliana.prikler <at> gmail.com>:
You have taken responsibility. (Sun, 21 Nov 2021 14:19:02 GMT) Full text and rfc822 format available.

Notification sent to "Songlin Jiang" <hollowman <at> hollowman.ml>:
bug acknowledged by developer. (Sun, 21 Nov 2021 14:19:02 GMT) Full text and rfc822 format available.

Message #10 received at 52012-done <at> debbugs.gnu.org (full text, mbox):

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: Songlin Jiang <hollowman <at> hollowman.ml>, 52012-done <at> debbugs.gnu.org
Subject: Re: [PATCH] gnu: Add gnome-shell-extension-customize-ibus.
Date: Sun, 21 Nov 2021 15:17:58 +0100
Hi,

I've applied this patch with the following changes.

Am Sonntag, den 21.11.2021, 14:10 +0800 schrieb Songlin Jiang:
> * gnu/packages/gnome-xyz.scm (gnome-shell-extension-customize-ibus):
> New variable
Added missing period.
> +
> +(define-public gnome-shell-extension-customize-ibus
Moved to the extensions, which unfortunately enough aren't currently
ordered alphabetically.
> +  (package
> +    (name "gnome-shell-extension-customize-ibus")
> +    (version "78")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/openSUSE/Customize-IBus.git")
> +             (commit (string-append "v" version))))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32
> "1hnnsjriq7xaakk8biwz55mn077lnm9nsmi4wz5zk7clgxmasvq9"))))
> +    (build-system copy-build-system)
Changed to gnu-build-system.
> +    (arguments
> +     '(#:install-plan
> +       '(("_build" "
> share/gnome-shell/extensions/customize-ibus <at> hollowman.ml"))
Added #:make-flags and #:tests? (with comment as to the "missing" test
phase).
> +       #:phases
> +       (modify-phases %standard-phases
> +         (add-before 'install 'compile-everything
> +           (lambda _
> +             (with-directory-excursion "."
> +               (invoke "make"
> +                       "_build"
> +                       "VERSION=78"))
> +             #t)))))
Dropped in favor of simply deleting bootstrap and configure.
> +    (native-inputs
> +     `(("gettext" ,gettext-minimal)
> +       ("glib:bin" ,glib "bin")))
> +    (home-page "https://github.com/openSUSE/Customize-IBus")
> +    (synopsis "GNOME Shell Extension for IBus Customization")
> +    (description "Customize IBus provides full customization of
> appearance,
> +behavior, system tray and input source indicator for IBus")
Added missing period.

Thanks





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

This bug report was last modified 2 years 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.