diff options
author | Joey Hess <joey@kitenet.net> | 2011-07-02 14:53:55 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-07-02 14:58:01 -0400 |
commit | 648827861024783ef6fa9c03e8ca5210c68fc7cb (patch) | |
tree | d608e5bed336aa567da6af9e339af94f29f131b0 | |
parent | 80459918307730f9abc9c6b681d4888758b6d522 (diff) |
cabal sdist: plan C
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | configure.hs | 14 | ||||
-rw-r--r-- | git-annex.cabal | 1 | ||||
-rw-r--r-- | testdata/unicode-test-ö | 1 |
4 files changed, 9 insertions, 15 deletions
@@ -87,4 +87,12 @@ clean: rm -rf doc/.ikiwiki html dist find . \( -name \*.o -or -name \*.hi \) -exec rm {} \; +# Workaround for cabal sdist not running Setup hooks, so I cannot +# generate a file list there. +sdist: clean + @if [ ! -e git-annex.cabal.orig ]; then cp git-annex.cabal git-annex.cabal.orig; fi + @sed -e "s!\(Extra-Source-Files: \).*!\1$(shell find . -name .git -prune -or -not -name \\*.orig -type f -print)!i" < git-annex.cabal.orig > git-annex.cabal + @cabal sdist + @mv git-annex.cabal.orig git-annex.cabal + .PHONY: $(bins) test install diff --git a/configure.hs b/configure.hs index d47dddf1d..8639af44b 100644 --- a/configure.hs +++ b/configure.hs @@ -17,7 +17,6 @@ tests = , TestCase "curl" $ testCmd "curl" "curl --version >/dev/null" , TestCase "bup" $ testCmd "bup" "bup --version >/dev/null" , TestCase "gpg" $ testCmd "gpg" "gpg --version >/dev/null" - , TestCase "unicode FilePath support" $ unicodeFilePath ] ++ shaTestCases [1, 256, 512, 224, 384] shaTestCases :: [Int] -> [TestCase] @@ -40,19 +39,6 @@ testCp k option = TestCase cmd $ testCmd k run cmd = "cp " ++ option run = cmd ++ " " ++ testFile ++ " " ++ testFile ++ ".new" -{- Checks if FilePaths contain decoded unicode, or not. The testdata - - directory contains a "unicode-test-ü" file; try to find the file, - - and see if the "ü" is encoded correctly. - - - - Note that the file is shipped with git-annex, rather than created, - - to avoid other potential unicode issues. - -} -unicodeFilePath :: Test -unicodeFilePath = do - fs <- getDirectoryContents "testdata" - let file = head $ filter (isInfixOf "unicode-test") fs - return $ Config "unicodefilepath" (BoolConfig $ isInfixOf "ü" file) - {- Pulls package version out of the changelog. -} getVersion :: Test getVersion = do diff --git a/git-annex.cabal b/git-annex.cabal index fab2c71b9..59220f47b 100644 --- a/git-annex.cabal +++ b/git-annex.cabal @@ -7,6 +7,7 @@ Author: Joey Hess Stability: Stable Copyright: 2010-2011 Joey Hess License-File: GPL +Extra-Source-Files: use-make-sdist-instead Homepage: http://git-annex.branchable.com/ Build-type: Custom Category: Utility diff --git a/testdata/unicode-test-ö b/testdata/unicode-test-ö deleted file mode 100644 index 45b983be3..000000000 --- a/testdata/unicode-test-ö +++ /dev/null @@ -1 +0,0 @@ -hi |