17
0

2 Commits

5 changed files with 24 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
<services>
<service name="tar_scm" mode="manual">
<param name="filename">containerized-data-importer</param>
<param name="revision">v1.62.0</param>
<param name="revision">v1.64.0</param>
<param name="scm">git</param>
<param name="submodules">disable</param>
<param name="url">https://github.com/kubevirt/containerized-data-importer</param>

View File

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

View File

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

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Wed Dec 17 18:55:42 UTC 2025 - James Fehlig <jfehlig@suse.com>
- Update to version 1.64.0
Release notes https://github.com/kubevirt/containerized-data-importer/releases/tag/v1.64.0
- spec: Use C11 when building CGO dependencies
-------------------------------------------------------------------
Tue Nov 25 17:53:05 UTC 2025 - James Fehlig <jfehlig@suse.com>
- Update to version 1.63.1
Release notes https://github.com/kubevirt/containerized-data-importer/releases/tag/v1.63.1
-------------------------------------------------------------------
Wed Apr 23 04:19:41 UTC 2025 - Caleb Crane <caleb.crane@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package containerized-data-importer
#
# Copyright (c) 2025 SUSE LLC
# Copyright (c) 2026 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -30,7 +30,7 @@
%endif
Name: containerized-data-importer
Version: 1.62.0
Version: 1.64.0
Release: 0
Summary: Container native virtualization
License: Apache-2.0
@@ -204,6 +204,11 @@ export CDI_GIT_COMMIT='v%{version}'
export CDI_GIT_VERSION='v%{version}'
export CDI_GIT_TREE_STATE="clean"
# CDI encountered build failures in vendor/libguestfs.org/libnbd/wrappers.h
# when Factory switched to the C23 standard. Until libguestfs makes header
# files C23 compliant, use C11 when building CGO dependencies
export CGO_CFLAGS="-std=gnu11"
GOFLAGS="-buildmode=pie ${GOFLAGS}" ./hack/build/build-go.sh build \
cmd/cdi-apiserver \
cmd/cdi-cloner \