forked from pool/dhall-json
Accepting request 883266 from devel:languages:haskell
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/883266 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/dhall-json?expand=0&rev=8
This commit is contained in:
commit
bce8d116df
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3e1aeed7d3cd58ee3c220e724ca1f6128464a204d45fff225b4a70363bbaf3ba
|
|
||||||
size 33638
|
|
3
dhall-json-1.7.6.tar.gz
Normal file
3
dhall-json-1.7.6.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1644aa4d5a5f200dbf39a794ea8c560c081f7502a0747544c6e7401ceeb385ba
|
||||||
|
size 33714
|
131
dhall-json.cabal
131
dhall-json.cabal
@ -1,131 +0,0 @@
|
|||||||
Name: dhall-json
|
|
||||||
Version: 1.7.5
|
|
||||||
x-revision: 2
|
|
||||||
Cabal-Version: >=1.10
|
|
||||||
Build-Type: Simple
|
|
||||||
Tested-With: GHC == 8.4.3, GHC == 8.6.1
|
|
||||||
License: BSD3
|
|
||||||
License-File: LICENSE
|
|
||||||
Copyright: 2017 Gabriel Gonzalez
|
|
||||||
Author: Gabriel Gonzalez
|
|
||||||
Maintainer: Gabriel439@gmail.com
|
|
||||||
Bug-Reports: https://github.com/dhall-lang/dhall-haskell/issues
|
|
||||||
Synopsis: Convert between Dhall and JSON or YAML
|
|
||||||
Description:
|
|
||||||
Use this package if you want to convert between Dhall expressions and JSON
|
|
||||||
or YAML. You can use this package as a library or an executable:
|
|
||||||
.
|
|
||||||
* See the "Dhall.JSON" or "Dhall.JSONToDhall" modules if you want to use
|
|
||||||
this package as a library
|
|
||||||
.
|
|
||||||
* Use the @dhall-to-json@, @dhall-to-yaml@, or @json-to-dhall@ programs from
|
|
||||||
this package if you want an executable
|
|
||||||
.
|
|
||||||
The "Dhall.JSON" and "Dhall.JSONToDhall" modules also contains instructions
|
|
||||||
for how to use this package
|
|
||||||
Category: Compiler
|
|
||||||
Extra-Source-Files:
|
|
||||||
CHANGELOG.md
|
|
||||||
tasty/data/*.dhall
|
|
||||||
tasty/data/*.json
|
|
||||||
tasty/data/error/*.golden
|
|
||||||
tasty/data/error/*.json
|
|
||||||
tasty/data/error/*.dhall
|
|
||||||
|
|
||||||
Source-Repository head
|
|
||||||
Type: git
|
|
||||||
Location: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-json
|
|
||||||
|
|
||||||
Library
|
|
||||||
Hs-Source-Dirs: src
|
|
||||||
Build-Depends:
|
|
||||||
base >= 4.11.0.0 && < 5 ,
|
|
||||||
aeson >= 1.4.6.0 && < 1.6 ,
|
|
||||||
aeson-pretty < 0.9 ,
|
|
||||||
aeson-yaml >= 1.1.0 && < 1.2 ,
|
|
||||||
bytestring < 0.12,
|
|
||||||
containers >= 0.5.9 && < 0.7 ,
|
|
||||||
dhall >= 1.38.0 && < 1.39,
|
|
||||||
exceptions >= 0.8.3 && < 0.11,
|
|
||||||
filepath < 1.5 ,
|
|
||||||
lens-family-core >= 1.0.0 && < 2.2 ,
|
|
||||||
optparse-applicative >= 0.14.0.0 && < 0.17,
|
|
||||||
prettyprinter >= 1.5.1 && < 1.8 ,
|
|
||||||
scientific >= 0.3.0.0 && < 0.4 ,
|
|
||||||
text >= 0.11.1.0 && < 1.3 ,
|
|
||||||
unordered-containers < 0.3 ,
|
|
||||||
vector
|
|
||||||
Exposed-Modules:
|
|
||||||
Dhall.JSON
|
|
||||||
Dhall.JSONToDhall
|
|
||||||
Dhall.JSON.Yaml
|
|
||||||
Dhall.DhallToYaml.Main
|
|
||||||
Other-Modules:
|
|
||||||
Dhall.JSON.Util
|
|
||||||
GHC-Options: -Wall
|
|
||||||
Default-Language: Haskell2010
|
|
||||||
|
|
||||||
Executable dhall-to-json
|
|
||||||
Hs-Source-Dirs: dhall-to-json
|
|
||||||
Main-Is: Main.hs
|
|
||||||
Build-Depends:
|
|
||||||
base ,
|
|
||||||
aeson ,
|
|
||||||
aeson-pretty >= 0.8.5 && < 0.9 ,
|
|
||||||
bytestring ,
|
|
||||||
dhall ,
|
|
||||||
dhall-json ,
|
|
||||||
optparse-applicative ,
|
|
||||||
text
|
|
||||||
Other-Modules:
|
|
||||||
Paths_dhall_json
|
|
||||||
GHC-Options: -Wall
|
|
||||||
Default-Language: Haskell2010
|
|
||||||
|
|
||||||
Executable dhall-to-yaml
|
|
||||||
Hs-Source-Dirs: dhall-to-yaml
|
|
||||||
Main-Is: Main.hs
|
|
||||||
Build-Depends:
|
|
||||||
base ,
|
|
||||||
dhall-json
|
|
||||||
Other-Modules:
|
|
||||||
Paths_dhall_json
|
|
||||||
GHC-Options: -Wall
|
|
||||||
Default-Language: Haskell2010
|
|
||||||
|
|
||||||
Executable json-to-dhall
|
|
||||||
Hs-Source-Dirs: json-to-dhall
|
|
||||||
Main-Is: Main.hs
|
|
||||||
Build-Depends:
|
|
||||||
base ,
|
|
||||||
aeson ,
|
|
||||||
ansi-terminal >= 0.6.3.1 && < 0.12,
|
|
||||||
bytestring ,
|
|
||||||
dhall ,
|
|
||||||
dhall-json ,
|
|
||||||
exceptions >= 0.8.3 && < 0.11,
|
|
||||||
optparse-applicative ,
|
|
||||||
prettyprinter ,
|
|
||||||
prettyprinter-ansi-terminal >= 1.1.1 && < 1.2 ,
|
|
||||||
text < 1.3
|
|
||||||
Other-Modules:
|
|
||||||
Paths_dhall_json
|
|
||||||
GHC-Options: -Wall
|
|
||||||
Default-Language: Haskell2010
|
|
||||||
|
|
||||||
Test-Suite tasty
|
|
||||||
Type: exitcode-stdio-1.0
|
|
||||||
Hs-Source-Dirs: tasty
|
|
||||||
Main-Is: Main.hs
|
|
||||||
Build-Depends:
|
|
||||||
base ,
|
|
||||||
aeson ,
|
|
||||||
bytestring ,
|
|
||||||
dhall ,
|
|
||||||
dhall-json ,
|
|
||||||
tasty < 1.5,
|
|
||||||
text ,
|
|
||||||
tasty-hunit >= 0.2,
|
|
||||||
tasty-silver >= 3.0
|
|
||||||
GHC-Options: -Wall
|
|
||||||
Default-Language: Haskell2010
|
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Mar 29 11:00:15 UTC 2021 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update dhall-json to version 1.7.6.
|
||||||
|
1.7.6
|
||||||
|
|
||||||
|
* [Fix `hashable`-related test failures](https://github.com/dhall-lang/dhall-haskell/pull/2152)
|
||||||
|
* [Fix lower bound on `dhall`](https://github.com/dhall-lang/dhall-haskell/pull/2147)
|
||||||
|
* [Allow bytestring-0.11](https://github.com/dhall-lang/dhall-haskell/pull/2144)
|
||||||
|
* [Fix typos in `json-to-dhall --help` output](https://github.com/dhall-lang/dhall-haskell/pull/2160)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Feb 13 11:43:03 UTC 2021 - psimons@suse.com
|
Sat Feb 13 11:43:03 UTC 2021 - psimons@suse.com
|
||||||
|
|
||||||
|
@ -19,13 +19,12 @@
|
|||||||
%global pkg_name dhall-json
|
%global pkg_name dhall-json
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: %{pkg_name}
|
Name: %{pkg_name}
|
||||||
Version: 1.7.5
|
Version: 1.7.6
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Convert between Dhall and JSON or YAML
|
Summary: Convert between Dhall and JSON or YAML
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
URL: https://hackage.haskell.org/package/%{name}
|
URL: https://hackage.haskell.org/package/%{name}
|
||||||
Source0: https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz
|
Source0: https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz
|
||||||
Source1: https://hackage.haskell.org/package/%{name}-%{version}/revision/2.cabal#/%{name}.cabal
|
|
||||||
BuildRequires: chrpath
|
BuildRequires: chrpath
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-aeson-devel
|
BuildRequires: ghc-aeson-devel
|
||||||
@ -84,7 +83,6 @@ This package provides the Haskell %{name} library development files.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup
|
%autosetup
|
||||||
cp -p %{SOURCE1} %{name}.cabal
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%ghc_lib_build
|
%ghc_lib_build
|
||||||
|
Loading…
Reference in New Issue
Block a user