Hello community,

here is the log from the commit of package ghc-clay for openSUSE:Factory 
checked in at 2016-09-25 14:38:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-clay (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-clay.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-clay"

Changes:
--------
New Changes file:

--- /dev/null   2016-09-15 12:42:18.240042505 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-clay.new/ghc-clay.changes   2016-09-25 
14:38:11.000000000 +0200
@@ -0,0 +1,5 @@
+-------------------------------------------------------------------
+Sun Jul 10 17:32:58 UTC 2016 - [email protected]
+
+- Update to version 0.10.1 revision 1 with cabal2obs.
+

New:
----
  1.cabal
  clay-0.10.1.tar.gz
  ghc-clay.changes
  ghc-clay.spec

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

Other differences:
------------------
++++++ ghc-clay.spec ++++++
#
# spec file for package ghc-clay
#
# Copyright (c) 2016 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


%global pkg_name clay
%bcond_with tests
Name:           ghc-%{pkg_name}
Version:        0.10.1
Release:        0
Summary:        CSS preprocessor as embedded Haskell
License:        BSD-3-Clause
Group:          System/Libraries
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
BuildRequires:  ghc-Cabal-devel
# Begin cabal-rpm deps:
BuildRequires:  ghc-mtl-devel
BuildRequires:  ghc-rpm-macros
BuildRequires:  ghc-text-devel
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
%if %{with tests}
BuildRequires:  ghc-HUnit-devel
BuildRequires:  ghc-test-framework-devel
BuildRequires:  ghc-test-framework-hunit-devel
%endif
# End cabal-rpm deps

%description
Clay is a CSS preprocessor like LESS and Sass, but implemented as an embedded
domain specific language (EDSL) in Haskell. This means that all CSS selectors
and style rules are first class Haskell functions, which makes reuse and
composability easy.

The project is described on <http://fvisser.nl/clay>.

The API documentation can be found in the top level module "Clay".

> 0.10 -> 0.10.1 > - Expose a render function for single selectors. > - Added
super for vertical-align. > - Added support for border-collapse. > - Allow
initial for the content property. > - Added support for CSS import. > Thanks to
Heather, Collin J. Doering, Fraser Murray and Jonathan Fischoff.

%package devel
Summary:        Haskell %{pkg_name} library development files
Group:          Development/Libraries/Other
Requires:       %{name} = %{version}-%{release}
Requires:       ghc-compiler = %{ghc_version}
Requires(post): ghc-compiler = %{ghc_version}
Requires(postun): ghc-compiler = %{ghc_version}

%description devel
This package provides the Haskell %{pkg_name} library development files.

%prep
%setup -q -n %{pkg_name}-%{version}
cp -p %{SOURCE1} %{pkg_name}.cabal


%build
%ghc_lib_build


%install
%ghc_lib_install


%check
%if %{with tests}
%{cabal} test
%endif


%post devel
%ghc_pkg_recache

%postun devel
%ghc_pkg_recache

%files -f %{name}.files
%defattr(-,root,root,-)
%doc LICENSE

%files devel -f %{name}-devel.files
%defattr(-,root,root,-)

%changelog
++++++ 1.cabal ++++++
Name:     clay
Version:  0.10.1
x-revision: 1
Synopsis: CSS preprocessor as embedded Haskell.
Description:
  Clay is a CSS preprocessor like LESS and Sass, but implemented as an embedded
  domain specific language (EDSL) in Haskell. This means that all CSS selectors
  and style rules are first class Haskell functions, which makes reuse and
  composability easy.
  .
  The project is described on <http://fvisser.nl/clay>.
  .
  The API documentation can be found in the top level module "Clay".
  .
  > 0.10 -> 0.10.1
  > - Expose a render function for single selectors.
  > - Added super for vertical-align.
  > - Added support for border-collapse.
  > - Allow initial for the content property.
  > - Added support for CSS import.
  > Thanks to Heather, Collin J. Doering, Fraser Murray and Jonathan Fischoff.


Author:        Sebastiaan Visser
Maintainer:    Sebastiaan Visser <[email protected]>
Homepage:      http://fvisser.nl/clay
Bug-Reports:   http://github.com/sebastiaanvisser/clay/issues

License:       BSD3
License-File:  LICENSE
Category:      Web, Graphics
Cabal-Version: >= 1.8
Build-Type:    Simple

Source-Repository head
  Type:     git
  Location: git://github.com/sebastiaanvisser/clay.git

Library
  HS-Source-Dirs: src

  Exposed-Modules:
    Clay
    Clay.Animation
    Clay.Attributes
    Clay.Background
    Clay.Border
    Clay.Box
    Clay.Color
    Clay.Common
    Clay.Dynamic
    Clay.Display
    Clay.Elements
    Clay.Filter
    Clay.Font
    Clay.FontFace
    Clay.Geometry
    Clay.Gradient
    Clay.List
    Clay.Media
    Clay.Mask
    Clay.Property
    Clay.Pseudo
    Clay.Render
    Clay.Selector
    Clay.Size
    Clay.Stylesheet
    Clay.Text
    Clay.Time
    Clay.Transform
    Clay.Transition

  GHC-Options: -Wall
  Build-Depends:
    base  >= 4.5  && < 5,
    mtl   >= 1    && < 2.3,
    text  >= 0.11 && < 1.3

Test-Suite Test-Clay
  Type: exitcode-stdio-1.0
  HS-Source-Dirs: src
  Main-Is: Test.hs
  Build-Depends:
    base                 >= 4.5  && < 5,
    mtl                  >= 1    && < 2.3,
    text                 >= 0.11 && < 1.3,
    HUnit                >= 1.2  && < 1.3,
    test-framework       >= 0.8  && < 0.9,
    test-framework-hunit >= 0.3  && < 0.4
  Ghc-Options: -Wall

Reply via email to