From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 98CD8138206 for ; Tue, 26 Apr 2016 17:54:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09BFFE07FE; Tue, 26 Apr 2016 17:53:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45363E07FE for ; Tue, 26 Apr 2016 17:53:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 70DAD3408A6 for ; Tue, 26 Apr 2016 17:53:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D305E188 for ; Tue, 26 Apr 2016 17:53:52 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1461693226.809fbf0ecab13dfb713cc362b42a4d05dffcca87.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/lirc/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/lirc/files/irexec-initd app-misc/lirc/files/lircd-0.8.3 app-misc/lirc/files/lircd-0.8.6 app-misc/lirc/files/lircd.conf.2 app-misc/lirc/files/modulesd.lirc X-VCS-Directories: app-misc/lirc/files/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 809fbf0ecab13dfb713cc362b42a4d05dffcca87 X-VCS-Branch: master Date: Tue, 26 Apr 2016 17:53:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ecef649a-3393-4341-8ade-5e96dae33ae8 X-Archives-Hash: 6ae05309970e7eac456752de15a0969b commit: 809fbf0ecab13dfb713cc362b42a4d05dffcca87 Author: Austin English gentoo org> AuthorDate: Tue Apr 26 17:45:00 2016 +0000 Commit: Austin English gentoo org> CommitDate: Tue Apr 26 17:53:46 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=809fbf0e app-misc/lirc: remove unused files from ${FILESDIR} Package-Manager: portage-2.2.26 app-misc/lirc/files/irexec-initd | 28 -------------------------- app-misc/lirc/files/lircd-0.8.3 | 23 ---------------------- app-misc/lirc/files/lircd-0.8.6 | 41 --------------------------------------- app-misc/lirc/files/lircd.conf.2 | 10 ---------- app-misc/lirc/files/modulesd.lirc | 22 --------------------- 5 files changed, 124 deletions(-) diff --git a/app-misc/lirc/files/irexec-initd b/app-misc/lirc/files/irexec-initd deleted file mode 100644 index 377ca0d..0000000 --- a/app-misc/lirc/files/irexec-initd +++ /dev/null @@ -1,28 +0,0 @@ -#!/sbin/runscript -# Copyright 2003 Martin Hierling -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -: ${IREXEC_USER:=root} - -depend() { - need lircd -} - -start() { - if [ "x${IREXEC_USER}" = "xroot" -a "x${IREXEC_DISABLE_ROOT_WARNING}" != "xyes" ]; then - ewarn "Warning: Running irexec as root can open security holes" - fi - - ebegin "Starting irexec" - start-stop-daemon --start --chuid ${IREXEC_USER} --user ${IREXEC_USER} --chdir / \ - --exec /usr/bin/irexec -- --daemon ${IREXEC_OPTS} - eend $? "Failed to start irexec." -} - -stop() { - ebegin "Stopping irexec" - start-stop-daemon --stop --exec /usr/bin/irexec --user ${IREXEC_USER} - eend $? "Failed to stop irexec." -} - diff --git a/app-misc/lirc/files/lircd-0.8.3 b/app-misc/lirc/files/lircd-0.8.3 deleted file mode 100644 index 50b7cae..0000000 --- a/app-misc/lirc/files/lircd-0.8.3 +++ /dev/null @@ -1,23 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -PIDFILE=/var/run/${SVCNAME}.pid - -depend() { - provide lirc -} - -start() { - ebegin "Starting lircd" - start-stop-daemon --start --quiet --pidfile "${PIDFILE}" --exec /usr/sbin/lircd -- \ - -P "${PIDFILE}" ${LIRCD_OPTS} - eend $? -} - -stop() { - ebegin "Stopping lircd" - start-stop-daemon --stop --quiet --pidfile "${PIDFILE}" --exec /usr/sbin/lircd - eend $? -} diff --git a/app-misc/lirc/files/lircd-0.8.6 b/app-misc/lirc/files/lircd-0.8.6 deleted file mode 100644 index afa79c8..0000000 --- a/app-misc/lirc/files/lircd-0.8.6 +++ /dev/null @@ -1,41 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -PIDFILE=/var/run/lirc/${SVCNAME}.pid -LIRCD_SYMLINKFILE=/dev/lircd -LIRCD_SOCKET=/var/run/lirc/lircd - -depend() { - need localmount - use modules - provide lirc -} - -start() { - local retval - ebegin "Starting lircd" - rm -f ${LIRCD_SOCKET} && ln -s ${LIRCD_SOCKET} ${LIRCD_SYMLINKFILE} - if [ $? -ne 0 ]; then - eend $? "Unable to create symbolic link ${LIRCD_SYMLINKFILE}" - return 1 - fi - - start-stop-daemon --start --quiet --pidfile "${PIDFILE}" --exec /usr/sbin/lircd -- \ - -P "${PIDFILE}" ${LIRCD_OPTS} - retval=$? - - if [ ${retval} -ne 0 ]; then - rm -f ${LIRCD_SOCKET} - fi - - eend ${retval} -} - -stop() { - ebegin "Stopping lircd" - rm -f ${LIRCD_SYMLINKFILE} - start-stop-daemon --stop --quiet --pidfile "${PIDFILE}" --exec /usr/sbin/lircd - eend $? -} diff --git a/app-misc/lirc/files/lircd.conf.2 b/app-misc/lirc/files/lircd.conf.2 deleted file mode 100644 index cfda2b8..0000000 --- a/app-misc/lirc/files/lircd.conf.2 +++ /dev/null @@ -1,10 +0,0 @@ -# Options to pass to the lircd process - -# for devices with lirc-kernel-module -#LIRCD_OPTS="-d /dev/lirc0" -#LIRCD_OPTS="-d /dev/lirc" - -# for devices using the input-layer -#LIRCD_OPTS="-H devinput -d /dev/input/by-path/pci-0000:00:0a.0--event-ir" -# This should work, Bug #235107 -#LIRCD_OPTS="-H devinput -d name=*DVB*" diff --git a/app-misc/lirc/files/modulesd.lirc b/app-misc/lirc/files/modulesd.lirc deleted file mode 100644 index d1838c5..0000000 --- a/app-misc/lirc/files/modulesd.lirc +++ /dev/null @@ -1,22 +0,0 @@ -# -# For first serial receivers: -# -#options lirc_serial irq=4 io=0x3f8 -#options lirc_sir irq=4 io=0x3f8 - -# -# Detach first serial port from serial-driver. -# Use this when you have your serial-port-driver statically -# compiled into your kernel, or as a module but loaded before -# the lirc-module. -# -#pre-install lirc_serial setserial /dev/ttyS0 uart none -# -#pre-install lirc_sir setserial /dev/ttyS0 uart none - - -# -# For parallel receivers: -# -#options lirc_parallel irq=7 io=0x3bc -