8b02a8
%global _lto_cflags %{nil}
8b02a8
d82e54
%global with_check 0
d82e54
d82e54
%global _find_debuginfo_dwz_opts %{nil}
d82e54
%global _dwz_low_mem_die_limit 0
d82e54
d82e54
%if 0%{?rhel} > 7 && ! 0%{?fedora}
d82e54
%define gobuild(o:) \
205622
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 %{?**};
205622
%else
205622
%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 %{?**};
6f9067
%endif
d82e54
205622
%global import_path github.com/containers/skopeo
8b02a8
%global branch release-1.4
8b02a8
%global commit0 01e51ce610e3cfe1230a10af982e962c4ad1c990
8b02a8
%global shortcommit0 %%(c=%%{commit0}; echo ${c:0:7})
d82e54
d82e54
Epoch: 1
205622
Name: skopeo
8b02a8
Version: 1.4.2
8b02a8
Release: 0.1%{?dist}
d82e54
Summary: Inspect container images and repositories on registries
d82e54
License: ASL 2.0
8b02a8
URL: https://github.com/containers/skopeo
205622
# https://fedoraproject.org/wiki/PackagingDrafts/Go#Go_Language_Architectures
205622
ExclusiveArch: %{go_arches}
205622
%if 0%{?branch:1}
205622
Source0: https://%{import_path}/tarball/%{commit0}/%{branch}-%{shortcommit0}.tar.gz
205622
%else
205622
Source0: https://%{import_path}/archive/%{commit0}/%{name}-%{version}-%{shortcommit0}.tar.gz
205622
%endif
8b02a8
BuildRequires: git-core
8b02a8
BuildRequires: golang >= 1.16.6
6f9067
BuildRequires: go-md2man
d82e54
BuildRequires: gpgme-devel
d82e54
BuildRequires: libassuan-devel
d82e54
BuildRequires: pkgconfig(devmapper)
d82e54
BuildRequires: glib2-devel
6f9067
BuildRequires: make
8b02a8
Requires: containers-common >= 2:1-2
d82e54
d82e54
%description
d82e54
Command line utility to inspect images and repositories directly on Docker
d82e54
registries without the need to pull them
d82e54
d82e54
%package tests
d82e54
Summary:         Tests for %{name}
d82e54
Requires: %{name} = %{epoch}:%{version}-%{release}
d82e54
#Requires: bats  (which RHEL8 doesn't have. If it ever does, un-comment this)
d82e54
Requires: gnupg
d82e54
Requires: jq
d82e54
Requires: podman
205622
Requires: httpd-tools
8b02a8
Requires: openssl
d82e54
d82e54
%description tests
d82e54
%{summary}
d82e54
d82e54
This package contains system tests for %{name}
d82e54
d82e54
%prep
205622
%if 0%{?branch:1}
205622
%autosetup -Sgit -n containers-%{name}-%{shortcommit0}
205622
%else
205622
%autosetup -Sgit -n %{name}-%{commit0}
205622
%endif
205622
sed -i 's/install-binary: bin\/%{name}/install-binary:/' Makefile
205622
sed -i 's/install-docs: docs/install-docs:/' Makefile
d82e54
d82e54
%build
d82e54
mkdir -p src/github.com/containers
d82e54
ln -s ../../../ src/%{import_path}
d82e54
d82e54
mkdir -p vendor/src
d82e54
for v in vendor/*; do
d82e54
    if test ${v} = vendor/src; then continue; fi
d82e54
    if test -d ${v}; then
6f9067
      mv ${v} vendor/src/
d82e54
    fi
d82e54
done
d82e54
d82e54
export GOPATH=$(pwd):$(pwd)/vendor:%{gopath}
6f9067
export GO111MODULE=off
205622
export CGO_CFLAGS="%{optflags} -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
8b02a8
export BUILDTAGS="exclude_graphdriver_btrfs btrfs_noversion $(hack/libdm_tag.sh)"
205622
mkdir -p bin
205622
%gobuild -o bin/%{name} ./cmd/%{name}
6f9067
%{__make} docs
d82e54
d82e54
%install
8b02a8
make install-binary install-docs install-completions DESTDIR=%{buildroot} PREFIX=%{_prefix}
8b02a8
8b02a8
# remove bits which are parts of containers-common
8b02a8
rm -f %{buildroot}/%{_sysconfdir}/containers/policy.json
8b02a8
rm -f %{buildroot}/%{_sysconfdir}/containers/registries.d/default.yaml
205622
d82e54
# system tests
d82e54
install -d -p %{buildroot}/%{_datadir}/%{name}/test/system
d82e54
cp -pav systemtest/* %{buildroot}/%{_datadir}/%{name}/test/system/
d82e54
d82e54
%check
d82e54
%if 0%{?with_check}
d82e54
export GOPATH=%{buildroot}/%{gopath}:$(pwd)/vendor:%{gopath}
6f9067
d82e54
%gotest %{import_path}/integration
d82e54
%endif
d82e54
d82e54
#define license tag if not already defined
d82e54
%{!?_licensedir:%global license %doc}
d82e54
d82e54
%files
d82e54
%license LICENSE
d82e54
%doc README.md
d82e54
%{_bindir}/%{name}
6f9067
%{_mandir}/man1/%{name}*
d82e54
%dir %{_datadir}/bash-completion
d82e54
%dir %{_datadir}/bash-completion/completions
d82e54
%{_datadir}/bash-completion/completions/%{name}
d82e54
d82e54
%files tests
d82e54
%license LICENSE
d82e54
%{_datadir}/%{name}/test
d82e54
d82e54
%changelog
8b02a8
* Thu Aug 26 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.2-0.1
8b02a8
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.4
8b02a8
  (https://github.com/containers/skopeo/commit/01e51ce)
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Wed Aug 25 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.1-2
8b02a8
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.4
8b02a8
  (https://github.com/containers/skopeo/commit/130f32f)
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Fri Aug 20 2021 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.4.1-1
8b02a8
- update to v1.4.1
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Tue Aug 17 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-7
8b02a8
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.4
8b02a8
  (https://github.com/containers/skopeo/commit/ea32394)
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Wed Aug 11 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-6
8b02a8
- carve away containers-common - it's now a separate package
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Fri Aug 06 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-5
8b02a8
- be sure short-name-mode is permissive in RHEL8
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Wed Aug 04 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-4
8b02a8
- don't define short-name-mode in RHEL8
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Tue Aug 03 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-3
8b02a8
- re-add Requires: runc
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Tue Aug 03 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-2
8b02a8
- update to 1.4.0 release and switch to the release-1.4 maint branch
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Mon Aug 02 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.4.0-1
8b02a8
- update vendored components
8b02a8
- ship /etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release only on non-RHEL and
8b02a8
  CentOS distros
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Wed Jul 21 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-7
8b02a8
- switch to "main" branch of podman
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Wed Jul 21 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-6
8b02a8
- move unqualified-search-registries to [registries.search]
8b02a8
- Resolves: #1977280
8b02a8
8b02a8
* Thu Jul 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-5
8b02a8
- update shortnames from Pyxis
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Wed Jul 07 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-4
8b02a8
- add direct runc dependency to avoid situation when runc is listed
8b02a8
  as default runtime but only crun is present in RHEL8
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Mon Jul 05 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-3
8b02a8
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.3
8b02a8
  (https://github.com/containers/skopeo/commit/038f70e)
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Thu Jul 01 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-2
8b02a8
- use v3.2 branch for podman and update vendored branches
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Thu Jul 01 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.1-1
8b02a8
- update to https://github.com/containers/skopeo/releases/tag/v1.3.1
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Mon Jun 28 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.0-5
8b02a8
- update shortname overrides
8b02a8
- Related: #1952204
8b02a8
8b02a8
* Thu Jun 10 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.0-4
8b02a8
- sync with Pyxis
8b02a8
- use containers-mounts.conf.5.md from containers/common
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Mon May 24 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.0-3
8b02a8
- update to new versions of vendored components
8b02a8
- fail is there is an issue in communication with Pyxis API
8b02a8
- understand devel branch in update.sh script
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Fri May 21 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.0-2
8b02a8
- fix filelist with the new upstream release
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Thu May 20 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.3.0-1
8b02a8
- update to https://github.com/containers/skopeo/releases/tag/v1.3.0
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Tue May 11 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.3-3
8b02a8
- update vendored components versions
8b02a8
- sync shortnames with pyxis
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Mon Apr 26 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.3-2
8b02a8
- assure runc is set as default runtime in RHEL8
8b02a8
- update shortnames from upstream
8b02a8
- sync vendored component versions with upstream
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Mon Apr 26 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.3-1
8b02a8
- update to skopeo-1.2.3
8b02a8
- sync with Fedora deps
8b02a8
- fix typo in upstream Makefile
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Thu Apr 22 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.2-6
8b02a8
- add update-vendored.sh, pyxis.sh and amend the shortname generation
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Wed Apr 07 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.2-5
8b02a8
- require crun >= 0.19 and set it as default OCI runtime
8b02a8
- add ensure() function to update.sh so that configuration statements
8b02a8
  can be easily amended/reviewed
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Mon Mar 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.2-4
8b02a8
- use infra_image = "registry.redhat.io/ubi8/pause" in containers.conf
8b02a8
  (unlike previous one ubi8/pause doesn't require authentication)
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Fri Mar 12 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.2-3
8b02a8
- use infra_image = "registry.redhat.io/rhel8/pause" in contiainers.conf
8b02a8
- add update-vendored.sh script which will always assure we ship
8b02a8
  documentation/configs for versions vendored in podman, buildah and
8b02a8
  skopeo
8b02a8
- Related: #1934415
8b02a8
8b02a8
* Wed Mar 03 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.2-2
8b02a8
- use rhel-shortnames only from trusted registries
8b02a8
- sync with config files from current versions of vendored projects
8b02a8
- Resolves: #1933775
8b02a8
- Resolves: #1933776
205622
205622
* Fri Feb 19 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.2-1
205622
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.2
205622
  (https://github.com/containers/skopeo/commit/e72dd9c)
205622
- Related: #1883490
205622
205622
* Thu Feb 18 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-14
205622
- rename shortnames.conf to 000-shortnames.conf to assure evaluation order
205622
- Related: #1883490
205622
205622
* Thu Feb 18 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-13
205622
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.2
205622
  (https://github.com/containers/skopeo/commit/3abb778)
205622
- Related: #1883490
205622
205622
* Mon Feb 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-12
205622
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.2
205622
  (https://github.com/containers/skopeo/commit/b4210c0)
205622
- Resolves: #1914884
205622
205622
* Sat Feb 06 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-11
205622
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.2
205622
  (https://github.com/containers/skopeo/commit/6c0e35a)
205622
- Related: #1883490
205622
205622
* Tue Feb 02 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-10
205622
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.2
205622
  (https://github.com/containers/skopeo/commit/a05ddb8)
205622
- Related: #1883490
205622
205622
* Sun Jan 31 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-9
205622
- define 8.4.0 branch for podman (v3.0)
205622
- remove redundant source file
205622
- Related: #1883490
205622
205622
* Sun Jan 31 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-8
205622
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.2
205622
  (https://github.com/containers/skopeo/commit/2e90a8a)
205622
- Related: #1883490
205622
205622
* Fri Jan 29 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-7
205622
- convert subscription-manager from weak dep to a hint
205622
- Related: #1883490
205622
205622
* Tue Jan 19 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-6
205622
- fix rhel-shortnames.conf generation (avoid duplicates and records
205622
  with invalid URL)
205622
- Related: #1883490
205622
205622
* Mon Jan 18 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-5
205622
- assure "NET_RAW" is always defined
205622
- support rhel-shortnames.conf with generated shortname/registry aliases
205622
- Related: #1883490
205622
205622
* Fri Jan 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-4
205622
- add "NET_RAW" default capability
205622
- Related: #1883490
205622
205622
* Tue Jan 12 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-3
205622
- ship preconfigured /etc/containers/registries.d/ files with containers-common
205622
- Related: #1883490
205622
205622
* Tue Jan 12 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-2
205622
- add shortnames from https://github.com/containers/shortnames
205622
- Related: #1883490
205622
205622
* Mon Jan 11 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.1-1
205622
- update vendored component versions
205622
- update to the latest content of https://github.com/containers/skopeo/tree/release-1.2
205622
  (https://github.com/containers/skopeo/commit/2e90a8a)
205622
- Related: #1883490
205622
205622
* Fri Jan 08 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.0-6
205622
- gating tests fixes and bump podman branch
205622
- Related: #1883490
205622
205622
* Tue Dec 08 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.2.0-5
205622
- still use arch exclude as the go_arches macro is broken for 8.4
205622
- Related: #1883490
205622
205622
* Wed Dec 02 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.2.0-4
205622
- unify vendored branches
205622
- add validation script
205622
- Related: #1883490
205622
205622
* Thu Nov 05 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.2.0-3
205622
- simplify spec file
205622
- use short commit ID in tarball name
205622
- Related: #1883490
205622
205622
* Fri Oct 23 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.2.0-2
205622
- synchronize with stream-container-tools-rhel8
205622
- Related: #1883490
205622
205622
* Thu Oct 22 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.2.0-1
205622
- synchronize with stream-container-tools-rhel8
205622
- Related: #1883490
205622
205622
* Tue Aug 11 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.1.1-3
205622
- propagate proper CFLAGS to CGO_CFLAGS to assure code hardening and optimization
205622
- Related: #1821193
205622
205622
* Wed Jul 29 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.1.1-2
205622
- drop applied patches
205622
- Related: #1821193
205622
205622
* Wed Jul 29 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.1.1-1
205622
- update to https://github.com/containers/skopeo/releases/tag/v1.1.1
205622
- Related: #1821193
205622
205622
* Thu Jul 23 2020 Eduardo Santiago <santiago@redhat.com> - 1:1.1.0-3
205622
- fix broken gating tests: docker unexpectedly removed htpasswd from
205622
  their 'registry:2' image, so we now use htpasswd from httpd-tools on host.
205622
205622
* Fri Jul 17 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.1.0-2
205622
- fix "CVE-2020-14040 skopeo: golang.org/x/text: possibility to trigger an infinite loop in encoding/unicode could lead to crash [rhel-8]"
205622
- Resolves: #1854719
205622
3f07b4
* Fri Jun 19 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.1.0-1
3f07b4
- update to https://github.com/containers/skopeo/releases/tag/v1.1.0
3f07b4
- Related: #1821193
3f07b4
3f07b4
* Wed Jun 10 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.0.0-2
3f07b4
- exclude i686 arch
3f07b4
- Related: #1821193
3f07b4
3f07b4
* Tue May 19 2020 Jindrich Novy <jnovy@redhat.com> - 1:1.0.0-1
3f07b4
- update to https://github.com/containers/skopeo/releases/tag/v1.0.0
3f07b4
- Related: #1821193
3f07b4
3f07b4
* Tue May 12 2020 Jindrich Novy <jnovy@redhat.com> - 1:0.2.0-6
3f07b4
- synchronize containter-tools 8.3.0 with 8.2.1
3f07b4
- Related: #1821193
3f07b4
3f07b4
* Mon Apr 06 2020 Jindrich Novy <jnovy@redhat.com> - 1:0.1.41-1
3f07b4
- update to 0.1.41
3f07b4
- Related: #1821193
3f07b4
3f07b4
* Fri Mar 06 2020 Jindrich Novy <jnovy@redhat.com> - 1:0.1.40-10
3f07b4
- modify registries.conf default configuration to be more secure by default
3f07b4
- Resolves: #1810053
3f07b4
3f07b4
* Fri Feb 14 2020 Jindrich Novy <jnovy@redhat.com> - 1:0.1.40-9
3f07b4
- Fix CVE-2020-1702.
3f07b4
- Resolves: #1801922
3f07b4
3f07b4
* Thu Jan 02 2020 Jindrich Novy <jnovy@redhat.com> - 1:0.1.40-8
3f07b4
- change the search order of registries and remove quay.io (#1784267)
3f07b4
6f9067
* Wed Dec 11 2019 Jindrich Novy <jnovy@redhat.com> - 1:0.1.40-7
6f9067
- compile in FIPS mode
6f9067
- Related: RHELPLAN-25139
6f9067
6f9067
* Mon Dec 09 2019 Jindrich Novy <jnovy@redhat.com> - 1:0.1.40-6
6f9067
- be sure to use golang >= 1.12.12-4
6f9067
- Related: RHELPLAN-25139
6f9067
6f9067
* Wed Dec 04 2019 Jindrich Novy <jnovy@redhat.com> - 1:0.1.40-5
6f9067
- fix file list
6f9067
- Related: RHELPLAN-25139
6f9067
6f9067
* Wed Dec 04 2019 Jindrich Novy <jnovy@redhat.com> - 1:0.1.40-4
6f9067
- fix symlinks in /usr/share/rhel/secrets and make
6f9067
  subscription-manager soft dependency to make them work
6f9067
- Related: RHELPLAN-25139
6f9067
6f9067
* Thu Nov 28 2019 Jindrich Novy <jnovy@redhat.com> - 1:0.1.40-3
6f9067
- rebuild because of CVE-2019-9512 and CVE-2019-9514
6f9067
- Resolves: #1772132, #1772137
6f9067
6f9067
* Wed Nov 20 2019 Jindrich Novy <jnovy@redhat.com> - 1:0.1.40-2
6f9067
- comment out mountopt option in order to fix gating tests
6f9067
  see bug 1769769
6f9067
- Related: RHELPLAN-25139
6f9067
6f9067
* Wed Nov 06 2019 Jindrich Novy <jnovy@redhat.com> - 1:0.1.40-1
6f9067
- update to 0.1.40
6f9067
- Related: RHELPLAN-25139
6f9067
6f9067
* Thu Sep 12 2019 Jindrich Novy <jnovy@redhat.com> - 1:0.1.37-5
6f9067
- Fix CVE-2019-10214 (#1734651).
6f9067
6f9067
* Thu Aug 15 2019 Jindrich Novy <jnovy@redhat.com> - 1:0.1.37-4
6f9067
- fix permissions of rhel/secrets
6f9067
  Resolves: #1691543
6f9067
6f9067
* Fri Jun 14 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.37-3
6f9067
- Resolves: #1719994 - add registry.access.redhat.com to registries.conf
6f9067
d82e54
* Fri Jun 14 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.37-2
d82e54
- Resolves: #1721247 - enable fips mode
d82e54
d82e54
* Fri Jun 14 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.37-1
d82e54
- Resolves: #1720654 - rebase to v0.1.37
d82e54
d82e54
* Tue Jun  4 2019 Eduardo Santiago <santiago@redhat.com> - 1:0.1.36-1.git6307635
d82e54
- built upstream tag v0.1.36, including system tests
d82e54
d82e54
* Tue Apr 30 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.32-4.git1715c90
d82e54
- Fixes @openshift/machine-config-operator#669
d82e54
- install /etc/containers/oci/hooks.d and /etc/containers/certs.d
d82e54
d82e54
* Tue Dec 18 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1:0.1.32-3.git1715c90
d82e54
- rebase
d82e54
d82e54
* Mon Dec 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1:0.1.32-2.git1715c90
d82e54
- re-enable debuginfo
d82e54
d82e54
* Mon Dec 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1:0.1.31-12.gitb0b750d
d82e54
- go tools not in scl anymore
d82e54
d82e54
* Fri Sep 21 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-11.gitb0b750d
d82e54
- Resolves: #1615609
d82e54
- built upstream tag v0.1.31
d82e54
d82e54
* Thu Aug 23 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-10.git0144aa8
d82e54
- Resolves: #1616069 - correct order of registries
d82e54
d82e54
* Mon Aug 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-9.git0144aa8
d82e54
- Resolves: #1615609 - rebuild with gobuild tag 'no_openssl'
d82e54
d82e54
* Fri Aug 10 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-8.git0144aa8
d82e54
- Resolves: #1614934 - containers-common soft dep on slirp4netns and
d82e54
fuse-overlayfs
d82e54
d82e54
* Wed Aug 08 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-7.git0144aa8
d82e54
- build with %%gobuild
d82e54
- use scl-ized go-toolset as dep
d82e54
- disable i686 builds temporarily because of go-toolset issues
d82e54
d82e54
* Wed Jul 18 2018 dwalsh <dwalsh@redhat.com> - 1:0.1.31-6.git0144aa8
d82e54
- add statx to seccomp.json to containers-config
d82e54
- add seccomp.json to containers-config
d82e54
d82e54
* Tue Jul 03 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-4.git0144aa8
d82e54
- Resolves: #1597629 - handle dependency issue for skopeo-containers
d82e54
- rename skopeo-containers to containers-common as in Fedora
d82e54
d82e54
* Mon Jun 25 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-3.git0144aa8
d82e54
- Resolves: #1583762 - btrfs dep removal needs exclude_graphdriver_btrfs
d82e54
buildtag
d82e54
d82e54
* Wed Jun 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-2.git0144aa8
d82e54
- correct bz in previous changelog
d82e54
d82e54
* Wed Jun 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-1.git0144aa8
d82e54
- Resolves: #1580938 - resolve FTBFS
d82e54
- Resolves: #1583762 - remove dependency on btrfs-progs-devel
d82e54
- bump to v0.1.31 (from master)
d82e54
- built commit ca3bff6
d82e54
- use go-toolset deps for rhel8
d82e54
d82e54
* Tue Apr 03 2018 baude <bbaude@redhat.com> - 0.1.29-5.git7add6fc
d82e54
- Fix small typo in registries.conf
d82e54
d82e54
* Tue Apr 3 2018 dwalsh <dwalsh@redhat.com> - 0.1.29-4.git
d82e54
- Add policy.json.5
d82e54
d82e54
* Mon Apr 2 2018 dwalsh <dwalsh@redhat.com> - 0.1.29-3.git
d82e54
- Add registries.conf
d82e54
d82e54
* Mon Apr 2 2018 dwalsh <dwalsh@redhat.com> - 0.1.29-2.git
d82e54
- Add registries.conf man page
d82e54
d82e54
* Thu Mar 29 2018 dwalsh <dwalsh@redhat.com> - 0.1.29-1.git
d82e54
- bump to 0.1.29-1
d82e54
- Updated containers/image
d82e54
    docker-archive generates docker legacy compatible images
d82e54
    Do not create $DiffID subdirectories for layers with no configs
d82e54
    Ensure the layer IDs in legacy docker/tarfile metadata are unique
d82e54
    docker-archive: repeated layers are symlinked in the tar file
d82e54
    sysregistries: remove all trailing slashes
d82e54
    Improve docker/* error messages
d82e54
    Fix failure to make auth directory
d82e54
    Create a new slice in Schema1.UpdateLayerInfos
d82e54
    Drop unused storageImageDestination.{image,systemContext}
d82e54
    Load a *storage.Image only once in storageImageSource
d82e54
    Support gzip for docker-archive files
d82e54
    Remove .tar extension from blob and config file names
d82e54
    ostree, src: support copy of compressed layers
d82e54
    ostree: re-pull layer if it misses uncompressed_digest|uncompressed_size
d82e54
    image: fix docker schema v1 -> OCI conversion
d82e54
    Add /etc/containers/certs.d as default certs directory
d82e54
d82e54
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.28-2.git0270e56
d82e54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
d82e54
d82e54
* Fri Feb 2 2018 dwalsh <dwalsh@redhat.com> - 0.1.28-1.git
d82e54
- Vendor in fixed libraries in containers/image and containers/storage
d82e54
d82e54
* Tue Nov 21 2017 dwalsh <dwalsh@redhat.com> - 0.1.27-1.git
d82e54
- Fix Conflicts to Obsoletes
d82e54
- Add better docs to man pages.
d82e54
- Use credentials from authfile for skopeo commands
d82e54
- Support storage="" in /etc/containers/storage.conf
d82e54
- Add global --override-arch and --override-os options
d82e54
d82e54
* Wed Nov 15 2017 dwalsh <dwalsh@redhat.com> - 0.1.25-2.git2e8377a7
d82e54
-  Add manifest type conversion to skopeo copy
d82e54
-  User can select from 3 manifest types: oci, v2s1, or v2s2
d82e54
-   e.g skopeo copy --format v2s1 --compress-blobs docker-archive:alp.tar dir:my-directory
d82e54
d82e54
* Wed Nov 8 2017 dwalsh <dwalsh@redhat.com> - 0.1.25-2.git7fd6f66b
d82e54
- Force storage.conf to default to overlay
d82e54
d82e54
* Wed Nov 8 2017 dwalsh <dwalsh@redhat.com> - 0.1.25-1.git7fd6f66b
d82e54
-   Fix CVE in tar-split
d82e54
-   copy: add shared blob directory support for OCI sources/destinations
d82e54
-   Aligning Docker version between containers/image and skopeo
d82e54
-   Update image-tools, and remove the duplicate Sirupsen/logrus vendor
d82e54
-   makefile: use -buildmode=pie
d82e54
  
d82e54
* Tue Nov 7 2017 dwalsh <dwalsh@redhat.com> - 0.1.24-8.git28d4e08a
d82e54
- Add /usr/share/containers/mounts.conf
d82e54
d82e54
* Sun Oct 22 2017 dwalsh <dwalsh@redhat.com> - 0.1.24-7.git28d4e08a
d82e54
- Bug fixes
d82e54
- Update to release
d82e54
d82e54
* Tue Oct 17 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.24-6.dev.git28d4e08
d82e54
- skopeo-containers conflicts with docker-rhsubscription <= 2:1.13.1-31
d82e54
d82e54
* Tue Oct 17 2017 dwalsh <dwalsh@redhat.com> - 0.1.24-5.dev.git28d4e08
d82e54
- Add rhel subscription secrets data to skopeo-containers
d82e54
d82e54
* Thu Oct 12 2017 dwalsh <dwalsh@redhat.com> - 0.1.24-4.dev.git28d4e08
d82e54
- Update container/storage.conf and containers-storage.conf man page
d82e54
- Default override to true so it is consistent with RHEL.
d82e54
d82e54
* Tue Oct 10 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.24-3.dev.git28d4e08
d82e54
- built commit 28d4e08
d82e54
d82e54
* Mon Sep 18 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.24-2.dev.git875dd2e
d82e54
- built commit 875dd2e
d82e54
- Resolves: gh#416
d82e54
d82e54
* Tue Sep 12 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.24-1.dev.gita41cd0
d82e54
- bump to 0.1.24-dev
d82e54
- correct a prior bogus date
d82e54
- fix macro in comment warning
d82e54
d82e54
* Mon Aug 21 2017 dwalsh <dwalsh@redhat.com> - 0.1.23-6.dev.git1bbd87
d82e54
- Change name of storage.conf.5 man page to containers-storage.conf.5, since
d82e54
it conflicts with inn package
d82e54
- Also remove default to "overalay" in the configuration, since we should
d82e54
- allow containers storage to pick the best default for the platform.
d82e54
d82e54
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.23-5.git1bbd87f
d82e54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
d82e54
d82e54
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 0.1.23-4.git1bbd87f
d82e54
- Rebuild with binutils fix for ppc64le (#1475636)
d82e54
d82e54
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.23-3.git1bbd87f
d82e54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
d82e54
d82e54
* Tue Jul 25 2017 dwalsh <dwalsh@redhat.com> - 0.1.23-2.dev.git1bbd87
d82e54
- Fix storage.conf man page to be storage.conf.5.gz so that it works.
d82e54
d82e54
* Fri Jul 21 2017 dwalsh <dwalsh@redhat.com> - 0.1.23-1.dev.git1bbd87
d82e54
- Support for OCI V1.0 Images
d82e54
- Update to image-spec v1.0.0 and revendor
d82e54
- Fixes for authentication
d82e54
d82e54
* Sat Jul 01 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.22-2.dev.git5d24b67
d82e54
- Epoch: 1 for CentOS as CentOS Extras' build already has epoch set to 1
d82e54
d82e54
* Wed Jun 21 2017 dwalsh <dwalsh@redhat.com> - 0.1.22-1.dev.git5d24b67
d82e54
-  Give more useful help when explaining usage
d82e54
-  Also specify container-storage as a valid transport
d82e54
-  Remove docker reference wherever possible
d82e54
-  vendor in ostree fixes
d82e54
d82e54
* Thu Jun 15 2017 dwalsh <dwalsh@redhat.com> - 0.1.21-1.dev.git0b73154
d82e54
- Add support for storage.conf and storage-config.5.md from github container storage package
d82e54
- Bump to the latest version of skopeo
d82e54
- vendor.conf: add ostree-go
d82e54
- it is used by containers/image for pulling images to the OSTree storage.
d82e54
- fail early when image os does not match host os
d82e54
- Improve documentation on what to do with containers/image failures in test-skopeo
d82e54
-   We now have the docker-archive: transport
d82e54
-   Integration tests with built registries also exist
d82e54
- Support /etc/docker/certs.d
d82e54
- update image-spec to v1.0.0-rc6
d82e54
d82e54
* Tue May 23 2017 bbaude <bbaude@redhat.com> - 0.1.20-1.dev.git0224d8c
d82e54
- BZ #1380078 - New release
d82e54
d82e54
* Tue Apr 25 2017 bbaude <bbaude@redhat.com> - 0.1.19-2.dev.git0224d8c
d82e54
- No golang support for ppc64.  Adding exclude arch. BZ #1445490
d82e54
d82e54
* Tue Feb 28 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.19-1.dev.git0224d8c
d82e54
- bump to v0.1.19-dev
d82e54
- built commit 0224d8c
d82e54
d82e54
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.17-3.dev.git2b3af4a
d82e54
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
d82e54
d82e54
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.1.17-2.dev.git2b3af4a
d82e54
- Rebuild for gpgme 1.18
d82e54
d82e54
* Tue Dec 06 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.17-1.dev.git2b3af4a
d82e54
- bump to 0.1.17-dev
d82e54
d82e54
* Fri Nov 04 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.14-6.git550a480
d82e54
- Fix BZ#1391932
d82e54
d82e54
* Tue Oct 18 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.14-5.git550a480
d82e54
- Conflicts with atomic in skopeo-containers
d82e54
d82e54
* Wed Oct 12 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.14-4.git550a480
d82e54
- built skopeo-containers
d82e54
d82e54
* Wed Sep 21 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.14-3.gitd830391
d82e54
- built mtrmac/integrate-all-the-things commit d830391
d82e54
d82e54
* Thu Sep 08 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.14-2.git362bfc5
d82e54
- built commit 362bfc5
d82e54
d82e54
* Thu Aug 11 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.14-1.gitffe92ed
d82e54
- build origin/master commit ffe92ed
d82e54
d82e54
* Thu Jul 21 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.13-6
d82e54
- https://fedoraproject.org/wiki/Changes/golang1.7
d82e54
d82e54
* Tue Jun 21 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.13-5
d82e54
- include go-srpm-macros and compiler(go-compiler) in fedora conditionals
d82e54
- define %%gobuild if not already
d82e54
- add patch to build with older version of golang
d82e54
d82e54
* Thu Jun 02 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.13-4
d82e54
- update to v0.1.12
d82e54
d82e54
* Tue May 31 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.12-3
d82e54
- fix go build source path
d82e54
d82e54
* Fri May 27 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.12-2
d82e54
- update to v0.1.12
d82e54
d82e54
* Tue Mar 08 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.11-1
d82e54
- update to v0.1.11
d82e54
d82e54
* Tue Mar 08 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.10-1
d82e54
- update to v0.1.10
d82e54
- change runcom -> projectatomic
d82e54
d82e54
* Mon Feb 29 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.9-1
d82e54
- update to v0.1.9
d82e54
d82e54
* Mon Feb 29 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.8-1
d82e54
- update to v0.1.8
d82e54
d82e54
* Mon Feb 22 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.4-2
d82e54
- https://fedoraproject.org/wiki/Changes/golang1.6
d82e54
d82e54
* Fri Jan 29 2016 Antonio Murdaca <runcom@redhat.com> - 0.1.4
d82e54
- First package for Fedora