diff options
author | 2022-08-21 23:10:54 +0200 | |
---|---|---|
committer | 2022-08-21 23:31:01 +0200 | |
commit | 6b5cb9c708bbfed9ce7d0489d1ec3ad127e6d5da (patch) | |
tree | 178d6673bcd655c11cc998c4da2d19b2f0c9a3da /www-apps/gitit/files | |
parent | sci-mathematics/rstudio: treeclean (diff) | |
download | gentoo-6b5cb9c708bbfed9ce7d0489d1ec3ad127e6d5da.tar.gz gentoo-6b5cb9c708bbfed9ce7d0489d1ec3ad127e6d5da.tar.bz2 gentoo-6b5cb9c708bbfed9ce7d0489d1ec3ad127e6d5da.zip |
www-apps/gitit: treeclean
Closes: https://bugs.gentoo.org/657552
Closes: https://bugs.gentoo.org/808651
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'www-apps/gitit/files')
-rw-r--r-- | www-apps/gitit/files/gitit-0.13.0.0-pandoc-2.12.patch | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/www-apps/gitit/files/gitit-0.13.0.0-pandoc-2.12.patch b/www-apps/gitit/files/gitit-0.13.0.0-pandoc-2.12.patch deleted file mode 100644 index abe73ed17c9e..000000000000 --- a/www-apps/gitit/files/gitit-0.13.0.0-pandoc-2.12.patch +++ /dev/null @@ -1,43 +0,0 @@ -diff --git a/src/Network/Gitit/Authentication.hs b/src/Network/Gitit/Authentication.hs -index 4c240e7..b41d87d 100644 ---- a/src/Network/Gitit/Authentication.hs -+++ b/src/Network/Gitit/Authentication.hs -@@ -44,8 +44,8 @@ import System.Exit - import System.Log.Logger (logM, Priority(..)) - import Data.Char (isAlphaNum, isAlpha) - import qualified Data.Map as M --import Text.Pandoc.Shared (substitute) - import Data.Maybe (isJust, fromJust, isNothing, fromMaybe) -+import Data.List (stripPrefix) - import Network.URL (exportURL, add_param, importURL) - import Network.BSD (getHostName) - import qualified Text.StringTemplate as T -@@ -54,6 +54,15 @@ import Codec.Binary.UTF8.String (encodeString) - import Data.ByteString.UTF8 (toString) - import Network.Gitit.Rpxnow as R - -+-- Taken from Pandoc-2.11.4, no longer exported since 2.12: -+substitute :: (Eq a) => [a] -> [a] -> [a] -> [a] -+substitute _ _ [] = [] -+substitute [] _ xs = xs -+substitute target replacement lst@(x:xs) = -+ case stripPrefix target lst of -+ Just lst' -> replacement ++ substitute target replacement lst' -+ Nothing -> x : substitute target replacement xs -+ - data ValidationType = Register - | ResetPassword - deriving (Show,Read) -diff --git a/src/Network/Gitit/Util.hs b/src/Network/Gitit/Util.hs -index c5e9fe5..9588b3a 100644 ---- a/src/Network/Gitit/Util.hs -+++ b/src/Network/Gitit/Util.hs -@@ -45,7 +45,7 @@ import Network.URL (encString) - - -- | Read file as UTF-8 string. Encode filename as UTF-8. - readFileUTF8 :: FilePath -> IO Text --readFileUTF8 = fmap T.pack . UTF8.readFile -+readFileUTF8 = UTF8.readFile - - -- | Perform a function a directory and return to working directory. - inDir :: FilePath -> IO a -> IO a |