2019-02-17 14:47:58 +00:00
|
|
|
# generated by cabal-rpm-0.13
|
2015-11-20 10:31:38 +00:00
|
|
|
# https://fedoraproject.org/wiki/Packaging:Haskell
|
|
|
|
|
|
|
|
%global pkg_name xml-conduit
|
2017-02-23 00:39:32 +00:00
|
|
|
%global pkgver %{pkg_name}-%{version}
|
2015-11-20 10:31:38 +00:00
|
|
|
|
|
|
|
%bcond_with tests
|
|
|
|
|
|
|
|
Name: ghc-%{pkg_name}
|
2019-02-21 04:34:15 +00:00
|
|
|
Version: 1.8.0.1
|
2019-07-25 03:16:10 +00:00
|
|
|
Release: 2%{?dist}
|
2015-11-20 10:46:17 +00:00
|
|
|
Summary: XML parsing and rendering with conduit
|
2015-11-20 10:31:38 +00:00
|
|
|
|
|
|
|
License: MIT
|
|
|
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
2019-02-17 14:47:58 +00:00
|
|
|
# Begin cabal-rpm sources:
|
2017-02-23 00:39:32 +00:00
|
|
|
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
2019-02-17 14:47:58 +00:00
|
|
|
# End cabal-rpm sources
|
2015-11-20 10:31:38 +00:00
|
|
|
|
2019-02-17 14:47:58 +00:00
|
|
|
# Begin cabal-rpm deps:
|
2015-11-20 10:31:38 +00:00
|
|
|
BuildRequires: ghc-Cabal-devel
|
|
|
|
BuildRequires: ghc-rpm-macros
|
|
|
|
BuildRequires: ghc-attoparsec-devel
|
|
|
|
BuildRequires: ghc-blaze-html-devel
|
|
|
|
BuildRequires: ghc-blaze-markup-devel
|
|
|
|
BuildRequires: ghc-bytestring-devel
|
|
|
|
BuildRequires: ghc-conduit-devel
|
|
|
|
BuildRequires: ghc-conduit-extra-devel
|
|
|
|
BuildRequires: ghc-containers-devel
|
2018-01-24 15:01:53 +00:00
|
|
|
BuildRequires: ghc-data-default-class-devel
|
2015-11-20 10:31:38 +00:00
|
|
|
BuildRequires: ghc-deepseq-devel
|
|
|
|
BuildRequires: ghc-resourcet-devel
|
|
|
|
BuildRequires: ghc-text-devel
|
|
|
|
BuildRequires: ghc-transformers-devel
|
|
|
|
BuildRequires: ghc-xml-types-devel
|
|
|
|
%if %{with tests}
|
|
|
|
BuildRequires: ghc-HUnit-devel
|
2019-02-21 04:34:15 +00:00
|
|
|
BuildRequires: ghc-doctest-devel
|
2015-11-20 10:31:38 +00:00
|
|
|
BuildRequires: ghc-hspec-devel
|
|
|
|
%endif
|
|
|
|
# End cabal-rpm deps
|
|
|
|
|
|
|
|
%description
|
|
|
|
This package provides parsing and rendering functions for XML. It is
|
|
|
|
based on the datatypes found in the xml-types package. This package is
|
|
|
|
broken up into the following modules:
|
|
|
|
|
|
|
|
* Text.XML: DOM-based parsing and rendering.
|
|
|
|
This is the most commonly used module.
|
|
|
|
|
|
|
|
* Text.XML.Cursor: A wrapper around Text.XML which allows bidirectional
|
|
|
|
traversing of the DOM, similar to XPath. (Note: Text.XML.Cursor.Generic
|
|
|
|
is the same concept, but will work with any node representation.)
|
|
|
|
|
|
|
|
* Text.XML.Unresolved: A slight modification to Text.XML which does not
|
|
|
|
require all entities to be resolved at parsing. The datatypes are
|
|
|
|
slightly more complicated here, and therefore this module is only
|
|
|
|
recommended when you need to deal directly with raw entities.
|
|
|
|
|
|
|
|
* Text.XML.Stream.Parse: Streaming parser, including some streaming
|
|
|
|
parser combinators.
|
|
|
|
|
|
|
|
* Text.XML.Stream.Render: Streaming renderer.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Haskell %{pkg_name} library development files
|
|
|
|
Provides: %{name}-static = %{version}-%{release}
|
2018-01-24 13:12:23 +00:00
|
|
|
Provides: %{name}-doc = %{version}-%{release}
|
|
|
|
%if %{defined ghc_version}
|
2015-11-20 10:31:38 +00:00
|
|
|
Requires: ghc-compiler = %{ghc_version}
|
|
|
|
Requires(post): ghc-compiler = %{ghc_version}
|
|
|
|
Requires(postun): ghc-compiler = %{ghc_version}
|
2018-01-24 13:12:23 +00:00
|
|
|
%endif
|
2015-11-20 10:31:38 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package provides the Haskell %{pkg_name} library development files.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2019-02-17 14:47:58 +00:00
|
|
|
# Begin cabal-rpm setup:
|
2017-02-23 00:39:32 +00:00
|
|
|
%setup -q -n %{pkgver}
|
2019-02-17 14:47:58 +00:00
|
|
|
# End cabal-rpm setup
|
2015-11-20 10:31:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
2019-02-17 14:47:58 +00:00
|
|
|
# Begin cabal-rpm build:
|
2015-11-20 10:31:38 +00:00
|
|
|
%ghc_lib_build
|
2019-02-17 14:47:58 +00:00
|
|
|
# End cabal-rpm build
|
2015-11-20 10:31:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2019-02-17 14:47:58 +00:00
|
|
|
# Begin cabal-rpm install
|
2015-11-20 10:31:38 +00:00
|
|
|
%ghc_lib_install
|
2019-02-17 14:47:58 +00:00
|
|
|
# End cabal-rpm install
|
2015-11-20 10:31:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%check
|
2016-09-27 10:15:57 +00:00
|
|
|
%cabal_test
|
2015-11-20 10:31:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%post devel
|
|
|
|
%ghc_pkg_recache
|
|
|
|
|
|
|
|
|
|
|
|
%postun devel
|
|
|
|
%ghc_pkg_recache
|
|
|
|
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
2019-02-17 14:47:58 +00:00
|
|
|
# Begin cabal-rpm files:
|
2015-11-20 10:31:38 +00:00
|
|
|
%license LICENSE
|
2019-02-17 14:47:58 +00:00
|
|
|
# End cabal-rpm files
|
2015-11-20 10:31:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files devel -f %{name}-devel.files
|
2019-02-17 14:47:58 +00:00
|
|
|
%doc ChangeLog.md README.md
|
2015-11-20 10:31:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2019-07-25 03:16:10 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-02-21 04:34:15 +00:00
|
|
|
* Thu Feb 21 2019 Jens Petersen <petersen@redhat.com> - 1.8.0.1-1
|
|
|
|
- update to 1.8.0.1
|
|
|
|
|
2019-02-17 14:47:58 +00:00
|
|
|
* Sun Feb 17 2019 Jens Petersen <petersen@redhat.com> - 1.8.0-3
|
|
|
|
- refresh to cabal-rpm-0.13
|
|
|
|
|
2019-01-31 22:15:57 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-22 14:38:43 +00:00
|
|
|
* Sun Jul 22 2018 Jens Petersen <petersen@redhat.com> - 1.8.0-1
|
|
|
|
- update to 1.8.0
|
|
|
|
|
2018-07-13 02:17:18 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-03-07 01:00:08 +00:00
|
|
|
* Tue Mar 06 2018 Adam Williamson <awilliam@redhat.com> - 1.7.0.1-3
|
|
|
|
- Rebuild for ghc-conduit-extra bump
|
|
|
|
|
2018-02-07 12:22:46 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-24 15:01:53 +00:00
|
|
|
* Wed Jan 24 2018 Jens Petersen <petersen@redhat.com> - 1.7.0.1-1
|
|
|
|
- update to 1.7.0.1
|
|
|
|
|
2017-08-02 21:37:52 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 10:02:17 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-23 00:39:32 +00:00
|
|
|
* Thu Feb 23 2017 Jens Petersen <petersen@redhat.com> - 1.4.0.4-1
|
|
|
|
- update to 1.4.0.4
|
|
|
|
|
2017-02-10 10:53:53 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-06-26 11:20:43 +00:00
|
|
|
* Sun Jun 26 2016 Jens Petersen <petersen@redhat.com> - 1.3.5-1
|
|
|
|
- update to 1.3.5
|
|
|
|
|
2016-02-03 21:49:33 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-20 10:46:17 +00:00
|
|
|
* Fri Nov 20 2015 Jens Petersen <petersen@redhat.com> - 1.3.2-1
|
|
|
|
- update to 1.3.2
|
|
|
|
|
2015-11-20 10:31:38 +00:00
|
|
|
* Fri Sep 18 2015 Jens Petersen <petersen@redhat.com> - 1.3.1-1
|
|
|
|
- update to 1.3.1
|
|
|
|
|
|
|
|
* Wed May 20 2015 Jens Petersen <petersen@redhat.com> - 1.2.6-1
|
|
|
|
- description
|
|
|
|
|
|
|
|
* Wed May 20 2015 Fedora Haskell SIG <haskell@lists.fedoraproject.org> - 1.2.6
|
|
|
|
- spec file generated by cabal-rpm-0.9.5.50
|