commit
d7d7ed80a0
@ -0,0 +1 @@
|
|||||||
|
c1a2440523f1846976f56fb58c8fd680d21864d0 SOURCES/aeson-pretty-0.8.9.tar.gz
|
@ -0,0 +1 @@
|
|||||||
|
SOURCES/aeson-pretty-0.8.9.tar.gz
|
@ -0,0 +1,83 @@
|
|||||||
|
cabal-version: 2.0
|
||||||
|
name: aeson-pretty
|
||||||
|
version: 0.8.9
|
||||||
|
x-revision: 1
|
||||||
|
license: BSD3
|
||||||
|
license-file: LICENSE
|
||||||
|
category: Text, Web, JSON, Pretty Printer
|
||||||
|
copyright: Copyright 2011 Falko Peters
|
||||||
|
author: Falko Peters <falko.peters@gmail.com>
|
||||||
|
maintainer: Martijn Bastiaan <martijn@hmbastiaan.nl>
|
||||||
|
stability: experimental
|
||||||
|
homepage: http://github.com/informatikr/aeson-pretty
|
||||||
|
bug-reports: http://github.com/informatikr/aeson-pretty/issues
|
||||||
|
build-type: Simple
|
||||||
|
synopsis: JSON pretty-printing library and command-line tool.
|
||||||
|
description:
|
||||||
|
A JSON pretty-printing library compatible with aeson as well as
|
||||||
|
a command-line tool to improve readabilty of streams of JSON data.
|
||||||
|
.
|
||||||
|
The /library/ provides the function "encodePretty". It is a drop-in
|
||||||
|
replacement for aeson's "encode" function, producing JSON-ByteStrings for
|
||||||
|
human readers.
|
||||||
|
.
|
||||||
|
The /command-line tool/ reads JSON from stdin and writes prettified JSON
|
||||||
|
to stdout. It also offers a complementary "compact"-mode, essentially the
|
||||||
|
opposite of pretty-printing. If you specify @-flib-only@ like this
|
||||||
|
.
|
||||||
|
> cabal install -flib-only aeson-pretty
|
||||||
|
.
|
||||||
|
the command-line tool will NOT be installed.
|
||||||
|
|
||||||
|
extra-source-files:
|
||||||
|
README.markdown
|
||||||
|
CHANGELOG.markdown
|
||||||
|
|
||||||
|
flag lib-only
|
||||||
|
description: Only build/install the library, NOT the command-line tool.
|
||||||
|
default: False
|
||||||
|
|
||||||
|
library
|
||||||
|
exposed-modules:
|
||||||
|
Data.Aeson.Encode.Pretty
|
||||||
|
|
||||||
|
build-depends:
|
||||||
|
aeson ^>= 1.0 || ^>=1.1 || ^>=1.2 || ^>=1.3 || ^>=1.4 || ^>=1.5 || ^>=2.0,
|
||||||
|
base >= 4.5,
|
||||||
|
base-compat >= 0.9,
|
||||||
|
bytestring >= 0.9,
|
||||||
|
scientific >= 0.3,
|
||||||
|
vector >= 0.9,
|
||||||
|
text >= 0.11,
|
||||||
|
unordered-containers >= 0.2.14.0
|
||||||
|
|
||||||
|
if !impl(ghc >= 8.0)
|
||||||
|
build-depends:
|
||||||
|
semigroups >= 0.18.2
|
||||||
|
|
||||||
|
ghc-options: -Wall
|
||||||
|
default-language: Haskell2010
|
||||||
|
|
||||||
|
executable aeson-pretty
|
||||||
|
hs-source-dirs: cli-tool
|
||||||
|
main-is: Main.hs
|
||||||
|
other-modules: Paths_aeson_pretty
|
||||||
|
autogen-modules: Paths_aeson_pretty
|
||||||
|
|
||||||
|
if flag(lib-only)
|
||||||
|
buildable: False
|
||||||
|
else
|
||||||
|
build-depends:
|
||||||
|
aeson >= 0.6,
|
||||||
|
aeson-pretty,
|
||||||
|
attoparsec >= 0.10,
|
||||||
|
base == 4.*,
|
||||||
|
bytestring >= 0.9,
|
||||||
|
cmdargs >= 0.7
|
||||||
|
|
||||||
|
ghc-options: -Wall
|
||||||
|
default-language: Haskell2010
|
||||||
|
|
||||||
|
source-repository head
|
||||||
|
type: git
|
||||||
|
location: http://github.com/informatikr/aeson-pretty
|
@ -0,0 +1,228 @@
|
|||||||
|
# generated by cabal-rpm-2.0.9
|
||||||
|
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
|
||||||
|
|
||||||
|
%global pkg_name aeson-pretty
|
||||||
|
%global pkgver %{pkg_name}-%{version}
|
||||||
|
|
||||||
|
Name: ghc-%{pkg_name}
|
||||||
|
Version: 0.8.9
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: JSON pretty-printing library
|
||||||
|
|
||||||
|
License: BSD
|
||||||
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
|
# Begin cabal-rpm sources:
|
||||||
|
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
||||||
|
Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal
|
||||||
|
# End cabal-rpm sources
|
||||||
|
|
||||||
|
# Begin cabal-rpm deps:
|
||||||
|
BuildRequires: dos2unix
|
||||||
|
BuildRequires: ghc-Cabal-devel
|
||||||
|
BuildRequires: ghc-rpm-macros
|
||||||
|
BuildRequires: ghc-aeson-prof
|
||||||
|
BuildRequires: ghc-attoparsec-prof
|
||||||
|
BuildRequires: ghc-base-prof
|
||||||
|
BuildRequires: ghc-base-compat-prof
|
||||||
|
BuildRequires: ghc-bytestring-prof
|
||||||
|
BuildRequires: ghc-cmdargs-prof
|
||||||
|
BuildRequires: ghc-scientific-prof
|
||||||
|
BuildRequires: ghc-text-prof
|
||||||
|
BuildRequires: ghc-unordered-containers-prof
|
||||||
|
BuildRequires: ghc-vector-prof
|
||||||
|
# End cabal-rpm deps
|
||||||
|
|
||||||
|
%description
|
||||||
|
A JSON pretty-printing library compatible with aeson as well as a command-line
|
||||||
|
tool to improve readabilty of streams of JSON data.
|
||||||
|
|
||||||
|
The library provides the function "encodePretty". It is a drop-in replacement
|
||||||
|
for aeson's "encode" function, producing JSON-ByteStrings for human readers.
|
||||||
|
|
||||||
|
The command-line tool reads JSON from stdin and writes prettified JSON to
|
||||||
|
stdout. It also offers a complementary "compact"-mode, essentially the opposite
|
||||||
|
of pretty-printing.
|
||||||
|
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Haskell %{pkg_name} library development files
|
||||||
|
Provides: %{name}-static = %{version}-%{release}
|
||||||
|
Provides: %{name}-static%{?_isa} = %{version}-%{release}
|
||||||
|
%if %{defined ghc_version}
|
||||||
|
Requires: ghc-compiler = %{ghc_version}
|
||||||
|
%endif
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
This package provides the Haskell %{pkg_name} library development files.
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with haddock}
|
||||||
|
%package doc
|
||||||
|
Summary: Haskell %{pkg_name} library documentation
|
||||||
|
BuildArch: noarch
|
||||||
|
Requires: ghc-filesystem
|
||||||
|
|
||||||
|
%description doc
|
||||||
|
This package provides the Haskell %{pkg_name} library documentation.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with ghc_prof}
|
||||||
|
%package prof
|
||||||
|
Summary: Haskell %{pkg_name} profiling library
|
||||||
|
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
|
||||||
|
Supplements: (%{name}-devel and ghc-prof)
|
||||||
|
|
||||||
|
%description prof
|
||||||
|
This package provides the Haskell %{pkg_name} profiling library.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
# Begin cabal-rpm setup:
|
||||||
|
%setup -q -n %{pkgver}
|
||||||
|
dos2unix -k -n %{SOURCE1} %{pkg_name}.cabal
|
||||||
|
# End cabal-rpm setup
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
# Begin cabal-rpm build:
|
||||||
|
%ghc_lib_build
|
||||||
|
# End cabal-rpm build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
# Begin cabal-rpm install
|
||||||
|
%ghc_lib_install
|
||||||
|
# End cabal-rpm install
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.files
|
||||||
|
# Begin cabal-rpm files:
|
||||||
|
%license LICENSE
|
||||||
|
# End cabal-rpm files
|
||||||
|
|
||||||
|
|
||||||
|
%files devel -f %{name}-devel.files
|
||||||
|
%doc CHANGELOG.markdown README.markdown
|
||||||
|
%{_bindir}/%{pkg_name}
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with haddock}
|
||||||
|
%files doc -f %{name}-doc.files
|
||||||
|
%license LICENSE
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with ghc_prof}
|
||||||
|
%files prof -f %{name}-prof.files
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sat Aug 19 2023 Alexey Lyubimov <a.lyubimov@msvsphere.ru> - 0.8.9-1
|
||||||
|
- Rebuilt for MSVSphere 9.2
|
||||||
|
|
||||||
|
* Tue Jun 07 2022 Jens Petersen <petersen@redhat.com> - 0.8.9-1
|
||||||
|
- https://hackage.haskell.org/package/aeson-pretty-0.8.9/changelog
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.8-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 08 2022 Miro Hrončok <mhroncok@redhat.com> - 0.8.8-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/LIBFFI34
|
||||||
|
|
||||||
|
* Fri Aug 06 2021 Jens Petersen <petersen@redhat.com> - 0.8.8-6
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.8-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.8-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.8-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 17 2020 Jens Petersen <petersen@redhat.com> - 0.8.8-2
|
||||||
|
- refresh to cabal-rpm-2.0.6
|
||||||
|
|
||||||
|
* Sun Feb 09 2020 Jens Petersen <petersen@redhat.com> - 0.8.8-1
|
||||||
|
- update to 0.8.8
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.7-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Aug 01 2019 Jens Petersen <petersen@redhat.com> - 0.8.7-5
|
||||||
|
- add doc and prof subpackages (cabal-rpm-1.0.0)
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.7-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Feb 17 2019 Jens Petersen <petersen@redhat.com> - 0.8.7-3
|
||||||
|
- refresh to cabal-rpm-0.13
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.7-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 28 2018 Jens Petersen <petersen@redhat.com> - 0.8.7-1
|
||||||
|
- update to 0.8.7
|
||||||
|
|
||||||
|
* Tue Jul 24 2018 Miro Hrončok <mhroncok@redhat.com> - 0.8.5-5
|
||||||
|
- Enable annotated build again
|
||||||
|
|
||||||
|
* Mon Jul 23 2018 Miro Hrončok <mhroncok@redhat.com> - 0.8.5-4
|
||||||
|
- Rebuilt for #1607054
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.5-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 24 2018 Jens Petersen <petersen@redhat.com> - 0.8.5-1
|
||||||
|
- update to 0.8.5
|
||||||
|
|
||||||
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.2-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.2-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 24 2017 Jens Petersen <petersen@redhat.com> - 0.8.2-3
|
||||||
|
- refresh to cabal-rpm-0.11.1
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Oct 05 2016 Jens Petersen <petersen@redhat.com> - 0.8.2-1
|
||||||
|
- update to 0.8.2
|
||||||
|
|
||||||
|
* Thu Jun 23 2016 Jens Petersen <petersen@redhat.com> - 0.7.2-1
|
||||||
|
- update to 0.7.2
|
||||||
|
|
||||||
|
* Tue Apr 26 2016 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.7.1-7
|
||||||
|
- Rebuild for ghc(cmdargs)
|
||||||
|
|
||||||
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.1-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 28 2015 Jens Petersen <petersen@redhat.com> - 0.7.1-4
|
||||||
|
- update urls
|
||||||
|
|
||||||
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 27 2014 Jens Petersen <petersen@redhat.com> - 0.7.1-1
|
||||||
|
- package the tool in devel subpackage
|
||||||
|
- simpler summary and description
|
||||||
|
|
||||||
|
* Mon Jan 27 2014 Fedora Haskell SIG <haskell@lists.fedoraproject.org> - 0.7.1
|
||||||
|
- spec file generated by cabal-rpm-0.8.8
|
Loading…
Reference in new issue