osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-feed revision:16, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-feed?expand=0&rev=17
This commit is contained in:
parent
424b186a1b
commit
256998c7a0
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b311c7e0568d6f6186500d18e5e6495222caeb0b550457e7e690626947df634f
|
|
||||||
size 107955
|
|
3
feed-1.3.2.1.tar.gz
Normal file
3
feed-1.3.2.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a8f54072edaaf7e978062b9de94733e8cc43e31b2dda3446f901bf57f1815955
|
||||||
|
size 107015
|
162
feed.cabal
162
feed.cabal
@ -1,162 +0,0 @@
|
|||||||
name: feed
|
|
||||||
version: 1.3.2.0
|
|
||||||
x-revision: 3
|
|
||||||
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: 2.0
|
|
||||||
build-type: Simple
|
|
||||||
tested-with:
|
|
||||||
GHC == 7.6.3
|
|
||||||
, GHC == 7.8.4
|
|
||||||
, GHC == 7.10.3
|
|
||||||
, GHC == 8.0.2
|
|
||||||
, GHC == 8.2.2
|
|
||||||
, GHC == 8.4.4
|
|
||||||
, GHC == 8.6.5
|
|
||||||
, GHC == 8.8.1
|
|
||||||
, GHC == 8.10.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
|
|
||||||
default-language: Haskell2010
|
|
||||||
default-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.17
|
|
||||||
, base-compat >= 0.9 && < 0.13
|
|
||||||
, bytestring >= 0.9 && < 0.12
|
|
||||||
, old-locale == 1.0.*
|
|
||||||
, old-time >= 1 && < 1.2
|
|
||||||
, safe == 0.3.*
|
|
||||||
, text < 1.3
|
|
||||||
, time < 1.12
|
|
||||||
, time-locale-compat == 0.1.*
|
|
||||||
, utf8-string < 1.1
|
|
||||||
, xml-types >= 0.3.6 && < 0.4
|
|
||||||
, xml-conduit >= 1.3 && < 1.10
|
|
||||||
|
|
||||||
test-suite tests
|
|
||||||
ghc-options: -Wall
|
|
||||||
hs-source-dirs: tests
|
|
||||||
main-is: Main.hs
|
|
||||||
type: exitcode-stdio-1.0
|
|
||||||
default-language: Haskell2010
|
|
||||||
default-extensions:
|
|
||||||
NoImplicitPrelude
|
|
||||||
OverloadedStrings
|
|
||||||
autogen-modules:
|
|
||||||
Paths_feed
|
|
||||||
other-modules:
|
|
||||||
Paths_feed
|
|
||||||
Example
|
|
||||||
Example.CreateAtom
|
|
||||||
ImportExport
|
|
||||||
Text.Atom.Tests
|
|
||||||
Text.Atom.Validate.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.6 && < 4.17
|
|
||||||
, base-compat >= 0.9 && < 0.13
|
|
||||||
, HUnit >= 1.2 && < 1.7
|
|
||||||
, feed
|
|
||||||
, old-time >= 1 && < 1.2
|
|
||||||
, syb
|
|
||||||
, test-framework == 0.8.*
|
|
||||||
, test-framework-hunit == 0.3.*
|
|
||||||
, text < 1.3
|
|
||||||
, time < 1.12
|
|
||||||
, xml-types >= 0.3.6 && < 0.4
|
|
||||||
, xml-conduit >= 1.3 && < 1.10
|
|
||||||
|
|
||||||
test-suite readme
|
|
||||||
ghc-options: -Wall -pgmL markdown-unlit
|
|
||||||
main-is: README.lhs
|
|
||||||
default-language: Haskell2010
|
|
||||||
default-extensions:
|
|
||||||
NoImplicitPrelude
|
|
||||||
OverloadedStrings
|
|
||||||
type: exitcode-stdio-1.0
|
|
||||||
build-depends:
|
|
||||||
base >= 4.6
|
|
||||||
, base-compat >= 0.9 && < 0.13
|
|
||||||
, text
|
|
||||||
, feed
|
|
||||||
, xml-conduit
|
|
||||||
, xml-types
|
|
||||||
build-tool-depends:
|
|
||||||
markdown-unlit:markdown-unlit >= 0.4 && < 0.6
|
|
||||||
|
|
||||||
test-suite readme-doctests
|
|
||||||
hs-source-dirs: tests
|
|
||||||
main-is: doctest-driver.hs
|
|
||||||
type: exitcode-stdio-1.0
|
|
||||||
default-language: Haskell2010
|
|
||||||
build-depends:
|
|
||||||
base >= 4.6
|
|
||||||
, doctest
|
|
||||||
, doctest-driver-gen
|
|
||||||
, feed
|
|
||||||
build-tool-depends:
|
|
||||||
markdown-unlit:markdown-unlit >= 0.4 && < 0.6
|
|
||||||
, doctest-driver-gen:doctest-driver-gen
|
|
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Mar 19 23:15:48 UTC 2022 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Update feed to version 1.3.2.1.
|
||||||
|
#### 1.3.2.1
|
||||||
|
* text 2.0 support, thanks to Alexander Batischev.
|
||||||
|
* Moved the repository to https://github.com/haskell-party/
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Nov 20 17:29:02 UTC 2021 - psimons@suse.com
|
Sat Nov 20 17:29:02 UTC 2021 - psimons@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ghc-feed
|
# spec file for package ghc-feed
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,13 +19,12 @@
|
|||||||
%global pkg_name feed
|
%global pkg_name feed
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 1.3.2.0
|
Version: 1.3.2.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds
|
Summary: Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
URL: https://hackage.haskell.org/package/%{pkg_name}
|
URL: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
||||||
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/3.cabal#/%{pkg_name}.cabal
|
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-base-compat-devel
|
BuildRequires: ghc-base-compat-devel
|
||||||
BuildRequires: ghc-bytestring-devel
|
BuildRequires: ghc-bytestring-devel
|
||||||
@ -57,7 +56,7 @@ modules provides parsers, pretty printers and some utility code for querying
|
|||||||
and just generally working with a concrete representation of feeds in Haskell.
|
and just generally working with a concrete representation 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/bergmark/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 the documentation of the
|
For basic reading and editing of feeds, consult the documentation of the
|
||||||
Text.Feed.* hierarchy.
|
Text.Feed.* hierarchy.
|
||||||
@ -74,7 +73,6 @@ This package provides the Haskell %{pkg_name} library development files.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{pkg_name}-%{version}
|
%autosetup -n %{pkg_name}-%{version}
|
||||||
cp -p %{SOURCE1} %{pkg_name}.cabal
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%ghc_lib_build
|
%ghc_lib_build
|
||||||
|
Loading…
Reference in New Issue
Block a user