summaryrefslogtreecommitdiff
path: root/dev-vcs/git-annex/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-07-31 09:12:05 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-07-31 09:12:05 +0100
commit100ce16c6fb75a4911f388aa77f860324607c869 (patch)
treede54fe6a6fd7ceb7a41fdf2b03b666c479794055 /dev-vcs/git-annex/files
parent6262f7e48882f381dea4a0751717f65e6abd212f (diff)
gentoo auto-resync : 31:07:2022 - 09:12:04
Diffstat (limited to 'dev-vcs/git-annex/files')
-rw-r--r--dev-vcs/git-annex/files/git-annex-8.20210330-persistent-2.12.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/dev-vcs/git-annex/files/git-annex-8.20210330-persistent-2.12.patch b/dev-vcs/git-annex/files/git-annex-8.20210330-persistent-2.12.patch
deleted file mode 100644
index 977e5931f5f4..000000000000
--- a/dev-vcs/git-annex/files/git-annex-8.20210330-persistent-2.12.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- a/Database/Handle.hs
-+++ b/Database/Handle.hs
-@@ -26,7 +26,7 @@ import qualified Database.Sqlite as Sqlite
- import Control.Monad
- import Control.Monad.IO.Class (liftIO)
- import Control.Monad.IO.Unlift (MonadUnliftIO, withRunInIO)
--import Control.Monad.Logger (MonadLogger)
-+import Control.Monad.Logger (MonadLogger, askLoggerIO, MonadLoggerIO)
- import Control.Concurrent
- import Control.Concurrent.Async
- import Control.Exception (throwIO, BlockedIndefinitelyOnMVar(..))
-@@ -246,6 +246,7 @@ runSqliteRobustly tablename db a = do
- withSqlConnRobustly
- :: (MonadUnliftIO m
- , MonadLogger m
-+ , MonadLoggerIO m
- , IsPersistBackend backend
- , BaseBackend backend ~ SqlBackend
- , BackendCompatible SqlBackend backend
-@@ -254,7 +255,7 @@ withSqlConnRobustly
- -> (backend -> m a)
- -> m a
- withSqlConnRobustly open f = do
-- logFunc <- askLogFunc
-+ logFunc <- askLoggerIO
- withRunInIO $ \run -> bracket
- (open logFunc)
- closeRobustly