osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-authenticate-oauth revision:1, using keep-link

OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-authenticate-oauth?expand=0&rev=1
This commit is contained in:
Ondřej Súkup 2020-12-02 15:03:27 +00:00 committed by Git OBS Bridge
commit 9f2b960fe4
6 changed files with 150 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -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

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e0520fb4255ac8d6ff30f06a2b91a9fdc478aa799e254e52747ebd13d70f3ec3
size 9470

37
authenticate-oauth.cabal Normal file
View File

@ -0,0 +1,37 @@
name: authenticate-oauth
version: 1.6.0.1
x-revision: 2
license: BSD3
license-file: LICENSE
author: Hiromi Ishii
maintainer: Hiromi Ishii, Artem Chirkin
synopsis: Library to authenticate with OAuth for Haskell web applications.
description: API docs and the README are available at <http://www.stackage.org/package/authenticate-oauth>.
category: Web
stability: Stable
cabal-version: >= 1.6
build-type: Simple
homepage: http://github.com/yesodweb/authenticate
extra-source-files: README.md ChangeLog.md
library
build-depends: base >= 4 && < 5
, http-client >= 0.3
, transformers >= 0.1 && < 0.6
, bytestring >= 0.9
, crypto-pubkey-types >= 0.1 && < 0.5
, RSA >= 2.0 && < 2.5
, time
, data-default
, base64-bytestring >= 0.1 && < 1.3
, SHA >= 1.4 && < 1.7
, random
, http-types >= 0.6
, blaze-builder
, transformers-compat >= 0.3
exposed-modules: Web.Authenticate.OAuth, Web.Authenticate.OAuth.IO
ghc-options: -Wall
source-repository head
type: git
location: git://github.com/yesodweb/authenticate.git

View File

@ -0,0 +1,5 @@
-------------------------------------------------------------------
Sun Nov 29 18:29:31 UTC 2020 - psimons@suse.com
- Add authenticate-oauth at version 1.6.0.1 revision 2.

View File

@ -0,0 +1,81 @@
#
# spec file for package ghc-authenticate-oauth
#
# 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 authenticate-oauth
Name: ghc-%{pkg_name}
Version: 1.6.0.1
Release: 0
Summary: Library to authenticate with OAuth for Haskell web applications
License: BSD-2-Clause
URL: https://hackage.haskell.org/package/%{pkg_name}
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-RSA-devel
BuildRequires: ghc-SHA-devel
BuildRequires: ghc-base64-bytestring-devel
BuildRequires: ghc-blaze-builder-devel
BuildRequires: ghc-bytestring-devel
BuildRequires: ghc-crypto-pubkey-types-devel
BuildRequires: ghc-data-default-devel
BuildRequires: ghc-http-client-devel
BuildRequires: ghc-http-types-devel
BuildRequires: ghc-random-devel
BuildRequires: ghc-rpm-macros
BuildRequires: ghc-time-devel
BuildRequires: ghc-transformers-compat-devel
BuildRequires: ghc-transformers-devel
%description
API docs and the README are available at
<http://www.stackage.org/package/authenticate-oauth>.
%package devel
Summary: Haskell %{pkg_name} library development files
Requires: %{name} = %{version}-%{release}
Requires: ghc-compiler = %{ghc_version}
Requires(post): ghc-compiler = %{ghc_version}
Requires(postun): ghc-compiler = %{ghc_version}
%description devel
This package provides the Haskell %{pkg_name} library development
files.
%prep
%autosetup -n %{pkg_name}-%{version}
cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build
%install
%ghc_lib_install
%post devel
%ghc_pkg_recache
%postun devel
%ghc_pkg_recache
%files -f %{name}.files
%license LICENSE
%files devel -f %{name}-devel.files
%doc ChangeLog.md README.md
%changelog