# HG changeset patch # User Pascal Bellard # Date 1695748178 0 # Node ID 1e55ea7da8ded97dcc1156b7607ead617e96488e # Parent bbb34fe4904d85d9254b709049c66cd696db2595 linux: fix bundle.S diff -r bbb34fe4904d -r 1e55ea7da8de boot-man/receipt --- a/boot-man/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/boot-man/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="boot-man" VERSION="slitaz" CATEGORY="games" +GROUP="games" SHORT_DESC="Bootable text pacman game in a 512-byte boot sector." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="unknown" diff -r bbb34fe4904d -r 1e55ea7da8de boot-man/stuff/boot-man.asm --- a/boot-man/stuff/boot-man.asm Sun Sep 24 17:53:05 2023 +0000 +++ b/boot-man/stuff/boot-man.asm Tue Sep 26 17:09:38 2023 +0000 @@ -64,6 +64,7 @@ ; won't run on your machine. start: + sti ; Allow interrupts call copy ; Can run as bootsector or DOS COM file moved: diff -r bbb34fe4904d -r 1e55ea7da8de bootbricks/receipt --- a/bootbricks/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/bootbricks/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="bootbricks" VERSION="slitaz" CATEGORY="games" +GROUP="games" SHORT_DESC="Bootable bricks game in a 512-byte boot sector." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="unknown" diff -r bbb34fe4904d -r 1e55ea7da8de bootfbird/receipt --- a/bootfbird/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/bootfbird/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="bootfbird" VERSION="slitaz" CATEGORY="games" +GROUP="games" SHORT_DESC="Bootable flappy bird game in a 512-byte boot sector." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="unknown" diff -r bbb34fe4904d -r 1e55ea7da8de bootfbird/stuff/fbird.asm --- a/bootfbird/stuff/fbird.asm Sun Sep 24 17:53:05 2023 +0000 +++ b/bootfbird/stuff/fbird.asm Tue Sep 26 17:09:38 2023 +0000 @@ -21,6 +21,7 @@ ; Game restart ; fb21: cld ; Reset direction flag (so stosw increments registers) + sti ; Allow interrupts mov ax,0xb800 ; Point to video segment mov ds,ax ; Both the source (common access) mov es,ax ; and target segments diff -r bbb34fe4904d -r 1e55ea7da8de bootinvaders/receipt --- a/bootinvaders/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/bootinvaders/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="bootinvaders" VERSION="slitaz" CATEGORY="games" +GROUP="games" SHORT_DESC="Bootable invaders game in a 512-byte boot sector." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="unknown" diff -r bbb34fe4904d -r 1e55ea7da8de bootinvaders/stuff/invaders.asm --- a/bootinvaders/stuff/invaders.asm Sun Sep 24 17:53:05 2023 +0000 +++ b/bootinvaders/stuff/invaders.asm Tue Sep 26 17:09:38 2023 +0000 @@ -66,6 +66,7 @@ restart_game: mov ax,0x0013 ; Set mode 0x13 (320x200x256 VGA) int 0x10 ; Call BIOS + sti ; Allow interrupts cld mov ax,0xa000 ; Point to screen memory mov ds,ax ; Both DS... diff -r bbb34fe4904d -r 1e55ea7da8de bootloader/receipt --- a/bootloader/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/bootloader/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="bootloader" VERSION="1.0" CATEGORY="base-system" +GROUP="misc" SHORT_DESC="Boot floppy creation tool" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" diff -r bbb34fe4904d -r 1e55ea7da8de bootmine/receipt --- a/bootmine/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/bootmine/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="bootmine" VERSION="1.1.1-slitaz" CATEGORY="games" +GROUP="games" SHORT_DESC="Bootable minesweeper game in a 512-byte boot sector." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" diff -r bbb34fe4904d -r 1e55ea7da8de bootpillman/receipt --- a/bootpillman/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/bootpillman/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="bootpillman" VERSION="slitaz" CATEGORY="games" +GROUP="games" SHORT_DESC="Bootable graphic pacman game in a 512-byte boot sector." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="unknown" diff -r bbb34fe4904d -r 1e55ea7da8de bootpillman/stuff/pillman.asm --- a/bootpillman/stuff/pillman.asm Sun Sep 24 17:53:05 2023 +0000 +++ b/bootpillman/stuff/pillman.asm Tue Sep 26 17:09:38 2023 +0000 @@ -51,18 +51,18 @@ GHOST4_COLOR: equ 0x34 ; Ghost 4 color old_time: + sti cld +frame: push cs -frame: pop ss restart: - xor sp,sp + mov sp,0xa000 ; Video segment + mov ds,sp ; Use as source data segment + mov es,sp ; Use as target data segment mov ax,0x0013 ; Set mode 0x13 (320x200x256 VGA) int 0x10 ; Call BIOS - mov ax,0xa000 ; Video segment - mov ds,ax ; Use as source data segment - mov es,ax ; Use as target data segment call get_tables tables: diff -r bbb34fe4904d -r 1e55ea7da8de bootris/receipt --- a/bootris/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/bootris/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="bootris" VERSION="slitaz" CATEGORY="games" +GROUP="games" SHORT_DESC="Bootable Tetris game in a 512-byte boot sector." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="unknown" diff -r bbb34fe4904d -r 1e55ea7da8de bootris/stuff/tetranglix.asm --- a/bootris/stuff/tetranglix.asm Sun Sep 24 17:53:05 2023 +0000 +++ b/bootris/stuff/tetranglix.asm Tue Sep 26 17:09:38 2023 +0000 @@ -39,6 +39,9 @@ ; Clear direction flag. cld + ; Allow interrupts + sti + ; Clear BSS mov di, BSS mov cx, di ;at least BSS_SIZE @@ -190,7 +193,7 @@ mov si, OFFSET ; For some reason this doesn't work with BootOS over VirtualBox 5.1.22 - %if 0 + %ifdef READ_PIT mov bx, [0x046C] inc bx inc bx ; Wait for 2 PIT ticks. @@ -227,7 +230,11 @@ in al,(0x40) ; Only 7 tetraminos, index as 1-7. + %ifdef READ_PIT and ax, 7 + %else + and al, 7 ; ah = 0 + %endif je .choose_tetramino ; Get the address of the tetramino (in bitmap format). @@ -410,7 +417,7 @@ .game_over: ; Game Over xor ax, ax - int 0x16 ; wait for and key + int 0x16 ; wait for a key dec ah jmp exit_game_over diff -r bbb34fe4904d -r 1e55ea7da8de bootsokoban/receipt --- a/bootsokoban/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/bootsokoban/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="bootsokoban" VERSION="slitaz" CATEGORY="games" +GROUP="games" SHORT_DESC="Bootable sokoban game in a 512-byte boot sector." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="unknown" diff -r bbb34fe4904d -r 1e55ea7da8de bootsokoban/stuff/sokoban.asm --- a/bootsokoban/stuff/sokoban.asm Sun Sep 24 17:53:05 2023 +0000 +++ b/bootsokoban/stuff/sokoban.asm Tue Sep 26 17:09:38 2023 +0000 @@ -8,6 +8,7 @@ %define MOVE_COUNT boot: + sti ; Allow interrupts ; clear screen (re-set text mode) mov ax, 0x0001 ; text mode 40x25 16 colours %define COLS 40 diff -r bbb34fe4904d -r 1e55ea7da8de ctorrent-dnh/receipt --- a/ctorrent-dnh/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/ctorrent-dnh/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="ctorrent-dnh" VERSION="3.3.2" CATEGORY="network" +GROUP="network" SHORT_DESC="Command line Bittorrent client." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" diff -r bbb34fe4904d -r 1e55ea7da8de dropbear-client-without-zlib/receipt --- a/dropbear-client-without-zlib/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/dropbear-client-without-zlib/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -4,6 +4,7 @@ SOURCE="dropbear" VERSION="0.53" CATEGORY="security" +GROUP="network" SHORT_DESC="Light SSH client without compression support." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" diff -r bbb34fe4904d -r 1e55ea7da8de dropbear-client/receipt --- a/dropbear-client/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/dropbear-client/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -4,6 +4,7 @@ SOURCE="dropbear" VERSION="0.53" CATEGORY="security" +GROUP="network" SHORT_DESC="Light SSH client." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" diff -r bbb34fe4904d -r 1e55ea7da8de dropbear-without-zlib/receipt --- a/dropbear-without-zlib/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/dropbear-without-zlib/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -4,6 +4,7 @@ SOURCE="dropbear" VERSION="0.53" CATEGORY="security" +GROUP="network" SHORT_DESC="Light SSH client and server without compression support." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" diff -r bbb34fe4904d -r 1e55ea7da8de dropbear/receipt --- a/dropbear/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/dropbear/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="dropbear" VERSION="0.53" CATEGORY="security" +GROUP="network" SHORT_DESC="Light SSH client and server." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" diff -r bbb34fe4904d -r 1e55ea7da8de fbvnc-auth/receipt --- a/fbvnc-auth/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/fbvnc-auth/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="fbvnc-auth" VERSION="1.0.2" CATEGORY="network" +GROUP="network" SHORT_DESC="VNC client in frame buffer with authentication." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" diff -r bbb34fe4904d -r 1e55ea7da8de fuse/receipt --- a/fuse/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/fuse/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="fuse" VERSION="2.8.5" CATEGORY="system-tools" +GROUP="filesystem" SHORT_DESC="Fuse Filsystem in user space." MAINTAINER="pascal.bellard@slitaz.org" TARBALL="$PACKAGE-$VERSION.tar.gz" diff -r bbb34fe4904d -r 1e55ea7da8de geninitramfs/receipt --- a/geninitramfs/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/geninitramfs/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="geninitramfs" VERSION="1.0" CATEGORY="misc" +GROUP="misc" SHORT_DESC="Utility to build /root/rootfs.gz" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" diff -r bbb34fe4904d -r 1e55ea7da8de gpxe/receipt --- a/gpxe/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/gpxe/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="gpxe" VERSION="0.9.3" CATEGORY="network" +GROUP="network" SHORT_DESC="Forward PXE to Slitaz Web Boot" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL" diff -r bbb34fe4904d -r 1e55ea7da8de ipxe/receipt --- a/ipxe/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/ipxe/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="ipxe" VERSION="1.0.0-20160119" CATEGORY="system-tools" +GROUP="network" SHORT_DESC="Open source network boot firmware (586+)." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" diff -r bbb34fe4904d -r 1e55ea7da8de isapnptools/receipt --- a/isapnptools/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/isapnptools/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="isapnptools" VERSION="1.27" CATEGORY="system-tools" +GROUP="system" SHORT_DESC="ISA Plug-And-Play configuration." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" diff -r bbb34fe4904d -r 1e55ea7da8de jssame/receipt --- a/jssame/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/jssame/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="jssame" VERSION="1.0" CATEGORY="games" +GROUP="games" SHORT_DESC="Same game in javascript" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" diff -r bbb34fe4904d -r 1e55ea7da8de keyboard/receipt --- a/keyboard/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/keyboard/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="keyboard" VERSION="1.0" CATEGORY="base-system" +GROUP="system" SHORT_DESC="keyboard, locales and timezone settings" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" diff -r bbb34fe4904d -r 1e55ea7da8de lan-config/receipt --- a/lan-config/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/lan-config/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="lan-config" VERSION="1.0" CATEGORY="network" +GROUP="network" SHORT_DESC="Tiny SliTaz lan ip configuration (2nd ethernet card)" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" diff -r bbb34fe4904d -r 1e55ea7da8de linux/receipt --- a/linux/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/linux/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -24,7 +24,7 @@ { [ -s $stuff/$1.S ] && cc $2 -o $1.o -Wa,-algms=$1.lst -c $stuff/$1.S && - objcopy -O binary $1.o $1.bin + objcopy --only-section=.text -O binary $1.o $1.bin } rootfs() diff -r bbb34fe4904d -r 1e55ea7da8de linux/stuff/bundle.S --- a/linux/stuff/bundle.S Sun Sep 24 17:53:05 2023 +0000 +++ b/linux/stuff/bundle.S Tue Sep 26 17:09:38 2023 +0000 @@ -185,11 +185,13 @@ orb %bl, %bl jnz scanboot decb %bh + jmp boot found: + cli + movb 0x1F1+BUFFER, %al // setup size +boot: pushw %ds pushw %bx -// cli -// movb 0x1F1+BUFFER, %al // setup size pushw %ss popw %ds pushw %ss diff -r bbb34fe4904d -r 1e55ea7da8de lpd-config/receipt --- a/lpd-config/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/lpd-config/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="lpd-config" VERSION="1.0" CATEGORY="meta" +GROUP="system" SHORT_DESC="Line printer server configuration (without spooling)" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" diff -r bbb34fe4904d -r 1e55ea7da8de lpd-spooling-config/receipt --- a/lpd-spooling-config/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/lpd-spooling-config/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="lpd-spooling-config" VERSION="1.0" CATEGORY="base-system" +GROUP="system" SHORT_DESC="Line printer server configuration" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" diff -r bbb34fe4904d -r 1e55ea7da8de manager-fr/receipt --- a/manager-fr/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/manager-fr/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="manager-fr" VERSION="1.0" CATEGORY="network" +GROUP="network" SHORT_DESC="Tiny SliTaz Web Manager in french language" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" diff -r bbb34fe4904d -r 1e55ea7da8de manager/receipt --- a/manager/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/manager/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="manager" VERSION="1.0" CATEGORY="network" +GROUP="network" SHORT_DESC="Tiny SliTaz Web Manager" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" diff -r bbb34fe4904d -r 1e55ea7da8de memtest/receipt --- a/memtest/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/memtest/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="memtest" VERSION="5.01" CATEGORY="base-system" +GROUP="misc" SHORT_DESC="Memory failures detection tool." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" diff -r bbb34fe4904d -r 1e55ea7da8de nanochess/receipt --- a/nanochess/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/nanochess/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="nanochess" VERSION="1.0" CATEGORY="games" +GROUP="games" SHORT_DESC="Chess game in javascript (needs an unicode aware browser)" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL" diff -r bbb34fe4904d -r 1e55ea7da8de ntp-config/receipt --- a/ntp-config/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/ntp-config/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="ntp-config" VERSION="1.0" CATEGORY="network" +GROUP="network" SHORT_DESC="Network time protocol configuration" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" diff -r bbb34fe4904d -r 1e55ea7da8de p910nd/receipt --- a/p910nd/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/p910nd/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="p910nd" VERSION="0.93" CATEGORY="network" +GROUP="network" SHORT_DESC="Forward printer device to 9100+ ports" MAINTAINER="pascal.bellard@slitaz.org" TARBALL="$PACKAGE-$VERSION.tar.bz2" diff -r bbb34fe4904d -r 1e55ea7da8de plop/receipt --- a/plop/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/plop/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="plop" VERSION="5.0.15" CATEGORY="base-system" +GROUP="misc" SHORT_DESC="USB / IDE-CD / PCMCIA CardBus and others boot utility (486+)." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="other" diff -r bbb34fe4904d -r 1e55ea7da8de posixovl/receipt --- a/posixovl/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/posixovl/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="posixovl" VERSION="1.2" CATEGORY="system-tools" +GROUP="filesystem" SHORT_DESC="FUSE file system that provides POSIX functionality" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" diff -r bbb34fe4904d -r 1e55ea7da8de ppp-plugins-atm/receipt --- a/ppp-plugins-atm/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/ppp-plugins-atm/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="ppp-plugins-atm" VERSION="2.4.7" CATEGORY="network" +GROUP="network" SHORT_DESC="ppp extras ADSL using pppoatm" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD GPL" diff -r bbb34fe4904d -r 1e55ea7da8de ppp/receipt --- a/ppp/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/ppp/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="ppp" VERSION="2.4.7" CATEGORY="network" +GROUP="network" SHORT_DESC="Point to Point Protocol (Internet with RTC modems)" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD GPL" diff -r bbb34fe4904d -r 1e55ea7da8de pppdump/receipt --- a/pppdump/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/pppdump/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="pppdump" VERSION="2.4.7" CATEGORY="network" +GROUP="network" SHORT_DESC="Point to Point Protocol debug tool" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD GPL" diff -r bbb34fe4904d -r 1e55ea7da8de pppstats/receipt --- a/pppstats/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/pppstats/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="pppstats" VERSION="2.4.7" CATEGORY="network" +GROUP="network" SHORT_DESC="Point to Point Protocol report tool" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD GPL" diff -r bbb34fe4904d -r 1e55ea7da8de qemacs/receipt --- a/qemacs/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/qemacs/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="qemacs" VERSION="0.3.2" CATEGORY="development" +GROUP="development" SHORT_DESC="Light emacs clone." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL" diff -r bbb34fe4904d -r 1e55ea7da8de rsh/receipt --- a/rsh/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/rsh/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="rsh" VERSION="0.17" CATEGORY="network" +GROUP="network" SHORT_DESC="Remote connection tools" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" diff -r bbb34fe4904d -r 1e55ea7da8de runcom/receipt --- a/runcom/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/runcom/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="runcom" VERSION="1.0" CATEGORY="system-tools" +GROUP="system" SHORT_DESC="DOS .com binary format support" MAINTAINER="devel@slitaz.org" LICENSE="GPL" diff -r bbb34fe4904d -r 1e55ea7da8de tcc-arm/receipt --- a/tcc-arm/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/tcc-arm/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="tcc-arm" VERSION="0.9.25" CATEGORY="development" +GROUP="development" SHORT_DESC="Tiny C Compiler (ARM targets)" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL" diff -r bbb34fe4904d -r 1e55ea7da8de tcc-c67/receipt --- a/tcc-c67/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/tcc-c67/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="tcc-c67" VERSION="0.9.25" CATEGORY="development" +GROUP="development" SHORT_DESC="Tiny C Compiler (TMS320C67xx target)" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL" diff -r bbb34fe4904d -r 1e55ea7da8de tcc-common/receipt --- a/tcc-common/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/tcc-common/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="tcc-common" VERSION="0.9.25" CATEGORY="development" +GROUP="development" SHORT_DESC="Common files for Tiny C Compilers" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL" diff -r bbb34fe4904d -r 1e55ea7da8de tcc-win32/receipt --- a/tcc-win32/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/tcc-win32/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="tcc-win32" VERSION="0.9.25" CATEGORY="development" +GROUP="development" SHORT_DESC="Tiny C Compiler (win32 target)" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL" diff -r bbb34fe4904d -r 1e55ea7da8de tcc-x86_64/receipt --- a/tcc-x86_64/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/tcc-x86_64/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="tcc-x86_64" VERSION="0.9.25" CATEGORY="development" +GROUP="development" SHORT_DESC="Tiny C Compiler (x86_64 target)" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL" diff -r bbb34fe4904d -r 1e55ea7da8de tcc/receipt --- a/tcc/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/tcc/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="tcc" VERSION="0.9.25" CATEGORY="development" +GROUP="development" SHORT_DESC="Tiny C Compiler (native target)" MAINTAINER="pascal.bellard@slitaz.org" TARBALL="$PACKAGE-$VERSION.tar.bz2" diff -r bbb34fe4904d -r 1e55ea7da8de tfttest/receipt --- a/tfttest/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/tfttest/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="tfttest" VERSION="1.01" CATEGORY="base-system" +GROUP="misc" SHORT_DESC="CHZ Monitor-Test is a dead pixel detection tool." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" diff -r bbb34fe4904d -r 1e55ea7da8de udhcpd-config/receipt --- a/udhcpd-config/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/udhcpd-config/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -3,6 +3,7 @@ PACKAGE="udhcpd-config" VERSION="1.0" CATEGORY="network" +GROUP="network" SHORT_DESC="DHCP server configuration file" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" diff -r bbb34fe4904d -r 1e55ea7da8de x86test/receipt --- a/x86test/receipt Sun Sep 24 17:53:05 2023 +0000 +++ b/x86test/receipt Tue Sep 26 17:09:38 2023 +0000 @@ -4,6 +4,7 @@ VERSION="0.10a" CATEGORY="base-system" SHORT_DESC="CPU failures detection tool." +GROUP="misc" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" WEB_SITE="https://web.archive.org/web/20090327202227/http://www.vortex.prodigynet.co.uk/x86test/"