public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Anthony G. Basile" <blueness@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/tor/
Date: Thu,  5 Jan 2017 14:02:26 +0000 (UTC)	[thread overview]
Message-ID: <1483624940.16e8cabcb136d886aed3fe3d861967b9c4e36ffd.blueness@gentoo> (raw)

commit:     16e8cabcb136d886aed3fe3d861967b9c4e36ffd
Author:     Craig Andrews <candrews <AT> integralblue <DOT> com>
AuthorDate: Wed Jul 27 02:32:37 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu Jan  5 14:02:20 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16e8cabc

net-misc/tor-0.3.0.1_alpha-r1: use upstream's systemd service unit

* Set localstatedir to /var (Gentoo sets it to /var/lib) because that's what users and upstream expects.
  With it set to /var/lib/, tor expects to use directories such as /var/lib/lib/tor and /var/lib/log, which are clearly incorrect.
* Bump EAPI

Gentoo-bug: 529212

 net-misc/tor/tor-0.3.0.1_alpha-r1.ebuild | 75 ++++++++++++++++++++++++++++++++
 1 file changed, 75 insertions(+)

diff --git a/net-misc/tor/tor-0.3.0.1_alpha-r1.ebuild b/net-misc/tor/tor-0.3.0.1_alpha-r1.ebuild
new file mode 100644
index 00000000..da8ad61
--- /dev/null
+++ b/net-misc/tor/tor-0.3.0.1_alpha-r1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit flag-o-matic readme.gentoo-r1 systemd versionator user
+
+MY_PV="$(replace_version_separator 4 -)"
+MY_PF="${PN}-${MY_PV}"
+DESCRIPTION="Anonymizing overlay network for TCP"
+HOMEPAGE="http://www.torproject.org/"
+SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz
+	https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz"
+S="${WORKDIR}/${MY_PF}"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+IUSE="libressl scrypt seccomp selinux systemd tor-hardening test web"
+
+DEPEND="
+	app-text/asciidoc
+	dev-libs/libevent[ssl]
+	sys-libs/zlib
+	!libressl? ( dev-libs/openssl:0=[-bindist] )
+	libressl? ( dev-libs/libressl:0= )
+	scrypt? ( app-crypt/libscrypt )
+	seccomp? ( sys-libs/libseccomp )
+	systemd? ( sys-apps/systemd )"
+RDEPEND="${DEPEND}
+	selinux? ( sec-policy/selinux-tor )"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch
+)
+
+DOCS=( README ChangeLog ReleaseNotes doc/HACKING )
+
+pkg_setup() {
+	enewgroup tor
+	enewuser tor -1 -1 /var/lib/tor tor
+}
+
+src_configure() {
+	econf \
+		--localstatedir="${EPREFIX}/var" \
+		--enable-system-torrc \
+		--enable-asciidoc \
+		$(use_enable scrypt libscrypt) \
+		$(use_enable seccomp) \
+		$(use_enable systemd) \
+		$(use_enable tor-hardening gcc-hardening) \
+		$(use_enable tor-hardening linker-hardening) \
+		$(use_enable web tor2web-mode) \
+		$(use_enable test unittests) \
+		$(use_enable test coverage)
+}
+
+src_install() {
+	default
+	readme.gentoo_create_doc
+
+	newconfd "${FILESDIR}"/tor.confd tor
+	newinitd "${FILESDIR}"/tor.initd-r8 tor
+	systemd_dounit contrib/dist/tor.service
+
+	keepdir /var/lib/tor
+
+	fperms 750 /var/lib/tor
+	fowners tor:tor /var/lib/tor
+
+	insinto /etc/tor/
+	newins "${FILESDIR}"/torrc-r1 torrc
+}


             reply	other threads:[~2017-01-05 14:02 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-05 14:02 Anthony G. Basile [this message]
  -- strict thread matches above, loose matches on Subject: below --
2017-03-02 11:32 [gentoo-commits] repo/gentoo:master commit in: net-misc/tor/ Anthony G. Basile
2017-02-05  1:25 Anthony G. Basile
2017-01-25 16:21 Anthony G. Basile
2017-01-25 15:42 Anthony G. Basile
2017-01-25 15:42 Anthony G. Basile
2017-01-16 15:39 Jeroen Roovers
2017-01-08 18:34 Markus Meier
2017-01-04 17:09 Agostino Sarubbo
2017-01-01 22:40 Agostino Sarubbo
2016-12-20  9:23 Anthony G. Basile
2016-12-20  9:23 Anthony G. Basile
2016-12-20  9:23 Anthony G. Basile
2016-12-10 18:53 Anthony G. Basile
2016-12-05 22:40 Anthony G. Basile
2016-11-28  1:58 Anthony G. Basile
2016-11-10 17:47 Markus Meier
2016-11-09  3:32 Anthony G. Basile
2016-11-05  9:55 Jeroen Roovers
2016-10-26  8:01 Michael Palimaka
2016-10-17 23:41 Anthony G. Basile
2016-09-23 21:07 Anthony G. Basile
2016-09-23 21:07 Anthony G. Basile
2016-08-24 19:07 Anthony G. Basile
2016-08-09  7:53 Anthony G. Basile
2016-08-03  8:22 Anthony G. Basile
2016-07-07 17:59 Anthony G. Basile
2016-06-15 18:49 Anthony G. Basile
2016-06-15 18:49 Anthony G. Basile
2016-05-27  8:50 Anthony G. Basile
2016-03-28 23:16 Anthony G. Basile
2016-03-28 23:16 Anthony G. Basile
2016-03-13 12:06 Anthony G. Basile
2016-02-05 22:52 Anthony G. Basile
2016-02-05 20:46 Anthony G. Basile
2016-01-23 14:49 Markus Meier
2016-01-15  9:03 Agostino Sarubbo
2015-12-11 12:57 Anthony G. Basile
2015-12-11  9:39 Anthony G. Basile
2015-11-21  0:38 Anthony G. Basile
2015-11-21  0:38 Anthony G. Basile
2015-11-09 19:02 Fabian Groffen
2015-10-22  1:20 Anthony G. Basile
2015-10-17  0:36 Anthony G. Basile
2015-10-16  5:05 Anthony G. Basile
2015-10-05  9:17 Julian Ospald
2015-09-26 10:26 Anthony G. Basile

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1483624940.16e8cabcb136d886aed3fe3d861967b9c4e36ffd.blueness@gentoo \
    --to=blueness@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox