Accepting request 1075850 from devel:languages:haskell

update for ghc-9.4.4

OBS-URL: https://build.opensuse.org/request/show/1075850
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-dec?expand=0&rev=6
This commit is contained in:
Dominique Leuenberger 2023-04-04 19:19:40 +00:00 committed by Git OBS Bridge
commit e82ee5c562
3 changed files with 99 additions and 1 deletions

60
dec.cabal Normal file
View File

@ -0,0 +1,60 @@
cabal-version: >=1.10
name: dec
version: 0.0.5
x-revision: 1
synopsis: Decidable propositions.
category: Data, Dependent Types
description:
This package provides a @Dec@ type.
.
@
type Neg a = a -> Void
.
data Dec a
\ = Yes a
\ | No (Neg a)
@
homepage: https://github.com/phadej/dec
bug-reports: https://github.com/phadej/dec/issues
license: BSD3
license-file: LICENSE
author: Oleg Grenrus <oleg.grenrus@iki.fi>
maintainer: Oleg.Grenrus <oleg.grenrus@iki.fi>
copyright: (c) 2019-2021 Oleg Grenrus
build-type: Simple
extra-source-files: ChangeLog.md
tested-with:
GHC ==7.8.4
|| ==7.10.3
|| ==8.0.2
|| ==8.2.2
|| ==8.4.4
|| ==8.6.5
|| ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.6
|| ==9.4.4
|| ==9.6.1
source-repository head
type: git
location: https://github.com/phadej/dec.git
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall -fprint-explicit-kinds
exposed-modules: Data.Type.Dec
build-depends:
base >=4.7 && <4.19
, boring >=0.2 && <0.3
if !impl(ghc >=7.10)
build-depends: void >=0.7.3 && <0.8
if impl(ghc >=9.0)
-- these flags may abort compilation with GHC-8.10
-- https://gitlab.haskell.org/ghc/ghc/-/merge_requests/3295
ghc-options: -Winferred-safe-imports -Wmissing-safe-haskell-mode

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Thu Mar 30 17:06:34 UTC 2023 - Peter Simons <psimons@suse.com>
- Updated spec file to conform with ghc-rpm-macros-2.5.2.
-------------------------------------------------------------------
Tue Mar 14 15:17:16 UTC 2023 - Peter Simons <psimons@suse.com>
- Update dec to version 0.0.5 revision 1.
Upstream has revised the Cabal build instructions on Hackage.
-------------------------------------------------------------------
Sun Aug 21 11:41:26 UTC 2022 - Peter Simons <psimons@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package ghc-dec
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,6 +17,7 @@
%global pkg_name dec
%global pkgver %{pkg_name}-%{version}
Name: ghc-%{pkg_name}
Version: 0.0.5
Release: 0
@ -24,8 +25,12 @@ Summary: Decidable propositions
License: BSD-3-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/1.cabal#/%{pkg_name}.cabal
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-base-devel
BuildRequires: ghc-base-prof
BuildRequires: ghc-boring-devel
BuildRequires: ghc-boring-prof
BuildRequires: ghc-rpm-macros
ExcludeArch: %{ix86}
@ -46,8 +51,25 @@ Requires(postun): ghc-compiler = %{ghc_version}
%description devel
This package provides the Haskell %{pkg_name} library development files.
%package -n ghc-%{pkg_name}-doc
Summary: Haskell %{pkg_name} library documentation
Requires: ghc-filesystem
BuildArch: noarch
%description -n ghc-%{pkg_name}-doc
This package provides the Haskell %{pkg_name} library documentation.
%package -n ghc-%{pkg_name}-prof
Summary: Haskell %{pkg_name} profiling library
Requires: ghc-%{pkg_name}-devel = %{version}-%{release}
Supplements: (ghc-%{pkg_name}-devel and ghc-prof)
%description -n ghc-%{pkg_name}-prof
This package provides the Haskell %{pkg_name} profiling library.
%prep
%autosetup -n %{pkg_name}-%{version}
cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build
@ -67,4 +89,9 @@ This package provides the Haskell %{pkg_name} library development files.
%files devel -f %{name}-devel.files
%doc ChangeLog.md
%files -n ghc-%{pkg_name}-doc -f ghc-%{pkg_name}-doc.files
%license LICENSE
%files -n ghc-%{pkg_name}-prof -f ghc-%{pkg_name}-prof.files
%changelog