update to 1.2.0.1
This commit is contained in:
parent
7fcf128784
commit
471a12d825
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
||||
/feed-1.0.0.0.tar.gz
|
||||
/feed-1.0.1.0.tar.gz
|
||||
/feed-1.2.0.1.tar.gz
|
||||
|
@ -1,140 +0,0 @@
|
||||
name: feed
|
||||
version: 1.0.1.0
|
||||
x-revision: 1
|
||||
license: BSD3
|
||||
license-file: LICENSE
|
||||
category: Text
|
||||
synopsis: Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds.
|
||||
description: Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds.
|
||||
.
|
||||
To help working with the multiple feed formats we've
|
||||
ended up with, this set of modules provides parsers,
|
||||
pretty printers and some utility code for querying
|
||||
and just generally working with a concrete representation
|
||||
of feeds in Haskell.
|
||||
.
|
||||
See here for an example of how to create an Atom feed:
|
||||
<https://github.com/bergmark/feed/blob/master/tests/Example/CreateAtom.hs>
|
||||
.
|
||||
For basic reading and editing of feeds, consult
|
||||
the documentation of the Text.Feed.* hierarchy.
|
||||
author: Sigbjorn Finne <sof@forkIO.com>
|
||||
maintainer: Adam Bergmark <adam@bergmark.nl>
|
||||
homepage: https://github.com/bergmark/feed
|
||||
bug-reports: https://github.com/bergmark/feed/issues
|
||||
cabal-version: >= 1.8
|
||||
build-type: Simple
|
||||
tested-with:
|
||||
GHC == 7.4.2
|
||||
, GHC == 7.6.3
|
||||
, GHC == 7.8.4
|
||||
, GHC == 7.10.3
|
||||
, GHC == 8.0.2
|
||||
, GHC == 8.2.1
|
||||
, GHC == 8.4.1
|
||||
, GHC == 8.6.1
|
||||
data-files:
|
||||
tests/files/*.xml
|
||||
extra-source-files:
|
||||
README.md
|
||||
CHANGELOG.md
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: https://github.com/bergmark/feed.git
|
||||
|
||||
library
|
||||
ghc-options: -Wall
|
||||
hs-source-dirs: src
|
||||
extensions:
|
||||
NoImplicitPrelude
|
||||
OverloadedStrings
|
||||
exposed-modules:
|
||||
Text.Atom.Feed
|
||||
Text.Atom.Feed.Export
|
||||
Text.Atom.Feed.Import
|
||||
Text.Atom.Feed.Link
|
||||
Text.Atom.Feed.Validate
|
||||
Text.Atom.Pub
|
||||
Text.Atom.Pub.Export
|
||||
Text.DublinCore.Types
|
||||
Text.Feed.Constructor
|
||||
Text.Feed.Export
|
||||
Text.Feed.Import
|
||||
Text.Feed.Query
|
||||
Text.Feed.Translate
|
||||
Text.Feed.Types
|
||||
Text.Feed.Util
|
||||
Text.RSS.Export
|
||||
Text.RSS.Import
|
||||
Text.RSS.Syntax
|
||||
Text.RSS1.Export
|
||||
Text.RSS1.Import
|
||||
Text.RSS1.Syntax
|
||||
Text.RSS1.Utils
|
||||
other-modules:
|
||||
Data.Text.Util
|
||||
Data.XML.Compat
|
||||
build-depends:
|
||||
base >= 4 && < 4.13
|
||||
, base-compat >= 0.9 && < 0.11
|
||||
, bytestring >= 0.9 && < 0.11
|
||||
, old-locale == 1.0.*
|
||||
, old-time >= 1 && < 1.2
|
||||
, safe == 0.3.*
|
||||
, text < 1.3
|
||||
, time < 1.9
|
||||
, time-locale-compat == 0.1.*
|
||||
, utf8-string < 1.1
|
||||
, xml-types >= 0.3.6 && < 0.4
|
||||
, xml-conduit >= 1.3 && < 1.9
|
||||
|
||||
test-suite tests
|
||||
ghc-options: -Wall
|
||||
hs-source-dirs: tests
|
||||
main-is: Main.hs
|
||||
type: exitcode-stdio-1.0
|
||||
extensions:
|
||||
NoImplicitPrelude
|
||||
OverloadedStrings
|
||||
other-modules:
|
||||
Paths_feed
|
||||
Example
|
||||
Example.CreateAtom
|
||||
Text.Atom.Tests
|
||||
Text.Feed.Util.Tests
|
||||
Text.RSS.Equals
|
||||
Text.RSS.Export.Tests
|
||||
Text.RSS.Import.Tests
|
||||
Text.RSS.Tests
|
||||
Text.RSS.Utils
|
||||
build-depends:
|
||||
base >= 4 && < 4.13
|
||||
, base-compat >= 0.9 && < 0.11
|
||||
, HUnit >= 1.2 && < 1.7
|
||||
, feed
|
||||
, old-time >= 1 && < 1.2
|
||||
, test-framework == 0.8.*
|
||||
, test-framework-hunit == 0.3.*
|
||||
, text < 1.3
|
||||
, time < 1.9
|
||||
, xml-types >= 0.3.6 && < 0.4
|
||||
, xml-conduit >= 1.3 && < 1.9
|
||||
|
||||
test-suite readme
|
||||
ghc-options: -Wall -pgmL markdown-unlit
|
||||
main-is: README.lhs
|
||||
extensions:
|
||||
NoImplicitPrelude
|
||||
OverloadedStrings
|
||||
type: exitcode-stdio-1.0
|
||||
build-depends:
|
||||
base >= 4 && < 4.13
|
||||
, base-compat >= 0.9 && < 0.11
|
||||
, text
|
||||
, xml-types
|
||||
, feed
|
||||
, xml-conduit
|
||||
, xml-types
|
||||
build-tool-depends:
|
||||
markdown-unlit:markdown-unlit >= 0.4 && < 0.6
|
@ -5,15 +5,14 @@
|
||||
%global pkgver %{pkg_name}-%{version}
|
||||
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 1.0.1.0
|
||||
Release: 4%{?dist}
|
||||
Version: 1.2.0.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds
|
||||
|
||||
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:
|
||||
@ -81,7 +80,6 @@ This package provides the Haskell %{pkg_name} profiling library.
|
||||
%prep
|
||||
# Begin cabal-rpm setup:
|
||||
%setup -q -n %{pkgver}
|
||||
cp -bp %{SOURCE1} %{pkg_name}.cabal
|
||||
# End cabal-rpm setup
|
||||
|
||||
|
||||
@ -130,6 +128,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Feb 14 2020 Jens Petersen <petersen@redhat.com> - 1.2.0.1-1
|
||||
- update to 1.2.0.1
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (feed-1.0.1.0.tar.gz) = dd9d96a4fe29df397a5e513c352583548797821c7b07a827a12d967222b30b17d67e928a43f5ff5d23bc955e2e654a759f88ff463413102747db471236dc0f85
|
||||
SHA512 (feed-1.2.0.1.tar.gz) = 307b49ba9bec236960896ebbc1b958430f260065ec338df08b9c24f24ca67555b3d1e1fc9f251ba3459d30d2ac21f5199687542ee0e57ca98a59237d888ee62e
|
||||
|
Loading…
Reference in New Issue
Block a user