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

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

bug#56300: closed ([PATCH] gnu: Added breeze-gtk package.)


From: GNU bug Tracking System
Subject: bug#56300: closed ([PATCH] gnu: Added breeze-gtk package.)
Date: Tue, 12 Jul 2022 21:41:02 +0000

Your message dated Tue, 12 Jul 2022 23:39:44 +0200
with message-id <87a69ec8nz.fsf@gnu.org>
and subject line Re: bug#56321: [PATCH v2] gnu: Add breeze-gtk.
has caused the debbugs.gnu.org bug report #56321,
regarding [PATCH] gnu: Added breeze-gtk package.
to be marked as done.

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


-- 
56321: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=56321
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Added breeze-gtk package. Date: Wed, 29 Jun 2022 17:18:03 +0200
(I tried sending this message earlier today and had some issues. I
apologize in advance if both were successful.)

Some people like when GTK and Qt programs to have a consistent look. I
noticed the GTK port of the Breeze theme was missing from the repos, so
this is adding it.

I am unsure about the licensing as their current repo mentions both the
LGPL 2.1 and BSD 3-clause. How should I set it properly? Is just LGPL
2.1 enough?

---
 gnu/packages/kde-plasma.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 5621d8ea35..558efe0562 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -83,6 +83,31 @@ (define-public breeze
 the Plasma Desktop.  Breeze is the default theme for the KDE Plasma desktop.")
     (license license:gpl2+)))

+(define-public breeze-gtk
+  (package
+   (name "breeze-gtk")
+   (version "5.19.5")
+   (source (origin
+            (method url-fetch)
+            (uri (string-append "mirror://kde/stable/plasma/" version "/"
+                                name "-" version ".tar.xz"))
+            (sha256
+             (base32
+              "1j2nq9yw1ragmgwrz9f6ca4ifpi86qv1bbprdgd2qm2yh7vb44sj"))))
+   (build-system qt-build-system)
+   (arguments
+    `(#:phases
+      (modify-phases %standard-phases
+                     (delete 'check)))) ; Test phase not defined
+   (native-inputs
+    (list breeze extra-cmake-modules sassc python python-pycairo))
+   (home-page "https://invent.kde.org/plasma/breeze";)
+   (synopsis "Default KDE Plasma theme (GTK+ port)")
+   (description "GTK+ port of the Breeze visual style for the Plasma Desktop.
+Breeze is the default theme for the KDE Plasma desktop.")
+   (license license:lgpl2.1)))
+
+
 (define-public kdecoration
   (package
     (name "kdecoration")
[ 2-line signature. Click/Enter to show. ]
-- 
2.36.1
-------------------- End of forwarded message --------------------



--- End Message ---
--- Begin Message --- Subject: Re: bug#56321: [PATCH v2] gnu: Add breeze-gtk. Date: Tue, 12 Jul 2022 23:39:44 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux)
Hi,

Samuel Fadel <samuel@nihil.ws> skribis:

> This adds the GTK port of the Breeze theme. This v2 of the patch
> includes more accurate licensing infomation.
>
> * gnu/packages/kde-plasma.scm (breeze-gtk): Added package.

Applied with the changes below.

Thanks,
Ludo’.

diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index dde74b084d..4ae6ac9484 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -31,11 +31,14 @@ (define-module (gnu packages kde-plasma)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages freedesktop)
   #:use-module (gnu packages glib)
+  #:use-module (gnu packages gtk)
   #:use-module (gnu packages kde-frameworks)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages python)
   #:use-module (gnu packages qt)
-  #:use-module (gnu packages xorg))
+  #:use-module (gnu packages xorg)
+  #:use-module (gnu packages web))
 
 (define-public breeze
   (package
@@ -95,10 +98,7 @@ (define-public breeze-gtk
              (base32
               "1j2nq9yw1ragmgwrz9f6ca4ifpi86qv1bbprdgd2qm2yh7vb44sj"))))
    (build-system qt-build-system)
-   (arguments
-    `(#:phases
-      (modify-phases %standard-phases
-                     (delete 'check)))) ; Test phase not defined
+   (arguments '(#:tests? #f))                     ;no 'test' target
    (native-inputs
     (list breeze extra-cmake-modules sassc python python-pycairo))
    (home-page "https://invent.kde.org/plasma/breeze";)
@@ -306,3 +306,4 @@ (define-public libksysguard
 with a ksysguardd daemon, which may also run on a remote system.")
     (license license:gpl3+)))
 
+

--- End Message ---

reply via email to

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