SHA256
1
0
forked from pool/patch2mail
patch2mail/patch2mail.spec
Christian Boltz 60446f577b Accepting request 74813 from home:cboltz
- use --non-interactive to avoid endless hanging zypper process
  on unknown repo signing keys
- version 1.1.1

OBS-URL: https://build.opensuse.org/request/show/74813
OBS-URL: https://build.opensuse.org/package/show/system:packagemanager/patch2mail?expand=0&rev=5
2011-06-29 10:12:46 +00:00

79 lines
2.2 KiB
RPMSpec

#
Name: patch2mail
Version: 1.1.1
Release: 1
#
License: GPLv2+
#
Summary: Patch and package update notification via mail
#BuildRequires: bash
#
Url: http://blog.cboltz.de/plugin/tag/patch2mail
Group: System/Packages
Source: %{name}-%{version}.tar.bz2
#
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
Requires: /bin/hostname
Requires: /bin/rm
Requires: /usr/bin/xsltproc
Requires: cron
Requires: grep
Requires: mail
Requires: mktemp
Requires: zypper
# detailed requirements:
# zypper # (>= 11.0) zypp-refresh-rapper, zypper
# zypper # (<= 10.3) zypp-checkpatches-wrapper
# libxslt # xsltproc [NOT autodetected, even if rpmlint thinks so]
# coreutils # rm
# net-tools # hostname
%description
patch2mail checks for available updates and sends a mail to root
if any patches or updated packages (configureable) are available.
%prep
%setup -q
%build
%install
%{__install} -d -m 0755 %{buildroot}%{_datadir}/%{name}
%{__install} -d -m 0755 %{buildroot}%{_sysconfdir}/cron.daily
%{__install} -d -m 0755 %{buildroot}%{_localstatedir}/adm/fillup-templates/
%{__install} -m 0644 patch2mail.xsl %{buildroot}%{_datadir}/%{name}/patch2mail.xsl
%if 0%{?suse_version} < 1030
%{__install} -m 0644 patch2mail.xsl_10.2 %{buildroot}%{_datadir}/%{name}/patch2mail.xsl
%endif
%{__install} -m 0755 patch2mail %{buildroot}%{_sysconfdir}/cron.daily/patch2mail
%if 0%{?suse_version} < 1110
%{__install} -m 0755 patch2mail_11.0 %{buildroot}%{_sysconfdir}/cron.daily/patch2mail
%endif
%if 0%{?suse_version} < 1100
%{__install} -m 0755 patch2mail_10.3 %{buildroot}%{_sysconfdir}/cron.daily/patch2mail
%endif
%{__install} -m 0644 patch2mail.sysconfig %{buildroot}%{_localstatedir}/adm/fillup-templates/sysconfig.patch2mail
echo ==== Buildroot: %{buildroot} ====
find %{buildroot}
echo ================================
%clean
%{__rm} -rf %{buildroot}
%post
%{fillup_only -n patch2mail}
%files
%defattr(-,root,root)
%{_sysconfdir}/cron.daily/%{name}
%{_datadir}/%{name}
%{_localstatedir}/adm/fillup-templates/sysconfig.patch2mail
%doc README COPYING
%changelog