Unneeded specs removed
This commit is contained in:
@@ -1,63 +0,0 @@
|
|||||||
Name: BackupPC-XS
|
|
||||||
Version: 0.56
|
|
||||||
Release: 3%{?dist}
|
|
||||||
Summary: Implementation of various BackupPC functions in a perl-callable module
|
|
||||||
|
|
||||||
License: GPLv3+ and (GPL+ or Artistic) and zlib
|
|
||||||
URL: https://github.com/backuppc/backuppc-xs
|
|
||||||
Source0: https://github.com/backuppc/backuppc-xs/releases/download/%{version}/%{name}-%{version}.tar.gz
|
|
||||||
|
|
||||||
BuildRequires: gcc
|
|
||||||
BuildRequires: perl-interpreter perl-devel
|
|
||||||
BuildRequires: perl-generators
|
|
||||||
BuildRequires: perl(constant)
|
|
||||||
BuildRequires: perl(Exporter)
|
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
||||||
BuildRequires: perl(strict)
|
|
||||||
BuildRequires: perl(warnings)
|
|
||||||
BuildRequires: perl(XSLoader)
|
|
||||||
# Testing requirement
|
|
||||||
BuildRequires: perl(Test::More)
|
|
||||||
|
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
||||||
|
|
||||||
Provides: bundled(zlib) = 1.2.3
|
|
||||||
|
|
||||||
%description
|
|
||||||
BackupPC::XS implements various BackupPC functions in a perl-callable
|
|
||||||
module. This module is required for BackupPC V4+.
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup
|
|
||||||
|
|
||||||
|
|
||||||
%build
|
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
|
|
||||||
make
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
|
||||||
make pure_install DESTDIR=%{buildroot}
|
|
||||||
%{_fixperms} %{buildroot}
|
|
||||||
|
|
||||||
|
|
||||||
%check
|
|
||||||
make test
|
|
||||||
|
|
||||||
|
|
||||||
%clean
|
|
||||||
[ "%{buildroot}" != "/" ] && [ -d "%{buildroot}" ] && rm -rf %{buildroot}
|
|
||||||
|
|
||||||
|
|
||||||
%files
|
|
||||||
%doc Changes README
|
|
||||||
%{perl_vendorarch}/*
|
|
||||||
%exclude %dir %{perl_vendorarch}/auto/
|
|
||||||
%{_mandir}/man3/BackupPC::XS.3pm*
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Sat Oct 7 2017 Daniel Steiner <daniel.steiner@greenmail.ch> - 4.1.3-2
|
|
||||||
- Iniital build.
|
|
||||||
|
|
||||||
@@ -1,342 +0,0 @@
|
|||||||
%global _hardened_build 1
|
|
||||||
%define backupdir /backup/%{name}
|
|
||||||
%define bpcuser backuppc
|
|
||||||
|
|
||||||
# tmpfiles.d & systemd support in all supported Fedora now, but not RHEL < 7
|
|
||||||
%if 0%{?fedora} || 0%{?rhel} >= 7
|
|
||||||
%global _with_tmpfilesd 1
|
|
||||||
%global _with_systemd 1
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%global _updatedb_conf /etc/updatedb.conf
|
|
||||||
|
|
||||||
%global ver_major 4
|
|
||||||
%global ver_minor 1
|
|
||||||
%global ver_patch 3
|
|
||||||
%global ver_under %{ver_major}_%{ver_minor}_%{ver_patch}
|
|
||||||
|
|
||||||
Name: BackupPC
|
|
||||||
Version: %{ver_major}.%{ver_minor}.%{ver_patch}
|
|
||||||
Release: 1%{?dist}
|
|
||||||
Summary: High-performance backup system
|
|
||||||
|
|
||||||
License: GPLv2+
|
|
||||||
URL: http://backuppc.github.io/backuppc/index.html
|
|
||||||
Source0: https://github.com/backuppc/backuppc/releases/download/%{version}/%{name}-%{version}.tar.gz
|
|
||||||
Source1: BackupPC.htaccess
|
|
||||||
Source2: BackupPC.logrotate
|
|
||||||
Source3: README.setup
|
|
||||||
#A C wrapper to use since perl-suidperl is no longer provided
|
|
||||||
Source4: BackupPC_Admin.c
|
|
||||||
Source5: backuppc.service
|
|
||||||
Source6: BackupPC.tmpfiles
|
|
||||||
Source7: README.RHEL
|
|
||||||
|
|
||||||
Patch0: BackupPC-4.1.3-docfix.patch
|
|
||||||
|
|
||||||
BuildRequires: perl-generators
|
|
||||||
BuildRequires: perl(BackupPC::XS) >= 0.53
|
|
||||||
BuildRequires: perl(CGI)
|
|
||||||
BuildRequires: perl(Compress::Zlib)
|
|
||||||
BuildRequires: perl(Data::Dumper)
|
|
||||||
BuildRequires: perl(Digest::MD5)
|
|
||||||
BuildRequires: perl(Encode)
|
|
||||||
BuildRequires: perl(File::Listing)
|
|
||||||
BuildRequires: perl(Pod::Usage)
|
|
||||||
BuildRequires: perl(version)
|
|
||||||
%if 0%{?_with_systemd}
|
|
||||||
BuildRequires: systemd
|
|
||||||
%endif
|
|
||||||
BuildRequires: httpd-tools
|
|
||||||
|
|
||||||
# Unbundled libraries
|
|
||||||
Requires: perl(Net::FTP::AutoReconnect)
|
|
||||||
Requires: perl(Net::FTP::RetrHandle)
|
|
||||||
|
|
||||||
Requires: bzip2
|
|
||||||
Requires: httpd
|
|
||||||
Requires: iputils
|
|
||||||
Requires: openssh-clients
|
|
||||||
%if ! 0%{?el6}
|
|
||||||
Requires: par2cmdline
|
|
||||||
%endif
|
|
||||||
Requires: rrdtool
|
|
||||||
Requires: rsync-bpc >= 3.0.9.6
|
|
||||||
Requires: perl(Archive::Zip)
|
|
||||||
Requires: perl(BackupPC::XS) >= 0.53
|
|
||||||
Requires: perl(CGI)
|
|
||||||
Requires: perl(Compress::Zlib)
|
|
||||||
Requires: perl(Digest::MD5)
|
|
||||||
Requires: perl(Encode)
|
|
||||||
Requires: perl(File::Listing)
|
|
||||||
Requires: perl-Time-modules
|
|
||||||
Requires: perl(version)
|
|
||||||
Requires: perl(XML::RSS)
|
|
||||||
Requires: samba-client
|
|
||||||
Requires: %{_sbindir}/sendmail
|
|
||||||
|
|
||||||
Requires(pre): shadow-utils
|
|
||||||
%if 0%{?_with_systemd}
|
|
||||||
Requires(preun): systemd
|
|
||||||
Requires(post): systemd shadow-utils
|
|
||||||
Requires(postun): systemd
|
|
||||||
%else
|
|
||||||
Requires(preun): initscripts chkconfig
|
|
||||||
Requires(post): initscripts chkconfig shadow-utils
|
|
||||||
Requires(postun): initscripts
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Requires: policycoreutils
|
|
||||||
BuildRequires: selinux-policy-devel checkpolicy
|
|
||||||
Provides: backuppc = %{version}
|
|
||||||
|
|
||||||
|
|
||||||
%description
|
|
||||||
BackupPC is a high-performance, enterprise-grade system for backing up Linux
|
|
||||||
and WinXX and Mac OS X PCs and laptops to a server's disk. BackupPC is highly
|
|
||||||
configurable and easy to install and maintain.
|
|
||||||
|
|
||||||
NOTE: Proper configuration is required after install, see README.setup for more
|
|
||||||
information.
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup -p1
|
|
||||||
|
|
||||||
for f in ChangeLog; do
|
|
||||||
iconv -f ISO-8859-1 -t UTF-8 $f > $f.utf && mv $f.utf $f
|
|
||||||
done
|
|
||||||
|
|
||||||
cp %{SOURCE3} .
|
|
||||||
cp %{SOURCE7} .
|
|
||||||
cp %{SOURCE4} .
|
|
||||||
|
|
||||||
mkdir selinux
|
|
||||||
pushd selinux
|
|
||||||
|
|
||||||
cat >%{name}.te <<EOF
|
|
||||||
policy_module(%{name},0.0.5)
|
|
||||||
require {
|
|
||||||
type var_log_t;
|
|
||||||
type httpd_t;
|
|
||||||
class sock_file write;
|
|
||||||
type initrc_t;
|
|
||||||
class unix_stream_socket connectto;
|
|
||||||
type ssh_exec_t;
|
|
||||||
type ping_exec_t;
|
|
||||||
type sendmail_exec_t;
|
|
||||||
class file getattr;
|
|
||||||
type var_run_t;
|
|
||||||
class sock_file getattr;
|
|
||||||
type httpd_log_t;
|
|
||||||
class file open;
|
|
||||||
class dir read;
|
|
||||||
}
|
|
||||||
|
|
||||||
allow httpd_t var_run_t:sock_file write;
|
|
||||||
allow httpd_t initrc_t:unix_stream_socket connectto;
|
|
||||||
allow httpd_t ping_exec_t:file getattr;
|
|
||||||
allow httpd_t sendmail_exec_t:file getattr;
|
|
||||||
allow httpd_t ssh_exec_t:file getattr;
|
|
||||||
allow httpd_t var_run_t:sock_file getattr;
|
|
||||||
allow httpd_t httpd_log_t:file open;
|
|
||||||
allow httpd_t httpd_log_t:dir read;
|
|
||||||
EOF
|
|
||||||
|
|
||||||
cat >%{name}.fc <<EOF
|
|
||||||
%{_sysconfdir}/%{name}(/.*)? gen_context(system_u:object_r:httpd_sys_script_rw_t,s0)
|
|
||||||
%{_sysconfdir}/%{name}/LOCK gen_context(system_u:object_r:httpd_lock_t,s0)
|
|
||||||
%{_localstatedir}/run/%{name}(/.*)? gen_context(system_u:object_r:var_run_t,s0)
|
|
||||||
%{_localstatedir}/log/%{name}(/.*)? gen_context(system_u:object_r:httpd_log_t,s0)
|
|
||||||
EOF
|
|
||||||
popd
|
|
||||||
|
|
||||||
# attempt to unbundle as much as possible
|
|
||||||
for m in Net/FTP; do
|
|
||||||
rm -rf lib/$m
|
|
||||||
sed -i "\@lib/$m@d" configure.pl
|
|
||||||
done
|
|
||||||
|
|
||||||
|
|
||||||
%build
|
|
||||||
# Build C wrapper
|
|
||||||
gcc -o BackupPC_Admin BackupPC_Admin.c %{optflags}
|
|
||||||
|
|
||||||
# SElinux
|
|
||||||
pushd selinux
|
|
||||||
make -f %{_datadir}/selinux/devel/Makefile
|
|
||||||
popd
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
|
||||||
%{__perl} configure.pl \
|
|
||||||
--batch \
|
|
||||||
--backuppc-user=%{bpcuser} \
|
|
||||||
--dest-dir %{buildroot} \
|
|
||||||
--config-dir %{_sysconfdir}/%{name}/ \
|
|
||||||
--config-override CgiURL=\"http://localhost/%{name}\" \
|
|
||||||
--config-override ClientNameAlias=undef \
|
|
||||||
--config-override NmbLookupPath=\"%{_bindir}/nmblookup\" \
|
|
||||||
--config-override ParPath=\"%{_bindir}/par2\" \
|
|
||||||
--config-override PingPath=\"%{_bindir}/ping\" \
|
|
||||||
--config-override Ping6Path=\"%{_sbindir}/ping6\" \
|
|
||||||
--config-override RrdToolPath=\"%{_bindir}/rrdtool\" \
|
|
||||||
--config-override RsyncBackupPCPath=\"%{_bindir}/rsync_bpc\" \
|
|
||||||
--config-override RsyncClientPath=\"%{_bindir}/rsync\" \
|
|
||||||
--config-override SendmailPath=\"%{_sbindir}/sendmail\" \
|
|
||||||
--config-override SmbClientPath=\"%{_bindir}/smbclient\" \
|
|
||||||
--config-override SshPath=\"%{_bindir}/ssh\" \
|
|
||||||
--config-override TarClientPath=\"%{_bindir}/gtar\" \
|
|
||||||
--config-override XferMethod=\"rsync\" \
|
|
||||||
--cgi-dir %{_libexecdir}/%{name} \
|
|
||||||
--scgi-port -1 \
|
|
||||||
--data-dir %{backupdir} \
|
|
||||||
--hostname localhost \
|
|
||||||
--html-dir %{_datadir}/%{name}/html/ \
|
|
||||||
--html-dir-url /%{name}/images \
|
|
||||||
--install-dir %{_datadir}/%{name} \
|
|
||||||
--log-dir %{_localstatedir}/log/%{name} \
|
|
||||||
--no-set-perms \
|
|
||||||
--uid-ignore
|
|
||||||
|
|
||||||
# Make bin files executable
|
|
||||||
chmod +x %{buildroot}%{_datadir}/%{name}/bin/*
|
|
||||||
|
|
||||||
%if 0%{?_with_tmpfilesd}
|
|
||||||
mkdir -p %{buildroot}%{_tmpfilesdir}
|
|
||||||
install -p -m 0644 %{SOURCE6} %{buildroot}%{_tmpfilesdir}/%{name}.conf
|
|
||||||
%endif
|
|
||||||
mkdir -p %{buildroot}%{_localstatedir}/run/%{name}
|
|
||||||
|
|
||||||
%if 0%{?_with_systemd}
|
|
||||||
mkdir -p %{buildroot}%{_unitdir}
|
|
||||||
install -p -m 0644 %{SOURCE5} %{buildroot}%{_unitdir}/
|
|
||||||
%else
|
|
||||||
mkdir -p %{buildroot}%{_initrddir}
|
|
||||||
install -p -m 0755 systemd/src/init.d/linux-%{bpcuser} %{buildroot}%{_initrddir}/%{bpcuser}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/httpd/conf.d/
|
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/logrotate.d/
|
|
||||||
mkdir -p %{buildroot}%{_localstatedir}/log/%{name}
|
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/%{name}
|
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/%{name}/pc
|
|
||||||
|
|
||||||
install -p -m 0644 %{SOURCE1} \
|
|
||||||
%{buildroot}%{_sysconfdir}/httpd/conf.d/%{name}.conf
|
|
||||||
install -p -m 0644 %{SOURCE2} \
|
|
||||||
%{buildroot}%{_sysconfdir}/logrotate.d/%{name}
|
|
||||||
|
|
||||||
# perl-suidperl is no longer avaialable, we use a C wrapper
|
|
||||||
mkdir -p %{buildroot}%{_datadir}/%{name}/sbin
|
|
||||||
mv %{buildroot}%{_libexecdir}/%{name}/BackupPC_Admin \
|
|
||||||
%{buildroot}%{_datadir}/%{name}/sbin/BackupPC_Admin
|
|
||||||
install -pm 0755 BackupPC_Admin %{buildroot}%{_libexecdir}/%{name}/
|
|
||||||
|
|
||||||
# SElinux
|
|
||||||
mkdir -p %{buildroot}%{_datadir}/selinux/packages/%{name}
|
|
||||||
install -m 0644 selinux/%{name}.pp %{buildroot}%{_datadir}/selinux/packages/%{name}/%{name}.pp
|
|
||||||
|
|
||||||
# Create apache user auth file (backuppc/backuppc):
|
|
||||||
/usr/bin/htpasswd -b -c %{buildroot}%{_sysconfdir}/%{name}/apache.users %{bpcuser} %{bpcuser}
|
|
||||||
|
|
||||||
%clean
|
|
||||||
[ "%{buildroot}" != "/" ] && [ -d "%{buildroot}" ] && rm -rf %{buildroot}
|
|
||||||
|
|
||||||
%pre
|
|
||||||
%{_sbindir}/useradd -d %{_localstatedir}/lib/%{name} -r -s /sbin/nologin %{bpcuser} 2> /dev/null || :
|
|
||||||
|
|
||||||
%preun
|
|
||||||
%if 0%{?_with_systemd}
|
|
||||||
%systemd_preun %{bpcuser}.service
|
|
||||||
%else
|
|
||||||
if [ $1 = 0 ]; then
|
|
||||||
# Package removal, not upgrade
|
|
||||||
service %{bpcuser} stop > /dev/null 2>&1 || :
|
|
||||||
chkconfig --del %{bpcuser} || :
|
|
||||||
fi
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%post
|
|
||||||
(
|
|
||||||
# Install/update Selinux policy
|
|
||||||
semodule -i %{_datadir}/selinux/packages/%{name}/%{name}.pp
|
|
||||||
# files created by app
|
|
||||||
restorecon -R %{_sysconfdir}/%{name}
|
|
||||||
restorecon -R %{_localstatedir}/log/%{name}
|
|
||||||
) &>/dev/null
|
|
||||||
|
|
||||||
%if 0%{?_with_systemd}
|
|
||||||
%systemd_post %{bpcuser}.service
|
|
||||||
%else
|
|
||||||
if [ $1 -eq 1 ]; then
|
|
||||||
# initial installation
|
|
||||||
chkconfig --add %{bpcuser} || :
|
|
||||||
fi
|
|
||||||
%{_sbindir}/usermod -a -G %{bpcuser} apache || :
|
|
||||||
%endif
|
|
||||||
|
|
||||||
# add BackupPC backup directories to PRUNEPATHS in locate database
|
|
||||||
if [ -w %{_updatedb_conf} ]; then
|
|
||||||
grep ^PRUNEPATHS %{_updatedb_conf} | grep %{_localstatedir}/lib/%{name} > /dev/null
|
|
||||||
if [ $? -eq 1 ]; then
|
|
||||||
sed -i '\@PRUNEPATHS@s@"$@ '%{_localstatedir}/lib/%{name}'"@' %{_updatedb_conf}
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
:
|
|
||||||
|
|
||||||
%postun
|
|
||||||
# clear out any BackupPC configuration in apache
|
|
||||||
service httpd condrestart > /dev/null 2>&1 || :
|
|
||||||
|
|
||||||
if [ $1 -eq 0 ]; then
|
|
||||||
# uninstall
|
|
||||||
# Remove the SElinux policy.
|
|
||||||
semodule -r %{name} &> /dev/null || :
|
|
||||||
# remove BackupPC backup directories from PRUNEPATHS in locate database
|
|
||||||
if [ -w %{_updatedb_conf} ]; then
|
|
||||||
sed -i '\@PRUNEPATHS@s@[ ]*'%{_localstatedir}/lib/%{name}'@@' %{_updatedb_conf} || :
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
%systemd_postun_with_restart %{bpcuser}.service
|
|
||||||
|
|
||||||
|
|
||||||
%files
|
|
||||||
%doc README.md README.setup README.RHEL ChangeLog doc/*
|
|
||||||
%license LICENSE
|
|
||||||
%dir %attr(-,%{bpcuser},%{bpcuser}) %{_localstatedir}/log/%{name}
|
|
||||||
%dir %attr(-,%{bpcuser},%{bpcuser}) %{_sysconfdir}/%{name}/
|
|
||||||
%config(noreplace) %{_sysconfdir}/httpd/conf.d/%{name}.conf
|
|
||||||
%config(noreplace) %attr(0640,%{bpcuser},apache) %{_sysconfdir}/%{name}/config.pl
|
|
||||||
%config(noreplace) %attr(0640,%{bpcuser},apache) %{_sysconfdir}/%{name}/config.pl.sample
|
|
||||||
%config(noreplace) %attr(0640,%{bpcuser},apache) %{_sysconfdir}/%{name}/hosts.sample
|
|
||||||
%config(noreplace) %attr(0640,%{bpcuser},apache) %{_sysconfdir}/%{name}/hosts
|
|
||||||
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/%{name}/apache.users
|
|
||||||
%dir %attr(0750,%{bpcuser},apache) %{_sysconfdir}/%{name}/pc
|
|
||||||
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
|
|
||||||
%dir %{_datadir}/%{name}
|
|
||||||
%dir %{_datadir}/%{name}/sbin
|
|
||||||
%{_datadir}/%{name}/[^s]*
|
|
||||||
%attr(750,%{bpcuser},apache) %{_datadir}/%{name}/sbin/BackupPC_Admin
|
|
||||||
|
|
||||||
%if 0%{?_with_tmpfilesd}
|
|
||||||
%{_tmpfilesdir}/%{name}.conf
|
|
||||||
%endif
|
|
||||||
%dir %attr(0775,%{bpcuser},%{bpcuser}) %{_localstatedir}/run/%{name}
|
|
||||||
|
|
||||||
%if 0%{?_with_systemd}
|
|
||||||
%{_unitdir}/%{bpcuser}.service
|
|
||||||
%else
|
|
||||||
%attr(0755,root,root) %{_initrddir}/%{bpcuser}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%attr(4750,%{bpcuser},apache) %{_libexecdir}/%{name}/BackupPC_Admin
|
|
||||||
%attr(-,%{bpcuser},root) %{backupdir}/
|
|
||||||
%{_datadir}/selinux/packages/%{name}/%{name}.pp
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Sat Oct 7 2017 Daniel Steiner <daniel.steiner@greenmail.ch> - 4.1.3-2
|
|
||||||
- Iniital build.
|
|
||||||
|
|
||||||
@@ -1,853 +0,0 @@
|
|||||||
# RHEL 6 didn't have a __python2 macro.
|
|
||||||
# Amazon Linux 2015.9 is based on RHEL6, with /usr/bin/python2 -> python2.6, while
|
|
||||||
# /usr/bin/python -> python2.7. Explicitly use python2.6.
|
|
||||||
%if 0%{?rhel} == 6 || 0%{?rhel} == 5
|
|
||||||
%global __python2 /usr/bin/python2.6
|
|
||||||
%endif
|
|
||||||
|
|
||||||
# RHEL 6 and 7 do not have BuildRequires to build docs
|
|
||||||
# Fedora 27 and older have too old a jinja2 to build docs
|
|
||||||
%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8
|
|
||||||
%global with_docs 1
|
|
||||||
%else
|
|
||||||
%global with_docs 0
|
|
||||||
%endif
|
|
||||||
|
|
||||||
# Build Fedora and RHEL larger than 7 with python3
|
|
||||||
%if 0%{?fedora} || 0%{?rhel} >= 8
|
|
||||||
%global with_python3 1
|
|
||||||
%else
|
|
||||||
%global with_python3 0
|
|
||||||
%endif
|
|
||||||
|
|
||||||
# Fedora 29+ and RHEL larger than 7 no python2, python3 default
|
|
||||||
%if 0%{?fedora} >= 29 || 0%{?rhel} >= 8
|
|
||||||
%global with_python2 0
|
|
||||||
%else
|
|
||||||
%global with_python2 1
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Name: ansible
|
|
||||||
Summary: SSH-based configuration management, deployment, and task execution system
|
|
||||||
Version: 2.7.6
|
|
||||||
Release: 1%{?dist}
|
|
||||||
|
|
||||||
Group: Development/Libraries
|
|
||||||
License: GPLv3+
|
|
||||||
Source0: https://releases.ansible.com/ansible/%{name}-%{version}.tar.gz
|
|
||||||
|
|
||||||
# Patch to utilize a newer jinja2 package on epel6
|
|
||||||
# Non-upstreamable as it creates a dependency on a specific version of jinja.
|
|
||||||
# This is desirable for us as we have packages for that version but not for
|
|
||||||
# upstream as they don't know what their customers are running.
|
|
||||||
Patch100: ansible-newer-jinja.patch
|
|
||||||
|
|
||||||
Url: http://ansible.com
|
|
||||||
BuildArch: noarch
|
|
||||||
|
|
||||||
# This is needed to update the old ansible-fireball package that is no
|
|
||||||
# longer needed. Note that you should also remove ansible-node-fireball manually
|
|
||||||
# Where you still have it installed.
|
|
||||||
#
|
|
||||||
Provides: ansible-fireball = %{version}-%{release}
|
|
||||||
Obsoletes: ansible-fireball < 1.2.4
|
|
||||||
|
|
||||||
%if 0%{?with_python2}
|
|
||||||
%if 0%{?rhel} && 0%{?rhel} <= 5
|
|
||||||
# On RHEL6 use the python26 stack
|
|
||||||
BuildRequires: python26-devel
|
|
||||||
Requires: python26-PyYAML
|
|
||||||
Requires: python26-paramiko
|
|
||||||
Requires: python26-jinja2
|
|
||||||
%endif
|
|
||||||
|
|
||||||
BuildRequires: python2-devel
|
|
||||||
BuildRequires: python-setuptools
|
|
||||||
|
|
||||||
# For building docs/tests
|
|
||||||
BuildRequires: git-core
|
|
||||||
%if %with_docs
|
|
||||||
BuildRequires: python-sphinx
|
|
||||||
BuildRequires: asciidoc
|
|
||||||
%endif
|
|
||||||
|
|
||||||
# For tests
|
|
||||||
# We don't run tests on epel6, so don't bother pulling these in there.
|
|
||||||
%if (0%{?fedora} || 0%{?rhel} > 6)
|
|
||||||
BuildRequires: PyYAML
|
|
||||||
BuildRequires: python-crypto
|
|
||||||
BuildRequires: python-paramiko
|
|
||||||
BuildRequires: python-keyczar
|
|
||||||
BuildRequires: python-six
|
|
||||||
BuildRequires: python-nose
|
|
||||||
BuildRequires: python-coverage
|
|
||||||
BuildRequires: python-requests
|
|
||||||
BuildRequires: python-mock
|
|
||||||
BuildRequires: python-boto3
|
|
||||||
BuildRequires: python-botocore
|
|
||||||
BuildRequires: python-passlib
|
|
||||||
# Fedora only docs building
|
|
||||||
BuildRequires: python2-sphinx-theme-alabaster
|
|
||||||
# rhel7 does not have python-pytest but has pytest
|
|
||||||
%if 0%{?rhel} == 7
|
|
||||||
BuildRequires: pytest
|
|
||||||
%else
|
|
||||||
BuildRequires: python-pytest
|
|
||||||
BuildRequires: python-pytest-xdist
|
|
||||||
BuildRequires: python-pytest-mock
|
|
||||||
BuildRequires: python-packaging
|
|
||||||
BuildRequires: python2-pexpect
|
|
||||||
BuildRequires: python2-winrm
|
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if (0%{?rhel} && 0%{?rhel} <= 6)
|
|
||||||
# Ansible will work with the jinja2 shipped with RHEL6 but users can gain
|
|
||||||
# additional jinja features by using the newer version
|
|
||||||
Requires: python-jinja2-26
|
|
||||||
BuildRequires: python-jinja2-26
|
|
||||||
|
|
||||||
# Distros with python < 2.7.0
|
|
||||||
BuildRequires: python-unittest2
|
|
||||||
|
|
||||||
%else
|
|
||||||
Requires: python-jinja2
|
|
||||||
BuildRequires: python-jinja2
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Requires: PyYAML
|
|
||||||
Requires: python-crypto
|
|
||||||
Requires: python-paramiko
|
|
||||||
Requires: python-keyczar
|
|
||||||
Requires: python-httplib2
|
|
||||||
Requires: python-setuptools
|
|
||||||
Requires: python-six
|
|
||||||
Requires: sshpass
|
|
||||||
|
|
||||||
%if (0%{?fedora} || 0%{?rhel} > 6)
|
|
||||||
# needed for json_query filter
|
|
||||||
# but avoid on rhel6 due to amazon linux conflicts
|
|
||||||
Requires: python2-jmespath
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?rhel} == 6
|
|
||||||
# RHEL 6 needs a newer version of the pycrypto library for the ansible-vault
|
|
||||||
# command. Note: If other pieces of ansible also grow to need pycrypto you may
|
|
||||||
# need to add: Requires: python-crypto or patch the other pieces of ansible to
|
|
||||||
# make use of this forward compat package (see the patch for ansible-vault
|
|
||||||
# above to see what needs to be done.)
|
|
||||||
Requires: python-crypto2.6
|
|
||||||
# The python-2.6 stdlib json module has a bug that affects the ansible
|
|
||||||
# to_nice_json filter
|
|
||||||
Requires: python-simplejson
|
|
||||||
|
|
||||||
# For testing
|
|
||||||
BuildRequires: python-crypto2.6
|
|
||||||
BuildRequires: python-simplejson
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
%description
|
|
||||||
Ansible is a radically simple model-driven configuration management,
|
|
||||||
multi-node deployment, and remote task execution system. Ansible works
|
|
||||||
over SSH and does not require any software or daemons to be installed
|
|
||||||
on remote nodes. Extension modules can be written in any language and
|
|
||||||
are transferred to managed machines automatically.
|
|
||||||
|
|
||||||
%endif # python2
|
|
||||||
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
# Note, ansible is not intended to be used as a library so avoiding the
|
|
||||||
# python3-ansible and python2-ansible package names so we don't confuse users.
|
|
||||||
|
|
||||||
# Also note, similarly to dnf in its transition period, the python2 and python3
|
|
||||||
# versions of ansible should behave identically but python3-only bugs may be present.
|
|
||||||
# So upstream would like us to ship both py2 and py3 ansible (at least in
|
|
||||||
# rawhide) for people to beat on and find bugs.
|
|
||||||
|
|
||||||
# However, for future ELs and Fedora 29+, we want Python 3 only
|
|
||||||
%if 0%{?with_python2}
|
|
||||||
%package -n ansible-python3
|
|
||||||
Summary: SSH-based configuration management, deployment, and task execution system
|
|
||||||
%else
|
|
||||||
Provides: ansible-python3 = %{version}-%{release}
|
|
||||||
Obsoletes: ansible-python3 < %{version}-%{release}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
BuildRequires: python3-devel
|
|
||||||
BuildRequires: python3-setuptools
|
|
||||||
|
|
||||||
# For tests
|
|
||||||
BuildRequires: python3-PyYAML
|
|
||||||
BuildRequires: python3-paramiko
|
|
||||||
BuildRequires: python3-crypto
|
|
||||||
BuildRequires: python3-packaging
|
|
||||||
BuildRequires: python3-pexpect
|
|
||||||
BuildRequires: python3-winrm
|
|
||||||
|
|
||||||
# For Docs/tests
|
|
||||||
BuildRequires: git-core
|
|
||||||
%if %with_docs
|
|
||||||
BuildRequires: python3-sphinx
|
|
||||||
BuildRequires: python3-sphinx-theme-alabaster
|
|
||||||
BuildRequires: asciidoc
|
|
||||||
%endif
|
|
||||||
# accelerate is the only thing that makes keyczar mandatory. Since accelerate
|
|
||||||
# is deprecated, just ignore it
|
|
||||||
#BuildRequires: python-keyczar
|
|
||||||
BuildRequires: python3-six
|
|
||||||
BuildRequires: python3-nose
|
|
||||||
BuildRequires: python3-pytest
|
|
||||||
BuildRequires: python3-pytest-xdist
|
|
||||||
BuildRequires: python3-pytest-mock
|
|
||||||
BuildRequires: python3-requests
|
|
||||||
BuildRequires: python3-coverage
|
|
||||||
BuildRequires: python3-mock
|
|
||||||
BuildRequires: python3-boto3
|
|
||||||
BuildRequires: python3-botocore
|
|
||||||
BuildRequires: python3-passlib
|
|
||||||
BuildRequires: python3-jinja2
|
|
||||||
|
|
||||||
Requires: python3-PyYAML
|
|
||||||
Requires: python3-paramiko
|
|
||||||
Requires: python3-crypto
|
|
||||||
# accelerate is the only thing that makes keyczar mandatory. Since accelerate
|
|
||||||
# is deprecated, just ignore it
|
|
||||||
#Requires: python3-keyczar
|
|
||||||
Requires: python3-setuptools
|
|
||||||
Requires: python3-six
|
|
||||||
Requires: python3-jinja2
|
|
||||||
Requires: sshpass
|
|
||||||
# needed for json_query filter
|
|
||||||
Requires: python3-jmespath
|
|
||||||
|
|
||||||
|
|
||||||
%if 0%{?with_python2}
|
|
||||||
%description -n ansible-python3
|
|
||||||
%else
|
|
||||||
%description
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Ansible is a radically simple model-driven configuration management,
|
|
||||||
multi-node deployment, and remote task execution system. Ansible works
|
|
||||||
over SSH and does not require any software or daemons to be installed
|
|
||||||
on remote nodes. Extension modules can be written in any language and
|
|
||||||
are transferred to managed machines automatically.
|
|
||||||
|
|
||||||
This package installs versions of ansible that execute on Python3.
|
|
||||||
%endif # python3
|
|
||||||
|
|
||||||
%package -n ansible-doc
|
|
||||||
Summary: Documentation for Ansible
|
|
||||||
|
|
||||||
%description -n ansible-doc
|
|
||||||
|
|
||||||
Ansible is a radically simple model-driven configuration management,
|
|
||||||
multi-node deployment, and remote task execution system. Ansible works
|
|
||||||
over SSH and does not require any software or daemons to be installed
|
|
||||||
on remote nodes. Extension modules can be written in any language and
|
|
||||||
are transferred to managed machines automatically.
|
|
||||||
|
|
||||||
This package installs extensive documentation for ansible
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%setup -q
|
|
||||||
|
|
||||||
%if 0%{?rhel} == 6
|
|
||||||
%patch100 -p1
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
rm -rf %{py3dir}
|
|
||||||
cp -a . %{py3dir}
|
|
||||||
%endif # with_python3
|
|
||||||
|
|
||||||
%build
|
|
||||||
%if 0%{?with_python2}
|
|
||||||
%{__python2} setup.py build
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
pushd %{py3dir}
|
|
||||||
%py3_build
|
|
||||||
|
|
||||||
%if %with_docs
|
|
||||||
# Fedora 26 does not have pathfix, so build docs with python2
|
|
||||||
%if (0%{?fedora} == 26)
|
|
||||||
make PYTHON=/usr/bin/python2 webdocs
|
|
||||||
%else
|
|
||||||
pathfix.py -i %{__python3} -p docs/bin test/runner
|
|
||||||
make PYTHON=/usr/bin/python3 SPHINXBUILD=sphinx-build-3 webdocs
|
|
||||||
%endif
|
|
||||||
%endif
|
|
||||||
|
|
||||||
popd
|
|
||||||
%endif # with_python3
|
|
||||||
|
|
||||||
%if ! %with_docs && ( 0%{?fedora} || 0%{?rhel} >= 7)
|
|
||||||
# Generate the rst docs from the source if they weren't generated earlier as
|
|
||||||
# part of the html docs build
|
|
||||||
make -Cdocs/docsite config cli keywords modules plugins testing
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%install
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
pushd %{py3dir}
|
|
||||||
%{__python3} setup.py install --root=$RPM_BUILD_ROOT
|
|
||||||
popd
|
|
||||||
|
|
||||||
for i in $RPM_BUILD_ROOT/%{_bindir}/ansible* ; do
|
|
||||||
if [ $(basename $i) = "ansible-connection" -o $(basename $i) = "ansible" ] ; then
|
|
||||||
%if 0%{?with_python2}
|
|
||||||
mv $i $i-%{python3_version}
|
|
||||||
%else
|
|
||||||
# for backwards compatibility
|
|
||||||
ln -s $(basename $i) $i-%{python3_version}
|
|
||||||
%endif
|
|
||||||
ln -s %{_bindir}/$(basename $i)-%{python3_version} $i-3
|
|
||||||
%if 0%{?with_python2}
|
|
||||||
else
|
|
||||||
# The ansible commands are themselves symlinks to /usr/bin/ansible.
|
|
||||||
# Need to change them to point to the python3 version
|
|
||||||
ln -s %{_bindir}/ansible-3 $i-%{python3_version}
|
|
||||||
ln -s %{_bindir}/$(basename $i)-%{python3_version} $i-3
|
|
||||||
%endif
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
%endif # with_python3
|
|
||||||
|
|
||||||
%if 0%{?with_python2}
|
|
||||||
%{__python2} setup.py install --root=$RPM_BUILD_ROOT
|
|
||||||
for i in $RPM_BUILD_ROOT/%{_bindir}/{ansible,ansible-console,ansible-doc,ansible-galaxy,ansible-playbook,ansible-pull,ansible-vault} ; do
|
|
||||||
mv $i $i-%{python2_version}
|
|
||||||
ln -s %{_bindir}/$(basename $i)-%{python2_version} $i
|
|
||||||
ln -s %{_bindir}/$(basename $i)-%{python2_version} $i-2
|
|
||||||
done
|
|
||||||
%endif
|
|
||||||
|
|
||||||
mkdir -p $RPM_BUILD_ROOT/etc/ansible/
|
|
||||||
mkdir -p $RPM_BUILD_ROOT/etc/ansible/roles/
|
|
||||||
cp examples/hosts $RPM_BUILD_ROOT/etc/ansible/
|
|
||||||
cp examples/ansible.cfg $RPM_BUILD_ROOT/etc/ansible/
|
|
||||||
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1
|
|
||||||
cp -v docs/man/man1/*.1 $RPM_BUILD_ROOT/%{_mandir}/man1/
|
|
||||||
|
|
||||||
cp -pr docs/docsite/rst .
|
|
||||||
%if %with_docs
|
|
||||||
pushd %{py3dir}
|
|
||||||
cp -pr docs/docsite/_build/html %{_builddir}/%{name}-%{version}/html
|
|
||||||
popd
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
%check
|
|
||||||
# RHEL <= 6 doesn't have a new enough python-mock to run the tests
|
|
||||||
# Currently RHEL <= 7 doesn't have pytest-xdist or a new enough pytest
|
|
||||||
# Fedora 25 doesn't have a new enough pytest
|
|
||||||
%if 0%{?with_python2} && 0%{?fedora} >= 26
|
|
||||||
ln -s /usr/bin/pytest bin/pytest
|
|
||||||
make PYTHON=/usr/bin/python2 tests
|
|
||||||
%endif # New enough Fedora with python2
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
pushd %{py3dir}
|
|
||||||
ln -s /usr/bin/pytest-3 bin/pytest
|
|
||||||
# Fedora 26 does not have pathfix ¯\_(ツ)_/¯
|
|
||||||
%if (0%{?fedora} > 26)
|
|
||||||
pathfix.py -i %{__python3} -p test/runner
|
|
||||||
%endif
|
|
||||||
make PYTHON=/usr/bin/python3 tests-py3
|
|
||||||
popd
|
|
||||||
%endif # python3
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
%files
|
|
||||||
%if 0%{?with_python2}
|
|
||||||
%{python2_sitelib}/ansible*
|
|
||||||
%endif
|
|
||||||
%{_bindir}/ansible*
|
|
||||||
%if 0%{?with_python3} && 0%{?with_python2}
|
|
||||||
%exclude %{_bindir}/ansible*-3*
|
|
||||||
%endif # python3 and 2
|
|
||||||
%config(noreplace) %{_sysconfdir}/ansible/
|
|
||||||
%doc README.rst PKG-INFO COPYING changelogs/CHANGELOG-v2.7.rst
|
|
||||||
%doc %{_mandir}/man1/ansible*
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
|
||||||
%if 0%{?with_python2}
|
|
||||||
%files -n ansible-python3
|
|
||||||
%config(noreplace) %{_sysconfdir}/ansible/
|
|
||||||
%doc README.rst PKG-INFO COPYING changelogs/CHANGELOG-v2.7.rst
|
|
||||||
%doc %{_mandir}/man1/ansible*
|
|
||||||
%{_bindir}/ansible*-3*
|
|
||||||
%endif # python2
|
|
||||||
%{python3_sitelib}/ansible*
|
|
||||||
%endif # python3
|
|
||||||
|
|
||||||
%files -n ansible-doc
|
|
||||||
%doc rst
|
|
||||||
%if %with_docs
|
|
||||||
%doc html
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Wed Jan 23 2019 Daniel Steiner <daniel.steiner@daniel-steiner.org> - 2.7.6-1
|
|
||||||
- Update to 2.7.6
|
|
||||||
|
|
||||||
* Thu Oct 04 2018 Kevin Fenzi <kevin@scrye.com> - 2.7.0-1
|
|
||||||
- Update to 2.7.0
|
|
||||||
|
|
||||||
* Fri Sep 28 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.5-1
|
|
||||||
- Update to 2.6.5.
|
|
||||||
|
|
||||||
* Fri Sep 07 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.4-1
|
|
||||||
- Update to 2.6.4.
|
|
||||||
|
|
||||||
* Thu Aug 16 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.3-1
|
|
||||||
- Upgrade to 2.6.3.
|
|
||||||
|
|
||||||
* Sat Jul 28 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.2-1
|
|
||||||
- Update to 2.6.2. Fixes bug #1609486
|
|
||||||
|
|
||||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 05 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.1-1
|
|
||||||
- Update to 2.6.1. Fixes bug #1598602
|
|
||||||
- Fixes CVE-2018-10874 and CVE-2018-10875
|
|
||||||
|
|
||||||
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 2.6.0-2
|
|
||||||
- Rebuilt for Python 3.7
|
|
||||||
|
|
||||||
* Thu Jun 28 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.0-1
|
|
||||||
- Update to 2.6.0. Fixes bug #1596424
|
|
||||||
|
|
||||||
* Tue Jun 26 2018 Miro Hrončok <mhroncok@redhat.com> - 2.5.5-5
|
|
||||||
- Rebuilt for Python 3.7
|
|
||||||
|
|
||||||
* Mon Jun 25 2018 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.5.5-4
|
|
||||||
- Upstream patch to build docs with older jinja2 (Fedora 27)
|
|
||||||
- Build changes to build only rst docs for modules and plugins when a distro
|
|
||||||
doesn't have modern enough packages to build the documentation. (EPEL7)
|
|
||||||
|
|
||||||
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.5.5-3
|
|
||||||
- Rebuilt for Python 3.7
|
|
||||||
|
|
||||||
* Fri Jun 15 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.5-2
|
|
||||||
- Stop building docs on F27 as python-jinja2 is too old there.
|
|
||||||
|
|
||||||
* Thu Jun 14 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.5-1
|
|
||||||
- Update to 2.5.5. Fixes bug #1580530 and #1584927
|
|
||||||
- Fixes 1588855,1590200 (fedora) and 1588855,1590199 (epel)
|
|
||||||
CVE-2018-10855 (security bug with no_log handling)
|
|
||||||
|
|
||||||
* Thu May 31 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.4-1
|
|
||||||
- Update to 2.5.4. Fixes bug #1584927
|
|
||||||
|
|
||||||
* Thu May 17 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.3-1
|
|
||||||
- Update to 2.5.3. Fixes bug #1579577 and #1574221
|
|
||||||
|
|
||||||
* Thu Apr 26 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.2-1
|
|
||||||
- Update to 2.5.2 with bugfixes.
|
|
||||||
|
|
||||||
* Wed Apr 18 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.1-1
|
|
||||||
- Update to 2.5.1 with bugfixes. Fixes: #1569270 #1569153 #1566004 #1566001
|
|
||||||
|
|
||||||
* Tue Mar 27 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.0-2
|
|
||||||
- Some additional python3 fixes. Thanks churchyard!
|
|
||||||
|
|
||||||
* Sat Mar 24 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.0-1
|
|
||||||
- Update to 2.5.0. Fixes bug #1559852
|
|
||||||
- Spec changes/improvements with tests, docs, and conditionals.
|
|
||||||
|
|
||||||
* Fri Mar 16 2018 Miro Hrončok <mhroncok@redhat.com> - 2.4.3.0-3
|
|
||||||
- Don't build and ship Python 2 bits on EL > 7 and Fedora > 29
|
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.3.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 31 2018 Kevin Fenzi <kevin@scrye.com> - 2.4.3.0-1
|
|
||||||
- Update to 2.4.3. See https://github.com/ansible/ansible/blob/stable-2.4/CHANGELOG.md for full changes.
|
|
||||||
|
|
||||||
* Mon Jan 08 2018 Troy Dawson <tdawson@redhat.com> - 2.4.2.0-2
|
|
||||||
- Update conditional
|
|
||||||
|
|
||||||
* Wed Nov 29 2017 Kevin Fenzi <kevin@scrye.com> - 2.4.2.0-1
|
|
||||||
- Update to 2.4.2. See https://github.com/ansible/ansible/blob/stable-2.4/CHANGELOG.md for full changes.
|
|
||||||
|
|
||||||
* Mon Oct 30 2017 Kevin Fenzi kevin@scrye.com - 2.4.1.0-2
|
|
||||||
- Add PR to conditionalize docs building. Thanks tibbs!
|
|
||||||
- Fix up el6 patches
|
|
||||||
|
|
||||||
* Thu Oct 26 2017 Kevin Fenzi <kevin@scrye.com> - 2.4.1.0-1
|
|
||||||
- Update to 2.4.1
|
|
||||||
|
|
||||||
* Thu Oct 12 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.4.0.0-3
|
|
||||||
- Fix Python3 subpackage to symlink to the python3 versions of the scripts
|
|
||||||
instead of the python2 version
|
|
||||||
|
|
||||||
* Mon Sep 25 2017 Kevin Fenzi <kevin@scrye.com> - 2.4.0.0-2
|
|
||||||
- Rebase rhel6 jinja2 patch.
|
|
||||||
- Conditionalize jmespath to work around amazon linux issues. Fixes bug #1494640
|
|
||||||
|
|
||||||
* Tue Sep 19 2017 Kevin Fenzi <kevin@scrye.com> - 2.4.0.0-1
|
|
||||||
- Update to 2.4.0.
|
|
||||||
|
|
||||||
* Tue Aug 08 2017 Kevin Fenzi <kevin@scrye.com> - 2.3.2.0-1
|
|
||||||
- Update to 2.3.2. Fixes bugs #1471017 #1461116 #1465586
|
|
||||||
|
|
||||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.1.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jun 01 2017 Kevin Fenzi <kevin@scrye.com> - 2.3.1.0-1
|
|
||||||
- Update to 2.3.1.0.
|
|
||||||
|
|
||||||
* Wed Apr 19 2017 James Hogarth <james.hogarth@gmail.com> - 2.3.0.0-3
|
|
||||||
- Update backported patch to the one actually merged upstream
|
|
||||||
|
|
||||||
* Wed Apr 19 2017 James Hogarth <james.hogarth@gmail.com> - 2.3.0.0-2
|
|
||||||
- Backport hotfix to fix ansible-galaxy regression https://github.com/ansible/ansible/issues/22572
|
|
||||||
|
|
||||||
* Wed Apr 12 2017 Toshio Kuratomi <toshio@fedoraproject.org> - 2.3.0.0-1
|
|
||||||
- Update to 2.3.0
|
|
||||||
- Remove upstreamed patches
|
|
||||||
- Remove controlpersist socket path path as a custom solution was included
|
|
||||||
upstream
|
|
||||||
- Run the unittests from the upstream tarball now instead of having to download
|
|
||||||
separately
|
|
||||||
- Build a documentation subpackage
|
|
||||||
|
|
||||||
* Tue Mar 28 2017 Kevin Fenzi <kevin@scrye.com> - 2.2.2.0-3
|
|
||||||
- Deal with RHEL7 pytest vs python-pytest.
|
|
||||||
- Rebase epel6 newer jinja patch.
|
|
||||||
- Conditionalize exclude for RHEL6 rpm.
|
|
||||||
|
|
||||||
* Tue Mar 28 2017 Kevin Fenzi <kevin@scrye.com> - 2.2.2.0-2
|
|
||||||
- Conditionalize python3 files for epel builds.
|
|
||||||
|
|
||||||
* Tue Mar 28 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.2.0-1
|
|
||||||
- 2.2.2.0 final
|
|
||||||
- Add new patch to fix unittests
|
|
||||||
|
|
||||||
* Mon Mar 27 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.2.0-0.4.rc1
|
|
||||||
- Add python-crypto and python3-crypto as explicit requirements
|
|
||||||
|
|
||||||
* Mon Mar 27 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.2.0-0.3.rc1
|
|
||||||
- Add a symlink for ansible executables to be accessed via python major version
|
|
||||||
(ie: ansible-3) in addition to python-major-minor (ansible-3.6)
|
|
||||||
|
|
||||||
* Wed Mar 8 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.2.0-0.2.rc1
|
|
||||||
- Add a python3 ansible package. Note that upstream doesn't intend for the library
|
|
||||||
to be used by third parties so this is really just for the executables. It's not
|
|
||||||
strictly required that the executables be built for both python2 and python3 but
|
|
||||||
we do need to get testing of the python3 version to know if it's stable enough to
|
|
||||||
go into the next Fedora. We also want the python2 version available in case a user
|
|
||||||
has to get something done and the python3 version is too buggy.
|
|
||||||
- Fix Ansible cli scripts to handle appended python version
|
|
||||||
|
|
||||||
* Wed Feb 22 2017 Kevin Fenzi <kevin@scrye.com> - 2.2.2.0-0.1.rc1
|
|
||||||
- Update to 2.2.2.0 rc1. Fixes bug #1421485
|
|
||||||
|
|
||||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 16 2017 Kevin Fenzi <kevin@scrye.com> - 2.2.1.0-1
|
|
||||||
- Update to 2.2.1.
|
|
||||||
- Fixes: CVE-2016-9587 CVE-2016-8647 CVE-2016-9587 CVE-2016-8647
|
|
||||||
- Fixes bug #1405110
|
|
||||||
|
|
||||||
* Wed Nov 09 2016 Kevin Fenzi <kevin@scrye.com> - 2.2.0.0-3
|
|
||||||
- Update unit tests that will skip docker related tests if docker isn't available.
|
|
||||||
- Drop docker BuildRequires. Fixes bug #1392918
|
|
||||||
|
|
||||||
* Fri Nov 4 2016 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.0.0-3
|
|
||||||
- Fix for dnf group install
|
|
||||||
|
|
||||||
* Tue Nov 01 2016 Kevin Fenzi <kevin@scrye.com> - 2.2.0.0-2
|
|
||||||
- Fix some BuildRequires to work on all branches.
|
|
||||||
|
|
||||||
* Tue Nov 01 2016 Kevin Fenzi <kevin@scrye.com> - 2.2.0.0-1
|
|
||||||
- Update to 2.2.0. Fixes #1390564 #1388531 #1387621 #1381538 #1388113 #1390646 #1388038 #1390650
|
|
||||||
- Fixes for CVE-2016-8628 CVE-2016-8614 CVE-2016-8628 CVE-2016-8614
|
|
||||||
|
|
||||||
* Thu Sep 29 2016 Kevin Fenzi <kevin@scrye.com> - 2.1.2.0-1
|
|
||||||
- Update to 2.1.2
|
|
||||||
|
|
||||||
* Thu Jul 28 2016 Kevin Fenzi <kevin@scrye.com> - 2.1.1.0-1
|
|
||||||
- Update to 2.1.1
|
|
||||||
|
|
||||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0.0-3
|
|
||||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
||||||
|
|
||||||
* Wed Jun 15 2016 Matt Domsch <matt@domsch.com> - 2.1.0.0-2
|
|
||||||
- Force python 2.6 on EL6
|
|
||||||
|
|
||||||
* Wed May 25 2016 Kevin Fenzi <kevin@scrye.com> - 2.1.0.0-1
|
|
||||||
- Update to 2.1.0.0.
|
|
||||||
- Fixes: 1334097 1337474 1332233 1336266
|
|
||||||
|
|
||||||
* Tue Apr 19 2016 Kevin Fenzi <kevin@scrye.com> - 2.0.2.0-1
|
|
||||||
- Update to 2.0.2.0. https://github.com/ansible/ansible/blob/stable-2.0/CHANGELOG.md
|
|
||||||
- Fixes CVE-2016-3096
|
|
||||||
- Fix for failed to resolve remote temporary directory issue. bug #1328359
|
|
||||||
|
|
||||||
* Thu Feb 25 2016 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0.1.0-2
|
|
||||||
- Patch control_path to be not hit path length limitations (RH BZ #1311729)
|
|
||||||
- Version the test tarball
|
|
||||||
|
|
||||||
* Thu Feb 25 2016 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0.1.0-1
|
|
||||||
- Update to upstream bugfix for 2.0.x release series.
|
|
||||||
|
|
||||||
* Thu Feb 4 2016 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.0.0.2-3
|
|
||||||
- Utilize the python-jinja26 package on EPEL6
|
|
||||||
|
|
||||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.0.2-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 14 2016 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.0.0.2-1
|
|
||||||
- Ansible 2.0.0.2 release from upstream. (Minor bugfix to one callback plugin
|
|
||||||
API).
|
|
||||||
|
|
||||||
* Tue Jan 12 2016 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0.0.1-1
|
|
||||||
- Ansible 2.0.0.1 from upstream. Rewrite with many bugfixes, rewritten code,
|
|
||||||
and new features. See the upstream changelog for details:
|
|
||||||
https://github.com/ansible/ansible/blob/devel/CHANGELOG.md
|
|
||||||
|
|
||||||
* Wed Oct 14 2015 Adam Williamson <awilliam@redhat.com> - 1.9.4-2
|
|
||||||
- backport upstream fix for GH #2043 (crash when pulling Docker images)
|
|
||||||
|
|
||||||
* Fri Oct 09 2015 Kevin Fenzi <kevin@scrye.com> 1.9.4-1
|
|
||||||
- Update to 1.9.4
|
|
||||||
|
|
||||||
* Sun Oct 04 2015 Kevin Fenzi <kevin@scrye.com> 1.9.3-3
|
|
||||||
- Backport dnf module from head. Fixes bug #1267018
|
|
||||||
|
|
||||||
* Tue Sep 8 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 1.9.3-2
|
|
||||||
- Pull in patch for yum module that fixes state=latest issue
|
|
||||||
|
|
||||||
* Thu Sep 03 2015 Kevin Fenzi <kevin@scrye.com> 1.9.3-1
|
|
||||||
- Update to 1.9.3
|
|
||||||
- Patch dnf as package manager. Fixes bug #1258080
|
|
||||||
- Fixes bug #1251392 (in 1.9.3 release)
|
|
||||||
- Add requires for sshpass package. Fixes bug #1258799
|
|
||||||
|
|
||||||
* Thu Jun 25 2015 Kevin Fenzi <kevin@scrye.com> 1.9.2-1
|
|
||||||
- Update to 1.9.2
|
|
||||||
|
|
||||||
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.1-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed May 27 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 1.9.1-2
|
|
||||||
- Fix for dnf
|
|
||||||
|
|
||||||
* Tue Apr 28 2015 Kevin Fenzi <kevin@scrye.com> 1.9.1-1
|
|
||||||
- Update to 1.9.1
|
|
||||||
|
|
||||||
* Wed Mar 25 2015 Kevin Fenzi <kevin@scrye.com> 1.9.0.1-2
|
|
||||||
- Drop upstreamed epel6 patches.
|
|
||||||
|
|
||||||
* Wed Mar 25 2015 Kevin Fenzi <kevin@scrye.com> 1.9.0.1-1
|
|
||||||
- Update to 1.9.0.1
|
|
||||||
|
|
||||||
* Wed Mar 25 2015 Kevin Fenzi <kevin@scrye.com> 1.9.0-1
|
|
||||||
- Update to 1.9.0
|
|
||||||
|
|
||||||
* Thu Feb 19 2015 Kevin Fenzi <kevin@scrye.com> 1.8.4-1
|
|
||||||
- Update to 1.8.4
|
|
||||||
|
|
||||||
* Tue Feb 17 2015 Kevin Fenzi <kevin@scrye.com> 1.8.3-1
|
|
||||||
- Update to 1.8.3
|
|
||||||
|
|
||||||
* Sun Jan 11 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 1.8.2-3
|
|
||||||
- Work around a bug in python2.6 by using simplejson (applies in EPEL6)
|
|
||||||
|
|
||||||
* Wed Dec 17 2014 Michael Scherer <misc@zarb.org> 1.8.2-2
|
|
||||||
- precreate /etc/ansible/roles and /usr/share/ansible_plugins
|
|
||||||
|
|
||||||
* Sun Dec 07 2014 Kevin Fenzi <kevin@scrye.com> 1.8.2-1
|
|
||||||
- Update to 1.8.2
|
|
||||||
|
|
||||||
* Thu Nov 27 2014 Kevin Fenzi <kevin@scrye.com> 1.8.1-1
|
|
||||||
- Update to 1.8.1
|
|
||||||
|
|
||||||
* Tue Nov 25 2014 Kevin Fenzi <kevin@scrye.com> 1.8-2
|
|
||||||
- Rebase el6 patch
|
|
||||||
|
|
||||||
* Tue Nov 25 2014 Kevin Fenzi <kevin@scrye.com> 1.8-1
|
|
||||||
- Update to 1.8
|
|
||||||
|
|
||||||
* Thu Oct 9 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.7.2-2
|
|
||||||
- Add /usr/bin/ansible to the rhel6 newer pycrypto patch
|
|
||||||
|
|
||||||
* Wed Sep 24 2014 Kevin Fenzi <kevin@scrye.com> 1.7.2-1
|
|
||||||
- Update to 1.7.2
|
|
||||||
|
|
||||||
* Thu Aug 14 2014 Kevin Fenzi <kevin@scrye.com> 1.7.1-1
|
|
||||||
- Update to 1.7.1
|
|
||||||
|
|
||||||
* Wed Aug 06 2014 Kevin Fenzi <kevin@scrye.com> 1.7-1
|
|
||||||
- Update to 1.7
|
|
||||||
|
|
||||||
* Fri Jul 25 2014 Kevin Fenzi <kevin@scrye.com> 1.6.10-1
|
|
||||||
- Update to 1.6.10
|
|
||||||
|
|
||||||
* Thu Jul 24 2014 Kevin Fenzi <kevin@scrye.com> 1.6.9-1
|
|
||||||
- Update to 1.6.9 with more shell quoting fixes.
|
|
||||||
|
|
||||||
* Tue Jul 22 2014 Kevin Fenzi <kevin@scrye.com> 1.6.8-1
|
|
||||||
- Update to 1.6.8 with fixes for shell quoting from previous release.
|
|
||||||
- Fixes bugs #1122060 #1122061 #1122062
|
|
||||||
|
|
||||||
* Mon Jul 21 2014 Kevin Fenzi <kevin@scrye.com> 1.6.7-1
|
|
||||||
- Update to 1.6.7
|
|
||||||
- Fixes CVE-2014-4966 and CVE-2014-4967
|
|
||||||
|
|
||||||
* Tue Jul 01 2014 Kevin Fenzi <kevin@scrye.com> 1.6.6-1
|
|
||||||
- Update to 1.6.6
|
|
||||||
|
|
||||||
* Wed Jun 25 2014 Kevin Fenzi <kevin@scrye.com> 1.6.5-1
|
|
||||||
- Update to 1.6.5
|
|
||||||
|
|
||||||
* Wed Jun 25 2014 Kevin Fenzi <kevin@scrye.com> 1.6.4-1
|
|
||||||
- Update to 1.6.4
|
|
||||||
|
|
||||||
* Mon Jun 09 2014 Kevin Fenzi <kevin@scrye.com> 1.6.3-1
|
|
||||||
- Update to 1.6.3
|
|
||||||
|
|
||||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri May 23 2014 Kevin Fenzi <kevin@scrye.com> 1.6.2-1
|
|
||||||
- Update to 1.6.2 release
|
|
||||||
|
|
||||||
* Wed May 7 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.6.1-1
|
|
||||||
- Bugfix 1.6.1 release
|
|
||||||
|
|
||||||
* Mon May 5 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.6-1
|
|
||||||
- Update to 1.6
|
|
||||||
- Drop accelerate fix, merged upstream
|
|
||||||
- Refresh RHEL6 pycrypto patch. It was half-merged upstream.
|
|
||||||
|
|
||||||
* Fri Apr 18 2014 Kevin Fenzi <kevin@scrye.com> 1.5.5-1
|
|
||||||
- Update to 1.5.5
|
|
||||||
|
|
||||||
* Mon Apr 7 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.5.4-2
|
|
||||||
- Fix setuptools requirement to apply to rhel=6, not rhel<6
|
|
||||||
|
|
||||||
* Wed Apr 2 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.5.4-1
|
|
||||||
- Update to 1.5.4
|
|
||||||
- Add upstream patch to fix accelerator mode
|
|
||||||
- Merge fedora and el6 spec files
|
|
||||||
|
|
||||||
* Fri Mar 14 2014 Kevin Fenzi <kevin@scrye.com> 1.5.3-2
|
|
||||||
- Update to NEW 1.5.3 upstream release.
|
|
||||||
- Add missing dependency on python-setuptools (el6 build)
|
|
||||||
|
|
||||||
* Thu Mar 13 2014 Kevin Fenzi <kevin@scrye.com> 1.5.3-1
|
|
||||||
- Update to 1.5.3
|
|
||||||
- Fix ansible-vault for newer python-crypto dependency (el6 build)
|
|
||||||
|
|
||||||
* Tue Mar 11 2014 Kevin Fenzi <kevin@scrye.com> 1.5.2-2
|
|
||||||
- Update to redone 1.5.2 release
|
|
||||||
|
|
||||||
* Tue Mar 11 2014 Kevin Fenzi <kevin@scrye.com> 1.5.2-1
|
|
||||||
- Update to 1.5.2
|
|
||||||
|
|
||||||
* Mon Mar 10 2014 Kevin Fenzi <kevin@scrye.com> 1.5.1-1
|
|
||||||
- Update to 1.5.1
|
|
||||||
|
|
||||||
* Fri Feb 28 2014 Kevin Fenzi <kevin@scrye.com> 1.5-1
|
|
||||||
- Update to 1.5
|
|
||||||
|
|
||||||
* Wed Feb 12 2014 Kevin Fenzi <kevin@scrye.com> 1.4.5-1
|
|
||||||
- Update to 1.4.5
|
|
||||||
|
|
||||||
* Sat Dec 28 2013 Kevin Fenzi <kevin@scrye.com> 1.4.3-1
|
|
||||||
- Update to 1.4.3 with ansible galaxy commands.
|
|
||||||
- Adds python-httplib2 to requires
|
|
||||||
|
|
||||||
* Wed Nov 27 2013 Kevin Fenzi <kevin@scrye.com> 1.4.1-1
|
|
||||||
- Update to upstream 1.4.1 bugfix release
|
|
||||||
|
|
||||||
* Thu Nov 21 2013 Kevin Fenzi <kevin@scrye.com> 1.4-1
|
|
||||||
- Update to 1.4
|
|
||||||
|
|
||||||
* Tue Oct 29 2013 Kevin Fenzi <kevin@scrye.com> 1.3.4-1
|
|
||||||
- Update to 1.3.4
|
|
||||||
|
|
||||||
* Tue Oct 08 2013 Kevin Fenzi <kevin@scrye.com> 1.3.3-1
|
|
||||||
- Update to 1.3.3
|
|
||||||
|
|
||||||
* Thu Sep 19 2013 Kevin Fenzi <kevin@scrye.com> 1.3.2-1
|
|
||||||
- Update to 1.3.2 with minor upstream fixes
|
|
||||||
|
|
||||||
* Mon Sep 16 2013 Kevin Fenzi <kevin@scrye.com> 1.3.1-1
|
|
||||||
- Update to 1.3.1
|
|
||||||
|
|
||||||
* Sat Sep 14 2013 Kevin Fenzi <kevin@scrye.com> 1.3.0-2
|
|
||||||
- Merge upstream spec changes to support EPEL5
|
|
||||||
- (Still needs python26-keyczar and deps added to EPEL)
|
|
||||||
|
|
||||||
* Thu Sep 12 2013 Kevin Fenzi <kevin@scrye.com> 1.3.0-1
|
|
||||||
- Update to 1.3.0
|
|
||||||
- Drop node-fireball subpackage entirely.
|
|
||||||
- Obsolete/provide fireball subpackage.
|
|
||||||
- Add Requires python-keyczar on main package for accelerated mode.
|
|
||||||
|
|
||||||
* Wed Aug 21 2013 Kevin Fenzi <kevin@scrye.com> 1.2.3-2
|
|
||||||
- Update to 1.2.3
|
|
||||||
- Fixes CVE-2013-4260 and CVE-2013-4259
|
|
||||||
|
|
||||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.2-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 06 2013 Kevin Fenzi <kevin@scrye.com> 1.2.2-1
|
|
||||||
- Update to 1.2.2 with minor fixes
|
|
||||||
|
|
||||||
* Fri Jul 05 2013 Kevin Fenzi <kevin@scrye.com> 1.2.1-2
|
|
||||||
- Update to newer upstream re-release to fix a syntax error
|
|
||||||
|
|
||||||
* Thu Jul 04 2013 Kevin Fenzi <kevin@scrye.com> 1.2.1-1
|
|
||||||
- Update to 1.2.1
|
|
||||||
- Fixes CVE-2013-2233
|
|
||||||
|
|
||||||
* Mon Jun 10 2013 Kevin Fenzi <kevin@scrye.com> 1.2-1
|
|
||||||
- Update to 1.2
|
|
||||||
|
|
||||||
* Tue Apr 02 2013 Kevin Fenzi <kevin@scrye.com> 1.1-1
|
|
||||||
- Update to 1.1
|
|
||||||
|
|
||||||
* Mon Mar 18 2013 Kevin Fenzi <kevin@scrye.com> 1.0-1
|
|
||||||
- Update to 1.0
|
|
||||||
|
|
||||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Nov 30 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.9-0
|
|
||||||
- Release 0.9
|
|
||||||
|
|
||||||
* Fri Oct 19 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.8-0
|
|
||||||
- Release of 0.8
|
|
||||||
|
|
||||||
* Thu Aug 9 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.7-0
|
|
||||||
- Release of 0.7
|
|
||||||
|
|
||||||
* Mon Aug 6 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.6-0
|
|
||||||
- Release of 0.6
|
|
||||||
|
|
||||||
* Wed Jul 4 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.5-0
|
|
||||||
- Release of 0.5
|
|
||||||
|
|
||||||
* Wed May 23 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.4-0
|
|
||||||
- Release of 0.4
|
|
||||||
|
|
||||||
* Mon Apr 23 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.3-1
|
|
||||||
- Release of 0.3
|
|
||||||
|
|
||||||
* Tue Apr 3 2012 John Eckersberg <jeckersb@redhat.com> - 0.0.2-1
|
|
||||||
- Release of 0.0.2
|
|
||||||
|
|
||||||
* Sat Mar 10 2012 <tbielawa@redhat.com> - 0.0.1-1
|
|
||||||
- Release of 0.0.1
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
%global ver_major 3
|
|
||||||
%global ver_minor 0
|
|
||||||
%global ver_patch 9
|
|
||||||
%global ver_tweak 6
|
|
||||||
%global ver_under %{ver_major}_%{ver_minor}_%{ver_patch}_%{ver_tweak}
|
|
||||||
|
|
||||||
|
|
||||||
Name: rsync-bpc
|
|
||||||
Version: 3.0.9.8
|
|
||||||
Release: 1%{?dist}
|
|
||||||
Summary: A customized version of rsync that is used as part of BackupPC
|
|
||||||
|
|
||||||
License: GPLv3+
|
|
||||||
URL: https://github.com/backuppc/rsync-bpc
|
|
||||||
Source0: https://github.com/backuppc/rsync-bpc/releases/download/%{version}/%{name}-%{version}.tar.gz
|
|
||||||
|
|
||||||
BuildRequires: autoconf
|
|
||||||
BuildRequires: gcc
|
|
||||||
BuildRequires: libacl-devel
|
|
||||||
BuildRequires: libattr-devel
|
|
||||||
BuildRequires: popt-devel
|
|
||||||
|
|
||||||
|
|
||||||
%description
|
|
||||||
Rsync-bpc is a customized version of rsync that is used as part of
|
|
||||||
BackupPC, an open source backup system.
|
|
||||||
|
|
||||||
The main change to rsync is adding a shim layer (in the subdirectory
|
|
||||||
backuppc, and in bpc_sysCalls.c) that emulates the system calls for
|
|
||||||
accessing the file system so that rsync can directly read/write files
|
|
||||||
in BackupPC's format.
|
|
||||||
|
|
||||||
Rsync-bpc is fully line-compatible with vanilla rsync, so it can talk
|
|
||||||
to rsync servers and clients.
|
|
||||||
|
|
||||||
Rsync-bpc serves no purpose outside of BackupPC.
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup -n %{name}-%{version}
|
|
||||||
|
|
||||||
|
|
||||||
%build
|
|
||||||
%configure
|
|
||||||
%make_build
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
|
||||||
%make_install
|
|
||||||
|
|
||||||
|
|
||||||
%clean
|
|
||||||
[ "%{buildroot}" != "/" ] && [ -d "%{buildroot}" ] && rm -rf %{buildroot}
|
|
||||||
|
|
||||||
|
|
||||||
%files
|
|
||||||
%license COPYING
|
|
||||||
%doc NEWS README
|
|
||||||
%{_bindir}/rsync_bpc
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Sat Oct 7 2017 Daniel Steiner <daniel.steiner@greenmail.ch> - 4.1.3-2
|
|
||||||
- Iniital build.
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user