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