From unknown Mon Aug 18 04:48:13 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#77738] [PATCH] gnu: Add adwaita-qt5. Resent-From: Junker Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 11 Apr 2025 13:18:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 77738 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 77738@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.174437743519830 (code B ref -1); Fri, 11 Apr 2025 13:18:01 +0000 Received: (at submit) by debbugs.gnu.org; 11 Apr 2025 13:17:15 +0000 Received: from localhost ([127.0.0.1]:49531 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1u3EFu-00059m-QQ for submit@debbugs.gnu.org; Fri, 11 Apr 2025 09:17:15 -0400 Received: from lists.gnu.org ([2001:470:142::17]:55050) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1u3EFp-00059O-JO for submit@debbugs.gnu.org; Fri, 11 Apr 2025 09:17:13 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1u3EFh-0002zP-E3 for guix-patches@gnu.org; Fri, 11 Apr 2025 09:17:02 -0400 Received: from mout-p-103.mailbox.org ([80.241.56.161]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1u3EFY-0007UW-8c for guix-patches@gnu.org; Fri, 11 Apr 2025 09:16:58 -0400 Received: from smtp1.mailbox.org (smtp1.mailbox.org [10.196.197.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-103.mailbox.org (Postfix) with ESMTPS id 4ZYxzG57GKz9sG6 for ; Fri, 11 Apr 2025 15:16:42 +0200 (CEST) Date: Fri, 11 Apr 2025 20:16:21 +0700 From: Junker Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Received-SPF: pass client-ip=80.241.56.161; envelope-from=dk@junkeria.club; helo=mout-p-103.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, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED=0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) 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: -0.1 (/) * gnu/packages/qt.scm (adwaita-qt5): New variable. Change-Id: I4554f9f77d14f63e2e3c14fec9ef882677df97f5 --- gnu/packages/qt.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 94cc879f4a..886f82712e 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -142,6 +142,38 @@ (define-module (gnu packages qt) #:use-module (ice-9 match) #:use-module (srfi srfi-1)) +(define-public adwaita-qt5 + (package + (name "adwaita-qt5") + (home-page "https://github.com/FedoraQt/adwaita-qt") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/FedoraQt/adwaita-qt") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hy2jh5kzrl0319x6a7l043zsvwy85lgljw31f7cvy42klpr5zrb")))) + (build-system qt-build-system) + (arguments + '(#:tests? #f ;no check target + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-source + (lambda _ + (substitute* '("src/style/CMakeLists.txt") + (("DESTINATION \"\\$\\{QT_PLUGINS_DIR\\}") + "DESTINATION \"lib/qt5/plugins")) + #t))))) + (inputs (list qtbase-5 + qtx11extras)) + (synopsis "Qt5 Adwaita theme") + (description "A style to bend Qt5 applications to look like they belong into +GNOME Shell") + (license license:gpl2+))) + (define-public qcoro-qt5 (package (name "qcoro-qt5") base-commit: 2934de1447f87b361608ef3a2a756b8a5d2f42e6 -- 2.49.0 From unknown Mon Aug 18 04:48:13 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#77738] [PATCH] gnu: Add adwaita-qt5. Resent-From: Z572 Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 18 Apr 2025 07:41:05 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 77738 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 77738@debbugs.gnu.org Cc: 77738-done@debbugs.gnu.org, Junker X-Debbugs-Original-To: Junker via Guix-patches Received: via spool by submit@debbugs.gnu.org id=B.174496205918890 (code B ref -1); Fri, 18 Apr 2025 07:41:05 +0000 Received: (at submit) by debbugs.gnu.org; 18 Apr 2025 07:40:59 +0000 Received: from localhost ([127.0.0.1]:49528 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1u5gLK-0004uT-4H for submit@debbugs.gnu.org; Fri, 18 Apr 2025 03:40:58 -0400 Received: from lists.gnu.org ([2001:470:142::17]:53668) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1u5gKs-0004mO-TN for submit@debbugs.gnu.org; Fri, 18 Apr 2025 03:40:32 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1u5gKl-00028r-BN for guix-patches@gnu.org; Fri, 18 Apr 2025 03:40:23 -0400 Received: from mail.z572.online ([88.99.160.180]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1u5gKj-0004a6-6J for guix-patches@gnu.org; Fri, 18 Apr 2025 03:40:23 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=z572.online; s=me; t=1744962408; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=DWZA6ga8Ry6YSXniS3TdfDN/PQsN4vneKFDKg/GvnCg=; b=hNtmowLBNp/1Xn2AujY+34+yg48d6hKHYGJ5KpjhXSP88pAKrNQ/K6Apce0qWWtWp91NRM rkO4EwldCGjOSNvapkwPs37t0e9uItrE00aUie8DqDhpLj4erpQQwiwTzRv5/LY7Ku7fQT HtedPKkCk0Ja0MQ68PPiJu4su1Q/51U= Received: from m (mail1.85362086.com [107.174.64.25]) by mail.z572.online (OpenSMTPD) with ESMTPSA id 0e37d84a (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Fri, 18 Apr 2025 07:46:47 +0000 (UTC) From: Z572 In-Reply-To: (Junker via Guix-patches's message of "Fri, 11 Apr 2025 20:16:21 +0700") References: User-Agent: mu4e 1.12.9; emacs 30.0.92 Date: Fri, 18 Apr 2025 15:40:08 +0800 Message-ID: <87y0vxrk87.fsf@z572.online> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Received-SPF: pass client-ip=88.99.160.180; envelope-from=z572@z572.online; helo=mail.z572.online X-Spam_score_int: 4 X-Spam_score: 0.4 X-Spam_bar: / X-Spam_report: (0.4 / 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, FROM_SUSPICIOUS_NTLD=0.5, PDS_OTHER_BAD_TLD=1.999, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 3.5 (+++) 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: Junker via Guix-patches writes: > * gnu/packages/qt.scm (adwaita-qt5): New variable. > > Change-Id: I4554f9f77d14f63e2e3c14fec9ef882677df97f5 > --- > gnu/packages/qt.scm | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 ins [...] Content analysis details: (3.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [2001:470:142:0:0:0:0:17 listed in] [list.dnswl.org] 1.0 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail) 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: z572.online (online)] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 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.5 (+++) 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: Junker via Guix-patches writes: > * gnu/packages/qt.scm (adwaita-qt5): New variable. > > Change-Id: I4554f9f77d14f63e2e3c14fec9ef882677df97f5 > --- > gnu/packages/qt.scm | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 ins [...] Content analysis details: (3.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [2001:470:142:0:0:0:0:17 listed in] [list.dnswl.org] 1.0 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail) 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: z572.online (online)] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Junker via Guix-patches writes: > * gnu/packages/qt.scm (adwaita-qt5): New variable. > > Change-Id: I4554f9f77d14f63e2e3c14fec9ef882677df97f5 > --- > gnu/packages/qt.scm | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > > diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm > index 94cc879f4a..886f82712e 100644 > --- a/gnu/packages/qt.scm > +++ b/gnu/packages/qt.scm > @@ -142,6 +142,38 @@ (define-module (gnu packages qt) > #:use-module (ice-9 match) > #:use-module (srfi srfi-1)) >=20=20 > +(define-public adwaita-qt5 > + (package > + (name "adwaita-qt5") > + (home-page "https://github.com/FedoraQt/adwaita-qt") Adwaita-qt project is unmaintained a no longer actively developed. I don't think this package should be added to guix unless it is maintained or use another active fork. so closed. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEfr6klGDOXiwIdX/bO1qpk+Gi3/AFAmgCAdgACgkQO1qpk+Gi 3/BMSBAAumrSRaDiKjJ3Fdzgg+5gbS56KV1SUpddbImKkx48jX5ZEAQUtfY1cHW+ ajqz0rTxB4QmjbUUqJ+2GohcdtodHFRhuRacZRbV5G8Z2ebjaBjJWQW5+qAaZq1h IrEDT5ruoKIGf17o6PF19QiwXjmCDL1aiFANaeOGN1R61tPY7ZLBgAcfzn1OA2Xk 7Vg7RcJrzk3OuO93Jc1Y+o+NEKETQK3YsO7j6qOc5WNTwmObrULhl2rbBwRl5JQ2 Zfw0FtMUo8E3zBdyII2AQlCgmanFTpX3SHtLChCPaxfbv8VmtyiKAEuVhRZ/By9I W+u9TFuM+oIkk8E41+S80kYYgybgfyzDF0FymjIKE11WegR+E/dGgSunWUZHskbD UU2HMFevNTKmFDLI/fit544DTTAEEoczUybtoc8ebDSy5NWFgk+4DFLjRPDy7WLS waaIcKg8rOWZI9wJgiBaLJjaCMHCL7duWr2F20Kj8/uAV6jHOH9TZEzDSvdMR8uJ /9NZ+DzHkhWcJm53ewQc8xTAUoY6EcmqPw7N5XL+RW3zRiYOkpvD4Z5K+D6I/Qm8 ZxyKXokZ1CPO7IWdirTwxV7hfEIXyQPtqO+ZsV+QdP2YhCPQEon8uW5Ys3hpod+y +iE2Offk+FvFXzg8nLHf9CycvnuhYck6ttQ2tCHTYLBzWy/JKvo= =R04b -----END PGP SIGNATURE----- --=-=-=-- From unknown Mon Aug 18 04:48:13 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Junker Subject: bug#77738: closed (Re: [bug#77738] [PATCH] gnu: Add adwaita-qt5.) Message-ID: References: <87y0vxrk87.fsf@z572.online> X-Gnu-PR-Message: they-closed 77738 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 77738@debbugs.gnu.org Date: Fri, 18 Apr 2025 07:41:12 +0000 Content-Type: multipart/mixed; boundary="----------=_1744962072-19020-1" This is a multi-part message in MIME format... ------------=_1744962072-19020-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #77738: [PATCH] gnu: Add adwaita-qt5. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 77738@debbugs.gnu.org. --=20 77738: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D77738 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1744962072-19020-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 77738-done) by debbugs.gnu.org; 18 Apr 2025 07:40:28 +0000 Received: from localhost ([127.0.0.1]:49521 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1u5gKo-0004nZ-4w for submit@debbugs.gnu.org; Fri, 18 Apr 2025 03:40:27 -0400 Received: from mail.z572.online ([88.99.160.180]:37444) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1u5gKi-0004kK-Lh for 77738-done@debbugs.gnu.org; Fri, 18 Apr 2025 03:40:23 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=z572.online; s=me; t=1744962408; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=DWZA6ga8Ry6YSXniS3TdfDN/PQsN4vneKFDKg/GvnCg=; b=hNtmowLBNp/1Xn2AujY+34+yg48d6hKHYGJ5KpjhXSP88pAKrNQ/K6Apce0qWWtWp91NRM rkO4EwldCGjOSNvapkwPs37t0e9uItrE00aUie8DqDhpLj4erpQQwiwTzRv5/LY7Ku7fQT HtedPKkCk0Ja0MQ68PPiJu4su1Q/51U= Received: from m (mail1.85362086.com [107.174.64.25]) by mail.z572.online (OpenSMTPD) with ESMTPSA id 0e37d84a (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Fri, 18 Apr 2025 07:46:47 +0000 (UTC) From: Z572 To: Junker via Guix-patches Subject: Re: [bug#77738] [PATCH] gnu: Add adwaita-qt5. In-Reply-To: (Junker via Guix-patches's message of "Fri, 11 Apr 2025 20:16:21 +0700") References: User-Agent: mu4e 1.12.9; emacs 30.0.92 Date: Fri, 18 Apr 2025 15:40:08 +0800 Message-ID: <87y0vxrk87.fsf@z572.online> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 2.5 (++) 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: Junker via Guix-patches writes: > * gnu/packages/qt.scm (adwaita-qt5): New variable. > > Change-Id: I4554f9f77d14f63e2e3c14fec9ef882677df97f5 > --- > gnu/packages/qt.scm | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 ins [...] Content analysis details: (2.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 RCVD_IN_VALIDITY_RPBL_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [88.99.160.180 listed in bl.score.senderscore.com] 0.0 RCVD_IN_VALIDITY_CERTIFIED_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [88.99.160.180 listed in sa-accredit.habeas.com] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: z572.online (online)] -0.0 SPF_PASS SPF: sender matches SPF record 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD X-Debbugs-Envelope-To: 77738-done Cc: 77738-done@debbugs.gnu.org, Junker 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.5 (++) 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: Junker via Guix-patches writes: > * gnu/packages/qt.scm (adwaita-qt5): New variable. > > Change-Id: I4554f9f77d14f63e2e3c14fec9ef882677df97f5 > --- > gnu/packages/qt.scm | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 ins [...] Content analysis details: (2.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 RCVD_IN_VALIDITY_CERTIFIED_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [88.99.160.180 listed in sa-accredit.habeas.com] 0.0 RCVD_IN_VALIDITY_RPBL_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [88.99.160.180 listed in bl.score.senderscore.com] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: z572.online (online)] -0.0 SPF_PASS SPF: sender matches SPF record 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Junker via Guix-patches writes: > * gnu/packages/qt.scm (adwaita-qt5): New variable. > > Change-Id: I4554f9f77d14f63e2e3c14fec9ef882677df97f5 > --- > gnu/packages/qt.scm | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > > diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm > index 94cc879f4a..886f82712e 100644 > --- a/gnu/packages/qt.scm > +++ b/gnu/packages/qt.scm > @@ -142,6 +142,38 @@ (define-module (gnu packages qt) > #:use-module (ice-9 match) > #:use-module (srfi srfi-1)) >=20=20 > +(define-public adwaita-qt5 > + (package > + (name "adwaita-qt5") > + (home-page "https://github.com/FedoraQt/adwaita-qt") Adwaita-qt project is unmaintained a no longer actively developed. I don't think this package should be added to guix unless it is maintained or use another active fork. so closed. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEfr6klGDOXiwIdX/bO1qpk+Gi3/AFAmgCAdgACgkQO1qpk+Gi 3/BMSBAAumrSRaDiKjJ3Fdzgg+5gbS56KV1SUpddbImKkx48jX5ZEAQUtfY1cHW+ ajqz0rTxB4QmjbUUqJ+2GohcdtodHFRhuRacZRbV5G8Z2ebjaBjJWQW5+qAaZq1h IrEDT5ruoKIGf17o6PF19QiwXjmCDL1aiFANaeOGN1R61tPY7ZLBgAcfzn1OA2Xk 7Vg7RcJrzk3OuO93Jc1Y+o+NEKETQK3YsO7j6qOc5WNTwmObrULhl2rbBwRl5JQ2 Zfw0FtMUo8E3zBdyII2AQlCgmanFTpX3SHtLChCPaxfbv8VmtyiKAEuVhRZ/By9I W+u9TFuM+oIkk8E41+S80kYYgybgfyzDF0FymjIKE11WegR+E/dGgSunWUZHskbD UU2HMFevNTKmFDLI/fit544DTTAEEoczUybtoc8ebDSy5NWFgk+4DFLjRPDy7WLS waaIcKg8rOWZI9wJgiBaLJjaCMHCL7duWr2F20Kj8/uAV6jHOH9TZEzDSvdMR8uJ /9NZ+DzHkhWcJm53ewQc8xTAUoY6EcmqPw7N5XL+RW3zRiYOkpvD4Z5K+D6I/Qm8 ZxyKXokZ1CPO7IWdirTwxV7hfEIXyQPtqO+ZsV+QdP2YhCPQEon8uW5Ys3hpod+y +iE2Offk+FvFXzg8nLHf9CycvnuhYck6ttQ2tCHTYLBzWy/JKvo= =R04b -----END PGP SIGNATURE----- --=-=-=-- ------------=_1744962072-19020-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 11 Apr 2025 13:17:15 +0000 Received: from localhost ([127.0.0.1]:49531 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1u3EFu-00059m-QQ for submit@debbugs.gnu.org; Fri, 11 Apr 2025 09:17:15 -0400 Received: from lists.gnu.org ([2001:470:142::17]:55050) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1u3EFp-00059O-JO for submit@debbugs.gnu.org; Fri, 11 Apr 2025 09:17:13 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1u3EFh-0002zP-E3 for guix-patches@gnu.org; Fri, 11 Apr 2025 09:17:02 -0400 Received: from mout-p-103.mailbox.org ([80.241.56.161]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1u3EFY-0007UW-8c for guix-patches@gnu.org; Fri, 11 Apr 2025 09:16:58 -0400 Received: from smtp1.mailbox.org (smtp1.mailbox.org [10.196.197.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-103.mailbox.org (Postfix) with ESMTPS id 4ZYxzG57GKz9sG6 for ; Fri, 11 Apr 2025 15:16:42 +0200 (CEST) Date: Fri, 11 Apr 2025 20:16:21 +0700 From: Junker To: guix-patches@gnu.org Subject: [PATCH] gnu: Add adwaita-qt5. Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Received-SPF: pass client-ip=80.241.56.161; envelope-from=dk@junkeria.club; helo=mout-p-103.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, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED=0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) 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: -0.1 (/) * gnu/packages/qt.scm (adwaita-qt5): New variable. Change-Id: I4554f9f77d14f63e2e3c14fec9ef882677df97f5 --- gnu/packages/qt.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 94cc879f4a..886f82712e 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -142,6 +142,38 @@ (define-module (gnu packages qt) #:use-module (ice-9 match) #:use-module (srfi srfi-1)) +(define-public adwaita-qt5 + (package + (name "adwaita-qt5") + (home-page "https://github.com/FedoraQt/adwaita-qt") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/FedoraQt/adwaita-qt") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hy2jh5kzrl0319x6a7l043zsvwy85lgljw31f7cvy42klpr5zrb")))) + (build-system qt-build-system) + (arguments + '(#:tests? #f ;no check target + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-source + (lambda _ + (substitute* '("src/style/CMakeLists.txt") + (("DESTINATION \"\\$\\{QT_PLUGINS_DIR\\}") + "DESTINATION \"lib/qt5/plugins")) + #t))))) + (inputs (list qtbase-5 + qtx11extras)) + (synopsis "Qt5 Adwaita theme") + (description "A style to bend Qt5 applications to look like they belong into +GNOME Shell") + (license license:gpl2+))) + (define-public qcoro-qt5 (package (name "qcoro-qt5") base-commit: 2934de1447f87b361608ef3a2a756b8a5d2f42e6 -- 2.49.0 ------------=_1744962072-19020-1--