Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: throttled-0.7
@ 2020-05-11 10:33 dawidpotocki
  2020-05-11 10:39 ` [PR PATCH] [Updated] " dawidpotocki
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: dawidpotocki @ 2020-05-11 10:33 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 678 bytes --]

There is a new pull request by dawidpotocki against master on the void-packages repository

https://github.com/dawidpotocki/void-packages throttled
https://github.com/void-linux/void-packages/pull/21833

New package: throttled-0.7
Throttled is a program to fix throttling issues (https://old.reddit.com/r/thinkpad/comments/870u0a/t480s_linux_throttling_bug/) on some Intel laptops like

* Lenovo ThinkPad T480, T480s, X1C5, X1C6, T580, L480, T470, X280, Anniversary Edition 25, E590 w/ RX 550X, P43s, E480, E580
* Dell XPS 9365, 9370, Latitude 7390 2-in-1
* Microsoft Surface Book 2

A patch file from https://github.com/void-linux/void-packages/pull/21833.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-throttled-21833.patch --]
[-- Type: text/x-diff, Size: 2610 bytes --]

From e02459200d2a6578eb5a1edc1b8e9d707c8f4bee Mon Sep 17 00:00:00 2001
From: Dawid Potocki <dawid@dawidpotocki.com>
Date: Mon, 11 May 2020 22:22:13 +1200
Subject: [PATCH] New package: throttled-0.7

---
 srcpkgs/throttled/files/lenovo_fix/run   |  2 ++
 srcpkgs/throttled/patches/setup.py.patch | 14 ++++++++++++
 srcpkgs/throttled/template               | 29 ++++++++++++++++++++++++
 3 files changed, 45 insertions(+)
 create mode 100755 srcpkgs/throttled/files/lenovo_fix/run
 create mode 100644 srcpkgs/throttled/patches/setup.py.patch
 create mode 100644 srcpkgs/throttled/template

diff --git a/srcpkgs/throttled/files/lenovo_fix/run b/srcpkgs/throttled/files/lenovo_fix/run
new file mode 100755
index 00000000000..023a31de07b
--- /dev/null
+++ b/srcpkgs/throttled/files/lenovo_fix/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+PYTHONUNBUFFERED=1 exec python3 @PATH@/lenovo_fix/lenovo_fix.py
diff --git a/srcpkgs/throttled/patches/setup.py.patch b/srcpkgs/throttled/patches/setup.py.patch
new file mode 100644
index 00000000000..a98a5db78d1
--- /dev/null
+++ b/srcpkgs/throttled/patches/setup.py.patch
@@ -0,0 +1,14 @@
+--- /dev/null
++++ setup.py
+@@ -0,0 +1,11 @@
++from setuptools import setup
++
++setup(
++    name='lenovo_fix',
++    version='@VERSION@',
++    description='Workaround for Intel throttling issues in Linux',
++    author='Francesco Palmarini',
++    author_email='palmarini@unive.it',
++    url='https://github.com/erpalma/throttled',
++    license='MIT',
++)
diff --git a/srcpkgs/throttled/template b/srcpkgs/throttled/template
new file mode 100644
index 00000000000..87f0acc9c0b
--- /dev/null
+++ b/srcpkgs/throttled/template
@@ -0,0 +1,29 @@
+# Template file for 'throttled'
+pkgname=throttled
+version=0.7
+revision=1
+wrksrc=throttled-${version}
+build_style=python3-module
+conf_files="/etc/lenovo_fix.conf"
+makedepends="python3-setuptools"
+depends="python3-dbus python3-gobject"
+short_desc="Workaround for Intel throttling issues in Linux"
+maintainer="Dawid Potocki <dawid@dawidpotocki.com>"
+license="MIT"
+homepage="https://github.com/erpalma/throttled"
+distfiles="https://github.com/erpalma/throttled/archive/v${version}.tar.gz"
+checksum=64f139b3fd6f13381105f30ed4598faa69e59bfd613d26dfde29f46578b0b2a1
+pycompile_module="lenovo_fix"
+
+pre_build() {
+	sed -i "s/@VERSION@/${version}/" setup.py
+}
+
+post_install() {
+	vinstall mmio.py 644 ${py3_sitelib}/lenovo_fix mmio.py
+	vinstall lenovo_fix.py 644 ${py3_sitelib}/lenovo_fix lenovo_fix.py
+	vconf etc/lenovo_fix.conf
+	vsv lenovo_fix
+	sed -i "s|@PATH@|${py3_sitelib}|" ${DESTDIR}/etc/sv/lenovo_fix/run
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] New package: throttled-0.7
  2020-05-11 10:33 [PR PATCH] New package: throttled-0.7 dawidpotocki
@ 2020-05-11 10:39 ` dawidpotocki
  2020-05-11 10:44 ` dawidpotocki
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: dawidpotocki @ 2020-05-11 10:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 683 bytes --]

There is an updated pull request by dawidpotocki against master on the void-packages repository

https://github.com/dawidpotocki/void-packages throttled
https://github.com/void-linux/void-packages/pull/21833

New package: throttled-0.7
Throttled is a program to fix throttling issues (https://old.reddit.com/r/thinkpad/comments/870u0a/t480s_linux_throttling_bug/) on some Intel laptops like

* Lenovo ThinkPad T480, T480s, X1C5, X1C6, T580, L480, T470, X280, Anniversary Edition 25, E590 w/ RX 550X, P43s, E480, E580
* Dell XPS 9365, 9370, Latitude 7390 2-in-1
* Microsoft Surface Book 2

A patch file from https://github.com/void-linux/void-packages/pull/21833.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-throttled-21833.patch --]
[-- Type: text/x-diff, Size: 2610 bytes --]

From 227124a5c4bc8c4ff5f5d525ae202cc6ab03fa7b Mon Sep 17 00:00:00 2001
From: Dawid Potocki <dawid@dawidpotocki.com>
Date: Mon, 11 May 2020 22:22:13 +1200
Subject: [PATCH] New package: throttled-0.7

---
 srcpkgs/throttled/files/lenovo_fix/run   |  2 ++
 srcpkgs/throttled/patches/setup.py.patch | 14 ++++++++++++
 srcpkgs/throttled/template               | 29 ++++++++++++++++++++++++
 3 files changed, 45 insertions(+)
 create mode 100755 srcpkgs/throttled/files/lenovo_fix/run
 create mode 100644 srcpkgs/throttled/patches/setup.py.patch
 create mode 100644 srcpkgs/throttled/template

diff --git a/srcpkgs/throttled/files/lenovo_fix/run b/srcpkgs/throttled/files/lenovo_fix/run
new file mode 100755
index 00000000000..023a31de07b
--- /dev/null
+++ b/srcpkgs/throttled/files/lenovo_fix/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+PYTHONUNBUFFERED=1 exec python3 @PATH@/lenovo_fix/lenovo_fix.py
diff --git a/srcpkgs/throttled/patches/setup.py.patch b/srcpkgs/throttled/patches/setup.py.patch
new file mode 100644
index 00000000000..a98a5db78d1
--- /dev/null
+++ b/srcpkgs/throttled/patches/setup.py.patch
@@ -0,0 +1,14 @@
+--- /dev/null
++++ setup.py
+@@ -0,0 +1,11 @@
++from setuptools import setup
++
++setup(
++    name='lenovo_fix',
++    version='@VERSION@',
++    description='Workaround for Intel throttling issues in Linux',
++    author='Francesco Palmarini',
++    author_email='palmarini@unive.it',
++    url='https://github.com/erpalma/throttled',
++    license='MIT',
++)
diff --git a/srcpkgs/throttled/template b/srcpkgs/throttled/template
new file mode 100644
index 00000000000..d3b6a4f573f
--- /dev/null
+++ b/srcpkgs/throttled/template
@@ -0,0 +1,29 @@
+# Template file for 'throttled'
+pkgname=throttled
+version=0.7
+revision=1
+wrksrc=throttled-${version}
+build_style=python3-module
+conf_files="/etc/lenovo_fix.conf"
+pycompile_module="lenovo_fix"
+makedepends="python3-setuptools"
+depends="python3-dbus python3-gobject"
+short_desc="Workaround for Intel throttling issues in Linux"
+maintainer="Dawid Potocki <dawid@dawidpotocki.com>"
+license="MIT"
+homepage="https://github.com/erpalma/throttled"
+distfiles="https://github.com/erpalma/throttled/archive/v${version}.tar.gz"
+checksum=64f139b3fd6f13381105f30ed4598faa69e59bfd613d26dfde29f46578b0b2a1
+
+pre_build() {
+	sed -i "s/@VERSION@/${version}/" setup.py
+}
+
+post_install() {
+	vinstall mmio.py 644 ${py3_sitelib}/lenovo_fix mmio.py
+	vinstall lenovo_fix.py 644 ${py3_sitelib}/lenovo_fix lenovo_fix.py
+	vconf etc/lenovo_fix.conf
+	vsv lenovo_fix
+	sed -i "s|@PATH@|${py3_sitelib}|" ${DESTDIR}/etc/sv/lenovo_fix/run
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] New package: throttled-0.7
  2020-05-11 10:33 [PR PATCH] New package: throttled-0.7 dawidpotocki
  2020-05-11 10:39 ` [PR PATCH] [Updated] " dawidpotocki
