packages feed

fbrnch-1.3.3: src/Cmd/Bump.hs

module Cmd.Bump
  ( bumpPkgs,
  )
where

import Branches
import Common
import Common.System
import Git
import Koji
import Package

import System.IO.Extra

-- FIXME --force
-- FIXME --target
bumpPkgs :: Bool -> Bool -> Maybe CommitOpt -> Maybe String
         -> (BranchesReq,[String]) -> IO ()
bumpPkgs dryrun local mopt mclog =
  withPackagesByBranches (boolHeader local) False
  (if local then cleanGit else cleanGitFetchActive)
  AnyNumber bumpPkg
  where
    bumpPkg :: Package -> AnyBranch -> IO ()
    bumpPkg pkg br = do
      dead <- doesFileExist "dead.package"
      if dead
        then putStrLn "dead package"
        else do
        spec <- localBranchSpecFile pkg br
        rbr <-
          case br of
            RelBranch rbr -> return rbr
            OtherBranch _ -> systemBranch
        newnvr <- pkgNameVerRel' rbr spec
        moldnvr <-
          if local
          then
            withTempFile $ \tempfile -> do
            git "show" ["origin:" ++ spec] >>= writeFile tempfile
            pkgNameVerRel rbr tempfile
          else
            case br of
              RelBranch rbr' ->
                let tag = branchDestTag rbr' in
                  kojiLatestNVR tag $ unPackage pkg
              -- FIXME fallback to local?
              _ -> return Nothing
        if equivNVR newnvr (fromMaybe "" moldnvr)
          then do
          git_ "log" ["origin..HEAD", "--pretty=oneline"]
          let clmsg =
                case mclog of
                  Just clog -> clog
                  Nothing ->
                    case mopt of
                      Just (CommitMsg msg) -> msg
                      _ -> "rebuild"
          autorelease <- isAutoRelease spec
          unless (autorelease || dryrun) $
            cmd_ "rpmdev-bumpspec" ["-c", clmsg, spec]
          let copts =
                case mopt of
                  Nothing -> ["-m", if autorelease then "rebuild" else "bump release"]
                  Just opt ->
                    case opt of
                      CommitMsg msg -> ["-m", msg]
                      -- FIXME reject amend if already pushed
                      CommitAmend -> ["--amend", "--no-edit"]
          -- FIXME quiet commit?
          if dryrun
            then putStrLn "would be bumped with commit"
            else git_ "commit" $ "-a" : (if autorelease then ("--allow-empty" :) else id) copts
          else putStrLn "already bumped"