From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:58123) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iH5vH-0007w8-T8 for guix-patches@gnu.org; Sun, 06 Oct 2019 08:46:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iH5vG-0002LE-88 for guix-patches@gnu.org; Sun, 06 Oct 2019 08:46:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:36968) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iH5vG-0002L7-48 for guix-patches@gnu.org; Sun, 06 Oct 2019 08:46:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iH5vG-0003cw-19 for guix-patches@gnu.org; Sun, 06 Oct 2019 08:46:02 -0400 Subject: [bug#37486] [PATCH] gnu: Add goattracker Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20190923005600.22799-1-w96k@member.fsf.org> Date: Sun, 06 Oct 2019 14:45:14 +0200 In-Reply-To: <20190923005600.22799-1-w96k@member.fsf.org> (Mikhail Kirillov's message of "Mon, 23 Sep 2019 03:56:00 +0300") Message-ID: <87bluudov9.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: Mikhail Kirillov Cc: 37486@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Mikhail, Mikhail Kirillov skribis: > * gnu/packages/music.scm: Add goattracker Thanks for the updated patch. I started looking into it, fixing an issue reported by =E2=80=98guix lint= =E2=80=99, and cleaning up the source, leading to the following patch. However, goattracker no fails to build because of a missing =E2=80=98.bin= =E2=80=99 file. Do you know what these =E2=80=98.bin=E2=80=99 (and =E2=80=98.dat=E2=80=99) = files are, what their license is, and what can be done with them? Thanks in advance, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 7216075c34..84b602ae36 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -4598,7 +4598,14 @@ with error and volume history, and advanced features= .") version "/GoatTracker_" version ".zip")) (sha256 (base32 - "1km97nl7qvk6qc5l5j69wncbm76hf86j47sgzgr968423g0bxxlk")))) + "1km97nl7qvk6qc5l5j69wncbm76hf86j47sgzgr968423g0bxxlk")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Remove binaries from the source tarball. + (for-each delete-file + (find-files "." "\\.(o|dll|exe|bin)$")) + #t)))) (arguments `(#:tests? #f #:make-flags '("CC=3Dgcc") @@ -4613,7 +4620,7 @@ with error and volume history, and advanced features.= ") (replace 'install (lambda* (#:key inputs outputs #:allow-other-keys) (chdir "../linux") - (invoke "ln" "-s" "goattrk2" "goattracker") + (symlink "goattrk2" "goattracker") (copy-recursively "./" (string-append (assoc-ref %outputs "out") "/bin")) @@ -4626,5 +4633,5 @@ with error and volume history, and advanced features.= ") (description "GoatTracker is a cross-platform tracker written by Lasse =C3=96=C3=B6rni, producing SID chiptune music for the Commodore 64, and re= leased with source code under the GPL.") - (home-page "https://goattracker2.sourceforge.io/") - (license license:gpl2))) + (home-page "http://goattracker2.sourceforge.net/") + (license license:gpl2+))) --=-=-=--