From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A4E38158094 for ; Sat, 8 Oct 2022 22:17:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF642E087A; Sat, 8 Oct 2022 22:17:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DB0E2E087A for ; Sat, 8 Oct 2022 22:17:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EB4913410F5 for ; Sat, 8 Oct 2022 22:17:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 77473602 for ; Sat, 8 Oct 2022 22:17:36 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1665267454.e89eec1eb9109542b33de723b0bea1eedbb52561.sam@gentoo> Subject: [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: / X-VCS-Repository: proj/toolchain/linux-headers-patches X-VCS-Files: testing.txt X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e89eec1eb9109542b33de723b0bea1eedbb52561 X-VCS-Branch: master Date: Sat, 8 Oct 2022 22:17:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 97ab68de-4f3f-4da9-88be-9c66ef88df5d X-Archives-Hash: 9e2d7fa22624d35a0bdec448f9ec5b8f commit: e89eec1eb9109542b33de723b0bea1eedbb52561 Author: Sam James gentoo org> AuthorDate: Sat Oct 8 21:45:30 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Oct 8 22:17:34 2022 +0000 URL: https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=e89eec1e testing.txt: modernise a bit Signed-off-by: Sam James gentoo.org> testing.txt | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/testing.txt b/testing.txt index 5b9773f..2ce2b8d 100644 --- a/testing.txt +++ b/testing.txt @@ -1,19 +1,20 @@ -upgrade process: +Upgrade process: - - generate the gentoo-headers-base-.tar.xz tarball: - $ ./rip-headers.sh 3.13 - - create a new patchset dir: - $ cp -a 3.13/ 3.14/ - $ rm -rf 3.14/CVS - $ cvs add 3.14 && cvs add 3.14/* - - generate the patchset tarball: - $ ./make-tarball.sh 3.14 1 - - update the ebuild: - $ cp linux-headers-3.13.ebuild linux-headers-3.14.ebuild - - test it (see sections below) - - upload tarballs & commit files to cvs + - Familiarize yourself with https://wiki.gentoo.org/wiki/Project:Toolchain/sys-kernel/linux-headers + and README*. + - Generate the gentoo-headers-base-.tar.xz tarball: + $ ./rip-headers.sh 5.15 + - Create a new patchset dir: + $ cp -a 5.15/ 5.15/ + $ git add 5.15 + - Generate the patchset tarball: + $ ./make-tarball.sh 5.15 1 + - Update the ebuild: + $ cp linux-headers-5.14.ebuild linux-headers-5.15.ebuild + - Test it (see sections below) + - Upload tarballs & commit files -smoke test: +Smoke test: for h in `find /usr/include/linux -type f -printf '%P '` ; do h="linux/$h"; echo "$h" @@ -24,7 +25,7 @@ smoke test: find /usr/include/linux -type f -printf '%P ' -common packages that break: +Common packages that break: pkgs=$(sed -n '/^%/,/^%/{s:%::;p}' testing.txt) emerge --keep-going -1v ${pkgs} --jobs 4