Blame SPECS/atomic.spec

02accc
%global debug_package %{nil}
02accc
02accc
%if 0%{?fedora} <= 22 || (0%{?rhel} != 0 && 0%{?rhel} <= 7)
02accc
%global pypkg python
02accc
%global pysitelib %{python_sitelib}
02accc
%global __python %{__python2}
02accc
%if 0%{?fedora}
02accc
%global pylint pylint
02accc
%endif
02accc
%else
02accc
%global pypkg python3
02accc
%global pysitelib %{python3_sitelib}
02accc
%global __python %{__python3}
02accc
%global pylint python3-pylint
02accc
%endif
02accc
2cb22e
%global commit0 5a342e32cd22e57345f32d56e2105a699178b59f
02accc
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
02accc
02accc
# Registries package
02accc
%global git_atomic_registries https://github.com/projectatomic/registries
2f2e75
%global commit_atomic_registries da9a9c87781823f45401ca49da04e269c9e3100e
02accc
%global atomic_registries_shortcommit %(c=%{commit_atomic_registries}; echo ${c:0:7})
02accc
02accc
02accc
Name: atomic
02accc
Epoch: 1
1984eb
Version: 1.22.1
2cb22e
Release: 22.git%{shortcommit0}%{?dist}
02accc
Summary: Tool for managing ProjectAtomic systems and containers
02accc
License: LGPLv2+
02accc
URL: https://github.com/projectatomic/%{name}
02accc
Source0: https://github.com/projectatomic/%{name}/archive/%{commit0}.tar.gz
02accc
Source1: https://github.com/projectatomic/registries/archive/%{commit_atomic_registries}.tar.gz
02accc
02accc
BuildRequires: %{pypkg}-dateutil
02accc
BuildRequires: %{pypkg}-devel
02accc
BuildRequires: %{pypkg}-requests >= 2.4.3
02accc
BuildRequires: %{pypkg}-setuptools
02accc
BuildRequires: %{pypkg}-tools
02accc
BuildRequires: %{pypkg}-ipaddress
02accc
BuildRequires: %{pypkg}-dbus
02accc
BuildRequires: %{pypkg}-docker-py >= 1.7.2-1
02accc
BuildRequires: %{pypkg}-setuptools
02accc
BuildRequires: policycoreutils-%{pypkg}
02accc
BuildRequires: git
02accc
BuildRequires: go-md2man
02accc
BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang} >= 1.7.4
02accc
BuildRequires: rpm-%{pypkg}
02accc
BuildRequires: PyYAML
02accc
BuildRequires: ostree-devel
02accc
02accc
Requires: dbus
02accc
Requires: polkit
02accc
Requires: setup
02accc
Requires: rpm-%{pypkg}
02accc
Requires: %{pypkg}-dateutil
02accc
Requires: %{pypkg}-dbus
02accc
Requires: %{pypkg}-docker-py >= 1.7.2-1
02accc
Requires: %{pypkg}-ipaddress
02accc
Requires: %{pypkg}-requests
02accc
Requires: %{pypkg}-setuptools
02accc
Requires: %{pypkg}-six >= 1.3.0
02accc
Requires: %{pypkg}-slip-dbus
02accc
Requires: %{pypkg}-websocket-client >= 0.11.0
2f2e75
Requires: skopeo >= 1:0.1.29-3
2f2e75
Requires: skopeo-containers >= 1:0.1.29-3
02accc
Requires: PyYAML
02accc
Requires: gomtree
02accc
Requires: ostree
02accc
Requires: runc
02accc
Requires: container-storage-setup
02accc
02accc
%description
02accc
The goal of Atomic is to provide a high level, coherent entrypoint to the
02accc
system, and fill in gaps.
02accc
02accc
atomic can make it easier to interact with container runtimes for different
02accc
kinds of containers, such as super-privileged and system containers.
02accc
02accc
The atomic host subcommand wraps rpm-ostree providing unified management.
02accc
02accc
# Atomic Registries
02accc
%package registries
02accc
Summary: Parses a global YAML registry file
02accc
Requires: %{pypkg}-yaml
02accc
Requires: %{pypkg}-pytoml
125dbb
Requires: %{pypkg}-setuptools
02accc
02accc
BuildRequires: %{pypkg}-yaml
02accc
BuildRequires: %{pypkg}-pytoml
02accc
02accc
%description registries
02accc
Utility that parses a global YAML registry file for container runtimes.
02accc
02accc
02accc
%prep
02accc
%setup -qn %{name}-%{commit0}
02accc
cd ../
02accc
tar zxf %{SOURCE1}
02accc
02accc
%build
02accc
cd ..
02accc
pushd registries-%{commit_atomic_registries}
02accc
make PYTHON=%{__python} all
02accc
popd
02accc
pushd atomic-%{commit0}
02accc
if [ %{pypkg} == 'python3' ]; then
02accc
    sed -i 's/input = raw_input/pass/' Atomic/util.py
