Compare commits
3 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 003bb0ff57 | |||
| 8ea5e81fcd | |||
| f4a6dafee3 |
12
_service
12
_service
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
@@ -1,5 +0,0 @@
|
||||
[source.crates-io]
|
||||
replace-with = "vendored-sources"
|
||||
|
||||
[source.vendored-sources]
|
||||
directory = "vendor"
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:12866e28c0ff4d5b411585330092d4b8daaedd2ab2873098016df3512c9b01d1
|
||||
size 79371
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fe68de17f70896373f64e0fece6cfc36a291bb5df1f594692c31ac5a46527eed
|
||||
size 19395
|
||||
3
krunvm-0.2.4+git3cdfe0f.obscpio
Normal file
3
krunvm-0.2.4+git3cdfe0f.obscpio
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:78bd2d0c3867458bc28258baf2707e11c991bf32e73a1fba3a94b3b92af299da
|
||||
size 81931
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
name: krunvm
|
||||
version: 0.2.3+git12dac81
|
||||
mtime: 1667834865
|
||||
commit: 12dac810ecdc1a2519ac46d82e0c2739cef9f165
|
||||
version: 0.2.4+git3cdfe0f
|
||||
mtime: 1753950850
|
||||
commit: 3cdfe0f27998fb905ad043d490c29d0caae66031
|
||||
|
||||
@@ -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}"
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2ef2fd3e2181d1483bca8966ca5f59823abe1ff02fe1f07ccce9614c623e8faf
|
||||
size 6822282
|
||||
oid sha256:0285172baa96090c48972d2aa837e14cca133d2247e3797069390f433191c9db
|
||||
size 11077538
|
||||
|
||||
Reference in New Issue
Block a user