From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 20 14:58:58 2023 Received: (at submit) by debbugs.gnu.org; 20 Feb 2023 19:58:58 +0000 Received: from localhost ([127.0.0.1]:53706 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pUCJN-0004EL-SY for submit@debbugs.gnu.org; Mon, 20 Feb 2023 14:58:58 -0500 Received: from lists.gnu.org ([209.51.188.17]:54440) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pUCJK-0004EC-Jh for submit@debbugs.gnu.org; Mon, 20 Feb 2023 14:58:56 -0500 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 1pUCJK-0002y0-BR for guix-patches@gnu.org; Mon, 20 Feb 2023 14:58:54 -0500 Received: from relay11.mail.gandi.net ([217.70.178.231]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pUCJH-00029L-Jr for guix-patches@gnu.org; Mon, 20 Feb 2023 14:58:54 -0500 Received: (Authenticated sender: contact@conses.eu) by mail.gandi.net (Postfix) with ESMTPSA id 406FD100003 for ; Mon, 20 Feb 2023 19:58:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=conses.eu; s=gm1; t=1676923127; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=+T9i5/karEoyDb2nbUY7Xqr70dln4gJ9lQ1OVTrtYvY=; b=Pc9mYKvu/+ThEHt2mgQ6HdE8qQLe4F7o0aS4XGCVfQ8Achm3Ppv1USCRQhvKTqyZNOZfeT UCnxKP1rK16DgtmykIauzCg6wY8kp8ZJkPSBuHSoIy9yrRGZZ+bOOyBNSmu+Mw5QozuE3P J/RU5Cxbr4taFlW+Gh/0B/qezoWIrVenOoqLo94+GqY5Ag2GcEDwm7FGOfzP8cMkmLf/NQ CrjZEAcAvwcz8fbmf59mw0a4wqam6KPSJVXFxZX/eoFgXnaS6otvv6OJ3tBAQClJ1vhzI8 GpG6iy8vk+H9Xqq80GQ5UZF7kPNcO6mROBL3IGFZMlQR0RN3whxV8ywxHuXHiw== From: conses To: guix-patches@gnu.org Subject: [PATCH] gnu: Add postmarketos-theme. Date: Mon, 20 Feb 2023 20:58:46 +0100 Message-ID: <86ilfwrtvt.fsf@conses.eu> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=217.70.178.231; envelope-from=contact@conses.eu; helo=relay11.mail.gandi.net X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) 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.6 (--) * gnu/packages/gnome-xyz.scm (postmarketos-theme): New variable. --- gnu/packages/gnome-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index f25cf446d7..ff9bec95d4 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -1436,6 +1436,30 @@ (define-public orchis-theme license:lgpl2.1 ; Some style sheets. license:cc-by-sa4.0)))) ; Some icons +(define-public postmarketos-theme + (package + (name "postmarketos-theme") + (version "0.6.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/postmarketOS/postmarketos-theme") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "09in7737cirmw2c0ac40ac29szfgdva6q0zl32mdi12marybd2g5")))) + (build-system meson-build-system) + (native-inputs (list sassc)) + (home-page "https://gitlab.com/postmarketOS/postmarketos-theme") + (synopsis "PostmarketOS themed themes") + (description + "@code{postmarketos-theme} contains a GTK3 and GTK4 theme which is +based on Adwaita but replaces the standard blue highlights in the theme with +postmarketOS green. There's also the oled and paper variants of the theme that are completely +black and completely white.") + (license license:gpl2))) + (define-public eiciel (package (name "eiciel") -- 2.39.1 -- Best regards, conses From debbugs-submit-bounces@debbugs.gnu.org Fri Feb 24 17:48:43 2023 Received: (at 61662-done) by debbugs.gnu.org; 24 Feb 2023 22:48:43 +0000 Received: from localhost ([127.0.0.1]:38506 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVgrr-0004fc-EE for submit@debbugs.gnu.org; Fri, 24 Feb 2023 17:48:43 -0500 Received: from eggs.gnu.org ([209.51.188.92]:59584) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVgro-0004fI-Sa for 61662-done@debbugs.gnu.org; Fri, 24 Feb 2023 17:48:42 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pVgrh-000812-Kk; Fri, 24 Feb 2023 17:48:33 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=e+79QlRuw5VCFbW3mDpjFCTb8hib0cTTKRWhggfyxAs=; b=WEvz7K71ybV8j/UNKuFc wbNW2mmohzX/6l1CMpU6MEAkdPgH1onnO1VNz0IBAx0m52OFW4qyFbhD9//h7vJGG3SPpKOwH0LUG 4JNAaO5znL8qDd3VOW3YmW6plIXTueMnIPk0zTlCPLmX+Cf/kBVgxopjW+DLzPbTd9ThFREPcDRNF scWuf4zrr/adsjncKxH2J9rsKQiknlZppujJZj4fQE3halfCv5IccFidIS8/KJXr++18PsO/P/Qh1 +W3IwU79iKx4/mxgY1OVS4mHICduDvA9xrtqfMHENdpNvXvf4OAatBqv+ZTpQI78MIt+8u3mT4tLW tZiFt+EBM9P0Mg==; Received: from 91-160-117-201.subs.proxad.net ([91.160.117.201] helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pVgrf-0004VW-4r; Fri, 24 Feb 2023 17:48:33 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: conses Subject: Re: bug#61662: [PATCH] gnu: Add postmarketos-theme. References: <86ilfwrtvt.fsf@conses.eu> Date: Fri, 24 Feb 2023 23:48:28 +0100 In-Reply-To: <86ilfwrtvt.fsf@conses.eu> (conses's message of "Mon, 20 Feb 2023 20:58:46 +0100") Message-ID: <87fsau1xz7.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 61662-done Cc: 61662-done@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: -3.3 (---) Hi, conses skribis: > * gnu/packages/gnome-xyz.scm (postmarketos-theme): New variable. [...] > + (license license:gpl2))) Changes to =E2=80=98lgpl2.0+=E2=80=99, based on =E2=80=98COPYING=E2=80=99, = and applied. Thanks, Ludo=E2=80=99. From unknown Fri Aug 15 16:57:44 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 25 Mar 2023 11:24:09 +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