Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-sandwich for openSUSE:Factory checked in at 2023-01-18 13:10:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-sandwich (Old) and /work/SRC/openSUSE:Factory/.ghc-sandwich.new.32243 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-sandwich" Wed Jan 18 13:10:26 2023 rev:2 rq:1059102 version:0.1.2.0 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-sandwich/ghc-sandwich.changes 2022-10-13 15:44:28.323010465 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-sandwich.new.32243/ghc-sandwich.changes 2023-01-18 13:10:49.824827942 +0100 @@ -1,0 +2,9 @@ +Thu Nov 17 03:05:30 UTC 2022 - Peter Simons <[email protected]> + +- Update sandwich to version 0.1.2.0. + ## 0.1.2.0 + + * Be able to control `sandwich-webdriver` download directory. + * Add flags to control `sandwich-webdriver` Selenium paths: `--selenium-jar`, `--chrome-binary`, `--chromedriver-binary`, `--firefox-binary`, `--geckodriver-binary`. + +------------------------------------------------------------------- Old: ---- sandwich-0.1.1.2.tar.gz New: ---- sandwich-0.1.2.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-sandwich.spec ++++++ --- /var/tmp/diff_new_pack.WIMFMp/_old 2023-01-18 13:10:51.180835980 +0100 +++ /var/tmp/diff_new_pack.WIMFMp/_new 2023-01-18 13:10:51.184836003 +0100 @@ -19,7 +19,7 @@ %global pkg_name sandwich %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.1.1.2 +Version: 0.1.2.0 Release: 0 Summary: Yet another test framework for Haskell License: BSD-3-Clause ++++++ sandwich-0.1.1.2.tar.gz -> sandwich-0.1.2.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sandwich-0.1.1.2/CHANGELOG.md new/sandwich-0.1.2.0/CHANGELOG.md --- old/sandwich-0.1.1.2/CHANGELOG.md 2022-10-03 03:53:30.000000000 +0200 +++ new/sandwich-0.1.2.0/CHANGELOG.md 2022-10-17 05:03:46.000000000 +0200 @@ -2,6 +2,11 @@ ## Unreleased changes +## 0.1.2.0 + +* Be able to control `sandwich-webdriver` download directory. +* Add flags to control `sandwich-webdriver` Selenium paths: `--selenium-jar`, `--chrome-binary`, `--chromedriver-binary`, `--firefox-binary`, `--geckodriver-binary`. + ## 0.1.1.2 * Improve semantics of multiple `--filter/-f` arguments. Now they get applied to the test tree sequentially. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sandwich-0.1.1.2/sandwich.cabal new/sandwich-0.1.2.0/sandwich.cabal --- old/sandwich-0.1.1.2/sandwich.cabal 2022-10-03 03:53:42.000000000 +0200 +++ new/sandwich-0.1.2.0/sandwich.cabal 2022-11-17 04:02:59.000000000 +0100 @@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: sandwich -version: 0.1.1.2 +version: 0.1.2.0 synopsis: Yet another test framework for Haskell description: Please see the <https://codedownio.github.io/sandwich documentation>. category: Testing @@ -96,7 +96,7 @@ aeson , ansi-terminal , async - , base <5 + , base >=4.11 && <5 , bytestring , colour , containers @@ -170,7 +170,7 @@ aeson , ansi-terminal , async - , base <5 + , base >=4.11 && <5 , bytestring , colour , containers @@ -228,7 +228,7 @@ aeson , ansi-terminal , async - , base <5 + , base >=4.11 && <5 , bytestring , colour , containers @@ -291,7 +291,7 @@ aeson , ansi-terminal , async - , base <5 + , base >=4.11 && <5 , bytestring , colour , containers @@ -355,7 +355,7 @@ aeson , ansi-terminal , async - , base <5 + , base >=4.11 && <5 , bytestring , colour , containers diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sandwich-0.1.1.2/src/Test/Sandwich/ArgParsing.hs new/sandwich-0.1.2.0/src/Test/Sandwich/ArgParsing.hs --- old/sandwich-0.1.1.2/src/Test/Sandwich/ArgParsing.hs 2022-09-29 08:35:56.000000000 +0200 +++ new/sandwich-0.1.2.0/src/Test/Sandwich/ArgParsing.hs 2022-10-06 05:35:48.000000000 +0200 @@ -134,6 +134,14 @@ <*> flag False True (long "individual-videos" <> help "Record individual videos of each test (requires ffmpeg and Xvfb)" <> maybeInternal) <*> flag False True (long "error-videos" <> help "Record videos of each test but delete them unless there was an exception" <> maybeInternal) + <*> optional (strOption (long "selenium-jar" <> help "" <> metavar "STRING" <> maybeInternal)) + + <*> optional (strOption (long "chrome-binary" <> help "" <> metavar "STRING" <> maybeInternal)) + <*> optional (strOption (long "chromedriver-binary" <> help "" <> metavar "STRING" <> maybeInternal)) + + <*> optional (strOption (long "firefox-binary" <> help "" <> metavar "STRING" <> maybeInternal)) + <*> optional (strOption (long "geckodriver-binary" <> help "" <> metavar "STRING" <> maybeInternal)) + browserToUse :: (forall f a. Mod f a) -> Parser BrowserToUse browserToUse maybeInternal = flag' UseFirefox (long "firefox" <> help "Use Firefox" <> maybeInternal) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sandwich-0.1.1.2/src/Test/Sandwich/Types/ArgParsing.hs new/sandwich-0.1.2.0/src/Test/Sandwich/Types/ArgParsing.hs --- old/sandwich-0.1.1.2/src/Test/Sandwich/Types/ArgParsing.hs 2022-09-29 08:35:56.000000000 +0200 +++ new/sandwich-0.1.2.0/src/Test/Sandwich/Types/ArgParsing.hs 2022-10-06 05:27:20.000000000 +0200 @@ -143,4 +143,12 @@ , optFluxbox :: Bool , optIndividualVideos :: Bool , optErrorVideos :: Bool + + , optSeleniumJar :: Maybe FilePath + + , optChromeBinary :: Maybe FilePath + , optChromeDriver :: Maybe FilePath + + , optFirefoxBinary :: Maybe FilePath + , optGeckoDriver :: Maybe FilePath } deriving Show
