wok rev 25087
Up alpine (2.26)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Jun 17 09:35:48 2022 +0000 (2022-06-17) |
parents | eba2c12c310b |
children | 2c370a02aaa3 |
files | BootProg/stuff/boot16.asm alpine/receipt lightdm/receipt lxappearance-dev/receipt lxappearance/receipt lxlauncher/receipt lxrandr/receipt lxtask/receipt lxterminal-lang/receipt mongodb/receipt |
line diff
1.1 --- a/BootProg/stuff/boot16.asm Fri Jun 17 06:42:13 2022 +0100 1.2 +++ b/BootProg/stuff/boot16.asm Fri Jun 17 09:35:48 2022 +0000 1.3 @@ -302,14 +302,14 @@ 1.4 mov dx, 0FFF8h 1.5 1.6 cmp [bx(bpbSectorsPerFAT)], cx ; 1..12 = FAT12, 16..256 = FAT16 1.7 - mov ds, ax 1.8 ja ReadClusterFat16 1.9 1.10 mov dh, 0Fh 1.11 - add si, [cs:di] 1.12 + add si, [di] 1.13 shr si, 1 ; si = cluster * 3 / 2 1.14 1.15 ReadClusterFat16: 1.16 + mov ds, ax 1.17 lodsw ; ax = next cluster 1.18 jnc ReadClusterEven 1.19
2.1 --- a/alpine/receipt Fri Jun 17 06:42:13 2022 +0100 2.2 +++ b/alpine/receipt Fri Jun 17 09:35:48 2022 +0000 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="alpine" 2.7 -VERSION="2.25" 2.8 +VERSION="2.26" 2.9 CATEGORY="network" 2.10 TAGS="mail client" 2.11 SHORT_DESC="Fast, easy to use email client." 2.12 @@ -9,8 +9,8 @@ 2.13 LICENSE="Apache" 2.14 WEB_SITE="https://repo.or.cz/alpine.git" 2.15 2.16 -TARBALL="$PACKAGE-$VERSION.tar.xz" 2.17 -WGET_URL="http://alpine.x10host.com/$PACKAGE/release/src/$TARBALL" 2.18 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.19 +WGET_URL="https://repo.or.cz/alpine.git/snapshot/v$VERSION.tar.gz" 2.20 2.21 DEPENDS="libssl ncurses pam" 2.22 BUILD_DEPENDS="ncurses-dev openssl-dev pam-dev" 2.23 @@ -21,7 +21,7 @@ 2.24 current_version() 2.25 { 2.26 wget -O - ${WGET_URL%/*} 2>/dev/null | \ 2.27 - sed '/alpine/!d;/tar/!d;s|.*alpine-||;s|.tar.*||' | sort -Vr | sed q 2.28 + sed '/Release version/!d;s|.*version ||;s|<.*||;q' 2.29 } 2.30 2.31 # Rules to configure and make the package.
3.1 --- a/lightdm/receipt Fri Jun 17 06:42:13 2022 +0100 3.2 +++ b/lightdm/receipt Fri Jun 17 09:35:48 2022 +0000 3.3 @@ -7,15 +7,15 @@ 3.4 MAINTAINER="al.bobylev@gmail.com" 3.5 LICENSE="GPL3 LGPL3" 3.6 WEB_SITE="https://launchpad.net/lightdm" 3.7 -TARBALL="$PACKAGE-$VERSION.tar.xz" 3.8 -WGET_URL="https://launchpad.net/$SOURCE/${VERSION%.*}/$VERSION/+download/$TARBALL" 3.9 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.10 +WGET_URL="https://github.com/canonical/lightdm/archive/refs/tags/$VERSION.tar.gz" 3.11 HELP="https://wiki.archlinux.org/index.php/LightDM" 3.12 CONFIG_FILES="/etc/init/lightdm.conf /etc/lightdm/keys.conf \ 3.13 /etc/lightdm/lightdm.conf /etc/lightdm/users.conf" 3.14 3.15 DEPENDS="libgcrypt libgio libxklavier pam xorg-libX11" 3.16 BUILD_DEPENDS="gobject-introspection-dev pam-dev itstool libxklavier-dev \ 3.17 -libgcrypt-dev wget" 3.18 +libgcrypt-dev wget automake" 3.19 3.20 # What is the latest version available today? 3.21 current_version() 3.22 @@ -27,6 +27,7 @@ 3.23 # Rules to configure and make the package. 3.24 compile_rules() 3.25 { 3.26 + ./autogen.sh 3.27 ./configure \ 3.28 --libexecdir=/usr/lib \ 3.29 --sysconfdir=/etc \
4.1 --- a/lxappearance-dev/receipt Fri Jun 17 06:42:13 2022 +0100 4.2 +++ b/lxappearance-dev/receipt Fri Jun 17 09:35:48 2022 +0000 4.3 @@ -7,7 +7,7 @@ 4.4 MAINTAINER="pankso@slitaz.org" 4.5 LICENSE="GPL2" 4.6 WANTED="lxappearance" 4.7 -WEB_SITE="https://wiki.lxde.org/en/LXAppearance" 4.8 +WEB_SITE="https://www.lxde.org/" 4.9 TAGS="LXDE" 4.10 HOST_ARCH="i486 arm" 4.11
5.1 --- a/lxappearance/receipt Fri Jun 17 06:42:13 2022 +0100 5.2 +++ b/lxappearance/receipt Fri Jun 17 09:35:48 2022 +0000 5.3 @@ -6,7 +6,7 @@ 5.4 SHORT_DESC="LXDE GTK+ theme switcher" 5.5 MAINTAINER="pankso@slitaz.org" 5.6 LICENSE="GPL2" 5.7 -WEB_SITE="https://wiki.lxde.org/en/LXAppearance" 5.8 +WEB_SITE="https://www.lxde.org/" 5.9 TARBALL="$PACKAGE-$VERSION.tar.xz" 5.10 WGET_URL="$SF_MIRROR/lxde/$TARBALL" 5.11 TAGS="LXDE"
6.1 --- a/lxlauncher/receipt Fri Jun 17 06:42:13 2022 +0100 6.2 +++ b/lxlauncher/receipt Fri Jun 17 09:35:48 2022 +0000 6.3 @@ -7,7 +7,7 @@ 6.4 SHORT_DESC="LXDE launcher for netbooks." 6.5 LICENSE="GPL3" 6.6 MAINTAINER="pankso@slitaz.org" 6.7 -WEB_SITE="https://wiki.lxde.org/en/LXLauncher" 6.8 +WEB_SITE="https://www.lxde.org/" 6.9 6.10 TARBALL="$PACKAGE-$VERSION.tar.xz" 6.11 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
7.1 --- a/lxrandr/receipt Fri Jun 17 06:42:13 2022 +0100 7.2 +++ b/lxrandr/receipt Fri Jun 17 09:35:48 2022 +0000 7.3 @@ -7,7 +7,7 @@ 7.4 SHORT_DESC="LXDE monitor configuration tool." 7.5 MAINTAINER="gokhlayeh@slitaz.org" 7.6 LICENSE="GPL2" 7.7 -WEB_SITE="https://wiki.lxde.org/en/LXRandR" 7.8 +WEB_SITE="https://www.lxde.org/" 7.9 7.10 TARBALL="$PACKAGE-$VERSION.tar.xz" 7.11 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
8.1 --- a/lxtask/receipt Fri Jun 17 06:42:13 2022 +0100 8.2 +++ b/lxtask/receipt Fri Jun 17 09:35:48 2022 +0000 8.3 @@ -7,7 +7,7 @@ 8.4 SHORT_DESC="LXDE task manager." 8.5 MAINTAINER="pankso@slitaz.org" 8.6 LICENSE="GPL2" 8.7 -WEB_SITE="https://wiki.lxde.org/en/LXTask" 8.8 +WEB_SITE="https://www.lxde.org/" 8.9 8.10 TARBALL="$PACKAGE-$VERSION.tar.xz" 8.11 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
9.1 --- a/lxterminal-lang/receipt Fri Jun 17 06:42:13 2022 +0100 9.2 +++ b/lxterminal-lang/receipt Fri Jun 17 09:35:48 2022 +0000 9.3 @@ -7,7 +7,7 @@ 9.4 SHORT_DESC="LXDE terminal emulator - localised messages." 9.5 MAINTAINER="gokhlayeh@slitaz.org" 9.6 LICENSE="GPL2" 9.7 -WEB_SITE="https://wiki.lxde.org/en/LXTerminal" 9.8 +WEB_SITE="https://www.lxde.org/" 9.9 9.10 WANTED="lxterminal" 9.11
10.1 --- a/mongodb/receipt Fri Jun 17 06:42:13 2022 +0100 10.2 +++ b/mongodb/receipt Fri Jun 17 09:35:48 2022 +0000 10.3 @@ -6,7 +6,7 @@ 10.4 SHORT_DESC="High-performance, schema-free document-oriented database ." 10.5 MAINTAINER="pankso@slitaz.org" 10.6 LICENSE="GPL3 Apache" 10.7 -WEB_SITE="https://www.mongodb.com/" 10.8 +WEB_SITE="https://github.com/mongodb/mongo/" 10.9 10.10 TARBALL="$PACKAGE-src-r${VERSION}.tar.gz" 10.11 WGET_URL="http://downloads.mongodb.org/src/$TARBALL"