summaryrefslogtreecommitdiff
path: root/app-laptop/thinkfan
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-12-15 18:09:03 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-12-15 18:09:03 +0000
commit7bc9c63c9da678a7e6fceb095d56c634afd22c56 (patch)
tree4a67d50a439e9af63947e5f8b6ba3719af98b6c9 /app-laptop/thinkfan
parentb284a3168fa91a038925d2ecf5e4791011ea5e7d (diff)
gentoo resync : 15.12.2019
Diffstat (limited to 'app-laptop/thinkfan')
-rw-r--r--app-laptop/thinkfan/Manifest1
-rw-r--r--app-laptop/thinkfan/files/thinkfan-1.0.1-update-runscript.patch39
2 files changed, 0 insertions, 40 deletions
diff --git a/app-laptop/thinkfan/Manifest b/app-laptop/thinkfan/Manifest
index 097b4cdf9f7b..6f38a1eee3a9 100644
--- a/app-laptop/thinkfan/Manifest
+++ b/app-laptop/thinkfan/Manifest
@@ -1,4 +1,3 @@
-AUX thinkfan-1.0.1-update-runscript.patch 864 BLAKE2B a37f598fcf7ea7772b1bb431a5804ea4c5b0b8a20d74109b2629151109ba1e405d4b8a2a30bb3f093792863ca3ca266b4bc8d9673e2d5cc029168eae4e01f2dc SHA512 1fbe2548f42d84af599f720132b53ea9cd6374359458b7ebf0480ed6fb91386c12b72a98e71f4b10eb9d385e5397880cce2a7482c4ab057f27ead871d776ca2d
DIST thinkfan-0.9.3.tar.gz 39527 BLAKE2B e6a6d09493d94b4de9ada20dcc4b0251c5f2c148f7faa7f69c04fe2a279a9cfe253a0ea1a01fe94ed108e8731e2ba01edef5df10dfb887ea961a356dff733854 SHA512 d2a29f9cae636c22b66958f8ec50cb60a162d745c3967257bb5e20cc9e152894d4e8a66f897ffa4e49353eba4a42e3499bb9e554719974284089a46cfc6280d7
DIST thinkfan-1.0.2.tar.gz 77653 BLAKE2B 1b40553380f9b873883f0dc587665f24cd2e07de7a7e743cb9f99a3282f380da2258265a612b1c97d2945fed31aee0d6cbc30ea2a18c0b212e877e7635eda336 SHA512 d9133538096a7c5757f599adfebc8217aa7334a102573d6757f03b5c012a09d600be923930fd9d62f4afa591f5eb7a70a1c328004bddef85494d1a7ce56b648f
EBUILD thinkfan-0.9.3.ebuild 1069 BLAKE2B 0e4862e477f197efc30f9c72330e8153327325a733277220a0e65725483762e700515dc3204712d8f6af2b06c576cf17f114683993c0385383cc92c58e211318 SHA512 ffec534bfe1c1eb08c1de3858347781d6f0dc349d7f3de39196a47166e65142d649e0e889141e9c90ce193f0f984ac386ce39cc45f6e70ff971278c3b6560247
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 $?
- }