summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2019-11-21 15:32:32 +0100
committerAaron Bauman <bman@gentoo.org>2019-11-23 19:40:29 -0500
commitfa89acafec3679d9e8a62dcd1c7dfe83dfba32f3 (patch)
treee6e749943c4879908332c6fc486f627d6286629a /app-laptop/thinkfan
parentsys-fs/cryptsetup: remove unused files (diff)
downloadgentoo-fa89acafec3679d9e8a62dcd1c7dfe83dfba32f3.tar.gz
gentoo-fa89acafec3679d9e8a62dcd1c7dfe83dfba32f3.tar.bz2
gentoo-fa89acafec3679d9e8a62dcd1c7dfe83dfba32f3.zip
app-laptop/thinkfan: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/13729 Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'app-laptop/thinkfan')
-rw-r--r--app-laptop/thinkfan/files/thinkfan-1.0.1-update-runscript.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/app-laptop/thinkfan/files/thinkfan-1.0.1-update-runscript.patch b/app-laptop/thinkfan/files/thinkfan-1.0.1-update-runscript.patch
deleted file mode 100644
index a0896af3d264..000000000000
--- a/app-laptop/thinkfan/files/thinkfan-1.0.1-update-runscript.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-https://github.com/vmatare/thinkfan/pull/61
-
---- a/rcscripts/openrc/thinkfan.cmake
-+++ b/rcscripts/openrc/thinkfan.cmake
-@@ -1,26 +1,19 @@
- #!/sbin/openrc-run
-
-+command="@CMAKE_INSTALL_PREFIX@/sbin/thinkfan"
-+command_args="-q -s5 -c /etc/thinkfan.conf"
-+pidfile="@PID_FILE@"
-+
- extra_started_commands="reload"
-
-+required_files="/etc/thinkfan.conf"
-+
- depend() {
- after modules
- }
-
--start() {
-- ebegin "Starting thinkfan"
-- start-stop-daemon --start --exec @CMAKE_INSTALL_PREFIX@/sbin/thinkfan -- -q -s5 -c /etc/thinkfan.conf
-- eend $?
--}
--
--stop() {
-- ebegin "Stopping thinkfan"
-- start-stop-daemon --stop --exec @CMAKE_INSTALL_PREFIX@/sbin/thinkfan
-- eend $?
--}
--
- reload() {
-- PID=$(<@PID_FILE@)
-- ebegin "Sending SIGHUP to thinkfan($PID)"
-- kill -HUP $PID
-+ ebegin "Reloading ${SVCNAME}"
-+ start-stop-daemon --signal HUP --pidfile "${pidfile}"
- eend $?
- }