6.6.1-1 (clr 6.6.1-1384)
This commit is contained in:
parent
531d00bd44
commit
b834d66b01
2 changed files with 15 additions and 15 deletions
14
.SRCINFO
14
.SRCINFO
|
@ -1,6 +1,6 @@
|
||||||
pkgbase = linux-clear
|
pkgbase = linux-clear
|
||||||
pkgdesc = Clear Linux
|
pkgdesc = Clear Linux
|
||||||
pkgver = 6.5.11
|
pkgver = 6.6.1
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://github.com/clearlinux-pkgs/linux
|
url = https://github.com/clearlinux-pkgs/linux
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
|
@ -12,16 +12,16 @@ pkgbase = linux-clear
|
||||||
makedepends = pahole
|
makedepends = pahole
|
||||||
makedepends = xmlto
|
makedepends = xmlto
|
||||||
options = !strip
|
options = !strip
|
||||||
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.5.tar.xz
|
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.6.tar.xz
|
||||||
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.5.tar.sign
|
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.6.tar.sign
|
||||||
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.5.11.xz
|
source = https://cdn.kernel.org/pub/linux/kernel/v6.x/patch-6.6.1.xz
|
||||||
source = linux-clear::git+https://github.com/clearlinux-pkgs/linux.git#tag=6.5.10-1376
|
source = linux-clear::git+https://github.com/clearlinux-pkgs/linux.git#tag=6.6.1-1384
|
||||||
source = more-uarches-20230105.tar.gz::https://github.com/graysky2/kernel_compiler_patch/archive/20230105.tar.gz
|
source = more-uarches-20230105.tar.gz::https://github.com/graysky2/kernel_compiler_patch/archive/20230105.tar.gz
|
||||||
validpgpkeys = ABAF11C65A2970B130ABE3C479BE3E4300411886
|
validpgpkeys = ABAF11C65A2970B130ABE3C479BE3E4300411886
|
||||||
validpgpkeys = 647F28654894E3BD457199BE38DBBDC86092693E
|
validpgpkeys = 647F28654894E3BD457199BE38DBBDC86092693E
|
||||||
sha256sums = 7a574bbc20802ea76b52ca7faf07267f72045e861b18915c5272a98c27abf884
|
sha256sums = d926a06c63dd8ac7df3f86ee1ffc2ce2a3b81a2d168484e76b5b389aba8e56d0
|
||||||
sha256sums = SKIP
|
sha256sums = SKIP
|
||||||
sha256sums = 5c6af41ed5410df8ce1704e3319e23f41917a54fa3af17cd3a9856f1c5165e4f
|
sha256sums = 39654b8d91e5c36544bc987a8ab353f53cdea738179155cd6eb7c992ba7f8c04
|
||||||
sha256sums = SKIP
|
sha256sums = SKIP
|
||||||
sha256sums = 802946f623c69ae1a636b63697c23ca48af31a099415ed837d2c1e168a272d23
|
sha256sums = 802946f623c69ae1a636b63697c23ca48af31a099415ed837d2c1e168a272d23
|
||||||
|
|
||||||
|
|
16
PKGBUILD
16
PKGBUILD
|
@ -85,10 +85,10 @@
|
||||||
|
|
||||||
### IMPORTANT: Do no edit below this line unless you know what you're doing
|
### IMPORTANT: Do no edit below this line unless you know what you're doing
|
||||||
|
|
||||||
_major=6.5
|
_major=6.6
|
||||||
_minor=11
|
_minor=1
|
||||||
_srcname=linux-${_major}
|
_srcname=linux-${_major}
|
||||||
_clr=${_major}.10-1376
|
_clr=${_major}.1-1384
|
||||||
_gcc_more_v='20230105'
|
_gcc_more_v='20230105'
|
||||||
pkgbase=linux-clear
|
pkgbase=linux-clear
|
||||||
pkgver=${_major}.${_minor}
|
pkgver=${_major}.${_minor}
|
||||||
|
@ -135,7 +135,7 @@ prepare() {
|
||||||
|
|
||||||
### Add Clearlinux patches
|
### Add Clearlinux patches
|
||||||
for i in $(grep '^Patch' ${srcdir}/$pkgbase/linux.spec |\
|
for i in $(grep '^Patch' ${srcdir}/$pkgbase/linux.spec |\
|
||||||
grep -Ev '^Patch0132|^Patch0118|^Patch0113|^Patch0138' | sed -n 's/.*: //p'); do
|
grep -Ev '^Patch0132|^Patch0118|^Patch0113|^Patch0138|^Patch0139' | sed -n 's/.*: //p'); do
|
||||||
if [ -n "$_use_llvm_lto" ]; then
|
if [ -n "$_use_llvm_lto" ]; then
|
||||||
if [ "${i}" == "0162-extra-optmization-flags.patch" ] ; then
|
if [ "${i}" == "0162-extra-optmization-flags.patch" ] ; then
|
||||||
continue
|
continue
|
||||||
|
@ -320,8 +320,8 @@ _package() {
|
||||||
ZSTD_CLEVEL=19 make ${BUILD_FLAGS[*]} INSTALL_MOD_PATH="$pkgdir/usr" INSTALL_MOD_STRIP=1 \
|
ZSTD_CLEVEL=19 make ${BUILD_FLAGS[*]} INSTALL_MOD_PATH="$pkgdir/usr" INSTALL_MOD_STRIP=1 \
|
||||||
DEPMOD=/doesnt/exist modules_install # Suppress depmod
|
DEPMOD=/doesnt/exist modules_install # Suppress depmod
|
||||||
|
|
||||||
# remove build and source links
|
# remove build link
|
||||||
rm "$modulesdir"/{source,build}
|
rm "$modulesdir"/build
|
||||||
}
|
}
|
||||||
|
|
||||||
_package-headers() {
|
_package-headers() {
|
||||||
|
@ -416,9 +416,9 @@ for _p in "${pkgname[@]}"; do
|
||||||
}"
|
}"
|
||||||
done
|
done
|
||||||
|
|
||||||
sha256sums=('7a574bbc20802ea76b52ca7faf07267f72045e861b18915c5272a98c27abf884'
|
sha256sums=('d926a06c63dd8ac7df3f86ee1ffc2ce2a3b81a2d168484e76b5b389aba8e56d0'
|
||||||
'SKIP'
|
'SKIP'
|
||||||
'5c6af41ed5410df8ce1704e3319e23f41917a54fa3af17cd3a9856f1c5165e4f'
|
'39654b8d91e5c36544bc987a8ab353f53cdea738179155cd6eb7c992ba7f8c04'
|
||||||
'SKIP'
|
'SKIP'
|
||||||
'802946f623c69ae1a636b63697c23ca48af31a099415ed837d2c1e168a272d23')
|
'802946f623c69ae1a636b63697c23ca48af31a099415ed837d2c1e168a272d23')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue