Remove the installed command
All checks were successful
Build / audit (push) Successful in 8s
Build / test (push) Successful in 10m37s
Build / release (push) Successful in 10m8s

Since it is out of scope for this project.
This commit is contained in:
Eugen Wissner 2025-03-14 00:35:53 +01:00
parent 8908b8ae93
commit 731a36d700
Signed by: belka
GPG Key ID: A27FDC1E8EE902C0
2 changed files with 0 additions and 37 deletions

View File

@ -17,7 +17,6 @@ import SlackBuilder.LatestVersionCheck
import SlackBuilder.Update
import qualified Toml
import Data.Text (Text)
import qualified Data.Text as Text
import qualified Data.Text.IO as Text
import Control.Monad.Trans.Reader (ReaderT(..), asks)
import SlackBuilder.Package (PackageDescription(..), renderTextWithVersion)
@ -33,10 +32,6 @@ import System.Console.ANSI
)
import Data.Maybe (mapMaybe)
import qualified Text.URI as URI
import System.Directory (listDirectory)
import qualified Data.HashMap.Strict as HashMap
import SlackBuilder.Info (PackageInfo(..), readInfoFile)
import Control.Monad (unless)
autoUpdatable :: [PackageSettings] -> [PackageDescription]
autoUpdatable = mapMaybe go
@ -102,32 +97,6 @@ check = SlackBuilderT (asks (getField @"packages"))
>>= mapM_ checkUpdateAvailability
>> liftIO (putStrLn "")
installed :: SlackBuilderT ()
installed = do
listing <- listRepository
database <- foldr createDataBase HashMap.empty . mapMaybe createEntry
<$> liftIO (listDirectory "/var/lib/pkgtools/packages")
traverse_ findInfo $ HashMap.intersectionWith (,) database listing
where
findInfo (installed'@Package.DataBaseEntry{ name, version }, fromRepository) = do
packageInfo <- readInfoFile fromRepository name
unless (version == getField @"version" packageInfo) $ liftIO $ putStrLn $
show installed' <> " (available: " <> Text.unpack (getField @"version" packageInfo) <> ")"
createDataBase entry@Package.DataBaseEntry{ name } =
HashMap.insert name entry
createEntry filename = createEntryFromChunks
$ Text.split (== '-')
$ Text.reverse
$ Text.pack filename
createEntryFromChunks (build : arch : version : name) = Just
Package.DataBaseEntry
{ arch = Text.reverse arch
, build = Text.reverse build
, version = Text.reverse version
, name = Text.reverse (Text.intercalate "-" name)
}
createEntryFromChunks _ = Nothing
main :: IO ()
main = execParser slackBuilderParser
>>= handleExceptions . withCommandLine
@ -147,4 +116,3 @@ main = execParser slackBuilderParser
executeCommand = \case
CheckCommand -> check
Up2DateCommand packageName -> up2Date packageName
InstalledCommand -> installed

View File

@ -26,7 +26,6 @@ import Options.Applicative
data SlackBuilderCommand
= CheckCommand
| Up2DateCommand (Maybe Text)
| InstalledCommand
slackBuilderParser :: ParserInfo SlackBuilderCommand
slackBuilderParser = info (helper <*> slackBuilderCommand) fullDesc
@ -35,7 +34,6 @@ slackBuilderCommand :: Parser SlackBuilderCommand
slackBuilderCommand = subparser
$ command "check" checkCommand
<> command "up2date" up2DateCommand
<> command "installed" installedCommand
where
checkCommand = info checkP $ progDesc "Check all configured slackbuilds for updates"
checkP = pure CheckCommand
@ -43,6 +41,3 @@ slackBuilderCommand = subparser
<$> optional (argument str (metavar "PKGNAM"))
up2DateCommand = info up2DateP
$ progDesc "Update a single or multiple slackbuild in the configured repository"
installedCommand = info installedP
$ progDesc "Find local packages that can be updated using the configured repository"
installedP = pure InstalledCommand