02accc
fi
02accc
make PYTHON=%{__python} PYLINT=true all
02accc
popd
02accc
02accc
%install
02accc
make PYTHON=%{__python} install-only DESTDIR=%{buildroot}
02accc
02accc
%if 0%{?rhel}
02accc
make install-openscap DESTDIR=%{buildroot}
02accc
%endif
02accc
02accc
# Better support for doing continuous delivery by supporting optional
02accc
# components.  The canonical copy of this is in `rpm-ostree.spec`.
02accc
cat > autofiles.py <
02accc
#!%{pypkg}
02accc
import os,sys,glob
02accc
os.chdir(os.environ['RPM_BUILD_ROOT'])
02accc
for line in sys.argv[1:]:
02accc
    if line == '':
02accc
        break
02accc
    assert line[0] == '/'
02accc
    files = glob.glob(line[1:])
02accc
    if len(files) > 0:
02accc
        sys.stderr.write('{0} matched {1} files\n'.format(line, len(files)))
02accc
        sys.stdout.write(line + '\n')
02accc
    else:
02accc
        sys.stderr.write('{0} did not match any files\n'.format(line))
02accc
EOF
02accc
%{pypkg} autofiles.py > atomic.files \
02accc
  '%{pysitelib}/Atomic' \
02accc
  '%{pysitelib}/%{name}*.egg-info' \
02accc
  '%{_sysconfdir}/profile.d/%{name}.sh' \
02accc
  '%{_bindir}/%{name}' \
02accc
  '%{_datadir}/%{name}' \
02accc
  '%{_libexecdir}/%{name}/' \
02accc
  '%{_datadir}/bash-completion/completions/%{name}' \
02accc
  '%{_datadir}/dbus-1/system-services/org.%{name}.service' \
02accc
  '%{_datadir}/polkit-1/actions/org.%{name}.policy' \
02accc
  '%{_mandir}/man1/%{name}*'
