osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-doclayout revision:6, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-doclayout?expand=0&rev=13
This commit is contained in:
parent
37631d0502
commit
7190007125
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:5361bb86ef97e4fbf351ef50089566f651dfcd6cd34e8e588ee154e2c072df38
|
|
||||||
size 11555
|
|
3
doclayout-0.3.tar.gz
Normal file
3
doclayout-0.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:87aad514e631f2ccc4a496f3fa74a2beda5f9ad53b660d1033cd338904e6b6f2
|
||||||
|
size 11968
|
@ -1,3 +1,30 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Aug 18 10:44:41 UTC 2020 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Replace %setup -q with the more modern %autosetup macro.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 16 11:14:03 UTC 2020 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Re-generate file with latest version of spec-cleaner.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 27 16:05:39 UTC 2020 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update doclayout to version 0.3.
|
||||||
|
## 0.3
|
||||||
|
|
||||||
|
* Add foldlChar to signature of HasChars [API change].
|
||||||
|
* Use foldlChar in realLength. This avoids a stack overflow
|
||||||
|
we were getting with long strings in the previous version
|
||||||
|
(with foldrChar). See jgm/pandoc#6031.
|
||||||
|
* Replace isBlank with isBreakable and improved startsWithBlank.
|
||||||
|
Previously isBlank was used in the layout algorithm where
|
||||||
|
what we really wanted was isBreakable.
|
||||||
|
* Avoid unnecessary calculation in updateColumns.
|
||||||
|
* Replace a right fold with a strict left fold.
|
||||||
|
* Add strictness annotations in realLength and updateColumn.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Dec 21 19:56:58 UTC 2019 - psimons@suse.com
|
Sat Dec 21 19:56:58 UTC 2019 - psimons@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ghc-doclayout
|
# spec file for package ghc-doclayout
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# 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,7 +19,7 @@
|
|||||||
%global pkg_name doclayout
|
%global pkg_name doclayout
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 0.2.0.1
|
Version: 0.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A prettyprinting library for laying out text documents
|
Summary: A prettyprinting library for laying out text documents
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -52,7 +52,7 @@ Requires(postun): ghc-compiler = %{ghc_version}
|
|||||||
This package provides the Haskell %{pkg_name} library development files.
|
This package provides the Haskell %{pkg_name} library development files.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{pkg_name}-%{version}
|
%autosetup -n %{pkg_name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%ghc_lib_build
|
%ghc_lib_build
|
||||||
|
Loading…
Reference in New Issue
Block a user