Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-vector-th-unbox for
openSUSE:Factory checked in at 2023-04-04 21:24:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-vector-th-unbox (Old)
and /work/SRC/openSUSE:Factory/.ghc-vector-th-unbox.new.19717 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-vector-th-unbox"
Tue Apr 4 21:24:32 2023 rev:14 rq:1076114 version:0.2.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-vector-th-unbox/ghc-vector-th-unbox.changes
2022-10-13 15:43:52.822941163 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-vector-th-unbox.new.19717/ghc-vector-th-unbox.changes
2023-04-04 21:24:54.950724381 +0200
@@ -1,0 +2,11 @@
+Thu Mar 30 17:08:56 UTC 2023 - Peter Simons <[email protected]>
+
+- Updated spec file to conform with ghc-rpm-macros-2.5.2.
+
+-------------------------------------------------------------------
+Thu Mar 16 23:33:07 UTC 2023 - Peter Simons <[email protected]>
+
+- Update vector-th-unbox to version 0.2.2 revision 4.
+ Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-vector-th-unbox.spec ++++++
--- /var/tmp/diff_new_pack.Avp5Ot/_old 2023-04-04 21:24:55.586727983 +0200
+++ /var/tmp/diff_new_pack.Avp5Ot/_new 2023-04-04 21:24:55.590728006 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ghc-vector-th-unbox
#
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,6 +17,7 @@
%global pkg_name vector-th-unbox
+%global pkgver %{pkg_name}-%{version}
%bcond_with tests
Name: ghc-%{pkg_name}
Version: 0.2.2
@@ -25,14 +26,19 @@
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
-Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/3.cabal#/%{pkg_name}.cabal
+Source1:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/4.cabal#/%{pkg_name}.cabal
BuildRequires: ghc-Cabal-devel
+BuildRequires: ghc-base-devel
+BuildRequires: ghc-base-prof
BuildRequires: ghc-rpm-macros
BuildRequires: ghc-template-haskell-devel
+BuildRequires: ghc-template-haskell-prof
BuildRequires: ghc-vector-devel
+BuildRequires: ghc-vector-prof
ExcludeArch: %{ix86}
%if %{with tests}
BuildRequires: ghc-data-default-devel
+BuildRequires: ghc-data-default-prof
%endif
%description
@@ -52,6 +58,22 @@
This package provides the Haskell %{pkg_name} library development
files.
+%package -n ghc-%{pkg_name}-doc
+Summary: Haskell %{pkg_name} library documentation
+Requires: ghc-filesystem
+BuildArch: noarch
+
+%description -n ghc-%{pkg_name}-doc
+This package provides the Haskell %{pkg_name} library documentation.
+
+%package -n ghc-%{pkg_name}-prof
+Summary: Haskell %{pkg_name} profiling library
+Requires: ghc-%{pkg_name}-devel = %{version}-%{release}
+Supplements: (ghc-%{pkg_name}-devel and ghc-prof)
+
+%description -n ghc-%{pkg_name}-prof
+This package provides the Haskell %{pkg_name} profiling library.
+
%prep
%autosetup -n %{pkg_name}-%{version}
cp -p %{SOURCE1} %{pkg_name}.cabal
@@ -77,4 +99,9 @@
%files devel -f %{name}-devel.files
%doc CHANGELOG.md README.md
+%files -n ghc-%{pkg_name}-doc -f ghc-%{pkg_name}-doc.files
+%license LICENSE
+
+%files -n ghc-%{pkg_name}-prof -f ghc-%{pkg_name}-prof.files
+
%changelog
++++++ vector-th-unbox.cabal ++++++
--- /var/tmp/diff_new_pack.Avp5Ot/_old 2023-04-04 21:24:55.650728345 +0200
+++ /var/tmp/diff_new_pack.Avp5Ot/_new 2023-04-04 21:24:55.658728390 +0200
@@ -1,57 +1,64 @@
-name: vector-th-unbox
-version: 0.2.2
-x-revision: 3
-synopsis: Deriver for Data.Vector.Unboxed using Template Haskell
-description:
- A Template Haskell deriver for unboxed vectors, given a pair of coercion
- functions to and from some existing type with an Unbox instance.
- .
- Refer to "Data.Vector.Unboxed.Deriving" for documentation and examples.
-stability: experimental
-homepage: https://github.com/tsurucapital/vector-th-unbox
-license: BSD3
-license-file: LICENSE
-copyright: (c) 2012-2015 Liyang HU
-author: Liyang HU <[email protected]>
-maintainer: Fumiaki Kinoshita <[email protected]>
-category: Data
-build-type: Simple
-cabal-version: >= 1.10
-tested-with:
- GHC == 8.0.2,
- GHC == 8.2.2,
- GHC == 8.4.4,
- GHC == 8.6.5, GHC == 8.8.3, GHC == 8.10.1, GHC == 9.0.1, GHC ==9.2.1
-extra-source-files:
- CHANGELOG.md
- README.md
-
-source-repository head
- type: git
- location: http://github.com/tsurucapital/vector-th-unbox
-
-library
- default-language: Haskell2010
- exposed-modules:
- Data.Vector.Unboxed.Deriving
-
- build-depends:
- base >= 4.9 && < 4.18,
- template-haskell >= 2.5 && <2.20,
- vector >= 0.7.1 && <0.14
-
-test-suite sanity
- default-language: Haskell2010
- type: exitcode-stdio-1.0
- hs-source-dirs: tests
- main-is: sanity.hs
- build-depends:
- base,
- data-default,
- vector,
- vector-th-unbox
- ghc-options: -Wall
-
--- vim: et sw=4 ts=4 sts=4:
-
+name: vector-th-unbox
+version: 0.2.2
+x-revision: 4
+synopsis: Deriver for Data.Vector.Unboxed using Template Haskell
+description:
+ A Template Haskell deriver for unboxed vectors, given a pair of coercion
+ functions to and from some existing type with an Unbox instance.
+ .
+ Refer to "Data.Vector.Unboxed.Deriving" for documentation and examples.
+stability: experimental
+homepage: https://github.com/tsurucapital/vector-th-unbox
+license: BSD3
+license-file: LICENSE
+copyright: (c) 2012-2015 Liyang HU
+author: Liyang HU <[email protected]>
+maintainer: Fumiaki Kinoshita <[email protected]>
+category: Data
+build-type: Simple
+cabal-version: >= 1.10
+
+tested-with:
+ GHC == 9.6.1
+ GHC == 9.4.4
+ GHC == 9.2.7
+ GHC == 9.0.2
+ GHC == 8.10.7
+ GHC == 8.8.4
+ GHC == 8.6.5
+ GHC == 8.4.4
+ GHC == 8.2.2
+ GHC == 8.0.2
+
+extra-source-files:
+ CHANGELOG.md
+ README.md
+
+source-repository head
+ type: git
+ location: http://github.com/tsurucapital/vector-th-unbox
+
+library
+ default-language: Haskell2010
+ exposed-modules:
+ Data.Vector.Unboxed.Deriving
+
+ build-depends:
+ base >= 4.9 && < 4.19,
+ template-haskell >= 2.5 && <2.21,
+ vector >= 0.7.1 && <0.14
+
+test-suite sanity
+ default-language: Haskell2010
+ type: exitcode-stdio-1.0
+ hs-source-dirs: tests
+ main-is: sanity.hs
+ build-depends:
+ base,
+ data-default,
+ vector,
+ vector-th-unbox
+ ghc-options: -Wall
+
+-- vim: et sw=4 ts=4 sts=4: