From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:33801) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i877z-0002bZ-Q0 for guix-patches@gnu.org; Wed, 11 Sep 2019 14:14:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i877y-0003wJ-Op for guix-patches@gnu.org; Wed, 11 Sep 2019 14:14:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:33919) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i877y-0003wD-Lf for guix-patches@gnu.org; Wed, 11 Sep 2019 14:14:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i877y-0006fp-FY for guix-patches@gnu.org; Wed, 11 Sep 2019 14:14:02 -0400 Subject: [bug#37358] Add emacs-doom-themes Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:33729) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i877l-0002Yc-7X for guix-patches@gnu.org; Wed, 11 Sep 2019 14:13:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i877j-0003n5-Om for guix-patches@gnu.org; Wed, 11 Sep 2019 14:13:49 -0400 Received: from mout01.posteo.de ([185.67.36.65]:55547) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i877j-0003lp-BD for guix-patches@gnu.org; Wed, 11 Sep 2019 14:13:47 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id C4775160062 for ; Wed, 11 Sep 2019 20:13:44 +0200 (CEST) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Date: Wed, 11 Sep 2019 20:13:43 +0200 From: brettg@posteo.net In-Reply-To: <87woeevkwu.fsf@yahoo.de> References: <87d0g9tnm8.fsf@yahoo.de> <875zlzzu4u.fsf@gnu.org> <87woeevkwu.fsf@yahoo.de> Message-ID: <1a4441f767e6fdb890cb13386c26f8f5@posteo.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37358@debbugs.gnu.org Cc: guix-patches-bounces+brettg=posteo.net@gnu.org Hi all, I have a copy of emacs-doom-themes in my channel here. I never pushed it=20 because I didnt feel it was good enough for upstream. It works though, feel free to tweak it and push it. https://git.sr.ht/~brettgilio/cfg/tree/master/guix-channel/non-gnu/packages= /emacs-xyz.scm#L10 On 11.09.2019 18:48, Tim Gesthuizen via Guix-patches via wrote: > Hi, >=20 > Ludovic Court=C3=A8s writes: >> Why is this needed? >=20 > I am pretty sure that this is not what I want (did I miss a=20 > build-system > option?): > The themes of the package are in a subdirectory that is not byte > compiled or installed to the store when the package is build. > The easiest workaround I could come up with is copying all .el files to > the root of the package. > The package is pretty useless without the theme .el files. >=20 >> I could suggest: >>=20 >> (for-each (lambda (file) >> (rename-file file (string-append (dirname file) "/.."))) >> (find-files themes)) >>=20 >> =E2=80=A6 which would really move files, but it also more verbose. >=20 > A version moving the files is attached. I would prefer the copying > version however: The files will not get installed, we are talking about > a few kilobytes in /tmp/, and it is easier to read. > Choose the version you like :) >=20 > Tim.