ec815a
%global with_check 0
ec815a
ec815a
%if 0%{?rhel} > 7 && ! 0%{?fedora}
ec815a
%define gobuild(o:) \
ec815a
go build -buildmode pie -compiler gc -tags="rpm_crashtraceback libtrust_openssl ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -compressdwarf=false -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v %{?**};
ec815a
%else
ec815a
%define gobuild(o:) GO111MODULE=off go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '-Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld '" -a -v %{?**};
ec815a
%endif
ec815a
ec815a
%global import_path github.com/containers/%{name}
b0182b
%global branch release-1.11
b0182b
%global commit0 3f98753bfdaa2c9e0465328b279f48bbdaa2ddaa
ec815a
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
ec815a
ec815a
Epoch: 2
ec815a
Name: skopeo
b0182b
Version: 1.11.2
88cd75
Release: 0.1%{?dist}
ec815a
Summary: Inspect container images and repositories on registries
ec815a
License: ASL 2.0
ec815a
URL: https://%{import_path}
ec815a
# https://fedoraproject.org/wiki/PackagingDrafts/Go#Go_Language_Architectures
ec815a
ExclusiveArch: %{go_arches}
ec815a
%if 0%{?branch:1}
ec815a
Source0: https://%{import_path}/tarball/%{commit0}/%{branch}-%{shortcommit0}.tar.gz
ec815a
%else
ec815a
Source0: https://%{import_path}/archive/%{commit0}/%{name}-%{version}-%{shortcommit0}.tar.gz
ec815a
%endif
ec815a
BuildRequires: git-core
ec815a
BuildRequires: golang >= 1.16.6
fe31b6
BuildRequires: /usr/bin/go-md2man
ec815a
BuildRequires: gpgme-devel
ec815a
BuildRequires: libassuan-devel
ec815a
BuildRequires: pkgconfig(devmapper)
ec815a
BuildRequires: glib2-devel
ec815a
BuildRequires: make
ec815a
Requires: containers-common >= 2:1-2
ec815a
Requires: system-release
ec815a
ec815a
%description
ec815a
Command line utility to inspect images and repositories directly on Docker
ec815a
registries without the need to pull them
ec815a
ec815a
%package tests
ec815a
Summary: Tests for %{name}
ec815a
Requires: %{name} = %{epoch}:%{version}-%{release}
ec815a
#Requires: bats  (which RHEL8 doesn't have. If it ever does, un-comment this)
ec815a
Requires: gnupg
ec815a
Requires: jq
ec815a
Requires: podman
ec815a
Requires: httpd-tools
ec815a
Requires: openssl
ec815a
ec815a
%description tests
ec815a
%{summary}
ec815a
ec815a
This package contains system tests for %{name}
ec815a
ec815a
%prep
ec815a
%if 0%{?branch:1}
ec815a
%autosetup -Sgit -n containers-%{name}-%{shortcommit0}
ec815a
%else
ec815a
%autosetup -Sgit -n %{name}-%{commit0}
ec815a
%endif
ec815a
sed -i 's/install-binary: bin\/%{name}/install-binary:/' Makefile
0e5753
sed -i 's/completions: bin\/%{name}/completions:/' Makefile
ec815a
sed -i 's/install-docs: docs/install-docs:/' Makefile
ec815a
ec815a
%build
ec815a
mkdir -p src/github.com/containers
ec815a
ln -s ../../../ src/%{import_path}
ec815a
ec815a
mkdir -p vendor/src
ec815a
for v in vendor/*; do
ec815a
    if test ${v} = vendor/src; then continue; fi
ec815a
    if test -d ${v}; then
ec815a
      mv ${v} vendor/src/
ec815a
    fi
ec815a
done
ec815a
ec815a
export GOPATH=$(pwd):$(pwd)/vendor
ec815a
export GO111MODULE=off
ec815a
export CGO_CFLAGS="%{optflags} -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
ec815a
export BUILDTAGS="exclude_graphdriver_btrfs btrfs_noversion $(hack/libdm_tag.sh)"
ec815a
mkdir -p bin
ec815a
%gobuild -o bin/%{name} ./cmd/%{name}
ec815a
%{__make} docs
ec815a
ec815a
%install
ec815a
make install-binary install-docs install-completions DESTDIR=%{buildroot} PREFIX=%{_prefix}
ec815a
ec815a
# system tests
ec815a
install -d -p %{buildroot}/%{_datadir}/%{name}/test/system
ec815a
cp -pav systemtest/* %{buildroot}/%{_datadir}/%{name}/test/system/
ec815a
ec815a
%check
ec815a
%if 0%{?with_check}
ec815a
export GOPATH=%{buildroot}/%{gopath}:$(pwd)/vendor:%{gopath}
ec815a
ec815a
%gotest %{import_path}/integration
ec815a
%endif
ec815a
ec815a
#define license tag if not already defined
ec815a
%{!?_licensedir:%global license %doc}
ec815a
ec815a
%files
ec815a
%license LICENSE
ec815a
%doc README.md
ec815a
%{_bindir}/%{name}
ec815a
%{_mandir}/man1/%{name}*
ec815a
%dir %{_datadir}/bash-completion
ec815a
%dir %{_datadir}/bash-completion/completions
ec815a
%{_datadir}/bash-completion/completions/%{name}
0e5753
%dir %{_datadir}/fish/vendor_completions.d
0e5753
%{_datadir}/fish/vendor_completions.d/%{name}.fish
0e5753
%dir %{_datadir}/zsh/site-functions
0e5753
%{_datadir}/zsh/site-functions/_%{name}
ec815a
ec815a
%files tests
ec815a
%license LICENSE
ec815a
%{_datadir}/%{name}/test
ec815a
ec815a
%changelog
b0182b
* Tue Feb 21 2023 Jindrich Novy <jnovy@redhat.com> - 2:1.11.2-0.1
b0182b
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.11
b0182b
  (https://github.com/containers/skopeo/commit/3f98753)
b0182b
- Related: #2124478
b0182b
b0182b
* Mon Feb 20 2023 Jindrich Novy <jnovy@redhat.com> - 2:1.11.1-1
b0182b
- update to https://github.com/containers/skopeo/releases/tag/v1.11.1
b0182b
- Related: #2124478
b0182b
b0182b
* Fri Jan 27 2023 Jindrich Novy <jnovy@redhat.com> - 2:1.11.0-1
b0182b
- update to 1.11.0 release
b0182b
- Related: #2124478
b0182b
b0182b
* Wed Jan 25 2023 Jindrich Novy <jnovy@redhat.com> - 2:1.11.0-0.4
b0182b
- update to the latest content of https://github.com/containers/skopeo/tree/main
b0182b
  (https://github.com/containers/skopeo/commit/b3b2c73)
b0182b
- Related: #2124478
b0182b
b0182b
* Tue Jan 24 2023 Jindrich Novy <jnovy@redhat.com> - 2:1.11.0-0.3
b0182b
- update to the latest content of https://github.com/containers/skopeo/tree/main
b0182b
  (https://github.com/containers/skopeo/commit/fe15a36)
b0182b
- Related: #2124478
b0182b
b0182b
* Tue Jan 17 2023 Jindrich Novy <jnovy@redhat.com> - 2:1.11.0-0.2
b0182b
- update to the latest content of https://github.com/containers/skopeo/tree/main
b0182b
  (https://github.com/containers/skopeo/commit/8e09e64)
b0182b
- Related: #2124478
b0182b
b0182b
* Fri Jan 13 2023 Jindrich Novy <jnovy@redhat.com> - 2:1.11.0-0.1
b0182b
- update to the latest content of https://github.com/containers/skopeo/tree/main
b0182b
  (https://github.com/containers/skopeo/commit/2817510)
b0182b
- Related: #2124478
b0182b
b0182b
* Tue Nov 01 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.10.0-1
b0182b
- update to https://github.com/containers/skopeo/releases/tag/v1.10.0
b0182b
- Related: #2124478
b0182b
b0182b
* Mon Oct 31 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.9.3-1
b0182b
- update to https://github.com/containers/skopeo/releases/tag/v1.9.3
b0182b
- Related: #2124478
88cd75
0e5753
* Wed Aug 03 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.9.2-1
0e5753
- update to https://github.com/containers/skopeo/releases/tag/v1.9.2
0e5753
- Related: #2061316
0e5753
0e5753
* Tue Jul 26 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.9.1-1
0e5753
- update to https://github.com/containers/skopeo/releases/tag/v1.9.1
0e5753
- Related: #2061316
0e5753
0e5753
* Thu Jul 14 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.9.0-1
0e5753
- update to https://github.com/containers/skopeo/releases/tag/v1.9.0
0e5753
- Related: #2061316
0e5753
fe31b6
* Fri May 13 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.8.0-4
fe31b6
- Re-enable debuginfo
fe31b6
- Related: #2061316
fe31b6
fe31b6
* Wed May 11 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.8.0-3
fe31b6
- BuildRequires: /usr/bin/go-md2man
fe31b6
- Related: #2061316
fe31b6
fe31b6
* Mon May 09 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.8.0-2
fe31b6
- enable LTO
fe31b6
- Related: #1988128
fe31b6
fe31b6
* Mon May 09 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.8.0-1
fe31b6
- update to https://github.com/containers/skopeo/releases/tag/v1.8.0
fe31b6
- Related: #2061316
fe31b6
fe31b6
* Fri Mar 25 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.7.0-1
fe31b6
- update to https://github.com/containers/skopeo/releases/tag/v1.7.0
fe31b6
- Related: #2061316
fe31b6
fe31b6
* Mon Mar 14 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.6.1-4
fe31b6
- add tags: classic (Ed Santiago)
fe31b6
- Related: #2061316
fe31b6
fe31b6
* Mon Mar 14 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.6.1-3
fe31b6
- remove BATS from required packages (Ed Santiago)
fe31b6
- Related: #2061316
fe31b6
fe31b6
* Mon Mar 14 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.6.1-2
fe31b6
- be sure to install BATS before gating tests are executed
fe31b6
  (thanks to Ed Santiago)
fe31b6
- Related: #2061316
ec815a
ec815a
* Thu Feb 17 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.6.1-1
ec815a
- update to https://github.com/containers/skopeo/releases/tag/v1.6.1
ec815a
- Related: #2000051
ec815a
ec815a
* Thu Feb 03 2022 Jindrich Novy <jnovy@redhat.com> - 2:1.6.0-1
ec815a
- update to https://github.com/containers/skopeo/releases/tag/v1.6.0
ec815a
- Related: #2000051
ec815a
ec815a
* Mon Nov 29 2021 Jindrich Novy <jnovy@redhat.com> - 2:1.5.2-1
ec815a
- update to https://github.com/containers/skopeo/releases/tag/v1.5.2
ec815a
- Related: #2000051
ec815a
ec815a
* Fri Nov 05 2021 Jindrich Novy <jnovy@redhat.com> - 2:1.5.1-1
ec815a
- update to https://github.com/containers/skopeo/releases/tag/v1.5.1
ec815a
- Related: #2000051
ec815a
ec815a
* Thu Nov 04 2021 Jindrich Novy <jnovy@redhat.com> - 2:1.5.1-0.9
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/4acc9f0)
ec815a
- Related: #2000051
ec815a
ec815a
* Wed Oct 27 2021 Jindrich Novy <jnovy@redhat.com> - 2:1.5.1-0.8
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/c2732cb)
ec815a
- Related: #2000051
ec815a
ec815a
* Mon Oct 25 2021 Jindrich Novy <jnovy@redhat.com> - 2:1.5.1-0.7
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/01e58f8)
ec815a
- Related: #2000051
ec815a
ec815a
* Thu Oct 21 2021 Jindrich Novy <jnovy@redhat.com> - 2:1.5.1-0.6
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/8f64c04)
ec815a
- Related: #2000051
ec815a
ec815a
* Mon Oct 18 2021 Jindrich Novy <jnovy@redhat.com> - 2:1.5.1-0.5
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/8182255)
ec815a
- Related: #2000051
ec815a
ec815a
* Fri Oct 15 2021 Jindrich Novy <jnovy@redhat.com> - 2:1.5.1-0.4
ec815a
- bump Epoch to preserve upgrade patch from RHEL8
ec815a
- Related: #2000051
ec815a
ec815a
* Wed Oct 13 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.5.1-0.3
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/9c9a9f3)
ec815a
- Related: #2000051
ec815a
ec815a
* Fri Oct 08 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.5.1-0.2
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/116e75f)
ec815a
- Related: #2000051
ec815a
ec815a
* Thu Oct 07 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.5.1-0.1
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/fc81803)
ec815a
- Related: #2000051
ec815a
ec815a
* Wed Oct 06 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-0.14
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/ff88d3f)
ec815a
- Related: #2000051
ec815a
ec815a
* Mon Oct 04 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-0.13
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/a95b0cc)
ec815a
- Related: #2000051
ec815a
ec815a
* Fri Oct 01 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-0.12
ec815a
- add skopeo tests from Fedora
ec815a
- Related: #2000051
ec815a
ec815a
* Fri Oct 01 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-0.11
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/53cf287)
ec815a
- Related: #2000051
ec815a
ec815a
* Wed Sep 29 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-0.10
ec815a
- add gating.yaml
ec815a
- Related: #2000051
ec815a
ec815a
* Wed Sep 29 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-0.9
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/86fa758)
ec815a
- Related: #2000051
ec815a
ec815a
* Mon Sep 27 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-0.8
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/2c2e5b7)
ec815a
- Related: #2000051
ec815a
ec815a
* Thu Sep 23 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-0.7
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/25d3e7b)
ec815a
- Related: #2000051
ec815a
ec815a
* Wed Sep 22 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-0.6
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/c5a5199)
ec815a
- Related: #2000051
ec815a
ec815a
* Tue Sep 21 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-0.5
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/db1e814)
ec815a
- Related: #2000051
ec815a
ec815a
* Fri Sep 17 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-0.4
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/31b8981)
ec815a
- Related: #2000051
ec815a
ec815a
* Wed Sep 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-0.3
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/177443f)
ec815a
- Related: #2000051
ec815a
ec815a
* Tue Sep 14 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-0.2
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/30f208e)
ec815a
- Related: #2000051
ec815a
ec815a
* Thu Sep 09 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-0.1
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/main
ec815a
  (https://github.com/containers/skopeo/commit/47b8082)
ec815a
- Related: #2000051
ec815a
ec815a
* Fri Sep 03 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-1
ec815a
- rebuild with containers-common dep fixed
ec815a
- Related: #2000051
ec815a
ec815a
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.4.0-7
ec815a
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
ec815a
  Related: rhbz#1991688
ec815a
ec815a
* Fri Aug 06 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-6
ec815a
- be sure short-name-mode is permissive in RHEL8
ec815a
- Related: #1970747
ec815a
ec815a
* Wed Aug 04 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-5
ec815a
- don't define short-name-mode in RHEL8
ec815a
- Related: #1970747
ec815a
ec815a
* Wed Aug 04 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-4
ec815a
- put both RHEL8 and RHEL9 conditional configurations into update.sh
ec815a
- Related: #1970747
ec815a
ec815a
* Wed Aug 04 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-3
ec815a
- update vendored components
ec815a
- always require runc on RHEL8 or lesser
ec815a
- Related: #1970747
ec815a
ec815a
* Wed Aug 04 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-2
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.4
ec815a
  (https://github.com/containers/skopeo/commit/a44da44)
ec815a
- Related: #1970747
ec815a
ec815a
* Tue Aug 03 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-1
ec815a
- update to 1.4.0 release and switch to the release-1.4 maint branch
ec815a
- Related: #1970747
ec815a
ec815a
* Mon Aug 02 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-0.2
ec815a
- update vendored components
ec815a
- ship /etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release only on non-RHEL and
ec815a
  CentOS distros
ec815a
- Related: #1970747
ec815a
ec815a
* Thu Jul 29 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-0.1
ec815a
- switch to the main branch of skopeo
ec815a
- Related: #1970747
ec815a
ec815a
* Tue Jul 27 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-9
ec815a
- Add support for signed RHEL images, enabled by default
ec815a
- Related: #1970747
ec815a
ec815a
* Mon Jul 26 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-8
ec815a
- update seccomp.json from Fedora to allow clone3 to pass
ec815a
- Related: #1970747
ec815a
ec815a
* Thu Jul 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-7
ec815a
- update shortnames from Pyxis
ec815a
- put RHEL9/UBI9 images into overrides
ec815a
- Related: #1970747
ec815a
ec815a
* Wed Jul 07 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-6
ec815a
- correct name of the option is "short-name-mode" not "short-names-mode"
ec815a
- Related: #1970747
ec815a
ec815a
* Mon Jul 05 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-5
ec815a
- handle CentOS Stream while updating vendored components
ec815a
- Related: #1970747
ec815a
ec815a
* Mon Jul 05 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-4
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.3
ec815a
  (https://github.com/containers/skopeo/commit/038f70e)
ec815a
- Related: #1970747
ec815a
ec815a
* Thu Jul 01 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-3
ec815a
- update registries.conf to be consistent with upstream
ec815a
- Related: #1970747
ec815a
ec815a
* Thu Jul 01 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-2
ec815a
- consume content from the release-1.3 upstream branch
ec815a
- Related: #1970747
ec815a
ec815a
* Wed Jun 30 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-1
ec815a
- update to https://github.com/containers/skopeo/releases/tag/v1.3.1
ec815a
- Related: #1970747
ec815a
ec815a
* Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.3.0-7
ec815a
- Rebuilt for RHEL 9 BETA for openssl 3.0
ec815a
  Related: rhbz#1971065
ec815a
ec815a
* Tue Jun 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.0-6
ec815a
- set short-names-mode = "enforcing" in registries.conf
ec815a
- Resolves: #1971752
ec815a
ec815a
* Mon Jun 14 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.0-5
ec815a
- configure for RHEL9
ec815a
- Related: #1970747
ec815a
ec815a
* Mon Jun 14 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.0-4
ec815a
- add missing containers-mounts.conf.5.md file to git
ec815a
- don't list/install the same doc twice
ec815a
- Related: #1970747
ec815a
ec815a
* Mon Jun 14 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.0-3
ec815a
- update to new versions of vendored components
ec815a
- fail is there is an issue in communication with Pyxis API
ec815a
- understand devel branch in update.sh script, use pkg wrapper
ec815a
- sync with Pyxis
ec815a
- use containers-mounts.conf.5.md from containers/common
ec815a
- Related: #1970747
ec815a
ec815a
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.2.2-4
ec815a
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
ec815a
ec815a
* Mon Mar 08 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.2-3
ec815a
- disable LTO again
ec815a
ec815a
* Wed Mar 03 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.2-2
ec815a
- use rhel-shortnames only from trusted registries
ec815a
- sync with config files from current versions of vendored projects
ec815a
ec815a
* Fri Feb 19 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.2-1
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.2
ec815a
  (https://github.com/containers/skopeo/commit/e72dd9c)
ec815a
ec815a
* Fri Feb 19 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-14
ec815a
- add missing file in sed expression
ec815a
ec815a
* Thu Feb 18 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-13
ec815a
- use %%go_arches again
ec815a
- Related: #1926597
ec815a
ec815a
* Thu Feb 18 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-12
ec815a
- configure short-name-mode = "enforcing" for RHEL9
ec815a
ec815a
* Thu Feb 18 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-11
ec815a
- disable LTO
ec815a
ec815a
* Thu Feb 18 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-10
ec815a
- rename shortnames.conf to 000-shortnames.conf to assure evaluation order
ec815a
- Related: #1883490
ec815a
ec815a
* Thu Feb 18 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-9
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.2
ec815a
  (https://github.com/containers/skopeo/commit/3abb778)
ec815a
ec815a
* Mon Feb 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-8
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.2
ec815a
  (https://github.com/containers/skopeo/commit/b4210c0)
ec815a
- Resolves: #1914884
ec815a
ec815a
* Sat Feb 06 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-7
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.2
ec815a
  (https://github.com/containers/skopeo/commit/6c0e35a)
ec815a
ec815a
* Wed Feb 03 2021 Jeff Law <law@redhat.com> - 1:1.2.1-6
ec815a
- Disable LTO
ec815a
ec815a
* Tue Feb 02 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-5
ec815a
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.2
ec815a
  (https://github.com/containers/skopeo/commit/a05ddb8)
ec815a
ec815a
* Sun Jan 31 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-4
ec815a
- define 8.4.0 branch for podman (v3.0)
ec815a
- remove redundant source file
ec815a
ec815a
* Fri Jan 29 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-3
ec815a
- convert subscription-manager from weak dep to a hint
ec815a
ec815a
* Tue Jan 19 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-2
ec815a
- fix rhel-shortnames.conf generation (avoid duplicates and records
ec815a
  with invalid URL)
ec815a
- Related: #1883490
ec815a
ec815a
* Thu Jan 14 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-1
ec815a
- ship preconfigured /etc/containers/registries.d/ files with containers-common
ec815a
ec815a
* Tue Dec 01 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.2.0-6
ec815a
- unify vendored branches
ec815a
- add validation script
ec815a
ec815a
* Thu Nov 05 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.2.0-5
ec815a
- simplify spec file
ec815a
- use short commit ID in tarball name
ec815a
ec815a
* Fri Oct 23 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.2.0-4
ec815a
- use shortcommit ID in branch tarball name
ec815a
ec815a
* Thu Oct 22 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.2.0-3
ec815a
- update sources and allow to deliver from upstream branch
ec815a
ec815a
* Fri Sep 25 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.2.0-2
ec815a
- fix build of the new skopeo-1.2.0
ec815a
ec815a
* Fri Sep 25 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.2.0-1
ec815a
- update to https://github.com/containers/skopeo/releases/tag/v1.2.0
ec815a
ec815a
* Thu Sep 17 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.1.1-4
ec815a
- sync with rhel8-8.3.0
ec815a
- propagate proper CFLAGS to CGO_CFLAGS to assure code hardening and optimization
ec815a
- Related: #1821193
ec815a
ec815a
* Wed Jun 19 2019 Eduardo Santiago <santiago@redhat.com> - 1:0.1.37-1
ec815a
- Resolves: #1720654 - rebase to v0.1.37
ec815a
- Resolves: #1721247 - enable fips mode
ec815a
- add emergency debugging patch for figuring out gating-tests problem
ec815a
ec815a
* Tue Jun  4 2019 Eduardo Santiago <santiago@redhat.com> - 1:0.1.36-1.git6307635
ec815a
- built upstream tag v0.1.36, including system tests
ec815a
ec815a
* Tue Apr 30 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.32-4.git1715c90
ec815a
- Fixes @openshift/machine-config-operator#669
ec815a
- install /etc/containers/oci/hooks.d and /etc/containers/certs.d
ec815a
ec815a
* Tue Dec 18 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1:0.1.32-3.git1715c90
ec815a
- rebase
ec815a
ec815a
* Mon Dec 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1:0.1.32-2.git1715c90
ec815a
- re-enable debuginfo
ec815a
ec815a
* Mon Dec 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1:0.1.31-12.gitb0b750d
ec815a
- go tools not in scl anymore
ec815a
ec815a
* Fri Sep 21 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-11.gitb0b750d
ec815a
- Resolves: #1615609
ec815a
- built upstream tag v0.1.31
ec815a
ec815a
* Thu Aug 23 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-10.git0144aa8
ec815a
- Resolves: #1616069 - correct order of registries
ec815a
ec815a
* Mon Aug 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-9.git0144aa8
ec815a
- Resolves: #1615609 - rebuild with gobuild tag 'no_openssl'
ec815a
ec815a
* Fri Aug 10 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-8.git0144aa8
ec815a
- Resolves: #1614934 - containers-common soft dep on slirp4netns and
ec815a
fuse-overlayfs
ec815a
ec815a
* Wed Aug 08 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-7.git0144aa8
ec815a
- build with %%gobuild
ec815a
- use scl-ized go-toolset as dep
ec815a
- disable i686 builds temporarily because of go-toolset issues
ec815a
ec815a
* Wed Jul 18 2018 dwalsh <dwalsh@redhat.com> - 1:0.1.31-6.git0144aa8
ec815a
- add statx to seccomp.json to containers-config
ec815a
- add seccomp.json to containers-config
ec815a
ec815a
* Tue Jul 03 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-4.git0144aa8
ec815a
- Resolves: #1597629 - handle dependency issue for skopeo-containers
ec815a
- rename skopeo-containers to containers-common as in Fedora
ec815a
ec815a
* Mon Jun 25 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-3.git0144aa8
ec815a
- Resolves: #1583762 - btrfs dep removal needs exclude_graphdriver_btrfs
ec815a
buildtag
ec815a
ec815a
* Wed Jun 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-2.git0144aa8
ec815a
- correct bz in previous changelog
ec815a
ec815a
* Wed Jun 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-1.git0144aa8
ec815a
- Resolves: #1580938 - resolve FTBFS
ec815a
- Resolves: #1583762 - remove dependency on btrfs-progs-devel
ec815a
- bump to v0.1.31 (from master)
ec815a
- built commit ca3bff6
ec815a
- use go-toolset deps for rhel8
ec815a
ec815a
* Tue Apr 03 2018 baude <bbaude@redhat.com> - 0.1.29-5.git7add6fc
ec815a
- Fix small typo in registries.conf
ec815a
ec815a
* Tue Apr 3 2018 dwalsh <dwalsh@redhat.com> - 0.1.29-4.git
ec815a
- Add policy.json.5
ec815a
ec815a
* Mon Apr 2 2018 dwalsh <dwalsh@redhat.com> - 0.1.29-3.git
ec815a
- Add registries.conf
ec815a
ec815a
* Mon Apr 2 2018 dwalsh <dwalsh@redhat.com> - 0.1.29-2.git
ec815a
- Add registries.conf man page
ec815a
ec815a
* Thu Mar 29 2018 dwalsh <dwalsh@redhat.com> - 0.1.29-1.git
ec815a
- bump to 0.1.29-1
ec815a
- Updated containers/image
ec815a
    docker-archive generates docker legacy compatible images
ec815a
    Do not create $DiffID subdirectories for layers with no configs
ec815a
    Ensure the layer IDs in legacy docker/tarfile metadata are unique
ec815a
    docker-archive: repeated layers are symlinked in the tar file
ec815a
    sysregistries: remove all trailing slashes
ec815a
    Improve docker/* error messages
ec815a
    Fix failure to make auth directory
ec815a
    Create a new slice in Schema1.UpdateLayerInfos
ec815a
    Drop unused storageImageDestination.{image,systemContext}
ec815a
    Load a *storage.Image only once in storageImageSource
ec815a
    Support gzip for docker-archive files
ec815a
    Remove .tar extension from blob and config file names
ec815a
    ostree, src: support copy of compressed layers
ec815a
    ostree: re-pull layer if it misses uncompressed_digest|uncompressed_size
ec815a
    image: fix docker schema v1 -> OCI conversion
ec815a
    Add /etc/containers/certs.d as default certs directory
ec815a
ec815a
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.28-2.git0270e56
ec815a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
ec815a
ec815a
* Fri Feb 2 2018 dwalsh <dwalsh@redhat.com> - 0.1.28-1.git
ec815a
- Vendor in fixed libraries in containers/image and containers/storage
ec815a
ec815a
* Tue Nov 21 2017 dwalsh <dwalsh@redhat.com> - 0.1.27-1.git
ec815a
- Fix Conflicts to Obsoletes
ec815a
- Add better docs to man pages.
ec815a
- Use credentials from authfile for skopeo commands
ec815a
- Support storage="" in /etc/containers/storage.conf
ec815a
- Add global --override-arch and --override-os options
ec815a
ec815a
* Wed Nov 15 2017 dwalsh <dwalsh@redhat.com> - 0.1.25-2.git2e8377a7
ec815a
-  Add manifest type conversion to skopeo copy
ec815a
-  User can select from 3 manifest types: oci, v2s1, or v2s2
ec815a
-   e.g skopeo copy --format v2s1 --compress-blobs docker-archive:alp.tar dir:my-directory
ec815a
ec815a
* Wed Nov 8 2017 dwalsh <dwalsh@redhat.com> - 0.1.25-2.git7fd6f66b
ec815a
- Force storage.conf to default to overlay
ec815a
ec815a
* Wed Nov 8 2017 dwalsh <dwalsh@redhat.com> - 0.1.25-1.git7fd6f66b
ec815a
-   Fix CVE in tar-split
ec815a
-   copy: add shared blob directory support for OCI sources/destinations
ec815a
-   Aligning Docker version between containers/image and skopeo
ec815a
-   Update image-tools, and remove the duplicate Sirupsen/logrus vendor
ec815a
-   makefile: use -buildmode=pie
ec815a
  
ec815a
* Tue Nov 7 2017 dwalsh <dwalsh@redhat.com> - 0.1.24-8.git28d4e08a
ec815a
- Add /usr/share/containers/mounts.conf
ec815a
ec815a
* Sun Oct 22 2017 dwalsh <dwalsh@redhat.com> - 0.1.24-7.git28d4e08a
ec815a
- Bug fixes
ec815a
- Update to release
ec815a
ec815a
* Tue Oct 17 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.24-6.dev.git28d4e08
ec815a
- skopeo-containers conflicts with docker-rhsubscription <= 2:1.13.1-31
ec815a
ec815a
* Tue Oct 17 2017 dwalsh <dwalsh@redhat.com> - 0.1.24-5.dev.git28d4e08
ec815a
- Add rhel subscription secrets data to skopeo-containers
ec815a
ec815a
* Thu Oct 12 2017 dwalsh <dwalsh@redhat.com> - 0.1.24-4.dev.git28d4e08
ec815a
- Update container/storage.conf and containers-storage.conf man page
ec815a
- Default override to true so it is consistent with RHEL.
ec815a
ec815a
* Tue Oct 10 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.24-3.dev.git28d4e08
ec815a
- built commit 28d4e08
ec815a
ec815a
* Mon Sep 18 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.24-2.dev.git875dd2e
ec815a
- built commit 875dd2e
ec815a
- Resolves: gh#416
ec815a
ec815a
* Tue Sep 12 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.24-1.dev.gita41cd0
ec815a
- bump to 0.1.24-dev
ec815a
- correct a prior bogus date
ec815a
- fix macro in comment warning
ec815a
ec815a
* Mon Aug 21 2017 dwalsh <dwalsh@redhat.com> - 0.1.23-6.dev.git1bbd87
ec815a
- Change name of storage.conf.5 man page to containers-storage.conf.5, since
ec815a
it conflicts with inn package
ec815a
- Also remove default to "overalay" in the configuration, since we should
ec815a
- allow containers storage to pick the best default for the platform.
ec815a
ec815a
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.23-5.git1bbd87f
ec815a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
ec815a
ec815a
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 0.1.23-4.git1bbd87f
ec815a
- Rebuild with binutils fix for ppc64le (#1475636)
ec815a
ec815a
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.23-3.git1bbd87f
ec815a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
ec815a
ec815a
* Tue Jul 25 2017 dwalsh <dwalsh@redhat.com> - 0.1.23-2.dev.git1bbd87
ec815a
- Fix storage.conf man page to be storage.conf.5.gz so that it works.
ec815a
ec815a
* Fri Jul 21 2017 dwalsh <dwalsh@redhat.com> - 0.1.23-1.dev.git1bbd87
ec815a
- Support for OCI V1.0 Images
ec815a
- Update to image-spec v1.0.0 and revendor
ec815a
- Fixes for authentication
ec815a
ec815a
* Sat Jul 01 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.22-2.dev.git5d24b67
ec815a
- Epoch: 1 for CentOS as CentOS Extras' build already has epoch set to 1
ec815a
ec815a
* Wed Jun 21 2017 dwalsh <dwalsh@redhat.com> - 0.1.22-1.dev.git5d24b67
ec815a
-  Give more useful help when explaining usage
ec815a
-  Also specify container-storage as a valid transport
ec815a
-  Remove docker reference wherever possible
ec815a
-  vendor in ostree fixes
ec815a
ec815a
* Thu Jun 15 2017 dwalsh <dwalsh@redhat.com> - 0.1.21-1.dev.git0b73154
ec815a
- Add support for storage.conf and storage-config.5.md from github container storage package
ec815a
- Bump to the latest version of skopeo
ec815a
- vendor.conf: add ostree-go
ec815a
- it is used by containers/image for pulling images to the OSTree storage.
ec815a
- fail early when image os does not match host os
ec815a
- Improve documentation on what to do with containers/image failures in test-skopeo
ec815a
-   We now have the docker-archive: transport
ec815a
-   Integration tests with built registries also exist
ec815a
- Support /etc/docker/certs.d
ec815a
- update image-spec to v1.0.0-rc6
ec815a
ec815a
* Tue May 23 2017 bbaude <bbaude@redhat.com> - 0.1.20-1.dev.git0224d8c
ec815a
- BZ #1380078 - New release
ec815a
ec815a
* Tue Apr 25 2017 bbaude <bbaude@redhat.com> - 0.1.19-2.dev.git0224d8c
ec815a
- No golang support for ppc64.  Adding exclude arch. BZ #1445490
ec815a
ec815a
* Tue Feb 28 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.19-1.dev.git0224d8c
ec815a
- bump to v0.1.19-dev
ec815a
- built commit 0224d8c
ec815a
ec815a
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.17-3.dev.git2b3af4a
ec815a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
ec815a
ec815a
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.1.17-2.dev.git2b3af4a
ec815a
- Rebuild for gpgme 1.18
ec815a
ec815a
* Tue Dec 06 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.17-1.dev.git2b3af4a
ec815a
- bump to 0.1.17-dev
ec815a
ec815a
* Fri Nov 04 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.14-6.git550a480
ec815a
- Fix BZ#1391932
ec815a
ec815a
* Tue Oct 18 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.14-5.git550a480
ec815a
- Conflicts with atomic in skopeo-containers
ec815a
ec815a
* Wed Oct 12 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.14-4.git550a480
ec815a
- built skopeo-containers
ec815a
ec815a
* Wed Sep 21 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.14-3.gitd830391
ec815a
- built mtrmac/integrate-all-the-things commit d830391
ec815a
ec815a
* Thu Sep 08 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.14-2.git362bfc5
ec815a
- built commit 362bfc5
ec815a
ec815a
* Thu Aug 11 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.14-1.gitffe92ed
ec815a
- build origin/master commit ffe92ed
ec815a
ec815a
* Thu Jul 21 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.13-6
ec815a
- https://fedoraproject.org/wiki/Changes/golang1.7
ec815a
ec815a
* Tue Jun 21 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.13-5
ec815a
- include go-srpm-macros and compiler(go-compiler) in fedora conditionals
ec815a
- define %%gobuild if not already
ec815a
- add patch to build with older version of golang
ec815a
ec815a
* Thu Jun 02 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.13-4
ec815a
- update to v0.1.12
ec815a
ec815a
* Tue May 31 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.12-3
ec815a
- fix go build source path
ec815a
ec815a
* Fri May 27 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.12-2
ec815a
- update to v0.1.12
ec815a
ec815a
* Tue Mar 08 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.11-1
ec815a
- update to v0.1.11
ec815a
ec815a
* Tue Mar 08 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.10-1
ec815a
- update to v0.1.10
ec815a
- change runcom -> projectatomic
ec815a
ec815a
* Mon Feb 29 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.9-1
ec815a
- update to v0.1.9
ec815a
ec815a
* Mon Feb 29 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.8-1
ec815a
- update to v0.1.8
ec815a
ec815a
* Mon Feb 22 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.4-2
ec815a
- https://fedoraproject.org/wiki/Changes/golang1.6
ec815a
ec815a
* Fri Jan 29 2016 Antonio Murdaca <runcom@redhat.com> - 0.1.4
ec815a
- First package for Fedora