dev-perl/Proc-Daemon: Remove old

Package-Manager: portage-2.3.0_rc1
This commit is contained in:
Andreas K. Hüttel
2016-05-26 01:32:34 +02:00
parent c0930fb717
commit fe8d75bf2f
3 changed files with 0 additions and 48 deletions

View File

@@ -1,2 +1 @@
DIST Proc-Daemon-0.14.tar.gz 14464 SHA256 8010d461a146b8c288a7b321e6e41e5b47b1774cae8cd7ee66cf2deca80b6f92 SHA512 d51b62e6ada2fc6702d582244a7db6171e942d0f3311e7be39cf503a7a17b73ed40916c1430fc7366dd6c97d72eb3e7af554c2ad1bc6d8fbf240bf3a2ed630ca WHIRLPOOL 5e3aa00d66f17e39165cbbf3fc11cfb6d01ddd0d8b80c5c7c55742ae392f83ab75b111d888c9c7f9e4311ccb69d92811c650b3e67d7cd9397f3601e8a1751723
DIST Proc-Daemon-0.23.tar.gz 22782 SHA256 34c0b85b7948b431cbabc97cee580835e515ccf43badbd8339eb109474089b69 SHA512 078c4b0dc3a16ac0ccf98814a639ef1ea8009cdb3b133182761cdb5ea5e29bac2d8967ef6d2a902e15dc30e21cbd3aeff449a3efe67dfbc4f76a619491782bae WHIRLPOOL f6fe8f86cc3a97767a72cdc6af4973880bd3b62f55eb5df0f833d795bd4440b1bdfed2bbfa3a31027571bd244f5916d949c5640f7bd63a3c3bf2091cb63fa380

View File

@@ -1,22 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
MODULE_AUTHOR=DETI
MODULE_SECTION=Proc
MODULE_VERSION=0.14
inherit perl-module
DESCRIPTION="Perl Proc-Daemon - Run Perl program as a daemon process"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
IUSE="test"
DEPEND="test? ( dev-perl/Proc-ProcessTable )"
PATCHES=( "${FILESDIR}"/debian_pid.patch )
SRC_TEST="do"

View File

@@ -1,25 +0,0 @@
Description: Fix too permissive umask
Bug-Debian: http://bugs.debian.org/732283
Bug: https://rt.cpan.org/Public/Bug/Display.html?id=91450
Author: Axel Beckert <abe@debian.org>
Index: libproc-daemon-perl/lib/Proc/Daemon.pm
===================================================================
--- libproc-daemon-perl.orig/lib/Proc/Daemon.pm 2013-08-29 16:50:09.000000000 +0200
+++ libproc-daemon-perl/lib/Proc/Daemon.pm 2013-12-16 20:20:36.000000000 +0100
@@ -152,7 +152,7 @@
die "Can't <chdir> to $self->{work_dir}: $!" unless chdir $self->{work_dir};
# Clear the file creation mask.
- umask 0;
+ umask 066;
# Detach the child from the terminal (no controlling tty), make it the
# session-leader and the process-group-leader of a new process group.
@@ -633,4 +633,4 @@
return $pid;
}
-1;
\ No newline at end of file
+1;