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