Received: from mx1.riseup.net (mx1.riseup.net [198.252.153.129]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 51C18781B6D for ; Sat, 1 Feb 2020 06:49:37 +0000 (UTC) Received: from bell.riseup.net (bell-pn.riseup.net [10.0.1.178]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "Sectigo RSA Domain Validation Secure Server CA" (not verified)) by mx1.riseup.net (Postfix) with ESMTPS id 488kxb2njczFdY1 for ; Fri, 31 Jan 2020 22:40:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1580539272; bh=DuE2a7chDKIQJCRlnPXcEVenXU1FjbszdIrBpa/okTc=; h=From:To:Subject:Date:From; b=YHN0/ge1lNgMcrlD1GPczH7dpUgcWIoJklcC/m0WChtwC59ORiBD6BI/zUCbYy9X/ KL8coeRR+1xVtytFkKRI1d8+ORHhgz1+AW1ZpEPnF5MT4VBzi/hvB0GnnzlGIkTDMn V9KVAeStiOpdJ/prEAOwJyEbNr6GRJapzPtyuDno= X-Riseup-User-ID: 2D60B174345C25D5DF8FD37DD32052568D2AECC63091108196FBBE87EF81295E Received: from [127.0.0.1] (localhost [127.0.0.1]) by bell.riseup.net (Postfix) with ESMTPSA id 488kxZ3BpBzJqp1 for ; Fri, 31 Jan 2020 22:40:50 -0800 (PST) From: Ivan Tham To: alpine-aports@lists.alpinelinux.org Subject: [PATCH] community/tlp: upgrade to 1.3.0 Date: Sat, 1 Feb 2020 14:40:42 +0800 Message-Id: <20200201064042.29608-1-pickfire@riseup.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit A couple of breaking change: New configuration scheme /etc/default/tlp is replaced by /etc/tlp.conf Settings are read in the following order: 1. Intrinsic defaults 2. /etc/tlp.d/*.conf - Drop-in customization snippets 3. /etc/tlp.conf - User configuration In case of identical parameters, the last occurence has precedence Parse config files instead of sourcing --> no more shell expansion https://github.com/linrunner/TLP/releases/tag/1.3.0 --- community/tlp/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/community/tlp/APKBUILD b/community/tlp/APKBUILD index df2b037038..771a94b401 100644 --- a/community/tlp/APKBUILD +++ b/community/tlp/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Ivan Tham pkgname=tlp _pkgname=TLP -pkgver=1.2.2 +pkgver=1.3.0 pkgrel=0 pkgdesc="Linux Advanced Power Management" url="http://linrunner.de/en/tlp/tlp.html" @@ -46,5 +46,5 @@ bashcomp() { mv "$pkgdir"/usr/share/bash-completion "$subpkgdir"/usr/share } -sha512sums="b01fc2063bf8a87f2b93749c08a5cab53a0a4030b74c7fe62964009fb9d54ca5dc10800971f27cfe6dcdf024ba6d3e21a06caed07e8dc12b09d9d359585a480e tlp-1.2.2.tar.gz +sha512sums="e2a404f4089b66f11d7d61be405f9486319684e61c26a3b29e1b79f0db28596fcbb7e5d81fa69445d5a36bada63645bd89f89ce87b0501b11a3fcbdecbe236f3 tlp-1.3.0.tar.gz e6de216b2540413812711b3304cdc29c8729d527080cfd747ba382db50166dd21c6c27ff467f9f2a967e92007c7a311b00e88262952c34a22f417578c66cf4e7 tlp.initd" -- 2.24.1