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