-- | -- Module : Commands.Diff -- Copyright : (C) 2014,2017 Jens Petersen -- -- Maintainer : Jens Petersen -- Stability : alpha -- Portability : portable -- -- Explanation: diff current spec file with cabal-rpm spec output -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation, either version 3 of the License, or -- (at your option) any later version. module Commands.Diff ( diff ) where import Commands.Spec (createSpecFile) import FileUtils (mktempdir, withCurrentDirectory) import Options (RpmFlags (..)) import PackageUtils (PackageData (..), prepare) import SysCmd ((+-+), shell) import Data.Maybe (isNothing) import Distribution.Simple.Utils (die) import System.Directory (removeDirectoryRecursive) import System.Posix.Env (getEnvDefault) diff :: PackageData -> RpmFlags -> Maybe String -> IO () diff pkgdata flags mpkg = case specFilename pkgdata of Nothing -> die "No (unique) .spec file in directory." Just spec -> do tmpdir <- mktempdir pd <- if isNothing mpkg then return pkgdata else withCurrentDirectory tmpdir $ prepare flags mpkg speccblrpm <- createSpecFile pd flags (Just tmpdir) diffcmd <- getEnvDefault "CBLRPM_DIFF" "diff -u" shell $ diffcmd +-+ spec +-+ speccblrpm +-+ "| sed -e s%" ++ speccblrpm ++ "%" ++ spec ++ ".cblrpm" ++ "%" removeDirectoryRecursive tmpdir