bae5f5
%global with_debug 1
bae5f5
%global with_check 0
bae5f5
bae5f5
%if 0%{?with_debug}
bae5f5
%global _find_debuginfo_dwz_opts %{nil}
bae5f5
%global _dwz_low_mem_die_limit 0
bae5f5
%else
bae5f5
%global debug_package %{nil}
bae5f5
%endif
bae5f5
bae5f5
%if 0%{?rhel} > 7 && ! 0%{?fedora}
bae5f5
%define gobuild(o:) \
c7b324
go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -compressdwarf=false -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v -x %{?**};
bae5f5
%endif # distro
bae5f5
bae5f5
%global provider github
bae5f5
%global provider_tld com
bae5f5
%global project containers
bae5f5
%global repo skopeo
bae5f5
# https://github.com/containers/skopeo
bae5f5
%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
bae5f5
%global import_path %{provider_prefix}
bae5f5
%global git0 https://%{import_path}
c7b324
%global commit0 e079f9d61b2508b57e9510752d7e893b544c3cb8
bae5f5
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
bae5f5
bae5f5
# manually listed arches due https://bugzilla.redhat.com/show_bug.cgi?id=1391932 (removed ppc64)
bae5f5
# remove ix86 temporarily because go-toolset issues
bae5f5
ExcludeArch: ppc64 %{ix86}
bae5f5
bae5f5
Name: %{repo}
bae5f5
Epoch: 1
c7b324
Version: 0.1.37
c7b324
Release: 5%{?dist}
c7b324
Summary: Inspect container images and repositories on registries
bae5f5
License: ASL 2.0
bae5f5
URL: %{git0}
bae5f5
Source0: %{git0}/archive/%{commit0}/%{name}-%{shortcommit0}.tar.gz
bae5f5
Source1: storage.conf
bae5f5
Source2: containers-storage.conf.5.md
bae5f5
Source3: mounts.conf
bae5f5
Source4: registries.conf.5.md
bae5f5
Source5: registries.conf
bae5f5
Source6: policy.json.5.md
bae5f5
Source7: seccomp.json
c7b324
Patch0: skopeo-CVE-2019-10214.patch
bae5f5
BuildRequires: git
bae5f5
# If go_compiler is not set to 1, there is no virtual provide. Use golang instead.
bae5f5
BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang}
bae5f5
BuildRequires: golang-github-cpuguy83-go-md2man
bae5f5
BuildRequires: gpgme-devel
bae5f5
BuildRequires: libassuan-devel
bae5f5
BuildRequires: pkgconfig(devmapper)
bae5f5
BuildRequires: ostree-devel
bae5f5
BuildRequires: glib2-devel
bae5f5
Requires: containers-common = %{epoch}:%{version}-%{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
bae5f5
%package -n containers-common
bae5f5
Summary: Configuration files for working with image signatures
bae5f5
Obsoletes: atomic <= 1:1.13.1-2
bae5f5
Conflicts: atomic-registries <= 1:1.22.1-1
bae5f5
Obsoletes: docker-rhsubscription <= 2:1.13.1-31
bae5f5
Provides: %{name}-containers = %{epoch}:%{version}-%{release}
bae5f5
Obsoletes: %{name}-containers <= 1:0.1.31-3
bae5f5
Recommends: fuse-overlayfs
bae5f5
Recommends: slirp4netns
bae5f5
bae5f5
%description -n containers-common
bae5f5
This package installs a default signature store configuration and a default
bae5f5
policy under `/etc/containers/`.
bae5f5
c7b324
%package tests
c7b324
Summary:         Tests for %{name}
c7b324
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
c7b324
c7b324
%description tests
c7b324
%{summary}
c7b324
c7b324
This package contains system tests for %{name}
c7b324
c7b324
bae5f5
%prep
c7b324
%setup -q -n %{name}-%{commit0}
c7b324
c7b324
# fix CVE-2019-10214
c7b324
%patch0 -p2
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
bae5f5
	mv ${v} vendor/src/
bae5f5
    fi
bae5f5
done
bae5f5
bae5f5
export GOPATH=$(pwd):$(pwd)/vendor:%{gopath}
bae5f5
#make BUILDTAGS='exclude_graphdriver_btrfs' binary-local docs
bae5f5
export BUILDTAGS="exclude_graphdriver_btrfs"
bae5f5
%gobuild -o %{name} ./cmd/%{name}
bae5f5
make docs
bae5f5
bae5f5
%install
bae5f5
make DESTDIR=%{buildroot} install
bae5f5
mkdir -p %{buildroot}%{_sysconfdir}
c7b324
mkdir -p %{buildroot}%{_sysconfdir}/containers/{certs.d,oci/hooks.d}
bae5f5
install -m0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/containers/storage.conf
bae5f5
mkdir -p %{buildroot}%{_mandir}/man5
bae5f5
go-md2man -in %{SOURCE2} -out %{buildroot}%{_mandir}/man5/containers-storage.conf.5
bae5f5
go-md2man -in %{SOURCE4} -out %{buildroot}%{_mandir}/man5/registries.conf.5
bae5f5
install -p -m 644 %{SOURCE5} %{buildroot}%{_sysconfdir}/containers/
bae5f5
go-md2man -in %{SOURCE6} -out %{buildroot}%{_mandir}/man5/policy.json.5
bae5f5
bae5f5
mkdir -p %{buildroot}%{_datadir}/containers
bae5f5
install -m0644 %{SOURCE3} %{buildroot}%{_datadir}/containers/mounts.conf
bae5f5
install -m0644 %{SOURCE7} %{buildroot}%{_datadir}/containers/seccomp.json
bae5f5
bae5f5
# install secrets patch directory
c7b324
install -d -p -m 755 %{buildroot}/%{_datadir}/rhel/secrets
bae5f5
# rhbz#1110876 - update symlinks for subscription management
bae5f5
ln -s %{_sysconfdir}/pki/entitlement %{buildroot}%{_datadir}/rhel/secrets/etc-pki-entitlement
bae5f5
ln -s %{_sysconfdir}/rhsm %{buildroot}%{_datadir}/rhel/secrets/rhsm
bae5f5
ln -s %{_sysconfdir}/yum.repos.d/redhat.repo %{buildroot}%{_datadir}/rhel/secrets/rhel7.repo
bae5f5
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}
bae5f5
%gotest %{import_path}/integration
bae5f5
%endif
bae5f5
bae5f5
#define license tag if not already defined
bae5f5
%{!?_licensedir:%global license %doc}
bae5f5
bae5f5
%files -n containers-common
bae5f5
%dir %{_sysconfdir}/containers
c7b324
%dir %{_sysconfdir}/containers/certs.d
bae5f5
%dir %{_sysconfdir}/containers/registries.d
c7b324
%dir %{_sysconfdir}/containers/oci
c7b324
%dir %{_sysconfdir}/containers/oci/hooks.d
bae5f5
%config(noreplace) %{_sysconfdir}/containers/policy.json
bae5f5
%config(noreplace) %{_sysconfdir}/containers/registries.d/default.yaml
bae5f5
%config(noreplace) %{_sysconfdir}/containers/storage.conf 
bae5f5
%config(noreplace) %{_sysconfdir}/containers/registries.conf
bae5f5
%dir %{_sharedstatedir}/atomic/sigstore
bae5f5
%{_mandir}/man5/*
bae5f5
%dir %{_datadir}/containers
bae5f5
%{_datadir}/containers/mounts.conf
bae5f5
%{_datadir}/containers/seccomp.json
bae5f5
%dir %{_datadir}/rhel/secrets
bae5f5
%{_datadir}/rhel/secrets/etc-pki-entitlement
bae5f5
%{_datadir}/rhel/secrets/rhel7.repo
bae5f5
%{_datadir}/rhel/secrets/rhsm
bae5f5
bae5f5
%files
bae5f5
%license LICENSE
bae5f5
%doc README.md
bae5f5
%{_bindir}/%{name}
c7b324
%{_mandir}/man1/
bae5f5
%dir %{_datadir}/bash-completion
bae5f5
%dir %{_datadir}/bash-completion/completions
bae5f5
%{_datadir}/bash-completion/completions/%{name}
bae5f5
c7b324
%files tests
c7b324
%license LICENSE
c7b324
%{_datadir}/%{name}/test
c7b324
bae5f5
%changelog
c7b324
* Thu Sep 12 2019 Jindrich Novy <jnovy@redhat.com> - 1:0.1.37-5
c7b324
- Fix CVE-2019-10214 (#1734651).
c7b324
c7b324
* Thu Aug 15 2019 Jindrich Novy <jnovy@redhat.com> - 1:0.1.37-4
c7b324
- fix permissions of rhel/secrets
c7b324
  Resolves: #1691543
c7b324
c7b324
* Fri Jun 14 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.37-3
c7b324
- Resolves: #1719994 - add registry.access.redhat.com to registries.conf
c7b324
c7b324
* Fri Jun 14 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.37-2
c7b324
- Resolves: #1721247 - enable fips mode
c7b324
c7b324
* Fri Jun 14 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.37-1
c7b324
- Resolves: #1720654 - rebase to v0.1.37
c7b324
c7b324
* Tue Jun  4 2019 Eduardo Santiago <santiago@redhat.com> - 1:0.1.36-1.git6307635
c7b324
- built upstream tag v0.1.36, including system tests
c7b324
c7b324
* Tue Apr 30 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.32-4.git1715c90
c7b324
- Fixes @openshift/machine-config-operator#669
c7b324
- install /etc/containers/oci/hooks.d and /etc/containers/certs.d
c7b324
bae5f5
* Tue Dec 18 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1:0.1.32-3.git1715c90
bae5f5
- rebase
bae5f5
bae5f5
* Mon Dec 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1:0.1.32-2.git1715c90
bae5f5
- re-enable debuginfo
bae5f5
bae5f5
* Mon Dec 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1:0.1.31-12.gitb0b750d
bae5f5
- go tools not in scl anymore
bae5f5
bae5f5
* Fri Sep 21 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-11.gitb0b750d
bae5f5
- Resolves: #1615609
bae5f5
- built upstream tag v0.1.31
bae5f5
bae5f5
* Thu Aug 23 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-10.git0144aa8
bae5f5
- Resolves: #1616069 - correct order of registries
bae5f5
bae5f5
* Mon Aug 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-9.git0144aa8
bae5f5
- Resolves: #1615609 - rebuild with gobuild tag 'no_openssl'
bae5f5
bae5f5
* Fri Aug 10 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-8.git0144aa8
bae5f5
- Resolves: #1614934 - containers-common soft dep on slirp4netns and
bae5f5
fuse-overlayfs
bae5f5
bae5f5
* Wed Aug 08 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-7.git0144aa8
bae5f5
- build with %%gobuild
bae5f5
- use scl-ized go-toolset as dep
bae5f5
- disable i686 builds temporarily because of go-toolset issues
bae5f5
bae5f5
* Wed Jul 18 2018 dwalsh <dwalsh@redhat.com> - 1:0.1.31-6.git0144aa8
bae5f5
- add statx to seccomp.json to containers-config
bae5f5
- add seccomp.json to containers-config
bae5f5
bae5f5
* Tue Jul 03 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-4.git0144aa8
bae5f5
- Resolves: #1597629 - handle dependency issue for skopeo-containers
bae5f5
- rename skopeo-containers to containers-common as in Fedora
bae5f5
bae5f5
* Mon Jun 25 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-3.git0144aa8
bae5f5
- Resolves: #1583762 - btrfs dep removal needs exclude_graphdriver_btrfs
bae5f5
buildtag
bae5f5
bae5f5
* Wed Jun 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-2.git0144aa8
bae5f5
- correct bz in previous changelog
bae5f5
bae5f5
* Wed Jun 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:0.1.31-1.git0144aa8
bae5f5
- Resolves: #1580938 - resolve FTBFS
bae5f5
- Resolves: #1583762 - remove dependency on btrfs-progs-devel
bae5f5
- bump to v0.1.31 (from master)
bae5f5
- built commit ca3bff6
bae5f5
- use go-toolset deps for rhel8
bae5f5
bae5f5
* Tue Apr 03 2018 baude <bbaude@redhat.com> - 0.1.29-5.git7add6fc
bae5f5
- Fix small typo in registries.conf
bae5f5
bae5f5
* Tue Apr 3 2018 dwalsh <dwalsh@redhat.com> - 0.1.29-4.git
bae5f5
- Add policy.json.5
bae5f5
bae5f5
* Mon Apr 2 2018 dwalsh <dwalsh@redhat.com> - 0.1.29-3.git
bae5f5
- Add registries.conf
bae5f5
bae5f5
* Mon Apr 2 2018 dwalsh <dwalsh@redhat.com> - 0.1.29-2.git
bae5f5
- Add registries.conf man page
bae5f5
bae5f5
* Thu Mar 29 2018 dwalsh <dwalsh@redhat.com> - 0.1.29-1.git
bae5f5
- bump to 0.1.29-1
bae5f5
- Updated containers/image
bae5f5
    docker-archive generates docker legacy compatible images
bae5f5
    Do not create $DiffID subdirectories for layers with no configs
bae5f5
    Ensure the layer IDs in legacy docker/tarfile metadata are unique
bae5f5
    docker-archive: repeated layers are symlinked in the tar file
bae5f5
    sysregistries: remove all trailing slashes
bae5f5
    Improve docker/* error messages
bae5f5
    Fix failure to make auth directory
bae5f5
    Create a new slice in Schema1.UpdateLayerInfos
bae5f5
    Drop unused storageImageDestination.{image,systemContext}
bae5f5
    Load a *storage.Image only once in storageImageSource
bae5f5
    Support gzip for docker-archive files
bae5f5
    Remove .tar extension from blob and config file names
bae5f5
    ostree, src: support copy of compressed layers
bae5f5
    ostree: re-pull layer if it misses uncompressed_digest|uncompressed_size
bae5f5
    image: fix docker schema v1 -> OCI conversion
bae5f5
    Add /etc/containers/certs.d as default certs directory
bae5f5
bae5f5
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.28-2.git0270e56
bae5f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
bae5f5
bae5f5
* Fri Feb 2 2018 dwalsh <dwalsh@redhat.com> - 0.1.28-1.git
bae5f5
- Vendor in fixed libraries in containers/image and containers/storage
bae5f5
bae5f5
* Tue Nov 21 2017 dwalsh <dwalsh@redhat.com> - 0.1.27-1.git
bae5f5
- Fix Conflicts to Obsoletes
bae5f5
- Add better docs to man pages.
bae5f5
- Use credentials from authfile for skopeo commands
bae5f5
- Support storage="" in /etc/containers/storage.conf
bae5f5
- Add global --override-arch and --override-os options
bae5f5
bae5f5
* Wed Nov 15 2017 dwalsh <dwalsh@redhat.com> - 0.1.25-2.git2e8377a7
bae5f5
-  Add manifest type conversion to skopeo copy
bae5f5
-  User can select from 3 manifest types: oci, v2s1, or v2s2
bae5f5
-   e.g skopeo copy --format v2s1 --compress-blobs docker-archive:alp.tar dir:my-directory
bae5f5
bae5f5
* Wed Nov 8 2017 dwalsh <dwalsh@redhat.com> - 0.1.25-2.git7fd6f66b
bae5f5
- Force storage.conf to default to overlay
bae5f5
bae5f5
* Wed Nov 8 2017 dwalsh <dwalsh@redhat.com> - 0.1.25-1.git7fd6f66b
bae5f5
-   Fix CVE in tar-split
bae5f5
-   copy: add shared blob directory support for OCI sources/destinations
bae5f5
-   Aligning Docker version between containers/image and skopeo
bae5f5
-   Update image-tools, and remove the duplicate Sirupsen/logrus vendor
bae5f5
-   makefile: use -buildmode=pie
bae5f5
  
bae5f5
* Tue Nov 7 2017 dwalsh <dwalsh@redhat.com> - 0.1.24-8.git28d4e08a
bae5f5
- Add /usr/share/containers/mounts.conf
bae5f5
bae5f5
* Sun Oct 22 2017 dwalsh <dwalsh@redhat.com> - 0.1.24-7.git28d4e08a
bae5f5
- Bug fixes
bae5f5
- Update to release
bae5f5
bae5f5
* Tue Oct 17 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.24-6.dev.git28d4e08
bae5f5
- skopeo-containers conflicts with docker-rhsubscription <= 2:1.13.1-31
bae5f5
bae5f5
* Tue Oct 17 2017 dwalsh <dwalsh@redhat.com> - 0.1.24-5.dev.git28d4e08
bae5f5
- Add rhel subscription secrets data to skopeo-containers
bae5f5
bae5f5
* Thu Oct 12 2017 dwalsh <dwalsh@redhat.com> - 0.1.24-4.dev.git28d4e08
bae5f5
- Update container/storage.conf and containers-storage.conf man page
bae5f5
- Default override to true so it is consistent with RHEL.
bae5f5
bae5f5
* Tue Oct 10 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.24-3.dev.git28d4e08
bae5f5
- built commit 28d4e08
bae5f5
bae5f5
* Mon Sep 18 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.24-2.dev.git875dd2e
bae5f5
- built commit 875dd2e
bae5f5
- Resolves: gh#416
bae5f5
bae5f5
* Tue Sep 12 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.24-1.dev.gita41cd0
bae5f5
- bump to 0.1.24-dev
bae5f5
- correct a prior bogus date
bae5f5
- fix macro in comment warning
bae5f5
bae5f5
* Mon Aug 21 2017 dwalsh <dwalsh@redhat.com> - 0.1.23-6.dev.git1bbd87
bae5f5
- Change name of storage.conf.5 man page to containers-storage.conf.5, since
bae5f5
it conflicts with inn package
bae5f5
- Also remove default to "overalay" in the configuration, since we should
bae5f5
- allow containers storage to pick the best default for the platform.
bae5f5
bae5f5
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.23-5.git1bbd87f
bae5f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
bae5f5
bae5f5
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 0.1.23-4.git1bbd87f
bae5f5
- Rebuild with binutils fix for ppc64le (#1475636)
bae5f5
bae5f5
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.23-3.git1bbd87f
bae5f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
bae5f5
bae5f5
* Tue Jul 25 2017 dwalsh <dwalsh@redhat.com> - 0.1.23-2.dev.git1bbd87
bae5f5
- Fix storage.conf man page to be storage.conf.5.gz so that it works.
bae5f5
bae5f5
* Fri Jul 21 2017 dwalsh <dwalsh@redhat.com> - 0.1.23-1.dev.git1bbd87
bae5f5
- Support for OCI V1.0 Images
bae5f5
- Update to image-spec v1.0.0 and revendor
bae5f5
- Fixes for authentication
bae5f5
bae5f5
* Sat Jul 01 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.22-2.dev.git5d24b67
bae5f5
- Epoch: 1 for CentOS as CentOS Extras' build already has epoch set to 1
bae5f5
bae5f5
* Wed Jun 21 2017 dwalsh <dwalsh@redhat.com> - 0.1.22-1.dev.git5d24b67
bae5f5
-  Give more useful help when explaining usage
bae5f5
-  Also specify container-storage as a valid transport
bae5f5
-  Remove docker reference wherever possible
bae5f5
-  vendor in ostree fixes
bae5f5
bae5f5
* Thu Jun 15 2017 dwalsh <dwalsh@redhat.com> - 0.1.21-1.dev.git0b73154
bae5f5
- Add support for storage.conf and storage-config.5.md from github container storage package
bae5f5
- Bump to the latest version of skopeo
bae5f5
- vendor.conf: add ostree-go
bae5f5
- it is used by containers/image for pulling images to the OSTree storage.
bae5f5
- fail early when image os does not match host os
bae5f5
- Improve documentation on what to do with containers/image failures in test-skopeo
bae5f5
-   We now have the docker-archive: transport
bae5f5
-   Integration tests with built registries also exist
bae5f5
- Support /etc/docker/certs.d
bae5f5
- update image-spec to v1.0.0-rc6
bae5f5
bae5f5
* Tue May 23 2017 bbaude <bbaude@redhat.com> - 0.1.20-1.dev.git0224d8c
bae5f5
- BZ #1380078 - New release
bae5f5
bae5f5
* Tue Apr 25 2017 bbaude <bbaude@redhat.com> - 0.1.19-2.dev.git0224d8c
bae5f5
- No golang support for ppc64.  Adding exclude arch. BZ #1445490
bae5f5
bae5f5
* Tue Feb 28 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.19-1.dev.git0224d8c
bae5f5
- bump to v0.1.19-dev
bae5f5
- built commit 0224d8c
bae5f5
bae5f5
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.17-3.dev.git2b3af4a
bae5f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
bae5f5
bae5f5
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 0.1.17-2.dev.git2b3af4a
bae5f5
- Rebuild for gpgme 1.18
bae5f5
bae5f5
* Tue Dec 06 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.17-1.dev.git2b3af4a
bae5f5
- bump to 0.1.17-dev
bae5f5
bae5f5
* Fri Nov 04 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.14-6.git550a480
bae5f5
- Fix BZ#1391932
bae5f5
bae5f5
* Tue Oct 18 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.14-5.git550a480
bae5f5
- Conflicts with atomic in skopeo-containers
bae5f5
bae5f5
* Wed Oct 12 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.14-4.git550a480
bae5f5
- built skopeo-containers
bae5f5
bae5f5
* Wed Sep 21 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.14-3.gitd830391
bae5f5
- built mtrmac/integrate-all-the-things commit d830391
bae5f5
bae5f5
* Thu Sep 08 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.14-2.git362bfc5
bae5f5
- built commit 362bfc5
bae5f5
bae5f5
* Thu Aug 11 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.14-1.gitffe92ed
bae5f5
- build origin/master commit ffe92ed
bae5f5
bae5f5
* Thu Jul 21 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.13-6
bae5f5
- https://fedoraproject.org/wiki/Changes/golang1.7
bae5f5
bae5f5
* Tue Jun 21 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.1.13-5
bae5f5
- include go-srpm-macros and compiler(go-compiler) in fedora conditionals
bae5f5
- define %%gobuild if not already
bae5f5
- add patch to build with older version of golang
bae5f5
bae5f5
* Thu Jun 02 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.13-4
bae5f5
- update to v0.1.12
bae5f5
bae5f5
* Tue May 31 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.12-3
bae5f5
- fix go build source path
bae5f5
bae5f5
* Fri May 27 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.12-2
bae5f5
- update to v0.1.12
bae5f5
bae5f5
* Tue Mar 08 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.11-1
bae5f5
- update to v0.1.11
bae5f5
bae5f5
* Tue Mar 08 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.10-1
bae5f5
- update to v0.1.10
bae5f5
- change runcom -> projectatomic
bae5f5
bae5f5
* Mon Feb 29 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.9-1
bae5f5
- update to v0.1.9
bae5f5
bae5f5
* Mon Feb 29 2016 Antonio Murdaca <runcom@fedoraproject.org> - 0.1.8-1
bae5f5
- update to v0.1.8
bae5f5
bae5f5
* Mon Feb 22 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.4-2
bae5f5
- https://fedoraproject.org/wiki/Changes/golang1.6
bae5f5
bae5f5
* Fri Jan 29 2016 Antonio Murdaca <runcom@redhat.com> - 0.1.4
bae5f5
- First package for Fedora