@ 2020-05-11 10:44 ` dawidpotocki
  2020-05-11 10:58 ` dawidpotocki
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: dawidpotocki @ 2020-05-11 10:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 683 bytes --]

There is an updated pull request by dawidpotocki against master on the void-packages repository

https://github.com/dawidpotocki/void-packages throttled
https://github.com/void-linux/void-packages/pull/21833

New package: throttled-0.7
Throttled is a program to fix throttling issues (https://old.reddit.com/r/thinkpad/comments/870u0a/t480s_linux_throttling_bug/) on some Intel laptops like

* Lenovo ThinkPad T480, T480s, X1C5, X1C6, T580, L480, T470, X280, Anniversary Edition 25, E590 w/ RX 550X, P43s, E480, E580
* Dell XPS 9365, 9370, Latitude 7390 2-in-1
* Microsoft Surface Book 2

A patch file from https://github.com/void-linux/void-packages/pull/21833.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-throttled-21833.patch --]
[-- Type: text/x-diff, Size: 2579 bytes --]

From 1f0bc442973a0cde62dc847575a80a31e31c7976 Mon Sep 17 00:00:00 2001
From: Dawid Potocki <dawid@dawidpotocki.com>
Date: Mon, 11 May 2020 22:22:13 +1200
Subject: [PATCH] New package: throttled-0.7

---
 srcpkgs/throttled/files/lenovo_fix/run   |  2 ++
 srcpkgs/throttled/patches/setup.py.patch | 14 ++++++++++++
 srcpkgs/throttled/template               | 28 ++++++++++++++++++++++++
 3 files changed, 44 insertions(+)
 create mode 100755 srcpkgs/throttled/files/lenovo_fix/run
 create mode 100644 srcpkgs/throttled/patches/setup.py.patch
 create mode 100644 srcpkgs/throttled/template

diff --git a/srcpkgs/throttled/files/lenovo_fix/run b/srcpkgs/throttled/files/lenovo_fix/run
new file mode 100755
index 00000000000..023a31de07b
--- /dev/null
+++ b/srcpkgs/throttled/files/lenovo_fix/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+PYTHONUNBUFFERED=1 exec python3 @PATH@/lenovo_fix/lenovo_fix.py
diff --git a/srcpkgs/throttled/patches/setup.py.patch b/srcpkgs/throttled/patches/setup.py.patch
new file mode 100644
index 00000000000..a98a5db78d1
--- /dev/null
+++ b/srcpkgs/throttled/patches/setup.py.patch
@@ -0,0 +1,14 @@
+--- /dev/null
++++ setup.py
+@@ -0,0 +1,11 @@
++from setuptools import setup
++
++setup(
++    name='lenovo_fix',
++    version='@VERSION@',
++    description='Workaround for Intel throttling issues in Linux',
++    author='Francesco Palmarini',
++    author_email='palmarini@unive.it',
++    url='https://github.com/erpalma/throttled',
++    license='MIT',
++)
diff --git a/srcpkgs/throttled/template b/srcpkgs/throttled/template
new file mode 100644
index 00000000000..4e8587b2a6a
--- /dev/null
+++ b/srcpkgs/throttled/template
@@ -0,0 +1,28 @@
+# Template file for 'throttled'
+pkgname=throttled
+version=0.7
+revision=1
+wrksrc=throttled-${version}
+build_style=python3-module
+conf_files="/etc/lenovo_fix.conf"
+makedepends="python3-setuptools"
+depends="python3-dbus python3-gobject"
+short_desc="Workaround for Intel throttling issues in Linux"
+maintainer="Dawid Potocki <dawid@dawidpotocki.com>"
+license="MIT"
+homepage="https://github.com/erpalma/throttled"
+distfiles="https://github.com/erpalma/throttled/archive/v${version}.tar.gz"
+checksum=64f139b3fd6f13381105f30ed4598faa69e59bfd613d26dfde29f46578b0b2a1
+
+pre_build() {
+	sed -i "s/@VERSION@/${version}/" setup.py
+}
+
+post_install() {
+	vinstall mmio.py 644 ${py3_sitelib}/lenovo_fix mmio.py
+	vinstall lenovo_fix.py 644 ${py3_sitelib}/lenovo_fix lenovo_fix.py
+	vconf etc/lenovo_fix.conf
+	vsv lenovo_fix
+	sed -i "s|@PATH@|${py3_sitelib}|" ${DESTDIR}/etc/sv/lenovo_fix/run
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] New package: throttled-0.7
  2020-05-11 10:33 [PR PATCH] New package: throttled-0.7 dawidpotocki
  2020-05-11 10:39 ` [PR PATCH] [Updated] " dawidpotocki
  2020-05-11 10:44 ` dawidpotocki
@ 2020-05-11 10:58 ` dawidpotocki
  2020-08-05 14:03 ` dawidpotocki
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: dawidpotocki @ 2020-05-11 10:58 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 683 bytes --]

