Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bergmark/base-compat-migrate
https://github.com/bergmark/base-compat-migrate
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bergmark/base-compat-migrate
- Owner: bergmark
- License: bsd-3-clause
- Created: 2018-04-15T15:29:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-25T16:43:34.000Z (over 4 years ago)
- Last Synced: 2024-10-07T22:20:03.633Z (about 1 month ago)
- Language: Haskell
- Size: 17.6 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# base-compat-migrate [![Hackage](https://img.shields.io/hackage/v/base-compat-migrate.svg)](https://hackage.haskell.org/package/base-compat-migrate) [![Build Status](https://travis-ci.org/bergmark/base-compat-migrate.svg)](https://travis-ci.org/bergmark/base-compat-migrate)
This library is meant as a temporary migration library when moving a
library to
[base-compat](http://hackage.haskell.org/package/base-compat) or
upgrading it. Replace `base-compat` with
[base-compat-batteries](https://hackage.haskell.org/package/base-compat-batteries)
in the rest of the README if you want to use that library instead.`base-compat` defines backwards compatible versions of some base
modules; If you for example want to make sure `import Prelude` does
the same thing on all GHC versions you can instead `import
Prelude.Compat`. If a Compat module exists it means it has some
backwards compatibility fix, it also re-exports everything that is
unchanged from the corresponding base module.base-compat notably does not have Compat modules for every base module
so you often need to depend on both base and base-compat. The standard
recommended work-flow is to build your project with the oldest GHC you
want to support and add Compat imports accordingly.If you don't have quick access to old GHCs it can be error-prone to
migrate to upgrade base-compat since you need to look through all base
imports to see if you should be using Compat versions instead.## Workflow
This library offers a different work flow:
1. Make sure you are using a GHC version compatible with this project
(At the time of writing it is GHC 8.4.1)
1. Replace any `base` and `base-compat` dependencies in your project
with `base-compat-migrate`.
1. Add `default-extensions: NoImplicitPrelude` to each build component
(libraries, executables, test suites, benchmarks).
1. Compile your project and fix issues:
* Add any needed `Prelude.Compat` imports
* If a `base` module can't be found change the import to the
`Compat` version instead.
1. Finally, replace the `base-compat-migrate` dependency with `base`
and `base-compat`.Whenever you wish to support newer versions of `base` or `base-compat`
you can repeat these steps.### Common Issues with Solutions
* If your package declares Paths modules it won't compile without
access to base. You can drop the Paths module until the affected
component builds, and then add it again along with the base
dependency.## Dependencies
Since `base-compat-migrate` re-exports modules, we depend on minor
versions of `base` and `base-compat`. A new minor version of either
may require a new release of this library. This project's cabal file
is generated by compiling this package with `-fexe` with
cabal-install, or `stack build` with stack and then running the
generated executable.