From unknown Fri Jun 20 18:24:45 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#56300 <56300@debbugs.gnu.org> To: bug#56300 <56300@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Added breeze-gtk package. Reply-To: bug#56300 <56300@debbugs.gnu.org> Date: Sat, 21 Jun 2025 01:24:45 +0000 retitle 56300 [PATCH] gnu: Added breeze-gtk package. reassign 56300 guix-patches submitter 56300 Samuel Fadel severity 56300 normal tag 56300 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 29 11:44:49 2022 Received: (at submit) by debbugs.gnu.org; 29 Jun 2022 15:44:49 +0000 Received: from localhost ([127.0.0.1]:59896 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o6Zs0-0006wc-NU for submit@debbugs.gnu.org; Wed, 29 Jun 2022 11:44:49 -0400 Received: from lists.gnu.org ([209.51.188.17]:54796) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o6ZSI-0006Fx-85 for submit@debbugs.gnu.org; Wed, 29 Jun 2022 11:18:15 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55906) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o6ZSI-0007B1-2Z for guix-patches@gnu.org; Wed, 29 Jun 2022 11:18:14 -0400 Received: from mout-p-202.mailbox.org ([80.241.56.172]:53210) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1o6ZSG-0007ON-9r for guix-patches@gnu.org; Wed, 29 Jun 2022 11:18:13 -0400 Received: from smtp102.mailbox.org (smtp102.mailbox.org [10.196.197.102]) (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-202.mailbox.org (Postfix) with ESMTPS id 4LY4pl6CBDz9sSS for ; Wed, 29 Jun 2022 17:18:07 +0200 (CEST) From: Samuel Fadel To: guix-patches@gnu.org Subject: [PATCH] gnu: Added breeze-gtk package. Date: Wed, 29 Jun 2022 17:18:03 +0200 Message-ID: <87sfnnxzv8.fsf@t490> MIME-Version: 1.0 Content-Type: text/plain Received-SPF: none client-ip=80.241.56.172; envelope-from=samuel@nihil.ws; helo=mout-p-202.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 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 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 -------------------- 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 Jun 29 14:21:20 2022 Received: (at submit) by debbugs.gnu.org; 29 Jun 2022 18:21:20 +0000 Received: from localhost ([127.0.0.1]:60190 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o6cJT-0007Fo-RQ for submit@debbugs.gnu.org; Wed, 29 Jun 2022 14:21:20 -0400 Received: from lists.gnu.org ([209.51.188.17]:47726) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o6cJP-0007Fa-SZ for submit@debbugs.gnu.org; Wed, 29 Jun 2022 14:21:16 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:48510) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o6cJP-0005O4-M9 for guix-patches@gnu.org; Wed, 29 Jun 2022 14:21:15 -0400 Received: from tobias.gr ([2a02:c205:2020:6054::1]:55526) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o6cJM-0006yN-TI for guix-patches@gnu.org; Wed, 29 Jun 2022 14:21:15 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=gZFk6AXYuo0C4 volt1INEe6d8smHpAu+7Bz5mDLKKd4=; h=references:in-reply-to:subject:to: from:date; d=tobias.gr; b=m7y1WHOlBGS8s4USxXP48+zVFb2b0O/0fOGQP7YL3/dO HIObGlZBvic1J4vv5baR+qxWGbuzgYXT6ylx3jxsaqd81wWqxJaB+ilfUe1IXBIfIJxo9e 2BohmVY4vdrZlknrp7eb8BSKwSufed4Gl4EDDFRw+QcuQCmRVb4nw6Oy3T86VFgmoHqQj5 KKpZFsd/S8sXZ0penUBaoJ/No6ojgycUbOBc6M6jB9/z/aEP/jD1fPLvYx9a8lxlQbsh6I RuhuGmSK27Nw2jxTTBSaDShzh6LoTIw1aeVWgBLGMgq/FcXGVqDmOCkfT63QfaoUppzTf6 IWB6pTA5zbyPn5izkg== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id b20565f4 (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Wed, 29 Jun 2022 18:21:07 +0000 (UTC) Date: Wed, 29 Jun 2022 18:21:07 +0000 From: Tobias Geerinckx-Rice To: guix-patches@gnu.org, Samuel Fadel , 56300@debbugs.gnu.org Subject: Re: [bug#56300] [PATCH] gnu: Added breeze-gtk package. In-Reply-To: <87sfnnxzv8.fsf@t490> References: <87sfnnxzv8.fsf@t490> Message-ID: <94786677-7FBC-4C15-9E59-0A04EABF818D@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= Received-SPF: pass client-ip=2a02:c205:2020:6054::1; envelope-from=me@tobias.gr; helo=tobias.gr X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.7 (-) X-Debbugs-Envelope-To: submit 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: -2.7 (--) Re: the licence: you could specify only lgpl2=2E1 as that's the result of c= ombining lgpl2=2E1 with bsd-3, but you can also specify both in a (list =2E= =2E=2E) with comments next to each one to explain what applies to which fil= e(s)=2E I prefer the latter but neither is wrong=2E Kind regards, T G-R Sent on the go=2E Excuse or enjoy my brevity=2E From debbugs-submit-bounces@debbugs.gnu.org Tue Jul 05 10:07:51 2022 Received: (at 56300) by debbugs.gnu.org; 5 Jul 2022 14:07:51 +0000 Received: from localhost ([127.0.0.1]:51182 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o8jDP-0006H0-P3 for submit@debbugs.gnu.org; Tue, 05 Jul 2022 10:07:51 -0400 Received: from tobias.gr ([80.241.217.52]:36786) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o8jDK-0006Gl-7C for 56300@debbugs.gnu.org; Tue, 05 Jul 2022 10:07:46 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=rbLqk2fvQbo6z 1FLVHQwbVOUxnx4vb8nUTRC7AJZlSE=; h=references:in-reply-to:subject:cc: to:from:date; d=tobias.gr; b=Td8jxFSz1nPR69itdYBOADhZEVi0ObabxbOI0KPGx FC/0umwFkqJgSKr2ekNqC4zEaDCc3SoybhP9qijwJVbGnVmUT1Rm/zTg9vSYldwqkRhrJj fBU3TZh78chgsVB5W47YXjNyKXmbS3TQhWli9iUI2eZG9/MGM4Pwi9EED4UCqfbt6KXYIB QGj/lQ6P/T1kLtumJZIrj9GnuxBF9Dvaxr+JaDkz34pRqijj/V1tQUI+5t6NKs1I1LCHbC pcBtlT4U/lwx/mnkjSLp+09g+vm9yAQxcknT9NfNjil8nTdd9cSDeWmli5lVTxGZML3FQz CCcFAD09bnSMND1FFKetw== Received: by submission.tobias.gr (OpenSMTPD) with ESMTP id 1f67e081; Tue, 5 Jul 2022 14:07:38 +0000 (UTC) MIME-Version: 1.0 Date: Tue, 05 Jul 2022 16:07:37 +0200 From: Tobias Geerinckx-Rice To: Samuel Fadel Subject: Re: [bug#56300] [PATCH] gnu: Added breeze-gtk package. In-Reply-To: <878rp7n04r.fsf@p14s> References: <87sfnnxzv8.fsf@t490> <94786677-7FBC-4C15-9E59-0A04EABF818D@tobias.gr> <878rp7n04r.fsf@p14s> Message-ID: <89111d65883aadc4c42915910961be99@tobias.gr> Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 56300 Cc: 56300@debbugs.gnu.org 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 (-) Hi Samuel, On 2022-07-05 15:45, Samuel Fadel wrote: > I prepared a new patch, but accidentally submitted it as a new issue on > its own (id 56321). Should I merge it here or do I merge this older one > there? There's no difference (but thanks for asking). Merging is symmetric, order doesn't matter, both bugs become synonymous[0]. Kind regards, T G-R Sent from a Web browser. Excuse or enjoy my brevity. [0]: https://debbugs.gnu.org/server-control.html From debbugs-submit-bounces@debbugs.gnu.org Tue Jul 05 11:16:58 2022 Received: (at 56300) by debbugs.gnu.org; 5 Jul 2022 15:16:58 +0000 Received: from localhost ([127.0.0.1]:51276 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o8kIL-000820-6a for submit@debbugs.gnu.org; Tue, 05 Jul 2022 11:16:58 -0400 Received: from mout-p-202.mailbox.org ([80.241.56.172]:52556) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o8isQ-0005LI-Hn for 56300@debbugs.gnu.org; Tue, 05 Jul 2022 09:46:08 -0400 Received: from smtp202.mailbox.org (smtp202.mailbox.org [10.196.197.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-202.mailbox.org (Postfix) with ESMTPS id 4LckTf24ttz9sYf; Tue, 5 Jul 2022 15:45:58 +0200 (CEST) From: Samuel Fadel To: Tobias Geerinckx-Rice , 56300@debbugs.gnu.org Subject: Re: [bug#56300] [PATCH] gnu: Added breeze-gtk package. In-Reply-To: <94786677-7FBC-4C15-9E59-0A04EABF818D@tobias.gr> References: <87sfnnxzv8.fsf@t490> <94786677-7FBC-4C15-9E59-0A04EABF818D@tobias.gr> Date: Tue, 05 Jul 2022 15:45:56 +0200 Message-ID: <878rp7n04r.fsf@p14s> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 56300 X-Mailman-Approved-At: Tue, 05 Jul 2022 11:16:56 -0400 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 (-) Hi Tobias, Tobias Geerinckx-Rice (2022-06-29 18:21 +0000): > Re: the licence: you could specify only lgpl2.1 as that's the result > of combining lgpl2.1 with bsd-3, but you can also specify both in a > (list ...) with comments next to each one to explain what applies to > which file(s). I prepared a new patch, but accidentally submitted it as a new issue on its own (id 56321). Should I merge it here or do I merge this older one there? Best, Samuel 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 Fri Jun 20 18:24:45 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