commit c9879bff644e1fb6ee2dc392f592ff3062b8026e880a713f5d6a9076c9c8327b Author: Ondřej Súkup Date: Thu Jun 2 21:56:42 2016 +0000 Accepting request 399548 from devel:languages:haskell:lts future dep of cabal-install OBS-URL: https://build.opensuse.org/request/show/399548 OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-ed25519?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/ed25519-0.0.5.0.tar.gz b/ed25519-0.0.5.0.tar.gz new file mode 100644 index 0000000..0b03019 --- /dev/null +++ b/ed25519-0.0.5.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8a5958ebfa9309790efade64275dc5c441b568645c45ceed1b0c6ff36d6156d +size 80034 diff --git a/ghc-ed25519.changes b/ghc-ed25519.changes new file mode 100644 index 0000000..9152e10 --- /dev/null +++ b/ghc-ed25519.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Fri May 27 12:02:07 UTC 2016 - mimi.vx@gmail.com + +- ghc-ed25519 generated by st2obs scritpt + diff --git a/ghc-ed25519.spec b/ghc-ed25519.spec new file mode 100644 index 0000000..d0f5570 --- /dev/null +++ b/ghc-ed25519.spec @@ -0,0 +1,101 @@ +# +# spec file for package ghc-ed25519 +# +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# +# 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 http://bugs.opensuse.org/ +# + +%global pkg_name ed25519 + +%bcond_with tests + +Name: ghc-%{pkg_name} +Version: 0.0.5.0 +Release: 0 +Summary: Ed25519 cryptographic signatures +Group: System/Libraries + +License: MIT +Url: https://hackage.haskell.org/package/%{pkg_name} +Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros +# Begin cabal-rpm deps: +BuildRequires: ghc-bytestring-devel +%if %{with tests} +BuildRequires: ghc-QuickCheck-devel +BuildRequires: ghc-directory-devel +BuildRequires: ghc-doctest-devel +BuildRequires: ghc-filepath-devel +BuildRequires: ghc-hlint-devel +%endif +# End cabal-rpm deps + +%description +This package provides a simple, fast, self-contained copy of the Ed25519 +public-key signature system with a clean interface. It also includes support +for detached signatures, and thorough documentation on the design and +implementation, including usage guidelines. + + +%package devel +Summary: Haskell %{pkg_name} library development files +Group: Development/Libraries/Other +Requires: ghc-compiler = %{ghc_version} +Requires(post): ghc-compiler = %{ghc_version} +Requires(postun): ghc-compiler = %{ghc_version} +Requires: %{name} = %{version}-%{release} + +%description devel +This package provides the Haskell %{pkg_name} library development files. + + +%prep +%setup -q -n %{pkg_name}-%{version} +cabal-tweak-dep-ver ghc-prim '< 0.5' '< 0.6' + +%build +%ghc_lib_build + + +%install +%ghc_lib_install + + +%check +%if %{with tests} +%cabal test +%endif + + +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache + + +%files -f %{name}.files +%defattr(-,root,root,-) +%doc LICENSE.txt + + +%files devel -f %{name}-devel.files +%defattr(-,root,root,-) +%doc AUTHORS.txt README.md + + +%changelog