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

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

bug#52013: closed ([PATCH] gnu: Add ibus-theme-tools.)


From: GNU bug Tracking System
Subject: bug#52013: closed ([PATCH] gnu: Add ibus-theme-tools.)
Date: Sun, 21 Nov 2021 14:20:02 +0000

Your message dated Sun, 21 Nov 2021 15:19:26 +0100
with message-id <1efcfee116ffd45543bafdc355c8d9a8a17c0700.camel@gmail.com>
and subject line Re: [PATCH] gnu: Add ibus-theme-tools.
has caused the debbugs.gnu.org bug report #52013,
regarding [PATCH] gnu: Add ibus-theme-tools.
to be marked as done.

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


-- 
52013: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=52013
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add ibus-theme-tools. Date: Sun, 21 Nov 2021 14:17:32 +0800
* gnu/packages/ibus.scm (ibus-theme-tools): New variable
---
 gnu/packages/ibus.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/ibus.scm b/gnu/packages/ibus.scm
index 48a2445c7d..76dcf386b5 100644
--- a/gnu/packages/ibus.scm
+++ b/gnu/packages/ibus.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2018, 2019, 2020, 2021 Peng Mei Yu <pengmeiyu@riseup.net>
 ;;; Copyright © 2020 kanichos <kanichos@yandex.ru>
 ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
+;;; Copyright © 2021 Songlin Jiang <hollowman@hollowman.ml>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -31,6 +32,7 @@
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system glib-or-gtk)
+  #:use-module (guix build-system python)
   #:use-module (guix utils)
   #:use-module (gnu packages)
   #:use-module (gnu packages anthy)
@@ -51,6 +53,7 @@
   #:use-module (gnu packages logging)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python)
+  #:use-module (gnu packages python-web)
   #:use-module (gnu packages serialization)
   #:use-module (gnu packages sqlite)
   #:use-module (gnu packages textutils)
@@ -771,3 +774,33 @@ hanja dictionary and small hangul character 
classification.")
     (description
      "ibus-hangul is a Korean input method engine for IBus.")
     (license gpl2+)))
+
+(define-public ibus-theme-tools
+  (package
+    (name "ibus-theme-tools")
+    (version "4.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/openSUSE/IBus-Theme-Tools";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "0i8vwnikwd1bfpv4xlgzc51gn6s18q58nqhvcdiyjzcmy3z344c2"))))
+    (build-system python-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (delete 'check))))
+    (propagated-inputs
+     `(("python-tinycss2" ,python-tinycss2)
+       ("python-pygobject" ,python-pygobject)))
+    (native-inputs
+     `(("gettext" ,gettext-minimal)))
+    (home-page "https://github.com/openSUSE/IBus-Theme-Tools";)
+    (synopsis "Tool for IBus Themes")
+    (description "IBus Theme Tools can generate the IBus GTK or
+GNOME Shell theme from existing themes.")
+    (license gpl3+)))
-- 
2.31.1

--- End Message ---
--- Begin Message --- Subject: Re: [PATCH] gnu: Add ibus-theme-tools. Date: Sun, 21 Nov 2021 15:19:26 +0100 User-agent: Evolution 3.34.2
Pushed with a rewritten description.  Followed up with the following
fix:

Am Sonntag, den 21.11.2021, 14:17 +0800 schrieb Songlin Jiang:
> +    (arguments
> +     '(#:phases
> +       (modify-phases %standard-phases
> +         (delete 'check))))
The check phase is not to be deleted.  Use #:tests? #f with an
appropriate comment instead.

Cheers



--- End Message ---

reply via email to

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