Rename from props to propa-tools

This commit is contained in:
Joscha 2020-12-11 16:59:56 +00:00
parent 37c1307d54
commit 2b88420a2a
6 changed files with 18 additions and 19 deletions

View file

@ -1,3 +1,4 @@
# props # propa-tools
Propa tools Various programming paradigm related bits and bobs. May not contain any actual
executables.

View file

@ -1,4 +1,4 @@
name: props name: propa-tools
version: 0.1.0.0 version: 0.1.0.0
license: MIT license: MIT
author: Garmelon <joscha@plugh.de> author: Garmelon <joscha@plugh.de>
@ -21,7 +21,7 @@ library:
source-dirs: src source-dirs: src
executables: executables:
props: propa-tools-exe:
main: Main.hs main: Main.hs
source-dirs: app source-dirs: app
ghc-options: ghc-options:
@ -29,4 +29,4 @@ executables:
- -rtsopts - -rtsopts
- -with-rtsopts=-N - -with-rtsopts=-N
dependencies: dependencies:
- props - propa-tools

View file

@ -3,10 +3,8 @@ cabal-version: 1.18
-- This file has been generated from package.yaml by hpack version 0.34.2. -- This file has been generated from package.yaml by hpack version 0.34.2.
-- --
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
--
-- hash: 78cab4f7dbc3221eeb49550721e77438db654b072638fcbe9a383fd915dbf277
name: props name: propa-tools
version: 0.1.0.0 version: 0.1.0.0
author: Garmelon <joscha@plugh.de> author: Garmelon <joscha@plugh.de>
maintainer: Garmelon <joscha@plugh.de> maintainer: Garmelon <joscha@plugh.de>
@ -22,11 +20,11 @@ extra-doc-files:
library library
exposed-modules: exposed-modules:
Props.Lambda.Display Propa.Lambda.Display
Props.Lambda.Term Propa.Lambda.Term
Props.Prolog Propa.Prolog
other-modules: other-modules:
Paths_props Paths_propa_tools
hs-source-dirs: hs-source-dirs:
src src
build-depends: build-depends:
@ -36,17 +34,17 @@ library
, transformers , transformers
default-language: Haskell2010 default-language: Haskell2010
executable props executable propa-tools-exe
main-is: Main.hs main-is: Main.hs
other-modules: other-modules:
Paths_props Paths_propa_tools
hs-source-dirs: hs-source-dirs:
app app
ghc-options: -threaded -rtsopts -with-rtsopts=-N ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: build-depends:
base >=4.7 && <5 base >=4.7 && <5
, containers , containers
, props , propa-tools
, text , text
, transformers , transformers
default-language: Haskell2010 default-language: Haskell2010

View file

@ -2,7 +2,7 @@
-- | This module contains functions useful for displaying 'Term's. -- | This module contains functions useful for displaying 'Term's.
module Props.Lambda.Display module Propa.Lambda.Display
( Name ( Name
, findConstNames , findConstNames
, makeVarNamesUnique , makeVarNamesUnique
@ -18,7 +18,7 @@ import Control.Monad.Trans.State
import qualified Data.Set as Set import qualified Data.Set as Set
import qualified Data.Text as T import qualified Data.Text as T
import Props.Lambda.Term import Propa.Lambda.Term
-- | The name of a variable or a constant. -- | The name of a variable or a constant.
type Name = T.Text type Name = T.Text

View file

@ -1,7 +1,7 @@
-- | This module contains 'Term', the base type for lambda expressions. It also -- | This module contains 'Term', the base type for lambda expressions. It also
-- contains a few utility functions for operating on it. -- contains a few utility functions for operating on it.
module Props.Lambda.Term module Propa.Lambda.Term
( Term(..) ( Term(..)
, vars , vars
, mapVars , mapVars

View file

@ -1,4 +1,4 @@
module Props.Prolog where module Propa.Prolog where
import Control.Monad import Control.Monad
import Data.Foldable import Data.Foldable