There is an updated pull request by dawidpotocki against master on the void-packages repository

https://github.com/dawidpotocki/void-packages throttled
https://github.com/void-linux/void-packages/pull/21833

New package: throttled-0.7
Throttled is a program to fix throttling issues (https://old.reddit.com/r/thinkpad/comments/870u0a/t480s_linux_throttling_bug/) on some Intel laptops like

* Lenovo ThinkPad T480, T480s, X1C5, X1C6, T580, L480, T470, X280, Anniversary Edition 25, E590 w/ RX 550X, P43s, E480, E580
* Dell XPS 9365, 9370, Latitude 7390 2-in-1
* Microsoft Surface Book 2

A patch file from https://github.com/void-linux/void-packages/pull/21833.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-throttled-21833.patch --]
[-- Type: text/x-diff, Size: 2583 bytes --]

From 2840123e15faeeb7ddd3b0abdbd74eec20df8f43 Mon Sep 17 00:00:00 2001
From: Dawid Potocki <dawid@dawidpotocki.com>
Date: Mon, 11 May 2020 22:22:13 +1200
Subject: [PATCH] New package: throttled-0.7

---
 srcpkgs/throttled/files/lenovo_fix/run   |  2 ++
 srcpkgs/throttled/patches/setup.py.patch | 14 ++++++++++++
 srcpkgs/throttled/template               | 28 ++++++++++++++++++++++++
 3 files changed, 44 insertions(+)
 create mode 100755 srcpkgs/throttled/files/lenovo_fix/run
 create mode 100644 srcpkgs/throttled/patches/setup.py.patch
 create mode 100644 srcpkgs/throttled/template

diff --git a/srcpkgs/throttled/files/lenovo_fix/run b/srcpkgs/throttled/files/lenovo_fix/run
new file mode 100755
index 00000000000..023a31de07b
--- /dev/null
+++ b/srcpkgs/throttled/files/lenovo_fix/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+PYTHONUNBUFFERED=1 exec python3 @PATH@/lenovo_fix/lenovo_fix.py
diff --git a/srcpkgs/throttled/patches/setup.py.patch b/srcpkgs/throttled/patches/setup.py.patch
new file mode 100644
index 00000000000..a98a5db78d1
--- /dev/null
+++ b/srcpkgs/throttled/patches/setup.py.patch
@@ -0,0 +1,14 @@
+--- /dev/null
++++ setup.py
+@@ -0,0 +1,11 @@
++from setuptools import setup
++
++setup(
++    name='lenovo_fix',
++    version='@VERSION@',
++    description='Workaround for Intel throttling issues in Linux',
++    author='Francesco Palmarini',
++    author_email='palmarini@unive.it',
++    url='https://github.com/erpalma/throttled',
++    license='MIT',
++)
diff --git a/srcpkgs/throttled/template b/srcpkgs/throttled/template
new file mode 100644
index 00000000000..a9868d3f989
--- /dev/null
+++ b/srcpkgs/throttled/template
@@ -0,0 +1,28 @@
+# Template file for 'throttled'
+pkgname=throttled
+version=0.7
+revision=1
+wrksrc=throttled-${version}
+build_style=python3-module
+conf_files="/etc/lenovo_fix.conf"
+hostmakedepends="python3-setuptools"
+depends="python3-dbus python3-gobject"
+short_desc="Workaround for Intel throttling issues in Linux"
+maintainer="Dawid Potocki <dawid@dawidpotocki.com>"
+license="MIT"
+homepage="https://github.com/erpalma/throttled"
+distfiles="https://github.com/erpalma/throttled/archive/v${version}.tar.gz"
+checksum=64f139b3fd6f13381105f30ed4598faa69e59bfd613d26dfde29f46578b0b2a1
+
+pre_build() {
+	sed -i "s/@VERSION@/${version}/" setup.py
+}
+
+post_install() {
+	vinstall mmio.py 644 ${py3_sitelib}/lenovo_fix mmio.py
+	vinstall lenovo_fix.py 644 ${py3_sitelib}/lenovo_fix lenovo_fix.py
+	vconf etc/lenovo_fix.conf
+	vsv lenovo_fix
+	sed -i "s|@PATH@|${py3_sitelib}|" ${DESTDIR}/etc/sv/lenovo_fix/run
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] New package: throttled-0.7
  2020-05-11 10:33 [PR PATCH] New package: throttled-0.7 dawidpotocki
                   ` (2 preceding siblings ...)
  2020-05-11 10:58 ` dawidpotocki
@ 2020-08-05 14:03 ` dawidpotocki
  2021-07-20 19:48 ` [PR REVIEW] " ericonr
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: dawidpotocki @ 2020-08-05 14:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 683 bytes --]

