From cbe440bb0adbfbccfdbbcedb29bf9408c0596866 Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 29 May 2019 20:06:05 -0400 Subject: Initial repository; needs clean up but it's working so let's not lose it --- .../build/8queens/autogen/Paths_8queens.hs | 50 ++++++ .../build/8queens/autogen/cabal_macros.h | 195 +++++++++++++++++++++ 2 files changed, 245 insertions(+) create mode 100644 .stack-work/dist/x86_64-linux/Cabal-2.4.0.1/build/8queens/autogen/Paths_8queens.hs create mode 100644 .stack-work/dist/x86_64-linux/Cabal-2.4.0.1/build/8queens/autogen/cabal_macros.h (limited to '.stack-work/dist/x86_64-linux/Cabal-2.4.0.1/build/8queens/autogen') diff --git a/.stack-work/dist/x86_64-linux/Cabal-2.4.0.1/build/8queens/autogen/Paths_8queens.hs b/.stack-work/dist/x86_64-linux/Cabal-2.4.0.1/build/8queens/autogen/Paths_8queens.hs new file mode 100644 index 0000000..7e16751 --- /dev/null +++ b/.stack-work/dist/x86_64-linux/Cabal-2.4.0.1/build/8queens/autogen/Paths_8queens.hs @@ -0,0 +1,50 @@ +{-# LANGUAGE CPP #-} +{-# LANGUAGE NoRebindableSyntax #-} +{-# OPTIONS_GHC -fno-warn-missing-import-lists #-} +module Paths_8queens ( + version, + getBinDir, getLibDir, getDynLibDir, getDataDir, getLibexecDir, + getDataFileName, getSysconfDir + ) where + +import qualified Control.Exception as Exception +import Data.Version (Version(..)) +import System.Environment (getEnv) +import Prelude + +#if defined(VERSION_base) + +#if MIN_VERSION_base(4,0,0) +catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a +#else +catchIO :: IO a -> (Exception.Exception -> IO a) -> IO a +#endif + +#else +catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a +#endif +catchIO = Exception.catch + +version :: Version +version = Version [0,1,0,0] [] +bindir, libdir, dynlibdir, datadir, libexecdir, sysconfdir :: FilePath + +bindir = "/home/sv/src/8queens/.stack-work/install/x86_64-linux/lts-13.22/8.6.5/bin" +libdir = "/home/sv/src/8queens/.stack-work/install/x86_64-linux/lts-13.22/8.6.5/lib/x86_64-linux-ghc-8.6.5/8queens-0.1.0.0-1f9e2RemoZD8IyN03WXtS0-8queens" +dynlibdir = "/home/sv/src/8queens/.stack-work/install/x86_64-linux/lts-13.22/8.6.5/lib/x86_64-linux-ghc-8.6.5" +datadir = "/home/sv/src/8queens/.stack-work/install/x86_64-linux/lts-13.22/8.6.5/share/x86_64-linux-ghc-8.6.5/8queens-0.1.0.0" +libexecdir = "/home/sv/src/8queens/.stack-work/install/x86_64-linux/lts-13.22/8.6.5/libexec/x86_64-linux-ghc-8.6.5/8queens-0.1.0.0" +sysconfdir = "/home/sv/src/8queens/.stack-work/install/x86_64-linux/lts-13.22/8.6.5/etc" + +getBinDir, getLibDir, getDynLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath +getBinDir = catchIO (getEnv "8queens_bindir") (\_ -> return bindir) +getLibDir = catchIO (getEnv "8queens_libdir") (\_ -> return libdir) +getDynLibDir = catchIO (getEnv "8queens_dynlibdir") (\_ -> return dynlibdir) +getDataDir = catchIO (getEnv "8queens_datadir") (\_ -> return datadir) +getLibexecDir = catchIO (getEnv "8queens_libexecdir") (\_ -> return libexecdir) +getSysconfDir = catchIO (getEnv "8queens_sysconfdir") (\_ -> return sysconfdir) + +getDataFileName :: FilePath -> IO FilePath +getDataFileName name = do + dir <- getDataDir + return (dir ++ "/" ++ name) diff --git a/.stack-work/dist/x86_64-linux/Cabal-2.4.0.1/build/8queens/autogen/cabal_macros.h b/.stack-work/dist/x86_64-linux/Cabal-2.4.0.1/build/8queens/autogen/cabal_macros.h new file mode 100644 index 0000000..80cc9e2 --- /dev/null +++ b/.stack-work/dist/x86_64-linux/Cabal-2.4.0.1/build/8queens/autogen/cabal_macros.h @@ -0,0 +1,195 @@ +/* DO NOT EDIT: This file is automatically generated by Cabal */ + +/* package 8queens-0.1.0.0 */ +#ifndef VERSION_8queens +#define VERSION_8queens "0.1.0.0" +#endif /* VERSION_8queens */ +#ifndef MIN_VERSION_8queens +#define MIN_VERSION_8queens(major1,major2,minor) (\ + (major1) < 0 || \ + (major1) == 0 && (major2) < 1 || \ + (major1) == 0 && (major2) == 1 && (minor) <= 0) +#endif /* MIN_VERSION_8queens */ + +/* package base-4.12.0.0 */ +#ifndef VERSION_base +#define VERSION_base "4.12.0.0" +#endif /* VERSION_base */ +#ifndef MIN_VERSION_base +#define MIN_VERSION_base(major1,major2,minor) (\ + (major1) < 4 || \ + (major1) == 4 && (major2) < 12 || \ + (major1) == 4 && (major2) == 12 && (minor) <= 0) +#endif /* MIN_VERSION_base */ + +/* package lens-4.17.1 */ +#ifndef VERSION_lens +#define VERSION_lens "4.17.1" +#endif /* VERSION_lens */ +#ifndef MIN_VERSION_lens +#define MIN_VERSION_lens(major1,major2,minor) (\ + (major1) < 4 || \ + (major1) == 4 && (major2) < 17 || \ + (major1) == 4 && (major2) == 17 && (minor) <= 1) +#endif /* MIN_VERSION_lens */ + +/* package linear-1.20.9 */ +#ifndef VERSION_linear +#define VERSION_linear "1.20.9" +#endif /* VERSION_linear */ +#ifndef MIN_VERSION_linear +#define MIN_VERSION_linear(major1,major2,minor) (\ + (major1) < 1 || \ + (major1) == 1 && (major2) < 20 || \ + (major1) == 1 && (major2) == 20 && (minor) <= 9) +#endif /* MIN_VERSION_linear */ + +/* package matrix-0.3.6.1 */ +#ifndef VERSION_matrix +#define VERSION_matrix "0.3.6.1" +#endif /* VERSION_matrix */ +#ifndef MIN_VERSION_matrix +#define MIN_VERSION_matrix(major1,major2,minor) (\ + (major1) < 0 || \ + (major1) == 0 && (major2) < 3 || \ + (major1) == 0 && (major2) == 3 && (minor) <= 6) +#endif /* MIN_VERSION_matrix */ + +/* package random-1.1 */ +#ifndef VERSION_random +#define VERSION_random "1.1" +#endif /* VERSION_random */ +#ifndef MIN_VERSION_random +#define MIN_VERSION_random(major1,major2,minor) (\ + (major1) < 1 || \ + (major1) == 1 && (major2) < 1 || \ + (major1) == 1 && (major2) == 1 && (minor) <= 0) +#endif /* MIN_VERSION_random */ + +/* package vector-0.12.0.3 */ +#ifndef VERSION_vector +#define VERSION_vector "0.12.0.3" +#endif /* VERSION_vector */ +#ifndef MIN_VERSION_vector +#define MIN_VERSION_vector(major1,major2,minor) (\ + (major1) < 0 || \ + (major1) == 0 && (major2) < 12 || \ + (major1) == 0 && (major2) == 12 && (minor) <= 0) +#endif /* MIN_VERSION_vector */ + +/* tool gcc-6.3.0 */ +#ifndef TOOL_VERSION_gcc +#define TOOL_VERSION_gcc "6.3.0" +#endif /* TOOL_VERSION_gcc */ +#ifndef MIN_TOOL_VERSION_gcc +#define MIN_TOOL_VERSION_gcc(major1,major2,minor) (\ + (major1) < 6 || \ + (major1) == 6 && (major2) < 3 || \ + (major1) == 6 && (major2) == 3 && (minor) <= 0) +#endif /* MIN_TOOL_VERSION_gcc */ + +/* tool ghc-8.6.5 */ +#ifndef TOOL_VERSION_ghc +#define TOOL_VERSION_ghc "8.6.5" +#endif /* TOOL_VERSION_ghc */ +#ifndef MIN_TOOL_VERSION_ghc +#define MIN_TOOL_VERSION_ghc(major1,major2,minor) (\ + (major1) < 8 || \ + (major1) == 8 && (major2) < 6 || \ + (major1) == 8 && (major2) == 6 && (minor) <= 5) +#endif /* MIN_TOOL_VERSION_ghc */ + +/* tool ghc-pkg-8.6.5 */ +#ifndef TOOL_VERSION_ghc_pkg +#define TOOL_VERSION_ghc_pkg "8.6.5" +#endif /* TOOL_VERSION_ghc_pkg */ +#ifndef MIN_TOOL_VERSION_ghc_pkg +#define MIN_TOOL_VERSION_ghc_pkg(major1,major2,minor) (\ + (major1) < 8 || \ + (major1) == 8 && (major2) < 6 || \ + (major1) == 8 && (major2) == 6 && (minor) <= 5) +#endif /* MIN_TOOL_VERSION_ghc_pkg */ + +/* tool haddock-2.22.0 */ +#ifndef TOOL_VERSION_haddock +#define TOOL_VERSION_haddock "2.22.0" +#endif /* TOOL_VERSION_haddock */ +#ifndef MIN_TOOL_VERSION_haddock +#define MIN_TOOL_VERSION_haddock(major1,major2,minor) (\ + (major1) < 2 || \ + (major1) == 2 && (major2) < 22 || \ + (major1) == 2 && (major2) == 22 && (minor) <= 0) +#endif /* MIN_TOOL_VERSION_haddock */ + +/* tool happy-1.19.9 */ +#ifndef TOOL_VERSION_happy +#define TOOL_VERSION_happy "1.19.9" +#endif /* TOOL_VERSION_happy */ +#ifndef MIN_TOOL_VERSION_happy +#define MIN_TOOL_VERSION_happy(major1,major2,minor) (\ + (major1) < 1 || \ + (major1) == 1 && (major2) < 19 || \ + (major1) == 1 && (major2) == 19 && (minor) <= 9) +#endif /* MIN_TOOL_VERSION_happy */ + +/* tool hpc-0.67 */ +#ifndef TOOL_VERSION_hpc +#define TOOL_VERSION_hpc "0.67" +#endif /* TOOL_VERSION_hpc */ +#ifndef MIN_TOOL_VERSION_hpc +#define MIN_TOOL_VERSION_hpc(major1,major2,minor) (\ + (major1) < 0 || \ + (major1) == 0 && (major2) < 67 || \ + (major1) == 0 && (major2) == 67 && (minor) <= 0) +#endif /* MIN_TOOL_VERSION_hpc */ + +/* tool hsc2hs-0.68.5 */ +#ifndef TOOL_VERSION_hsc2hs +#define TOOL_VERSION_hsc2hs "0.68.5" +#endif /* TOOL_VERSION_hsc2hs */ +#ifndef MIN_TOOL_VERSION_hsc2hs +#define MIN_TOOL_VERSION_hsc2hs(major1,major2,minor) (\ + (major1) < 0 || \ + (major1) == 0 && (major2) < 68 || \ + (major1) == 0 && (major2) == 68 && (minor) <= 5) +#endif /* MIN_TOOL_VERSION_hsc2hs */ + +/* tool pkg-config-0.29 */ +#ifndef TOOL_VERSION_pkg_config +#define TOOL_VERSION_pkg_config "0.29" +#endif /* TOOL_VERSION_pkg_config */ +#ifndef MIN_TOOL_VERSION_pkg_config +#define MIN_TOOL_VERSION_pkg_config(major1,major2,minor) (\ + (major1) < 0 || \ + (major1) == 0 && (major2) < 29 || \ + (major1) == 0 && (major2) == 29 && (minor) <= 0) +#endif /* MIN_TOOL_VERSION_pkg_config */ + +/* tool runghc-8.6.5 */ +#ifndef TOOL_VERSION_runghc +#define TOOL_VERSION_runghc "8.6.5" +#endif /* TOOL_VERSION_runghc */ +#ifndef MIN_TOOL_VERSION_runghc +#define MIN_TOOL_VERSION_runghc(major1,major2,minor) (\ + (major1) < 8 || \ + (major1) == 8 && (major2) < 6 || \ + (major1) == 8 && (major2) == 6 && (minor) <= 5) +#endif /* MIN_TOOL_VERSION_runghc */ + +/* tool strip-2.28 */ +#ifndef TOOL_VERSION_strip +#define TOOL_VERSION_strip "2.28" +#endif /* TOOL_VERSION_strip */ +#ifndef MIN_TOOL_VERSION_strip +#define MIN_TOOL_VERSION_strip(major1,major2,minor) (\ + (major1) < 2 || \ + (major1) == 2 && (major2) < 28 || \ + (major1) == 2 && (major2) == 28 && (minor) <= 0) +#endif /* MIN_TOOL_VERSION_strip */ + +#ifndef CURRENT_COMPONENT_ID +#define CURRENT_COMPONENT_ID "8queens-0.1.0.0-1f9e2RemoZD8IyN03WXtS0-8queens" +#endif /* CURRENT_COMPONENT_ID */ +#ifndef CURRENT_PACKAGE_VERSION +#define CURRENT_PACKAGE_VERSION "0.1.0.0" +#endif /* CURRENT_PACKAGE_VERSION */ -- cgit v1.2.3