3 Commits

Author SHA256 Message Date
003bb0ff57 Accepting request 1305854 from Virtualization
- Update to version 0.2.4+git3cdfe0f:
  * Bump version to 0.2.4
  * start: Only map volumes if required on macOS
  * Add inspect command
  * create: forbid empty names
  * add docs + change variable name
  * set env in VM from start args
  * Move commands to a module
  * Instead of a free function for each command make it a method
  * Refactor argument parsing using new clap 4.x version
  * Resolve clippy warning for macOS target
  * Fix compilation for macOS target
  * Run cargo clippy more times with each supported platform separately
  * Fix compilation on aarch64 due to i8/u8 mismatch
  * Resolve clippy warnings and use correct types in bindings.
  * Resolve warnings about unnecessary mut
  * README: Add asciidoctor dependency to building from source instructions
  * Makefile: Remove INIT_BINARY because there is no such thing
- Tweak the service file a (little) bit

OBS-URL: https://build.opensuse.org/request/show/1305854
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/krunvm?expand=0&rev=10
2025-09-19 13:33:38 +00:00
8ea5e81fcd OBS-URL: https://build.opensuse.org/package/show/Virtualization/krunvm?expand=0&rev=22 2025-09-18 16:07:40 +00:00
f4a6dafee3 - Update to version 0.2.4+git3cdfe0f:
* Bump version to 0.2.4
  * start: Only map volumes if required on macOS
  * Add inspect command
  * create: forbid empty names
  * add docs + change variable name
  * set env in VM from start args
  * Move commands to a module
  * Instead of a free function for each command make it a method
  * Refactor argument parsing using new clap 4.x version
  * Resolve clippy warning for macOS target
  * Fix compilation for macOS target
  * Run cargo clippy more times with each supported platform separately
  * Fix compilation on aarch64 due to i8/u8 mismatch
  * Resolve clippy warnings and use correct types in bindings.
  * Resolve warnings about unnecessary mut
  * README: Add asciidoctor dependency to building from source instructions
  * Makefile: Remove INIT_BINARY because there is no such thing
- Tweak the service file a (little) bit

OBS-URL: https://build.opensuse.org/package/show/Virtualization/krunvm?expand=0&rev=21
2025-09-18 14:09:01 +00:00
10 changed files with 40 additions and 28 deletions

View File

@@ -1,17 +1,17 @@
<services>
<service name="obs_scm" mode="disabled">
<service name="obs_scm" mode="manual">
<param name="scm">git</param>
<param name="revision">refs/tags/v0.2.3</param>
<param name="revision">refs/tags/v0.2.4</param>
<param name="url">https://github.com/containers/krunvm.git</param>
<param name="versionformat">@PARENT_TAG@+git%h</param>
<param name="changesgenerate">enable</param>
<param name="versionrewrite-pattern">v(.*)</param>
</service>
<service name="cargo_vendor" mode="disabled">
<service name="cargo_vendor" mode="manual">
<param name="srcdir">krunvm</param>
<param name="compression">zst</param>
<param name="update">false</param>
</service>
<service name="cargo_audit" mode="disabled">
<service name="cargo_audit" mode="manual">
<param name="srcdir">krunvm</param>
</service>
<service mode="buildtime" name="tar" />
@@ -19,6 +19,6 @@
<param name="file">*.tar</param>
<param name="compression">gz</param>
</service>
<service name="set_version" mode="disabled">
<service name="set_version" mode="manual">
</service>
</services>

View File

@@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/containers/krunvm.git</param>
<param name="changesrevision">12dac810ecdc1a2519ac46d82e0c2739cef9f165</param></service></servicedata>
<param name="changesrevision">3cdfe0f27998fb905ad043d490c29d0caae66031</param></service></servicedata>

View File

@@ -1,5 +0,0 @@
[source.crates-io]
replace-with = "vendored-sources"
[source.vendored-sources]
directory = "vendor"

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:12866e28c0ff4d5b411585330092d4b8daaedd2ab2873098016df3512c9b01d1
size 79371

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fe68de17f70896373f64e0fece6cfc36a291bb5df1f594692c31ac5a46527eed
size 19395

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:78bd2d0c3867458bc28258baf2707e11c991bf32e73a1fba3a94b3b92af299da
size 81931

View File

@@ -1,3 +1,26 @@
-------------------------------------------------------------------
Thu Sep 18 08:30:13 UTC 2025 - Dario Faggioli <dfaggioli@suse.com>
- Update to version 0.2.4+git3cdfe0f:
* Bump version to 0.2.4
* start: Only map volumes if required on macOS
* Add inspect command
* create: forbid empty names
* add docs + change variable name
* set env in VM from start args
* Move commands to a module
* Instead of a free function for each command make it a method
* Refactor argument parsing using new clap 4.x version
* Resolve clippy warning for macOS target
* Fix compilation for macOS target
* Run cargo clippy more times with each supported platform separately
* Fix compilation on aarch64 due to i8/u8 mismatch
* Resolve clippy warnings and use correct types in bindings.
* Resolve warnings about unnecessary mut
* README: Add asciidoctor dependency to building from source instructions
* Makefile: Remove INIT_BINARY because there is no such thing
- Tweak the service file a (little) bit
-------------------------------------------------------------------
Thu Aug 10 07:25:18 UTC 2023 - Dominique Leuenberger <dimstar@opensuse.org>

View File

@@ -1,4 +1,4 @@
name: krunvm
version: 0.2.3+git12dac81
mtime: 1667834865
commit: 12dac810ecdc1a2519ac46d82e0c2739cef9f165
version: 0.2.4+git3cdfe0f
mtime: 1753950850
commit: 3cdfe0f27998fb905ad043d490c29d0caae66031

View File

@@ -1,7 +1,7 @@
#
# spec file for package krunvm
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,13 @@
Name: krunvm
Version: 0.2.3+git12dac81
Version: 0.2.4+git3cdfe0f
Release: 0
Summary: Manage lightweight VMs created from OCI images
License: Apache-2.0
URL: https://github.com/containers/krunvm
Source0: krunvm-%{version}.tar.gz
Source1: vendor.tar.zst
Source2: cargo_config
ExclusiveArch: x86_64 aarch64
BuildRequires: cargo-packaging
BuildRequires: libkrun-devel
@@ -43,8 +42,6 @@ Manage lightweight VMs created from OCI images
%prep
%setup -qa1
mkdir .cargo
cp %{SOURCE2} .cargo/config
%build
export RUSTFLAGS="%{build_rustflags}"

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2ef2fd3e2181d1483bca8966ca5f59823abe1ff02fe1f07ccce9614c623e8faf
size 6822282
oid sha256:0285172baa96090c48972d2aa837e14cca133d2247e3797069390f433191c9db
size 11077538