From 79049eec0d56326f6cb78e3def8a441bd18df6f8 Mon Sep 17 00:00:00 2001 From: Alexey Lyubimov Date: Fri, 18 Aug 2023 22:07:24 +0300 Subject: [PATCH] import ghc-time-compat-1.9.5-2.el9 --- .ghc-time-compat.metadata | 1 + .gitignore | 1 + SOURCES/time-compat-1.9.5.cabal | 188 ++++++++++++++++++++++++++++++++ SPECS/ghc-time-compat.spec | 182 +++++++++++++++++++++++++++++++ 4 files changed, 372 insertions(+) create mode 100644 .ghc-time-compat.metadata create mode 100644 .gitignore create mode 100644 SOURCES/time-compat-1.9.5.cabal create mode 100644 SPECS/ghc-time-compat.spec diff --git a/.ghc-time-compat.metadata b/.ghc-time-compat.metadata new file mode 100644 index 0000000..3241969 --- /dev/null +++ b/.ghc-time-compat.metadata @@ -0,0 +1 @@ +cf9afab432638a395759a8648e9ab92f10b2622d SOURCES/time-compat-1.9.5.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bc963e2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/time-compat-1.9.5.tar.gz diff --git a/SOURCES/time-compat-1.9.5.cabal b/SOURCES/time-compat-1.9.5.cabal new file mode 100644 index 0000000..92f0eab --- /dev/null +++ b/SOURCES/time-compat-1.9.5.cabal @@ -0,0 +1,188 @@ +cabal-version: 1.12 +name: time-compat +version: 1.9.5 +x-revision: 1 +synopsis: Compatibility package for time +description: + This packages tries to compat as much of @time@ features as possible. + . + /TODO:/ + . + * Difference type @ParseTime@ and @FormatTime@ instances are missing. + . + * Formatting varies depending on underlying @time@ version + . + * @dayFractionToTimeOfDay@ on extreme values + +category: Time, Compatibility +license: BSD3 +license-file: LICENSE +maintainer: Oleg Grenrus +author: Ashley Yakeley +homepage: https://github.com/haskellari/time-compat +bug-reports: https://github.com/haskellari/time-compat/issues +build-type: Simple +extra-source-files: CHANGELOG.md +tested-with: + GHC ==7.0.4 + || ==7.2.2 + || ==7.4.2 + || ==7.6.3 + || ==7.8.4 + || ==7.10.3 + || ==8.0.2 + || ==8.2.2 + || ==8.4.4 + || ==8.6.5 + || ==8.8.4 + || ==8.10.3 + +source-repository head + type: git + location: https://github.com/haskellari/time-compat.git + +flag old-locale + description: If true, use old-locale, otherwise use time 1.5 or newer. + manual: False + default: False + +library + default-language: Haskell2010 + hs-source-dirs: src + other-extensions: CPP + + if impl(ghc >=7.2) + default-extensions: Trustworthy + + build-depends: + base >=4.3 && <4.16 + , base-orphans >=0.8.1 && <0.9 + , deepseq >=1.3.0.0 && <1.4 || >=1.4.1.1 && <1.5 + , time >=1.2 && <1.3 || >=1.4 && <1.7 || >=1.8 && <1.9 || >=1.9.2 && <1.9.4 || >=1.10 && <1.10.1 || >=1.11 && <1.11.2 + + if flag(old-locale) + build-depends: + old-locale >=1.0.0.2 && <1.1 + , time >=0 && <1.5 + + else + build-depends: time >=1.5 + + if !impl(ghc >=8.0) + build-depends: + fail >=4.9.0.0 && <4.10 + , semigroups >=0.18.5 && <0.20 + + exposed-modules: + Data.Time.Calendar.Compat + Data.Time.Calendar.Easter.Compat + Data.Time.Calendar.Julian.Compat + Data.Time.Calendar.Month.Compat + Data.Time.Calendar.MonthDay.Compat + Data.Time.Calendar.OrdinalDate.Compat + Data.Time.Calendar.Quarter.Compat + Data.Time.Calendar.WeekDate.Compat + Data.Time.Clock.Compat + Data.Time.Clock.POSIX.Compat + Data.Time.Clock.System.Compat + Data.Time.Clock.TAI.Compat + Data.Time.Compat + Data.Time.Format.Compat + Data.Time.Format.ISO8601.Compat + Data.Time.LocalTime.Compat + + other-modules: + Data.Format + Data.Time.Calendar.Private + Data.Time.Calendar.Types + Data.Time.Orphans + +test-suite instances + default-language: Haskell2010 + type: exitcode-stdio-1.0 + hs-source-dirs: test-instances + main-is: Test.hs + build-depends: + base + , deepseq + , HUnit >=1.3.1 && <1.3.2 || >=1.6.0.0 && <1.7 + , time-compat + +-- This test-suite is from time library +-- Changes: +-- * imports: Data.Time -> Data.Time.Compat etc +-- * disabled Test.Format.ParseTime +-- * Test.Format.Format has also trees disabled +-- * Test.Format.Compile doesn't work +-- * disabled 'TimeOfDay minBound 0 0' (Test.LocalTime.Time) +-- +test-suite main + if !impl(ghc >=7.4) + buildable: False + + default-language: Haskell2010 + type: exitcode-stdio-1.0 + hs-source-dirs: test/main + default-extensions: + CPP + DeriveDataTypeable + ExistentialQuantification + FlexibleInstances + MultiParamTypeClasses + Rank2Types + ScopedTypeVariables + StandaloneDeriving + TupleSections + UndecidableInstances + + ghc-options: -Wall -fwarn-tabs + build-depends: + base + , base-compat >=0.10.5 && <0.12 + , deepseq + , QuickCheck >=2.13 && <2.15 + , tagged >=0.8.6 && <0.9 + , tasty >=1.2.1 && <1.5 + , tasty-hunit >=0.10 && <0.11 + , tasty-quickcheck >=0.10 && <0.11 + , time-compat + + if !impl(ghc >=8.0) + build-depends: + fail >=4.9.0.0 && <4.10 + , semigroups >=0.18.5 && <0.20 + + build-depends: time + main-is: Main.hs + other-modules: + Test.Arbitrary + Test.Calendar.AddDays + Test.Calendar.AddDaysRef + Test.Calendar.CalendarProps + Test.Calendar.Calendars + Test.Calendar.CalendarsRef + Test.Calendar.ClipDates + Test.Calendar.ClipDatesRef + Test.Calendar.ConvertBack + Test.Calendar.Duration + Test.Calendar.Easter + Test.Calendar.EasterRef + Test.Calendar.LongWeekYears + Test.Calendar.LongWeekYearsRef + Test.Calendar.MonthDay + Test.Calendar.MonthDayRef + Test.Calendar.Valid + Test.Calendar.Week + Test.Clock.Conversion + Test.Clock.Resolution + Test.Clock.TAI + Test.Format.Compile + Test.Format.Format + Test.Format.ISO8601 + Test.Format.ParseTime + Test.LocalTime.CalendarDiffTime + Test.LocalTime.Time + Test.LocalTime.TimeOfDay + Test.LocalTime.TimeRef + Test.TestUtil + Test.Types diff --git a/SPECS/ghc-time-compat.spec b/SPECS/ghc-time-compat.spec new file mode 100644 index 0000000..d95ab6d --- /dev/null +++ b/SPECS/ghc-time-compat.spec @@ -0,0 +1,182 @@ +# generated by cabal-rpm-2.0.9 +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ + +%global pkg_name time-compat +%global pkgver %{pkg_name}-%{version} + +# tasty hanging +%bcond_with tests + +Name: ghc-%{pkg_name} +Version: 1.9.5 +Release: 2%{?dist} +Summary: Compatibility package for time + +License: BSD +Url: https://hackage.haskell.org/package/%{pkg_name} +# Begin cabal-rpm sources: +Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal +# End cabal-rpm sources + +# Begin cabal-rpm deps: +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-base-prof +BuildRequires: ghc-base-orphans-prof +BuildRequires: ghc-deepseq-prof +BuildRequires: ghc-time-prof +%if %{with tests} +BuildRequires: ghc-HUnit-devel +BuildRequires: ghc-QuickCheck-devel +BuildRequires: ghc-base-compat-devel +BuildRequires: ghc-tagged-devel +BuildRequires: ghc-tasty-devel +BuildRequires: ghc-tasty-hunit-devel +BuildRequires: ghc-tasty-quickcheck-devel +%endif +# End cabal-rpm deps + +%description +This packages tries to compat as much of 'time' features as possible. + + +%package devel +Summary: Haskell %{pkg_name} library development files +Provides: %{name}-static = %{version}-%{release} +Provides: %{name}-static%{?_isa} = %{version}-%{release} +%if %{defined ghc_version} +Requires: ghc-compiler = %{ghc_version} +%endif +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +This package provides the Haskell %{pkg_name} library development files. + + +%if %{with haddock} +%package doc +Summary: Haskell %{pkg_name} library documentation +BuildArch: noarch +Requires: ghc-filesystem + +%description doc +This package provides the Haskell %{pkg_name} library documentation. +%endif + + +%if %{with ghc_prof} +%package prof +Summary: Haskell %{pkg_name} profiling library +Requires: %{name}-devel%{?_isa} = %{version}-%{release} +Supplements: (%{name}-devel and ghc-prof) + +%description prof +This package provides the Haskell %{pkg_name} profiling library. +%endif + + +%prep +# Begin cabal-rpm setup: +%setup -q -n %{pkgver} +cp -bp %{SOURCE1} %{pkg_name}.cabal +# End cabal-rpm setup + + +%build +# Begin cabal-rpm build: +%ghc_lib_build +# End cabal-rpm build + + +%install +# Begin cabal-rpm install +%ghc_lib_install +# End cabal-rpm install + + +%check +%if %{with tests} +%cabal_test +%endif + + +%files -f %{name}.files +# Begin cabal-rpm files: +%license LICENSE +# End cabal-rpm files + + +%files devel -f %{name}-devel.files +%doc CHANGELOG.md + + +%if %{with haddock} +%files doc -f %{name}-doc.files +%license LICENSE +%endif + + +%if %{with ghc_prof} +%files prof -f %{name}-prof.files +%endif + + +%changelog +* Fri Aug 18 2023 Alexey Lyubimov - 1.9.5-2 +- Rebuilt for MSVSphere 9.2 + +* Thu Jan 20 2022 Fedora Release Engineering - 1.9.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Aug 5 2021 Jens Petersen - 1.9.5-1 +- update to 1.9.5 + +* Thu Jul 22 2021 Fedora Release Engineering - 1.9.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Tue Jan 26 2021 Fedora Release Engineering - 1.9.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Aug 01 2020 Fedora Release Engineering - 1.9.3-3 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 1.9.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Wed Jun 10 2020 Jens Petersen - 1.9.3-1 +- update to 1.9.3 + +* Fri Feb 14 2020 Jens Petersen - 1.9.2.2-1 +- update to 1.9.2.2 + +* Tue Jan 28 2020 Fedora Release Engineering - 0.1.0.3-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Fri Aug 02 2019 Jens Petersen - 0.1.0.3-13 +- add doc and prof subpackages (cabal-rpm-1.0.0) + +* Thu Jul 25 2019 Fedora Release Engineering - 0.1.0.3-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Feb 17 2019 Jens Petersen - 0.1.0.3-11 +- refresh to cabal-rpm-0.13 + +* Thu Jan 31 2019 Fedora Release Engineering - 0.1.0.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Jul 13 2018 Fedora Release Engineering - 0.1.0.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 0.1.0.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Jan 26 2018 Jens Petersen - 0.1.0.3-7 +- rebuild + +* Tue Oct 17 2017 Jens Petersen - 0.1.0.3-6 +- bump release over happstack-server + +* Tue Oct 10 2017 Fedora Haskell SIG - 0.1.0.3-1 +- spec file generated by cabal-rpm-0.11.2