878747
%define _libexecdir %{_libdir}
878747
%define defconfig DailySet1
878747
%define indexserver amandahost
878747
%define tapeserver %{indexserver}
878747
%define amanda_user amandabackup
878747
%define amanda_group disk
878747
878747
%global _hardened_build 1
878747
878747
Summary:       A network-capable tape backup solution
878747
Name:          amanda
878747
Version:       3.5.1
878747
Release:       13%{?dist}
878747
Source:        http://downloads.sourceforge.net/amanda/amanda-%{version}.tar.gz
878747
Source1:       amanda.crontab
878747
Source4:       disklist
878747
Source8:       amandahosts
878747
Source9:       amanda.socket
878747
Source10:      amanda@.service
878747
Source11:      activate-devpay.1.gz
878747
Source12:      killpgrp.8
878747
Source13:      amanda-udp.socket
878747
Source14:      amanda-udp.service
878747
Source15:      kamanda.socket
878747
Source16:      kamanda@.service
878747
Patch1:        amanda-3.1.1-xattrs.patch
878747
Patch2:        amanda-3.1.1-tcpport.patch
878747
Patch3:        amanda-3.2.0-config-dir.patch
878747
# Don't mention xinetd files in amserverconfig (#1460763)
878747
Patch4:        amanda-3.4.5-no-xinetd.patch
878747
# Support tirpc
878747
Patch5:        patch-tirpc
878747
878747
License:       BSD and GPLv3+ and GPLv2+ and GPLv2
878747
URL:           http://www.amanda.org
878747
BuildRequires: automake autoconf libtool
878747
BuildRequires: dump xfsdump
878747
BuildRequires: gnuplot cups samba-client tar grep
878747
BuildRequires: gcc-c++ readline-devel libtirpc-devel
878747
BuildRequires: krb5-devel openssh-clients ncompress mtx mt-st
878747
BuildRequires: perl-devel perl-generators perl(ExtUtils::Embed) perl(Test::Simple)
878747
BuildRequires: glib2-devel openssl-devel swig bison flex
878747
BuildRequires: libcurl-devel procps-ng systemd
878747
Requires:      grep tar /bin/mail
878747
Requires:      perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
878747
Requires:      amanda-libs%{?_isa} = %{version}-%{release}
878747
Requires(post): /sbin/ldconfig
878747
Requires(postun): /sbin/ldconfig
878747
%{?systemd_requires}
878747
878747
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\(Math::BigInt\\)
878747
878747
# Filter bogus libArchive.so() etc. Provides, this is intentional rpm-build
878747
# feature, bug #1309664
878747
%global __provides_exclude_from %{?__provides_exclude_from:%{__provides_exclude_from}|}^%{perl_vendorarch}/auto/.*\\.so$
878747
878747
#exclude Dancer2 module
878747
%global __requires_exclude ^perl\\(Dancer2\\)
878747
878747
%description
878747
AMANDA, the Advanced Maryland Automatic Network Disk Archiver, is a
878747
backup system that allows the administrator of a LAN to set up a
878747
single master backup server to back up multiple hosts to one or more
878747
tape drives or disk files.  AMANDA uses native dump and/or GNU tar
878747
facilities and can back up a large number of workstations running
878747
multiple versions of Unix.  Newer versions of AMANDA (including this
878747
version) can use SAMBA to back up Microsoft(TM) Windows95/NT hosts.
878747
The amanda package contains the core AMANDA programs and will need to
878747
be installed on both AMANDA clients and AMANDA servers.  Note that you
878747
will have to install the amanda-client and/or amanda-server packages as
878747
well.
878747
878747
%package libs
878747
Summary:       Amanda libraries
878747
Requires:      grep
878747
878747
%description libs
878747
This package contains basic Amanda libraries, which are used by all
878747
Amanda programs.
878747
878747
%package client
878747
Summary:       The client component of the AMANDA tape backup system
878747
Requires:      grep
878747
Requires(pre): amanda = %{version}-%{release}
878747
Requires:      amanda-libs%{?_isa} = %{version}-%{release}
878747
878747
%description client
878747
The Amanda-client package should be installed on any machine that will
878747
be backed up by AMANDA (including the server if it also needs to be
878747
backed up).  You will also need to install the amanda package on each
878747
AMANDA client machine.
878747
878747
%package server
878747
Summary:       The server side of the AMANDA tape backup system
878747
Requires:      grep
878747
Requires:      perl(Amanda::DB) perl(Amanda::Recovery) perl(Amanda::Service)
878747
Requires(pre): amanda = %{version}-%{release}
878747
Requires:      amanda-libs%{?_isa} = %{version}-%{release}
878747
878747
%description server
878747
The amanda-server package should be installed on the AMANDA server,
878747
the machine attached to the device(s) (such as a tape drive) where backups
878747
will be written. You will also need to install the amanda package on
878747
the AMANDA server machine.  And, if the server is also to be backed up, the
878747
server also needs to have the amanda-client package installed.
878747
878747
%prep
878747
%autosetup -p1 -n %{name}-%{version}
878747
878747
%build
878747
./autogen
878747
878747
export MAILER=/bin/mail CFLAGS="$RPM_OPT_FLAGS -fPIE" LDFLAGS="$RPM_LD_FLAGS -pie"
878747
%configure --enable-shared \
878747
           --disable-rpath \
878747
           --disable-static \
878747
           --disable-dependency-tracking \
878747
           --disable-installperms \
878747
           --with-amdatadir=%{_localstatedir}/lib/amanda \
878747
           --with-amlibdir=%{_libdir} \
878747
           --with-amperldir=%{perl_vendorarch} \
878747
           --with-index-server=%{indexserver} \
878747
           --with-tape-server=%{tapeserver} \
878747
           --with-config=%{defconfig} \
878747
           --with-gnutar-listdir=%{_localstatedir}/lib/amanda/gnutar-lists \
878747
           --with-smbclient=%{_bindir}/smbclient \
878747
           --with-amandates=%{_localstatedir}/lib/amanda/amandates \
878747
           --with-amandahosts \
878747
           --with-user=%amanda_user \
878747
           --with-group=%amanda_group \
878747
           --with-tmpdir=/var/log/amanda \
878747
           --with-gnutar=/bin/tar \
878747
           --with-ssh-security \
878747
           --with-bsdtcp-security \
878747
           --with-bsdudp-security \
878747
           --with-krb5-security
878747
878747
pushd perl
878747
make maintainer-clean-am
878747
popd
878747
878747
make %{?_smp_mflags}
878747
878747
878747
%install
878747
make install BINARY_OWNER=%(id -un) SETUID_GROUP=%(id -gn) DESTDIR=$RPM_BUILD_ROOT
878747
878747
mkdir -p $RPM_BUILD_ROOT/etc/amanda
878747
mkdir -p $RPM_BUILD_ROOT/var/log/amanda/amandad
878747
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/amanda
878747
install -m 600 %SOURCE8 $RPM_BUILD_ROOT%{_localstatedir}/lib/amanda/.amandahosts
878747
install -p -m 644 -D %{SOURCE9} %{buildroot}%{_unitdir}/amanda.socket
878747
install -p -m 644 -D %{SOURCE10} %{buildroot}%{_unitdir}/amanda@.service
878747
install -p -m 644 -D %{SOURCE13} %{buildroot}%{_unitdir}/amanda-udp.socket
878747
install -p -m 644 -D %{SOURCE14} %{buildroot}%{_unitdir}/amanda-udp.service
878747
install -p -m 644 -D %{SOURCE15} %{buildroot}%{_unitdir}/kamanda.socket
878747
install -p -m 644 -D %{SOURCE16} %{buildroot}%{_unitdir}/kamanda@.service
878747
install -D %{SOURCE11}  %{buildroot}/%{_mandir}/man1/activate-devpay.1.gz
878747
install -D %{SOURCE12}  %{buildroot}/%{_mandir}/man8/killpgrp.8
878747
install -m 644 %{buildroot}/etc/amanda/amanda-security.conf %{buildroot}/etc/amanda-security.conf
878747
ln -s %{_libexecdir}/amanda/amandad $RPM_BUILD_ROOT%{_sbindir}/amandad
878747
ln -s amrecover.8.gz $RPM_BUILD_ROOT%{_mandir}/man8/amoldrecover.8
878747
878747
pushd ${RPM_BUILD_ROOT}
878747
  mv .%{_localstatedir}/lib/amanda/example .%{_sysconfdir}/amanda/%defconfig
