rebuilt with ghc 9.4.8 [release 0.0.1-2mamba;Sat Dec 02 2023]

This commit is contained in:
Silvan Calarco 2024-01-05 22:48:41 +01:00
parent 209f3a7b5b
commit 8b68248235

View File

@ -1,57 +1,80 @@
%define ghc_ver %(ghc --version | sed "s|.*version ||") %define ghc_ver %(ghc --version | sed "s|.*version ||")
%define pkgname %(echo %name | sed "s|^ghc-||") %define pkg_name %(echo %name | sed "s|^ghc-||")
Name: ghc-data-default-instances-containers Name: ghc-data-default-instances-containers
Version: 0.0.1 Version: 0.0.1
Release: 1mamba Release: 2mamba
Summary: Default instances for types in containers Summary: Default instances for types in containers
Group: System/Libraries Group: System/Libraries
Vendor: openmamba Vendor: openmamba
Distribution: openmamba Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it> Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://hackage.haskell.org/package/%{pkgname} URL: http://hackage.haskell.org/package/%{pkg_name}
Source: http://hackage.haskell.org/packages/archive/data-default-instances-containers/%{version}/data-default-instances-containers-%{version}.tar.gz Source: http://hackage.haskell.org/packages/archive/data-default-instances-containers/%{version}/data-default-instances-containers-%{version}.tar.gz
License: BSD License: BSD
## AUTOBUILDREQ-BEGIN ## AUTOBUILDREQ-BEGIN
BuildRequires: ghc-data-default-class-devel
BuildRequires: ghc-libs
BuildRequires: glibc-devel
BuildRequires: libgmp-devel
## AUTOBUILDREQ-END ## AUTOBUILDREQ-END
BuildRequires: ghc BuildRequires: ghc >= 9.4.8
Requires: ghc = %{ghc_ver} Requires: ghc = %{ghc_ver}
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description %description
Default instances for types in containers. Default instances for types in containers.
%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 = %{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
Requires: ghc-filesystem
%description doc
This package provides the Haskell %{pkg_name} library documentation.
%endif
%prep %prep
%setup -q -n data-default-instances-containers-%{version} %setup -q -n data-default-instances-containers-%{version}
%build %build
runghc Setup.lhs configure \ %ghc_lib_build
--prefix=%{_prefix} --libdir=%{_libdir}
runghc Setup.lhs build
%install %install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" %ghc_lib_install
runghc Setup.lhs copy --destdir=%{buildroot}
runghc Setup.lhs register \ rm -f %{buildroot}%{_ghclicensedir}/%{name}/LICENSE
--gen-pkg-config="%{buildroot}%{_libdir}/ghc-%{ghc_ver}/%{pkgname}-%{version}/%{pkgname}-%{version}.conf"
%clean %clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" [ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post %files -f %{name}.files
ghc-pkg register %{_libdir}/ghc-%{ghc_ver}/%{pkgname}-%{version}/%{pkgname}-%{version}.conf &>/dev/null || true
:
%preun
ghc-pkg unregister %{_libdir}/ghc-%{ghc_ver}/%{pkgname}-%{version}/%{pkgname}-%{version}.conf &>/dev/null || true
:
%files
%defattr(-,root,root) %defattr(-,root,root)
%dir %{_libdir}/ghc-%{ghc_ver}/%{pkgname}-%{version} %license LICENSE
%{_libdir}/ghc-%{ghc_ver}/%{pkgname}-%{version}/*
%{_datadir}/doc/%{pkgname}-%{version}/LICENSE %files devel -f %{name}-devel.files
%defattr(-,root,root)
#%doc CHANGELOG.markdown README.markdown
%if %{with haddock}
%files doc -f %{name}-doc.files
%defattr(-,root,root)
%license LICENSE
%endif
%changelog %changelog
* Sat Dec 02 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 0.0.1-2mamba
- rebuilt with ghc 9.4.8
* Sun Sep 08 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 0.0.1-1mamba * Sun Sep 08 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 0.0.1-1mamba
- package created by silvan using the webbuild interface - package created by silvan using the webbuild interface