There is an updated pull request by dawidpotocki against master on the void-packages repository

https://github.com/dawidpotocki/void-packages throttled
https://github.com/void-linux/void-packages/pull/21833

New package: throttled-0.7
Throttled is a program to fix throttling issues (https://old.reddit.com/r/thinkpad/comments/870u0a/t480s_linux_throttling_bug/) on some Intel laptops like

* Lenovo ThinkPad T480, T480s, X1C5, X1C6, T580, L480, T470, X280, Anniversary Edition 25, E590 w/ RX 550X, P43s, E480, E580
* Dell XPS 9365, 9370, Latitude 7390 2-in-1
* Microsoft Surface Book 2

A patch file from https://github.com/void-linux/void-packages/pull/21833.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-throttled-21833.patch --]
[-- Type: text/x-diff, Size: 2554 bytes --]

From 5b969d2f70330dedd3a92aabf80cf9e13bdd84a3 Mon Sep 17 00:00:00 2001
From: Dawid Potocki <dawid@dawidpotocki.com>
Date: Mon, 11 May 2020 22:22:13 +1200
Subject: [PATCH] New package: throttled-0.7

---
 srcpkgs/throttled/files/lenovo_fix/run   |  2 ++
 srcpkgs/throttled/patches/setup.py.patch | 14 ++++++++++++
 srcpkgs/throttled/template               | 27 ++++++++++++++++++++++++
 3 files changed, 43 insertions(+)
 create mode 100755 srcpkgs/throttled/files/lenovo_fix/run
 create mode 100644 srcpkgs/throttled/patches/setup.py.patch
 create mode 100644 srcpkgs/throttled/template

diff --git a/srcpkgs/throttled/files/lenovo_fix/run b/srcpkgs/throttled/files/lenovo_fix/run
new file mode 100755
index 00000000000..023a31de07b
--- /dev/null
+++ b/srcpkgs/throttled/files/lenovo_fix/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+PYTHONUNBUFFERED=1 exec python3 @PATH@/lenovo_fix/lenovo_fix.py
diff --git a/srcpkgs/throttled/patches/setup.py.patch b/srcpkgs/throttled/patches/setup.py.patch
new file mode 100644
index 00000000000..a98a5db78d1
--- /dev/null
+++ b/srcpkgs/throttled/patches/setup.py.patch
@@ -0,0 +1,14 @@
+--- /dev/null
++++ setup.py
+@@ -0,0 +1,11 @@
++from setuptools import setup
++
++setup(
++    name='lenovo_fix',
++    version='@VERSION@',
++    description='Workaround for Intel throttling issues in Linux',
++    author='Francesco Palmarini',
++    author_email='palmarini@unive.it',
++    url='https://github.com/erpalma/throttled',
++    license='MIT',
++)
diff --git a/srcpkgs/throttled/template b/srcpkgs/throttled/template
new file mode 100644
index 00000000000..2446ad11b88
--- /dev/null
+++ b/srcpkgs/throttled/template
@@ -0,0 +1,27 @@
+# Template file for 'throttled'
+pkgname=throttled
+version=0.7
+revision=1
+build_style=python3-module
+conf_files="/etc/lenovo_fix.conf"
+hostmakedepends="python3-setuptools"
+depends="python3-dbus python3-gobject"
+short_desc="Workaround for Intel throttling issues in Linux"
+maintainer="Dawid Potocki <dawid@dawidpotocki.com>"
+license="MIT"
+homepage="https://github.com/erpalma/throttled"
+distfiles="https://github.com/erpalma/throttled/archive/v${version}.tar.gz"
+checksum=64f139b3fd6f13381105f30ed4598faa69e59bfd613d26dfde29f46578b0b2a1
+
+pre_build() {
+	sed -i "s/@VERSION@/${version}/" setup.py
+}
+
+post_install() {
+	vinstall mmio.py 644 ${py3_sitelib}/lenovo_fix mmio.py
+	vinstall lenovo_fix.py 644 ${py3_sitelib}/lenovo_fix lenovo_fix.py
+	vconf etc/lenovo_fix.conf
+	vsv lenovo_fix
+	sed -i "s|@PATH@|${py3_sitelib}|" ${DESTDIR}/etc/sv/lenovo_fix/run
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR REVIEW] New package: throttled-0.7
  2020-05-11 10:33 [PR PATCH] New package: throttled-0.7 dawidpotocki
                   ` (3 preceding siblings ...)
  2020-08-05 14:03 ` dawidpotocki
@ 2021-07-20 19:48 ` ericonr
  2021-07-20 19:48 ` ericonr
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: ericonr @ 2021-07-20 19:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 158 bytes --]

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/21833#discussion_r673430797

Comment:
Use `vsed`.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR REVIEW] New package: throttled-0.7
  2020-05-11 10:33 [PR PATCH] New package: throttled-0.7 dawidpotocki
                   ` (4 preceding siblings ...)
  2021-07-20 19:48 ` [PR REVIEW] " ericonr
@ 2021-07-20 19:48 ` ericonr
  2021-07-20 19:48 ` ericonr
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: ericonr @ 2021-07-20 19:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 170 bytes --]

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/21833#discussion_r673430314

Comment:
Please upstream this :)

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR REVIEW] New package: throttled-0.7
  2020-05-11 10:33 [PR PATCH] New package: throttled-0.7 dawidpotocki
                   ` (5 preceding siblings ...)
  2021-07-20 19:48 ` ericonr
@ 2021-07-20 19:48 ` ericonr
  2021-07-20 19:48 ` ericonr
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: ericonr @ 2021-07-20 19:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 166 bytes --]

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/21833#discussion_r673430902

Comment:
And `vsed` as well.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR REVIEW] New package: throttled-0.7
  2020-05-11 10:33 [PR PATCH] New package: throttled-0.7 dawidpotocki
                   ` (6 preceding siblings ...)
  2021-07-20 19:48 ` ericonr
@ 2021-07-20 19:48 ` ericonr
  2021-07-21 10:59 ` [PR PATCH] [Closed]: " dawidpotocki
  2021-07-21 10:59 ` dawidpotocki
  9 siblings, 0 replies; 11+ messages in thread
From: ericonr @ 2021-07-20 19:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 159 bytes --]

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/21833#discussion_r673430159

Comment:
0.9.2 is out

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Closed]: New package: throttled-0.7
  2020-05-11 10:33 [PR PATCH] New package: throttled-0.7 dawidpotocki
                   ` (7 preceding siblings ...)
  2021-07-20 19:48 ` ericonr
@ 2021-07-21 10:59 ` dawidpotocki
  2021-07-21 10:59 ` dawidpotocki
  9 siblings, 0 replies; 11+ messages in thread
From: dawidpotocki @ 2021-07-21 10:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 515 bytes --]

There's a closed pull request on the void-packages repository

New package: throttled-0.7
https://github.com/void-linux/void-packages/pull/21833

Description:
Throttled is a program to fix throttling issues (https://old.reddit.com/r/thinkpad/comments/870u0a/t480s_linux_throttling_bug/) on some Intel laptops like

* Lenovo ThinkPad T480, T480s, X1C5, X1C6, T580, L480, T470, X280, Anniversary Edition 25, E590 w/ RX 550X, P43s, E480, E580
* Dell XPS 9365, 9370, Latitude 7390 2-in-1
* Microsoft Surface Book 2

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: New package: throttled-0.7
  2020-05-11 10:33 [PR PATCH] New package: throttled-0.7 dawidpotocki
                   ` (8 preceding siblings ...)
  2021-07-21 10:59 ` [PR PATCH] [Closed]: " dawidpotocki
@ 2021-07-21 10:59 ` dawidpotocki
  9 siblings, 0 replies; 11+ messages in thread
From: dawidpotocki @ 2021-07-21 10:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 242 bytes --]

New comment by dawidpotocki on void-packages repository

https://github.com/void-linux/void-packages/pull/21833#issuecomment-884098795

Comment:
I do not use Void Linux anymore and I do not plan to update this PR to
get this package merged.

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2021-07-21 10:59 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-11 10:33 [PR PATCH] New package: throttled-0.7 dawidpotocki
2020-05-11 10:39 ` [PR PATCH] [Updated] " dawidpotocki
2020-05-11 10:44 ` dawidpotocki
2020-05-11 10:58 ` dawidpotocki
2020-08-05 14:03 ` dawidpotocki
2021-07-20 19:48 ` [PR REVIEW] " ericonr
2021-07-20 19:48 ` ericonr
2021-07-20 19:48 ` ericonr
2021-07-20 19:48 ` ericonr
2021-07-21 10:59 ` [PR PATCH] [Closed]: " dawidpotocki
2021-07-21 10:59 ` dawidpotocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).