Accepting request 877675 from devel:languages:haskell
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/877675 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-split?expand=0&rev=23
This commit is contained in:
commit
6fe58f0bee
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 23 18:11:31 UTC 2021 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update split to version 0.2.3.4 revision 1.
|
||||||
|
Upstream has revised the Cabal build instructions on Hackage.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ghc-split
|
# spec file for package ghc-split
|
||||||
#
|
#
|
||||||
# Copyright (c) 2020 SUSE LLC
|
# Copyright (c) 2021 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
|
||||||
@ -25,6 +25,7 @@ Summary: Combinator library for splitting lists
|
|||||||
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/1.cabal#/%{pkg_name}.cabal
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-rpm-macros
|
BuildRequires: ghc-rpm-macros
|
||||||
ExcludeArch: %{ix86}
|
ExcludeArch: %{ix86}
|
||||||
@ -62,6 +63,7 @@ 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
|
||||||
|
58
split.cabal
Normal file
58
split.cabal
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
Name: split
|
||||||
|
Version: 0.2.3.4
|
||||||
|
x-revision: 1
|
||||||
|
Stability: stable
|
||||||
|
|
||||||
|
Description: A collection of various methods for splitting
|
||||||
|
lists into parts, akin to the \"split\" function
|
||||||
|
found in several mainstream languages. Here is
|
||||||
|
its tale:
|
||||||
|
.
|
||||||
|
Once upon a time the standard "Data.List" module
|
||||||
|
held no function for splitting a list into parts
|
||||||
|
according to a delimiter. Many a brave
|
||||||
|
lambda-knight strove to add such a function, but
|
||||||
|
their striving was in vain, for Lo, the Supreme
|
||||||
|
Council fell to bickering amongst themselves what
|
||||||
|
was to be the essential nature of the One True
|
||||||
|
Function which could cleave a list in twain (or
|
||||||
|
thrain, or any required number of parts).
|
||||||
|
.
|
||||||
|
And thus came to pass the split package,
|
||||||
|
comprising divers functions for splitting a list
|
||||||
|
asunder, each according to its nature. And the
|
||||||
|
Supreme Council had no longer any grounds for
|
||||||
|
argument, for the favored method of each was
|
||||||
|
contained therein.
|
||||||
|
.
|
||||||
|
To get started, see the "Data.List.Split" module.
|
||||||
|
Synopsis: Combinator library for splitting lists.
|
||||||
|
License: BSD3
|
||||||
|
License-file: LICENSE
|
||||||
|
Copyright: (c) Brent Yorgey, Louis Wasserman 2008-2012
|
||||||
|
Extra-source-files: README, test/Properties.hs, CHANGES
|
||||||
|
Author: Brent Yorgey
|
||||||
|
Maintainer: byorgey@gmail.com
|
||||||
|
Category: List
|
||||||
|
Build-type: Simple
|
||||||
|
Cabal-Version: >= 1.10
|
||||||
|
Tested-with: GHC ==7.0.4 || ==7.2.2 || ==7.4.2 || ==7.6.3 || ==7.8.4 || ==7.10.3 || ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.4 || ==9.0.1
|
||||||
|
Bug-reports: https://github.com/byorgey/split/issues
|
||||||
|
|
||||||
|
Test-suite split-tests
|
||||||
|
type: exitcode-stdio-1.0
|
||||||
|
main-is: Properties.hs
|
||||||
|
build-depends: base, QuickCheck >= 2.4, split
|
||||||
|
default-language: Haskell2010
|
||||||
|
Hs-source-dirs: test
|
||||||
|
|
||||||
|
Source-repository head
|
||||||
|
type: git
|
||||||
|
location: http://github.com/byorgey/split.git
|
||||||
|
|
||||||
|
Library
|
||||||
|
ghc-options: -Wall
|
||||||
|
build-depends: base < 4.16
|
||||||
|
exposed-modules: Data.List.Split, Data.List.Split.Internals
|
||||||
|
default-language: Haskell2010
|
||||||
|
Hs-source-dirs: src
|
Loading…
Reference in New Issue
Block a user