commit 2b8795cadde4ec5902d47aabff15c0b8a23075f2386a80107c36033b374e02e5 Author: Peter Simons Date: Wed Sep 9 01:01:21 2020 +0000 osc copypac from project:devel:languages:haskell:ghc-8.10.x package:dhall-yaml revision:1, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/dhall-yaml?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/dhall-yaml-1.2.1.tar.gz b/dhall-yaml-1.2.1.tar.gz new file mode 100644 index 0000000..2170d41 --- /dev/null +++ b/dhall-yaml-1.2.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa68f6dc6ba5d6f10c389bf3ca741034774a55dbd2957d30895ffcc84552e8a2 +size 20664 diff --git a/dhall-yaml.cabal b/dhall-yaml.cabal new file mode 100644 index 0000000..a219262 --- /dev/null +++ b/dhall-yaml.cabal @@ -0,0 +1,101 @@ +Name: dhall-yaml +Version: 1.2.1 +x-revision: 2 +Cabal-Version: >=1.10 +Build-Type: Simple +Tested-With: GHC == 8.4.3, GHC == 8.6.1 +License: GPL-3 +License-File: LICENSE +Copyright: 2019 Gabriel Gonzalez +Author: Gabriel Gonzalez +Maintainer: Gabriel439@gmail.com +Bug-Reports: https://github.com/dhall-lang/dhall-haskell/issues +Synopsis: Convert between Dhall and YAML +Description: + Use this package if you want to convert between Dhall expressions and YAML. + You can use this package as a library or an executable: + . + * See the "Dhall.Yaml" module if you want to use this package as a library + . + * Use the @dhall-to-yaml-ng@ program from this package if you want an executable +Category: Compiler +Extra-Source-Files: + CHANGELOG.md + README.md + tasty/data/*.dhall + tasty/data/*.yaml + tasty/data/*.txt + +Source-Repository head + Type: git + Location: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-yaml + +Library + Hs-Source-Dirs: src + Build-Depends: + HsYAML >= 0.2 && < 0.3 , + HsYAML-aeson >= 0.2 && < 0.3 , + base >= 4.11.0.0 && < 5 , + aeson >= 1.0.0.0 && < 1.6 , + bytestring < 0.11, + dhall >= 1.31.0 && < 1.35, + dhall-json >= 1.6.0 && < 1.8 , + optparse-applicative >= 0.14.0.0 && < 0.17, + text >= 0.11.1.0 && < 1.3 , + vector + Exposed-Modules: + Dhall.Yaml + Dhall.YamlToDhall + GHC-Options: -Wall + Default-Language: Haskell2010 + +Executable dhall-to-yaml-ng + Hs-Source-Dirs: dhall-to-yaml-ng + Main-Is: Main.hs + Build-Depends: + base , + dhall-json, + dhall-yaml + Other-Modules: + Paths_dhall_yaml + GHC-Options: -Wall + Default-Language: Haskell2010 + +Executable yaml-to-dhall + Hs-Source-Dirs: yaml-to-dhall + Main-Is: Main.hs + Build-Depends: + base , + aeson , + ansi-terminal >= 0.6.3.1 && < 0.12, + bytestring < 0.11, + dhall , + dhall-json , + dhall-yaml , + exceptions >= 0.8.3 && < 0.11, + optparse-applicative , + prettyprinter , + prettyprinter-ansi-terminal >= 1.1.1 && < 1.2 , + text < 1.3 + Other-Modules: + Paths_dhall_yaml + 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 , + bytestring , + dhall , + dhall-json , + dhall-yaml , + tasty < 1.4, + tasty-expected-failure < 0.13, + text , + tasty-hunit >= 0.2 + + GHC-Options: -Wall + Default-Language: Haskell2010 diff --git a/dhall-yaml.changes b/dhall-yaml.changes new file mode 100644 index 0000000..0437962 --- /dev/null +++ b/dhall-yaml.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Tue Sep 8 10:22:48 UTC 2020 - psimons@suse.com + +- Add dhall-yaml at version 1.2.1 revision 2. + diff --git a/dhall-yaml.spec b/dhall-yaml.spec new file mode 100644 index 0000000..769edae --- /dev/null +++ b/dhall-yaml.spec @@ -0,0 +1,108 @@ +# +# spec file for package dhall-yaml +# +# Copyright (c) 2020 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%global pkg_name dhall-yaml +%bcond_with tests +Name: %{pkg_name} +Version: 1.2.1 +Release: 0 +Summary: Convert between Dhall and YAML +License: GPL-3.0-or-later +URL: https://hackage.haskell.org/package/%{name} +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: ghc-Cabal-devel +BuildRequires: ghc-HsYAML-aeson-devel +BuildRequires: ghc-HsYAML-devel +BuildRequires: ghc-aeson-devel +BuildRequires: ghc-ansi-terminal-devel +BuildRequires: ghc-bytestring-devel +BuildRequires: ghc-dhall-devel +BuildRequires: ghc-dhall-json-devel +BuildRequires: ghc-exceptions-devel +BuildRequires: ghc-optparse-applicative-devel +BuildRequires: ghc-prettyprinter-ansi-terminal-devel +BuildRequires: ghc-prettyprinter-devel +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-text-devel +BuildRequires: ghc-vector-devel +%if %{with tests} +BuildRequires: ghc-tasty-devel +BuildRequires: ghc-tasty-expected-failure-devel +BuildRequires: ghc-tasty-hunit-devel +%endif + +%description +Use this package if you want to convert between Dhall expressions and YAML. +You can use this package as a library or an executable: + +* See the "Dhall.Yaml" module if you want to use this package as a library + +* Use the 'dhall-to-yaml-ng' program from this package if you want an +executable. + +%package -n ghc-%{name} +Summary: Haskell %{name} library + +%description -n ghc-%{name} +This package provides the Haskell %{name} shared library. + +%package -n ghc-%{name}-devel +Summary: Haskell %{name} library development files +Requires: ghc-%{name} = %{version}-%{release} +Requires: ghc-compiler = %{ghc_version} +Requires(post): ghc-compiler = %{ghc_version} +Requires(postun): ghc-compiler = %{ghc_version} + +%description -n ghc-%{name}-devel +This package provides the Haskell %{name} library development files. + +%prep +%autosetup +cp -p %{SOURCE1} %{name}.cabal + +%build +%ghc_lib_build + +%install +%ghc_lib_install +%ghc_fix_rpath %{pkg_name}-%{version} + +%check +%cabal_test + +%post -n ghc-%{name}-devel +%ghc_pkg_recache + +%postun -n ghc-%{name}-devel +%ghc_pkg_recache + +%files +%license LICENSE +%doc CHANGELOG.md README.md +%{_bindir}/dhall-to-yaml-ng +%{_bindir}/yaml-to-dhall + +%files -n ghc-%{name} -f ghc-%{name}.files +%license LICENSE + +%files -n ghc-%{name}-devel -f ghc-%{name}-devel.files +%doc CHANGELOG.md README.md + +%changelog