Hello community, here is the log from the commit of package stack for openSUSE:Factory checked in at 2019-07-29 17:27:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/stack (Old) and /work/SRC/openSUSE:Factory/.stack.new.4126 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "stack" Mon Jul 29 17:27:16 2019 rev:22 rq:715424 version:2.1.3 Changes: -------- --- /work/SRC/openSUSE:Factory/stack/stack.changes 2019-06-19 21:13:30.422807903 +0200 +++ /work/SRC/openSUSE:Factory/.stack.new.4126/stack.changes 2019-07-29 17:27:26.506278881 +0200 @@ -1,0 +2,60 @@ +Sun Jul 14 02:01:50 UTC 2019 - [email protected] + +- Update stack to version 2.1.3. + + Behavior changes: + + * Disable WAL mode for SQLite3 databases, to improve compatibility with + some platforms and filesystems. See + [#4876](https://github.com/commercialhaskell/stack/issues/4876). + + * By default, do not perform expiry checks in Hackage Security. See + [#4928](https://github.com/commercialhaskell/stack/issues/4928). + + Other enhancements: + + * Do not rerun expected test failures. This is mostly a change that + will only affect the Stackage Curator use case, but there is now an + additional message letting the user know when a previously-failed + test case is being rerun. + + * Move configure information for local packages back to .stack-work to + improve caching. See + [#4893](https://github.com/commercialhaskell/stack/issues/4893). + + Bug fixes: + + * Fix to allow dependencies on specific versions of local git repositories. See + [#4862](https://github.com/commercialhaskell/stack/pull/4862) + + * Allow Stack commands to be run in Nix mode without having a project file + available. See + [#4854](https://github.com/commercialhaskell/stack/issues/4864). + + * Removes dependency on gnu-tar for OSX and Linux environment. The + `--force-local` option was required only for windows environment. + + * Properly wait for the `tar` subprocess to complete before returning, thereby + avoiding a SIGTERM screwing up GHC installation. See + [#4888](https://github.com/commercialhaskell/stack/issues/4888). + + * Use package complete locations from lock files when resolving dependencies + in `extra-deps`. See + [#4887](https://github.com/commercialhaskell/stack/issues/4887). + + * Set the `HASKELL_DIST_DIR` environment to a proper package dist + directory so `doctest` is able to load modules autogenerated by Cabal. + + * Expose package library when running tests. + + * Fix support for non-ASCII module names. See + [4938](https://github.com/commercialhaskell/stack/issues/4938) + + Other changes: + + * Rename `pantry-tmp` package back to `pantry`, now that we have gained + maintainership (which had been used by someone else for a candidate-only test + that made it look like the name was free but prevented uploading a real + package). + +------------------------------------------------------------------- Old: ---- stack-2.1.1.1.tar.gz stack.cabal New: ---- stack-2.1.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ stack.spec ++++++ --- /var/tmp/diff_new_pack.5b2jAT/_old 2019-07-29 17:27:28.034278315 +0200 +++ /var/tmp/diff_new_pack.5b2jAT/_new 2019-07-29 17:27:28.038278314 +0200 @@ -19,14 +19,13 @@ %global pkg_name stack %bcond_with tests Name: %{pkg_name} -Version: 2.1.1.1 +Version: 2.1.3 Release: 0 Summary: The Haskell Tool Stack License: BSD-3-Clause Group: Development/Libraries/Haskell URL: https://hackage.haskell.org/package/%{name} Source0: https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz -Source1: https://hackage.haskell.org/package/%{name}-%{version}/revision/1.cabal#/%{name}.cabal Patch01: enable-undecidable-instances-extension.patch BuildRequires: chrpath BuildRequires: ghc-Cabal-devel @@ -74,7 +73,7 @@ BuildRequires: ghc-network-uri-devel BuildRequires: ghc-open-browser-devel BuildRequires: ghc-optparse-applicative-devel -BuildRequires: ghc-pantry-tmp-devel +BuildRequires: ghc-pantry-devel BuildRequires: ghc-path-devel BuildRequires: ghc-path-io-devel BuildRequires: ghc-persistent-devel @@ -162,7 +161,6 @@ %prep %setup -q %patch01 -p1 -cp -p %{SOURCE1} %{name}.cabal-broken %build %define cabal_configure_options -fdisable-git-info -fhide-dependency-versions -fsupported-build ++++++ enable-undecidable-instances-extension.patch ++++++ --- /var/tmp/diff_new_pack.5b2jAT/_old 2019-07-29 17:27:28.058278306 +0200 +++ /var/tmp/diff_new_pack.5b2jAT/_new 2019-07-29 17:27:28.058278306 +0200 @@ -1,7 +1,16 @@ -Index: stack-2.1.1.1/src/Stack/Storage.hs +Index: stack-2.1.3/src/Stack/Storage/User.hs =================================================================== ---- stack-2.1.1.1.orig/src/Stack/Storage.hs 2019-06-18 17:43:10.714699851 +0000 -+++ stack-2.1.1.1/src/Stack/Storage.hs 2019-06-18 17:43:23.411761299 +0000 +--- stack-2.1.3.orig/src/Stack/Storage/User.hs 2019-07-11 16:55:25.000000000 +0000 ++++ stack-2.1.3/src/Stack/Storage/User.hs 2019-07-14 19:52:04.771135933 +0000 +@@ -1,3 +1,4 @@ ++{-# LANGUAGE UndecidableInstances #-} + {-# LANGUAGE FlexibleInstances #-} + {-# LANGUAGE GADTs #-} + {-# LANGUAGE GeneralizedNewtypeDeriving #-} +Index: stack-2.1.3/src/Stack/Storage/Project.hs +=================================================================== +--- stack-2.1.3.orig/src/Stack/Storage/Project.hs 2019-07-11 16:55:25.000000000 +0000 ++++ stack-2.1.3/src/Stack/Storage/Project.hs 2019-07-14 19:53:10.803419216 +0000 @@ -1,3 +1,4 @@ +{-# LANGUAGE UndecidableInstances #-} {-# LANGUAGE FlexibleInstances #-} ++++++ stack-2.1.1.1.tar.gz -> stack-2.1.3.tar.gz ++++++ ++++ 3364 lines of diff (skipped)
