forked from pool/bubblewrap
Accepting request 1164131 from home:wfrisch:branches:Virtualization:containers
- 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 OBS-URL: https://build.opensuse.org/request/show/1164131 OBS-URL: https://build.opensuse.org/package/show/Virtualization:containers/bubblewrap?expand=0&rev=35
This commit is contained in:
parent
8cfa8be26f
commit
7cfecc3aa1
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.
3
bubblewrap-0.9.0.tar.xz
Normal file
3
bubblewrap-0.9.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c6347eaced49ac0141996f46bba3b089e5e6ea4408bc1c43bab9f2d05dd094e1
|
||||
size 118984
|
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
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>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# 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
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,21 +17,20 @@
|
||||
|
||||
|
||||
Name: bubblewrap
|
||||
Version: 0.8.0
|
||||
Version: 0.9.0
|
||||
Release: 0
|
||||
Summary: Core execution tool for unprivileged containers
|
||||
License: LGPL-2.0-or-later
|
||||
Group: Productivity/Security
|
||||
URL: https://github.com/containers/bubblewrap
|
||||
Source0: %{url}/releases/download/v%{version}/%{name}-%{version}.tar.xz
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: docbook-xsl-stylesheets
|
||||
BuildRequires: gcc
|
||||
BuildRequires: git
|
||||
BuildRequires: libcap-devel
|
||||
BuildRequires: libtool
|
||||
BuildRequires: libxslt
|
||||
BuildRequires: meson
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: pkgconfig(libselinux)
|
||||
|
||||
@ -59,12 +58,11 @@ sed -i '1s/env //' demos/bubblewrap-shell.sh demos/userns-block-fd.py
|
||||
%endif
|
||||
|
||||
%build
|
||||
env NOCONFIGURE=1 ./autogen.sh
|
||||
%configure --disable-silent-rules --with-priv-mode=none
|
||||
make %{?_smp_mflags}
|
||||
%meson
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
%make_install DESTDIR=%{buildroot} INSTALL="install -p -c"
|
||||
%meson_install
|
||||
find %{buildroot} -type f -name "*.la" -delete -print
|
||||
|
||||
%files
|
||||
|
Loading…
Reference in New Issue
Block a user