Hello community,

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

Package is "ghc-hpqtypes"

Wed May 10 20:44:58 2017 rev:1 rq:480303 version:1.5.1.1

Changes:
--------
New Changes file:

--- /dev/null   2017-03-01 00:40:19.279048016 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-hpqtypes.new/ghc-hpqtypes.changes   
2017-05-10 20:44:59.189674936 +0200
@@ -0,0 +1,5 @@
+-------------------------------------------------------------------
+Sun Feb 12 09:49:29 UTC 2017 - [email protected]
+
+- Update to version 1.5.1.1 revision 1 with cabal2obs.
+

New:
----
  ghc-hpqtypes.changes
  ghc-hpqtypes.spec
  hpqtypes-1.5.1.1.tar.gz
  hpqtypes.cabal

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

Other differences:
------------------
++++++ ghc-hpqtypes.spec ++++++
#
# spec file for package ghc-hpqtypes
#
# 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
# 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 hpqtypes
%bcond_with tests
Name:           ghc-%{pkg_name}
Version:        1.5.1.1
Release:        0
Summary:        Haskell bindings to libpqtypes
License:        BSD-3-Clause
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-aeson-devel
BuildRequires:  ghc-bytestring-devel
BuildRequires:  ghc-containers-devel
BuildRequires:  ghc-data-default-class-devel
BuildRequires:  ghc-exceptions-devel
BuildRequires:  ghc-lifted-base-devel
BuildRequires:  ghc-monad-control-devel
BuildRequires:  ghc-mtl-devel
BuildRequires:  ghc-resource-pool-devel
BuildRequires:  ghc-rpm-macros
BuildRequires:  ghc-text-devel
BuildRequires:  ghc-text-show-devel
BuildRequires:  ghc-time-devel
BuildRequires:  ghc-transformers-base-devel
BuildRequires:  ghc-transformers-devel
BuildRequires:  ghc-vector-devel
BuildRequires:  postgresql94-devel
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
%if %{with tests}
BuildRequires:  ghc-HUnit-devel
BuildRequires:  ghc-QuickCheck-devel
BuildRequires:  ghc-random-devel
BuildRequires:  ghc-scientific-devel
BuildRequires:  ghc-test-framework-devel
BuildRequires:  ghc-test-framework-hunit-devel
BuildRequires:  ghc-unordered-containers-devel
%endif

%description
Efficient and easy-to-use bindings to (slightly modified) libpqtypes, lipq
extension that adds support for binary transport format and composite types.

Since modified libpqtypes is used, its source code is bundled along with the
bindings. The differences between verbatim libpqtypes and the one used by this
package:

* per-thread global error structures were replaced by explicit passing of these
structures around so that there is no need to use bound threads.

* handlers that take values to be put into the database were modified to always
expect pointers to objects, as opposed to previous situation where primitives
were being taken by value (which was convenient if the library was used
directly from C, but created inconsistency problems while trying to define
bindings in a sensible way).

Examples can be found in the
<https://github.com/scrive/hpqtypes/tree/master/examples examples> directory.

%package devel
Summary:        Haskell %{pkg_name} library development files
Group:          Development/Libraries/Other
Requires:       %{name} = %{version}-%{release}
Requires:       ghc-compiler = %{ghc_version}
Requires:       postgresql94-devel
Requires(post): ghc-compiler = %{ghc_version}
Requires(postun): ghc-compiler = %{ghc_version}

%description devel
This package provides the Haskell %{pkg_name} library development files.

%prep
%setup -q -n %{pkg_name}-%{version}
cp -p %{SOURCE1} %{pkg_name}.cabal

%build
%ghc_lib_build

%install
%ghc_lib_install

%check
%cabal_test

%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 CHANGELOG.md README.md examples

%changelog
++++++ hpqtypes.cabal ++++++
name:                hpqtypes
version:             1.5.1.1
x-revision: 1
synopsis:            Haskell bindings to libpqtypes

description:         Efficient and easy-to-use bindings to (slightly modified)
                     libpqtypes, lipq extension that adds support for binary
                     transport format and composite types.
                     .
                     Since modified libpqtypes is used, its source code is 
bundled
                     along with the bindings. The differences between verbatim
                     libpqtypes and the one used by this package:
                     .
                     * per-thread global error structures were replaced by 
