Hello community,

here is the log from the commit of package ghc-token-bucket for 
openSUSE:Factory checked in at 2017-05-06 18:29:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-token-bucket (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-token-bucket.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-token-bucket"

Sat May  6 18:29:04 2017 rev:2 rq:491516 version:0.1.0.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-token-bucket/ghc-token-bucket.changes        
2017-03-24 01:58:09.375606271 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-token-bucket.new/ghc-token-bucket.changes   
2017-05-06 18:29:05.303994315 +0200
@@ -1,0 +2,5 @@
+Sun Apr  9 18:08:07 UTC 2017 - [email protected]
+
+- Update to version 0.1.0.1 revision 2 with cabal2obs.
+
+-------------------------------------------------------------------

Old:
----
  1.cabal

New:
----
  token-bucket.cabal

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

Other differences:
------------------
++++++ ghc-token-bucket.spec ++++++
--- /var/tmp/diff_new_pack.g52Amy/_old  2017-05-06 18:29:06.115879754 +0200
+++ /var/tmp/diff_new_pack.g52Amy/_new  2017-05-06 18:29:06.119879189 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-token-bucket
 #
-# 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
@@ -26,7 +26,7 @@
 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
+Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-rpm-macros
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ token-bucket.cabal ++++++
name:                token-bucket
version:             0.1.0.1
x-revision: 2
synopsis:            Rate limiter using lazy bucket algorithm
homepage:            https://github.com/hvr/token-bucket
bug-reports:         https://github.com/hvr/token-bucket/issues
license:             GPL-3
license-file:        LICENSE
author:              Herbert Valerio Riedel
maintainer:          [email protected]
category:            Concurrency
build-type:          Simple
cabal-version:       >=1.10
description:
  This implementation is heavily inspired by the one described in
  
<http://ksdlck.com/post/17418037348/rate-limiting-at-webscale-lazy-leaky-buckets
 "Rate Limiting at Webscale: Lazy Leaky Buckets">

extra-source-files:    changelog.md

source-repository head
  type:     git
  location: https://github.com/hvr/token-bucket.git

flag use-cbits
  description: Use optimized getPOSIXTime implementation (faster by roughly one 
order of magnitude)
  manual: True
  default: True

library
  default-language:    Haskell2010
  build-depends:       base >=4.6 && <4.11
  hs-source-dirs:      src
  if flag(use-cbits)
    cpp-options:       -DUSE_CBITS
    c-sources:         cbits/get_posix_time.c
  else
    build-depends:     time >=1.4 && <1.7
  ghc-options: -Wall
  exposed-modules:     Control.Concurrent.TokenBucket

test-suite test-tb
  default-language:    Haskell2010
  type:                exitcode-stdio-1.0
  build-depends:       base >=4.6 && <4.10, time >=1.4 && <1.7, token-bucket
  main-is:             test-tb.hs
  ghc-options:         -Wall -threaded -rtsopts

Reply via email to