Hello community, here is the log from the commit of package ghc-groom for openSUSE:Factory checked in at 2017-06-04 01:53:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-groom (Old) and /work/SRC/openSUSE:Factory/.ghc-groom.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-groom" Sun Jun 4 01:53:37 2017 rev:2 rq:494159 version:0.1.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-groom/ghc-groom.changes 2017-03-08 00:51:30.761393089 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-groom.new/ghc-groom.changes 2017-06-04 01:53:38.888593567 +0200 @@ -1,0 +2,5 @@ +Mon Apr 24 12:33:21 UTC 2017 - [email protected] + +- Update to version 0.1.2.1 with cabal2obs. + +------------------------------------------------------------------- Old: ---- groom-0.1.2.tar.gz New: ---- groom-0.1.2.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-groom.spec ++++++ --- /var/tmp/diff_new_pack.PrMEIt/_old 2017-06-04 01:53:39.376524631 +0200 +++ /var/tmp/diff_new_pack.PrMEIt/_new 2017-06-04 01:53:39.376524631 +0200 @@ -1,7 +1,7 @@ # # spec file for package ghc-groom # -# 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 @@ -18,19 +18,18 @@ %global pkg_name groom Name: ghc-%{pkg_name} -Version: 0.1.2 +Version: 0.1.2.1 Release: 0 Summary: Pretty printing for well-behaved Show instances -License: SUSE-Public-Domain -Group: System/Libraries +License: BSD-3-Clause +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 +BuildRequires: chrpath BuildRequires: ghc-Cabal-devel -# Begin cabal-rpm deps: BuildRequires: ghc-haskell-src-exts-devel BuildRequires: ghc-rpm-macros BuildRoot: %{_tmppath}/%{name}-%{version}-build -# End cabal-rpm deps %description Automatically derived Show instances are an easy way to inspect data in your @@ -64,14 +63,12 @@ %prep %setup -q -n %{pkg_name}-%{version} - %build %ghc_lib_build - %install %ghc_lib_install - +%ghc_fix_rpath %{pkg_name}-%{version} %post devel %ghc_pkg_recache @@ -81,6 +78,8 @@ %files -f %{name}.files %defattr(-,root,root,-) +%doc LICENSE +%{_bindir}/%{pkg_name} %files devel -f %{name}-devel.files %defattr(-,root,root,-) ++++++ groom-0.1.2.tar.gz -> groom-0.1.2.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/groom-0.1.2/LICENSE new/groom-0.1.2.1/LICENSE --- old/groom-0.1.2/LICENSE 1970-01-01 01:00:00.000000000 +0100 +++ new/groom-0.1.2.1/LICENSE 2017-04-19 04:26:34.000000000 +0200 @@ -0,0 +1,27 @@ +Copyright (c) Edward Z. Yang 2017 + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. Neither the name of the author nor the names of his contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/groom-0.1.2/groom.cabal new/groom-0.1.2.1/groom.cabal --- old/groom-0.1.2/groom.cabal 2013-04-29 03:22:37.000000000 +0200 +++ new/groom-0.1.2.1/groom.cabal 2017-04-19 04:26:34.000000000 +0200 @@ -1,5 +1,5 @@ Name: groom -Version: 0.1.2 +Version: 0.1.2.1 Synopsis: Pretty printing for well-behaved Show instances. Description: Automatically derived Show instances are an easy way @@ -24,14 +24,20 @@ Groom works only on Show instances that output valid Haskell code; if Groom can't understand its input, it will not make any changes. -License: PublicDomain +License: BSD3 +License-File: LICENSE Author: Edward Z. Yang Maintainer: [email protected] Category: Text Build-type: Simple -Cabal-version: >=1.2 +Cabal-version: >=1.8 Library Exposed-modules: Text.Groom Build-depends: haskell-src-exts >= 1.0.0, base >= 3 && < 5 + +executable groom + main-is: Main.hs + hs-source-dirs: main + build-depends: groom, base diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/groom-0.1.2/main/Main.hs new/groom-0.1.2.1/main/Main.hs --- old/groom-0.1.2/main/Main.hs 1970-01-01 01:00:00.000000000 +0100 +++ new/groom-0.1.2.1/main/Main.hs 2017-04-19 04:26:34.000000000 +0200 @@ -0,0 +1,2 @@ +import Text.Groom +main = getContents >>= putStrLn . groomString