explicit
                       passing of these structures around so that there is no 
need
                       to use bound threads.
                     .
                     * handlers that take values to be put into the database 
were
                       modified to always expect pointers to objects, as opposed
                       to previous situation where primitives were being taken 
by
                       value (which was convenient if the library was used 
directly
                       from C, but created inconsistency problems while trying 
to
                       define bindings in a sensible way).
                     .
                     Examples can be found in the 
<https://github.com/scrive/hpqtypes/tree/master/examples examples> directory.

homepage:            https://github.com/scrive/hpqtypes
license:             BSD3
license-file:        LICENSE
author:              Scrive AB
maintainer:          Andrzej Rybczak <[email protected]>, Jonathan Jouty 
<[email protected]>, Mikhail Glushenkov <[email protected]>
copyright:           Scrive AB
category:            Database
build-type:          Custom
cabal-version:       >= 1.18
tested-with:         GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1

extra-source-files: README.md
                  , CHANGELOG.md
                  , examples/Catalog.hs
                  , libpqtypes/AUTHORS
                  , libpqtypes/Makefile.in
                  , libpqtypes/config.guess
                  , libpqtypes/groff2html
                  , libpqtypes/win32.mak
                  , libpqtypes/ChangeLog
                  , libpqtypes/Makefile.win32
                  , libpqtypes/config.sub
                  , libpqtypes/install-sh
                  , libpqtypes/INSTALL
                  , libpqtypes/README
                  , libpqtypes/configure
                  , libpqtypes/ltmain.sh
                  , libpqtypes/LICENSE
                  , libpqtypes/acinclude.m4
                  , libpqtypes/configure.ac
                  , libpqtypes/missing
                  , libpqtypes/Makefile.am
                  , libpqtypes/aclocal.m4
                  , libpqtypes/src/pqt_config.h
                  , libpqtypes/src/pqt_config.h.in
                  , libpqtypes/src/libpqtypes-int.h
                  , libpqtypes/src/libpqtypes.h

Source-repository head
  Type:     git
  Location: [email protected]:scrive/log.git

library
  exposed-modules:     Data.Monoid.Utils
                     , Database.PostgreSQL.PQTypes
                     , Database.PostgreSQL.PQTypes.Composite
                     , Database.PostgreSQL.PQTypes.ToRow
                     , Database.PostgreSQL.PQTypes.Utils
                     , Database.PostgreSQL.PQTypes.FromSQL
                     , Database.PostgreSQL.PQTypes.Array
                     , Database.PostgreSQL.PQTypes.Fold
                     , Database.PostgreSQL.PQTypes.FromRow
                     , Database.PostgreSQL.PQTypes.JSON
                     , Database.PostgreSQL.PQTypes.ToSQL
                     , Database.PostgreSQL.PQTypes.Transaction
                     , Database.PostgreSQL.PQTypes.Class
                     , Database.PostgreSQL.PQTypes.Format
                     , Database.PostgreSQL.PQTypes.Interval
                     , Database.PostgreSQL.PQTypes.Notification
                     , Database.PostgreSQL.PQTypes.SQL
                     , Database.PostgreSQL.PQTypes.SQL.Raw
                     , Database.PostgreSQL.PQTypes.SQL.Class
                     , Database.PostgreSQL.PQTypes.Transaction.Settings
                     , Database.PostgreSQL.PQTypes.XML
                     , Database.PostgreSQL.PQTypes.Internal.Error
                     , Database.PostgreSQL.PQTypes.Internal.Error.Code
                     , Database.PostgreSQL.PQTypes.Internal.Composite
                     , Database.PostgreSQL.PQTypes.Internal.Utils
                     , Database.PostgreSQL.PQTypes.Internal.Connection
                     , Database.PostgreSQL.PQTypes.Internal.Exception
                     , Database.PostgreSQL.PQTypes.Internal.Monad
                     , Database.PostgreSQL.PQTypes.Internal.Notification
                     , Database.PostgreSQL.PQTypes.Internal.QueryResult
                     , Database.PostgreSQL.PQTypes.Internal.Query
                     , Database.PostgreSQL.PQTypes.Internal.State
                     , Database.PostgreSQL.PQTypes.Internal.C.Put
                     , Database.PostgreSQL.PQTypes.Internal.C.Types
                     , Database.PostgreSQL.PQTypes.Internal.C.Interface
                     , Database.PostgreSQL.PQTypes.Internal.C.Get

  build-depends:       base >= 4.7 && < 5
                     , text >= 0.11
                     , aeson >= 0.6.2.0
                     , bytestring >= 0.9
                     , time >= 1.4
                     , vector >= 0.10
                     , transformers-base >= 0.4
                     , monad-control >= 0.3
                     , lifted-base >= 0.2
                     , resource-pool >= 0.2
                     , mtl >= 2.1
                     , transformers >= 0.2.2
                     , containers >= 0.4.0.0
                     , exceptions >= 0.6
                     , data-default-class
                     , text-show >= 2

  hs-source-dirs:    src

  ghc-options:       -O2 -Wall -funbox-strict-fields

  build-tools:       hsc2hs
  include-dirs:      libpqtypes/src
  extra-libraries:   pq

  cc-options:        -DHAVE_CONFIG_H -D_GNU_SOURCE -D_REENTRANT -std=gnu99 
