Hello community,

here is the log from the commit of package ghc-echo for openSUSE:Factory 
checked in at 2017-05-10 20:48:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-echo (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-echo.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-echo"

Wed May 10 20:48:06 2017 rev:2 rq:489354 version:0.1.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-echo/ghc-echo.changes        2017-04-12 
18:06:07.375589075 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-echo.new/ghc-echo.changes   2017-05-10 
20:48:07.759067029 +0200
@@ -1,0 +2,5 @@
+Wed Mar 22 09:12:57 UTC 2017 - [email protected]
+
+- Update to version 0.1.3 revision 1 with cabal2obs.
+
+-------------------------------------------------------------------

New:
----
  echo.cabal

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

Other differences:
------------------
++++++ ghc-echo.spec ++++++
--- /var/tmp/diff_new_pack.ytPOxR/_old  2017-05-10 20:48:08.578951339 +0200
+++ /var/tmp/diff_new_pack.ytPOxR/_new  2017-05-10 20:48:08.582950774 +0200
@@ -25,6 +25,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#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-process-devel
 BuildRequires:  ghc-rpm-macros
@@ -55,6 +56,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ echo.cabal ++++++
name:                echo
version:             0.1.3
x-revision: 1
synopsis:            A cross-platform, cross-console way to handle echoing 
terminal input
description:         The @base@ library exposes the @hGetEcho@ and @hSetEcho@ 
functions
                     for querying and setting echo status, but unfortunately, 
neither
                     function works with MinTTY consoles on Windows. This is a 
serious
                     issue, since @hGetEcho@ and @hSetEcho@ are often used to 
disable
                     input echoing when a program prompts for a password, so 
many
                     programs will reveal your password as you type it on 
MinTTY!
                     .
                     This library provides an alternative interface which works
                     with both MinTTY and other consoles. An example is included
                     which demonstrates how one might prompt for a password 
using
                     this library. To build it, make sure to configure with the
                     @-fexample@ flag.
homepage:            https://github.com/RyanGlScott/echo
bug-reports:         https://github.com/RyanGlScott/echo/issues
license:             BSD3
license-file:        LICENSE
author:              Ryan Scott
maintainer:          Ryan Scott <[email protected]>
stability:           Provisional
copyright:           (C) 2016-2017 Ryan Scott
category:            System
build-type:          Simple
extra-source-files:  CHANGELOG.md, README.md
cabal-version:       >=1.10

source-repository head
  type:                git
  location:            https://github.com/RyanGlScott/echo

flag example
  description:         Build the bundled example program.
  default:             False

library
  exposed-modules:     System.IO.Echo
                       System.IO.Echo.Internal

  build-depends:       base    >= 4.3     && < 5
                     , process >= 1.0.1.1 && < 1.7
  if os(windows)
    cpp-options:       "-DWINDOWS"
    build-depends:     mintty >= 0.1 && < 0.2
                     , Win32  >= 2   && < 3

  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Wall

executable password
  if !flag(example)
    buildable:         False

  main-is:             Password.hs
  build-depends:       base >= 4.3 && < 5
                     , echo
  hs-source-dirs:      example
  default-language:    Haskell2010
  ghc-options:         -Wall

Reply via email to