878747
  cp ${RPM_SOURCE_DIR}/amanda.crontab .%{_sysconfdir}/amanda/crontab.sample
878747
  cp ${RPM_SOURCE_DIR}/disklist .%{_sysconfdir}/amanda/%defconfig
878747
  cp ${RPM_SOURCE_DIR}/disklist .%{_sysconfdir}/amanda/%defconfig
878747
  rm -f .%{_sysconfdir}/amanda/%defconfig/xinetd*
878747
  rm -f .%{_sysconfdir}/amanda/%defconfig/inetd*
878747
878747
  mkdir -p .%{_localstatedir}/lib/amanda/gnutar-lists
878747
  mkdir -p .%{_localstatedir}/lib/amanda/%defconfig/index
878747
  touch .%{_localstatedir}/lib/amanda/amandates
878747
popd
878747
rm -rf $RPM_BUILD_ROOT/usr/share/amanda
878747
find $RPM_BUILD_ROOT -name \*.la | xargs rm
878747
878747
%check
878747
make check
878747
878747
%pre
878747
/usr/sbin/useradd -M -N -g %amanda_group -o -r -d %{_localstatedir}/lib/amanda -s /bin/bash \
878747
        -c "Amanda user" -u 33 %amanda_user >/dev/null 2>&1 || :
