commit ghc-config-ini for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-config-ini for openSUSE:Factory checked in at 2023-06-30 19:58:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-config-ini (Old) and /work/SRC/openSUSE:Factory/.ghc-config-ini.new.13546 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "ghc-config-ini" Fri Jun 30 19:58:49 2023 rev:10 rq:1096036 version:0.2.6.0 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-config-ini/ghc-config-ini.changes 2023-04-20 15:15:18.298200158 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-config-ini.new.13546/ghc-config-ini.changes 2023-06-30 19:59:10.153749455 +0200 @@ -1,0 +2,7 @@ +Thu Jun 22 19:46:47 UTC 2023 - Peter Simons <psimons@suse.com> + +- Update config-ini to version 0.2.6.0. + Upstream has not updated the file "CHANGELOG.md" since the last + release. + +------------------------------------------------------------------- Old: ---- config-ini-0.2.5.0.tar.gz config-ini.cabal New: ---- config-ini-0.2.6.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-config-ini.spec ++++++ --- /var/tmp/diff_new_pack.VKeXt8/_old 2023-06-30 19:59:10.753753024 +0200 +++ /var/tmp/diff_new_pack.VKeXt8/_new 2023-06-30 19:59:10.757753048 +0200 @@ -20,13 +20,12 @@ %global pkgver %{pkg_name}-%{version} %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.2.5.0 +Version: 0.2.6.0 Release: 0 Summary: A library for simple INI-based configuration files License: BSD-3-Clause URL: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz -Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-base-devel BuildRequires: ghc-base-prof @@ -87,7 +86,6 @@ %prep %autosetup -n %{pkg_name}-%{version} -cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build ++++++ config-ini-0.2.5.0.tar.gz -> config-ini-0.2.6.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/config-ini-0.2.5.0/config-ini.cabal new/config-ini-0.2.6.0/config-ini.cabal --- old/config-ini-0.2.5.0/config-ini.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/config-ini-0.2.6.0/config-ini.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,5 +1,5 @@ name: config-ini -version: 0.2.5.0 +version: 0.2.6.0 synopsis: A library for simple INI-based configuration files. homepage: https://github.com/aisamanra/config-ini bug-reports: https://github.com/aisamanra/config-ini/issues @@ -22,10 +22,11 @@ category: Configuration build-type: Simple cabal-version: 1.18 -tested-with: GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.4, GHC == 9.4.2 -extra-source-files: +tested-with: GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.4, GHC == 9.4.2, GHC == 9.6.2 +extra-doc-files: README.md, - CHANGELOG.md, + CHANGELOG.md +extra-source-files: test/prewritten/cases/*.hs, test/prewritten/cases/*.ini @@ -49,7 +50,7 @@ , containers >=0.5 && <0.7 , text >=1.2.2 && <2.1 , unordered-containers >=0.2.7 && <0.3 - , transformers >=0.4.1 && <0.6 + , transformers >=0.4.1 && <0.7 , megaparsec >=7 && <10 default-language: Haskell2010 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/config-ini-0.2.5.0/src/Data/Ini/Config/Raw.hs new/config-ini-0.2.6.0/src/Data/Ini/Config/Raw.hs --- old/config-ini-0.2.5.0/src/Data/Ini/Config/Raw.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/config-ini-0.2.6.0/src/Data/Ini/Config/Raw.hs 2001-09-09 03:46:40.000000000 +0200 @@ -164,7 +164,7 @@ sComment :: Parser BlankLine sComment = do - c <- oneOf ";#" + c <- oneOf [';', '#'] txt <- T.pack `fmap` manyTill anySingle eol return (CommentLine c txt) @@ -176,7 +176,7 @@ pSection leading prevs = do start <- getCurrentLine void (char '[') - name <- T.pack `fmap` some (noneOf "[]") + name <- T.pack `fmap` some (noneOf ['[', ']']) void (char ']') void eol comments <- sBlanks @@ -211,8 +211,8 @@ pPair :: Seq BlankLine -> Parser (NormalizedText, IniValue) pPair leading = do pos <- getCurrentLine - key <- T.pack `fmap` some (noneOf "[]=:") - delim <- oneOf ":=" + key <- T.pack `fmap` some (noneOf ['[', ']', '=', ':']) + delim <- oneOf [':', '='] val <- T.pack `fmap` manyTill anySingle eol return ( normalize key, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/config-ini-0.2.5.0/test/ini-compat/Main.hs new/config-ini-0.2.6.0/test/ini-compat/Main.hs --- old/config-ini-0.2.5.0/test/ini-compat/Main.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/config-ini-0.2.6.0/test/ini-compat/Main.hs 2001-09-09 03:46:40.000000000 +0200 @@ -82,7 +82,7 @@ Gen.list (Range.linear 0 5) $ Gen.choice [ return I2.BlankLine, - I2.CommentLine <$> Gen.element ";#" <*> textChunk + I2.CommentLine <$> Gen.element (";#" :: String) <*> textChunk ] mkRichIni :: Gen I2.RawIni
participants (1)
-
Source-Sync