diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2014-12-14 18:56:07 +0000 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2014-12-14 18:56:07 +0000 |
commit | 4b0abcd7ba2993ff7825846da251842aa81a4c46 (patch) | |
tree | 8a0922163213e215f6970200f37f093cd53ce8ee /dev-perl/Mail-SRS | |
parent | Add ~amd64-fbsd keyword wrt bug #531172 (diff) | |
download | gentoo-2-4b0abcd7ba2993ff7825846da251842aa81a4c46.tar.gz gentoo-2-4b0abcd7ba2993ff7825846da251842aa81a4c46.tar.bz2 gentoo-2-4b0abcd7ba2993ff7825846da251842aa81a4c46.zip |
Revision bump: add {init,conf}.d files as requested by user. Fix #462920.
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-perl/Mail-SRS')
-rw-r--r-- | dev-perl/Mail-SRS/ChangeLog | 8 | ||||
-rw-r--r-- | dev-perl/Mail-SRS/Mail-SRS-0.310.0-r2.ebuild | 47 | ||||
-rw-r--r-- | dev-perl/Mail-SRS/files/srsd.conf | 57 | ||||
-rw-r--r-- | dev-perl/Mail-SRS/files/srsd.init | 54 |
4 files changed, 165 insertions, 1 deletions
diff --git a/dev-perl/Mail-SRS/ChangeLog b/dev-perl/Mail-SRS/ChangeLog index 9859cf6fe48c..3a7c8685b528 100644 --- a/dev-perl/Mail-SRS/ChangeLog +++ b/dev-perl/Mail-SRS/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-perl/Mail-SRS # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SRS/ChangeLog,v 1.16 2014/08/24 01:14:08 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SRS/ChangeLog,v 1.17 2014/12/14 18:56:07 monsieurp Exp $ + +*Mail-SRS-0.310.0-r2 (14 Dec 2014) + + 14 Dec 2014; Patrice Clement <monsieurp@gentoo.org> + +Mail-SRS-0.310.0-r2.ebuild, +files/srsd.conf, +files/srsd.init: + Revision bump: add {init,conf}.d files as requested by user. Fix #462920. *Mail-SRS-0.310.0-r1 (24 Aug 2014) diff --git a/dev-perl/Mail-SRS/Mail-SRS-0.310.0-r2.ebuild b/dev-perl/Mail-SRS/Mail-SRS-0.310.0-r2.ebuild new file mode 100644 index 000000000000..6c60ad6ac7e8 --- /dev/null +++ b/dev-perl/Mail-SRS/Mail-SRS-0.310.0-r2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SRS/Mail-SRS-0.310.0-r2.ebuild,v 1.1 2014/12/14 18:56:07 monsieurp Exp $ + +EAPI=5 + +MODULE_AUTHOR=SHEVEK +MODULE_VERSION=0.31 +inherit perl-module + +DESCRIPTION="Interface to Sender Rewriting Scheme" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + >=dev-perl/Digest-HMAC-1.01-r1 + >=dev-perl/MLDBM-2.01 + >=virtual/perl-DB_File-1.807 + >=virtual/perl-Digest-MD5-2.33 + >=virtual/perl-Storable-2.04-r1" +DEPEND="${RDEPEND} + test? ( + >=dev-perl/Test-Pod-1.00 + >=dev-perl/Test-Pod-Coverage-0.02 + )" + +SRC_TEST="do" + +src_install() { + perl-module_src_install + + newinitd "${FILESDIR}/srsd.init" srsd + newconfd "${FILESDIR}/srsd.conf" srsd +} + +pkg_postinst() { + einfo 'NOTE: srsd default configuration is to use a secret string.' + einfo 'You can configure this value in /etc/conf.d/srsd.' + einfo '' + einfo 'You cannot use both --secret and --secretfile options combined.' + einfo 'The former will override the latter.' + einfo '' + einfo 'If you want to use a secret file, make sure the file' + einfo 'is NOT empty and contains characters.' +} diff --git a/dev-perl/Mail-SRS/files/srsd.conf b/dev-perl/Mail-SRS/files/srsd.conf new file mode 100644 index 000000000000..116fa4675feb --- /dev/null +++ b/dev-perl/Mail-SRS/files/srsd.conf @@ -0,0 +1,57 @@ +# conf.d file for srsd +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SRS/files/srsd.conf,v 1.1 2014/12/14 18:56:07 monsieurp Exp $ + +# Options available (copied from the man page): +# +# --separator +# String, specified at most once. Defaults to $SRSSEP ("="). +# Specify the initial separator for the SRS address. See Mail::SRS for +# details. +# +SRSD_SEPARATOR='=' + +# +# --secret +# String, may be specified multiple times, at least one of --secret or +# --secretfile must be specified. +# +# --secret will specify a primary secret and override --secretfile if both are +# specified. However, secrets read from --secretfile will still be used for +# decoding if both are specified. +# +# Specify an SRS secret. The first specified secret is used for encoding. All +# secrets are used for decoding. +# +# This is a dummy value. Change it to something more relevant. +SRSD_SECRET_STRING='mysecretstring' + +# +# --secretfile +# String, specified at most once, at least one of --secret or --secretfile must +# be specified. +# +# A file to read for secrets. Secrets are specified once per line. The first +# specified secret is used for encoding. Secrets are written one per line. Blank +# lines and lines starting with a # are ignored. If --secret is not given, then +# the secret file must be nonempty. +# +# This is a dummy value. Change the value as you see fit. +# SRSD_SECRET_FILE='/etc/mysecretfile' + +# +# --hashlength +# Integer, may be specified at most once, defaults to 4. +SRSD_HASHLENGHT=4 + +# +# Note: You cannot use both --secret and --secretfile options. +# The former will override the latter. + +# Stick options you wish to use in SRSD_OPTS +SRSD_OPTS=" +--secret=${SRSD_SECRET_STRING} +--separator=${SRSD_SEPARATOR} +--hashlength=${SRSD_HASHLENGHT} +" diff --git a/dev-perl/Mail-SRS/files/srsd.init b/dev-perl/Mail-SRS/files/srsd.init new file mode 100644 index 000000000000..4b5313edbc0a --- /dev/null +++ b/dev-perl/Mail-SRS/files/srsd.init @@ -0,0 +1,54 @@ +#!/sbin/runscript +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-SRS/files/srsd.init,v 1.1 2014/12/14 18:56:07 monsieurp Exp $ + +pidfile="/var/run/srsd.pid" +command="/usr/bin/srsd" +command_args="${SRSD_OPTS}" + +depend() { + use logger +} + +start_pre() { + if [[ ! -z ${SRSD_SECRET_FILE} ]]; then + # check for secret file + checkpath --file --owner root:root --mode 0644 ${SRSD_SECRET_FILE} + + # srsd complains if the secret file is empty + # check for characters in it + grep -q '.' ${SRSD_SECRET_FILE} + + # grep returns 0 if a match has been found + # 1 otherwise + local retval=$? + if [[ $retval -ne 0 ]]; then + eerror "Secret file \"${SRSD_SECRET_FILE}\" must NOT be empty." + return 1 + fi + fi + + return 0 +} + +start() { + ebegin 'Starting srsd' + start-stop-daemon \ + --start \ + --background \ + --pidfile ${pidfile} \ + --make-pidfile \ + --exec ${command} \ + -- ${command_args} + eend $? +} + +stop() { + ebegin 'Stopping srsd' + start-stop-daemon \ + --stop \ + --pidfile ${pidfile} \ + --exec ${command} + eend $? +} |