878747
/usr/bin/gpasswd -a %amanda_user tape >/dev/null 2>&1 || :
878747
878747
%post
878747
%{?ldconfig}
878747
%systemd_post amanda.socket
878747
%systemd_post amanda-udp.socket
878747
%systemd_post kamanda.socket
878747
878747
%preun
878747
%systemd_preun amanda.socket
878747
%systemd_preun amanda-udp.socket
878747
%systemd_preun kamanda.socket
878747
878747
%postun
878747
%{?ldconfig}
878747
%systemd_postun_with_restart amanda.socket
878747
%systemd_postun_with_restart amanda-udp.socket
878747
%systemd_postun_with_restart kamanda.socket
878747
878747
%ldconfig_scriptlets client
878747
%ldconfig_scriptlets server
878747
878747
%files
878747
%license COPYRIGHT
878747
%doc NEWS README
878747
%{_unitdir}/amanda@.service
878747
%{_unitdir}/amanda.socket
878747
%{_unitdir}/amanda-udp.service
878747
%{_unitdir}/amanda-udp.socket
878747
%{_unitdir}/kamanda@.service
878747
%{_unitdir}/kamanda.socket
878747
878747
%dir %{_libexecdir}/amanda
878747
%{_libexecdir}/amanda/amandad
878747
%{_libexecdir}/amanda/amanda-sh-lib.sh
878747
%{_libexecdir}/amanda/amcat.awk
878747
%{_libexecdir}/amanda/amndmjob
878747
%{_libexecdir}/amanda/amplot.awk
878747
%{_libexecdir}/amanda/amplot.g
878747
%{_libexecdir}/amanda/amplot.gp
878747
%{_libexecdir}/amanda/ndmjob
878747
878747
%{_sbindir}/amandad
878747
%{_sbindir}/amaespipe
878747
%{_sbindir}/amarchiver
878747
%{_sbindir}/amcrypt
878747
%{_sbindir}/amcrypt-ossl
878747
%{_sbindir}/amcrypt-ossl-asym
878747
%{_sbindir}/amcryptsimple
878747
%{_sbindir}/amgetconf
878747
%{_sbindir}/amgpgcrypt
878747
%{_sbindir}/amplot
878747
%{_sbindir}/amssl
878747
878747
%{perl_vendorarch}/Amanda/
878747
%{perl_vendorarch}/auto/Amanda/
878747
878747
%{_mandir}/man5/amanda-archive-format.5*
878747
%{_mandir}/man7/amanda-compatibility.7*
878747
%{_mandir}/man5/amanda.conf*
878747
%{_mandir}/man7/amanda-auth.7*
878747
%{_mandir}/man7/amanda-match.7*
878747
%{_mandir}/man7/amanda-scripts.7*
878747
%{_mandir}/man8/amanda.8*
878747
%{_mandir}/man8/amarchiver.8*
878747
%{_mandir}/man8/amplot.8*
878747
%{_mandir}/man8/script-email.8*
878747
%{_mandir}/man8/amaespipe.8*
878747
%{_mandir}/man8/amcrypt-ossl-asym.8*
878747
%{_mandir}/man8/amcrypt-ossl.8*
878747
%{_mandir}/man8/amcryptsimple.8*
878747
%{_mandir}/man8/amcrypt.8*
878747
%{_mandir}/man8/amgpgcrypt.8*
878747
%{_mandir}/man8/amgetconf.8*
878747
%{_mandir}/man8/amcleanupdisk.8*
878747
%{_mandir}/man7/amanda-auth-ssl.7.*
878747
%{_mandir}/man8/amssl.8.*
878747
878747
%dir %{_sysconfdir}/amanda/
878747
%dir %{_sysconfdir}/amanda/%defconfig
878747
878747
%attr(-,%amanda_user,%amanda_group)     %dir %{_localstatedir}/lib/amanda/
878747
%attr(600,%amanda_user,%amanda_group)   %config(noreplace) %{_localstatedir}/lib/amanda/.amandahosts
878747
%attr(02770,%amanda_user,%amanda_group) %dir /var/log/amanda
878747
%attr(02770,%amanda_user,%amanda_group) %dir /var/log/amanda/amandad
878747
878747
%files libs
878747
%{_libdir}/libamdevice*.so
878747
%{_libdir}/libamserver*.so
878747
%{_libdir}/libamclient*.so
878747
%{_libdir}/libamanda-*.so
878747
%{_libdir}/libamanda.so
878747
%{_libdir}/libamandad*.so
878747
%{_libdir}/libamar*.so
878747
%{_libdir}/libamglue*.so
878747
%{_libdir}/libamxfer*.so
878747
%{_libdir}/libndmjob*.so
878747
%{_libdir}/libndmlib*.so
878747
878747
%files server
878747
%attr(4750,root,%amanda_group) %{_libexecdir}/amanda/ambind
878747
%{_libexecdir}/amanda/amdumpd
878747
%{_libexecdir}/amanda/amcheck-device
878747
%{_libexecdir}/amanda/amidxtaped
878747
%{_libexecdir}/amanda/amindexd
878747
%{_libexecdir}/amanda/amlogroll
878747
%{_libexecdir}/amanda/amtrmidx
878747
%{_libexecdir}/amanda/amtrmlog
878747
%{_libexecdir}/amanda/driver
878747
%{_libexecdir}/amanda/amadmin_perl
878747
%{_libexecdir}/amanda/ambackupd
878747
%{_libexecdir}/amanda/rest-server/
878747
%{_libexecdir}/amanda/dumper
878747
%{_libexecdir}/amanda/chunker
878747
%{_libexecdir}/amanda/planner
878747
%{_libexecdir}/amanda/taper
878747
878747
%{_sbindir}/activate-devpay
878747
%{_sbindir}/amaddclient
878747
%{_sbindir}/amadmin
878747
%{_sbindir}/amcleanup
878747
%{_sbindir}/amcleanupdisk
878747
%{_sbindir}/amdevcheck
878747
%{_sbindir}/amdump
878747
%{_sbindir}/amfetchdump
878747
%{_sbindir}/amflush
878747
%{_sbindir}/amcheck
878747
%{_sbindir}/amcheckdb
878747
%{_sbindir}/amcheckdump
878747
%{_sbindir}/amlabel
878747
%{_sbindir}/amoverview
878747
%{_sbindir}/amreport
878747
%{_sbindir}/amrestore
878747
%{_sbindir}/amrmtape
878747
%{_sbindir}/amserverconfig
878747
%{_sbindir}/amservice
878747
%{_sbindir}/amstatus
878747
%{_sbindir}/amtape
878747
%{_sbindir}/amtapetype
878747
%{_sbindir}/amtoc
878747
%{_sbindir}/amvault
878747
%{_sbindir}/amanda-rest-server
878747
%{_sbindir}/amreindex
878747
878747
%{_mandir}/man5/disklist.5*
878747
%{_mandir}/man5/tapelist.5*
878747
%{_mandir}/man5/amanda-command-file.5*
878747
%{_mandir}/man7/amanda-devices.7*
878747
%{_mandir}/man7/amanda-changers.7*
878747
%{_mandir}/man7/amanda-interactivity.7*
878747
%{_mandir}/man7/amanda-taperscan.7*
878747
%{_mandir}/man8/amaddclient.8*
878747
%{_mandir}/man8/amadmin.8*
878747
%{_mandir}/man8/amcleanup.8*
878747
%{_mandir}/man8/amdevcheck.8*
878747
%{_mandir}/man8/amdump.8*
878747
%{_mandir}/man8/amfetchdump.8*
878747
%{_mandir}/man8/amflush.8*
878747
%{_mandir}/man8/amcheckdb.8*
878747
%{_mandir}/man8/amcheckdump.8*
878747
%{_mandir}/man8/amcheck.8*
878747
%{_mandir}/man8/amlabel.8*
878747
%{_mandir}/man8/amoverview.8*
878747
%{_mandir}/man8/amreport.8*
878747
%{_mandir}/man8/amrestore.8*
878747
%{_mandir}/man8/amrmtape.8*
878747
%{_mandir}/man8/amserverconfig.8*
878747
%{_mandir}/man8/amservice.8*
878747
%{_mandir}/man8/amstatus.8*
878747
%{_mandir}/man8/amtapetype.8*
878747
%{_mandir}/man8/amtape.8*
878747
%{_mandir}/man8/amtoc.8*
878747
%{_mandir}/man8/amvault.8*
878747
%{_mandir}/man8/amanda-rest-server.8.*
878747
%{_mandir}/man8/amreindex.8.*
878747
%{_mandir}/man1/activate-devpay.1*
878747
878747
%config(noreplace) %{_sysconfdir}/amanda/crontab.sample
878747
%config(noreplace) %{_sysconfdir}/amanda/%defconfig/*
878747
%exclude %{_sysconfdir}/amanda/%defconfig/amanda-client.conf
878747
%exclude %{_sysconfdir}/amanda/%defconfig/amanda-client-postgresql.conf
878747
878747
%attr(-,%amanda_user,%amanda_group) %dir %{_localstatedir}/lib/amanda/%defconfig/
878747
%attr(-,%amanda_user,%amanda_group) %dir %{_localstatedir}/lib/amanda/%defconfig/index
878747
%attr(-,%amanda_user,%amanda_group) %dir %{_localstatedir}/lib/amanda/template.d
878747
%attr(-,%amanda_user,%amanda_group) %config(noreplace) %{_localstatedir}/lib/amanda/template.d/*
878747
878747
%files client
878747
%dir %{_libexecdir}/amanda/application/
878747
%attr(4750,root,%amanda_group) %{_libexecdir}/amanda/application/ambsdtar
878747
%attr(4750,root,%amanda_group) %{_libexecdir}/amanda/application/amgtar
878747
%attr(4750,root,%amanda_group) %{_libexecdir}/amanda/application/amstar
878747
%{_libexecdir}/amanda/application/amlog-script
878747
%{_libexecdir}/amanda/application/ampgsql
878747
%{_libexecdir}/amanda/application/amraw
878747
%{_libexecdir}/amanda/application/amsamba
878747
%{_libexecdir}/amanda/application/amsuntar
878747
%{_libexecdir}/amanda/application/amzfs-sendrecv
878747
%{_libexecdir}/amanda/application/amzfs-snapshot
878747
%{_libexecdir}/amanda/application/script-email
878747
%{_libexecdir}/amanda/application/amrandom
878747
%{_libexecdir}/amanda/application/script-fail
878747
%{_libexecdir}/amanda/restore
878747
%{_libexecdir}/amanda/senddiscover
878747
878747
%attr(4750,root,%amanda_group) %{_libexecdir}/amanda/calcsize
878747
%attr(4750,root,%amanda_group) %{_libexecdir}/amanda/killpgrp
878747
%{_libexecdir}/amanda/noop
878747
%{_libexecdir}/amanda/patch-system
878747
%attr(4750,root,%amanda_group) %{_libexecdir}/amanda/rundump
878747
%attr(4750,root,%amanda_group) %{_libexecdir}/amanda/runtar
878747
%{_libexecdir}/amanda/selfcheck
878747
%{_libexecdir}/amanda/sendbackup
878747
%{_libexecdir}/amanda/sendsize
878747
%{_libexecdir}/amanda/teecount
878747
878747
%{_sbindir}/amdump_client
878747
%{_sbindir}/amoldrecover
878747
%{_sbindir}/amrecover
878747
%{_sbindir}/ambackup
878747
878747
%{_sysconfdir}/amanda/amanda-security.conf
878747
878747
%{_mandir}/man7/amanda-applications.7*
878747
%{_mandir}/man8/amdump_client.8*
878747
%{_mandir}/man5/amanda-client.conf.5*
878747
%{_mandir}/man5/amanda-security.conf.5*
878747
%{_mandir}/man8/ambsdtar.8*
878747
%{_mandir}/man8/amgtar.8*
878747
%{_mandir}/man8/ampgsql.8*
878747
%{_mandir}/man8/amraw.8*
878747
%{_mandir}/man8/amrecover.8*
878747
%{_mandir}/man8/amoldrecover.8*
878747
%{_mandir}/man8/amsamba.8*
878747
%{_mandir}/man8/amstar.8*
878747
%{_mandir}/man8/amsuntar.8*
878747
%{_mandir}/man8/amzfs-sendrecv.8*
878747
%{_mandir}/man8/amzfs-snapshot.8*
878747
%{_mandir}/man8/killpgrp.8*
878747
%{_mandir}/man8/ambackup.8.*
878747
878747
%config(noreplace) %{_sysconfdir}/amanda/%defconfig/amanda-client.conf
878747
%config(noreplace) %{_sysconfdir}/amanda/%defconfig/amanda-client-postgresql.conf
878747
878747
%attr(-,%amanda_user,%amanda_group) %config(noreplace) %{_localstatedir}/lib/amanda/amandates
878747
%attr(-,%amanda_user,%amanda_group) %{_localstatedir}/lib/amanda/gnutar-lists/
878747
%attr(0644, root, root) %config(noreplace) %{_sysconfdir}/amanda-security.conf
878747
878747
878747
%changelog
878747
* Thu Aug 02 2018 Vaclav Dolezal <vdolezal@redhat.com> - 3.5.1-13
878747
- fix permissions for log directory (#1572696)
878747
878747
* Tue Jul 24 2018 Josef Ridky <jridky@redhat.com> - 3.5.1-12
878747
- fix permissions for log file
878747
878747
* Thu May 24 2018 Josef Ridky <jridky@redhat.com> - 3.5.1-11
878747
- remove rsh requirements (#1582100)
878747
878747
* Thu Apr 12 2018 Josef Ridky <jridky@redhat.com> - 3.5.1-10
878747
- remove perl(Dancer2) requirements
878747
878747
* Wed Feb 21 2018 Josef Ridky <jridky@redhat.com> - 3.5.1-9
878747
- add RPM_LD_FLAGS to build section (#1547499)
878747
878747
* Thu Feb 15 2018 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.5.1-8
878747
- Fix embarrassing typo.
878747
878747
* Wed Feb 14 2018 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.5.1-7
878747
- Convert to ldconfig macros.
878747
878747
* Wed Feb 14 2018 Josef Ridky <jridky@redhat.com> - 3.5.1-6
878747
- Remove Group tag
878747
878747
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-5
878747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
878747
878747
* Sun Jan 28 2018 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.5.1-4
878747
- Assign setuid permissions properly.
878747
878747
* Fri Jan 26 2018 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.5.1-3
878747
- Add patch to support tirpc and re-enable ndmp support.
878747
878747
* Thu Jan 25 2018 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.5.1-2
878747
- Use proper systemd package dependencies.
878747
- Remove Obsoletes: for ancient amanda version.
878747
- Remove obsolete Requires(post): dependencies.
878747
878747
* Mon Jan 08 2018 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.5.1-1
878747
- Update to 3.5.1.
878747
- Pass --without-ndmp and remove ndmp-related files until we can get the ndmp
878747
  code to use libtirpc.
878747
878747
* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.5-2
878747
- Remove old crufty coreutils requires
878747
878747
* Thu Sep 28 2017 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.5-1
878747
- Update to 3.5.
878747
878747
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.5-5
878747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
878747
878747
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.5-4
878747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
878747
878747
* Tue Jun 13 2017 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.4.5-3
878747
- Modify amserverconfig to not mention xinetd (#1460763)
878747
878747
* Fri Jun 09 2017 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.5-2
878747
- Perl 5.26 rebuild
878747
878747
* Thu Jun 08 2017 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.4.5-1
878747
- New upstream release 3.4.5.
878747
878747
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 3.4.4-2
878747
- Perl 5.26 rebuild
878747
878747
* Wed May 03 2017 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.4.4-1
878747
- New upstream relase 3.4.4.
878747
878747
* Thu Mar 02 2017 Josef Ridky <jridky@redhat.com> - 3.4.3-1
878747
- New upstream release 3.4.3 (#1428185)
878747
878747
* Wed Mar  1 2017 Josef Ridky <jridky@redhat.com> - 3.4.2-4
878747
- Fix issue with local authentication (#1427775)
878747
878747
* Mon Feb 20 2017 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.4.2-3
878747
- Add patch from upstream to fix a segfault in planner.  Hopefully fixes
878747
  https://bugzilla.redhat.com/show_bug.cgi?id=1423471
878747
878747
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.2-2
878747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
878747
878747
* Tue Jan 31 2017 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.4.2-1
878747
- Update to 3.4.2.
878747
- Remove upstreamed patches.
878747
- Add patch to allow builds on non-x86 arches.
878747
- Move autogen call from %%prep to %%build.
878747
- Remove some specfile cruft.
878747
- Use %%license.
878747
878747
* Tue Jan 31 2017 Josef Ridky <jridky@redhat.com> - 3.4.1-4
878747
- Fix warning with checking return value from setreuid in krb5-security.c (#1417828)
878747
878747
* Fri Jan 13 2017 Jason L Tibbitts III <tibbs@math.uh.edu> - 3.4.1-3
878747
- Add patch to avoid breakage with RHEL5 clients.
878747
878747
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 3.4.1-2
878747
- Rebuild for readline 7.x
878747
878747
* Tue Dec 06 2016 Josef Ridky <jridky@redhat.com> - 3.4.1-1
878747
- New upstream release 3.4.1 (#1398045)
878747
878747
* Wed Nov 16 2016 Josef Ridky <jridky@redhat.com> - 3.4-5
878747
- add BuildRequires dependency for dump and xfsdump - (#1395445)
878747
878747
* Thu Nov 10 2016 Josef Ridky <jridky@redhat.com> - 3.4-4
878747
- Update amanda spec file (thanks Jason Tibbitts for optimalization) - (#1386434)
878747
878747
* Wed Oct 26 2016 Josef Ridky <jridky@redhat.com> - 3.4-3
878747
- Upstream fix of broken dependencies
878747
878747
* Mon Oct 24 2016 Josef Ridky <jridky@redhat.com> - 3.4-2
878747
- Add Requires for server package
878747
878747
* Wed Oct 19 2016 Josef Ridky <jridky@redhat.com> - 3.4-1
878747
- New upstream release 3.4 (#1386434) - resolves (#1384065)
878747
878747
* Thu Aug 18 2016 Josef Ridky <jridky@redhat.com> - 3.3.9-3
878747
- Add security configuration file into /etc folder (#1368021)
878747
878747
* Thu Aug  4 2016 Josef Ridky <jrikdy@redhat.com> - 3.3.9-2
878747
- Fix Tie::StdHash permission problem (#1257686)
878747
878747
* Wed Jul 27 2016 Josef Ridky <jridky@redhat.com> - 3.3.9-1
878747
- New upstream release 3.3.9 (#1360703)
878747
- Remove Require(pre) from .spec file (unimportant here) (#1319129)
878747
878747
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.3.8-3
878747
- Perl 5.24 rebuild
878747
878747
* Fri Mar 11 2016 Petr Pisar <ppisar@redhat.com> - 3.3.8-2
878747
- Do not provide private libraries (bug #1309664)
878747
878747
* Tue Feb 09 2016 Petr Hracek <phracek@redhat.com> - 3.3.8-1
878747
- New upstream release 3.3.8
878747
878747
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.7p1-2
878747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
878747
878747
* Mon Jun 22 2015 Petr Hracek <phracek@redhat.com> - 3.3.7p1-1
878747
- Update to 3.3.7p1 version
878747
- fixed bug (#1225841)
878747
878747
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.6-12
878747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
878747
878747
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 3.3.6-11
878747
- Perl 5.22 rebuild
878747
878747
* Fri Feb 27 2015 Petr Hracek <phracek@redhat.com> - 3.3.6-10
878747
- Fix for Swig-3.0.5 (#1195297)
878747
878747
* Fri Nov 21 2014 Petr Hracek <phracek@redhat.com> - 3.3.6-9
878747
- inlude unit files for systemd
878747
878747
* Fri Nov 21 2014 Petr Hracek <phracek@redhat.com> - 3.3.6-8
878747
- add kamanda unit files (#1077642)
878747
878747
* Tue Nov 11 2014 Petr Hracek <phracek@redhat.com> - 3.3.6-7
878747
- Resolves #1033896 Add amindexd as argument to amandad
878747
878747
* Wed Sep 03 2014 Jitka Plesnikova <jplesnik@redhat.com> - 3.3.6-6
878747
- Perl 5.20 rebuild
878747
878747
* Wed Sep 03 2014 Petr Hracek <phracek@redhat.com> - 3.3.6-5
878747
- FTBFS with perl 5.20 (#1134732)
878747
878747
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 3.3.6-4
878747
- Perl 5.20 rebuild
878747
878747
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.6-3
878747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
878747
878747
* Mon Jul 28 2014 Petr Hracek <phracek@redhat.com> - 3.3.6-2
878747
- amstatus perl script is broken due to misconfiguration of $PS (#1074216)
878747
878747
* Thu Jul 10 2014 Orion Poplawski <orion@cora.nwra.com> - 3.3.6-1
878747
- Update to 3.3.6
878747
878747
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.5-2
878747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
878747
878747
* Fri May 23 2014 Orion Poplawski <orion@cora.nwra.com> - 3.3.5-1
878747
- Update to 3.3.5
878747
- Drop stdio patch, fixed upstream
878747
878747
* Tue Apr 08 2014 Petr Hracek <phracek@redhat.com> - 3.3.3-11
878747
- Remove initscripts from dependencies (#1081399)
878747
878747
* Fri Jan 31 2014 Petr Hracek <phracek@redhat.com> - 3.3.3-10
878747
- Fix: #1056675 systemd file incorrectly named (missing file in install section)
878747
878747
* Fri Jan 31 2014 Petr Hracek <phracek@redhat.com> - 3.3.3-9
878747
- Fix: #1056675 systemd file incorrectly named
878747
878747
* Mon Oct 21 2013 Petr Hracek <phracek@redhat.com> - 3.3.3-8
878747
- Moved all dynamic libraries to amanda-libs (#881128)
878747
- Added dependencies to client and server on amanda-libs
878747
878747
* Mon Oct 21 2013 Petr Hracek <phracek@redhat.com> - 3.3.3-7
878747
- package amanda-libs introduced because of multilib issue
878747
878747
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.3-6
878747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
878747
878747
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 3.3.3-5
878747
- Perl 5.18 rebuild
878747
878747
* Tue Jul 16 2013 Petr Hracek <phracek@redhat.com> - 3.3.3-4
878747
- Correct problem with man page killpgrp (#881128)
878747
878747
* Tue Jun 25 2013 Petr Hracek <phracek@redhat.com> - 3.3.3-3
878747
- Remove dependency on dump in RHEL-7
878747
878747
* Tue Jun 18 2013 Petr Hracek <phracek@redhat.com> - 3.3.3-2
878747
- Added systemd udp unit files
878747
878747
* Fri Mar 22 2013 Petr Hracek <phracek@redhat.com> - 3.3.3-1
878747
- New upstream version
878747
- Dependecy to /usr/sbin/service was removed.
878747
 Instead of /usr/sbin/service systemd files are used.
878747
878747
* Thu Mar 21 2013 Petr Hracek <phracek@redhat.com> - 3.3.2-5
878747
- Fix (#924326) Requires /sbin/service was changed to /usr/sbin/service
878747
878747
* Thu Jan 31 2013 Petr Hracek <phracek@redhat.com> - 3.3.2-4
878747
- fix (#858703) add killpgrp(8) man page to the amanda-client package
878747
    (killpgrp will be removed from man-pages package)
878747
- Fix autogen for parallel tests.
878747
878747
* Thu Dec 06 2012 Lukáš Nykrýn <lnykryn@redhat.com> - 3.3.2-3
878747
- Fix group ownership
878747
- Add manpage for activate-devpay
878747
878747
* Tue Sep 18 2012 Petr Pisar <ppisar@redhat.com> - 3.3.2-2
878747
- Do not provide perl(Math::BigInt) (bug #648321)
878747
878747
* Wed Aug 15 2012 Lukáš Nykrýn <lnykryn@redhat.com> - 3.3.2-1
878747
- upgrade to new upstream release
878747
- convert to systemd
878747
878747
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.1-3
878747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
878747
878747
* Wed Jun 27 2012 Petr Pisar <ppisar@redhat.com> - 3.3.1-2
878747
- Perl 5.16 rebuild
878747
878747
* Wed Jun 20 2012 Lukáš Nykrýn <lnykryn@redhat.com> - 3.3.1-1
878747
- upgrade to new upstream release
878747
878747
* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 3.3.0-6
878747
- Perl 5.16 rebuild
878747
878747
* Wed Apr 18 2012 Lukáš Nykrýn <lnykryn@redhat.com>> - 3.3.0-5
878747
- Fix building issues with newer glib
878747
878747
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.0-4
878747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
878747
878747
* Mon Nov 28 2011 Lukáš Nykrýn <lnykryn@redhat.com> - 3.3.0-3
878747
- fix #757618 - Use of qw(...) as parentheses is deprecated
878747
- fix #752253 - Using functions in amanda-client which are provided by server
878747
878747
* Thu Jun 16 2011 Marcela Mašláňová <mmaslano@redhat.com> - 3.3.0-2
878747
- Perl mass rebuild
878747
878747
* Wed Jun 08 2011 Jan Görig <jgorig@redhat.com> - 3.3.0-1
878747
- upgrade to new upstream release
878747
- uses bsdtcp authentication by default
878747
- dropped amanda-3.1.1-bsd.patch
878747
- modified example directory handling and dropped amanda-3.1.0-example.patch
878747
878747
* Wed May 4 2011 Jan Görig <jgorig@redhat.com> - 3.3.0-0.1.beta1
878747
- update to new upstream beta release
878747
- removed merged patch amanda-3.2.2-krb5-libs.patch
878747
878747
* Wed Apr 27 2011 Jan Görig <jgorig@redhat.com> - 3.2.2-2
878747
- amgtar, amstar and amservice must have setuid flag (#697933)
878747
878747
* Wed Mar 16 2011 Jan Görig <jgorig@redhat.com> - 3.2.2-1
878747
- upgrade to new upstream release
878747
- removed merged patch amanda-3.1-amrestore.patch
878747
- fixed build on system with amanda installed
878747
878747
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-3
878747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
878747
878747
* Mon Jan 31 2011 Jan Görig <jgorig@redhat.com> - 3.2.1-2
878747
- fix #666968 - amrestore should restore one file when outputting to a pipe
878747
878747
* Wed Dec 15 2010 Jan Görig <jgorig@redhat.com> - 3.2.1-1
878747
- upgrade to new upstream release
878747
- removed unneeded patches
878747
878747
* Thu Nov 4 2010 Jan Görig <jgorig@redhat.com> - 3.2.0-1
878747
- upgrade to new upstream release
878747
- fixed build with new glib
878747
- changed owner of the most files to root
878747
- moved variable files from /etc/amanda to /var/lib/amanda
878747
- spec cleanups
878747
- fix #648321 - amanda rpm should not provide the perl(Math::BigInt)
878747
878747
* Thu Oct 7 2010 Jan Görig <jgorig@redhat.com> - 3.1.3-1
878747
- upstream security update
878747
878747
* Wed Aug 18 2010 Jan Görig <jgorig@redhat.com> - 3.1.2-1
878747
- upgraded to new upstream bugfix version
878747
878747
* Tue Aug 10 2010 Jan Görig <jgorig@redhat.com> - 3.1.1-2
878747
- removed obsolete README-rpm
878747
- modified client configuration to match xinetd one
878747
- modified tcpport patch to include postgresql sample configuration
878747
878747
* Tue Aug 03 2010 Jan Görig <jgorig@redhat.com> - 3.1.1-1
878747
- upgraded to new upstream bugfix version
878747
- dropped old upgrade scriptlets
878747
- spec cleanups
878747
- created symlink to manpage for amoldrecover
878747
- default configuration now backups extended attributes
878747
- fix #610169 - fixed build flags
878747
- fix #600552 - corrected amdatadir path, updated example patch
878747
878747
* Mon Jun 28 2010 Jan Görig <jgorig@redhat.com> - 3.1.0-1
878747
- upgraded to new upstream version
878747
- documentation moved to main package
878747
- fixed license tag
878747
- moved files from libexecdir to libdir to avoid multilib conflict
878747
- moved files between subpackages
878747
- updated path in xinetd config
878747
- added -fPIE to CFLAGS and -pie to LDFLAGS
878747
- removed unused patches
878747
- removed obsolete devel subpackage
878747
878747
* Tue Jun 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 2.6.1p2-4
878747
- Mass rebuild with perl-5.12.0
878747
878747
* Thu Apr 22 2010 Daniel Novotny <dnovotny@redhat.com> 2.6.1p2-3
878747
- fix #584774 - PIE patch disabled in amanda 2.6.1p2-2
878747
878747
* Tue Feb 16 2010 Daniel Novotny <dnovotny@redhat.com> 2.6.1p2-2
878747
- fix #564935 -  FTBFS amanda-2.6.1p2-1.fc13
878747
878747
* Thu Jan 21 2010 Daniel Novotny <dnovotny@redhat.com> 2.6.1p2-1
878747
- upgrade to 2.6.1p2, drop upstreamed patches, rebase remaining patches
878747
878747
* Fri Dec  4 2009 Stepan Kasal <skasal@redhat.com> - 2.6.0p2-15
878747
- rebuild against perl 5.10.1
878747
878747
* Thu Oct 15 2009 Daniel Novotny <dnovotny@redhat.com> 2.6.0p2-14
878747
- add amanda user to group "tape" (#529159)
878747
878747
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 2.6.0p2-13
878747
- rebuilt with new openssl
878747
878747
* Tue Aug 04 2009 Daniel Novotny <dnovotny@redhat.com> 2.6.0p2-12
878747
-fix #512534 -  amstatus outputs "Insecure dependency in printf ..."
878747
878747
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.0p2-11
878747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
878747
878747
* Wed Jul 22 2009 Daniel Novotny <dnovotny@redhat.com> 2.6.0p2-10
878747
- fix #510961 -  FTBFS: amanda-2.6.0p2-9
878747
878747
* Fri Apr 24 2009 Daniel Novotny <dnovotny@redhat.com> 2.6.0p2-9
878747
- fix #497488 -  amanda subpackages require only a specific version of amanda,
878747
      not also release
878747
878747
* Tue Apr 14 2009 Daniel Novotny <dnovotny@redhat.com> 2.6.0p2-8
878747
- fix #495724 (spec file fix, use "useradd -N" instead of "useradd -n")
878747
878747
* Wed Apr 08 2009 Daniel Novotny <dnovotny@redhat.com> 2.6.0p2-7
878747
- the tcpport patch was lost after rebase, adding again
878747
  (#448071, #462681)
878747
878747
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.0p2-6
878747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
878747
878747
* Thu Jan 15 2009 Tomas Mraz <tmraz@redhat.com> 2.6.0p2-5
878747
- rebuild with new openssl
878747
878747
* Thu Nov 20 2008 Daniel Novotny <dnovotny@redhat.com> 2.6.0p2-4
878747
  .usernameupdate extension changed to .rpmsave (#472349)
878747
878747
* Thu Oct 23 2008 Daniel Novotny <dnovotny@redhat.com> 2.6.0p2-3
878747
- added trailing || : in the %%pre client script
878747
878747
* Fri Oct 10 2008 Orion Poplawski <orion@cora.nwra.com> 2.6.0p2-2
878747
- Drop duplicated libamglue.so from -devel
878747
- Update -pie patch
878747
- Fix Source typo
878747
- Move xinetd to main package - used by both client and server
878747
- Move %%{_libexecdir}/amanda/amanda-sh-lib.sh to main package
878747
- LIBEXECDIR is used in xinetd template
878747
- Make calcsize setuid root
878747
878747
* Wed Oct 01 2008 Daniel Novotny 2.6.0p2-1
878747
- Update to 2.6.0p2
878747
- perl-ExtUtils-Embed added to BuildRequires
878747
- perl patch dropped (upstreamed)
878747
- library name change from libamglue.so.* to libamglue.so
878747
878747
* Thu Mar 27 2008 Orion Poplawski <orion@cora.nwra.com> 2.6.0-0.b3_20080314.1
878747
- Update to 2.6.0b3_20080314
878747
- New -lib patch that patches the autotool source files
878747
878747
* Tue Mar 11 2008 Orion Poplawski <orion@cora.nwra.com> 2.6.0-0.b3_20080310.1
878747
- Update to 2.6.0b3_20080310
878747
- Re-add updated pie patch, re-add autogen
878747
- Update example patch to modify Makefile.am, leave template.d in
878747
 /var/lib/amanda for now
878747
878747
* Wed Feb 20 2008 Orion Poplawski <orion@cora.nwra.com> 2.6.0-0.b2_20080220.1
878747
- Update to 2.6.0b2-20080220
878747
- Drop libdir patch, use --with-libdir instead
878747
- Move perl modules to %%{perl_vendorarch} and add perl Requires
878747
878747
* Wed Feb 20 2008 Orion Poplawski <orion@cora.nwra.com> 2.6.0-0.b2
878747
- Update to 2.6.0b2, drop upstreamed patches
878747
- Update xattrs patch
878747
- Add patches to fix install locations
878747
- Add -fPIE/-pie to CFLAGS/LDFLAGS, drop pie patch
878747
- Drop autotools BR
878747
- Drop /usr/bin/Mail BR and specify mailer as /bin/mail
878747
- Add %%check section
878747
- Move /etc/amanda/amandates to /var/lib/amanda/amandates
878747
- Remove ending . from summaries
878747
878747
* Mon Feb 18 2008 Radek Brich <rbrich@redhat.com> 2.5.2.p1-10
878747
- do not require gnuplot by -server subpackage (bz#433101)
878747
878747
* Thu Nov 22 2007 Radek Brich <rbrich@redhat.com> 2.5.2.p1-9
878747
- Change default amanda user name to 'amandabackup' (#124510).
878747
  This should not break upgrades as config files are checked for
878747
  old user name and updated.
878747
- Add some explaining comments to .amandahosts (#153749)
878747
878747
* Tue Aug 28 2007 Radek Brich <rbrich@redhat.com> 2.5.2.p1-8
878747
- rebuild
878747
878747
* Fri Aug 17 2007 Radek Brich <rbrich@redhat.com> 2.5.2.p1-7
878747
- BuildRequires mtx and mt-st (#251690).
878747
878747
* Fri Aug 10 2007 Radek Brich <rbrich@redhat.com> 2.5.2.p1-6
878747
- Included upstream patch for chg-multi.sh (#251316).
878747
878747
* Wed Aug 08 2007 Radek Brich <rbrich@redhat.com> 2.5.2.p1-5
878747
- Added ssh and ncompress to BuildRequires (#250730).
878747
- Removed some obsolete makes from build section.
878747
878747
* Thu Jul 12 2007 Radek Brich <rbrich@redhat.com> 2.5.2.p1-4
878747
- Enable backing up ACL/SElinux xattrs with tar (#201916).
878747
- Removed obsolete patches and sources.
878747
878747
* Mon Jun 25 2007 Radek Brich <rbrich@redhat.com> 2.5.2.p1-3
878747
- Update -undefSymbols patch. All undefined symbols reported by
878747
  'ldd -r' should now be fixed (#198178).
878747
878747
* Fri Jun 22 2007 Radek Brich <rbrich@redhat.com> 2.5.2.p1-2
878747
- Fix undefined symbols in libamserver.so.
878747
- Fix ./autogen so it automatically installs ylwrap (bug 224143).
878747
- Run ./autogen in prep section (otherwise the -pie patch had no effect).
878747
- Update -pie patch.
878747
878747
* Thu Jun 21 2007 Radek Brich <rbrich@redhat.com> 2.5.2.p1-1
878747
- New upstream version.
878747
- Client rpm now installs amanda-client.conf.
878747
- Removed obsolete patches -bug18322 and -rsh.
878747
- Clean up spec file (non-utf8 error and some warnings from rpmlint).
878747
878747
* Mon Feb 19 2007 Jay Fenlason <fenlason@redhat.com> 2.5.1p3-1%{?dist}
878747
- Upgrade to new upstream release, now that 2.5.1 is somewhat stable.
878747
- Note that this requires changing the xinetd configuration and amanda.conf
878747
  because of the new authentication mechanism.
878747
- -server subpackage does not require xinetd.
878747
- -server scriptlets do not need to reload xinetd.
878747
878747
* Mon Sep 25 2006 Jay Fenlason <fenlason@redhat.com> 2.5.0p2-4
878747
- Include my -dump_size patch to close
878747
  bz#206129: Dump output size determined incorrectly
878747
- Clean up the spec file, following some suggestions in
878747
  bz#185659: amanda 2.5.0
878747
- Use a tarball without the problematic contrib/sst directory.
878747
- Include my new_gnutar (based on a patch by Orion Poplawski
878747
  <orion@cora.nwra.com>) to work around changed incremental file format
878747
  in newer (>1.15.1) versions of gnutar.
878747
- include my -wildcards patch to turn on wildcards with new versions of tar.
878747
878747
* Tue Sep 5 2006 Jay Fenlason <fenlason@redhat.com> 2.5.0p2-3
878747
- move libamclient-*.so to the base rpm, so that multilib support works.
878747
  This fixes
878747
  bz#205202 File conflicts
878747
878747
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.5.0p2-2.1
878747
- rebuild
878747
878747
* Thu Jun 8 2006 Jay Fenlason <fenlason@redhat.com> 2.5.0p2-2
878747
- New upstream version
878747
- Make the BuildRequires on /usr/bin/Mail rather than mailx, because we
878747
  don't really care where the Mail command comes from.
878747
- include the amcheck_badtape patch by Paul Bijnens
878747
  <paul.bijnens@xplanation.com> to fix a problem where amcheck doesn't
878747
  realize the wrong tape is in the drive.
878747
- include the error_msg patch from Jean-Louis Martineau <martineau@zmanda.com>
878747
  to fix a double-free problem
878747
- include the restore patch from Jean-Louis Martineau <martineau@zmanda.com>
878747
  to fix an error in amrestore
878747
- include a slightly modified form of the big_holding_disk patch from
878747
  Andrej Filipcic <andrej.filipcic@ijs.si> to fix a problem with holding
878747
  disks bigger than 4tb
878747
878747
* Mon May 22 2006 Jesse Keating <jkeating@redhat.com> 2.5.0-3
878747
- Fix BuildReqs
878747
878747
* Fri Apr 7 2006 Jay Fenlason <fenlason@redhat.com> 2.5.0-2
878747
- New upstream release: 2.5.0, with new features
878747
- Do not include our own amanda.conf anymore, use the one from the
878747
  tarball.
878747
- Remove the static libraries.
878747
- Update the -pie patch
878747
- Turn on the new -with-ssh-security option.
878747
- Change the mode of ~amanda/.amandahosts to 600, since 2.5.0 requires
878747
  it.
878747
- actually use the defconfig macro it this spec file.
878747
- Change the name of the index server to "amandahost" from localhost.
878747
  Users should ensure that "amandahost.their-domain" points to their
878747
  Amanda server.
878747
- Change amandahosts likewise.
878747
- Add dependency on /usr/bin/Mail
878747
- Ensure unversioned .so files are only in the -devel rpm.
878747
- Remove DUMPER_DIR and the files in it, as nothing seems to actually
878747
  use them.
878747
- Include the -overflow patch from Jean-Louis Martineau
878747
  <martineau@zmanda.com>
878747
878747
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.4.5p1-3.2
878747
- bump again for double-long bug on ppc(64)
878747
878747
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.4.5p1-3.1
878747
- rebuilt for new gcc4.1 snapshot and glibc changes
878747
878747
* Wed Jan 18 2006 Jay Fenlason <fenlason@redhat.com> 2.4.5p1-3
878747
- Fix spec file to use %%{_localstatedir} instead of hardcoding /var/lib
878747
- Add amanda_user and amanda_group defines, to make changing the username
878747
  easier.
878747
- Add a BuildRequires on /usr/bin/Mail
878747
878747
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
878747
- rebuilt
878747
878747
* Fri Nov 4 2005 Jay Fenlason <fenlason@redhat.com>
878747
- New upstream release.
878747
878747
* Sun Jul 31 2005 Florian La Roche <laroche@redhat.com>
878747
- make sure amanda builds with newest rpm
878747
878747
* Wed Apr 20 2005 Jay Fenlason <fenlason@redhat.com> 2.4.5-2
878747
- New upstream release.  This obsoletes the -bug144052 patch.
878747
- Reorg this spec file slightly to allow someone to specify
878747
  index server, tape server and default configuration when
878747
  rebuilding the rpms via something like
878747
  'rpmbuild -ba --define "indexserver foo.fqdn.com" amanda.spec'
878747
  This change suggested by Matt Hyclak <hyclak@math.ohiou.edu>.
878747
878747
* Tue Apr 5 2005 Jay Fenlason <fenlason@redhat.com> 2.4.4p4-4
878747
- Add -bug144052 patch to close
878747
  bz#144052 amverifyrun sometimes verifies the wrong tapes
878747
878747
* Tue Mar 8 2005 Jay Fenlason <fenlason@redhat.com> 2.4.4p4-3
878747
- rebuild with gcc4
878747
878747
* Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> 2.4.4p4-2
878747
- Rebuilt for new readline.
878747
878747
* Mon Oct 25 2004 Jay Fenlason <fenlason@redhat.com> 2.4.4p4-1
878747
- New upstream version
878747
- Turn on --disable-dependency-tracking to work around an automake bug.
878747
878747
* Mon Jun 28 2004 Jay Fenlason <fenlason@redhat.com> 2.4.4p3-1
878747
- New upstream version
878747
878747
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
878747
- rebuilt
878747
878747
* Fri Mar 19 2004 Jay Fenlason <fenlason@redhat.com> 2.4.4p2-3
878747
- make a few more programs PIE by updating the amanda-2.4.4p2-pie.path
878747
878747
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
878747
- rebuilt
878747
878747
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
878747
- rebuilt
878747
878747
* Tue Jan 13 2004 Jay Fenlason <fenlason@redhat.com> 2.4.4p2-1
878747
- New upstream version, includes the -sigchld and -client-utils
878747
  patches.  Also includes a new chg-disk changer script and a new
878747
  amqde "quick-and-dirty estimate" program (called from sendsize--not
878747
  a user command.
878747
878747
* Wed Jul 23 2003 Jay Fenlason <fenlason@redhat.com> 2.4.4p1-1
878747
- Merge from 2.4.4p1-0.3E
878747
878747
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
878747
- rebuilt
878747
878747
* Wed Feb 26 2003 Jay Fenlason <fenlason@redhat.com> 2.4.4-0
878747
- New upstream version.
878747
878747
* Thu Feb 13 2003 Jay Fenlason <fenlason@redhat.com> 2.4.3-3
878747
- Removed call to signal(SIGCHLD, SIG_IGN) which prevents wait...()
878747
  from working on newer Red Hat systems.  This fixes bug #84092.
878747
878747
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
878747
- rebuilt
878747
878747
* Wed Dec 11 2002 Jay Fenlason <fenlason@redhat.com> 2.4.3-2
878747
- Add spec file entry for /usr/lib/amanda so owner/group set
878747
  correctly  Fixes bugs 74025 and 73379.
878747
878747
* Wed Nov 20 2002 Elliot Lee <sopwith@redhat.com> 2.4.3-1
878747
- Update to version 2.4.3, rebuild
878747
- Update patch for bug18322 to match
878747
878747
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
878747
- automated rebuild
878747
878747
* Thu May 23 2002 Tim Powers <timp@redhat.com>
878747
- automated rebuild
878747
878747
* Tue Apr  2 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.4.2p2-7
878747
- Don't strip explicitly
878747
- Require samba-client instead of /usr/bin/smbclient
878747
878747
* Thu Feb 21 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.4.2p2-6
878747
- Rebuild
878747
878747
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
878747
- automated rebuild
878747
878747
* Fri Jul 13 2001 Trond Eivind Glomsrød <teg@redhat.com>
878747
- Build and install the "tapetype"  utility program, for
878747
  tape size identification (#48745)
878747
878747
* Tue Jun 19 2001 Trond Eivind Glomsrød <teg@redhat.com>
878747
- don't use %%configure, to make it build
878747
878747
* Mon Apr  9 2001 Bill Nottingham <notting@redhat.com>
878747
- include ia64 again
878747
878747
* Wed Apr  4 2001 Trond Eivind Glomsrød <teg@redhat.com>
878747
- 2.4.2p2 - fixes problems with amrecover (#26567)
878747
- made config files noreplace
878747
- don't build on IA64 right now, amanda doesn't like
878747
  the dump there: It segfaults.
878747
878747
* Fri Mar 16 2001 Trond Eivind Glomsrød <teg@redhat.com>
878747
- Add /usr/bin/smbclient to buildprereq (#31996), to
878747
  avoid samba being built without such support
878747
878747
* Thu Feb 22 2001 Trond Eivind Glomsrød <teg@redhat.com>
878747
- Use %%{version} in source URL, and thus actually use
878747
  2.4.2p1 instead of 2.4.2 (doh! # 28759)
878747
- add patch to handle bogus /dev/root entries (#28759)
878747
878747
* Fri Feb 16 2001 Trond Eivind Glomsrød <teg@redhat.com>
878747
- 2.4.2p1 bugfix release
878747
- move amandaixd and amidxtape to the server package (#28037)
878747
878747
* Wed Jan 31 2001 Trond Eivind Glomsrød <teg@redhat.com>
878747
- move /etc/xinetd.d/amanda to the client subpackage (#25430)
878747
878747
* Tue Jan 30 2001 Trond Eivind Glomsrød <teg@redhat.com>
878747
- don't have "chunksize -1" as the default, as it's no longer
878747
  supported
878747
- make it uid amanda, with home /var/lib/amada
878747
  so programs can actually access it (#20510)
878747
- make .amandahosts a config file (#18322)
878747
878747
* Tue Jan 23 2001 Trond Eivind Glomsrød <teg@redhat.com>
878747
- 2.4.2
878747
- make the UDP service "wait" (#23047)
878747
878747
* Tue Oct 10 2000 Jeff Johnson <jbj@redhat.com>
878747
- build with shared libraries.
878747
- add amanda-devel package to contain static libraries.
878747
- update to 2.4.2-19991216-beta1 (#16818).
878747
- sort out client-server file confusions (#17232).
878747
- amandaidx-xinetd should have "wait = no" (#17551).
878747
- /var/lib/amanda needs operator.disk ownership (17913).
878747
- /etc/xinetd.d/amanda added to the amanda-server package (#18112).
878747
- ignore socket error message (#18322).
878747
878747
* Sun Sep  3 2000 Florian La Roche <Florian.LaRoche@redhat.de>
878747
- do not include /etc/xinetd.d/amandaidx in the server rpm
878747
878747
* Mon Aug 21 2000 Trond Eivind Glomsrød <teg@redhat.com>
878747
- only do reload of xinetd if xinetd is running (#16653)
878747
- don't show output of reload command to STDOUT (#16653)
878747
- don't use /usr/sbin/tcpd in amidx, xinetd is linked
878747
  with tcp_wrappers
878747
- prereq initscripts (fixes #14572 and duplicates)
878747
878747
* Tue Aug  1 2000 Bill Nottingham <notting@redhat.com>
878747
- turn off amandaidx by default (#14937)
878747
- fix some binary permissions (#14938)
878747
878747
* Tue Aug  1 2000 Matt Wilson <msw@redhat.com>
878747
- added Prereq: /sbin/service xinetd to client and server subpackages
878747
878747
* Tue Jul 18 2000 Trond Eivind Glomsrød <teg@redhat.com>
878747
- xinetd support
878747
878747
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
878747
- automatic rebuild
878747
878747
* Sun Jun 18 2000 Jeff Johnson <jbj@redhat.com>
878747
- add prereqs for scriptlets, requires for common package.
878747
878747
* Sat Jun 10 2000 Jeff Johnson <jbj@redhat.com>
878747
- FHS packaging.
878747
- move to 7.0 distro.
878747
878747
* Tue May 23 2000 Tim Powers <timp@redhat.com>
878747
- built for 7.0
878747
- man pages in /usr/share/man
878747
878747
* Thu Apr 27 2000 Tim Powers <timp@redhat.com>
878747
- added usr/lib/amanda/chg-zd-mtx to the client RPM to fix bug #8282
878747
878747
* Wed Mar 8 2000 Tim Powers <timp@redhat.com>
878747
- fixed files/dirs ending up in the wrong packages.
878747
- last time it wasn't built with dump (doh!), this time it is. Now has a
878747
  BuildRequires for dump.
878747
878747
* Thu Feb 10 2000 Tim Powers <timp@redhat.com>
878747
- strip binaries
878747
878747
* Fri Jan 21 2000 TIm Powers <timp@redhat.com>
878747
- added chown lines to post section
878747
878747
* Tue Jan 11 2000 Tim Powers <timp@redhat.com>
878747
- make sure the man pages are gzipped in each subpackage, overriding the build
878747
  system spec_install_post macro.
878747
- using mega spec file changes from Marc Merlin <merlin_bts@valinux.com> since
878747
  the package we were shipping in the past had some major issues (not in
878747
  Marc's words ;)
878747
- using Marc's added README and modified config files.
878747
- adapted patches written by Alexandre Oliva <oliva@dcc.unicamp.br> from Marc
878747
  Merlin's package so that the patch matches the source version (the patches
878747
  are the glibc2.1 and glibc2.2 patches)
878747
878747
* Mon Jan 3 2000 Tim Powers <timp@redhat.com>
878747
- fix so configure doesn't crap out (libtoolize --force)
878747
- gzip man pages, strip binaries
878747
- rebuilt for 6.2
878747
878747
* Thu Aug 5 1999 Tim Powers <timp@redhat.com>
878747
- applied patch so that it reports the available holding disk space correctly
878747
878747
* Thu Jul 8 1999 Tim Powers <timp@redhat.com>
878747
- added %%defattr lines
878747
- rebuilt for 6.1
878747
878747
* Wed May 05 1999 Bill Nottingham <notting@redhat.com>
878747
- update to 2.4.1p1
878747
878747
* Tue Oct 27 1998 Cristian Gafton <gafton@redhat.com>
878747
- version 2.4.1
878747
878747
* Tue May 19 1998 Cristian Gafton <gafton@redhat.com>
878747
- upgraded to full 2.4.0 release
878747
878747
* Thu Feb 19 1998 Otto Hammersmith <otto@redhat.com>
878747
- fixed group for -client and -server packages (Network->Networking)
878747
878747
* Wed Feb 11 1998 Otto Hammersmith <otto@redhat.com>
878747
- updated to 2.4.0b6, fixes security hole among other things
878747
  (as well as finally got the glibc patch in the main source.)
878747
878747
* Tue Jan 27 1998 Otto Hammersmith <otto@redhat.com>
878747
- moved versionsuffix to client package to remove dependency of amanda on amanda-client
878747
878747
* Mon Jan 26 1998 Otto Hammersmith <otto@redhat.com>
878747
- fixed libexec garbage.
878747
878747
* Wed Jan 21 1998 Otto Hammersmith <otto@redhat.com>
878747
- split into three packages amanda, amanda-client, and amanda-server
878747
878747
* Fri Jan  9 1998 Otto Hammersmith <otto@redhat.com>
878747
- updated to latest beta... builds much cleaner now.
878747
878747
* Thu Jan  8 1998 Otto Hammersmith <otto@redhat.com>
878747
- created the package
878747