public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Arthur Zamarin" <arthurzam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-power/tlp/
Date: Thu, 13 Jun 2024 18:59:51 +0000 (UTC)	[thread overview]
Message-ID: <1718305162.26ff0eb8ad652bc84be2f434de1d2aa250b46025.arthurzam@gentoo> (raw)

commit:     26ff0eb8ad652bc84be2f434de1d2aa250b46025
Author:     Jay Faulkner <jay <AT> jvf <DOT> cc>
AuthorDate: Thu Jun 13 18:56:45 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 13 18:59:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26ff0eb8

sys-power/tlp: drop 1.5.0-r2, 1.6.0

Signed-off-by: Jay Faulkner <jay <AT> jvf.cc>
Closes: https://github.com/gentoo/gentoo/pull/37146
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-power/tlp/Manifest            |  2 --
 sys-power/tlp/tlp-1.5.0-r2.ebuild | 48 ---------------------------------------
 sys-power/tlp/tlp-1.6.0.ebuild    | 48 ---------------------------------------
 3 files changed, 98 deletions(-)

diff --git a/sys-power/tlp/Manifest b/sys-power/tlp/Manifest
index 38fbbac802ee..798da5e2b3d3 100644
--- a/sys-power/tlp/Manifest
+++ b/sys-power/tlp/Manifest
@@ -1,3 +1 @@
-DIST tlp-1.5.0.tar.gz 126447 BLAKE2B cdd2a5d094d1146a534de07cc646fd428a97f8d40c3d4ed5ec0522848ebe3a4182e36617854feeab7fa8923f7e7ef6797623a09609fdfa2a2b5dda321b188b31 SHA512 93be83f276b902467049160c20a546cdf2f0ec221274bbb4761bf89a8da09f10a494ce2f36379ef9be48ca2e7325de8e582f5dbb823e2ddd339366bae1228122
-DIST tlp-1.6.0.tar.gz 143444 BLAKE2B 71e43312583eeb644ffc7daedef1b100be47b44f0e96160f5fe08e3aa0c33958200b8a652e4a3254af828f2e929ba033a0562595e93911dcef460a22fc8674c5 SHA512 66c8fd736912771718da44e2117cfc51ab8ba8c76607cb9de8facbe73a648832a50ac7f00055fa2b315c71ad58762961851d7ccb96b7d8c6451529a7868045db
 DIST tlp-1.6.1.tar.gz 143688 BLAKE2B e7ddc8c792bf9911204556f6845da27e0c8722b5dc25b4b855c044a7d6b27662b6bad607532b631ea3766651f43321fda21ca1b51a01955d113ba838700d0182 SHA512 de88c4b4ae7d742eeec2bce7e43ccd99f971620541edc416471a46cb76a4f0c072821348d6c7f7fc44e7c70f2e3cde231d74546424ece533b2b2f531aee22b79

diff --git a/sys-power/tlp/tlp-1.5.0-r2.ebuild b/sys-power/tlp/tlp-1.5.0-r2.ebuild
deleted file mode 100644
index b0bbf7d60684..000000000000
--- a/sys-power/tlp/tlp-1.5.0-r2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit udev optfeature
-
-DESCRIPTION="Optimize laptop battery life"
-HOMEPAGE="https://linrunner.de/tlp/"
-SRC_URI="https://github.com/linrunner/TLP/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/TLP-${PV}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-
-# It's uncertain if elogind/systemd is actually required, however, without the sleep
-# hooks working, which require one of them, it doesn't seem like this app is very useful.
-RDEPEND="
-	dev-lang/perl
-	virtual/udev
-	|| ( sys-auth/elogind sys-apps/systemd )
-"
-
-src_install() {
-	emake \
-		DESTDIR="${D}" \
-		TLP_NO_INIT=1 \
-		TLP_ELOD=/$(get_libdir)/elogind/system-sleep \
-		TLP_WITH_ELOGIND=1 \
-		TLP_WITH_SYSTEMD=1 \
-		install install-man
-
-	fperms 444 /usr/share/tlp/defaults.conf # manpage says this file should not be edited
-	newinitd "${FILESDIR}/tlp.init" tlp
-	keepdir /var/lib/tlp # created by Makefile, probably important
-}
-
-pkg_postinst() {
-	udev_reload
-
-	optfeature "disable Wake-on-LAN" sys-apps/ethtool
-	optfeature "see disk drive health info in tlp-stat" sys-apps/smartmontools
-}
-
-pkg_postrm() {
-	udev_reload
-}

diff --git a/sys-power/tlp/tlp-1.6.0.ebuild b/sys-power/tlp/tlp-1.6.0.ebuild
deleted file mode 100644
index 943ae6fe8d78..000000000000
--- a/sys-power/tlp/tlp-1.6.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit udev optfeature
-
-DESCRIPTION="Optimize laptop battery life"
-HOMEPAGE="https://linrunner.de/tlp/"
-SRC_URI="https://github.com/linrunner/TLP/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/TLP-${PV}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-
-# It's uncertain if elogind/systemd is actually required, however, without the sleep
-# hooks working, which require one of them, it doesn't seem like this app is very useful.
-RDEPEND="
-	dev-lang/perl
-	virtual/udev
-	|| ( sys-auth/elogind sys-apps/systemd )
-"
-
-src_install() {
-	emake \
-		DESTDIR="${D}" \
-		TLP_NO_INIT=1 \
-		TLP_ELOD=/$(get_libdir)/elogind/system-sleep \
-		TLP_WITH_ELOGIND=1 \
-		TLP_WITH_SYSTEMD=1 \
-		install install-man
-
-	fperms 444 /usr/share/tlp/defaults.conf # manpage says this file should not be edited
-	newinitd "${FILESDIR}/tlp.init" tlp
-	keepdir /var/lib/tlp # created by Makefile, probably important
-}
-
-pkg_postinst() {
-	udev_reload
-
-	optfeature "disable Wake-on-LAN" sys-apps/ethtool
-	optfeature "see disk drive health info in tlp-stat" sys-apps/smartmontools
-}
-
-pkg_postrm() {
-	udev_reload
-}


             reply	other threads:[~2024-06-13 18:59 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-13 18:59 Arthur Zamarin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-12 20:42 [gentoo-commits] repo/gentoo:master commit in: sys-power/tlp/ Jay Faulkner
2025-03-12 19:24 Jay Faulkner
2025-03-12 19:24 Jay Faulkner
2025-03-12 19:24 Jay Faulkner
2024-11-24 10:24 Andreas Sturmlechner
2024-11-24 10:24 Andreas Sturmlechner
2024-11-23 20:15 Arthur Zamarin
2024-10-25  7:31 Yixun Lan
2024-06-13 20:49 Sam James
2023-12-01 22:17 Patrick McLean
2023-09-18 16:39 Joonas Niilola
2023-09-18  9:20 Sam James
2023-09-18  9:20 Sam James
2022-11-03 19:13 Sam James
2022-10-12 23:41 Sam James

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1718305162.26ff0eb8ad652bc84be2f434de1d2aa250b46025.arthurzam@gentoo \
    --to=arthurzam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox