From 710089ebbde76e175706b883e8bfeda76379b031 Mon Sep 17 00:00:00 2001 From: Peter Becich Date: Fri, 5 Jul 2024 18:45:06 -0700 Subject: [PATCH] rename package to `spago-legacy` This package is currently `spago` in NixPkgs: https://search.nixos.org/packages?channel=unstable&from=0&size=50&sort=relevance&type=packages&query=spago The Nix configuration for that is generated from this Cabal file. Renaming to `spago-legacy` will help NixPkgs update to the new Spago. I think it's unnecessary for the `spago` binary to be renamed. --- spago.cabal => spago-legacy.cabal | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) rename spago.cabal => spago-legacy.cabal (93%) diff --git a/spago.cabal b/spago-legacy.cabal similarity index 93% rename from spago.cabal rename to spago-legacy.cabal index 5297140..7cad535 100644 --- a/spago.cabal +++ b/spago-legacy.cabal @@ -1,10 +1,10 @@ cabal-version: 2.4 -name: spago +name: spago-legacy version: 0.21.0 -description: Please see the README on GitHub at -homepage: https://github.com/purescript/spago#readme -bug-reports: https://github.com/purescript/spago/issues +description: Please see the README on GitHub at +homepage: https://github.com/purescript/spago-legacy#readme +bug-reports: https://github.com/purescript/spago-legacy/issues author: Justin Woo, Fabrizio Ferrai maintainer: @jusrin00, @fabferrai copyright: 2018-2020 Justin Woo, Fabrizio Ferrai @@ -28,7 +28,7 @@ extra-source-files: source-repository head type: git - location: https://github.com/purescript/spago + location: https://github.com/purescript/spago-legacy common defaults default-language: Haskell2010 @@ -182,7 +182,7 @@ executable spago build-depends: ansi-terminal , base >=4.7 && <5 - , spago + , spago-legacy , text <1.3 , turtle , with-utf8 @@ -212,7 +212,7 @@ test-suite spec , hspec-megaparsec , megaparsec , process - , spago + , spago-legacy , temporary , text <1.3 , turtle @@ -220,4 +220,4 @@ test-suite spec build-tool-depends: hspec-discover:hspec-discover == 2.* -- we need the the executable available for the end to end tests - , spago:spago -any + , spago-legacy:spago -any