osc copypac from project:devel:languages:haskell:ghc-9.6.x package:ghc-feed revision:5, using keep-link

OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-feed?expand=0&rev=31
This commit is contained in:
Peter Simons 2023-11-22 09:17:20 +00:00 committed by Git OBS Bridge
parent f4e04f603e
commit 1d3f0df6a4
2 changed files with 166 additions and 171 deletions

View File

@ -1,166 +1,166 @@
name: feed name: feed
version: 1.3.2.1 version: 1.3.2.1
x-revision: 2 x-revision: 2
license: BSD3 license: BSD3
license-file: LICENSE license-file: LICENSE
category: Text category: Text
synopsis: Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds. 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. description: Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds.
. .
To help working with the multiple feed formats we've To help working with the multiple feed formats we've
ended up with, this set of modules provides parsers, ended up with, this set of modules provides parsers,
pretty printers and some utility code for querying pretty printers and some utility code for querying
and just generally working with a concrete representation and just generally working with a concrete representation
of feeds in Haskell. of feeds in Haskell.
. .
See here for an example of how to create an Atom feed: See here for an example of how to create an Atom feed:
<https://github.com/haskell-party/feed/blob/master/tests/Example/CreateAtom.hs> <https://github.com/haskell-party/feed/blob/master/tests/Example/CreateAtom.hs>
. .
For basic reading and editing of feeds, consult For basic reading and editing of feeds, consult
the documentation of the Text.Feed.* hierarchy. the documentation of the Text.Feed.* hierarchy.
author: Sigbjorn Finne <sof@forkIO.com> author: Sigbjorn Finne <sof@forkIO.com>
maintainer: Adam Bergmark <adam@bergmark.nl> maintainer: Adam Bergmark <adam@bergmark.nl>
homepage: https://github.com/haskell-party/feed homepage: https://github.com/haskell-party/feed
bug-reports: https://github.com/haskell-party/feed/issues bug-reports: https://github.com/haskell-party/feed/issues
cabal-version: 2.0 cabal-version: 2.0
build-type: Simple build-type: Simple
tested-with: tested-with:
GHC == 7.6.3 GHC == 7.6.3
, GHC == 7.8.4 , GHC == 7.8.4
, GHC == 7.10.3 , GHC == 7.10.3
, GHC == 8.0.2 , GHC == 8.0.2
, GHC == 8.2.2 , GHC == 8.2.2
, GHC == 8.4.4 , GHC == 8.4.4
, GHC == 8.6.5 , GHC == 8.6.5
, GHC == 8.8.4 , GHC == 8.8.4
, GHC == 8.10.7 , GHC == 8.10.7
, GHC == 9.0.1 , GHC == 9.0.1
, GHC == 9.2.1 , GHC == 9.2.1
data-files: data-files:
tests/files/*.xml tests/files/*.xml
extra-source-files: extra-source-files:
README.md README.md
CHANGELOG.md CHANGELOG.md
source-repository head source-repository head
type: git type: git
location: https://github.com/haskell-party/feed.git location: https://github.com/haskell-party/feed.git
library library
ghc-options: -Wall ghc-options: -Wall
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010
default-extensions: default-extensions:
NoImplicitPrelude NoImplicitPrelude
OverloadedStrings OverloadedStrings
exposed-modules: exposed-modules:
Text.Atom.Feed Text.Atom.Feed
Text.Atom.Feed.Export Text.Atom.Feed.Export
Text.Atom.Feed.Import Text.Atom.Feed.Import
Text.Atom.Feed.Link Text.Atom.Feed.Link
Text.Atom.Feed.Validate Text.Atom.Feed.Validate
Text.Atom.Pub Text.Atom.Pub
Text.Atom.Pub.Export Text.Atom.Pub.Export
Text.DublinCore.Types Text.DublinCore.Types
Text.Feed.Constructor Text.Feed.Constructor
Text.Feed.Export Text.Feed.Export
Text.Feed.Import Text.Feed.Import
Text.Feed.Query Text.Feed.Query
Text.Feed.Translate Text.Feed.Translate
Text.Feed.Types Text.Feed.Types
Text.Feed.Util Text.Feed.Util
Text.RSS.Export Text.RSS.Export
Text.RSS.Import Text.RSS.Import
Text.RSS.Syntax Text.RSS.Syntax
Text.RSS1.Export Text.RSS1.Export
Text.RSS1.Import Text.RSS1.Import
Text.RSS1.Syntax Text.RSS1.Syntax
Text.RSS1.Utils Text.RSS1.Utils
other-modules: other-modules:
Data.Text.Util Data.Text.Util
Data.XML.Compat Data.XML.Compat
build-depends: build-depends:
base >= 4 && < 4.19 base >= 4 && < 4.19
, base-compat >= 0.9 && < 0.14 , base-compat >= 0.9 && < 0.14
, bytestring >= 0.9 && < 0.13 , bytestring >= 0.9 && < 0.13
, old-locale == 1.0.* , old-locale == 1.0.*
, old-time >= 1 && < 1.2 , old-time >= 1 && < 1.2
, safe == 0.3.* , safe == 0.3.*
, text < 1.3 || ==2.0.* , text < 1.3 || ==2.0.*
, time < 1.13 , time < 1.13
, time-locale-compat == 0.1.* , time-locale-compat == 0.1.*
, utf8-string < 1.1 , utf8-string < 1.1
, xml-types >= 0.3.6 && < 0.4 , xml-types >= 0.3.6 && < 0.4
, xml-conduit >= 1.3 && < 1.10 , xml-conduit >= 1.3 && < 1.10
test-suite tests test-suite tests
ghc-options: -Wall ghc-options: -Wall
hs-source-dirs: tests hs-source-dirs: tests
main-is: Main.hs main-is: Main.hs
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
default-language: Haskell2010 default-language: Haskell2010
default-extensions: default-extensions:
NoImplicitPrelude NoImplicitPrelude
OverloadedStrings OverloadedStrings
autogen-modules: autogen-modules:
Paths_feed Paths_feed
other-modules: other-modules:
Paths_feed Paths_feed
Example Example
Example.CreateAtom Example.CreateAtom
ImportExport ImportExport
Text.Atom.Tests Text.Atom.Tests
Text.Atom.Validate.Tests Text.Atom.Validate.Tests
Text.Feed.Util.Tests Text.Feed.Util.Tests
Text.RSS.Equals Text.RSS.Equals
Text.RSS.Export.Tests Text.RSS.Export.Tests
Text.RSS.Import.Tests Text.RSS.Import.Tests
Text.RSS.Tests Text.RSS.Tests
Text.RSS.Utils Text.RSS.Utils
build-depends: build-depends:
base >= 4.6 base >= 4.6
, base-compat , base-compat
, HUnit >= 1.2 && < 1.7 , HUnit >= 1.2 && < 1.7
, feed , feed
, old-time >= 1 && < 1.2 , old-time >= 1 && < 1.2
, syb , syb
, test-framework == 0.8.* , test-framework == 0.8.*
, test-framework-hunit == 0.3.* , test-framework-hunit == 0.3.*
, text < 1.3 || ==2.0.* , text < 1.3 || ==2.0.*
, time < 1.13 , time < 1.13
, xml-types >= 0.3.6 && < 0.4 , xml-types >= 0.3.6 && < 0.4
, xml-conduit >= 1.3 && < 1.10 , xml-conduit >= 1.3 && < 1.10
test-suite readme test-suite readme
ghc-options: -Wall -pgmL markdown-unlit ghc-options: -Wall -pgmL markdown-unlit
main-is: README.lhs main-is: README.lhs
default-language: Haskell2010 default-language: Haskell2010
default-extensions: default-extensions:
NoImplicitPrelude NoImplicitPrelude
OverloadedStrings OverloadedStrings
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
build-depends: build-depends:
base >= 4.6 base >= 4.6
, base-compat , base-compat
, text , text
, feed , feed
, xml-conduit , xml-conduit
, xml-types , xml-types
build-tool-depends: build-tool-depends:
markdown-unlit:markdown-unlit >= 0.4 && < 0.6 markdown-unlit:markdown-unlit >= 0.4 && < 0.6
test-suite readme-doctests test-suite readme-doctests
hs-source-dirs: tests hs-source-dirs: tests
main-is: doctest-driver.hs main-is: doctest-driver.hs
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
default-language: Haskell2010 default-language: Haskell2010
if impl(ghc < 8) if impl(ghc < 8)
buildable: False buildable: False
build-depends: build-depends:
base >= 4.6 base >= 4.6
, doctest , doctest
, doctest-driver-gen , doctest-driver-gen
, feed , feed
build-tool-depends: build-tool-depends:
markdown-unlit:markdown-unlit >= 0.4 && < 0.6 markdown-unlit:markdown-unlit >= 0.4 && < 0.6
, doctest-driver-gen:doctest-driver-gen , doctest-driver-gen:doctest-driver-gen

View File

@ -1,8 +1,3 @@
-------------------------------------------------------------------
Thu Nov 16 13:26:21 UTC 2023 - Peter Simons <psimons@suse.com>
- Strip CRLF line endings from the bundled Cabal file.
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Aug 4 19:44:22 UTC 2023 - Peter Simons <psimons@suse.com> Fri Aug 4 19:44:22 UTC 2023 - Peter Simons <psimons@suse.com>