Accepting request 908896 from zypp:Head
Softwarestack update OBS-URL: https://build.opensuse.org/request/show/908896 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libzypp?expand=0&rev=445
This commit is contained in:
commit
5a2f242a13
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:0ac7aa026815eedff88c1d4cadbfd5b0834ca6ce09e5417fc58577d884ddd248
|
|
||||||
size 4841154
|
|
3
libzypp-17.28.0.tar.bz2
Normal file
3
libzypp-17.28.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e6bcb270572e8256f333d31a0b88ae6576e6f715937ac21906dab53ab97d8eeb
|
||||||
|
size 5354206
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 26 11:48:28 CEST 2021 - ma@suse.de
|
||||||
|
|
||||||
|
- Rephrase vendor conflict message in case 2 packages are
|
||||||
|
involved (bsc#1187760)
|
||||||
|
This covers the case where not the packages itself would change
|
||||||
|
its vendor, but replaces a package from a different vendor.
|
||||||
|
- Fix solver jobs for PTFs (bsc#1186503)
|
||||||
|
- spec: switch to pkgconfig(openssl)
|
||||||
|
- Show key fpr from signature when signature check fails
|
||||||
|
(bsc#1187224)
|
||||||
|
Rpm by default only shows the short key ID when checking the
|
||||||
|
signature of a package fails. This patch reads the signatures
|
||||||
|
from the RPM headers and replaces she short IDs with the key
|
||||||
|
fingerprints fetched from the signatures.
|
||||||
|
- Implement alternative single transaction commit strategy.
|
||||||
|
This patch adds a experimental commit strategy that runs all
|
||||||
|
operations in a single rpm transaction, speeding up the execution
|
||||||
|
a lot.
|
||||||
|
- Use ZYPP_MEDIANETWORK=1 to enable the experimental new media
|
||||||
|
backend.
|
||||||
|
- Implement zchunk download, refactor Downloader backend.
|
||||||
|
- Fix purge-kernels fails with kernels from Kernel:HEAD
|
||||||
|
(bsc#1187738)
|
||||||
|
There recently was a change in the kernel package naming scheme
|
||||||
|
in regards to rc kernels. Since kernel upstream uses characters
|
||||||
|
in the version that are not allowed in rpm versions a "-rc" was
|
||||||
|
previously replaced with ".rc" which broke sorting by version, to
|
||||||
|
fix this issue it was replaced with "~rc", which unfortunately
|
||||||
|
broke the purge-kernels logic. This patch makes sure purge-kernel
|
||||||
|
does apply the same conversion.
|
||||||
|
- version 17.28.0 (22)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 10 17:34:14 CEST 2021 - ma@suse.de
|
Thu Jun 10 17:34:14 CEST 2021 - ma@suse.de
|
||||||
|
|
||||||
|
25
libzypp.spec
25
libzypp.spec
@ -30,8 +30,17 @@
|
|||||||
|
|
||||||
%bcond_without mediabackend_tests
|
%bcond_without mediabackend_tests
|
||||||
|
|
||||||
|
# older libsigc versions have a bug that causes a segfault
|
||||||
|
# when clearing connections during signal emission
|
||||||
|
# see https://bugzilla.gnome.org/show_bug.cgi?id=784550
|
||||||
|
%if 0%{?sle_version} < 150200
|
||||||
|
%bcond_without sigc_block_workaround
|
||||||
|
%else
|
||||||
|
%bcond_with sigc_block_workaround
|
||||||
|
%endif
|
||||||
|
|
||||||
Name: libzypp
|
Name: libzypp
|
||||||
Version: 17.27.0
|
Version: 17.28.0
|
||||||
Release: 0
|
Release: 0
|
||||||
URL: https://github.com/openSUSE/libzypp
|
URL: https://github.com/openSUSE/libzypp
|
||||||
Summary: Library for package, patch, pattern and product management
|
Summary: Library for package, patch, pattern and product management
|
||||||
@ -58,8 +67,8 @@ Recommends: logrotate
|
|||||||
Recommends: lsof
|
Recommends: lsof
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: cmake >= 3.1
|
BuildRequires: cmake >= 3.1
|
||||||
BuildRequires: openssl-devel
|
|
||||||
BuildRequires: pkgconfig(libudev)
|
BuildRequires: pkgconfig(libudev)
|
||||||
|
BuildRequires: pkgconfig(openssl)
|
||||||
%if 0%{?suse_version} >= 1330
|
%if 0%{?suse_version} >= 1330
|
||||||
BuildRequires: libboost_headers-devel
|
BuildRequires: libboost_headers-devel
|
||||||
BuildRequires: libboost_program_options-devel
|
BuildRequires: libboost_program_options-devel
|
||||||
@ -93,6 +102,7 @@ Requires: libsolv-tools
|
|||||||
|
|
||||||
BuildRequires: glib2-devel
|
BuildRequires: glib2-devel
|
||||||
BuildRequires: libsigc++2-devel
|
BuildRequires: libsigc++2-devel
|
||||||
|
BuildRequires: protobuf-devel
|
||||||
|
|
||||||
# required for testsuite
|
# required for testsuite
|
||||||
%if %{with mediabackend_tests}
|
%if %{with mediabackend_tests}
|
||||||
@ -196,10 +206,10 @@ Requires: libstdc++-devel
|
|||||||
Requires: libudev-devel
|
Requires: libudev-devel
|
||||||
Requires: libxml2-devel
|
Requires: libxml2-devel
|
||||||
Requires: libzypp = %{version}
|
Requires: libzypp = %{version}
|
||||||
Requires: openssl-devel
|
|
||||||
Requires: popt-devel
|
Requires: popt-devel
|
||||||
Requires: rpm-devel > 4.4
|
Requires: rpm-devel > 4.4
|
||||||
Requires: zlib-devel
|
Requires: zlib-devel
|
||||||
|
Requires: pkgconfig(openssl)
|
||||||
%if 0%{?suse_version}
|
%if 0%{?suse_version}
|
||||||
%if 0%{?suse_version} >= 1100
|
%if 0%{?suse_version} >= 1100
|
||||||
# Code11+
|
# Code11+
|
||||||
@ -247,8 +257,10 @@ cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \
|
|||||||
-DLIB=%{_lib} \
|
-DLIB=%{_lib} \
|
||||||
-DCMAKE_BUILD_TYPE=Release \
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
-DCMAKE_SKIP_RPATH=1 \
|
-DCMAKE_SKIP_RPATH=1 \
|
||||||
|
-DCMAKE_INSTALL_LIBEXECDIR=%{_libexecdir} \
|
||||||
%{?with_zchunk:-DENABLE_ZCHUNK_COMPRESSION=1} \
|
%{?with_zchunk:-DENABLE_ZCHUNK_COMPRESSION=1} \
|
||||||
%{?with_zstd:-DENABLE_ZSTD_COMPRESSION=1} \
|
%{?with_zstd:-DENABLE_ZSTD_COMPRESSION=1} \
|
||||||
|
%{?with_sigc_block_workaround:-DENABLE_SIGC_BLOCK_WORKAROUND=1} \
|
||||||
%{!?with_mediabackend_tests:-DDISABLE_MEDIABACKEND_TESTS=1} \
|
%{!?with_mediabackend_tests:-DDISABLE_MEDIABACKEND_TESTS=1} \
|
||||||
${EXTRA_CMAKE_OPTIONS} \
|
${EXTRA_CMAKE_OPTIONS} \
|
||||||
..
|
..
|
||||||
@ -384,11 +396,15 @@ fi
|
|||||||
%config(noreplace) %{_sysconfdir}/zypp/systemCheck
|
%config(noreplace) %{_sysconfdir}/zypp/systemCheck
|
||||||
%config(noreplace) %{_sysconfdir}/logrotate.d/zypp-history.lr
|
%config(noreplace) %{_sysconfdir}/logrotate.d/zypp-history.lr
|
||||||
%dir %{_var}/lib/zypp
|
%dir %{_var}/lib/zypp
|
||||||
|
%if "%{_libexecdir}" != "%{_prefix}/lib"
|
||||||
|
%dir %{_libexecdir}/zypp
|
||||||
|
%endif
|
||||||
%dir %attr(750,root,root) %{_var}/log/zypp
|
%dir %attr(750,root,root) %{_var}/log/zypp
|
||||||
%dir %{_var}/cache/zypp
|
%dir %{_var}/cache/zypp
|
||||||
%{_prefix}/lib/zypp
|
%{_prefix}/lib/zypp
|
||||||
%{_datadir}/zypp
|
%{_datadir}/zypp
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
|
%{_libexecdir}/zypp/zypp-rpm
|
||||||
%{_libdir}/libzypp*so.*
|
%{_libdir}/libzypp*so.*
|
||||||
%doc %{_mandir}/man1/*.1.*
|
%doc %{_mandir}/man1/*.1.*
|
||||||
%doc %{_mandir}/man5/*.5.*
|
%doc %{_mandir}/man5/*.5.*
|
||||||
@ -396,8 +412,9 @@ fi
|
|||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/libzypp.so
|
%{_libdir}/libzypp.so
|
||||||
%{_includedir}/zypp
|
|
||||||
%{_datadir}/cmake/Modules/*
|
%{_datadir}/cmake/Modules/*
|
||||||
|
%{_includedir}/zypp
|
||||||
|
%{_includedir}/zypp-core
|
||||||
%{_libdir}/pkgconfig/libzypp.pc
|
%{_libdir}/pkgconfig/libzypp.pc
|
||||||
|
|
||||||
%files devel-doc
|
%files devel-doc
|
||||||
|
Loading…
Reference in New Issue
Block a user