-fsigned-char -fno-strict-aliasing -Wall -Wextra

  c-sources:           libpqtypes/src/array.c
                     , libpqtypes/src/datetime.c
                     , libpqtypes/src/error.c
                     , libpqtypes/src/events.c
                     , libpqtypes/src/exec.c
                     , libpqtypes/src/ffi.c
                     , libpqtypes/src/geo.c
                     , libpqtypes/src/handler.c
                     , libpqtypes/src/misc.c
                     , libpqtypes/src/network.c
                     , libpqtypes/src/numerics.c
                     , libpqtypes/src/param.c
                     , libpqtypes/src/port.c
                     , libpqtypes/src/record.c
                     , libpqtypes/src/spec.c
                     , libpqtypes/src/utils.c
                     , libpqtypes/src/varlena.c

  default-language:  Haskell2010
  default-extensions: BangPatterns
                    , ConstraintKinds
                    , DataKinds
                    , DeriveDataTypeable
                    , DeriveFunctor
                    , ExistentialQuantification
                    , FlexibleContexts
                    , FlexibleInstances
                    , ForeignFunctionInterface
                    , GADTs
                    , GeneralizedNewtypeDeriving
                    , MultiParamTypeClasses
                    , NoImplicitPrelude
                    , OverloadedStrings
                    , RankNTypes
                    , RecordWildCards
                    , ScopedTypeVariables
                    , StandaloneDeriving
                    , TupleSections
                    , TypeFamilies
                    , TypeOperators
                    , UndecidableInstances

test-suite hpqtypes-tests
  type:              exitcode-stdio-1.0
  ghc-options:       -O2 -Wall -funbox-strict-fields -threaded

  hs-source-dirs:    test
  main-is:           Main.hs
  other-modules:     Prelude.Instances
                     Test.QuickCheck.Compat
                     Test.QuickCheck.Arbitrary.Instances
  build-depends:       hpqtypes
                     , base >= 4.7 && < 5
                     , text >= 0.11
                     , aeson >= 0.6.2.0
                     , bytestring >= 0.9
                     , time >= 1.4
                     , transformers-base >= 0.4
                     , monad-control >= 0.3
                     , lifted-base >= 0.2
                     , mtl >= 2.1
                     , QuickCheck >= 2.5
                     , HUnit >= 1.2
                     , test-framework >= 0.8
                     , test-framework-hunit >= 0.3
                     , random >= 1.0
                     , exceptions >= 0.6
                     , scientific
                     , unordered-containers
                     , vector
                     , text-show

  default-language:  Haskell2010
  default-extensions: BangPatterns
                    , ConstraintKinds
                    , DataKinds
                    , DeriveDataTypeable
                    , DeriveFunctor
                    , ExistentialQuantification
                    , FlexibleContexts
                    , FlexibleInstances
                    , ForeignFunctionInterface
                    , GADTs
                    , GeneralizedNewtypeDeriving
                    , MultiParamTypeClasses
                    , NoImplicitPrelude
                    , OverloadedStrings
                    , RankNTypes
                    , RecordWildCards
                    , ScopedTypeVariables
                    , StandaloneDeriving
                    , TupleSections
                    , TypeFamilies
                    , TypeOperators
                    , UndecidableInstances

Reply via email to