Hello community, here is the log from the commit of package ghc-scotty for openSUSE:Factory checked in at 2015-11-10 10:01:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-scotty (Old) and /work/SRC/openSUSE:Factory/.ghc-scotty.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-scotty" Changes: -------- New Changes file: --- /dev/null 2015-11-02 12:10:47.524024255 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-scotty.new/ghc-scotty.changes 2015-11-10 10:02:00.000000000 +0100 @@ -0,0 +1,6 @@ +------------------------------------------------------------------- +Thu Oct 22 08:48:22 UTC 2015 - [email protected] + +- initial commit +- remove-nats.patch for remove unneeded dep + New: ---- ghc-scotty.changes ghc-scotty.spec remove-nats.patch scotty-0.10.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-scotty.spec ++++++ # # spec file for package ghc-scotty # # Copyright (c) 2015 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 scotty %bcond_with tests Name: ghc-scotty Version: 0.10.2 Release: 0 Summary: Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp Group: System/Libraries License: BSD-3-Clause Url: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz # PATCH-FIX-OPENSUSE remove-nats.patch [email protected] -- remove unneded dep of nats Patch0: remove-nats.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros # Begin cabal-rpm deps: BuildRequires: ghc-aeson-devel BuildRequires: ghc-blaze-builder-devel BuildRequires: ghc-bytestring-devel BuildRequires: ghc-case-insensitive-devel BuildRequires: ghc-data-default-class-devel BuildRequires: ghc-http-types-devel BuildRequires: ghc-monad-control-devel BuildRequires: ghc-mtl-devel BuildRequires: ghc-network-devel BuildRequires: ghc-regex-compat-devel BuildRequires: ghc-text-devel BuildRequires: ghc-transformers-base-devel BuildRequires: ghc-transformers-compat-devel BuildRequires: ghc-transformers-devel BuildRequires: ghc-wai-devel BuildRequires: ghc-wai-extra-devel BuildRequires: ghc-warp-devel %if %{with tests} BuildRequires: ghc-async-devel BuildRequires: ghc-directory-devel BuildRequires: ghc-hspec-devel BuildRequires: ghc-hspec-wai-devel BuildRequires: ghc-lifted-base-devel %endif # End cabal-rpm deps %description A Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp. ' {-# LANGUAGE OverloadedStrings #-} import Web.Scotty import Data.Monoid (mconcat) main = scotty 3000 $ do   get "/:word" $ do     beam <- param "word"     html $ mconcat ["<h1>Scotty, ", beam, " me up!</h1>"] ' Scotty is the cheap and cheerful way to write RESTful, declarative web applications. * A page is as simple as defining the verb, url pattern, and Text content. * It is template-language agnostic. Anything that returns a Text value will do. * Conforms to WAI Application interface. * Uses very fast Warp webserver by default. As for the name: Sinatra + Warp = Scotty. [WAI] <http://hackage.haskell.org/package/wai> [Warp] <http://hackage.haskell.org/package/warp>. %package devel Summary: Haskell %{pkg_name} library development files Group: Development/Libraries/Other Requires: ghc-compiler = %{ghc_version} Requires(post): ghc-compiler = %{ghc_version} Requires(postun): ghc-compiler = %{ghc_version} Requires: %{name} = %{version}-%{release} %description devel This package provides the Haskell %{pkg_name} library development files. %prep %setup -q -n %{pkg_name}-%{version} %patch0 -p1 cabal-tweak-dep-ver warp '< 3.1' '< 3.2' %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,-) %doc README.md examples %changelog ++++++ remove-nats.patch ++++++ Index: scotty-0.10.2/scotty.cabal =================================================================== --- scotty-0.10.2.orig/scotty.cabal +++ scotty-0.10.2/scotty.cabal @@ -77,7 +77,6 @@ Library http-types >= 0.8.2 && < 0.9, monad-control >= 1.0.0.3 && < 1.1, mtl >= 2.1.2 && < 2.3, - nats >= 0.1 && < 2, network >= 2.6.0.2 && < 2.7, regex-compat >= 0.95.1 && < 0.96, text >= 0.11.3.1 && < 1.3,
