diff options
Diffstat (limited to 'source')
37 files changed, 107 insertions, 96 deletions
diff --git a/source/a/efibootmgr/fetch-efibootmgr.sh b/source/a/efibootmgr/fetch-efibootmgr.sh index 884573d37..4d62a1f50 100755 --- a/source/a/efibootmgr/fetch-efibootmgr.sh +++ b/source/a/efibootmgr/fetch-efibootmgr.sh @@ -35,8 +35,8 @@ git clone https://github.com/rhboot/efibootmgr ) HEADISAT="$( cd efibootmgr && git log -1 --format=%h )" -DATE="$( cd efibootmgr && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd efibootmgr && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd efibootmgr && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd efibootmgr && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd efibootmgr && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv efibootmgr efibootmgr-${DATE}_${HEADISAT} diff --git a/source/a/efivar/fetch-efivar.sh b/source/a/efivar/fetch-efivar.sh index 2a2f40319..b6e7b7c40 100755 --- a/source/a/efivar/fetch-efivar.sh +++ b/source/a/efivar/fetch-efivar.sh @@ -35,8 +35,8 @@ git clone https://github.com/rhboot/efivar ) HEADISAT="$( cd efivar && git log -1 --format=%h )" -DATE="$( cd efivar && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd efivar && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd efivar && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd efivar && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd efivar && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv efivar efivar-${DATE}_${HEADISAT} diff --git a/source/ap/ksh93/get-att-ast.sh b/source/ap/ksh93/get-att-ast.sh index aaf7954b0..af5226ad0 100755 --- a/source/ap/ksh93/get-att-ast.sh +++ b/source/ap/ksh93/get-att-ast.sh @@ -36,7 +36,7 @@ git clone https://github.com/att/ast ) HEADISAT="$( cd ast && git log -1 --format=%h )" -DATE="$( cd ast && git log -1 --format=%ad --date=format:%Y%m%d )" +DATE="$( cd ast && git log -1 --format=%cd --date=format:%Y%m%d )" # Cleanup. We're not packing up the whole git repo. ( cd ast && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) # No need to package these: diff --git a/source/ap/lxc/get-lxc.sh b/source/ap/lxc/get-lxc.sh index 28f7321a5..ccb451c6b 100755 --- a/source/ap/lxc/get-lxc.sh +++ b/source/ap/lxc/get-lxc.sh @@ -38,7 +38,7 @@ LXC_MAJOR=$(cd lxc && grep "^m4_define(\[lxc_version_major" configure.ac | cut - LXC_MINOR=$(cd lxc && grep "^m4_define(\[lxc_version_minor" configure.ac | cut -f 2 -d ' ' | tr -d ')') LXC_MICRO=$(cd lxc && grep "^m4_define(\[lxc_version_micro" configure.ac | cut -f 2 -d ' ' | tr -d ')') HEADISAT="$( cd lxc && git log -1 --format=%h )" -DATE="$( cd lxc && git log -1 --format=%ad --date=format:%Y%m%d )" +DATE="$( cd lxc && git log -1 --format=%cd --date=format:%Y%m%d )" # Cleanup. We're not packing up the whole git repo. ( cd lxc && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) diff --git a/source/ap/neofetch/fetch-neofetch.sh b/source/ap/neofetch/fetch-neofetch.sh index eed1d5903..9f49347cf 100755 --- a/source/ap/neofetch/fetch-neofetch.sh +++ b/source/ap/neofetch/fetch-neofetch.sh @@ -38,8 +38,8 @@ git clone https://github.com/dylanaraps/${PKGNAM} ) HEADISAT="$( cd ${PKGNAM} && git log -1 --format=%h )" -DATE="$( cd ${PKGNAM} && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd ${PKGNAM} && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd ${PKGNAM} && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd ${PKGNAM} && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd ${PKGNAM} && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv ${PKGNAM} ${PKGNAM}-${DATE}_${HEADISAT} diff --git a/source/ap/sc-im/fetch-sc-im.sh b/source/ap/sc-im/fetch-sc-im.sh index 7802545eb..4733a4a08 100755 --- a/source/ap/sc-im/fetch-sc-im.sh +++ b/source/ap/sc-im/fetch-sc-im.sh @@ -35,8 +35,8 @@ git clone https://github.com/andmarti1424/sc-im ) HEADISAT="$( cd sc-im && git log -1 --format=%h )" -DATE="$( cd sc-im && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd sc-im && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd sc-im && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd sc-im && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd sc-im && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv sc-im sc-im-${DATE}_${HEADISAT} diff --git a/source/ap/squashfs-tools/get-squashfs-tools.sh b/source/ap/squashfs-tools/get-squashfs-tools.sh index d0590a6ca..3c8255615 100755 --- a/source/ap/squashfs-tools/get-squashfs-tools.sh +++ b/source/ap/squashfs-tools/get-squashfs-tools.sh @@ -37,7 +37,7 @@ git clone git://github.com/plougher/${PKGNAM} ) HEADISAT="$( cd ${PKGNAM} && git log -1 --format=%h )" -DATE="$( cd ${PKGNAM} && git log -1 --format=%ad --date=format:%Y%m%d )" +DATE="$( cd ${PKGNAM} && git log -1 --format=%cd --date=format:%Y%m%d )" # Cleanup. We're not packing up the whole git repo. ( cd ${PKGNAM} && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv ${PKGNAM} ${PKGNAM}-${DATE}_${HEADISAT} diff --git a/source/ap/undervolt/fetch-undervolt.sh b/source/ap/undervolt/fetch-undervolt.sh index 073165ae1..76df07c9b 100755 --- a/source/ap/undervolt/fetch-undervolt.sh +++ b/source/ap/undervolt/fetch-undervolt.sh @@ -38,8 +38,8 @@ git clone https://github.com/georgewhewell/${PKGNAM} ) HEADISAT="$( cd ${PKGNAM} && git log -1 --format=%h )" -DATE="$( cd ${PKGNAM} && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd ${PKGNAM} && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd ${PKGNAM} && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd ${PKGNAM} && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd ${PKGNAM} && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv ${PKGNAM} ${PKGNAM}-${DATE}_${HEADISAT} diff --git a/source/ap/usbmuxd/fetch-usbmuxd.sh b/source/ap/usbmuxd/fetch-usbmuxd.sh index 7dd8db0bf..76e3395cc 100755 --- a/source/ap/usbmuxd/fetch-usbmuxd.sh +++ b/source/ap/usbmuxd/fetch-usbmuxd.sh @@ -35,8 +35,8 @@ git clone https://github.com/libimobiledevice/usbmuxd ) HEADISAT="$( cd usbmuxd && git log -1 --format=%h )" -DATE="$( cd usbmuxd && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd usbmuxd && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd usbmuxd && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd usbmuxd && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd usbmuxd && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv usbmuxd usbmuxd-${DATE}_${HEADISAT} diff --git a/source/d/clisp/source.download b/source/d/clisp/source.download index 5929b1e56..af369613f 100755 --- a/source/d/clisp/source.download +++ b/source/d/clisp/source.download @@ -35,7 +35,7 @@ git clone https://gitlab.com/gnu-clisp/clisp ) HEADISAT="$( cd clisp && git log -1 --format=%h )" -DATE="$( cd clisp && git log -1 --format=%ad --date=format:%Y%m%d )" +DATE="$( cd clisp && git log -1 --format=%cd --date=format:%Y%m%d )" # Cleanup. We're not packing up the whole git repo. ( cd clisp && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv clisp clisp-2.50_${DATE}_${HEADISAT} diff --git a/source/d/gyp/fetch-gyp.sh b/source/d/gyp/fetch-gyp.sh index 9009a02ae..19c3d6858 100755 --- a/source/d/gyp/fetch-gyp.sh +++ b/source/d/gyp/fetch-gyp.sh @@ -35,8 +35,8 @@ git clone https://chromium.googlesource.com/external/gyp ) HEADISAT="$( cd gyp && git log -1 --format=%h )" -DATE="$( cd gyp && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd gyp && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd gyp && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd gyp && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd gyp && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) rm -r gyp/test/* diff --git a/source/d/icecream/get-icecream.sh b/source/d/icecream/get-icecream.sh index b4642231d..cbbfe6086 100755 --- a/source/d/icecream/get-icecream.sh +++ b/source/d/icecream/get-icecream.sh @@ -35,7 +35,7 @@ git clone git://github.com/icecc/icecream ) HEADISAT="$( cd icecream && git log -1 --format=%h )" -DATE="$( cd icecream && git log -1 --format=%ad --date=format:%Y%m%d )" +DATE="$( cd icecream && git log -1 --format=%cd --date=format:%Y%m%d )" # Cleanup. We're not packing up the whole git repo. ( cd icecream && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv icecream icecream-${DATE}_${HEADISAT} diff --git a/source/d/strace/get-strace.sh b/source/d/strace/get-strace.sh index d31d33a41..3ccc512b4 100755 --- a/source/d/strace/get-strace.sh +++ b/source/d/strace/get-strace.sh @@ -37,7 +37,7 @@ git clone git://github.com/strace/${PKGNAM} ) HEADISAT="$( cd ${PKGNAM} && git log -1 --format=%h )" -DATE="$( cd ${PKGNAM} && git log -1 --format=%ad --date=format:%Y%m%d )" +DATE="$( cd ${PKGNAM} && git log -1 --format=%cd --date=format:%Y%m%d )" # Cleanup. We're not packing up the whole git repo. ( cd ${PKGNAM} && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv ${PKGNAM} ${PKGNAM}-${DATE}_${HEADISAT} diff --git a/source/installer/ChangeLog.txt b/source/installer/ChangeLog.txt index b0f413e80..43f7cda15 100644 --- a/source/installer/ChangeLog.txt +++ b/source/installer/ChangeLog.txt @@ -1,3 +1,7 @@ +Fri Jul 10 00:21:42 UTC 2020 + Add speakup modules to the installer image. We'll hopefully figure out how to + better handle these in the future. ++--------------------------+ Sun Jun 7 23:24:18 UTC 2020 Fix NTFS partition detection, and add support for exFAT. +--------------------------+ diff --git a/source/installer/build_installer.sh b/source/installer/build_installer.sh index f087f1f68..d3841190b 100755 --- a/source/installer/build_installer.sh +++ b/source/installer/build_installer.sh @@ -1574,6 +1574,7 @@ for ind in $(seq 0 $((${#KERNELS[*]} -1)) ); do mv staging staging.orig mv staging.orig/hv staging mv staging.orig/exfat staging + mv staging.orig/speakup staging rm -rf${VERBOSE1} staging.orig # Save the Hyper-V keyboard module: mkdir -p input.orig/serio diff --git a/source/k/kernel-configs/config-generic-5.4.50 b/source/k/kernel-configs/config-generic-5.4.51 index 354ea9b92..df6406c9c 100644 --- a/source/k/kernel-configs/config-generic-5.4.50 +++ b/source/k/kernel-configs/config-generic-5.4.51 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.50 Kernel Configuration +# Linux/x86 5.4.51 Kernel Configuration # # @@ -645,6 +645,7 @@ CONFIG_UEFI_CPER=y CONFIG_UEFI_CPER_X86=y CONFIG_EFI_DEV_PATH_PARSER=y CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y # # Tegra firmware driver diff --git a/source/k/kernel-configs/config-generic-5.4.50.x64 b/source/k/kernel-configs/config-generic-5.4.51.x64 index 580514732..90203bc35 100644 --- a/source/k/kernel-configs/config-generic-5.4.50.x64 +++ b/source/k/kernel-configs/config-generic-5.4.51.x64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.50 Kernel Configuration +# Linux/x86 5.4.51 Kernel Configuration # # @@ -674,6 +674,7 @@ CONFIG_UEFI_CPER=y CONFIG_UEFI_CPER_X86=y CONFIG_EFI_DEV_PATH_PARSER=y CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y # # Tegra firmware driver diff --git a/source/k/kernel-configs/config-generic-smp-5.4.50-smp b/source/k/kernel-configs/config-generic-smp-5.4.51-smp index ea5d8dbd7..2ef48e228 100644 --- a/source/k/kernel-configs/config-generic-smp-5.4.50-smp +++ b/source/k/kernel-configs/config-generic-smp-5.4.51-smp @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.50 Kernel Configuration +# Linux/x86 5.4.51 Kernel Configuration # # @@ -683,6 +683,7 @@ CONFIG_UEFI_CPER=y CONFIG_UEFI_CPER_X86=y CONFIG_EFI_DEV_PATH_PARSER=y CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y # # Tegra firmware driver diff --git a/source/k/kernel-configs/config-huge-5.4.50 b/source/k/kernel-configs/config-huge-5.4.51 index 464f7efc9..3cceb8280 100644 --- a/source/k/kernel-configs/config-huge-5.4.50 +++ b/source/k/kernel-configs/config-huge-5.4.51 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.50 Kernel Configuration +# Linux/x86 5.4.51 Kernel Configuration # # @@ -645,6 +645,7 @@ CONFIG_UEFI_CPER=y CONFIG_UEFI_CPER_X86=y CONFIG_EFI_DEV_PATH_PARSER=y CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y # # Tegra firmware driver @@ -7512,22 +7513,22 @@ CONFIG_FB_SM750=m # # Speakup console speech # -CONFIG_SPEAKUP=y -CONFIG_SPEAKUP_SYNTH_ACNTSA=y -CONFIG_SPEAKUP_SYNTH_ACNTPC=y -CONFIG_SPEAKUP_SYNTH_APOLLO=y -CONFIG_SPEAKUP_SYNTH_AUDPTR=y -CONFIG_SPEAKUP_SYNTH_BNS=y -CONFIG_SPEAKUP_SYNTH_DECTLK=y -CONFIG_SPEAKUP_SYNTH_DECEXT=y +CONFIG_SPEAKUP=m +CONFIG_SPEAKUP_SYNTH_ACNTSA=m +CONFIG_SPEAKUP_SYNTH_ACNTPC=m +CONFIG_SPEAKUP_SYNTH_APOLLO=m +CONFIG_SPEAKUP_SYNTH_AUDPTR=m +CONFIG_SPEAKUP_SYNTH_BNS=m +CONFIG_SPEAKUP_SYNTH_DECTLK=m +CONFIG_SPEAKUP_SYNTH_DECEXT=m CONFIG_SPEAKUP_SYNTH_DECPC=m -CONFIG_SPEAKUP_SYNTH_DTLK=y -CONFIG_SPEAKUP_SYNTH_KEYPC=y -CONFIG_SPEAKUP_SYNTH_LTLK=y -CONFIG_SPEAKUP_SYNTH_SOFT=y -CONFIG_SPEAKUP_SYNTH_SPKOUT=y -CONFIG_SPEAKUP_SYNTH_TXPRT=y -CONFIG_SPEAKUP_SYNTH_DUMMY=y +CONFIG_SPEAKUP_SYNTH_DTLK=m +CONFIG_SPEAKUP_SYNTH_KEYPC=m +CONFIG_SPEAKUP_SYNTH_LTLK=m +CONFIG_SPEAKUP_SYNTH_SOFT=m +CONFIG_SPEAKUP_SYNTH_SPKOUT=m +CONFIG_SPEAKUP_SYNTH_TXPRT=m +CONFIG_SPEAKUP_SYNTH_DUMMY=m # end of Speakup console speech CONFIG_STAGING_MEDIA=y diff --git a/source/k/kernel-configs/config-huge-5.4.50.x64 b/source/k/kernel-configs/config-huge-5.4.51.x64 index 84c948a46..9783fafb3 100644 --- a/source/k/kernel-configs/config-huge-5.4.50.x64 +++ b/source/k/kernel-configs/config-huge-5.4.51.x64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.50 Kernel Configuration +# Linux/x86 5.4.51 Kernel Configuration # # @@ -674,6 +674,7 @@ CONFIG_UEFI_CPER=y CONFIG_UEFI_CPER_X86=y CONFIG_EFI_DEV_PATH_PARSER=y CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y # # Tegra firmware driver @@ -7467,18 +7468,18 @@ CONFIG_FB_SM750=m # # Speakup console speech # -CONFIG_SPEAKUP=y -CONFIG_SPEAKUP_SYNTH_ACNTSA=y -CONFIG_SPEAKUP_SYNTH_APOLLO=y -CONFIG_SPEAKUP_SYNTH_AUDPTR=y -CONFIG_SPEAKUP_SYNTH_BNS=y -CONFIG_SPEAKUP_SYNTH_DECTLK=y -CONFIG_SPEAKUP_SYNTH_DECEXT=y -CONFIG_SPEAKUP_SYNTH_LTLK=y -CONFIG_SPEAKUP_SYNTH_SOFT=y -CONFIG_SPEAKUP_SYNTH_SPKOUT=y -CONFIG_SPEAKUP_SYNTH_TXPRT=y -CONFIG_SPEAKUP_SYNTH_DUMMY=y +CONFIG_SPEAKUP=m +CONFIG_SPEAKUP_SYNTH_ACNTSA=m +CONFIG_SPEAKUP_SYNTH_APOLLO=m +CONFIG_SPEAKUP_SYNTH_AUDPTR=m +CONFIG_SPEAKUP_SYNTH_BNS=m +CONFIG_SPEAKUP_SYNTH_DECTLK=m +CONFIG_SPEAKUP_SYNTH_DECEXT=m +CONFIG_SPEAKUP_SYNTH_LTLK=m +CONFIG_SPEAKUP_SYNTH_SOFT=m +CONFIG_SPEAKUP_SYNTH_SPKOUT=m +CONFIG_SPEAKUP_SYNTH_TXPRT=m +CONFIG_SPEAKUP_SYNTH_DUMMY=m # end of Speakup console speech CONFIG_STAGING_MEDIA=y diff --git a/source/k/kernel-configs/config-huge-smp-5.4.50-smp b/source/k/kernel-configs/config-huge-smp-5.4.51-smp index 021573f77..6069fc7e8 100644 --- a/source/k/kernel-configs/config-huge-smp-5.4.50-smp +++ b/source/k/kernel-configs/config-huge-smp-5.4.51-smp @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.50 Kernel Configuration +# Linux/x86 5.4.51 Kernel Configuration # # @@ -683,6 +683,7 @@ CONFIG_UEFI_CPER=y CONFIG_UEFI_CPER_X86=y CONFIG_EFI_DEV_PATH_PARSER=y CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y # # Tegra firmware driver @@ -7566,22 +7567,22 @@ CONFIG_FB_SM750=m # # Speakup console speech # -CONFIG_SPEAKUP=y -CONFIG_SPEAKUP_SYNTH_ACNTSA=y -CONFIG_SPEAKUP_SYNTH_ACNTPC=y -CONFIG_SPEAKUP_SYNTH_APOLLO=y -CONFIG_SPEAKUP_SYNTH_AUDPTR=y -CONFIG_SPEAKUP_SYNTH_BNS=y -CONFIG_SPEAKUP_SYNTH_DECTLK=y -CONFIG_SPEAKUP_SYNTH_DECEXT=y +CONFIG_SPEAKUP=m +CONFIG_SPEAKUP_SYNTH_ACNTSA=m +CONFIG_SPEAKUP_SYNTH_ACNTPC=m +CONFIG_SPEAKUP_SYNTH_APOLLO=m +CONFIG_SPEAKUP_SYNTH_AUDPTR=m +CONFIG_SPEAKUP_SYNTH_BNS=m +CONFIG_SPEAKUP_SYNTH_DECTLK=m +CONFIG_SPEAKUP_SYNTH_DECEXT=m CONFIG_SPEAKUP_SYNTH_DECPC=m -CONFIG_SPEAKUP_SYNTH_DTLK=y -CONFIG_SPEAKUP_SYNTH_KEYPC=y -CONFIG_SPEAKUP_SYNTH_LTLK=y -CONFIG_SPEAKUP_SYNTH_SOFT=y -CONFIG_SPEAKUP_SYNTH_SPKOUT=y -CONFIG_SPEAKUP_SYNTH_TXPRT=y -CONFIG_SPEAKUP_SYNTH_DUMMY=y +CONFIG_SPEAKUP_SYNTH_DTLK=m +CONFIG_SPEAKUP_SYNTH_KEYPC=m +CONFIG_SPEAKUP_SYNTH_LTLK=m +CONFIG_SPEAKUP_SYNTH_SOFT=m +CONFIG_SPEAKUP_SYNTH_SPKOUT=m +CONFIG_SPEAKUP_SYNTH_TXPRT=m +CONFIG_SPEAKUP_SYNTH_DUMMY=m # end of Speakup console speech CONFIG_STAGING_MEDIA=y diff --git a/source/l/libclc/fetch-libclc.sh b/source/l/libclc/fetch-libclc.sh index fb5d4f33b..54023cbdf 100755 --- a/source/l/libclc/fetch-libclc.sh +++ b/source/l/libclc/fetch-libclc.sh @@ -35,8 +35,8 @@ git clone http://llvm.org/git/libclc.git ) HEADISAT="$( cd libclc && git log -1 --format=%h )" -DATE="$( cd libclc && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd libclc && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd libclc && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd libclc && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd libclc && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv libclc libclc-${DATE}_${HEADISAT} diff --git a/source/l/libimobiledevice/fetch-libimobiledevice.sh b/source/l/libimobiledevice/fetch-libimobiledevice.sh index 069f15964..ebd6cb9c3 100755 --- a/source/l/libimobiledevice/fetch-libimobiledevice.sh +++ b/source/l/libimobiledevice/fetch-libimobiledevice.sh @@ -35,8 +35,8 @@ git clone https://github.com/libimobiledevice/libimobiledevice ) HEADISAT="$( cd libimobiledevice && git log -1 --format=%h )" -DATE="$( cd libimobiledevice && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd libimobiledevice && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd libimobiledevice && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd libimobiledevice && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd libimobiledevice && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv libimobiledevice libimobiledevice-${DATE}_${HEADISAT} diff --git a/source/l/libusbmuxd/fetch-libusbmuxd.sh b/source/l/libusbmuxd/fetch-libusbmuxd.sh index 690b74ef9..247ab31db 100755 --- a/source/l/libusbmuxd/fetch-libusbmuxd.sh +++ b/source/l/libusbmuxd/fetch-libusbmuxd.sh @@ -35,8 +35,8 @@ git clone https://github.com/libimobiledevice/libusbmuxd ) HEADISAT="$( cd libusbmuxd && git log -1 --format=%h )" -DATE="$( cd libusbmuxd && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd libusbmuxd && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd libusbmuxd && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd libusbmuxd && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd libusbmuxd && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv libusbmuxd libusbmuxd-${DATE}_${HEADISAT} diff --git a/source/l/woff2/get-woff2.sh b/source/l/woff2/get-woff2.sh index 3ff4b7a5d..684aebc10 100755 --- a/source/l/woff2/get-woff2.sh +++ b/source/l/woff2/get-woff2.sh @@ -27,7 +27,7 @@ rm -rf woff2 git clone https://github.com/google/woff2.git HEADISAT="$( cd woff2 && git log -1 --format=%h )" -DATE="$( cd woff2 && git log -1 --format=%ad --date=format:%Y%m%d )" +DATE="$( cd woff2 && git log -1 --format=%cd --date=format:%Y%m%d )" # Cleanup. We're not packing up the whole git repo. ( cd woff2 && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) diff --git a/source/n/mobile-broadband-provider-info/fetch-mobile-broadband-provider-info.sh b/source/n/mobile-broadband-provider-info/fetch-mobile-broadband-provider-info.sh index c1613a89d..f6ef8b307 100755 --- a/source/n/mobile-broadband-provider-info/fetch-mobile-broadband-provider-info.sh +++ b/source/n/mobile-broadband-provider-info/fetch-mobile-broadband-provider-info.sh @@ -35,8 +35,8 @@ git clone https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info.git ) HEADISAT="$( cd mobile-broadband-provider-info && git log -1 --format=%h )" -DATE="$( cd mobile-broadband-provider-info && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd mobile-broadband-provider-info && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd mobile-broadband-provider-info && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd mobile-broadband-provider-info && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd mobile-broadband-provider-info && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv mobile-broadband-provider-info mobile-broadband-provider-info-${DATE}_${HEADISAT} diff --git a/source/n/net-tools/get-net-tools.sh b/source/n/net-tools/get-net-tools.sh index 22e4f4bbd..69b70151d 100755 --- a/source/n/net-tools/get-net-tools.sh +++ b/source/n/net-tools/get-net-tools.sh @@ -35,7 +35,7 @@ git clone git://net-tools.git.sourceforge.net/gitroot/net-tools/net-tools/ ) HEADISAT="$( cd net-tools && git log -1 --format=%h )" -DATE="$( cd net-tools && git log -1 --format=%ad --date=format:%Y%m%d )" +DATE="$( cd net-tools && git log -1 --format=%cd --date=format:%Y%m%d )" # Cleanup. We're not packing up the whole git repo. ( cd net-tools && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv net-tools net-tools-${DATE}_${HEADISAT} diff --git a/source/x/urw-core35-fonts-otf/get-urw-core35-fonts.sh b/source/x/urw-core35-fonts-otf/get-urw-core35-fonts.sh index b2b570a77..648a0a841 100755 --- a/source/x/urw-core35-fonts-otf/get-urw-core35-fonts.sh +++ b/source/x/urw-core35-fonts-otf/get-urw-core35-fonts.sh @@ -40,7 +40,7 @@ git clone git://git.ghostscript.com/urw-core35-fonts.git ) HEADISAT="$( cd urw-core35-fonts && git log -1 --format=%h )" -DATE="$( cd urw-core35-fonts && git log -1 --format=%ad --date=format:%Y%m%d )" +DATE="$( cd urw-core35-fonts && git log -1 --format=%cd --date=format:%Y%m%d )" # Cleanup. We're not packing up the whole git repo. ( cd urw-core35-fonts && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv urw-core35-fonts urw-core35-fonts-otf-${DATE}_${HEADISAT}_git diff --git a/source/x/x11/src/get-xf86-video-ati.sh b/source/x/x11/src/get-xf86-video-ati.sh index 3b4b8d816..a19041d80 100755 --- a/source/x/x11/src/get-xf86-video-ati.sh +++ b/source/x/x11/src/get-xf86-video-ati.sh @@ -35,8 +35,8 @@ git clone https://gitlab.freedesktop.org/xorg/driver/xf86-video-ati/ ) HEADISAT="$( cd xf86-video-ati && git log -1 --format=%h )" -DATE="$( cd xf86-video-ati && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd xf86-video-ati && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd xf86-video-ati && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd xf86-video-ati && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd xf86-video-ati && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv xf86-video-ati xf86-video-ati-${DATE}_${HEADISAT} diff --git a/source/x/x11/src/get-xf86-video-intel.sh b/source/x/x11/src/get-xf86-video-intel.sh index 20ce4e077..84f5b5aa4 100755 --- a/source/x/x11/src/get-xf86-video-intel.sh +++ b/source/x/x11/src/get-xf86-video-intel.sh @@ -35,8 +35,8 @@ git clone https://gitlab.freedesktop.org/xorg/driver/xf86-video-intel/ ) HEADISAT="$( cd xf86-video-intel && git log -1 --format=%h )" -DATE="$( cd xf86-video-intel && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd xf86-video-intel && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd xf86-video-intel && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd xf86-video-intel && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd xf86-video-intel && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv xf86-video-intel xf86-video-intel-${DATE}_${HEADISAT} diff --git a/source/x/x11/src/get-xf86-video-nouveau.sh b/source/x/x11/src/get-xf86-video-nouveau.sh index b0c6f999a..00a44d2fb 100755 --- a/source/x/x11/src/get-xf86-video-nouveau.sh +++ b/source/x/x11/src/get-xf86-video-nouveau.sh @@ -35,8 +35,8 @@ git clone git://anongit.freedesktop.org/git/nouveau/xf86-video-nouveau/ ) HEADISAT="$( cd xf86-video-nouveau && git log -1 --format=%h )" -DATE="$( cd xf86-video-nouveau && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd xf86-video-nouveau && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd xf86-video-nouveau && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd xf86-video-nouveau && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd xf86-video-nouveau && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv xf86-video-nouveau xf86-video-nouveau-${DATE}_${HEADISAT} diff --git a/source/x/x11/src/get-xf86-video-openchrome.sh b/source/x/x11/src/get-xf86-video-openchrome.sh index ed64737da..e46049d7b 100755 --- a/source/x/x11/src/get-xf86-video-openchrome.sh +++ b/source/x/x11/src/get-xf86-video-openchrome.sh @@ -35,8 +35,8 @@ git clone git://anongit.freedesktop.org/git/openchrome/xf86-video-openchrome/ ) HEADISAT="$( cd xf86-video-openchrome && git log -1 --format=%h )" -DATE="$( cd xf86-video-openchrome && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd xf86-video-openchrome && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd xf86-video-openchrome && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd xf86-video-openchrome && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd xf86-video-openchrome && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv xf86-video-openchrome xf86-video-openchrome-${DATE}_${HEADISAT} diff --git a/source/x/x11/src/get-xf86-video-r128.sh b/source/x/x11/src/get-xf86-video-r128.sh index aa3e8d03b..3776abbbd 100755 --- a/source/x/x11/src/get-xf86-video-r128.sh +++ b/source/x/x11/src/get-xf86-video-r128.sh @@ -35,8 +35,8 @@ git clone https://gitlab.freedesktop.org/xorg/driver/xf86-video-r128/ ) HEADISAT="$( cd xf86-video-r128 && git log -1 --format=%h )" -DATE="$( cd xf86-video-r128 && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd xf86-video-r128 && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd xf86-video-r128 && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd xf86-video-r128 && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd xf86-video-r128 && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv xf86-video-r128 xf86-video-r128-${DATE}_${HEADISAT} diff --git a/source/x/x11/src/get-xf86-video-savage.sh b/source/x/x11/src/get-xf86-video-savage.sh index 04f697308..a9ee3358f 100755 --- a/source/x/x11/src/get-xf86-video-savage.sh +++ b/source/x/x11/src/get-xf86-video-savage.sh @@ -35,8 +35,8 @@ git clone https://gitlab.freedesktop.org/xorg/driver/xf86-video-savage/ ) HEADISAT="$( cd xf86-video-savage && git log -1 --format=%h )" -DATE="$( cd xf86-video-savage && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd xf86-video-savage && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd xf86-video-savage && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd xf86-video-savage && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd xf86-video-savage && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv xf86-video-savage xf86-video-savage-${DATE}_${HEADISAT} diff --git a/source/x/x11/src/get-xf86-video-sis.sh b/source/x/x11/src/get-xf86-video-sis.sh index 7f86107c0..a51745a06 100755 --- a/source/x/x11/src/get-xf86-video-sis.sh +++ b/source/x/x11/src/get-xf86-video-sis.sh @@ -35,8 +35,8 @@ git clone https://gitlab.freedesktop.org/xorg/driver/xf86-video-sis/ ) HEADISAT="$( cd xf86-video-sis && git log -1 --format=%h )" -DATE="$( cd xf86-video-sis && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd xf86-video-sis && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd xf86-video-sis && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd xf86-video-sis && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd xf86-video-sis && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv xf86-video-sis xf86-video-sis-${DATE}_${HEADISAT} diff --git a/source/x/x11/src/get-xf86-video-v4l.sh b/source/x/x11/src/get-xf86-video-v4l.sh index a15168631..131d08284 100755 --- a/source/x/x11/src/get-xf86-video-v4l.sh +++ b/source/x/x11/src/get-xf86-video-v4l.sh @@ -35,8 +35,8 @@ git clone https://gitlab.freedesktop.org/xorg/driver/xf86-video-v4l/ ) HEADISAT="$( cd xf86-video-v4l && git log -1 --format=%h )" -DATE="$( cd xf86-video-v4l && git log -1 --format=%ad --date=format:%Y%m%d )" -LONGDATE="$( cd xf86-video-v4l && git log -1 --format=%ad --date=format:%c )" +DATE="$( cd xf86-video-v4l && git log -1 --format=%cd --date=format:%Y%m%d )" +LONGDATE="$( cd xf86-video-v4l && git log -1 --format=%cd --date=format:%c )" # Cleanup. We're not packing up the whole git repo. ( cd xf86-video-v4l && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) mv xf86-video-v4l xf86-video-v4l-${DATE}_${HEADISAT} diff --git a/source/xap/mozilla-firefox/mozilla-firefox.SlackBuild b/source/xap/mozilla-firefox/mozilla-firefox.SlackBuild index e36894695..c8e20e3c2 100755 --- a/source/xap/mozilla-firefox/mozilla-firefox.SlackBuild +++ b/source/xap/mozilla-firefox/mozilla-firefox.SlackBuild @@ -28,7 +28,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=mozilla-firefox VERSION=$(basename $(ls firefox-*.tar.?z | cut -d - -f 2 | rev | cut -f 3- -d . | rev) .source) RELEASEVER=$(echo $VERSION | cut -f 1 -d r | cut -f 1 -d b | cut -f 1 -d e) -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} # Specify this variable for a localized build. # For example, to build a version of Firefox with Italian support, run |