From unknown Tue Jun 17 01:40:55 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#56299 <56299@debbugs.gnu.org> To: bug#56299 <56299@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Added breeze-gtk package. Reply-To: bug#56299 <56299@debbugs.gnu.org> Date: Tue, 17 Jun 2025 08:40:55 +0000 retitle 56299 [PATCH] gnu: Added breeze-gtk package. reassign 56299 guix-patches submitter 56299 Samuel Fadel severity 56299 normal tag 56299 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 29 11:44:48 2022 Received: (at submit) by debbugs.gnu.org; 29 Jun 2022 15:44:48 +0000 Received: from localhost ([127.0.0.1]:59894 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o6Zry-0006wX-Tz for submit@debbugs.gnu.org; Wed, 29 Jun 2022 11:44:48 -0400 Received: from lists.gnu.org ([209.51.188.17]:35778) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o6U1D-0003yR-Ht for submit@debbugs.gnu.org; Wed, 29 Jun 2022 05:29:58 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:41272) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o6U1D-0003i9-7e for guix-patches@gnu.org; Wed, 29 Jun 2022 05:29:55 -0400 Received: from mout-p-201.mailbox.org ([2001:67c:2050:0:465::201]:40452) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1o6U1A-0007co-1b for guix-patches@gnu.org; Wed, 29 Jun 2022 05:29:53 -0400 Received: from smtp2.mailbox.org (smtp2.mailbox.org [IPv6:2001:67c:2050:b231:465::2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-201.mailbox.org (Postfix) with ESMTPS id 4LXx4m0vw5z9sNX; Wed, 29 Jun 2022 11:29:44 +0200 (CEST) From: Samuel Fadel To: guix-patches@gnu.org Subject: [PATCH] gnu: Added breeze-gtk package. Date: Wed, 29 Jun 2022 11:26:28 +0200 Message-Id: <8c2173a9d5264c7b811927e64f6e8878f9ca013f.1656494787.git.samuel@nihil.ws> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4LXx4m0vw5z9sNX Received-SPF: none client-ip=2001:67c:2050:0:465::201; envelope-from=samuel@nihil.ws; helo=mout-p-201.mailbox.org X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Wed, 29 Jun 2022 11:44:45 -0400 Cc: Samuel Fadel X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) I personally like my 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.36.1 From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 29 13:51:30 2022 Received: (at control) by debbugs.gnu.org; 29 Jun 2022 17:51:30 +0000 Received: from localhost ([127.0.0.1]:60129 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o6bqc-0004Es-2U for submit@debbugs.gnu.org; Wed, 29 Jun 2022 13:51:30 -0400 Received: from tobias.gr ([80.241.217.52]:54474) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o6bqZ-0004Eg-5d for control@debbugs.gnu.org; Wed, 29 Jun 2022 13:51:28 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=nXLLs6JJoM7bj iumD3EJVqvbLqmg8en5x05UAa/pmVc=; h=subject:to:from:date; d=tobias.gr; b=gqMJ1lnbEZgWNrVlphw2eRqeHzovw+wV91zWesjhDyshYWHK5M8cLNNyoF8UWQyLjKJd gUvocdWQodQTT6riJ5JTLN+F94nITEgDagLI7PsrbvUzcMD678yKjNoLs0xG2o7bApfC5g bXLLIe3jcGn3OdZQ7fIdFEyxknEOe7hONUf1bxhykLP2YvfWoqFH/5QRzQcORmtJVJi6ed owWcaxSlQS/vyKIV/TySTGxZSlUutIJnkw3F6ECPzhyLI467J/tt5QcKWcLpNcSj9X7Pfa 8l6GY1nu4w+Xq6VQvcKDrcmMNgI8OUFAVi93FfIQh9r1mpu8mk0cfHbz6aNqszBQ== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id f3b7f3e5 (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO) for ; Wed, 29 Jun 2022 17:51:24 +0000 (UTC) Date: Wed, 29 Jun 2022 17:51:24 +0000 From: Tobias Geerinckx-Rice To: control@debbugs.gnu.org Subject: Message-ID: <8EBB49A2-1455-4162-A764-7537BA9D020D@tobias.gr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Autocrypt: addr=me@tobias.gr; keydata= mQINBFVks2ABEACjGBPhWf/qx0L9OhEIrAFTimo5dHa1FLy0AHaHvxmwYSIdJmERYGiNle1rcOvw cFRtu8KJUsrs27Vgoso3qHJpghVitUUf0v3ZuXQT9kfuQLz1Y8pyMzHwVFMLiJVj4Z3y7CJk+xyZ cpSAMbyPINbFVEhsK+z+8ojVGuaiucZkib6b67ySG6Pp1bon8xVvosj71ZRjfXh1t4X8laWO7fQq itT9lmc6DxbE/4vIhR+Vb2MblaA+DyHoNHGGao89h4CO99lfzWzsux41DnEG9d317sJRQTig6Wja EKHXZRA9FbfogD4SDa2uQYCpTJpsVjAyZyu2fuJ+t0zJJ+Ai9qDY87P6hOyd+/n8Eh2Y4TbxJiDo XUT72XY/RfPH1qrMIP3EI/NNL4LQeGG1n+625k3OVWcRVXG2vRrB6qurLmGkLEmjXWCFD9cCRGfH LeajLm9sM+t/nZPZ3btetcmK9tM2EwivyLUNhrTk73UUnI4CSAzdO2cISqo9zSMtFgj2alqd2fOR s7CKfEn+5PquruDbp/Ej7dOOrjgWSCXLDDYXRrtaKrLz/dhqq5ftFYi9tUTTQecFotM08fPtu+Kw JMP2ySHCkUqp0GvrUCeSRPAJZsmJrd535y+LlRhnqb0mbG4dgMa8A6xhkFYugnqldy/q7kX1EmRI 686N7bA6fh1MCQARAQABtCRUb2JpYXMgR2VlcmluY2t4LVJpY2UgPG1lQHRvYmlhcy5ncj6JAlIE EwEKADwCHgECF4ACGQECGwMWIQT1vFU0w28Ah7OdNu8cncT+udt8SwUCXpe0rAYLCQgHCgQFFQoJ CAsFFgMCAQAACgkQHJ3E/rnbfEu5IhAAk+0BW/twLmx1xMmeXn+I7Ne6SG3++0TRBduEaGWV3n59 lX6XPZUQdAPpS4uy0H+c90Owkw+aWUEwfyOWphrxZRtR2cCOP/3Pxj3Vgtz5RkY4u27lMj15jqa/ p7l2l256ZKJOegr9TvOWtkhMp5lxeVHT6f/44Kv/r/8mMCgSnLXYrEWPE462xI+mIJOanHLJb6No f2xLRCvXoLLp7Yejjv1dwOO71R9PMRhtNy46pZM1ylQ++UTkeSocJw4aNtiu0DHOkX9AlNBkutIx x07RpO+MqJKlzzLeQiC/fE5+dR2itRONopwXAqN3MuT7MonQo5XifBn+VK8i9xZWTXZDkWItWtCC 8oIj4zwxwFWiTmMwwSbI3Wdd/11Zw3CLc4Gd0M6NVgvAnuErQXSgr4lrWhZcncvi4L6EJTc9AUSa 8UWPF+S9t+CHTukpJmcYnsccMkOBhT7OZlmWBsylrYK/JTRWqgWSHWdSKmOuLK+MGDneOZEHkEcf jeXRWvmG7MSU5tE/p7NDLIg9vkvhQV9b0q4OtY65uNWbRe2QRJaYMDcYUAeSZzivRa8VaoVen6tb FvH44zpCxubn23ABl9YIzwvJC++r+H2qLdLpy0cfITiZadZ74Ae0aosNw7XARS6OY+A03BfXyPiI 2oW0jf/PdH9sh2mQrQxIQJ5cZz6Z3X0= X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: merge 56299 56300 Kind regards, T G-R Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 BLANK_SUBJECT Subject is present but empty -0.0 T_SCC_BODY_TEXT_LINE No description available. X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) merge 56299 56300 Kind regards, T G-R Sent on the go=2E Excuse or enjoy my brevity=2E From debbugs-submit-bounces@debbugs.gnu.org Wed Jul 06 04:20:25 2022 Received: (at control) by debbugs.gnu.org; 6 Jul 2022 08:20:25 +0000 Received: from localhost ([127.0.0.1]:52201 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o90Gf-0003RM-V3 for submit@debbugs.gnu.org; Wed, 06 Jul 2022 04:20:25 -0400 Received: from mout-p-102.mailbox.org ([80.241.56.152]:55240) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o90Ge-0003Qz-3l for control@debbugs.gnu.org; Wed, 06 Jul 2022 04:20:16 -0400 Received: from smtp202.mailbox.org (smtp202.mailbox.org [IPv6:2001:67c:2050:b231:465::202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-102.mailbox.org (Postfix) with ESMTPS id 4LdCCD1Rsxz9sml for ; Wed, 6 Jul 2022 10:20:08 +0200 (CEST) From: Samuel Fadel To: control@debbugs.gnu.org Subject: [bug#56300] [PATCH] gnu: Added breeze-gtk package. In-Reply-To: <89111d65883aadc4c42915910961be99@tobias.gr> References: <87sfnnxzv8.fsf@t490> <94786677-7FBC-4C15-9E59-0A04EABF818D@tobias.gr> <878rp7n04r.fsf@p14s> <89111d65883aadc4c42915910961be99@tobias.gr> Date: Wed, 06 Jul 2022 10:20:06 +0200 Message-ID: <87pmiitzyh.fsf@t490> MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 4LdCCD1Rsxz9sml X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) merge 56300 56321 quit From unknown Tue Jun 17 01:40:55 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 10 Aug 2022 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator