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