public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2018-10-12 22:56 Sergei Trofimovich
  0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2018-10-12 22:56 UTC (permalink / raw
  To: gentoo-commits

commit:     cc0aba2194137567aaa852913d0be50e0047a442
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 12 22:36:10 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Oct 12 22:36:10 2018 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=cc0aba21

rip-headers.sh: allow any DISTDIR, not just /usr/portage/distfiles

Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 rip-headers.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/rip-headers.sh b/rip-headers.sh
index 78dce04..19efbd4 100755
--- a/rip-headers.sh
+++ b/rip-headers.sh
@@ -10,9 +10,10 @@ ver=${ver%/}
 
 src=linux-${ver}
 dst=gentoo-headers-base-${ver}
+distdir=$(portageq distdir)
 
 if [ ! -d ${src} ] ; then
-	for srcdir in . "$(portageq distdir)" /usr/portage/distfiles ; do
+	for srcdir in . "${distdir}" /usr/portage/distfiles ; do
 		for ext in bz2 xz ; do
 			srctar=${srcdir}/${src}.tar.${ext}
 			if [ -e ${srctar} ] ; then
@@ -23,7 +24,7 @@ if [ ! -d ${src} ] ; then
 	done
 fi
 if [ ! -d ${src} ] ; then
-	wget https://www.kernel.org/pub/linux/kernel/v${ver:0:1}.x/linux-${ver}.tar.xz -P /usr/portage/distfiles/
+	wget https://www.kernel.org/pub/linux/kernel/v${ver:0:1}.x/linux-${ver}.tar.xz -P "${distdir}"
 	exec "$0" "$@"
 fi
 


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2018-10-23 22:39 Sergei Trofimovich
  0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2018-10-23 22:39 UTC (permalink / raw
  To: gentoo-commits

commit:     d8781d5edf104b0a6fc43f26c4d135ccada59b47
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 23 22:30:49 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Oct 23 22:30:49 2018 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=d8781d5e

rip-headers.sh: account for scripts/subarch.include in 4.19+

Patch-by: Tomáš Mózes
Bug: https://bugs.gentoo.org/669388
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 rip-headers.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/rip-headers.sh b/rip-headers.sh
index 19efbd4..7c37991 100755
--- a/rip-headers.sh
+++ b/rip-headers.sh
@@ -45,6 +45,9 @@ cp -r \
 	${src}/scripts/unifdef.c \
 	${src}/scripts/*.{sh,pl} \
 	${dst}/scripts/
+if [[ -f ${src}/scripts/subarch.include ]]; then
+	cp ${src}/scripts/subarch.include ${dst}/scripts/
+fi
 mkdir -p ${dst}/scripts/basic
 printf '#!/bin/sh\nexit 0' > ${dst}/scripts/basic/fixdep
 chmod a+rx ${dst}/scripts/basic/fixdep


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2019-03-06 22:13 Sergei Trofimovich
  0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2019-03-06 22:13 UTC (permalink / raw
  To: gentoo-commits

commit:     b418143bc1bc69f4b0c7509f74e16f9302557e4c
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  6 22:06:31 2019 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Mar  6 22:06:31 2019 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=b418143b

rip-headers.sh: preserve arch/*/kernel/syscalls for all arches

Noticed by Jer as install failure:
    scripts/Makefile.build:42: arch/parisc/kernel/syscalls/Makefile: No such file or directory
    make[1]: *** No rule to make target 'arch/parisc/kernel/syscalls/Makefile'.  Stop.
    make: *** [arch/parisc/Makefile:168: archheaders] Error 2

The change generalises s390 tblgen inclusion for all arches.

Reported-by: Jeroen Roovers
Bug: https://bugs.gentoo.org/679630
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 rip-headers.sh | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/rip-headers.sh b/rip-headers.sh
index 7c37991..717405b 100755
--- a/rip-headers.sh
+++ b/rip-headers.sh
@@ -89,11 +89,16 @@ if [[ -d ${src}/arch/mips/boot/tools ]] ; then
 	mkdir -p ${dst}/arch/mips/boot
 	cp -r ${src}/arch/mips/boot/tools ${dst}/arch/mips/boot/
 fi
-# s390 has special sauce starting from 4.16
-if [[ -d ${src}/arch/s390/kernel/syscalls ]] ; then
-	mkdir -p ${dst}/arch/s390/kernel
-	cp -r ${src}/arch/s390/kernel/syscalls ${dst}/arch/s390/kernel/
-fi
+# linux-5.0 started generating syscall tables
+for tblgen in ${src}/arch/*/kernel/syscalls; do
+	tblgen_parent=${tblgen#${src}/}
+	tblgen_parent=${tblgen_parent%/syscalls}
+	# older kernels have none
+	if [[ -d ${tblgen} ]]; then
+		mkdir -p ${dst}/${tblgen_parent}
+		cp -r ${tblgen} ${dst}/${tblgen_parent}
+	fi
+done
 find ${dst}/ -name .gitignore -delete
 
 cp README.ripped-headers rip-headers.sh ${dst}/


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2019-12-08 13:03 Sergei Trofimovich
  0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2019-12-08 13:03 UTC (permalink / raw
  To: gentoo-commits

commit:     8cfbf535590de8e36da25a22901082340f6d0fe8
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  8 13:02:43 2019 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Dec  8 13:02:43 2019 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=8cfbf535

testing.txt: add more packages

Pick all reasonably-sized packages from latest fallout:
    https://bugs.gentoo.org/690296

Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 testing.txt | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/testing.txt b/testing.txt
index 39e9ec4..ec75b8d 100644
--- a/testing.txt
+++ b/testing.txt
@@ -41,18 +41,23 @@ dev-util/strace
 media-libs/libv4l
 media-tv/ivtv-utils
 media-video/vdr
+net-analyzer/ipsumdump
 net-dialup/linux-atm
 net-dialup/ppp
 net-dialup/rp-pppoe
+net-dns/dnsmasq
 net-firewall/iptables
+net-libs/libtrace
 net-misc/bridge-utils
 net-misc/dahdi-tools
 net-misc/dhcpcd
 net-misc/iputils
 net-misc/lksctp-tools
+net-misc/ntpclient
 net-misc/socat
 net-proxy/shadowsocks-libev
 net-vpn/ipsec-tools
+net-wireless/irda-utils
 net-wireless/iw
 net-wireless/wireless-tools
 net-wireless/wpa_supplicant


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2019-12-08 13:21 Sergei Trofimovich
  0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2019-12-08 13:21 UTC (permalink / raw
  To: gentoo-commits

commit:     2fd2da96cdf3eb1694c8d73f1a91701e6e7432c9
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  8 13:21:32 2019 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Dec  8 13:21:32 2019 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=2fd2da96

testing.txt: simplify testing command

Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 testing.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing.txt b/testing.txt
index ec75b8d..b4cb561 100644
--- a/testing.txt
+++ b/testing.txt
@@ -27,7 +27,7 @@ smoke test:
 common packages that break:
 
 	pkgs=$(sed -n '/^%/,/^%/{s:%::;p}' testing.txt)
-	sudo env FEATURES=-digest emerge --keep-going -1qav ${pkgs} --jobs 4
+	emerge --keep-going -1qav ${pkgs} --jobs 4
 
 %
 app-metrics/collectd


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2019-12-08 13:23 Sergei Trofimovich
  0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2019-12-08 13:23 UTC (permalink / raw
  To: gentoo-commits

commit:     b6b60d6ba4a003b2ab9317da8e1e5141e4273184
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  8 13:23:02 2019 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Dec  8 13:23:02 2019 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=b6b60d6b

testing.txt: fimplify testing command further

Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 testing.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing.txt b/testing.txt
index b4cb561..7701f73 100644
--- a/testing.txt
+++ b/testing.txt
@@ -27,7 +27,7 @@ smoke test:
 common packages that break:
 
 	pkgs=$(sed -n '/^%/,/^%/{s:%::;p}' testing.txt)
-	emerge --keep-going -1qav ${pkgs} --jobs 4
+	emerge --keep-going -1v ${pkgs} --jobs 4
 
 %
 app-metrics/collectd


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2019-12-08 14:28 Sergei Trofimovich
  0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2019-12-08 14:28 UTC (permalink / raw
  To: gentoo-commits

commit:     6cf45dbcb46880a0ee7f228e2276b32fb088299e
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  8 14:28:12 2019 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Dec  8 14:28:12 2019 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=6cf45dbc

testing.txt: drop net-misc/dahdi-tools as it needs specific kernel config

Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 testing.txt | 1 -
 1 file changed, 1 deletion(-)

diff --git a/testing.txt b/testing.txt
index 7701f73..2e1af08 100644
--- a/testing.txt
+++ b/testing.txt
@@ -49,7 +49,6 @@ net-dns/dnsmasq
 net-firewall/iptables
 net-libs/libtrace
 net-misc/bridge-utils
-net-misc/dahdi-tools
 net-misc/dhcpcd
 net-misc/iputils
 net-misc/lksctp-tools


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2020-12-14  8:12 Sergei Trofimovich
  0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2020-12-14  8:12 UTC (permalink / raw
  To: gentoo-commits

commit:     35f810a9025f3f681e932a63ea59a78bb5bf8b83
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 14 08:11:52 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Dec 14 08:11:52 2020 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=35f810a9

testing.txt: follow ::gentoo's rename  net-misc/ntpclient -> net-misc/sntpd

Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 testing.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing.txt b/testing.txt
index 2e1af08..b1bc08d 100644
--- a/testing.txt
+++ b/testing.txt
@@ -52,7 +52,7 @@ net-misc/bridge-utils
 net-misc/dhcpcd
 net-misc/iputils
 net-misc/lksctp-tools
-net-misc/ntpclient
+net-misc/sntpd
 net-misc/socat
 net-proxy/shadowsocks-libev
 net-vpn/ipsec-tools


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2021-02-15 22:40 Sergei Trofimovich
  0 siblings, 0 replies; 17+ messages in thread
From: Sergei Trofimovich @ 2021-02-15 22:40 UTC (permalink / raw
  To: gentoo-commits

commit:     362e2796bfbafe26478ff0e70efe02cd26211cef
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 15 22:40:36 2021 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Feb 15 22:40:36 2021 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=362e2796

testing.txt: drop outdated net-wireless/irda-utils package

Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 testing.txt | 1 -
 1 file changed, 1 deletion(-)

diff --git a/testing.txt b/testing.txt
index b1bc08d..e0bdaec 100644
--- a/testing.txt
+++ b/testing.txt
@@ -56,7 +56,6 @@ net-misc/sntpd
 net-misc/socat
 net-proxy/shadowsocks-libev
 net-vpn/ipsec-tools
-net-wireless/irda-utils
 net-wireless/iw
 net-wireless/wireless-tools
 net-wireless/wpa_supplicant


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2021-09-05  5:47 Sam James
  0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-09-05  5:47 UTC (permalink / raw
  To: gentoo-commits

commit:     cedf632239727cd862af389b3b8ee671169dd801
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  5 05:47:07 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep  5 05:47:07 2021 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=cedf6322

testing.txt: drop last-rited ipsec-tools package

Signed-off-by: Sam James <sam <AT> gentoo.org>

 testing.txt | 1 -
 1 file changed, 1 deletion(-)

diff --git a/testing.txt b/testing.txt
index e0bdaec..18444ed 100644
--- a/testing.txt
+++ b/testing.txt
@@ -55,7 +55,6 @@ net-misc/lksctp-tools
 net-misc/sntpd
 net-misc/socat
 net-proxy/shadowsocks-libev
-net-vpn/ipsec-tools
 net-wireless/iw
 net-wireless/wireless-tools
 net-wireless/wpa_supplicant


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2022-01-08  3:49 Sam James
  0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2022-01-08  3:49 UTC (permalink / raw
  To: gentoo-commits

commit:     953d05d3bd7505f4310c2936b90ea88916bc11c5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  8 03:49:05 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan  8 03:49:12 2022 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=953d05d3

README.Gentoo.patches: modernise a bit

Signed-off-by: Sam James <sam <AT> gentoo.org>

 README.Gentoo.patches | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/README.Gentoo.patches b/README.Gentoo.patches
index 0539599..b901725 100644
--- a/README.Gentoo.patches
+++ b/README.Gentoo.patches
@@ -3,11 +3,11 @@
  ================
 
 Gentoo patchsets that have grown too large to keep on the rsync mirrors have 
-been moved to our cvs tree.  From there, we bundle up all the whee little 
+been moved to our git tree.  From there, we bundle up all the wee little 
 patches into a tarball and distribute it via our public mirroring system.
 
 If you want specific info about a patch (like wtf it does or whose great idea 
-it was to change the code), read the patch !  We try to fill out the top of 
+it was to change the code), read the patch!  We try to fill out the top of 
 them with useful info such as what it does, why it's needed, bug reports, 
 original creators, etc.
 
@@ -25,13 +25,9 @@ read-write git tree: git+ssh://git@git.gentoo.org/proj/toolchain/linux-headers-p
 
 The patch naming/applying convention might be a little confusing to the Gentoo
 outsider, so here's a quick rundown.  Patch tarballs are applied in Gentoo via
-a helper command called "epatch".  This command is pretty forgiving when it
-comes to applying patches.
+a helper command called "eapply". 
 
-For example, it will autodetect the required -p# by starting at 0 and counting
-up until things apply.  So do not expect a patch series to all be at the same -p
-level even if they all apply from the same source directory.  Typically however,
-people will use -p0 or -p1.
+Patches should use -p1.
 
 The epatch command will also use the -E option by default as the `patch` command
 can be pretty picky about removing files.  We just force the issue.  If you


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2022-10-08 22:17 Sam James
  0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2022-10-08 22:17 UTC (permalink / raw
  To: gentoo-commits

commit:     e89eec1eb9109542b33de723b0bea1eedbb52561
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  8 21:45:30 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> 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 <sam <AT> 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-<kernel version>.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-<kernel version>.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


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2022-10-08 22:17 Sam James
  0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2022-10-08 22:17 UTC (permalink / raw
  To: gentoo-commits

commit:     0c0cbde2ff3533fe4b491ec4ee27a7fa93f8c873
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  8 21:44:25 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct  8 22:17:33 2022 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=0c0cbde2

testing.txt: update pkg list

Signed-off-by: Sam James <sam <AT> gentoo.org>

 testing.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/testing.txt b/testing.txt
index 18444ed..5b9773f 100644
--- a/testing.txt
+++ b/testing.txt
@@ -66,13 +66,14 @@ sys-apps/kbd
 sys-apps/net-tools
 sys-apps/sandbox
 sys-apps/setserial
+sys-apps/systemd
+sys-apps/systemd-utils
 sys-block/fio
 sys-block/sedutil
 sys-boot/efibootmgr
 sys-boot/syslinux
 sys-devel/gdb
 sys-fs/fuse
-sys-fs/udev
 sys-libs/efivar
 sys-libs/gpm
 sys-libs/libcap


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2024-01-19 11:15 Sam James
  0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2024-01-19 11:15 UTC (permalink / raw
  To: gentoo-commits

commit:     823cb9418ec9d9d5fb365890f2614b6d98dbdaa6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 19 11:14:52 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 19 11:14:52 2024 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=823cb941

testing.txt: update for pkgmoves & refresh pkg list overall

Signed-off-by: Sam James <sam <AT> gentoo.org>

 testing.txt | 131 +++++++++++++++++++++++++++++++++++++++++++++---------------
 1 file changed, 98 insertions(+), 33 deletions(-)

diff --git a/testing.txt b/testing.txt
index 2ce2b8d..7090076 100644
--- a/testing.txt
+++ b/testing.txt
@@ -25,62 +25,127 @@ Smoke test:
 
 	find /usr/include/linux -type f -printf '%P '
 
-Common packages that break:
+Check direct reverse dependencies of virtual/linux-headers:
 
 	pkgs=$(sed -n '/^%/,/^%/{s:%::;p}' testing.txt)
 	emerge --keep-going -1v ${pkgs} --jobs 4
 
 %
-app-metrics/collectd
-app-cdr/cdrdao
-app-cdr/cdrtools
-app-cdr/dvd+rw-tools
+app-containers/crun
+app-containers/lxc
 app-emulation/qemu
+app-emulation/wine-proton
+app-emulation/wine-staging
+app-emulation/wine-vanilla
+app-emulation/xen-tools
+app-i18n/jfbterm
+app-metrics/collectd
+app-misc/ddccontrol
 app-misc/inputlircd
-app-text/a2ps
+app-misc/lirc
+app-misc/ola
+app-misc/ps3pf_utils
+app-misc/srm
+dev-libs/libbpf
+dev-libs/libbsd
+dev-libs/libx86
+dev-perl/perl-headers
+dev-qt/qtgui
+dev-qt/qtmultimedia
+dev-util/bcc
+dev-util/bootconfig
+dev-util/bpftool
+dev-util/oprofile
+dev-util/perf
+dev-util/rr
 dev-util/strace
-media-libs/libv4l
-media-tv/ivtv-utils
-media-video/vdr
-net-analyzer/ipsumdump
+dev-util/sysprof
+dev-util/sysprof-capture
+dev-util/trace-cmd
+games-emulation/gnuboy
+gnome-base/gnome-settings-daemon
+gui-wm/dwl
+kde-plasma/kwayland
+media-gfx/sane-backends
+media-libs/libgii
+media-plugins/vdr-xineliboutput
+media-sound/pulseaudio-daemon
+media-tv/mythtv
+media-video/ffmpeg
+media-video/gpac
+media-video/guvcview
+media-video/mplayer
+media-video/setpwc
+media-video/webcamoid
+net-analyzer/ifmetric
+net-analyzer/netwatch
 net-dialup/linux-atm
-net-dialup/ppp
 net-dialup/rp-pppoe
-net-dns/dnsmasq
+net-dialup/xl2tpd
 net-firewall/iptables
-net-libs/libtrace
+net-firewall/ipt_netflow
+net-ftp/frox
+net-im/toxic
+net-libs/gupnp
 net-misc/bridge-utils
-net-misc/dhcpcd
-net-misc/iputils
+net-misc/connman
+net-misc/dahdi-tools
+net-misc/ifenslave
 net-misc/lksctp-tools
-net-misc/sntpd
-net-misc/socat
+net-misc/mptcpd
+net-misc/networkmanager
+net-misc/openssh
+net-misc/openssh-contrib
+net-misc/pingu
+net-misc/tipcutils
+net-misc/usbip
+net-misc/wol
 net-proxy/shadowsocks-libev
-net-wireless/iw
-net-wireless/wireless-tools
-net-wireless/wpa_supplicant
-sys-apps/acl
-sys-apps/attr
+net-vpn/libreswan
+net-vpn/strongswan
+sci-libs/indilib
 sys-apps/busybox
+sys-apps/chname
+sys-apps/flashrom
+sys-apps/fwupd
+sys-apps/hwinfo
 sys-apps/iproute2
-sys-apps/kbd
+sys-apps/keyutils
+sys-apps/linux-misc-apps
+sys-apps/mount-idmapped
 sys-apps/net-tools
-sys-apps/sandbox
-sys-apps/setserial
+sys-apps/shadow
 sys-apps/systemd
+sys-apps/systemd-readahead
 sys-apps/systemd-utils
+sys-auth/pam_mktemp
+sys-block/blktrace
 sys-block/fio
-sys-block/sedutil
-sys-boot/efibootmgr
-sys-boot/syslinux
-sys-devel/gdb
-sys-fs/fuse
+sys-block/libzbc
+sys-block/libzbd
+sys-block/open-iscsi
+sys-cluster/corosync
+sys-cluster/keepalived
+sys-fs/btrfs-progs
+sys-fs/cryptmount
+sys-fs/jfsutils
+sys-fs/nilfs-utils
+sys-fs/udisks
+sys-kernel/linux-headers
 sys-libs/efivar
-sys-libs/gpm
 sys-libs/libcap
+sys-libs/libcap-ng
+sys-libs/libseccomp
+sys-libs/liburing
+sys-libs/mtdev
+sys-power/acpid
+sys-power/bbswitch
 sys-process/audit
-sys-process/criu
-sys-process/lsof
+x11-drivers/xf86-input-evdev
+x11-drivers/xf86-input-synaptics
+x11-drivers/xf86-video-geode
+x11-misc/xhkeys
+x11-wm/mutter
 %
 
 then make sure the big one:


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2024-03-13  4:52 Sam James
  0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2024-03-13  4:52 UTC (permalink / raw
  To: gentoo-commits

commit:     63358713056aafe9e95cb2b99289a7560cb01cc6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 13 04:51:23 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 13 04:51:23 2024 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=63358713

testing.txt: update for dev-util/strace -> dev-debug/strace rename

Signed-off-by: Sam James <sam <AT> gentoo.org>

 testing.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing.txt b/testing.txt
index 7090076..5d1c2f7 100644
--- a/testing.txt
+++ b/testing.txt
@@ -58,7 +58,7 @@ dev-util/bpftool
 dev-util/oprofile
 dev-util/perf
 dev-util/rr
-dev-util/strace
+dev-debug/strace
 dev-util/sysprof
 dev-util/sysprof-capture
 dev-util/trace-cmd


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2024-03-13  4:52 Sam James
  0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2024-03-13  4:52 UTC (permalink / raw
  To: gentoo-commits

commit:     1953edde403f7d6c0f3dd697271c17ce4a39ebee
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 13 04:51:53 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 13 04:51:53 2024 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=1953edde

testing.txt: update test command

Signed-off-by: Sam James <sam <AT> gentoo.org>

 testing.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/testing.txt b/testing.txt
index 5d1c2f7..a142f75 100644
--- a/testing.txt
+++ b/testing.txt
@@ -28,6 +28,7 @@ Smoke test:
 Check direct reverse dependencies of virtual/linux-headers:
 
 	pkgs=$(sed -n '/^%/,/^%/{s:%::;p}' testing.txt)
+	pkgs=$(echo ${pkgs} | tr ' ' '\n' | sed -e '/systemd-utils/d' | sed -e '/ps3pf_utils/d' | sed -e '/dahdi-tools/d' | sed -e '/geode/d' | sed -e '/xhkeys/d' | sed -e '/pulseaudio-daemon/d' | sed -e '/openssh-contrib/d' | sed -e '/libreswan/d' | sed -e '/ola/d' | tr '\n' ' ')
 	emerge --keep-going -1v ${pkgs} --jobs 4
 
 %


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

* [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: /
@ 2024-05-03  6:32 Sam James
  0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2024-05-03  6:32 UTC (permalink / raw
  To: gentoo-commits

commit:     75ea57c14a00760dddbde6f1c0c3d9abe3e55632
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri May  3 06:32:30 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri May  3 06:32:45 2024 +0000
URL:        https://gitweb.gentoo.org/proj/toolchain/linux-headers-patches.git/commit/?id=75ea57c1

rip-headers.sh: fallback to /var/cache/distfiles too

Signed-off-by: Sam James <sam <AT> gentoo.org>

 rip-headers.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rip-headers.sh b/rip-headers.sh
index 717405b..a5349db 100755
--- a/rip-headers.sh
+++ b/rip-headers.sh
@@ -13,7 +13,7 @@ dst=gentoo-headers-base-${ver}
 distdir=$(portageq distdir)
 
 if [ ! -d ${src} ] ; then
-	for srcdir in . "${distdir}" /usr/portage/distfiles ; do
+	for srcdir in . "${distdir}" /var/cache/distfiles /usr/portage/distfiles ; do
 		for ext in bz2 xz ; do
 			srctar=${srcdir}/${src}.tar.${ext}
 			if [ -e ${srctar} ] ; then


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

end of thread, other threads:[~2024-05-03  6:32 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-19 11:15 [gentoo-commits] proj/toolchain/linux-headers-patches:master commit in: / Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-05-03  6:32 Sam James
2024-03-13  4:52 Sam James
2024-03-13  4:52 Sam James
2022-10-08 22:17 Sam James
2022-10-08 22:17 Sam James
2022-01-08  3:49 Sam James
2021-09-05  5:47 Sam James
2021-02-15 22:40 Sergei Trofimovich
2020-12-14  8:12 Sergei Trofimovich
2019-12-08 14:28 Sergei Trofimovich
2019-12-08 13:23 Sergei Trofimovich
2019-12-08 13:21 Sergei Trofimovich
2019-12-08 13:03 Sergei Trofimovich
2019-03-06 22:13 Sergei Trofimovich
2018-10-23 22:39 Sergei Trofimovich
2018-10-12 22:56 Sergei Trofimovich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox