Hello community,

here is the log from the commit of package ghc-yes-precure5-command for 
openSUSE:Factory checked in at 2017-04-11 09:38:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-yes-precure5-command (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-yes-precure5-command.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-yes-precure5-command"

Tue Apr 11 09:38:06 2017 rev:2 rq:483936 version:5.5.3

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/ghc-yes-precure5-command/ghc-yes-precure5-command.changes
        2017-03-24 01:57:41.103608753 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-yes-precure5-command.new/ghc-yes-precure5-command.changes
   2017-04-11 09:38:08.076653730 +0200
@@ -1,0 +2,5 @@
+Thu Oct 27 15:54:39 UTC 2016 - [email protected]
+
+- Update to version 5.5.3 with cabal2obs.
+
+-------------------------------------------------------------------

Old:
----
  yes-precure5-command-5.5.2.tar.gz

New:
----
  yes-precure5-command-5.5.3.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-yes-precure5-command.spec ++++++
--- /var/tmp/diff_new_pack.JOCz5Q/_old  2017-04-11 09:38:08.660571244 +0200
+++ /var/tmp/diff_new_pack.JOCz5Q/_new  2017-04-11 09:38:08.664570679 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-yes-precure5-command
 #
-# 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
@@ -19,7 +19,7 @@
 %global pkg_name yes-precure5-command
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        5.5.2
+Version:        5.5.3
 Release:        0
 Summary:        Extended yes command to reproduce phrases in Yes! Precure 5
 License:        MIT
@@ -67,7 +67,7 @@
 %install
 %ghc_lib_install
 mv %{buildroot}%{_bindir}/yes %{buildroot}%{_bindir}/yes-precure5
-%ghc_fix_dynamic_rpath yes-precure5
+%ghc_fix_rpath %{pkg_name}-%{version}
 
 %check
 %cabal_test

++++++ yes-precure5-command-5.5.2.tar.gz -> yes-precure5-command-5.5.3.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yes-precure5-command-5.5.2/test/ACME/Yes/PreCure5/GoGo/ParserSpec.hs 
new/yes-precure5-command-5.5.3/test/ACME/Yes/PreCure5/GoGo/ParserSpec.hs
--- old/yes-precure5-command-5.5.2/test/ACME/Yes/PreCure5/GoGo/ParserSpec.hs    
1970-01-01 01:00:00.000000000 +0100
+++ new/yes-precure5-command-5.5.3/test/ACME/Yes/PreCure5/GoGo/ParserSpec.hs    
2014-04-19 09:11:22.000000000 +0200
@@ -0,0 +1,26 @@
+module ACME.Yes.PreCure5.GoGo.ParserSpec where
+
+import ACME.Yes.PreCure5.GoGo.Parser
+import Test.Hspec
+import Control.Monad
+
+spec :: Spec
+spec = do
+  describe "isPreCure5GoGo" $ do
+    it "is not to be blank" $
+      "" `shouldSatisfy` (not . isPreCure5GoGo)
+
+    forM_ wordsToBePreCure5GoGo $ \s ->
+      it ("is to be " ++ s) $ s `shouldSatisfy` isPreCure5GoGo
+
+    forM_ ["PreCure 5", "Yes! PreCure 5 GoGo", "プリキュア5GoGo! お菓子の国のハッピーバースディ♪"] 
$ \s ->
+      it ("is not to be " ++ s) $ s `shouldSatisfy` (not . isPreCure5GoGo)
+
+wordsToBePreCure5GoGo :: [String]
+wordsToBePreCure5GoGo = do
+  precure <- ["プリキュア", "PreCure", "Precure", "precure", "PRECURE"]
+  five <- ["5", "5"]
+  gogo <- ["GoGo", "gogo", "GOGO"]
+  exclamation <- ["", "!", "!"]
+  space <- [" ", ""]
+  return $ precure ++ space ++ five ++ space ++ gogo ++ exclamation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yes-precure5-command-5.5.2/yes-precure5-command.cabal 
new/yes-precure5-command-5.5.3/yes-precure5-command.cabal
--- old/yes-precure5-command-5.5.2/yes-precure5-command.cabal   2015-12-23 
05:34:43.000000000 +0100
+++ new/yes-precure5-command-5.5.3/yes-precure5-command.cabal   2016-10-22 
15:55:10.000000000 +0200
@@ -1,9 +1,9 @@
 name:              yes-precure5-command
-version:           5.5.2
+version:           5.5.3
 license:           MIT
 license-file:      LICENSE
-author:            YAMAMOTO Yuji
-maintainer:        YAMAMOTO Yuji <[email protected]>
+author:            Yuji Yamamoto
+maintainer:        Yuji Yamamoto <[email protected]>
 synopsis:          Extended yes command to reproduce phrases in Yes! Precure 5.
 description:
   Provides extended yes command to reproduce phrases in Yes! Precure 5 or Yes! 
PreCure5 GoGo!
@@ -59,6 +59,7 @@
   main-is:        Spec.hs
   other-modules:
       ACME.Yes.PreCure5.ParserSpec
+      ACME.Yes.PreCure5.GoGo.ParserSpec
     , ACME.Yes.PreCure5.GoGo.ProfilesSpec
   build-depends:
       base == 4.*


Reply via email to