From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 12 10:16:35 2021 Received: (at submit) by debbugs.gnu.org; 12 Apr 2021 14:16:35 +0000 Received: from localhost ([127.0.0.1]:57644 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lVxMg-0000Dk-NX for submit@debbugs.gnu.org; Mon, 12 Apr 2021 10:16:35 -0400 Received: from lists.gnu.org ([209.51.188.17]:42008) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lVrfY-000107-CP for submit@debbugs.gnu.org; Mon, 12 Apr 2021 04:11:40 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:57814) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lVrfY-0001lw-7t for guix-patches@gnu.org; Mon, 12 Apr 2021 04:11:40 -0400 Received: from mail.kernel.org ([198.145.29.99]:44808) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lVrfV-0000o5-3l for guix-patches@gnu.org; Mon, 12 Apr 2021 04:11:39 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 304C96120B; Mon, 12 Apr 2021 08:11:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1618215093; bh=FT6kUjhVJqRxldlyu9Ra/jbEKh81yUApK/V2mLX6694=; h=From:To:Cc:Subject:Date:From; b=Snv1wTtWFsjE93fYnR8/P7TGQuejVNBYUmI4MJUSDMF8B91wZG3JR+ALt1+e9jER/ 5S602JW47x2u25XyluVDs21SHYyDu2SExDpcaWy9cZRjL66kMhsfN+0m1rydCdg1ui NIh1bUZ36n3WQ80mhtATOhEUQ32iC5NRsDuGRulQFsJk4+27EXkukQOynrje8LZLYa 5TJqBa2CgsTtxc1QwwAkBm6WO82kRlYMRcmRdKfd1HitXlUuOH+4caVsGTVHOizfJ3 PjexCPt5HC925v8V/VbU4i+mzUalHMu2dKGR55DJT83q7R2NY+xe2kCG0k1nvn3Vr8 MCi4JNExxKt9g== From: balbi@kernel.org To: guix-patches@gnu.org Subject: [PATCH] gnu: Add vice emulator Date: Mon, 12 Apr 2021 11:11:26 +0300 Message-Id: <20210412081126.165435-1-balbi@kernel.org> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=198.145.29.99; envelope-from=balbi@kernel.org; helo=mail.kernel.org X-Spam_score_int: -70 X-Spam_score: -7.1 X-Spam_bar: ------- X-Spam_report: (-7.1 / 5.0 requ) BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Mon, 12 Apr 2021 10:16:34 -0400 Cc: Felipe Balbi 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.3 (--) From: Felipe Balbi * gnu/packages/emulators.scm (vice): New variable. Signed-off-by: Felipe Balbi --- gnu/packages/emulators.scm | 42 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index 8482f679e2c3..5c41e0fc22cb 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm @@ -13,6 +13,7 @@ ;;; Copyright © 2019 David Wilson ;;; Copyright © 2020 Jakub Kądziołka ;;; Copyright © 2020 Christopher Howard +;;; Copyright © 2021 Felipe Balbi ;;; ;;; This file is part of GNU Guix. ;;; @@ -44,6 +45,7 @@ #:use-module (gnu packages autogen) #:use-module (gnu packages autotools) #:use-module (gnu packages base) + #:use-module (gnu packages bison) #:use-module (gnu packages boost) #:use-module (gnu packages backup) #:use-module (gnu packages cdrom) @@ -53,6 +55,7 @@ #:use-module (gnu packages curl) #:use-module (gnu packages digest) #:use-module (gnu packages elf) + #:use-module (gnu packages flex) #:use-module (gnu packages fonts) #:use-module (gnu packages fontutils) #:use-module (gnu packages freedesktop) @@ -97,6 +100,45 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system python)) +(define-public vice + (package + (name "vice") + (version "3.5") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/vice-emu/releases/" + name "-" version ".tar.gz")) + (sha256 + (base32 + "03nwcldg2h7dxj6aa77ggqc0442hqc1lsq5x69h8kcmqmvx7ifan")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags '("--disable-pdf-docs"))) + (native-inputs + `(("bison" ,bison) + ("dos2unix" ,dos2unix) + ("flex" ,flex) + ("glib" ,glib "bin") ; for glib-genmarshal, etc. + ("pkg-config" ,pkg-config))) + (inputs + `(("alsa-lib" ,alsa-lib) + ("glew" ,glew) + ("glib" ,glib) + ("gtk+" ,gtk+) + ("pulseaudio" ,pulseaudio) + ("sdl" ,sdl) + ("sdl-image" ,sdl-image) + ("xa" ,xa))) + (home-page "https://vice-emu.sourceforge.io/") + (synopsis "The Versatile Commodore Emulator") + (description + "VICE is a program that emulates the C64, the C64DTV, the C128, the +VIC20, practically all PET models, the PLUS4 and the CBM-II (aka +C610/C510). An extra emulator is provided for C64 expanded with the CMD +SuperCPU.") + (license license:gpl2+))) + (define-public desmume (package (name "desmume") -- 2.31.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 26 14:55:46 2021 Received: (at 47726-done) by debbugs.gnu.org; 26 Apr 2021 18:55:46 +0000 Received: from localhost ([127.0.0.1]:47156 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lb6OX-000588-Sc for submit@debbugs.gnu.org; Mon, 26 Apr 2021 14:55:46 -0400 Received: from relay8-d.mail.gandi.net ([217.70.183.201]:46801) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lb6OT-00057q-FV for 47726-done@debbugs.gnu.org; Mon, 26 Apr 2021 14:55:44 -0400 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay8-d.mail.gandi.net (Postfix) with ESMTPSA id 797291BF206; Mon, 26 Apr 2021 18:55:34 +0000 (UTC) From: Nicolas Goaziou To: balbi@kernel.org Subject: Re: [bug#47726] [PATCH] gnu: Add vice emulator References: <20210412081126.165435-1-balbi@kernel.org> Date: Mon, 26 Apr 2021 20:55:33 +0200 In-Reply-To: <20210412081126.165435-1-balbi@kernel.org> (balbi@kernel.org's message of "Mon, 12 Apr 2021 11:11:26 +0300") Message-ID: <87sg3cx4d6.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 47726-done Cc: 47726-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 (-) Hello, balbi@kernel.org writes: > From: Felipe Balbi > > * gnu/packages/emulators.scm (vice): New variable. Thank you! I applied it. > Signed-off-by: Felipe Balbi We don't have the habit of signing our own patches. > + (uri (string-append "mirror://sourceforge/vice-emu/releases/" > + name "-" version ".tar.gz")) Nitpick: we hard-code the name in the URI. Regards, -- Nicolas Goaziou From debbugs-submit-bounces@debbugs.gnu.org Mon Apr 26 14:57:27 2021 Received: (at 47726-done) by debbugs.gnu.org; 26 Apr 2021 18:57:27 +0000 Received: from localhost ([127.0.0.1]:47163 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lb6QB-0005BT-6W for submit@debbugs.gnu.org; Mon, 26 Apr 2021 14:57:27 -0400 Received: from mail-lf1-f50.google.com ([209.85.167.50]:46862) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lb6Q5-0005B7-J8 for 47726-done@debbugs.gnu.org; Mon, 26 Apr 2021 14:57:25 -0400 Received: by mail-lf1-f50.google.com with SMTP id 12so89578327lfq.13 for <47726-done@debbugs.gnu.org>; Mon, 26 Apr 2021 11:57:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=Obm2Y+GGOqygHcyP79hJ/fYFEs5XA53ttWySyawMhow=; b=F8J0wuEdcrchGbcIJwRxQizMqaDU2uLrHGncnaDlKICcW8qj8snlGEMR2Mdp7TR7Gn PRN1yqO/OJlwBMvta89Q6OPIqT5ZZjhm0VRVTGKacmqCYGCRBim9L+YLtRzItuozvXqw +UkXRxgTbELZ+1toyx5kdT5LUHvlG+oysU/2IW34jo3FQa83JzjcQRXtuxMdXs+w8ulN i/R2OV8pBRQr0DymVoSQ2fvud3lzGbs/nB622xCc9K7hCg0O+KBA7w3eH985RQ3afx5F rrdVm0wUyFTt9wbLAHXkHcALwj9QcpfGpND/IKHFd7LSs+O6UVo0Gjecj2gdYKMa4ta7 lOnw== X-Gm-Message-State: AOAM532HE7hMzvg2lsSNV11dfqm5TToPPq0xzRzwpD15T6oDdwYK5fq6 NgFC91RD0kYN/qB7YogNIf5YbxdQ2Zg4qofB/eg= X-Google-Smtp-Source: ABdhPJw3aMqKACdGMw4MEocLKZ8k4cj1ulMjeS0pw/3SRjdLLUSpytoeNjaC50EyXJNHgKmYmboR9fERVRPQCq/Ibqg= X-Received: by 2002:a05:6512:51a:: with SMTP id o26mr160879lfb.395.1619463435271; Mon, 26 Apr 2021 11:57:15 -0700 (PDT) MIME-Version: 1.0 References: <20210412081126.165435-1-balbi@kernel.org> <87sg3cx4d6.fsf@nicolasgoaziou.fr> In-Reply-To: <87sg3cx4d6.fsf@nicolasgoaziou.fr> From: Felipe Balbi Date: Mon, 26 Apr 2021 21:57:04 +0300 Message-ID: Subject: Re: [bug#47726] [PATCH] gnu: Add vice emulator To: Nicolas Goaziou Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.5 (/) X-Debbugs-Envelope-To: 47726-done Cc: 47726-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: -0.5 (/) Hi, On Mon, Apr 26, 2021 at 9:55 PM Nicolas Goaziou wrote: > > Hello, > > balbi@kernel.org writes: > > > From: Felipe Balbi > > > > * gnu/packages/emulators.scm (vice): New variable. > > Thank you! I applied it. Awesome, thanks :-) > > Signed-off-by: Felipe Balbi > > We don't have the habit of signing our own patches. > > > + (uri (string-append "mirror://sourceforge/vice-emu/releases/" > > + name "-" version ".tar.gz")) > > Nitpick: we hard-code the name in the URI. sure thing, I'll keep that in mind next time :-) I did see a couple packages doing that, though. -- balbi From unknown Sat Sep 20 10:49:27 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 25 May 2021 11:24:05 +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