commit ghc-text-conversions for openSUSE:Factory

2020-10-23 Thread root
Hello community,

here is the log from the commit of package ghc-text-conversions for 
openSUSE:Factory checked in at 2020-10-23 15:15:00

Comparing /work/SRC/openSUSE:Factory/ghc-text-conversions (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-text-conversions.new.3463 (New)


Package is "ghc-text-conversions"

Fri Oct 23 15:15:00 2020 rev:5 rq:842767 version:0.3.1

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-text-conversions/ghc-text-conversions.changes
2020-09-30 19:53:43.292748780 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-text-conversions.new.3463/ghc-text-conversions.changes
  2020-10-23 15:15:01.110153666 +0200
@@ -1,0 +2,14 @@
+Wed Sep 30 08:36:19 UTC 2020 - psim...@suse.com
+
+- Update text-conversions to version 0.3.1.
+  ## 0.3.1 (September 29th, 2020)
+
+  - Added support for `base16-bytestring-1.0`.
+
+  ## 0.3.0 (June 9, 2016)
+
+  ### New Features
+
+  - The `Base16` and `Base64` newtypes are now provided for managing safe 
conversions between binary data and Base16 and Base64 textual encodings of that 
data.
+
+---

Old:

  text-conversions-0.3.0.tar.gz
  text-conversions.cabal

New:

  text-conversions-0.3.1.tar.gz



Other differences:
--
++ ghc-text-conversions.spec ++
--- /var/tmp/diff_new_pack.iYpjLg/_old  2020-10-23 15:15:02.242154212 +0200
+++ /var/tmp/diff_new_pack.iYpjLg/_new  2020-10-23 15:15:02.246154214 +0200
@@ -19,13 +19,12 @@
 %global pkg_name text-conversions
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:0.3.0
+Version:0.3.1
 Release:0
 Summary:Safe conversions between textual types
 License:ISC
 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-base16-bytestring-devel
 BuildRequires:  ghc-base64-bytestring-devel
@@ -35,7 +34,6 @@
 BuildRequires:  ghc-text-devel
 %if %{with tests}
 BuildRequires:  ghc-hspec-devel
-BuildRequires:  ghc-hspec-discover-devel
 %endif
 
 %description
@@ -54,7 +52,6 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++ text-conversions-0.3.0.tar.gz -> text-conversions-0.3.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/text-conversions-0.3.0/CHANGELOG.md 
new/text-conversions-0.3.1/CHANGELOG.md
--- old/text-conversions-0.3.0/CHANGELOG.md 2016-05-25 20:02:36.0 
+0200
+++ new/text-conversions-0.3.1/CHANGELOG.md 2020-09-30 05:23:53.0 
+0200
@@ -1,5 +1,15 @@
 # Changelog
 
+## 0.3.1 (September 29th, 2020)
+
+- Added support for `base16-bytestring-1.0`.
+
+## 0.3.0 (June 9, 2016)
+
+### New Features
+
+- The `Base16` and `Base64` newtypes are now provided for managing safe 
conversions between binary data and Base16 and Base64 textual encodings of that 
data.
+
 ## 0.2.0 (May 25, 2016)
 
 ### Breaking Changes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/text-conversions-0.3.0/README.md 
new/text-conversions-0.3.1/README.md
--- old/text-conversions-0.3.0/README.md2016-05-25 20:07:04.0 
+0200
+++ new/text-conversions-0.3.1/README.md2020-09-21 16:30:10.0 
+0200
@@ -1,4 +1,4 @@
-# text-conversions
+# text-conversions [![Build 
Status](https://travis-ci.org/cjdev/text-conversions.svg?branch=master)](https://travis-ci.org/cjdev/text-conversions)
 
 This is a small library to ease the pain when converting between the many 
different string types in Haskell. Unlike some other libraries that attempt to 
solve the same problem, text-conversions is:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/text-conversions-0.3.0/package.yaml 
new/text-conversions-0.3.1/package.yaml
--- old/text-conversions-0.3.0/package.yaml 2016-06-09 22:31:24.0 
+0200
+++ new/text-conversions-0.3.1/package.yaml 2020-09-30 05:19:25.0 
+0200
@@ -1,5 +1,5 @@
 name: text-conversions
-version: '0.3.0'
+version: 0.3.1
 category: Data
 synopsis: Safe conversions between textual types
 description: Safe conversions between textual types
@@ -25,12 +25,12 @@
 library:
   source-dirs: src
   dependencies:
-  - base >= 4.7 && < 5
-  - bytestring
-  - base16-bytestring
-  - base64-bytestring
-  - errors
-  - text
+  - base >=4.7 && <5
+  - bytestring <1
+  - base16-bytestring <2
+  - base64-bytestring <2
+  - errors <3
+  - text <2
 
 tes

commit ghc-text-conversions for openSUSE:Factory

2020-09-30 Thread root
Hello community,

here is the log from the commit of package ghc-text-conversions for 
openSUSE:Factory checked in at 2020-09-30 19:53:34

Comparing /work/SRC/openSUSE:Factory/ghc-text-conversions (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-text-conversions.new.4249 (New)


Package is "ghc-text-conversions"

Wed Sep 30 19:53:34 2020 rev:4 rq:838495 version:0.3.0

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-text-conversions/ghc-text-conversions.changes
2020-08-28 21:39:10.768831858 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-text-conversions.new.4249/ghc-text-conversions.changes
  2020-09-30 19:53:43.292748780 +0200
@@ -1,0 +2,6 @@
+Tue Sep 22 09:35:59 UTC 2020 - psim...@suse.com
+
+- Update text-conversions to version 0.3.0 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+---

New:

  text-conversions.cabal



Other differences:
--
++ ghc-text-conversions.spec ++
--- /var/tmp/diff_new_pack.3Loqst/_old  2020-09-30 19:53:43.908749331 +0200
+++ /var/tmp/diff_new_pack.3Loqst/_new  2020-09-30 19:53:43.912749334 +0200
@@ -25,6 +25,7 @@
 License:ISC
 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-base16-bytestring-devel
 BuildRequires:  ghc-base64-bytestring-devel
@@ -53,6 +54,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++ text-conversions.cabal ++
name:   text-conversions
version:0.3.0
x-revision: 1
synopsis:   Safe conversions between textual types
description:Safe conversions between textual types
category:   Data
homepage:   https://github.com/cjdev/text-conversions#readme
bug-reports:https://github.com/cjdev/text-conversions/issues
author: Alexis King
maintainer: lexi.lam...@gmail.com
license:ISC
license-file:   LICENSE
build-type: Simple
cabal-version:  >= 1.10

extra-source-files:
CHANGELOG.md
LICENSE
package.yaml
README.md
stack.yaml

source-repository head
  type: git
  location: https://github.com/cjdev/text-conversions

library
  hs-source-dirs:
  src
  default-extensions: FlexibleInstances MultiParamTypeClasses OverloadedStrings
  ghc-options: -Wall
  build-depends:
  base >= 4.7 && < 5
, bytestring
  -- see https://github.com/haskell-infra/hackage-trustees/issues/280
, base16-bytestring >= 0.1.1 && < 0.2
, base64-bytestring
, errors
, text
  exposed-modules:
  Data.Text.Conversions
  default-language: Haskell2010

test-suite text-conversions-test-suite
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:
  test
  default-extensions: FlexibleInstances MultiParamTypeClasses OverloadedStrings
  ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
  build-depends:
  base
, text-conversions
, bytestring
, hspec
, hspec-discover
, text
  other-modules:
  Data.Text.ConversionsSpec
  default-language: Haskell2010



commit ghc-text-conversions for openSUSE:Factory

2020-08-28 Thread root
Hello community,

here is the log from the commit of package ghc-text-conversions for 
openSUSE:Factory checked in at 2020-08-28 21:39:06

Comparing /work/SRC/openSUSE:Factory/ghc-text-conversions (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-text-conversions.new.3399 (New)


Package is "ghc-text-conversions"

Fri Aug 28 21:39:06 2020 rev:3 rq:829443 version:0.3.0

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-text-conversions/ghc-text-conversions.changes
2020-06-19 17:19:38.503252267 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-text-conversions.new.3399/ghc-text-conversions.changes
  2020-08-28 21:39:10.768831858 +0200
@@ -1,0 +2,5 @@
+Tue Aug 18 10:46:13 UTC 2020 - Peter Simons 
+
+- Replace %setup -q with the more modern %autosetup macro.
+
+---



Other differences:
--
++ ghc-text-conversions.spec ++
--- /var/tmp/diff_new_pack.Y17YBG/_old  2020-08-28 21:39:11.284832102 +0200
+++ /var/tmp/diff_new_pack.Y17YBG/_new  2020-08-28 21:39:11.288832104 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-text-conversions
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -52,7 +52,7 @@
 files.
 
 %prep
-%setup -q -n %{pkg_name}-%{version}
+%autosetup -n %{pkg_name}-%{version}
 
 %build
 %ghc_lib_build




commit ghc-text-conversions for openSUSE:Factory

2020-06-19 Thread root
Hello community,

here is the log from the commit of package ghc-text-conversions for 
openSUSE:Factory checked in at 2020-06-19 17:19:34

Comparing /work/SRC/openSUSE:Factory/ghc-text-conversions (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-text-conversions.new.3606 (New)


Package is "ghc-text-conversions"

Fri Jun 19 17:19:34 2020 rev:2 rq:815190 version:0.3.0

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-text-conversions/ghc-text-conversions.changes
2019-12-27 13:50:27.576534712 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-text-conversions.new.3606/ghc-text-conversions.changes
  2020-06-19 17:19:38.503252267 +0200
@@ -1,0 +2,5 @@
+Tue Jun 16 11:14:41 UTC 2020 - Peter Simons 
+
+- Re-generate file with latest version of spec-cleaner.
+
+---



Other differences:
--
++ ghc-text-conversions.spec ++
--- /var/tmp/diff_new_pack.YOVPR3/_old  2020-06-19 17:19:39.391254601 +0200
+++ /var/tmp/diff_new_pack.YOVPR3/_new  2020-06-19 17:19:39.395254611 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-text-conversions
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed




commit ghc-text-conversions for openSUSE:Factory

2017-09-15 Thread root
Hello community,

here is the log from the commit of package ghc-text-conversions for 
openSUSE:Factory checked in at 2017-09-15 22:17:49

Comparing /work/SRC/openSUSE:Factory/ghc-text-conversions (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-text-conversions.new (New)


Package is "ghc-text-conversions"

Fri Sep 15 22:17:49 2017 rev:2 rq:525509 version:0.3.0

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-text-conversions/ghc-text-conversions.changes
2017-04-12 18:09:28.687124418 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-text-conversions.new/ghc-text-conversions.changes
   2017-09-15 22:17:49.849405665 +0200
@@ -1,0 +2,5 @@
+Thu Aug  3 15:38:38 UTC 2017 - psim...@suse.com
+
+- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
+
+---



Other differences:
--
++ ghc-text-conversions.spec ++
--- /var/tmp/diff_new_pack.AynRbQ/_old  2017-09-15 22:17:50.473317779 +0200
+++ /var/tmp/diff_new_pack.AynRbQ/_new  2017-09-15 22:17:50.481316652 +0200
@@ -23,8 +23,8 @@
 Release:0
 Summary:Safe conversions between textual types
 License:ISC
-Group:  Development/Languages/Other
-Url:https://hackage.haskell.org/package/%{pkg_name}
+Group:  Development/Libraries/Haskell
+URL:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-base16-bytestring-devel
@@ -33,7 +33,6 @@
 BuildRequires:  ghc-errors-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-text-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with tests}
 BuildRequires:  ghc-hspec-devel
 BuildRequires:  ghc-hspec-discover-devel
@@ -44,7 +43,7 @@
 
 %package devel
 Summary:Haskell %{pkg_name} library development files
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/Haskell
 Requires:   %{name} = %{version}-%{release}
 Requires:   ghc-compiler = %{ghc_version}
 Requires(post): ghc-compiler = %{ghc_version}
@@ -73,11 +72,9 @@
 %ghc_pkg_recache
 
 %files -f %{name}.files
-%defattr(-,root,root,-)
 %doc LICENSE
 
 %files devel -f %{name}-devel.files
-%defattr(-,root,root,-)
 %doc CHANGELOG.md README.md
 
 %changelog