forked from pool/ghc-citeproc
osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-citeproc revision:10, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-citeproc?expand=0&rev=9
This commit is contained in:
parent
fe5ce4426d
commit
38aa1e9231
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:26aef254629e08e5fb7c01714d2f21b8af1cb77a702256bc8c4e35f67d7a2bca
|
|
||||||
size 566812
|
|
3
citeproc-0.3.tar.gz
Normal file
3
citeproc-0.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:69b79d65b8e963fe73279eeeb5f2a8699eecbc35519e69362f48628d99019378
|
||||||
|
size 567313
|
@ -1,3 +1,33 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||||
|
|
||||||
|
- force i686 arch on i586
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Dec 17 10:46:37 UTC 2020 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update citeproc to version 0.3.
|
||||||
|
## 0.3
|
||||||
|
|
||||||
|
* Change `makeReferenceMap` to return a cleaned-up list of
|
||||||
|
references as well as a reference map. The cleanup-up list
|
||||||
|
removes references with duplicate ids. When there are multiple
|
||||||
|
references with the same id, the last one is included and
|
||||||
|
the others discarded. [API change]
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 9 11:28:30 UTC 2020 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update citeproc to version 0.2.0.1.
|
||||||
|
## 0.2.0.1
|
||||||
|
|
||||||
|
* FromJSON for Name: make straight quotes curly.
|
||||||
|
Otherwise nothing will do this, when we are decoding
|
||||||
|
JSON to (Reference a), a /= CslJson Text.
|
||||||
|
* Remove redundant pragmas and imports (Albert Krewinkel).
|
||||||
|
* Use custom prelude with GHC 8.6.* and older (Albert
|
||||||
|
Krewinkel). This adds support for GHC 8.0.x.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 19 19:50:28 UTC 2020 - psimons@suse.com
|
Thu Nov 19 19:50:28 UTC 2020 - psimons@suse.com
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
%global pkg_name citeproc
|
%global pkg_name citeproc
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 0.2
|
Version: 0.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Generates citations and bibliography from CSL styles
|
Summary: Generates citations and bibliography from CSL styles
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
@ -44,6 +44,12 @@ BuildRequires: ghc-transformers-devel
|
|||||||
BuildRequires: ghc-uniplate-devel
|
BuildRequires: ghc-uniplate-devel
|
||||||
BuildRequires: ghc-vector-devel
|
BuildRequires: ghc-vector-devel
|
||||||
BuildRequires: ghc-xml-conduit-devel
|
BuildRequires: ghc-xml-conduit-devel
|
||||||
|
# GHC dont support i586
|
||||||
|
%ifarch %{ix86}
|
||||||
|
ExclusiveArch: i586 i686
|
||||||
|
ExclusiveArch: i686
|
||||||
|
%{expand:%%global optflags %(echo "%{optflags}"|sed -e s/i586/i686/) -march=i686 -mtune=generic}
|
||||||
|
%endif
|
||||||
%if %{with tests}
|
%if %{with tests}
|
||||||
BuildRequires: ghc-Diff-devel
|
BuildRequires: ghc-Diff-devel
|
||||||
BuildRequires: ghc-directory-devel
|
BuildRequires: ghc-directory-devel
|
||||||
|
Loading…
Reference in New Issue
Block a user