Skip to content

Commit 5812286

Browse files
committed
General updates, preliminary gnome 44 suport
1 parent 9a9c263 commit 5812286

57 files changed

Lines changed: 95 additions & 159 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

amdgpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
URL=https://www.x.org/pub/individual/driver/xf86-video-amdgpu-23.0.0.tar.xz
33
TAR=$(echo $URL | sed -r 's|(.*)/||')
44
DIR=$(echo $TAR | sed 's|.tar.*||g')
5-
PACKAGE=$(echo $DIR | sed 's|-[^-]*$||g')
5+
PACKAGE=amdgpu
66

77
# Get Package
88

base/bc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
PKG_VER=6.2.4
2+
PKG_VER=6.4.0
33
URL=https://github.com/gavinhoward/bc/releases/download/$PKG_VER/bc-$PKG_VER.tar.xz
44
TAR=$(echo $URL | sed -r 's|(.*)/||')
55
DIR=$(echo $TAR | sed 's|.tar.*||g')

base/grep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
URL=https://ftp.gnu.org/gnu/grep/grep-3.8.tar.xz
2+
URL=https://ftp.gnu.org/gnu/grep/grep-3.9.tar.xz
33
TAR=$(echo $URL | sed -r 's|(.*)/||')
44
DIR=$(echo $TAR | sed 's|.tar.*||g')
55
PACKAGE=$(echo $DIR | sed 's|-[^-]*$||g')

base/iana-etc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
URL=https://github.com/Mic92/iana-etc/releases/download/20230202/iana-etc-20230202.tar.gz
2+
URL=https://github.com/Mic92/iana-etc/releases/download/20230306/iana-etc-20230306.tar.gz
33
TAR=$(echo $URL | sed -r 's|(.*)/||')
44
DIR=$(echo $TAR | sed 's|.tar.*||g')
55
PACKAGE=$(echo $DIR | sed 's|-[^-]*$||g')

base/libelf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
2-
URL=https://sourceware.org/ftp/elfutils/0.188/elfutils-0.188.tar.bz2
2+
PKG_VER=0.189
3+
URL=https://sourceware.org/ftp/elfutils/$PKG_VER/elfutils-$PKG_VER.tar.bz2
34
TAR=$(echo $URL | sed -r 's|(.*)/||')
45
DIR=$(echo $TAR | sed 's|.tar.*||g')
56
PACKAGE=libelf

base/make

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
URL=https://ftp.gnu.org/gnu/make/make-4.4.tar.gz
2+
URL=https://ftp.gnu.org/gnu/make/make-4.4.1.tar.gz
33
TAR=$(echo $URL | sed -r 's|(.*)/||')
44
DIR=$(echo $TAR | sed 's|.tar.*||g')
55
PACKAGE=$(echo $DIR | sed 's|-[^-]*$||g')

base/meson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
URL=https://github.com/mesonbuild/meson/releases/download/1.0.0/meson-1.0.0.tar.gz
2+
URL=https://github.com/mesonbuild/meson/releases/download/1.0.1/meson-1.0.1.tar.gz
33
TAR=$(echo $URL | sed -r 's|(.*)/||')
44
DIR=$(echo $TAR | sed 's|.tar.*||g')
55
PACKAGE=$(echo $DIR | sed 's|-[^-]*$||g')

build_kernel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
URL=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.2.6.tar.xz
2+
URL=https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.2.8.tar.xz
33
TAR=$(echo $URL | sed -r 's|(.*)/||')
44
DIR=$(echo $TAR | sed 's|.tar.*||g')
55
KERNEL_VERSION=$(echo $DIR | sed 's/linux-//')

cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
2-
PKG_VER="3.25.2"
3-
MAJOR_VER=3.25
2+
PKG_VER="3.26.1"
3+
MAJOR_VER=3.26
44
URL=https://cmake.org/files/v$MAJOR_VER/cmake-$PKG_VER.tar.gz
55
TAR=$(echo $URL | sed -r 's|(.*)/||')
66
DIR=$(echo $TAR | sed 's|.tar.*||g')

curl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
URL=https://curl.se/download/curl-7.88.1.tar.xz
2+
URL=https://curl.se/download/curl-8.0.1.tar.xz
33
TAR=$(echo $URL | sed -r 's|(.*)/||')
44
DIR=$(echo $TAR | sed 's|.tar.*||g')
55
PACKAGE=$(echo $DIR | sed 's|-[^-]*$||g')

0 commit comments

Comments
 (0)