From 9ccd910b29f15b622bdb027d15b9b337f24f985c Mon Sep 17 00:00:00 2001 From: Alison Watson Date: Thu, 24 Oct 2019 13:20:56 -0400 Subject: [PATCH] rebuild: fix pkginfo being completely broken --- build-system/rebuild-pkginfo.rkt | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/build-system/rebuild-pkginfo.rkt b/build-system/rebuild-pkginfo.rkt index a3faddd..3d7b353 100644 --- a/build-system/rebuild-pkginfo.rkt +++ b/build-system/rebuild-pkginfo.rkt @@ -10,22 +10,12 @@ (define package-options (hash - 'bsnes-plus-git - (hash 'url (mygit "bsnes-plus-git.git")) - - 'gmqcc-git - (hash 'url (mygit "gmqcc-git.git")) - - 'minecraft-server-fabric - (hash 'url (mygit "minecraft-server-fabric.git")) - - 'otf-linjapona - (hash 'url (mygit "otf-linjapona.git")) - - 'quakespasm - (hash 'url (mygit "quakespasm.git")) - - 'quakespasm-spiked-git - (hash 'url (mygit "quakespasm-spiked-git.git")))) + "alpine-git" (hash 'url (mygit "alpine-git.git")) + "bsnes-plus-git" (hash 'url (mygit "bsnes-plus-git.git")) + "gmqcc-git" (hash 'url (mygit "gmqcc-git.git")) + "minecraft-server-fabric" (hash 'url (mygit "minecraft-server-fabric.git")) + "otf-linjapona" (hash 'url (mygit "otf-linjapona.git")) + "quakespasm" (hash 'url (mygit "quakespasm.git")) + "quakespasm-spiked-git" (hash 'url (mygit "quakespasm-spiked-git.git")))) ;; EOF