Hello community,

here is the log from the commit of package qore-yaml-module for 
openSUSE:Factory checked in at 2020-08-17 12:06:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qore-yaml-module (Old)
 and      /work/SRC/openSUSE:Factory/.qore-yaml-module.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qore-yaml-module"

Mon Aug 17 12:06:05 2020 rev:4 rq:827172 version:0.6

Changes:
--------
--- /work/SRC/openSUSE:Factory/qore-yaml-module/qore-yaml-module.changes        
2015-08-31 22:59:50.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.qore-yaml-module.new.3399/qore-yaml-module.changes  
    2020-08-17 12:06:43.342739136 +0200
@@ -1,0 +2,32 @@
+Sun Aug 16 20:30:40 UTC 2020 - Dirk Mueller <[email protected]>
+
+- update to 0.6:
+  * improved the description for the DESERIALIZATION-ERROR exception for
+  non-deserializable message bodies from HTTP servers with error responses 
(issue
+  1033) added the YamlRpcConnection class to the YamlRpcClient module updated 
the
+  DataStreamClient module for complex types and new internal RestClient API
+  changes (issue 2073) updated the DataStreamUtil module for complex types
+  fixed a bug deserializing single-quoted strings; also serialized "!number"
+  values will always include the tag to avoid potential future ambiguity (issue
+  2343) improved argument error messages with RPC calls in the YamlRpcHandler
+  module (issue 2573)
+
+  * new user modules for DataStream protocol support: YAML-encoded HTTP chunked
+  transfers where each chunk is a unique data entity DataStreamClient user 
module
+  DataStreamRequestHandler user module
+  DataStreamUtil user module
+
+  * user modules moved to top-level qore module directory from version-specific
+  module directory since they are valid for multiple versions of qore date/time
+  values (yaml !!timestamp type) are now always returned in the current time 
zone
+  locale so that time zone rules can be applied to deserialized dates; 
previously
+  time zone information was always lost which could cause errors when 
performing
+  date arithmetic on deserialized yaml dates
+
+  * fixed bugs deserializing canonically-encoded YAML strings; 
arbitrary-precision
+  numeric values were deserialized with their precision values ignored and
+  floating point +/-inf were deserialized as zero deprecated old camel-case 
names
+  and implemented new function names confirming to the standard naming 
convention
+  for functions
+
+-------------------------------------------------------------------

Old:
----
  qore-yaml-module-0.4.tar.bz2

New:
----
  qore-yaml-module-0.6.tar.bz2

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

Other differences:
------------------
++++++ qore-yaml-module.spec ++++++
--- /var/tmp/diff_new_pack.4XdKDK/_old  2020-08-17 12:06:45.046740085 +0200
+++ /var/tmp/diff_new_pack.4XdKDK/_new  2020-08-17 12:06:45.050740088 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package qore-yaml-module
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# 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
@@ -12,21 +12,19 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %define module_api %(qore --latest-module-api 2>/dev/null)
-%define module_dir %{_libdir}/qore-modules
-
 Name:           qore-yaml-module
-Version:        0.4
+Version:        0.6
 Release:        0
 Summary:        YAML module for Qore
-License:        LGPL-2.1+ or GPL-2.0+ or MIT
-Group:          Development/Languages
-Url:            http://qore.org
-Source:         
http://prdownloads.sourceforge.net/qore/%{name}-%{version}.tar.bz2
+License:        LGPL-2.1-or-later OR GPL-2.0-or-later OR MIT
+Group:          Development/Languages/Misc
+URL:            https://www.qore.org/
+Source:         
https://github.com/qorelanguage/module-yaml/releases/download/v%{version}/qore-yaml-module-%{version}.tar.bz2
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  libyaml-devel
@@ -34,7 +32,6 @@
 BuildRequires:  qore-devel >= 0.8.5
 Requires:       %{_bindir}/env
 Requires:       qore-module-api-%{module_api}
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
 This package contains the yaml module for the Qore Programming Language.
@@ -43,6 +40,7 @@
 
 %package doc
 Summary:        Documentation and examples for the Qore yaml module
+# FIXME: use correct group or remove it, see 
"https://en.opensuse.org/openSUSE:Package_group_guidelines";
 Group:          Development/Languages
 
 %description doc
@@ -50,7 +48,6 @@
 yaml module.
 
 %files doc
-%defattr(-,root,root,-)
 %doc docs/yaml docs/YamlRpcClient docs/YamlRpcHandler test examples
 
 %prep
@@ -61,18 +58,19 @@
 %ifarch x86_64 ppc64 ppc64le x390x
 c64=--enable-64bit
 %endif
-CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" ./configure 
RPM_OPT_FLAGS="%{optflags}" --prefix=/usr --disable-debug $c64
-make %{?_smp_mflags}
+# FIXME: you should use the %%configure macro
+CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" ./configure 
RPM_OPT_FLAGS="%{optflags}" --prefix=%{_prefix} --disable-debug $c64
+%make_build
 
 %install
-mkdir -p %{buildroot}/%{module_dir}
 mkdir -p %{buildroot}%{_datadir}/doc/qore-yaml-module
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+%make_install
 %fdupes -s docs
 
 %files
-%defattr(-,root,root,-)
-%{module_dir}
-%doc COPYING.LGPL COPYING.MIT README RELEASE-NOTES ChangeLog AUTHORS
+%{_libdir}/qore-modules
+%{_datadir}/qore-modules
+%license COPYING.LGPL COPYING.MIT
+%doc README RELEASE-NOTES
 
 %changelog

++++++ qore-yaml-module-0.4.tar.bz2 -> qore-yaml-module-0.6.tar.bz2 ++++++
++++ 36665 lines of diff (skipped)


Reply via email to