From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 17 20:24:34 2019 Received: (at submit) by debbugs.gnu.org; 18 Jun 2019 00:24:34 +0000 Received: from localhost ([127.0.0.1]:43495 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hd1vL-0001jA-P3 for submit@debbugs.gnu.org; Mon, 17 Jun 2019 20:24:33 -0400 Received: from lists.gnu.org ([209.51.188.17]:40456) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hd1WU-00016t-Jb for submit@debbugs.gnu.org; Mon, 17 Jun 2019 19:58:51 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:53119) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hd1WT-00046k-81 for guix-patches@gnu.org; Mon, 17 Jun 2019 19:58:50 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hd1WS-0005ea-3q for guix-patches@gnu.org; Mon, 17 Jun 2019 19:58:49 -0400 Received: from latitanza.investici.org ([82.94.249.234]:39319 helo=mx1.investici.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hd1WR-0005di-FJ for guix-patches@gnu.org; Mon, 17 Jun 2019 19:58:48 -0400 Received: from mx1.investici.org (localhost [127.0.0.1]) by mx1.investici.org (Postfix) with ESMTP id 27CB9120608; Mon, 17 Jun 2019 23:58:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1560815923; bh=bsgDFEEUlUENfEdGKzVmgy4g1XLUAwp3W8F3hUBG0+g=; h=From:To:Cc:Subject:Date:From; b=d5YuHOdhVjwxeUMBdWfp285Wd8CvKp1r655d1jlDFd+UN5p+9bA/g4XqJuRPgWDFw gC9gbcalrnNOK1kI9eqJHfRK98zw6EX63zzcZ5UQyNSYigMAgm6jrt0jcYLO/UrMD/ 1mX8BHLrNDuWs63r+FIIGbOGhXleEmKSJevxMrkw= Received: from [82.94.249.234] (mx1.investici.org [82.94.249.234]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id EB965120602; Mon, 17 Jun 2019 23:58:41 +0000 (UTC) From: Giacomo Leidi To: guix-patches@gnu.org Subject: [PATCH] gnu: Add numix-theme. Date: Tue, 18 Jun 2019 01:58:05 +0200 Message-Id: <20190617235805.4300-1-goodoldpaul@autistici.org> X-Mailer: git-send-email 2.22.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 82.94.249.234 X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Mon, 17 Jun 2019 20:24:30 -0400 Cc: Giacomo Leidi 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.4 (--) * gnu/packages/gnome.scm (numix-theme): New variable --- gnu/packages/gnome.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 875d28caee..eeca6edd4b 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -36,6 +36,7 @@ ;;; Copyright =C2=A9 2019 Danny Milosavljevic ;;; Copyright =C2=A9 2019 Marius Bakke ;;; Copyright =C2=A9 2019 Florian Pelz +;;; Copyright =C2=A9 2019 Giacomo Leidi ;;; ;;; This file is part of GNU Guix. ;;; @@ -6880,6 +6881,39 @@ functionality and behavior.") (home-page "https://extensions.gnome.org/") (license license:gpl3+))) =20 +(define-public numix-theme + (package + (name "numix-theme") + (version "2.6.7") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/numixproject/numix-gtk-them= e.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "12mw0kr0kkvg395qlbsvkvaqccr90cmxw5rrsl236zh43kj8grb7"))= )) + (build-system gnu-build-system) + (arguments + '(#:make-flags (list (string-append "DESTDIR=3D" (assoc-ref %output= s "out"))) + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'check)))) + (native-inputs + `(("glib:bin" ,glib "bin") ; for glib-compile-schemas + ("gnome-shell" ,gnome-shell) + ("gtk+" ,gtk+) + ("xmllint" ,libxml2) + ("ruby-sass" ,ruby-sass))) + (synopsis "Numix is a modern flat theme with a combination of light + and dark elements") + (description "A modern flat theme with a combination of light and da= rk elements. + It supports GNOME, Unity, Xfce and Openbox.") + (home-page "https://numixproject.github.io") + (license license:gpl3+))) + (define-public arc-theme (package (name "arc-theme") --=20 2.22.0 From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 19 16:47:51 2019 Received: (at 36271-done) by debbugs.gnu.org; 19 Jun 2019 20:47:51 +0000 Received: from localhost ([127.0.0.1]:47493 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hdhUk-0003rn-RJ for submit@debbugs.gnu.org; Wed, 19 Jun 2019 16:47:51 -0400 Received: from eggs.gnu.org ([209.51.188.92]:35873) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hdhUj-0003ra-8e for 36271-done@debbugs.gnu.org; Wed, 19 Jun 2019 16:47:49 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:46967) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hdhUY-0000ie-EG; Wed, 19 Jun 2019 16:47:40 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=48226 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1hdhUT-0000GR-UQ; Wed, 19 Jun 2019 16:47:38 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Giacomo Leidi Subject: Re: [bug#36271] [PATCH] gnu: Add numix-theme. References: <20190617235805.4300-1-goodoldpaul@autistici.org> Date: Wed, 19 Jun 2019 22:47:30 +0200 In-Reply-To: <20190617235805.4300-1-goodoldpaul@autistici.org> (Giacomo Leidi's message of "Tue, 18 Jun 2019 01:58:05 +0200") Message-ID: <87pnn91evx.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 36271-done Cc: 36271-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 (---) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Giacomo, Giacomo Leidi skribis: > * gnu/packages/gnome.scm (numix-theme): New variable Applied with the following minor changes to match our synopsis/description guidelines: https://www.gnu.org/software/guix/manual/en/html_node/Synopses-and-Descri= ptions.html Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index eeca6edd4b..ad6b9203b9 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -6907,10 +6907,9 @@ functionality and behavior.") ("gtk+" ,gtk+) ("xmllint" ,libxml2) ("ruby-sass" ,ruby-sass))) - (synopsis "Numix is a modern flat theme with a combination of light - and dark elements") - (description "A modern flat theme with a combination of light and dark elements. - It supports GNOME, Unity, Xfce and Openbox.") + (synopsis "Flat theme with light and dark elements") + (description "Numix is a modern flat theme with a combination of light and +dark elements. It supports GNOME, Unity, Xfce, and Openbox.") (home-page "https://numixproject.github.io") (license license:gpl3+))) --=-=-=-- From unknown Fri Sep 05 08:20:16 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 18 Jul 2019 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