wok-6.x rev 25467
Up gnumeric (1.12.53)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Oct 03 08:28:51 2022 +0000 (2022-10-03) |
parents | 942f66f38758 |
children | 2b776cc39d25 |
files | BootProg/stuff/boot16.asm BootProg/stuff/boot32.asm BootProg/stuff/bootex.asm gnumeric/receipt goffice-dev/receipt goffice/receipt gtkspell/receipt |
line diff
1.1 --- a/BootProg/stuff/boot16.asm Sat Oct 01 09:32:27 2022 +0000 1.2 +++ b/BootProg/stuff/boot16.asm Mon Oct 03 08:28:51 2022 +0000 1.3 @@ -90,6 +90,7 @@ 1.4 Over2GB equ 1 ; +5 bytes 1.5 GeometryCheck equ 1 ; +18 bytes 1.6 SectorOf512Bytes equ 1 ; -4/-6 bytes 1.7 +CheckAttrib equ 0 ; +6 bytes 1.8 1.9 [BITS 16] 1.10 [CPU 8086] 1.11 @@ -271,6 +272,13 @@ 1.12 mov cl, NameLength 1.13 mov si, ProgramName ; ds:si -> program name 1.14 repe cmpsb 1.15 +%if CheckAttrib != 0 1.16 +VolumeLabel equ 8 1.17 +SubDirectory equ 10h 1.18 + jnz SkipFindName 1.19 + test byte [es:di], VolumeLabel+SubDirectory 1.20 +SkipFindName: 1.21 +%endif 1.22 pop di 1.23 je FindNameFound 1.24 %if NullEntryCheck != 0
2.1 --- a/BootProg/stuff/boot32.asm Sat Oct 01 09:32:27 2022 +0000 2.2 +++ b/BootProg/stuff/boot32.asm Mon Oct 03 08:28:51 2022 +0000 2.3 @@ -88,6 +88,7 @@ 2.4 CHSupTo32MB equ 1 ; +7 bytes 2.5 SectorOf512Bytes equ 1 ; -5 bytes 2.6 Always2FATs equ 0 ; -4 bytes 2.7 +CheckAttrib equ 0 ; +6 bytes 2.8 2.9 [BITS 16] 2.10 2.11 @@ -234,6 +235,13 @@ 2.12 mov cl, NameLength 2.13 mov si, ProgramName ; ds:si -> program name 2.14 repe cmpsb 2.15 +%if CheckAttrib != 0 2.16 +VolumeLabel equ 8 2.17 +SubDirectory equ 10h 2.18 + jnz SkipFindName 2.19 + test byte [es:di], VolumeLabel+SubDirectory 2.20 +SkipFindName: 2.21 +%endif 2.22 je FindNameFound 2.23 popa 2.24 add di, byte 32
3.1 --- a/BootProg/stuff/bootex.asm Sat Oct 01 09:32:27 2022 +0000 3.2 +++ b/BootProg/stuff/bootex.asm Mon Oct 03 08:28:51 2022 +0000 3.3 @@ -81,6 +81,7 @@ 3.4 NullEntryCheck equ 1 ; +3 bytes 3.5 ReadRetry equ 1 ; +8 bytes 3.6 SectorOf512Bytes equ 1 ; -13 bytes 3.7 +CheckAttrib equ 0 ; +6 bytes 3.8 3.9 [BITS 16] 3.10 [CPU 386] 3.11 @@ -197,7 +198,8 @@ 3.12 ;; dword [bx+FileSize] file size ;; 3.13 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 3.14 3.15 -CurNameSize equ 3 ; 1 byte 3.16 +CurNameSize equ 03h ; 1 byte 3.17 +Attributes equ 0Bh ; 1 byte 3.18 StartCluster equ 14h ; 4 bytes 3.19 FileSize equ 18h ; 8 bytes 3.20 3.21 @@ -208,11 +210,10 @@ 3.22 xor ax, ax 3.23 or al, [es:di] 3.24 je FindNameFailed 3.25 + cmp al, 0c0h ; EXFAT_ENTRY_FILE_INFO ? 3.26 %else 3.27 - movzx ax, byte [es:di] 3.28 + cmp byte [es:di], 0c0h ; EXFAT_ENTRY_FILE_INFO ? 3.29 %endif 3.30 - 3.31 - cmp al, 0c0h ; EXFAT_ENTRY_FILE_INFO ? 3.32 jne NotFileInfo 3.33 3.34 mov bl, 31 3.35 @@ -223,13 +224,24 @@ 3.36 jnz CopyInfo ; keep BIOS boot drive number 3.37 3.38 NotFileInfo: 3.39 +%if NullEntryCheck != 0 3.40 mov al, 0c1h ; EXFAT_ENTRY_FILE_NAME ? 3.41 +%else 3.42 + mov ax, 0c1h ; EXFAT_ENTRY_FILE_NAME ? 3.43 +%endif 3.44 mov cx, NameLength+1 3.45 mov si, ProgramName ; ds:si -> program name 3.46 CheckName: 3.47 scasw ; compare UTF-16 3.48 lodsb ; with ASCII 3.49 loope CheckName 3.50 +%if CheckAttrib != 0 3.51 +VolumeLabel equ 8 3.52 +SubDirectory equ 10h 3.53 + jnz SkipFindName 3.54 + test byte [bx+Attributes], VolumeLabel+SubDirectory 3.55 +SkipFindName: 3.56 +%endif 3.57 je FindNameFound ; cx = 0 3.58 popa ; restore ax, cx, si, di 3.59
4.1 --- a/gnumeric/receipt Sat Oct 01 09:32:27 2022 +0000 4.2 +++ b/gnumeric/receipt Mon Oct 03 08:28:51 2022 +0000 4.3 @@ -1,7 +1,7 @@ 4.4 # SliTaz package receipt. 4.5 4.6 PACKAGE="gnumeric" 4.7 -VERSION="1.12.32" 4.8 +VERSION="1.12.53" 4.9 CATEGORY="office" 4.10 SHORT_DESC="Office Spreadsheet application." 4.11 MAINTAINER="pankso@slitaz.org" 4.12 @@ -20,6 +20,7 @@ 4.13 xorg-libXrandr xorg-libXrender zlib" 4.14 BUILD_DEPENDS="bison goffice-dev gtk-doc gtk+3-dev libcroco-dev rarian" 4.15 4.16 +# What is the latest version available today? 4.17 current_version() 4.18 { 4.19 wget -O - $(dirname $WGET_URL) 2>/dev/null | \ 4.20 @@ -29,6 +30,8 @@ 4.21 # Rules to configure and make the package. 4.22 compile_rules() 4.23 { 4.24 + sed 's|^gnm_cell_has_expr|gnm_cell_has_expr (GnmCell const *cell);\ninline gboolean\n&|' \ 4.25 + -i src/cell.h 4.26 ./configure \ 4.27 --without-perl \ 4.28 --without-python \ 4.29 @@ -55,6 +58,4 @@ 4.30 cp -a $install/usr/share/glib-2.0 $fs/usr/share 4.31 cp -a $install/usr/share/gnumeric $fs/usr/share 4.32 cp -a $install/usr/share/icons $fs/usr/share 4.33 - cp -a $install/usr/share/pixmaps $fs/usr/share 4.34 - find $fs/usr/share/pixmaps -name '*.ico' -delete 4.35 }
5.1 --- a/goffice-dev/receipt Sat Oct 01 09:32:27 2022 +0000 5.2 +++ b/goffice-dev/receipt Mon Oct 03 08:28:51 2022 +0000 5.3 @@ -1,7 +1,7 @@ 5.4 # SliTaz package receipt. 5.5 5.6 PACKAGE="goffice-dev" 5.7 -VERSION="0.10.46" 5.8 +VERSION="0.10.53" 5.9 CATEGORY="development" 5.10 SHORT_DESC="GOffice development files." 5.11 MAINTAINER="pankso@slitaz.org"
6.1 --- a/goffice/receipt Sat Oct 01 09:32:27 2022 +0000 6.2 +++ b/goffice/receipt Mon Oct 03 08:28:51 2022 +0000 6.3 @@ -1,7 +1,7 @@ 6.4 # SliTaz package receipt. 6.5 6.6 PACKAGE="goffice" 6.7 -VERSION="0.10.46" 6.8 +VERSION="0.10.53" 6.9 CATEGORY="libs" 6.10 SHORT_DESC="A library of document-centric objects and utilities." 6.11 MAINTAINER="pankso@slitaz.org"
7.1 --- a/gtkspell/receipt Sat Oct 01 09:32:27 2022 +0000 7.2 +++ b/gtkspell/receipt Mon Oct 03 08:28:51 2022 +0000 7.3 @@ -6,7 +6,7 @@ 7.4 SHORT_DESC="provides highlighting and replacement of misspelled words" 7.5 MAINTAINER="allan316@gmail.com" 7.6 LICENSE="GPL2" 7.7 -WEB_SITE="http://gtkspell.sourceforge.net" 7.8 +WEB_SITE="https://gtkspell.sourceforge.net" 7.9 7.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 7.11 WGET_URL="$WEB_SITE/download/$TARBALL"