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