File tor.spec of Package tor.openSUSE_13.1_Update

#
# spec file for package tor
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


%define with_bufferevents 0%{?suse_version} > 1220

Name:           tor
Version:        0.2.3.25
Release:        0
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
Summary:        Anonymizing overlay network for TCP (The onion router)
License:        BSD-3-Clause
Group:          Productivity/Networking/Security
Url:            https://www.torproject.org/
Source0:        https://www.torproject.org/dist/%{name}-%{version}.tar.gz
Source1:        https://www.torproject.org/dist/%{name}-%{version}.tar.gz.asc
# https://www.torproject.org/docs/signing-keys.html.en
Source2:        tor.keyring
Source3:        tor.service
Source4:        tor.tmpfiles
# PATCH-FIX-UPSTREAM tor-0.2.2.37-logrotate.patch -- add su to logrotate config to fix W: suse-logrotate-user-writable-log-dir
Patch0:         tor-0.2.2.37-logrotate.patch
Patch1:         tor-0.2.3.x-CVE-2013-7295.patch
Requires:       logrotate
BuildRequires:  openssl-devel
BuildRequires:  pwdutils
#
%if %with_bufferevents
BuildRequires:  libevent-devel >= 2.0.13
%else
%if 0%{?suse_version} > 1100
BuildRequires:  libevent-devel
%else
BuildRequires:  libevent
%endif
%endif

%if 0%{?suse_version} >= 1230
BuildRequires:  gpg-offline
%endif

%if 0%{?suse_version} > 1140
BuildRequires:  pkgconfig(systemd)
%{?systemd_requires}
%define has_systemd 1
%endif

%define toruser %{name}
%define torgroup %{name}
%define home_dir /var/lib/empty

%description
Tor is a connection-based low-latency anonymous communication system.

This package provides the "tor" program, which serves as both a client and
a relay node. Scripts will automatically create a "%{toruser}" user and
a "%{torgroup}" group, and set tor up to run as a daemon when the system
is rebooted.

Applications connect to the local Tor proxy using the SOCKS
protocol. The tor client chooses a path through a set of relays, in
which each relay knows its predecessor and successor, but no
others. Traffic flowing down the circuit is unwrapped by a symmetric
key at each relay, which reveals the downstream relay.

Warnings: Tor does no protocol cleaning.  That means there is a danger
that application protocols and associated programs can be induced to
reveal information about the initiator. Tor depends on Privoxy or
similar protocol cleaners to solve this problem. This is alpha code,
and is even more likely than released code to have anonymity-spoiling
bugs. The present network is small -- this further reduces the
strength of the anonymity provided. Tor is not presently suitable
for high-stakes anonymity.

%prep
%{?gpg_verify: %gpg_verify %{S:1}}
%setup -q
%patch0
%patch1 -p1

%build
%configure \
	--with-tor-user=%{toruser} \
	--with-tor-group=%{torgroup} \
%if %with_bufferevents
	--enable-bufferevents \
%endif
	--docdir=%{_docdir}/%{name}

%__make %{?jobs:-j%{jobs}}

%install
%makeinstall

# missing dirs
%{__install} -d -m 700 \
        %{buildroot}/var/lib/%{name} \
        %{buildroot}/var/tmp/%{name}

%{__install} -d -m 755 \
        %{buildroot}/var/run/%{name} \
        %{buildroot}/var/log/%{name} \
        %{buildroot}/%{_sbindir}

%if 0%{?has_systemd}
install -m 644 -D %{S:3} $RPM_BUILD_ROOT/%{_unitdir}/%{name}.service
%{__install} -d -m 0755 %{buildroot}/usr/lib/tmpfiles.d/
%{__install} -m 0644 %{S:4} %{buildroot}/usr/lib/tmpfiles.d/%{name}.conf
%endif

# control script
%__install -p -m 755 contrib/torctl %{buildroot}/%{_bindir}

# sample config file
%__install -p -m 644 src/config/torrc.sample %{buildroot}/%{_sysconfdir}/%{name}/torrc.sample

# init script
%__install -D -m 755 contrib/suse/tor.sh %{buildroot}/%{_initrddir}/%{name}
%{__ln_s} -f ../..%{_initrddir}/%{name} %{buildroot}%{_sbindir}/rc%{name}

# logrotate conf
%__sed -i -e "s|_tor|tor|g" contrib/tor.logrotate
%__install -D -m 644 contrib/tor.logrotate %{buildroot}/%{_sysconfdir}/logrotate.d/%{name}

%clean
%__rm -rf "%{buildroot}"

%pre
getent group %{torgroup} >/dev/null || groupadd -r %{torgroup}
getent passwd %{toruser} >/dev/null || useradd -r -g %{torgroup} -d %{home_dir} -s /sbin/false -c "User to ru %{name}" %{toruser}
%if 0%{?has_systemd}
%service_add_pre tor.service
%endif

%post
%fillup_and_insserv tor
%if 0%{?has_systemd}
%service_add_post tor.service
systemd-tmpfiles --create /usr/lib/tmpfiles.d/tor.conf
%endif

%preun
%stop_on_removal tor
%if 0%{?has_systemd}
%service_del_preun tor.service
%endif

%postun
%restart_on_update tor
%insserv_cleanup
%if 0%{?has_systemd}
%service_del_postun tor.service
%endif

%files
%defattr(-,root,root)
%doc LICENSE README ChangeLog doc/HACKING doc/TODO doc/*.html
%doc %{_mandir}/man*/*
%{_bindir}/%{name}
%{_bindir}/%{name}ctl
%{_bindir}/%{name}ify
%{_bindir}/%{name}-gencert
%{_bindir}/%{name}-resolve
%{_sbindir}/rc%{name}
%dir %{_datadir}/%{name}
%{_datadir}/%{name}/geoip
%config %{_initrddir}/%{name}
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/logrotate.d/%{name}
%dir %attr(0755,root,%{torgroup}) %{_sysconfdir}/%{name}
%config(noreplace) %attr(0644,root,%{torgroup}) %{_sysconfdir}/%{name}/*
%attr(0700,%{toruser},%{torgroup}) %dir %{_localstatedir}/lib/%{name}
%ghost %attr(0750,%{toruser},%{torgroup}) %dir %{_localstatedir}/run/%{name}
%attr(0750,%{toruser},%{torgroup}) %dir %{_localstatedir}/log/%{name}
%if 0%{?has_systemd}
%{_unitdir}/%{name}.service
/usr/lib/tmpfiles.d/%{name}.conf
%endif

%changelog
openSUSE Build Service is sponsored by