From unknown Tue Jun 17 20:25:09 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#31914 <31914@debbugs.gnu.org> To: bug#31914 <31914@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add emacs-atom-one-dark-theme. Reply-To: bug#31914 <31914@debbugs.gnu.org> Date: Wed, 18 Jun 2025 03:25:09 +0000 retitle 31914 [PATCH] gnu: Add emacs-atom-one-dark-theme. reassign 31914 guix-patches submitter 31914 Peter Mikkelsen severity 31914 normal tag 31914 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 20 11:35:39 2018 Received: (at submit) by debbugs.gnu.org; 20 Jun 2018 15:35:39 +0000 Received: from localhost ([127.0.0.1]:57833 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVf91-0002bL-Aa for submit@debbugs.gnu.org; Wed, 20 Jun 2018 11:35:39 -0400 Received: from eggs.gnu.org ([208.118.235.92]:36955) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fVeqL-00029m-4M for submit@debbugs.gnu.org; Wed, 20 Jun 2018 11:16:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fVeqF-0000eq-46 for submit@debbugs.gnu.org; Wed, 20 Jun 2018 11:16:16 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:33505) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fVeqF-0000el-0J for submit@debbugs.gnu.org; Wed, 20 Jun 2018 11:16:15 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56142) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fVeqA-000515-PI for guix-patches@gnu.org; Wed, 20 Jun 2018 11:16:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fVeq6-0000co-Qq for guix-patches@gnu.org; Wed, 20 Jun 2018 11:16:10 -0400 Received: from [174.138.12.255] (port=48752 helo=alaok.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fVeq6-0000by-GU for guix-patches@gnu.org; Wed, 20 Jun 2018 11:16:06 -0400 Received: by mail.alaok.org (OpenSMTPD) with ESMTPSA id 921ddfa2 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Wed, 20 Jun 2018 14:49:12 +0000 (UTC) From: Peter Mikkelsen To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-atom-one-dark-theme. Date: Wed, 20 Jun 2018 16:49:19 +0200 Message-ID: <87d0wlpl74.fsf@alaok.org> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Wed, 20 Jun 2018 11:35:37 -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: -6.0 (------) Date: Tue, 19 Jun 2018 21:19:44 +0200 User-agent: mu4e 1.0; emacs 26.1 >From c324b516d02a4cdb6b0035f5d0fae4b12e050a1f Mon Sep 17 00:00:00 2001 * gnu/packages/emacs.scm (emacs-atom-one-dark-theme): New variable --- gnu/packages/emacs.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 219358bbd..86fa34cf9 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3213,6 +3213,25 @@ started with 20 minutes. All values are customizable.") organizer.") (license license:gpl3+))) +(define-public emacs-atom-one-dark-theme + (package + (name "emacs-atom-one-dark-theme") + (version "20180607.1638") + (source (origin + (method url-fetch) + (uri (string-append + "https://melpa.org/packages/atom-one-dark-theme-" + version ".el")) + (sha256 + (base32 + "1qhdhm0xa88jc5z15h1s5qwnzin7fccp2ndvqr0acp89zxi60jbq")))) + (build-system emacs-build-system) + (home-page + "https://github.com/jonathanchu/atom-one-dark-theme") + (synopsis "Atom One Dark color theme for Emacs") + (description "An Emacs port of the Atom One Dark theme from Atom.io.") + (license license:gpl3))) + (define-public emacs-zenburn-theme (package (name "emacs-zenburn-theme") -- 2.17.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 25 15:10:16 2018 Received: (at 31914) by debbugs.gnu.org; 25 Jun 2018 19:10:16 +0000 Received: from localhost ([127.0.0.1]:35168 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fXWsN-0004fz-HE for submit@debbugs.gnu.org; Mon, 25 Jun 2018 15:10:16 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:33139) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fXWsK-0004fq-Ju for 31914@debbugs.gnu.org; Mon, 25 Jun 2018 15:10:09 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id 63AF621BF8; Mon, 25 Jun 2018 15:10:08 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute5.internal (MEProxy); Mon, 25 Jun 2018 15:10:08 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm3; bh=+x/vLy5aiH3BFVGeGfua2QczD93JDMePMJcw8P62zQs=; b=XUiSxmw7 2i8nz3Vg6AB8umSupbNDM9yTNn6tDROSE7fUuozul+lZV/3ALoZDCnJq8lbyK36E Vyts1ogU+U22yb//glv9SxlQmi+Bxy3ZN6gNJXvkNP51B+o5vGEZv7Oh2rgryag3 4WSi5d8DGHn5xyyxjsXFqKYkE1WZzCj/9ZlMXffEow94w5OEIrA8E4YgTxVdL5Ei JWSj8wkqievucBe03UXZelyxDVF/ARnfIW+v47B2Ayzbxhh+WxhAL7KwiBytN1g/ QLg8OobrqAUfDLEWrLVFNhbMIQXSHAFTtxc+iUKUZQK0HZNlPG5e+dT6r+h1sTFZ jcgyzSMc99N8Eg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=fm3; bh=+x/vLy5aiH3BFVGeGfua2QczD93JD MePMJcw8P62zQs=; b=PXYfXL4PwB1PgpUbcS4roAjSYacm4LNZihMGGzu4Ctf08 juJYAM4QmUrNvaSdgtxdUYWHeO7TlXSX9mQFcZB2u2+NnoujXKunLE3OyWI+17TT V6of80eBUElY0KbWMwiuz55rjkyEwneRZ9ht5lkq7lfzCULr0cEbXj6p8SCvOdSz Wq5Mn1hIIRYa0NfB/SYul/prT72KHbIVVZuhTR4XpDC/a0ueoa2uW0Wr1Z7IBgiF LRJ/I6hDmvuVY/MgohNYaJnEBhzsHTQ1HhXm4trv+9UW+/6i86I5wCZ6usEJkdAX sjEsAcG6Oc3e1oIHrZG6bzxP/p/+mmLA2Cl+iUlfw== X-ME-Proxy: X-ME-Sender: Received: from localhost (cm-84.214.174.185.getinternet.no [84.214.174.185]) by mail.messagingengine.com (Postfix) with ESMTPA id D8412E4449; Mon, 25 Jun 2018 15:10:07 -0400 (EDT) From: Marius Bakke To: Peter Mikkelsen , 31914@debbugs.gnu.org Subject: Re: [bug#31914] [PATCH] gnu: Add emacs-atom-one-dark-theme. In-Reply-To: <87d0wlpl74.fsf@alaok.org> References: <87d0wlpl74.fsf@alaok.org> User-Agent: Notmuch/0.27 (https://notmuchmail.org) Emacs/26.1 (x86_64-pc-linux-gnu) Date: Mon, 25 Jun 2018 21:10:05 +0200 Message-ID: <87o9fyel82.fsf@fastmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 31914 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 (-) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hello Peter, Peter Mikkelsen writes: > Date: Tue, 19 Jun 2018 21:19:44 +0200 > User-agent: mu4e 1.0; emacs 26.1 > From c324b516d02a4cdb6b0035f5d0fae4b12e050a1f Mon Sep 17 00:00:00 2001 > * gnu/packages/emacs.scm (emacs-atom-one-dark-theme): New variable [...] =20=20 > +(define-public emacs-atom-one-dark-theme > + (package > + (name "emacs-atom-one-dark-theme") > + (version "20180607.1638") > + (source (origin > + (method url-fetch) > + (uri (string-append > + "https://melpa.org/packages/atom-one-dark-theme-" > + version ".el")) Could you change this to use a git checkout or release tarball instead? MELPA does not preserve old versions, so this version might not be around for long. > + (sha256 > + (base32 > + "1qhdhm0xa88jc5z15h1s5qwnzin7fccp2ndvqr0acp89zxi60jbq")))) > + (build-system emacs-build-system) > + (home-page > + "https://github.com/jonathanchu/atom-one-dark-theme") > + (synopsis "Atom One Dark color theme for Emacs") > + (description "An Emacs port of the Atom One Dark theme from Atom.io.") > + (license license:gpl3))) This should be GPL3+, as noted in atom-one-dark-theme.el. Can you send an updated patch please? Thanks in advance! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAlsxPg0ACgkQoqBt8qM6 VPq6Igf9Evj78NyiCKuuupEsgoUIxvSUOiUDzrcoj84YuXEZiCsG8LwXh/oYnaGc lwmPKcaXQ0J/IE1ISqvwdXWNQhGU4Pbl8Ber30lKK5Oq9QJGytr/r/Wxea2mr62F zlb2cCr1kmfUQM7bRsJKZs2345mEtn0PJezFtuZ/3ed/uYSHILuAKst6eitPJfKh VsaL0HT4u203PBEOdvZYSSBdYA5wNMblN3PmtMfBD7SzJ/Gl3AXsUSE/mYA/ogdd Nq/+JdaIbCZdyved+Xd6R0sS/D5YiUbbbtO/jl0Gvdkld5KSwYDpJPcyRf6nGViX ioH8+m5W7NRlV9xn3dy4v8ihwJCZdQ== =wAE+ -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 29 06:54:40 2018 Received: (at 31914) by debbugs.gnu.org; 29 Jun 2018 10:54:40 +0000 Received: from localhost ([127.0.0.1]:39286 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fYr2y-0004ZO-Ir for submit@debbugs.gnu.org; Fri, 29 Jun 2018 06:54:40 -0400 Received: from [174.138.12.255] (port=51058 helo=alaok.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fYr2v-0004ZF-U1 for 31914@debbugs.gnu.org; Fri, 29 Jun 2018 06:54:34 -0400 Received: by mail.alaok.org (OpenSMTPD) with ESMTPSA id 0e1286eb (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Fri, 29 Jun 2018 10:54:15 +0000 (UTC) References: <87d0wlpl74.fsf@alaok.org> <87o9fyel82.fsf@fastmail.com> User-agent: mu4e 1.0; emacs 26.1 From: Peter Mikkelsen To: Marius Bakke Subject: Re: [bug#31914] [PATCH] gnu: Add emacs-atom-one-dark-theme. In-reply-to: <87o9fyel82.fsf@fastmail.com> Date: Fri, 29 Jun 2018 12:54:29 +0200 Message-ID: <87lgaxsw0q.fsf@alaok.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: 1.3 (+) 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: Hi, sorry for the delay Marius Bakke writes: > Hello Peter, > > Peter Mikkelsen writes: > >> Date: Tue, 19 Jun 2018 21:19:44 +0200 >> User-agent: mu4e 1.0; emacs 26.1 >> From c324b516d02a4cdb6b0035f5d0fae4b12e050a1f Mon Sep 17 00:00:00 2001 >> * gnu/packages/emacs.scm (emacs-atom-one-dark-theme): New variable > > [...] > >> +(define-public emacs-atom-one-dark-theme >> + (package >> + (name "emacs-atom-one-dark-theme") >> + (version "20180607.1638") >> + (source (origin >> + (method url-fetch) >> + (uri (string-append >> + "https://melpa.org/packages/atom-one-dark-theme-" >> + version ".el")) > > Could you change this to use a git checkout or release tarball instead? > MELPA does not preserve old versions, so this version might not be > around for long. [...] Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 1.3 RDNS_NONE Delivered to internal network by a host with no rDNS X-Debbugs-Envelope-To: 31914 Cc: 31914@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: 0.3 (/) --=-=-= Content-Type: text/plain Hi, sorry for the delay Marius Bakke writes: > Hello Peter, > > Peter Mikkelsen writes: > >> Date: Tue, 19 Jun 2018 21:19:44 +0200 >> User-agent: mu4e 1.0; emacs 26.1 >> From c324b516d02a4cdb6b0035f5d0fae4b12e050a1f Mon Sep 17 00:00:00 2001 >> * gnu/packages/emacs.scm (emacs-atom-one-dark-theme): New variable > > [...] > >> +(define-public emacs-atom-one-dark-theme >> + (package >> + (name "emacs-atom-one-dark-theme") >> + (version "20180607.1638") >> + (source (origin >> + (method url-fetch) >> + (uri (string-append >> + "https://melpa.org/packages/atom-one-dark-theme-" >> + version ".el")) > > Could you change this to use a git checkout or release tarball instead? > MELPA does not preserve old versions, so this version might not be > around for long. I didn't know that, but since the last release is quite old, I decided to use a git checkout. >> + (sha256 >> + (base32 >> + "1qhdhm0xa88jc5z15h1s5qwnzin7fccp2ndvqr0acp89zxi60jbq")))) >> + (build-system emacs-build-system) >> + (home-page >> + "https://github.com/jonathanchu/atom-one-dark-theme") >> + (synopsis "Atom One Dark color theme for Emacs") >> + (description "An Emacs port of the Atom One Dark theme from Atom.io.") >> + (license license:gpl3))) > > This should be GPL3+, as noted in atom-one-dark-theme.el. Can you send > an updated patch please? I have attached an updated patch :) Thanks --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-emacs-atom-one-dark-theme.patch Content-Description: patch v2 >From 260f923dea35ce8f55ba00c06d1401cf8c0bb9c0 Mon Sep 17 00:00:00 2001 From: Peter Mikkelsen Date: Tue, 19 Jun 2018 21:19:44 +0200 Subject: [PATCH] gnu: Add emacs-atom-one-dark-theme. * gnu/packages/emacs.scm (emacs-atom-one-dark-theme): New variable --- gnu/packages/emacs.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 458c31dd0..27c454641 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3199,6 +3199,28 @@ started with 20 minutes. All values are customizable.") organizer.") (license license:gpl3+))) +(define-public emacs-atom-one-dark-theme + (let ((commit "1f1185bf667a38d3d0d180ce85fd4c131818aae2") + (revision "0")) + (package + (name "emacs-atom-one-dark-theme") + (version (git-version "0.1" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jonathanchu/atom-one-dark-theme.git") + (commit commit))) + (sha256 + (base32 + "1alma16hg3mfjly8a9s3mrswkjjx4lrpdnf43869hn2ibkn7zx9z")) + (file-name (git-file-name name version)))) + (build-system emacs-build-system) + (home-page + "https://github.com/jonathanchu/atom-one-dark-theme") + (synopsis "Atom One Dark color theme for Emacs") + (description "An Emacs port of the Atom One Dark theme from Atom.io.") + (license license:gpl3+)))) + (define-public emacs-zenburn-theme (package (name "emacs-zenburn-theme") -- 2.17.1 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue Jul 03 09:31:09 2018 Received: (at 31914-done) by debbugs.gnu.org; 3 Jul 2018 13:31:09 +0000 Received: from localhost ([127.0.0.1]:44479 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1faLOa-0006wi-A8 for submit@debbugs.gnu.org; Tue, 03 Jul 2018 09:31:08 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:48017) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1faLOX-0006wa-V5 for 31914-done@debbugs.gnu.org; Tue, 03 Jul 2018 09:31:02 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id C846B21C1B; Tue, 3 Jul 2018 09:31:01 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute5.internal (MEProxy); Tue, 03 Jul 2018 09:31:01 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= cc:content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm3; bh=6xT/bOvXbjfJu56qWX6MEWXsaBk4UexDjY4ZYoGAvoc=; b=F2gqrmFJ N3kiKlYW78l7+JKWjAIoc4X1pKz78ZdR5R3G88nKSIqdAbTjPFuikzTanoklCw2a +Ix+E5tad8ofNDiYxFRJRl5t5+t8yAxIKfZY4LvGFY/8VHszMYyk6fRnzQtNz9Ee m/8ea0WQwthizDcz1btvWJk24i+wrgPxDck9TRj/BWusD4RKhpoNVhY7QZHDBxru tcSBUsmpfa67oTpRep+8z0mh6EgKq6CU77f9/fvQrKYi9Ba6YfC+E1mFLOty1aVo o0i1JregBjDpcR1AdOCO+qZlAY39LkouP7wGHiU4ulOEtAdTnA/tLahfeYOywKoh c9lNS1DHVFiS7A== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=fm3; bh=6xT/bOvXbjfJu56qWX6MEWXsaBk4U exDjY4ZYoGAvoc=; b=Sf4gdh+vNU2f7gDIqiuxjXWywAyJgrQ+IKRWlrf0wTP38 xEsUJG4CkK17EYa/P4NjqNQ9NwKB8H8qns7aWK53JX3WbSSZyceIEQPCgkv8LxiU ITRhy0jRQ2OUc7WF5swA0N/P3AILB6CT/tHSipsayRghX6avvnBHpWrUJ4VMQRHZ tfLnR6El8ZuZWrd4INVQDqs2WiHsO5zCFm9rv0V/Im0SUGq+by/IoIOQSfce2IgI WZZ7GZnsHCVDmdkX3Esbc+qYK/UHBe+EKtt0zjbTaQJcvIwwN2M1iUIESAvjvRIN 1dkZECcE3SbYoMS1JqB4WL8Tqr+XaRCtnoXe894lA== X-ME-Proxy: X-ME-Sender: Received: from localhost (95.92-221-151.customer.lyse.net [92.221.151.95]) by mail.messagingengine.com (Postfix) with ESMTPA id D6A6CE444F; Tue, 3 Jul 2018 09:31:00 -0400 (EDT) From: Marius Bakke To: Peter Mikkelsen Subject: Re: [bug#31914] [PATCH] gnu: Add emacs-atom-one-dark-theme. In-Reply-To: <87lgaxsw0q.fsf@alaok.org> References: <87d0wlpl74.fsf@alaok.org> <87o9fyel82.fsf@fastmail.com> <87lgaxsw0q.fsf@alaok.org> User-Agent: Notmuch/0.27 (https://notmuchmail.org) Emacs/26.1 (x86_64-pc-linux-gnu) Date: Tue, 03 Jul 2018 15:30:59 +0200 Message-ID: <87sh508mzw.fsf@fastmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 31914-done Cc: 31914-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: -1.7 (-) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Peter Mikkelsen writes: > Hi, sorry for the delay > > Marius Bakke writes: > >> Hello Peter, >> >> Peter Mikkelsen writes: >> >>> Date: Tue, 19 Jun 2018 21:19:44 +0200 >>> User-agent: mu4e 1.0; emacs 26.1 >>> From c324b516d02a4cdb6b0035f5d0fae4b12e050a1f Mon Sep 17 00:00:00 2001 >>> * gnu/packages/emacs.scm (emacs-atom-one-dark-theme): New variable >> >> [...] >>=20=20=20 >>> +(define-public emacs-atom-one-dark-theme >>> + (package >>> + (name "emacs-atom-one-dark-theme") >>> + (version "20180607.1638") >>> + (source (origin >>> + (method url-fetch) >>> + (uri (string-append >>> + "https://melpa.org/packages/atom-one-dark-theme-" >>> + version ".el")) >> >> Could you change this to use a git checkout or release tarball instead? >> MELPA does not preserve old versions, so this version might not be >> around for long. > > I didn't know that, but since the last release is quite old, I decided > to use a git checkout. > >>> + (sha256 >>> + (base32 >>> + "1qhdhm0xa88jc5z15h1s5qwnzin7fccp2ndvqr0acp89zxi60jbq")= ))) >>> + (build-system emacs-build-system) >>> + (home-page >>> + "https://github.com/jonathanchu/atom-one-dark-theme") >>> + (synopsis "Atom One Dark color theme for Emacs") >>> + (description "An Emacs port of the Atom One Dark theme from Atom.io= .") >>> + (license license:gpl3))) >> >> This should be GPL3+, as noted in atom-one-dark-theme.el. Can you send >> an updated patch please? > > I have attached an updated patch :) Thank you! I've applied the patch, with one modification: the latest git tag is "0.4.0"; and the same version number appears in the commentary of atom-one-dark-theme.el, so it seemed more accurate than "0.1". --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAls7epMACgkQoqBt8qM6 VPpo+Qf/WwTUeO5JY+B5jzR2B8C9/zDUUGm6fPO0bp/G4UJBBwJPGi0J64EciBvX sLYPle40moA5sQjSsrlEnlx8pIwNahfVHsxRLa6H0U33jstjBPc1q6/NHa6C2DSG d8Q/go5WRYIuJWAb6MSyeype2++LEJieIvlQSDfJfNikwxdJJk9rvwK7oFRAWsZY dGjkRTS08d7ogmtRKQgUPYxVHDfXNefGjqQ8J9z6GfZbNe3FaxbESoGrwgogSrmL 97RIo+D+qawEvNJTtYF1a3GwIVoa3RnVUovP3EObdOw0h8BO+NMATF6CCdfcG0lp wzi58ESHHPimQhHH+hst4Y04oYbB8w== =y5/q -----END PGP SIGNATURE----- --=-=-=-- From unknown Tue Jun 17 20:25:09 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, 01 Aug 2018 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