Sync from SUSE:SLFO:Main bubblewrap revision a0a4e56ecb39ba0309b7e13fc438199f
This commit is contained in:
parent
7f8d3bcb83
commit
b44e1406aa
BIN
bubblewrap-0.10.0.tar.xz
(Stored with Git LFS)
Normal file
BIN
bubblewrap-0.10.0.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
bubblewrap-0.8.0.tar.xz
(Stored with Git LFS)
BIN
bubblewrap-0.8.0.tar.xz
(Stored with Git LFS)
Binary file not shown.
@ -1,3 +1,31 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 14 17:02:31 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
- Update to version v0.10.0:
|
||||||
|
* New features: Add the --[ro-]bind-fd option, which can be used
|
||||||
|
to mount a filesystem represented by a file descriptor without
|
||||||
|
time-of-check/time-of-use attacks. This is needed when
|
||||||
|
resolving security issue in Flatpak.
|
||||||
|
(CVE-2024-42472, bsc#1229157)
|
||||||
|
* Other changes: Fix some confusing syntax in SetupOpFlag (no
|
||||||
|
functional change).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 2 12:14:33 UTC 2024 - Wolfgang Frisch <wolfgang.frisch@suse.com>
|
||||||
|
|
||||||
|
- update to v0.9.0:
|
||||||
|
* Build system changed to Meson from Autotools
|
||||||
|
* Add --argv0
|
||||||
|
https://github.com/containers/bubblewrap/issues/91
|
||||||
|
* --symlink is now idempotent, meaning it succeeds if the symlink already
|
||||||
|
exists and already has the desired target
|
||||||
|
* Clarify security considerations in documentation
|
||||||
|
* Clarify documentation for --cap-add
|
||||||
|
* Report a better error message if mount(2) fails with ENOSPC
|
||||||
|
* Fix a double-close on error reading from --args, --seccomp or
|
||||||
|
--add-seccomp-fd argument
|
||||||
|
* Improve memory allocation behaviour
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 27 16:39:05 UTC 2023 - Andreas Stieger <andreas.stieger@gmx.de>
|
Mon Mar 27 16:39:05 UTC 2023 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package bubblewrap
|
# spec file for package bubblewrap
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,21 +17,20 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: bubblewrap
|
Name: bubblewrap
|
||||||
Version: 0.8.0
|
Version: 0.10.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Core execution tool for unprivileged containers
|
Summary: Core execution tool for unprivileged containers
|
||||||
License: LGPL-2.0-or-later
|
License: LGPL-2.0-or-later
|
||||||
Group: Productivity/Security
|
Group: Productivity/Security
|
||||||
URL: https://github.com/containers/bubblewrap
|
URL: https://github.com/containers/bubblewrap
|
||||||
Source0: %{url}/releases/download/v%{version}/%{name}-%{version}.tar.xz
|
Source0: %{url}/releases/download/v%{version}/%{name}-%{version}.tar.xz
|
||||||
BuildRequires: autoconf
|
|
||||||
BuildRequires: automake
|
|
||||||
BuildRequires: docbook-xsl-stylesheets
|
BuildRequires: docbook-xsl-stylesheets
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: git
|
BuildRequires: git
|
||||||
BuildRequires: libcap-devel
|
BuildRequires: libcap-devel
|
||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
BuildRequires: libxslt
|
BuildRequires: libxslt
|
||||||
|
BuildRequires: meson
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: pkgconfig(libselinux)
|
BuildRequires: pkgconfig(libselinux)
|
||||||
|
|
||||||
@ -59,12 +58,11 @@ sed -i '1s/env //' demos/bubblewrap-shell.sh demos/userns-block-fd.py
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%build
|
%build
|
||||||
env NOCONFIGURE=1 ./autogen.sh
|
%meson
|
||||||
%configure --disable-silent-rules --with-priv-mode=none
|
%meson_build
|
||||||
make %{?_smp_mflags}
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install DESTDIR=%{buildroot} INSTALL="install -p -c"
|
%meson_install
|
||||||
find %{buildroot} -type f -name "*.la" -delete -print
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
Loading…
Reference in New Issue
Block a user