osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-pretty-simple revision:17, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-pretty-simple?expand=0&rev=12
This commit is contained in:
parent
b3eee73295
commit
27db55e10b
@ -1,46 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Sat Oct 15 22:17:49 UTC 2022 - Peter Simons <psimons@suse.com>
|
|
||||||
|
|
||||||
- Update pretty-simple to version 4.1.2.0.
|
|
||||||
## 4.1.2.0
|
|
||||||
|
|
||||||
* Fix a problem with the `pHPrint` function incorrectly
|
|
||||||
outputting a trailing newline to stdout, instead of the
|
|
||||||
handle you pass it.
|
|
||||||
[#118](https://github.com/cdepillabout/pretty-simple/pull/118)
|
|
||||||
* Add a [web app](https://cdepillabout.github.io/pretty-simple/) where you
|
|
||||||
can play around with `pretty-simple` in your browser.
|
|
||||||
[#116](https://github.com/cdepillabout/pretty-simple/pull/116).
|
|
||||||
This took a lot of hard work by [@georgefst](https://github.com/georgefst)!
|
|
||||||
|
|
||||||
## 4.1.1.0
|
|
||||||
|
|
||||||
* Make the pretty-printed output with `outputOptionsCompact` enabled a little
|
|
||||||
more compact.
|
|
||||||
[#110](https://github.com/cdepillabout/pretty-simple/pull/110).
|
|
||||||
Thanks [@juhp](https://github.com/juhp)!
|
|
||||||
* Add a `--compact` / `-C` flag to the `pretty-simple` executable that enables
|
|
||||||
`outputOptionsCompact`.
|
|
||||||
[#111](https://github.com/cdepillabout/pretty-simple/pull/111).
|
|
||||||
Thanks again @juhp!
|
|
||||||
* Add `pTraceWith` and `pTraceShowWith` to `Debug.Pretty.Simple`.
|
|
||||||
[#104](https://github.com/cdepillabout/pretty-simple/pull/104).
|
|
||||||
Thanks [@LeviButcher](https://github.com/LeviButcher)!
|
|
||||||
|
|
||||||
## 4.1.0.0
|
|
||||||
|
|
||||||
* Fix a regression which arose in 4.0, whereby excess spaces would be inserted for unusual strings like dates and IP addresses.
|
|
||||||
[#105](https://github.com/cdepillabout/pretty-simple/pull/105)
|
|
||||||
* Attach warnings to debugging functions, so that they're easy to find and remove.
|
|
||||||
[#103](https://github.com/cdepillabout/pretty-simple/pull/103)
|
|
||||||
* Some minor improvements to the CLI tool:
|
|
||||||
* Add a `--version`/`-v` flag.
|
|
||||||
[#83](https://github.com/cdepillabout/pretty-simple/pull/83)
|
|
||||||
* Add a trailing newline.
|
|
||||||
[#87](https://github.com/cdepillabout/pretty-simple/pull/87)
|
|
||||||
* Install by default, without requiring a flag.
|
|
||||||
[#94](https://github.com/cdepillabout/pretty-simple/pull/94)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ghc-pretty-simple
|
# spec file for package ghc-pretty-simple
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,18 +19,16 @@
|
|||||||
%global pkg_name pretty-simple
|
%global pkg_name pretty-simple
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 4.1.2.0
|
Version: 4.0.0.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Pretty printer for data types with a 'Show' instance
|
Summary: Pretty printer for data types with a 'Show' instance
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
URL: https://hackage.haskell.org/package/%{pkg_name}
|
URL: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
||||||
BuildRequires: chrpath
|
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-cabal-doctest-devel
|
BuildRequires: ghc-cabal-doctest-devel
|
||||||
BuildRequires: ghc-containers-devel
|
BuildRequires: ghc-containers-devel
|
||||||
BuildRequires: ghc-mtl-devel
|
BuildRequires: ghc-mtl-devel
|
||||||
BuildRequires: ghc-optparse-applicative-devel
|
|
||||||
BuildRequires: ghc-prettyprinter-ansi-terminal-devel
|
BuildRequires: ghc-prettyprinter-ansi-terminal-devel
|
||||||
BuildRequires: ghc-prettyprinter-devel
|
BuildRequires: ghc-prettyprinter-devel
|
||||||
BuildRequires: ghc-rpm-macros
|
BuildRequires: ghc-rpm-macros
|
||||||
@ -65,7 +63,6 @@ This package provides the Haskell %{pkg_name} library development files.
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%ghc_lib_install
|
%ghc_lib_install
|
||||||
%ghc_fix_rpath %{pkg_name}-%{version}
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%cabal_test
|
%cabal_test
|
||||||
@ -78,7 +75,6 @@ This package provides the Haskell %{pkg_name} library development files.
|
|||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{_bindir}/%{pkg_name}
|
|
||||||
|
|
||||||
%files devel -f %{name}-devel.files
|
%files devel -f %{name}-devel.files
|
||||||
%doc CHANGELOG.md README.md
|
%doc CHANGELOG.md README.md
|
||||||
|
3
pretty-simple-4.0.0.0.tar.gz
Normal file
3
pretty-simple-4.0.0.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:dc5743f6e32d0e0570fe2ea303a6965ea3d945a84ee43ead734fd04a0aea3beb
|
||||||
|
size 39887
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3cb47c3971599cb8c0330e1a2dbd63c67bfbe570bd879524ee802e81e7b02736
|
|
||||||
size 40519
|
|
Loading…
Reference in New Issue
Block a user