forked from pool/libverto
- update to 0.3.1:
* Fix rare leak of DSO in module_load * Turn off -Wcast-function-type * Work around libev not being c89-compliant * Minor release bumps for verto_cleanup() * Leak fixes * Enforce strict c89 compliance for portability * Many warning fixes * Fix memleak in libverto:vfree * Update mutex usage to improve debugging * Add verto_cleanup() to free loaded_modules * Make C99 requirement explicit OBS-URL: https://build.opensuse.org/package/show/network/libverto?expand=0&rev=16
This commit is contained in:
parent
fcaac77804
commit
42833ffddf
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:17eca6a3855f4884e2e7095e91501767d834b3bf313a6f59a93303f54ac91c9e
|
||||
size 352690
|
3
libverto-0.3.1.tar.gz
Normal file
3
libverto-0.3.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:983817c6bc0af6fa3731da2653e6371f6e1a56b4489ee44b3172e918574c50ea
|
||||
size 383390
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libverto-glib
|
||||
#
|
||||
# Copyright (c) 2018 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,20 +12,20 @@
|
||||
# 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 sover 1
|
||||
%define src_name libverto
|
||||
Name: libverto-glib
|
||||
Version: 0.2.6
|
||||
Version: 0.3.1
|
||||
Release: 0
|
||||
Summary: Main loop abstraction library
|
||||
License: MIT
|
||||
Group: Development/Libraries/C and C++
|
||||
Url: https://fedorahosted.org/libverto
|
||||
Source: http://fedorahosted.org/releases/l/i/%{src_name}/%{src_name}-%{version}.tar.gz
|
||||
URL: https://github.com/latchset/libverto
|
||||
Source: https://github.com/latchset/libverto/releases/download/%{version}/libverto-%{version}.tar.gz
|
||||
Source1: baselibs.conf
|
||||
BuildRequires: pkgconfig(glib-2.0)
|
||||
BuildRequires: pkgconfig(libverto) = %{version}
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libverto-libev
|
||||
#
|
||||
# Copyright (c) 2018 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,20 +12,20 @@
|
||||
# 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 sover 1
|
||||
%define src_name libverto
|
||||
Name: libverto-libev
|
||||
Version: 0.2.6
|
||||
Version: 0.3.1
|
||||
Release: 0
|
||||
Summary: Main loop abstraction library
|
||||
License: MIT
|
||||
Group: Development/Libraries/C and C++
|
||||
Url: https://fedorahosted.org/libverto
|
||||
Source: http://fedorahosted.org/releases/l/i/%{src_name}/%{src_name}-%{version}.tar.gz
|
||||
URL: https://github.com/latchset/libverto
|
||||
Source: https://github.com/latchset/libverto/releases/download/%{version}/libverto-%{version}.tar.gz
|
||||
Source1: baselibs.conf
|
||||
BuildRequires: pkgconfig(libev)
|
||||
BuildRequires: pkgconfig(libverto) = %{version}
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libverto-tevent
|
||||
#
|
||||
# Copyright (c) 2018 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,20 +12,20 @@
|
||||
# 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 sover 1
|
||||
%define src_name libverto
|
||||
Name: libverto-tevent
|
||||
Version: 0.2.6
|
||||
Version: 0.3.1
|
||||
Release: 0
|
||||
Summary: Main loop abstraction library
|
||||
License: MIT
|
||||
Group: Development/Libraries/C and C++
|
||||
Url: https://fedorahosted.org/libverto
|
||||
Source: http://fedorahosted.org/releases/l/i/%{src_name}/%{src_name}-%{version}.tar.gz
|
||||
URL: https://github.com/latchset/libverto
|
||||
Source: https://github.com/latchset/libverto/releases/download/%{version}/libverto-%{version}.tar.gz
|
||||
Source1: baselibs.conf
|
||||
BuildRequires: pkgconfig(libverto) = %{version}
|
||||
BuildRequires: pkgconfig(tevent)
|
||||
|
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 27 10:00:33 UTC 2020 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- update to 0.3.1:
|
||||
* Fix rare leak of DSO in module_load
|
||||
* Turn off -Wcast-function-type
|
||||
* Work around libev not being c89-compliant
|
||||
* Minor release bumps for verto_cleanup()
|
||||
* Leak fixes
|
||||
* Enforce strict c89 compliance for portability
|
||||
* Many warning fixes
|
||||
* Fix memleak in libverto:vfree
|
||||
* Update mutex usage to improve debugging
|
||||
* Add verto_cleanup() to free loaded_modules
|
||||
* Make C99 requirement explicit
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 22 15:14:25 UTC 2018 - fvogt@suse.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libverto
|
||||
#
|
||||
# Copyright (c) 2018 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,19 +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 sover 1
|
||||
Name: libverto
|
||||
Version: 0.2.6
|
||||
Version: 0.3.1
|
||||
Release: 0
|
||||
Summary: Main loop abstraction library
|
||||
License: MIT
|
||||
Group: Development/Libraries/C and C++
|
||||
Url: https://fedorahosted.org/libverto
|
||||
Source: http://fedorahosted.org/releases/l/i/%{name}/%{name}-%{version}.tar.gz
|
||||
URL: https://github.com/latchset/libverto
|
||||
Source: https://github.com/latchset/libverto/releases/download/%{version}/libverto-%{version}.tar.gz
|
||||
Source1: baselibs.conf
|
||||
BuildRequires: pkg-config
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user