Hello community,
here is the log from the commit of package ghc-tasty-expected-failure for
openSUSE:Factory checked in at 2017-06-04 01:58:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-tasty-expected-failure (Old)
and /work/SRC/openSUSE:Factory/.ghc-tasty-expected-failure.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-tasty-expected-failure"
Sun Jun 4 01:58:59 2017 rev:2 rq:499732 version:0.11.0.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-tasty-expected-failure/ghc-tasty-expected-failure.changes
2016-11-02 12:42:42.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-tasty-expected-failure.new/ghc-tasty-expected-failure.changes
2017-06-04 01:59:00.383173541 +0200
@@ -1,0 +2,5 @@
+Thu May 18 09:52:19 UTC 2017 - [email protected]
+
+- Update to version 0.11.0.4 revision 1 with cabal2obs.
+
+-------------------------------------------------------------------
New:
----
tasty-expected-failure.cabal
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-tasty-expected-failure.spec ++++++
--- /var/tmp/diff_new_pack.eF4HHM/_old 2017-06-04 01:59:00.955092744 +0200
+++ /var/tmp/diff_new_pack.eF4HHM/_new 2017-06-04 01:59:00.955092744 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ghc-tasty-expected-failure
#
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -22,16 +22,15 @@
Release: 0
Summary: Mark tasty tests as failure expected
License: MIT
-Group: System/Libraries
+Group: Development/Languages/Other
Url: https://hackage.haskell.org/package/%{pkg_name}
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-rpm-macros
-# Begin cabal-rpm deps:
BuildRequires: ghc-tagged-devel
BuildRequires: ghc-tasty-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
%description
With the function 'Test.Tasty.ExpectedFailure.expectFail' in the provided
@@ -64,16 +63,14 @@
%prep
%setup -q -n %{pkg_name}-%{version}
-
+cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build
-
%install
%ghc_lib_install
-
%post devel
%ghc_pkg_recache
++++++ tasty-expected-failure.cabal ++++++
name: tasty-expected-failure
version: 0.11.0.4
x-revision: 1
synopsis: Mark tasty tests as failure expected
description:
With the function 'Test.Tasty.ExpectedFailure.expectFail' in the provided
module
"Test.Tasty.ExpectedFailure", you can mark that you expect test cases to fail,
and not to pass.
.
This can for example be used for test-driven development: Create the tests,
mark them with 'Test.Tasty.ExpectedFailure.expectFail', and you can still push
to the main branch, without your continuous integration branch failing.
.
Once someone implements the feature or fixes the bug (maybe unknowingly), the
test suite will tell him so, due to the now unexpectedly passing test, and he
can remove the 'Test.Tasty.ExpectedFailure.expectFail' marker.
.
The module also provides 'Test.Tasty.ExpectedFailure.ignoreTest' to avoid
running a test. Both funtions are implemented via the more general
'Test.Tasty.ExpectedFailure.wrapTest', which is also provided.
homepage: http://github.com/nomeata/tasty-expected-failure
license: MIT
license-file: LICENSE
author: Joachim Breitner
maintainer: [email protected]
copyright: 2015 Joachim Breitner
category: Testing
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
tested-with: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.2, GHC ==
7.11.*, GHC == 8.0.*
library
exposed-modules:
Test.Tasty.ExpectedFailure
build-depends:
base >= 4.5 && <4.11,
tagged >= 0.7 && < 0.9,
tasty >= 0.11
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/nomeata/tasty-expected-failure