From 9d7a2cba7dd54e914d3708466e595d59d63fa1a3 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 17 Jul 2016 14:59:09 +0300 Subject: rename the project (+ get rid of leftover dirs) --- README.md | 4 +-- pdbs/.gitignore | 1 - pdbs/README | 1 - symbols/.gitignore | 2 -- symbols/README | 1 - vscache/.gitignore | 3 --- vscache/README | 1 - windows-env.cabal | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ wintmp.cabal | 78 ------------------------------------------------------ 9 files changed, 80 insertions(+), 89 deletions(-) delete mode 100644 pdbs/.gitignore delete mode 100644 pdbs/README delete mode 100644 symbols/.gitignore delete mode 100644 symbols/README delete mode 100644 vscache/.gitignore delete mode 100644 vscache/README create mode 100644 windows-env.cabal delete mode 100644 wintmp.cabal diff --git a/README.md b/README.md index 782ac10..8a5c0d2 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -Windows "tmp" directory -======================= +Windows environment variables +============================= A collection of scripts to manage my environmental variables, created mainly to: diff --git a/pdbs/.gitignore b/pdbs/.gitignore deleted file mode 100644 index eadd157..0000000 --- a/pdbs/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.pdb diff --git a/pdbs/README b/pdbs/README deleted file mode 100644 index 43a9584..0000000 --- a/pdbs/README +++ /dev/null @@ -1 +0,0 @@ -I store my .pdb files in this directory diff --git a/symbols/.gitignore b/symbols/.gitignore deleted file mode 100644 index f8eecb8..0000000 --- a/symbols/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.pdb/ -pingme.txt diff --git a/symbols/README b/symbols/README deleted file mode 100644 index 25ad431..0000000 --- a/symbols/README +++ /dev/null @@ -1 +0,0 @@ -Downloaded Windows symbols are stored in this directory diff --git a/vscache/.gitignore b/vscache/.gitignore deleted file mode 100644 index 514e47a..0000000 --- a/vscache/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -* -!.gitignore -!README diff --git a/vscache/README b/vscache/README deleted file mode 100644 index 703fb3d..0000000 --- a/vscache/README +++ /dev/null @@ -1 +0,0 @@ -This directory is used as the fallback location for Visual Studio cache files diff --git a/windows-env.cabal b/windows-env.cabal new file mode 100644 index 0000000..ec9bca8 --- /dev/null +++ b/windows-env.cabal @@ -0,0 +1,78 @@ +name: windows-env +version: 0.1.0.0 +synopsis: Windows environment variables +description: Please see README.md +homepage: https://github.com/egor-tensin/windows-env +license: MIT +license-file: LICENSE.txt +author: Egor Tensin +maintainer: Egor.Tensin@gmail.com +copyright: (c) 2015 Egor Tensin +category: System +build-type: Simple +-- extra-source-files: +cabal-version: >=1.10 + +library + hs-source-dirs: src + exposed-modules: Environment, Registry, Utils + ghc-options: -Wall -Werror + build-depends: base, split, Win32 + default-language: Haskell2010 + +executable add_path + hs-source-dirs: apps + main-is: AddPath.hs + ghc-options: -threaded -rtsopts -with-rtsopts=-N + build-depends: base + , optparse-applicative + , windows-env + default-language: Haskell2010 + +executable fix_nt_symbol_path + hs-source-dirs: apps + main-is: FixNtSymbolPath.hs + ghc-options: -threaded -rtsopts -with-rtsopts=-N + build-depends: base, directory, filepath + , windows-env + default-language: Haskell2010 + +executable list_path + hs-source-dirs: apps + main-is: ListPath.hs + ghc-options: -threaded -rtsopts -with-rtsopts=-N + build-depends: base, directory + , optparse-applicative + , windows-env + default-language: Haskell2010 + +executable remove_path + hs-source-dirs: apps + main-is: RemovePath.hs + ghc-options: -threaded -rtsopts -with-rtsopts=-N + build-depends: base + , optparse-applicative + , windows-env + default-language: Haskell2010 + +executable set_env + hs-source-dirs: apps + main-is: SetEnv.hs + ghc-options: -threaded -rtsopts -with-rtsopts=-N + build-depends: base + , optparse-applicative + , windows-env + default-language: Haskell2010 + +executable unset_env + hs-source-dirs: apps + main-is: UnsetEnv.hs + ghc-options: -threaded -rtsopts -with-rtsopts=-N + build-depends: base + , optparse-applicative + , windows-env + default-language: Haskell2010 + +source-repository head + type: git + location: https://github.com/egor-tensin/windows-env diff --git a/wintmp.cabal b/wintmp.cabal deleted file mode 100644 index a8a8437..0000000 --- a/wintmp.cabal +++ /dev/null @@ -1,78 +0,0 @@ -name: wintmp -version: 0.1.0.0 -synopsis: Windows "tmp" directory -description: Please see README.md -homepage: https://github.com/egor-tensin/wintmp -license: MIT -license-file: LICENSE.txt -author: Egor Tensin -maintainer: Egor.Tensin@gmail.com -copyright: (c) 2015 Egor Tensin -category: System -build-type: Simple --- extra-source-files: -cabal-version: >=1.10 - -library - hs-source-dirs: src - exposed-modules: Environment, Registry, Utils - ghc-options: -Wall -Werror - build-depends: base, split, Win32 - default-language: Haskell2010 - -executable add_path - hs-source-dirs: apps - main-is: AddPath.hs - ghc-options: -threaded -rtsopts -with-rtsopts=-N - build-depends: base - , optparse-applicative - , wintmp - default-language: Haskell2010 - -executable fix_nt_symbol_path - hs-source-dirs: apps - main-is: FixNtSymbolPath.hs - ghc-options: -threaded -rtsopts -with-rtsopts=-N - build-depends: base, directory, filepath - , wintmp - default-language: Haskell2010 - -executable list_path - hs-source-dirs: apps - main-is: ListPath.hs - ghc-options: -threaded -rtsopts -with-rtsopts=-N - build-depends: base, directory - , optparse-applicative - , wintmp - default-language: Haskell2010 - -executable remove_path - hs-source-dirs: apps - main-is: RemovePath.hs - ghc-options: -threaded -rtsopts -with-rtsopts=-N - build-depends: base - , optparse-applicative - , wintmp - default-language: Haskell2010 - -executable set_env - hs-source-dirs: apps - main-is: SetEnv.hs - ghc-options: -threaded -rtsopts -with-rtsopts=-N - build-depends: base - , optparse-applicative - , wintmp - default-language: Haskell2010 - -executable unset_env - hs-source-dirs: apps - main-is: UnsetEnv.hs - ghc-options: -threaded -rtsopts -with-rtsopts=-N - build-depends: base - , optparse-applicative - , wintmp - default-language: Haskell2010 - -source-repository head - type: git - location: https://github.com/egor-tensin/wintmp -- cgit v1.2.3