Accepting request 1190878 from Base:System
OBS-URL: https://build.opensuse.org/request/show/1190878 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libassuan?expand=0&rev=53
This commit is contained in:
commit
b5dfbbde2a
@ -1 +1 @@
|
||||
libassuan0
|
||||
libassuan9
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0103081ffc27838a2e50479153ca105e873d3d65d8a9593282e9c94c7e6afb76
|
||||
size 605076
|
Binary file not shown.
3
libassuan-3.0.1.tar.bz2
Normal file
3
libassuan-3.0.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c8f0f42e6103dea4b1a6a483cb556654e97302c7465308f58363778f95f194b1
|
||||
size 592430
|
BIN
libassuan-3.0.1.tar.bz2.sig
Normal file
BIN
libassuan-3.0.1.tar.bz2.sig
Normal file
Binary file not shown.
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 28 15:00:43 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
- update to 3.0.1 (shared library version 9)
|
||||
* API change: For new code, which uses libassuan with nPTH, use
|
||||
gpgrt_get_syscall_clamp and assuan_control, instead of the
|
||||
system_hooks API. Use of ASSUAN_SYSTEM_NPTH is deprecated with
|
||||
new API version 3.
|
||||
* Various API extensions
|
||||
* New socket flags "linger" and "reuseaddr"
|
||||
- drop extra gpg-error requirement on -devel, it is autogenerated
|
||||
- drop texinfo macro from spec files, handled via file triggers
|
||||
- package license texts
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 7 13:02:18 UTC 2024 - Pedro Monreal <pmonreal@suse.com>
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
# spec file for package libassuan
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de>
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -16,36 +17,36 @@
|
||||
#
|
||||
|
||||
|
||||
%define soversion 9
|
||||
Name: libassuan
|
||||
Version: 2.5.7
|
||||
Version: 3.0.1
|
||||
Release: 0
|
||||
Summary: IPC library used by GnuPG version 2
|
||||
License: GPL-3.0-or-later AND LGPL-2.1-or-later
|
||||
Group: Development/Libraries/C and C++
|
||||
URL: https://www.gnupg.org/related_software/libassuan/index.en.html
|
||||
Source0: ftp://ftp.gnupg.org/gcrypt/libassuan/%{name}-%{version}.tar.bz2
|
||||
Source0: https://www.gnupg.org/ftp/gcrypt/libassuan/%{name}-%{version}.tar.bz2
|
||||
Source1: baselibs.conf
|
||||
Source2: ftp://ftp.gnupg.org/gcrypt/libassuan/%{name}-%{version}.tar.bz2.sig
|
||||
Source2: https://www.gnupg.org/ftp/gcrypt/libassuan/%{name}-%{version}.tar.bz2.sig
|
||||
# https://www.gnupg.org/signature_key.html
|
||||
Source3: https://gnupg.org/signature_key.asc#/%{name}.keyring
|
||||
BuildRequires: libgpg-error-devel >= 1.17
|
||||
Requires: %{install_info_prereq}
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: pkgconfig(gpg-error) >= 1.17
|
||||
|
||||
%description
|
||||
Libassuan is the IPC library used by gpg2 (GnuPG version 2)
|
||||
|
||||
%package -n libassuan0
|
||||
%package -n libassuan%{soversion}
|
||||
Summary: IPC library used by GnuPG version 2
|
||||
Group: Development/Libraries/C and C++
|
||||
|
||||
%description -n libassuan0
|
||||
%description -n libassuan%{soversion}
|
||||
Libassuan is the IPC library used by gpg2 (GnuPG version 2)
|
||||
|
||||
%package devel
|
||||
Summary: IPC library used by GnuPG version 2
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: libassuan0 = %{version}
|
||||
Requires: libgpg-error-devel
|
||||
Requires: libassuan%{soversion} = %{version}
|
||||
|
||||
%description devel
|
||||
Libassuan is the IPC library used by gpg2 (GnuPG version 2)
|
||||
@ -70,21 +71,16 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
||||
%check
|
||||
%make_build check
|
||||
|
||||
%post -n libassuan0 -p /sbin/ldconfig
|
||||
%postun -n libassuan0 -p /sbin/ldconfig
|
||||
%ldconfig_scriptlets -n libassuan%{soversion}
|
||||
|
||||
%post devel
|
||||
%install_info --info-dir=%{_infodir} %{_infodir}/assuan.info.gz
|
||||
|
||||
%postun devel
|
||||
%install_info_delete --info-dir=%{_infodir} %{_infodir}/assuan.info.gz
|
||||
|
||||
%files -n libassuan0
|
||||
%license COPYING
|
||||
%files -n libassuan%{soversion}
|
||||
%license COPYING COPYING.LIB
|
||||
%doc AUTHORS ChangeLog NEWS README THANKS
|
||||
%{_libdir}/libassuan.so.*
|
||||
%{_libdir}/libassuan.so.%{soversion}
|
||||
%{_libdir}/libassuan.so.%{soversion}.*
|
||||
|
||||
%files devel
|
||||
%license COPYING COPYING.LIB
|
||||
%{_libdir}/pkgconfig/libassuan.pc
|
||||
%{_infodir}/assuan*
|
||||
%{_includedir}/*.h
|
||||
|
Loading…
x
Reference in New Issue
Block a user