02accc
02accc
#moved to skopeo - should not be present in future tarballs
02accc
rm -rf %{buildroot}%{_sysconfdir}/containers
02accc
02accc
cd ..
02accc
pushd registries-%{commit_atomic_registries}
02accc
make install DESTDIR=%{buildroot}
02accc
install -d %{buildroot}%{_sysconfdir}/containers/
02accc
02accc
install -d %{buildroot}%{_unitdir}
02accc
install -p -m 644  registries.service %{buildroot}%{_unitdir}
02accc
02accc
popd
02accc
02accc
%check
02accc
[ ! -w /run/docker.sock ] || make PYTHON=%{__python} test
02accc
cd ..
02accc
02accc
#define license tag if not already defined
02accc
%{!?_licensedir:%global license %doc}
02accc
02accc
%files -f atomic.files
02accc
%license COPYING
02accc
%doc README.md
02accc
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
02accc
%config(noreplace) %{_sysconfdir}/dbus-1/system.d/org.%{name}.conf
02accc
%config(noreplace) %{_sysconfdir}/%{name}.conf
02accc
%config(noreplace) %{_sysconfdir}/%{name}.d/openscap
02accc
%dir %{_sysconfdir}/%{name}.d
02accc
02accc
%files registries
02accc
%license ../registries-%{commit_atomic_registries}/COPYING 
02accc
%doc ../registries-%{commit_atomic_registries}/README.md
02accc
%{_libexecdir}/registries
02accc
%{_libexecdir}/registries_migrator
02accc
%{_mandir}/man1/registries*
02accc
%{_unitdir}/registries.service
02accc
%{pysitelib}/registries
02accc
%{pysitelib}/registries-*.egg-info
02accc
02accc
%changelog
2cb22e
* Mon Jun 18 2018 Dan Walsh <dwalsh@redhat.com> - 1:1.22.1-22.git5a342e3
2cb22e
- Fix atomix uninstall
2cb22e
2cb22e
* Mon Jun 04 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.22.1-4.git1895984
2cb22e
- Resolves: #1576285
2cb22e
- built atomic commit 1895984
2cb22e
2f2e75
* Tue Apr 10 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.22.1-3.git2fd0860
2f2e75
- move registries.conf to skopeo
2f2e75
- built atomic-registries commit da9a9c8
2f2e75
2f2e75
* Tue Apr 10 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.22.1-2.git2fd0860
2f2e75
- built commit 2fd0860
2f2e75
1984eb
* Wed Feb 21 2018 baude <bbaude@redhat.com> - 1:1.22.1-1.gitd36c015
1984eb
- V1.22.1
1984eb
1984eb
* Thu Feb 01 2018 baude <bbaude@redhat.com> - 1:1.21.1-1.git0769006
1984eb
- V1.21.1
1984eb
125dbb
* Fri Dec 08 2017 baude <bbaude@redhat.com> - 1:1.20.1-9.git436cf5d
125dbb
- BZ #1523799
125dbb
125dbb
* Tue Dec 05 2017 baude <bbaude@redhat.com> - 1:1.20.1-7.git436cf5d
125dbb
- BZ #1520466
125dbb
125dbb
* Thu Nov 30 2017 baude <bbaude@redhat.com> - 1:1.20.1-6
125dbb
- BZ #1518857
125dbb
02accc
* Wed Nov 22 2017 baude <bbaude@redhat.com> - 1:1.20.1-3.git840732d
02accc
- Do not install the original markdown man page
02accc
02accc
* Tue Nov 21 2017 baude <bbaude@redhat.com> - 1:1.20.1-2.git840732d
02accc
- Fix bug related to the manpage for atomic-registries
02accc
02accc
* Tue Nov 07 2017 baude <bbaude@redhat.com> - 1:1.20.1-1.git840732d
02accc
- New upstream atomic and registries packages
02accc
02accc
* Fri Oct 13 2017 baude <bbaude@redhat.com> - 1:1.19.1-5.gitb39a783
02accc
- BZ #1500961
02accc
02accc
* Fri Oct 06 2017 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.19.1-4.gitb39a783
02accc
- depend on skopeo >= 1:0.1.24-1.dev (RE: #1499274)
02accc
02accc
* Wed Sep 20 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 1:1.19.1-3.gitb39a783
02accc
- rebased to b39a7831b50391a04afc3512a8e94a7f6df26e79
02accc
02accc
* Tue Aug 29 2017 baude <bbaude@redhat.com> - 1:1.19.1-2.git8fcdfe4
02accc
- Addition of run for system-containers
02accc
02accc
* Thu Aug 24 2017 Brent Baude <baude@redhat.com> - 1:1.19.1-1.git14e878d
02accc
- New upstream version 1.19.1
02accc
- Fixes BZ #1481967 #1480325 
02accc
02accc
* Tue Aug 08 2017 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.18.1-4.git64843d3
02accc
- Resolves: #1479551
02accc
- depend on skopeo >= 1:0.1.23
02accc
02accc
* Thu Jun 22 2017 bbaude <bbaude@redhat.com> - 1:1.18.1-3.1.git0705b1b
02accc
- Fix conditional distro logic for registires.conf
02accc
- Fixes Bugzilla #1464029
02accc
02accc
* Mon Jun 05 2017 bbaude <bbaude@redhat.com> - 1:1.18.1-2.1.git0705b1b
02accc
- Rework spec file so that %setup can be used with multi-source packages
02accc
- Customized registries.conf file based on distro
02accc
- Updated autoconf to make distro support easier
02accc
- Run make check for atomic-registries
02accc
02accc
* Thu Jun 2 2017 bbaude <bbaude@redhat.com> - 1.18.1
02accc
- 1.18.1 release
02accc
- Inclusion of the subpackage for registries
02accc
02accc
* Thu Jun 01 2017 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.17.2-6.1.git2760e30
02accc
- Resolves; #1457540 - require c-s-s at install time
02accc
02accc
* Mon May 22 2017 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.17.2-5.1.git2760e30
02accc
- Add patch to resolve BZ # 1454292 (originally fixed in extras 7.3.5)
02accc
- bump release tag to stay ahead of extras 7.3
02accc
02accc
* Fri May 05 2017 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.17.2-1.1.git2760e30
02accc
- rebase to 1.17.2
02accc
- built commit 2760e30
02accc
- require runc at install time for system containers
02accc
02accc
* Fri May 05 2017 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.17.1-1.1.gitf304570
02accc
- bump to v1.17.1
02accc
- built commit f304570
02accc
02accc
* Mon Mar 27 2017 Lokesh Mandvekar <lsm5@redhat.com> - 1.16.5-1.1
02accc
- rebuilt for all arches on extras 7.4
02accc
- enable debuginfo
02accc
02accc
* Tue Mar 21 2017 Dan Walsh <dwalsh@redhat.com> - 1.16.5-1
02accc
- bump to v1.16.5
02accc
-  Fix outdated container image message (BZ 1434430)
02accc
-  syscontainers: do not delete previous deployment on update
02accc
-  Atomic/mount.py: Allow different binary paths
02accc
-  Fix email address
02accc
02accc
* Fri Mar 17 2017 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.16.4-2
02accc
- built @projectatomic/master commit 5e5800e
02accc
02accc
* Wed Feb 15 2017 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.15.4-2
02accc
- built commit a21f0bc + re module bug patch
02accc
02accc
* Wed Feb 15 2017 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.15.4-1
02accc
- Resolves: #1420532
02accc
- bump to v1.15.4
02accc
- built commit d56dcfb
02accc
02accc
* Mon Feb 13 2017 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.15.3-1
02accc
- Resolves: #1421918
02accc
- bump to v1.15.3
02accc
- built commit a21f0bc
02accc
02accc
* Tue Feb 07 2017 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.15.2-4
02accc
- built commit 2ebeb1d
02accc
02accc
* Tue Jan 31 2017 Dan Walsh <dwalsh@redhat.com> - 1.15.2-3
02accc
- Remove requires docker.
02accc
02accc
* Tue Jan 31 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 1:1.15.2-2
02accc
- v1.15.2 tag changed upstream, rebase
02accc
02accc
* Mon Jan 23 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 1:1.15.2-1
02accc
- rebase to v1.15.2
02accc
02accc
* Tue Jan 03 2017 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.14.1-5
02accc
- revert python-docker-py version requirement to what existed prior
02accc
to enforcing >= 1.10.6
02accc
02accc
* Sat Dec 24 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.14.1-4
02accc
- do not enforce version requirement on python-docker-py
02accc
02accc
* Thu Dec 22 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.14.1-3
02accc
- update runtime deps
02accc
02accc
* Sat Dec 17 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.14.1-2
02accc
- Requires: python-slip-dbus
02accc
02accc
* Wed Dec 14 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.14.1-1
02accc
- Resolves: #1404317 - rebase to v1.14.1
02accc
- built commit b182dbd
02accc
02accc
* Wed Nov 30 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.13.8-2
02accc
- Requires gomtree
02accc
02accc
* Mon Nov 07 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.13.8-1
02accc
- bump to v1.13.8
02accc
- built commit 8046db2
02accc
02accc
* Thu Nov 03 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.13.7-2
02accc
- built commit 4c3ea60
02accc
02accc
* Thu Nov 03 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.13.7-1
02accc
- Resolves: #1377952
02accc
- bump to v1.13.7
02accc
- built commit 1d01980
02accc
02accc
* Tue Nov 01 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.13.6-1
02accc
- bump to v1.13.6
02accc
- built commit a45a2a9
02accc
02accc
* Mon Oct 31 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.13.5-1
02accc
- bump to v1.13.5
02accc
- built commit 3d9567b
02accc
02accc
* Sat Oct 29 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.13.4-1
02accc
- bump to v1.13.4
02accc
- built commit 0331180
02accc
02accc
* Thu Oct 27 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.13.3-1
02accc
- bump to v1.13.3
02accc
- built commit 5a075e8
02accc
02accc
* Tue Oct 18 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.13.1-3
02accc
- needs skopeo >= 0.1.17-0.4
02accc
02accc
* Tue Oct 18 2016 Frantisek Kluknavsky <fkluknav@redhat.com> - 1:1.13.1-2
02accc
- do not package /etc/containers - moved to skopeo
02accc
02accc
* Tue Oct 11 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.13.1-1
02accc
- bump to v1.13.1
02accc
- built commit 4445c41 - tag v1.13.1
02accc
02accc
* Mon Oct 10 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.13.0-1
02accc
- Resolves: #1383452 - rebase to v1.13.0
02accc
- built commit 71d0ccb
02accc
02accc
* Mon Sep 26 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.12.5-2
02accc
- install /var/lib/atomic/sigstore
02accc
02accc
* Mon Sep 26 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.12.5-1
02accc
- built commit b807043
02accc
02accc
* Tue Sep 20 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.12.3-2
02accc
- built commit d551996
02accc
02accc
* Tue Sep 20 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.12.3-1
02accc
- bump to v1.12.3
02accc
- built commit bc0141b
02accc
02accc
* Tue Sep 20 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.12.2-3
02accc
- Resolves: #1376600
02accc
- built commit 4729fc0
02accc
- include default.yaml file for for OOTB signing experience.
02accc
02accc
* Fri Sep 16 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.12.2-2
02accc
- update changelog with bz#'s fixed in previous build
02accc
02accc
* Fri Sep 16 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.12.2-1
02accc
- bump to v1.12.2
02accc
- Resolves: #1375891 #1366937 #1353626 #1366255 #1347037 #1343948
02accc
- Resolves: #1342060 #1361949 #1350712 #1368566 #1342047 #1346921
02accc
- Resolves: #1346930 #1327529 #1346929 #1345820
02accc
02accc
* Tue Sep 13 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.12.1-3
02accc
- Resolves: #1374676 - only check setvalues argument when OSTREE_PRESENT
02accc
02accc
* Tue Sep 13 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.12.1-2
02accc
- Resolves: #1375578
02accc
02accc
* Tue Sep 13 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.12.1-1
02accc
- rebase to v.1.12.1
02accc
02accc
* Tue Sep 06 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.12.0-1
02accc
- Resolves: #1373977 - rebase to v1.12.0
02accc
02accc
* Tue Jul 12 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.10.5-7
02accc
- use skopeo >= 1:0.1.13-7
02accc
02accc
* Tue Jul 12 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.10.5-6
02accc
- skopeo is an independent package
02accc
- use autosetup
02accc
- dockertar-sha256-helper needs golang
02accc
02accc
* Wed Jun 15 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.10.5-5
02accc
- Resolves: #1343939 - fix image naming error
02accc
- Resolves: #1346942 - don't depend on ostree if it's not available
02accc
02accc
* Wed Jun 15 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.10.5-4
02accc
- own /etc/atomic.d
02accc
02accc
* Wed Jun 08 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.10.5-3
02accc
- bump release tag so that skopeo has something newer than 0.1.13-2
02accc
02accc
* Wed Jun 08 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.10.5-1
02accc
- bump to v1.10.5
02accc
- Resolves: #1300187, #1317798, #1323165, #1314541, #1311544, #1307034,
02accc
#1315369, #1331429, #1341922, #1341916
02accc
02accc
* Mon Jun 06 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.10.3-2
02accc
- Resolves: #1341916 - PyYAML is a runtime dep too
02accc
- install-openscap on rhel only, From Brent Baude <bbaude@redhat.com>
02accc
02accc
* Wed Jun 01 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.10.3-1
02accc
- bump atomic to v1.10.3, skopeo to v0.1.13
02accc
02accc
* Tue May 31 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.10.2-4.git02fe5ce
02accc
- use skopeo_version macro correctly
02accc
02accc
* Tue May 31 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.10.2-3.git02fe5ce
02accc
- skopeo subpackage has its own version
02accc
- bump epoch so that skopeo's version can take effect
02accc
02accc
* Tue May 31 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.2-2.git02fe5ce
02accc
- no dependency on OSTree if not available
02accc
02accc
* Tue May 31 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.2-1.gitfdbe345
02accc
- Resolves: #1341174 - bump to v1.10.2
02accc
- BR: PyYAML
02accc
02accc
* Tue May 31 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.10.1-1.gitee5d95e
02accc
- Resolves: #1341174 - rebase to 1.10.1
02accc
- rebase skopeo to v0.1.13
02accc
02accc
* Tue Mar 08 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9-4.gitff44c6a
02accc
- depend on python-docker-py >= 1.7.2-1
02accc
02accc
* Tue Mar 08 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9-3.gitff44c6a
02accc
- include skopeo subpackage
02accc
02accc
* Tue Mar 08 2016 Lokesh Mandvekar <lsm5@redhat.com> - 1.9-2.gitff44c6a
02accc
- Resolves: rhbz#1315846 - rebase to 1.9
02accc
- built atomic commit#ff44c6a
02accc
02accc
* Thu Feb 18 2016 Antonio Murdaca <runcom@fedoraproject.org> - 1.8-7.git1bc3814
02accc
- rebuilt
02accc
02accc
* Tue Jan 26 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8-6.git1bc3814
02accc
- built atomic commit#1bc3814
02accc
02accc
* Tue Jan 26 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8-5.git1bc3814
02accc
- Resolves: rhbz#1300459 - no .egg-info file/dir installed anymore
02accc
- built atomic commit#1bc3814
02accc
02accc
* Tue Jan 19 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8-4.git958d939
02accc
- Resolves: rhbz#1292776
02accc
- built atomic commit#958d939
02accc
02accc
* Tue Jan 19 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8-3.git958d939
02accc
- built atomic commit#958d939
02accc
02accc
* Tue Jan 05 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.8-2.gita35ae18
02accc
- built atomic commit#a35ae18
02accc
02accc
* Tue Dec 01 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.7-3.git95b28a9
02accc
- Resolves: rhbz#1285461 - improved 'atomic images' formatting
02accc
- built atomic commit#95b28a9
02accc
02accc
* Mon Nov 23 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.7-2.git68be076
02accc
- built atomic commit#68be076
02accc
02accc
* Wed Nov 04 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.6-6.gitca1e384
02accc
- update python-docker-py dependency over what was shipped in 7.1.6 and 7.2.0
02accc
02accc
* Wed Nov 04 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.6-5.gitea18c14
02accc
- correct bogus date annoyance
02accc
02accc
* Wed Nov 04 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.6-4.gitea18c14
02accc
- Resolves: rhbz#1278145 - depend on python-docker-py >= 1.4.0-118
02accc
02accc
* Tue Nov 03 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.6-3.gitea18c14
02accc
- Resolves: rhbz#1272037
02accc
- built atomic commit#ea18c14
02accc
02accc
* Thu Oct 29 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.6-2.git50d7fd9
02accc
- built atomic commit#50d7fd9
02accc
02accc
* Thu Oct 22 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.6-1.gitca1e384
02accc
- built atomic commit#ca1e384
02accc
- Resolves: rhbz#1273365
02accc
02accc
* Fri Oct 09 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.5-4.git7e4365f
02accc
- built atomic @origin/master commit#7e4365f
02accc
- re-include python-setuptools at build and runtime
02accc
02accc
* Tue Oct 06 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.5-3.git82f4324
02accc
- Resolves: rhbz#1268926
02accc
- no dependency on python-setuptools
02accc
- depends on python-dbus at buildtime
02accc
- built atomic @origin/master commit#82f4324
02accc
02accc
* Wed Sep 30 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.5-2.git191fb53
02accc
- Resolves: rhbz#1265974 (extras-rhel-7.1.6) - include atomic
02accc
- Resolves: rhbz#1211359 (extras-rhel-7.2) - include atomic
02accc
- built atomic @origin/master commit#191fb53
02accc
02accc
* Wed Sep 23 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.4-3.git9d724aa
02accc
- ping version req for python-docker-py
02accc
02accc
* Mon Sep 14 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.4-2.git9d724aa
02accc
- unpin python-requests version requirement
02accc
02accc
* Mon Sep 14 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.4-1.git9d724aa
02accc
- built master commit#9d724aa
02accc
- scan subcommand added
02accc
- br: python-requests >= 2.4.3
02accc
02accc
* Mon Aug 03 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.1-1.git5f631c8
02accc
- bump to 1.1
02accc
- buildrequires policycoreutils-python(3)
02accc
02accc
* Fri Jul 24 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.0-1.git52d695c
02accc
- version 1.0 as per setup.py
02accc
- use latest upstream master commit
02accc
- run test only if docker.sock writable
02accc
02accc
* Tue Jul 14 2015 Miro HronĨok <mhroncok@redhat.com> - 0-0.12.gitfea1b99
02accc
- update to latest upstream master
02accc
- add new %%files and require dbus, polkit and setup to have the directories
02accc
- switch to Python 3
02accc
- disable build for arm (missing docker)
02accc
- Resolves: rhbz#1241947
02accc
02accc
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.11.gite5734c4
02accc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
02accc
02accc
* Wed Apr 15 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0-0.10.gite5734c4
02accc
- update to latest upstream master
02accc
02accc
* Tue Mar 03 2015 Colin Walters <walters@redhat.com> - 0-0.9.gita7ff4cb
02accc
- Match ExclusiveArch with docker (there is no docker on i686)
02accc
02accc
* Mon Mar 02 2015 Colin Walters <walters@redhat.com> - 0-0.8.gita7ff4cb
02accc
- Drop ExclusiveArch, we are just a wrapper for Docker, which in any
02accc
  case builds on other architectures now.
02accc
02accc
* Tue Feb 24 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0-0.7.gita7ff4cb
02accc
- remove pylint for rhel/centos
02accc
02accc
* Tue Feb 24 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0-0.6.gita7ff4cb
02accc
- runtime requirement: python-docker-py
02accc
02accc
* Tue Feb 24 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0-0.5.gita7ff4cb
02accc
- build commit#a7ff4cb
02accc
02accc
02accc
* Thu Feb 19 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0-0.3.gite4081c9
02accc
- manpage installation rules upstreamed
02accc
02accc
* Wed Feb 18 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0-0.2.git6b82cb7
02accc
- install docs
02accc
02accc
* Wed Feb 18 2015 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0-0.1.git6b82cb7
02accc
- Initial package