2013-05-15 00:59:14 +00:00
|
|
|
{- Bundled programs
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2013 Joey Hess <id@joeyh.name>
|
2013-05-15 00:59:14 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2013-05-15 00:59:14 +00:00
|
|
|
-}
|
|
|
|
|
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
|
|
|
module Build.BundledPrograms where
|
|
|
|
|
|
|
|
import Data.Maybe
|
|
|
|
|
2017-12-14 16:46:57 +00:00
|
|
|
import BuildInfo
|
2013-05-15 00:59:14 +00:00
|
|
|
|
|
|
|
{- Programs that git-annex uses, to include in the bundle.
|
|
|
|
-
|
|
|
|
- These may be just the command name, or the full path to it. -}
|
|
|
|
bundledPrograms :: [FilePath]
|
2016-02-19 20:19:19 +00:00
|
|
|
bundledPrograms = preferredBundledPrograms ++ extraBundledPrograms
|
|
|
|
|
|
|
|
{- Programs that are only included in the bundle in case the system
|
|
|
|
- doesn't have them. These come after the system PATH.
|
|
|
|
-}
|
|
|
|
extraBundledPrograms :: [FilePath]
|
|
|
|
extraBundledPrograms = catMaybes
|
2019-03-18 20:38:22 +00:00
|
|
|
[ Nothing
|
2017-03-02 21:40:40 +00:00
|
|
|
#ifndef darwin_HOST_OS
|
|
|
|
#ifndef mingw32_HOST_OS
|
|
|
|
-- OS X has ssh installed by default.
|
|
|
|
-- On Windows, git provides ssh.
|
|
|
|
-- Linux probably has ssh installed system wide,
|
|
|
|
-- and if so the user probably wants to use that one.
|
|
|
|
, Just "ssh"
|
|
|
|
, Just "ssh-keygen"
|
|
|
|
#endif
|
2016-02-23 16:30:11 +00:00
|
|
|
#endif
|
2016-02-23 16:48:18 +00:00
|
|
|
]
|
2016-02-19 20:19:19 +00:00
|
|
|
|
|
|
|
{- Programs that should be preferred for use from the bundle, over
|
|
|
|
- any that might be installed on the system otherwise. These come before
|
|
|
|
- the system PATH.
|
|
|
|
-
|
|
|
|
- For example, git-annex is built for a specific version of git.
|
|
|
|
-}
|
|
|
|
preferredBundledPrograms :: [FilePath]
|
|
|
|
preferredBundledPrograms = catMaybes
|
2013-05-15 00:59:14 +00:00
|
|
|
[ Nothing
|
|
|
|
#ifndef mingw32_HOST_OS
|
2015-09-10 22:43:31 +00:00
|
|
|
-- git is not included in the windows bundle; git for windows is used
|
2013-05-15 00:59:14 +00:00
|
|
|
, Just "git"
|
2013-12-24 20:28:10 +00:00
|
|
|
-- Not strictly needed in PATH by git-annex, but called
|
|
|
|
-- by git when it sshes to a remote.
|
|
|
|
, Just "git-upload-pack"
|
|
|
|
, Just "git-receive-pack"
|
2013-12-27 20:35:24 +00:00
|
|
|
, Just "git-shell"
|
2013-10-17 19:56:56 +00:00
|
|
|
-- using xargs on windows led to problems, so it's not used there
|
2013-05-15 00:59:14 +00:00
|
|
|
, Just "xargs"
|
2019-07-22 13:37:42 +00:00
|
|
|
-- rsync is not a core dependency, but good to have.
|
|
|
|
-- On windows, bundling rsync required the build be used with a
|
|
|
|
-- particular version of git for windows, so not included there.
|
2013-05-15 00:59:14 +00:00
|
|
|
, Just "rsync"
|
|
|
|
, Just "sh"
|
2018-06-16 14:02:05 +00:00
|
|
|
-- used by git-annex when available
|
|
|
|
, Just "uname"
|
2014-04-10 16:54:58 +00:00
|
|
|
#endif
|
2017-12-14 16:46:57 +00:00
|
|
|
, BuildInfo.lsof
|
|
|
|
, BuildInfo.gcrypt
|
2015-09-10 22:43:31 +00:00
|
|
|
#ifndef mingw32_HOST_OS
|
2018-08-28 22:01:13 +00:00
|
|
|
-- These utilities are included in git for Windows
|
2017-12-14 16:46:57 +00:00
|
|
|
, ifset BuildInfo.curl "curl"
|
2015-09-10 22:43:31 +00:00
|
|
|
, Just "cp"
|
|
|
|
#endif
|
2013-11-24 04:26:20 +00:00
|
|
|
#ifdef linux_HOST_OS
|
|
|
|
-- used to unpack the tarball when upgrading
|
|
|
|
, Just "gunzip"
|
|
|
|
, Just "tar"
|
2016-10-04 20:37:43 +00:00
|
|
|
-- used by runshell to generate locales
|
|
|
|
, Just "localedef"
|
2013-11-24 04:26:20 +00:00
|
|
|
#endif
|
2013-12-01 18:53:15 +00:00
|
|
|
-- nice, ionice, and nocache are not included in the bundle;
|
|
|
|
-- we rely on the system's own version, which may better match
|
|
|
|
-- its kernel, and avoid using them if not available.
|
2013-05-15 00:59:14 +00:00
|
|
|
]
|
|
|
|
where
|
2019-09-12 18:11:19 +00:00
|
|
|
#ifndef mingw32_HOST_OS
|
2013-05-15 00:59:14 +00:00
|
|
|
ifset True s = Just s
|
|
|
|
ifset False _ = Nothing
|
2019-09-12 18:11:19 +00:00
|
|
|
#endif
|
2020-10-26 17:24:37 +00:00
|
|
|
|
|
|
|
magicDLLs :: [FilePath]
|
|
|
|
#ifdef mingw32_HOST_OS
|
|
|
|
magicDLLs = ["libmagic-1.dll", "libgnurx-0.dll"]
|
|
|
|
#else
|
|
|
|
magicDLLs = []
|
|
|
|
#endif
|
|
|
|
|
|
|
|
magicShare :: [FilePath]
|
|
|
|
#ifdef mingw32_HOST_OS
|
|
|
|
magicShare = ["magic.mgc"]
|
|
|
|
#else
|
|
|
|
magicShare = []
|
|
|
|
#endif
|