wok-6.x rev 25460
Update sourceforge.net web_sites with https://
line diff
1.1 --- a/BootProg/stuff/boot32.asm Tue Sep 27 16:54:01 2022 +0000 1.2 +++ b/BootProg/stuff/boot32.asm Wed Sep 28 08:10:35 2022 +0000 1.3 @@ -17,7 +17,7 @@ 1.4 ;; - Loads a 16-bit executable file in the MS-DOS .COM or .EXE format ;; 1.5 ;; from the root directory of a disk and transfers control to it ;; 1.6 ;; (the "ProgramName" variable holds the name of the file to be loaded) ;; 1.7 -;; Its maximum size can be up to 636KB without Extended BIOS Data area. ;; 1.8 +;; Its maximum size can be up to 637KB without Extended BIOS Data area. ;; 1.9 ;; ;; 1.10 ;; - Prints an error if the file isn't found or couldn't be read ;; 1.11 ;; ("File not found" or "Read error") ;; 1.12 @@ -49,10 +49,10 @@ 1.13 ;; | Loaded Image | ;; 1.14 ;; +------------------------+ nnnnnH ;; 1.15 ;; | Available Memory | ;; 1.16 -;; +------------------------+ A0000H - 2KB ;; 1.17 +;; +------------------------+ A0000H - 1KB ;; 1.18 ;; | Boot Sector | ;; 1.19 -;; +------------------------+ A0000H - 1.5KB ;; 1.20 -;; | 1.5KB Boot Stack | ;; 1.21 +;; +------------------------+ A0000H - 0.5KB ;; 1.22 +;; | 0.5KB Boot Stack | ;; 1.23 ;; +------------------------+ A0000H ;; 1.24 ;; | Video RAM | ;; 1.25 ;; ;; 1.26 @@ -80,7 +80,7 @@ 1.27 %define bx(label) bx+label-boot 1.28 %define si(label) si+label-boot 1.29 ClusterMask equ 1 ; +9 bytes 1.30 -NullEntryCheck equ 0 ; +5 bytes 1.31 +NullEntryCheck equ 1 ; +5 bytes 1.32 ReadRetry equ 1 ; +7 bytes 1.33 LBA48bits equ 1 ; +15 bytes 1.34 CHSsupport equ 1 ; +27 bytes 1.35 @@ -92,7 +92,7 @@ 1.36 [BITS 16] 1.37 1.38 ImageLoadSeg equ 60h ; <=07Fh because of "push byte ImageLoadSeg" instructions 1.39 -StackSize equ 1536 1.40 +StackSize equ 512 1.41 1.42 [SECTION .text] 1.43 [ORG 0] 1.44 @@ -163,8 +163,7 @@ 1.45 ;;;;;;;;;;;;;;;;;;;;;;;;;;;; 1.46 1.47 int 12h ; get conventional memory size (in KBs) 1.48 - dec ax 1.49 - dec ax ; reserve 2K bytes for the code and the stack 1.50 + dec ax ; reserve 1K bytes for the code and the stack 1.51 mov cx, 106h 1.52 shl ax, cl ; and convert it to 16-byte paragraphs 1.53
2.1 --- a/BootProg/stuff/bootex.asm Tue Sep 27 16:54:01 2022 +0000 2.2 +++ b/BootProg/stuff/bootex.asm Wed Sep 28 08:10:35 2022 +0000 2.3 @@ -16,7 +16,7 @@ 2.4 ;; - Loads a 16-bit executable file in the MS-DOS .COM or .EXE format ;; 2.5 ;; from the root directory of a disk and transfers control to it ;; 2.6 ;; (the "ProgramName" variable holds the name of the file to be loaded) ;; 2.7 -;; Its maximum size can be up to 636KB without Extended BIOS Data area. ;; 2.8 +;; Its maximum size can be up to 637KB without Extended BIOS Data area. ;; 2.9 ;; ;; 2.10 ;; - Prints an error if the file isn't found or couldn't be read ;; 2.11 ;; ("File not found" or "Read error") ;; 2.12 @@ -48,10 +48,10 @@ 2.13 ;; | Loaded Image | ;; 2.14 ;; +------------------------+ nnnnnH ;; 2.15 ;; | Available Memory | ;; 2.16 -;; +------------------------+ A0000H - 2KB ;; 2.17 +;; +------------------------+ A0000H - 1KB ;; 2.18 ;; | Boot Sector | ;; 2.19 -;; +------------------------+ A0000H - 1.5KB ;; 2.20 -;; | 1.5KB Boot Stack | ;; 2.21 +;; +------------------------+ A0000H - 0.5KB ;; 2.22 +;; | 0.5KB Boot Stack | ;; 2.23 ;; +------------------------+ A0000H ;; 2.24 ;; | Video RAM | ;; 2.25 ;; ;; 2.26 @@ -86,7 +86,7 @@ 2.27 [CPU 386] 2.28 2.29 ImageLoadSeg equ 60h 2.30 -StackSize equ 1536 2.31 +StackSize equ 512 2.32 2.33 [SECTION .text] 2.34 [ORG 0] 2.35 @@ -140,8 +140,7 @@ 2.36 2.37 int 12h ; get conventional memory size (in KBs) 2.38 mov cx, 106h 2.39 - dec ax 2.40 - dec ax ; reserve 2K bytes for the code and the stack 2.41 + dec ax ; reserve 1K bytes for the code and the stack 2.42 shl ax, cl ; and convert it to 16-byte paragraphs 2.43 2.44 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3.1 --- a/aiksaurus-dev/receipt Tue Sep 27 16:54:01 2022 +0000 3.2 +++ b/aiksaurus-dev/receipt Wed Sep 28 08:10:35 2022 +0000 3.3 @@ -7,7 +7,7 @@ 3.4 MAINTAINER="gokhlayeh@slitaz.org" 3.5 LICENSE="GPL2" 3.6 WANTED="aiksaurus" 3.7 -WEB_SITE="http://aiksaurus.sourceforge.net/" 3.8 +WEB_SITE="https://aiksaurus.sourceforge.net/" 3.9 3.10 DEPENDS="pkg-config" 3.11
4.1 --- a/aiksaurus/receipt Tue Sep 27 16:54:01 2022 +0000 4.2 +++ b/aiksaurus/receipt Wed Sep 28 08:10:35 2022 +0000 4.3 @@ -7,7 +7,7 @@ 4.4 MAINTAINER="gokhlayeh@slitaz.org" 4.5 LICENSE="GPL2" 4.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 4.7 -WEB_SITE="http://aiksaurus.sourceforge.net/" 4.8 +WEB_SITE="https://aiksaurus.sourceforge.net/" 4.9 WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL" 4.10 4.11 DEPENDS="gtk+ expat xorg-libXau glib"
5.1 --- a/alsaplayer/receipt Tue Sep 27 16:54:01 2022 +0000 5.2 +++ b/alsaplayer/receipt Wed Sep 28 08:10:35 2022 +0000 5.3 @@ -6,7 +6,7 @@ 5.4 SHORT_DESC="Alsa GTK+ PCM audio player." 5.5 MAINTAINER="pankso@slitaz.org" 5.6 LICENSE="GPL3" 5.7 -WEB_SITE="http://alsaplayer.sourceforge.net/" 5.8 +WEB_SITE="https://alsaplayer.sourceforge.net/" 5.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 5.10 WGET_URL="${WEB_SITE}$TARBALL" 5.11 TAGS="music audio player mp3 ogg flac"
6.1 --- a/anacron/receipt Tue Sep 27 16:54:01 2022 +0000 6.2 +++ b/anacron/receipt Wed Sep 28 08:10:35 2022 +0000 6.3 @@ -6,7 +6,7 @@ 6.4 SHORT_DESC="Periodic command scheduler." 6.5 MAINTAINER="pascal.bellard@slitaz.org" 6.6 LICENSE="GPL2" 6.7 -WEB_SITE="http://anacron.sourceforge.net/" 6.8 +WEB_SITE="https://anacron.sourceforge.net/" 6.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 6.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 6.11
7.1 --- a/antinat-dev/receipt Tue Sep 27 16:54:01 2022 +0000 7.2 +++ b/antinat-dev/receipt Wed Sep 28 08:10:35 2022 +0000 7.3 @@ -6,7 +6,7 @@ 7.4 SHORT_DESC="Flexible SOCKS server and client library for proxy-based applications, development files." 7.5 MAINTAINER="pascal.bellard@slitaz.org" 7.6 LICENSE="GPL2" 7.7 -WEB_SITE="http://antinat.sourceforge.net/" 7.8 +WEB_SITE="https://antinat.sourceforge.net/" 7.9 7.10 DEPENDS="antinat expat-dev" 7.11 WANTED="antinat"
8.1 --- a/antinat/receipt Tue Sep 27 16:54:01 2022 +0000 8.2 +++ b/antinat/receipt Wed Sep 28 08:10:35 2022 +0000 8.3 @@ -6,7 +6,7 @@ 8.4 SHORT_DESC="Flexible SOCKS server and client library for proxy-based applications." 8.5 MAINTAINER="pascal.bellard@slitaz.org" 8.6 LICENSE="GPL2" 8.7 -WEB_SITE="http://antinat.sourceforge.net/" 8.8 +WEB_SITE="https://antinat.sourceforge.net/" 8.9 8.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 8.11 #WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
9.1 --- a/apng2gif/receipt Tue Sep 27 16:54:01 2022 +0000 9.2 +++ b/apng2gif/receipt Wed Sep 28 08:10:35 2022 +0000 9.3 @@ -6,7 +6,7 @@ 9.4 SHORT_DESC="Convert APNG animations into animated GIF format" 9.5 MAINTAINER="al.bobylev@gmail.com" 9.6 LICENSE="zlib/libpng" 9.7 -WEB_SITE="http://apng2gif.sourceforge.net/" 9.8 +WEB_SITE="https://apng2gif.sourceforge.net/" 9.9 9.10 TARBALL="$PACKAGE-$VERSION-src.zip" 9.11 WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
10.1 --- a/arj/receipt Tue Sep 27 16:54:01 2022 +0000 10.2 +++ b/arj/receipt Wed Sep 28 08:10:35 2022 +0000 10.3 @@ -6,7 +6,7 @@ 10.4 SHORT_DESC="ARJ archiver." 10.5 MAINTAINER="pascal.bellard@slitaz.org" 10.6 LICENSE="GPL2" 10.7 -WEB_SITE="http://arj.sourceforge.net/" 10.8 +WEB_SITE="https://arj.sourceforge.net/" 10.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 10.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 10.11 TAGS="compression archive"
11.1 --- a/atm-tools-dev/receipt Tue Sep 27 16:54:01 2022 +0000 11.2 +++ b/atm-tools-dev/receipt Wed Sep 28 08:10:35 2022 +0000 11.3 @@ -7,7 +7,7 @@ 11.4 MAINTAINER="pascal.bellard@slitaz.org" 11.5 LICENSE="GPL2" 11.6 SOURCE="linux-atm" 11.7 -WEB_SITE="http://$SOURCE.sourceforge.net/" 11.8 +WEB_SITE="https://$SOURCE.sourceforge.net/" 11.9 WANTED="atm-tools" 11.10 11.11 # Rules to gen a SliTaz package suitable for Tazpkg.
12.1 --- a/atm-tools/receipt Tue Sep 27 16:54:01 2022 +0000 12.2 +++ b/atm-tools/receipt Wed Sep 28 08:10:35 2022 +0000 12.3 @@ -6,7 +6,7 @@ 12.4 SHORT_DESC="User space tools for atm." 12.5 MAINTAINER="pascal.bellard@slitaz.org" 12.6 LICENSE="GPL2" 12.7 -WEB_SITE="http://linux-atm.sourceforge.net/" 12.8 +WEB_SITE="https://linux-atm.sourceforge.net/" 12.9 SOURCE="linux-atm" 12.10 TARBALL="$SOURCE-$VERSION.tar.gz" 12.11 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
13.1 --- a/aufs-utils/receipt Tue Sep 27 16:54:01 2022 +0000 13.2 +++ b/aufs-utils/receipt Wed Sep 28 08:10:35 2022 +0000 13.3 @@ -6,7 +6,7 @@ 13.4 SHORT_DESC="The aufs utils." 13.5 MAINTAINER="pankso@slitaz.org" 13.6 LICENSE="GPL2" 13.7 -WEB_SITE="http://aufs.sourceforge.net/" 13.8 +WEB_SITE="https://aufs.sourceforge.net/" 13.9 TARBALL="$PACKAGE-$VERSION.tar.bz2" 13.10 WGET_URL="git|git://aufs.git.sourceforge.net/gitroot/aufs/aufs-util.git" 13.11 BRANCH="origin/aufs3.14"
14.1 --- a/ayttm/receipt Tue Sep 27 16:54:01 2022 +0000 14.2 +++ b/ayttm/receipt Wed Sep 28 08:10:35 2022 +0000 14.3 @@ -6,7 +6,7 @@ 14.4 SHORT_DESC="Universal instant messenger client" 14.5 MAINTAINER="devl547@gmail.com" 14.6 LICENSE="GPL2" 14.7 -WEB_SITE="http://ayttm.sourceforge.net/" 14.8 +WEB_SITE="https://ayttm.sourceforge.net/" 14.9 14.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 14.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15.1 --- a/backuppc/receipt Tue Sep 27 16:54:01 2022 +0000 15.2 +++ b/backuppc/receipt Wed Sep 28 08:10:35 2022 +0000 15.3 @@ -8,7 +8,7 @@ 15.4 MAINTAINER="pascal.bellard@slitaz.org" 15.5 LICENSE="GPL2" 15.6 TARBALL="$SOURCE-$VERSION.tar.gz" 15.7 -WEB_SITE="http://backuppc.sourceforge.net/" 15.8 +WEB_SITE="https://backuppc.sourceforge.net/" 15.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 15.10 SUGGESTED="par2" 15.11 CONFIG_FILES="/etc/BackupPC/config.pl"
16.1 --- a/bcrelay/receipt Tue Sep 27 16:54:01 2022 +0000 16.2 +++ b/bcrelay/receipt Wed Sep 28 08:10:35 2022 +0000 16.3 @@ -6,7 +6,7 @@ 16.4 SHORT_DESC="Broadcast relay daemon." 16.5 MAINTAINER="pascal.bellard@slitaz.org" 16.6 LICENSE="GPL2" 16.7 -WEB_SITE="http://poptop.sourceforge.net/" 16.8 +WEB_SITE="https://poptop.sourceforge.net/" 16.9 WANTED="poptop" 16.10 16.11 # Rules to gen a SliTaz package suitable for Tazpkg.
17.1 --- a/bcrypt/receipt Tue Sep 27 16:54:01 2022 +0000 17.2 +++ b/bcrypt/receipt Wed Sep 28 08:10:35 2022 +0000 17.3 @@ -6,7 +6,7 @@ 17.4 SHORT_DESC="File encryption utility" 17.5 MAINTAINER="erjo@slitaz.org" 17.6 LICENSE="BSD" 17.7 -WEB_SITE="http://bcrypt.sourceforge.net/" 17.8 +WEB_SITE="https://bcrypt.sourceforge.net/" 17.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 17.10 WGET_URL="http://bcrypt.sourceforge.net/${TARBALL}" 17.11 TAGS="encrypt"
18.1 --- a/beaver-plugins/receipt Tue Sep 27 16:54:01 2022 +0000 18.2 +++ b/beaver-plugins/receipt Wed Sep 28 08:10:35 2022 +0000 18.3 @@ -6,7 +6,7 @@ 18.4 SHORT_DESC="Simple and very light advanced text editor, plugins" 18.5 MAINTAINER="al.bobylev@gmail.com" 18.6 LICENSE="GPL2" 18.7 -WEB_SITE="http://beaver-editor.sourceforge.net/" 18.8 +WEB_SITE="https://beaver-editor.sourceforge.net/" 18.9 GENERIC_PIXMAPS="no" 18.10 HOST_ARCH="i486 arm" 18.11
19.1 --- a/beaver/receipt Tue Sep 27 16:54:01 2022 +0000 19.2 +++ b/beaver/receipt Wed Sep 28 08:10:35 2022 +0000 19.3 @@ -6,7 +6,7 @@ 19.4 SHORT_DESC="Simple and very light advanced text editor" 19.5 MAINTAINER="pankso@slitaz.org" 19.6 LICENSE="GPL2" 19.7 -WEB_SITE="http://beaver-editor.sourceforge.net/" 19.8 +WEB_SITE="https://beaver-editor.sourceforge.net/" 19.9 TARBALL="$PACKAGE-$VERSION.tar.bz2" 19.10 WGET_URL="$SF_MIRROR/$PACKAGE-editor/$TARBALL" 19.11 TAGS="text-editor"
20.1 --- a/beecrypt-dev/receipt Tue Sep 27 16:54:01 2022 +0000 20.2 +++ b/beecrypt-dev/receipt Wed Sep 28 08:10:35 2022 +0000 20.3 @@ -7,7 +7,7 @@ 20.4 MAINTAINER="erjo@slitaz.org" 20.5 LICENSE="GPL2 LGPL2.1" 20.6 WANTED="beecrypt" 20.7 -WEB_SITE="http://beecrypt.sourceforge.net/" 20.8 +WEB_SITE="https://beecrypt.sourceforge.net/" 20.9 20.10 # Rules to gen a SliTaz package suitable for Tazpkg. 20.11 genpkg_rules()
21.1 --- a/beecrypt/receipt Tue Sep 27 16:54:01 2022 +0000 21.2 +++ b/beecrypt/receipt Wed Sep 28 08:10:35 2022 +0000 21.3 @@ -7,7 +7,7 @@ 21.4 MAINTAINER="erjo@slitaz.org" 21.5 LICENSE="GPL2 LGPL2.1" 21.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 21.7 -WEB_SITE="http://beecrypt.sourceforge.net/" 21.8 +WEB_SITE="https://beecrypt.sourceforge.net/" 21.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 21.10 TAGS="cryptography toolkit" 21.11
22.1 --- a/binclock/receipt Tue Sep 27 16:54:01 2022 +0000 22.2 +++ b/binclock/receipt Wed Sep 28 08:10:35 2022 +0000 22.3 @@ -9,7 +9,7 @@ 22.4 DEPENDS="ncurses python" 22.5 BUILD_DEPENDS="ncurses-dev python-dev" 22.6 TARBALL="${PACKAGE}_${VERSION}.tar.gz" 22.7 -WEB_SITE="http://binclock.sourceforge.net/" 22.8 +WEB_SITE="https://binclock.sourceforge.net/" 22.9 WGET_URL="http://prdownloads.sourceforge.net/binclock/$TARBALL" 22.10 22.11 # No rules to configure and make the package.
23.1 --- a/btanks/receipt Tue Sep 27 16:54:01 2022 +0000 23.2 +++ b/btanks/receipt Wed Sep 28 08:10:35 2022 +0000 23.3 @@ -6,7 +6,7 @@ 23.4 SHORT_DESC="A fast 2d tank arcade game with multiplayer and split-screen modes." 23.5 MAINTAINER="slaxemulator@gmail.com" 23.6 LICENSE="GPL2" 23.7 -WEB_SITE="http://btanks.sourceforge.net/" 23.8 +WEB_SITE="https://btanks.sourceforge.net/" 23.9 TARBALL="$PACKAGE-$VERSION.tar.bz2" 23.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 23.11
24.1 --- a/c_icap-dev/receipt Tue Sep 27 16:54:01 2022 +0000 24.2 +++ b/c_icap-dev/receipt Wed Sep 28 08:10:35 2022 +0000 24.3 @@ -6,7 +6,7 @@ 24.4 SHORT_DESC="Implementation of an ICAP server - development files." 24.5 MAINTAINER="erjo@slitaz.org" 24.6 LICENSE="LGPL2.1" 24.7 -WEB_SITE="http://c-icap.sourceforge.net/" 24.8 +WEB_SITE="https://c-icap.sourceforge.net/" 24.9 24.10 DEPENDS="c_icap" 24.11 WANTED="c_icap"
25.1 --- a/cdrdao-utils/receipt Tue Sep 27 16:54:01 2022 +0000 25.2 +++ b/cdrdao-utils/receipt Wed Sep 28 08:10:35 2022 +0000 25.3 @@ -6,7 +6,7 @@ 25.4 SHORT_DESC="cdrdao extra utilities for recording audio/data CD-Rs" 25.5 MAINTAINER="jozee@slitaz.org" 25.6 LICENSE="GPL2" 25.7 -WEB_SITE="http://cdrdao.sourceforge.net/" 25.8 +WEB_SITE="https://cdrdao.sourceforge.net/" 25.9 25.10 WANTED="cdrdao" 25.11 DEPENDS="lame libao libmad libogg libvorbis"
26.1 --- a/cdrdao/receipt Tue Sep 27 16:54:01 2022 +0000 26.2 +++ b/cdrdao/receipt Wed Sep 28 08:10:35 2022 +0000 26.3 @@ -6,7 +6,7 @@ 26.4 SHORT_DESC="Records audio/data CD-Rs using toc files" 26.5 MAINTAINER="jozee@slitaz.org" 26.6 LICENSE="GPL2" 26.7 -WEB_SITE="http://cdrdao.sourceforge.net/" 26.8 +WEB_SITE="https://cdrdao.sourceforge.net/" 26.9 26.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 26.11 WGET_URL="https://downloads.sourceforge.net/$PACKAGE/$TARBALL"
27.1 --- a/celestia/receipt Tue Sep 27 16:54:01 2022 +0000 27.2 +++ b/celestia/receipt Wed Sep 28 08:10:35 2022 +0000 27.3 @@ -6,7 +6,7 @@ 27.4 SHORT_DESC="Real-time 3D Space Simulation." 27.5 MAINTAINER="slaxemulator@gmail.com" 27.6 LICENSE="GPL2" 27.7 -WEB_SITE="http://celestia.sourceforge.net/" 27.8 +WEB_SITE="https://celestia.sourceforge.net/" 27.9 27.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 27.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
28.1 --- a/cgoban/receipt Tue Sep 27 16:54:01 2022 +0000 28.2 +++ b/cgoban/receipt Wed Sep 28 08:10:35 2022 +0000 28.3 @@ -7,7 +7,7 @@ 28.4 MAINTAINER="pascal.bellard@slitaz.org" 28.5 LICENSE="GPL2" 28.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 28.7 -WEB_SITE="http://cgoban1.sourceforge.net/" 28.8 +WEB_SITE="https://cgoban1.sourceforge.net/" 28.9 WGET_URL="$SF_MIRROR/cgoban1/$TARBALL" 28.10 SUGGESTED="gnugo" 28.11
29.1 --- a/clearlooks/receipt Tue Sep 27 16:54:01 2022 +0000 29.2 +++ b/clearlooks/receipt Wed Sep 28 08:10:35 2022 +0000 29.3 @@ -7,7 +7,7 @@ 29.4 MAINTAINER="pankso@slitaz.org" 29.5 LICENSE="GPL2" 29.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 29.7 -WEB_SITE="http://clearlooks.sourceforge.net/" 29.8 +WEB_SITE="https://clearlooks.sourceforge.net/" 29.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 29.10 HOST_ARCH="i486 arm" 29.11
30.1 --- a/clisp/receipt Tue Sep 27 16:54:01 2022 +0000 30.2 +++ b/clisp/receipt Wed Sep 28 08:10:35 2022 +0000 30.3 @@ -7,7 +7,7 @@ 30.4 MAINTAINER="paul@slitaz.org" 30.5 LICENSE="GPL2" 30.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 30.7 -WEB_SITE="http://clisp.sourceforge.net/" 30.8 +WEB_SITE="https://clisp.sourceforge.net/" 30.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 30.10 30.11 DEPENDS="readline ncurses libffcall"
31.1 --- a/cloop-utils/receipt Tue Sep 27 16:54:01 2022 +0000 31.2 +++ b/cloop-utils/receipt Wed Sep 28 08:10:35 2022 +0000 31.3 @@ -6,7 +6,7 @@ 31.4 SHORT_DESC="Cloop image creation & extraction tools." 31.5 MAINTAINER="pascal.bellard@slitaz.org" 31.6 LICENSE="GPL2" 31.7 -WEB_SITE="http://fusecloop.sourceforge.net/" 31.8 +WEB_SITE="https://fusecloop.sourceforge.net/" 31.9 WANTED="fusecloop" 31.10 31.11 DEPENDS="zlib liblzma lz4-lib lzo zstd gcc-lib-base"
32.1 --- a/comical/receipt Tue Sep 27 16:54:01 2022 +0000 32.2 +++ b/comical/receipt Wed Sep 28 08:10:35 2022 +0000 32.3 @@ -6,7 +6,7 @@ 32.4 SHORT_DESC="Comic book reader" 32.5 MAINTAINER="al.bobylev@gmail.com" 32.6 LICENSE="GPL2" 32.7 -WEB_SITE="http://comical.sourceforge.net/" 32.8 +WEB_SITE="https://comical.sourceforge.net/" 32.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 32.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 32.11
33.1 --- a/conky/receipt Tue Sep 27 16:54:01 2022 +0000 33.2 +++ b/conky/receipt Wed Sep 28 08:10:35 2022 +0000 33.3 @@ -7,7 +7,7 @@ 33.4 MAINTAINER="pankso@slitaz.org" 33.5 LICENSE="GPL3" 33.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 33.7 -WEB_SITE="http://conky.sourceforge.net/" 33.8 +WEB_SITE="https://conky.sourceforge.net/" 33.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 33.10 TAGS="desktop monitoring" 33.11 HOST_ARCH="i486 arm"
34.1 --- a/cpu-g/receipt Tue Sep 27 16:54:01 2022 +0000 34.2 +++ b/cpu-g/receipt Wed Sep 28 08:10:35 2022 +0000 34.3 @@ -6,7 +6,7 @@ 34.4 SHORT_DESC="Shows useful information about your hardware" 34.5 MAINTAINER="al.bobylev@gmail.com" 34.6 LICENSE="GPL3" 34.7 -WEB_SITE="http://cpug.sourceforge.net/" 34.8 +WEB_SITE="https://cpug.sourceforge.net/" 34.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 34.10 WGET_URL="$SF_MIRROR/cpug/$TARBALL" 34.11
35.1 --- a/cramfs/receipt Tue Sep 27 16:54:01 2022 +0000 35.2 +++ b/cramfs/receipt Wed Sep 28 08:10:35 2022 +0000 35.3 @@ -7,7 +7,7 @@ 35.4 LICENSE="GPL2" 35.5 MAINTAINER="pascal.bellard@slitaz.org" 35.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 35.7 -WEB_SITE="http://cramfs.sourceforge.net/" 35.8 +WEB_SITE="https://cramfs.sourceforge.net/" 35.9 WGET_URL="$SF_MIRROR/$PACKAGE/$PACKAGE/$VERSION/$TARBALL" 35.10 35.11 DEPENDS="zlib"
36.1 --- a/csstidy/receipt Tue Sep 27 16:54:01 2022 +0000 36.2 +++ b/csstidy/receipt Wed Sep 28 08:10:35 2022 +0000 36.3 @@ -6,7 +6,7 @@ 36.4 SHORT_DESC="CSSTidy is a program that optimises, formats and fixes CSS code" 36.5 MAINTAINER="al.bobylev@gmail.com" 36.6 LICENSE="GPL2" 36.7 -WEB_SITE="http://csstidy.sourceforge.net/" 36.8 +WEB_SITE="https://csstidy.sourceforge.net/" 36.9 TARBALL="$PACKAGE-source-$VERSION.zip" 36.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 36.11
37.1 --- a/ctags/receipt Tue Sep 27 16:54:01 2022 +0000 37.2 +++ b/ctags/receipt Wed Sep 28 08:10:35 2022 +0000 37.3 @@ -6,7 +6,7 @@ 37.4 SHORT_DESC="Generates an index file of language objects found in source files." 37.5 MAINTAINER="rocky@slitaz.org" 37.6 LICENSE="GPL2" 37.7 -WEB_SITE="http://ctags.sourceforge.net/" 37.8 +WEB_SITE="https://ctags.sourceforge.net/" 37.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 37.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 37.11
38.1 --- a/curlftpfs/receipt Tue Sep 27 16:54:01 2022 +0000 38.2 +++ b/curlftpfs/receipt Wed Sep 28 08:10:35 2022 +0000 38.3 @@ -7,7 +7,7 @@ 38.4 MAINTAINER="erjo@slitaz.org" 38.5 LICENSE="GPL2" 38.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 38.7 -WEB_SITE="http://curlftpfs.sourceforge.net/" 38.8 +WEB_SITE="https://curlftpfs.sourceforge.net/" 38.9 WGET_URL="http://downloads.sourceforge.net/curlftpfs/$TARBALL" 38.10 38.11 DEPENDS="fuse2 curl glib zlib"
39.1 --- a/davmail/receipt Tue Sep 27 16:54:01 2022 +0000 39.2 +++ b/davmail/receipt Wed Sep 28 08:10:35 2022 +0000 39.3 @@ -7,7 +7,7 @@ 39.4 MAINTAINER="pascal.bellard@slitaz.org" 39.5 LICENSE="GPL2" 39.6 TARBALL="$PACKAGE-src-$VERSION.tgz" 39.7 -WEB_SITE="http://davmail.sourceforge.net/" 39.8 +WEB_SITE="https://davmail.sourceforge.net/" 39.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 39.10 39.11 DEPENDS="java-jre"
40.1 --- a/defragfs/receipt Tue Sep 27 16:54:01 2022 +0000 40.2 +++ b/defragfs/receipt Wed Sep 28 08:10:35 2022 +0000 40.3 @@ -7,7 +7,7 @@ 40.4 MAINTAINER="pascal.bellard@slitaz.org" 40.5 LICENSE="GPL3" 40.6 TARBALL="$PACKAGE-$VERSION.gz" 40.7 -WEB_SITE="http://defragfs.sourceforge.net/" 40.8 +WEB_SITE="https://defragfs.sourceforge.net/" 40.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 40.10 40.11 DEPENDS="perl"
41.1 --- a/disktype/receipt Tue Sep 27 16:54:01 2022 +0000 41.2 +++ b/disktype/receipt Wed Sep 28 08:10:35 2022 +0000 41.3 @@ -7,7 +7,7 @@ 41.4 MAINTAINER="db_slitaz@m4x.org" 41.5 LICENSE="MIT" 41.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 41.7 -WEB_SITE="http://disktype.sourceforge.net/" 41.8 +WEB_SITE="https://disktype.sourceforge.net/" 41.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 41.10 41.11 DEPENDS=""
42.1 --- a/drakon-editor/receipt Tue Sep 27 16:54:01 2022 +0000 42.2 +++ b/drakon-editor/receipt Wed Sep 28 08:10:35 2022 +0000 42.3 @@ -6,7 +6,7 @@ 42.4 SHORT_DESC="A visual language for specifications from the Russian space program." 42.5 MAINTAINER="pascal.bellard@slitaz.org" 42.6 LICENSE="PublicDomain" 42.7 -WEB_SITE="http://drakon-editor.sourceforge.net/" 42.8 +WEB_SITE="https://drakon-editor.sourceforge.net/" 42.9 42.10 TARBALL="drakon_editor$VERSION.zip" 42.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
43.1 --- a/dssi-dev/receipt Tue Sep 27 16:54:01 2022 +0000 43.2 +++ b/dssi-dev/receipt Wed Sep 28 08:10:35 2022 +0000 43.3 @@ -6,7 +6,7 @@ 43.4 SHORT_DESC="An audio plugin API for soft synths and effects, development files." 43.5 MAINTAINER="pascal.bellard@slitaz.org" 43.6 LICENSE="LGPL2.1" 43.7 -WEB_SITE="http://dssi.sourceforge.net/" 43.8 +WEB_SITE="https://dssi.sourceforge.net/" 43.9 WANTED="dssi" 43.10 43.11 DEPENDS="dssi pkg-config"
44.1 --- a/dssi/receipt Tue Sep 27 16:54:01 2022 +0000 44.2 +++ b/dssi/receipt Wed Sep 28 08:10:35 2022 +0000 44.3 @@ -7,7 +7,7 @@ 44.4 MAINTAINER="pascal.bellard@slitaz.org" 44.5 LICENSE="LGPL2.1" 44.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 44.7 -WEB_SITE="http://dssi.sourceforge.net/" 44.8 +WEB_SITE="https://dssi.sourceforge.net/" 44.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 44.10 44.11 DEPENDS="gcc-lib-base"
45.1 --- a/dtach/receipt Tue Sep 27 16:54:01 2022 +0000 45.2 +++ b/dtach/receipt Wed Sep 28 08:10:35 2022 +0000 45.3 @@ -6,7 +6,7 @@ 45.4 SHORT_DESC="Emulates the detach feature of screen." 45.5 MAINTAINER="christophe.paris@free.fr" 45.6 LICENSE="GPL2" 45.7 -WEB_SITE="http://dtach.sourceforge.net/" 45.8 +WEB_SITE="https://dtach.sourceforge.net/" 45.9 45.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 45.11 WGET_URL="http://downloads.sourceforge.net/dtach/$TARBALL"
46.1 --- a/dvdauthor/receipt Tue Sep 27 16:54:01 2022 +0000 46.2 +++ b/dvdauthor/receipt Wed Sep 28 08:10:35 2022 +0000 46.3 @@ -6,7 +6,7 @@ 46.4 SHORT_DESC="A simple set of tools to help you author a DVD." 46.5 MAINTAINER="pankso@slitaz.org" 46.6 LICENSE="GPL2" 46.7 -WEB_SITE="http://dvdauthor.sourceforge.net/" 46.8 +WEB_SITE="https://dvdauthor.sourceforge.net/" 46.9 46.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 46.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
47.1 --- a/e2fsprogs-dev/receipt Tue Sep 27 16:54:01 2022 +0000 47.2 +++ b/e2fsprogs-dev/receipt Wed Sep 28 08:10:35 2022 +0000 47.3 @@ -6,7 +6,7 @@ 47.4 SHORT_DESC="The e2fsprogs development files." 47.5 MAINTAINER="pankso@slitaz.org" 47.6 LICENSE="GPL2" 47.7 -WEB_SITE="http://e2fsprogs.sourceforge.net/" 47.8 +WEB_SITE="https://e2fsprogs.sourceforge.net/" 47.9 47.10 DEPENDS="libcomerr-dev pkg-config" 47.11 WANTED="e2fsprogs"
48.1 --- a/e2fsprogs/receipt Tue Sep 27 16:54:01 2022 +0000 48.2 +++ b/e2fsprogs/receipt Wed Sep 28 08:10:35 2022 +0000 48.3 @@ -6,7 +6,7 @@ 48.4 SHORT_DESC="Filesystem utilities for use with ext2, ext3 and ext4 (without fsck*)." 48.5 MAINTAINER="pankso@slitaz.org" 48.6 LICENSE="GPL2" 48.7 -WEB_SITE="http://e2fsprogs.sourceforge.net/" 48.8 +WEB_SITE="https://e2fsprogs.sourceforge.net/" 48.9 48.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 48.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
49.1 --- a/e4rat/receipt Tue Sep 27 16:54:01 2022 +0000 49.2 +++ b/e4rat/receipt Wed Sep 28 08:10:35 2022 +0000 49.3 @@ -6,7 +6,7 @@ 49.4 SHORT_DESC="Ext4 - Reducing Access Times: Improve Startup Times." 49.5 MAINTAINER="pascal.bellard@slitaz.org" 49.6 LICENSE="GPL3" 49.7 -WEB_SITE="http://e4rat.sourceforge.net/" 49.8 +WEB_SITE="https://e4rat.sourceforge.net/" 49.9 49.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 49.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
50.1 --- a/exif/receipt Tue Sep 27 16:54:01 2022 +0000 50.2 +++ b/exif/receipt Wed Sep 28 08:10:35 2022 +0000 50.3 @@ -6,7 +6,7 @@ 50.4 SHORT_DESC="Read exif data from images" 50.5 MAINTAINER="sygne@ombres.eu" 50.6 LICENSE="LGPL2.1" 50.7 -WEB_SITE="http://libexif.sourceforge.net/" 50.8 +WEB_SITE="https://libexif.sourceforge.net/" 50.9 50.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 50.11 WGET_URL="$SF_MIRROR/libexif/$TARBALL"
51.1 --- a/extundelete/receipt Tue Sep 27 16:54:01 2022 +0000 51.2 +++ b/extundelete/receipt Wed Sep 28 08:10:35 2022 +0000 51.3 @@ -7,7 +7,7 @@ 51.4 MAINTAINER="pascal.bellard@slitaz.org" 51.5 LICENSE="GPL2" 51.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 51.7 -WEB_SITE="http://extundelete.sourceforge.net/" 51.8 +WEB_SITE="https://extundelete.sourceforge.net/" 51.9 WGET_URL="$SF_MIRROR/extundelete/$TARBALL" 51.10 51.11 DEPENDS="e2fsprogs gcc-lib-base"
52.1 --- a/fbxkb/receipt Tue Sep 27 16:54:01 2022 +0000 52.2 +++ b/fbxkb/receipt Wed Sep 28 08:10:35 2022 +0000 52.3 @@ -7,7 +7,7 @@ 52.4 MAINTAINER="devl547@gmail.com" 52.5 LICENSE="GPL2" 52.6 TARBALL="$PACKAGE-$VERSION.tgz" 52.7 -WEB_SITE="http://fbxkb.sourceforge.net/" 52.8 +WEB_SITE="https://fbxkb.sourceforge.net/" 52.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 52.10 52.11 DEPENDS="gtk+ xorg-libXmu"
53.1 --- a/foobillard/receipt Tue Sep 27 16:54:01 2022 +0000 53.2 +++ b/foobillard/receipt Wed Sep 28 08:10:35 2022 +0000 53.3 @@ -7,7 +7,7 @@ 53.4 MAINTAINER="slaxemulator@gmail.com" 53.5 LICENSE="GPL2" 53.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 53.7 -WEB_SITE="http://foobillard.sourceforge.net/" 53.8 +WEB_SITE="https://foobillard.sourceforge.net/" 53.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 53.10 53.11 DEPENDS="libsdl freetype libpng mesa libglu-mesa"
54.1 --- a/foobillardplus-music/receipt Tue Sep 27 16:54:01 2022 +0000 54.2 +++ b/foobillardplus-music/receipt Wed Sep 28 08:10:35 2022 +0000 54.3 @@ -6,7 +6,7 @@ 54.4 SHORT_DESC="Music files for FooBillard++" 54.5 MAINTAINER="al.bobylev@gmail.com" 54.6 LICENSE="GPL2" 54.7 -WEB_SITE="http://foobillard.sourceforge.net/" 54.8 +WEB_SITE="https://foobillard.sourceforge.net/" 54.9 54.10 WANTED="foobillardplus" 54.11 DEPENDS="foobillardplus"
55.1 --- a/foobillardplus/receipt Tue Sep 27 16:54:01 2022 +0000 55.2 +++ b/foobillardplus/receipt Wed Sep 28 08:10:35 2022 +0000 55.3 @@ -6,7 +6,7 @@ 55.4 SHORT_DESC="FooBillard - free 3D OpenGL billard game for linux" 55.5 MAINTAINER="al.bobylev@gmail.com" 55.6 LICENSE="GPL2" 55.7 -WEB_SITE="http://foobillard.sourceforge.net/" 55.8 +WEB_SITE="https://foobillard.sourceforge.net/" 55.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 55.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 55.11
56.1 --- a/freeimage-dev/receipt Tue Sep 27 16:54:01 2022 +0000 56.2 +++ b/freeimage-dev/receipt Wed Sep 28 08:10:35 2022 +0000 56.3 @@ -8,7 +8,7 @@ 56.4 LICENSE="GPL2" 56.5 WANTED="freeimage" 56.6 SOURCE="FreeImage" 56.7 -WEB_SITE="http://freeimage.sourceforge.net/" 56.8 +WEB_SITE="https://freeimage.sourceforge.net/" 56.9 56.10 DEPENDS="freeimage" 56.11
57.1 --- a/freeimage/receipt Tue Sep 27 16:54:01 2022 +0000 57.2 +++ b/freeimage/receipt Wed Sep 28 08:10:35 2022 +0000 57.3 @@ -8,7 +8,7 @@ 57.4 LICENSE="GPL2" 57.5 SOURCE="FreeImage" 57.6 TARBALL="$SOURCE${VERSION//./}.zip" 57.7 -WEB_SITE="http://freeimage.sourceforge.net/" 57.8 +WEB_SITE="https://freeimage.sourceforge.net/" 57.9 WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL" 57.10 57.11 DEPENDS="gcc-lib-base"
58.1 --- a/frox/receipt Tue Sep 27 16:54:01 2022 +0000 58.2 +++ b/frox/receipt Wed Sep 28 08:10:35 2022 +0000 58.3 @@ -7,7 +7,7 @@ 58.4 MAINTAINER="pascal.bellard@slitaz.org" 58.5 LICENSE="GPL2" 58.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 58.7 -WEB_SITE="http://frox.sourceforge.net/" 58.8 +WEB_SITE="https://frox.sourceforge.net/" 58.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 58.10 CONFIG_FILES="/etc/frox.conf" 58.11 TAGS="ftp"
59.1 --- a/fuse2-dev/receipt Tue Sep 27 16:54:01 2022 +0000 59.2 +++ b/fuse2-dev/receipt Wed Sep 28 08:10:35 2022 +0000 59.3 @@ -6,7 +6,7 @@ 59.4 SHORT_DESC="Fuse Filsystem - development files." 59.5 MAINTAINER="maintainer@slitaz.org" 59.6 LICENSE="GPL2" 59.7 -WEB_SITE="http://fuse.sourceforge.net/" 59.8 +WEB_SITE="https://fuse.sourceforge.net/" 59.9 59.10 DEPENDS="fuse2 pkg-config" 59.11 WANTED="fuse2"
60.1 --- a/fuse2/receipt Tue Sep 27 16:54:01 2022 +0000 60.2 +++ b/fuse2/receipt Wed Sep 28 08:10:35 2022 +0000 60.3 @@ -7,7 +7,7 @@ 60.4 SHORT_DESC="Fuse Filsystem in user space." 60.5 MAINTAINER="pankso@slitaz.org" 60.6 LICENSE="GPL2" 60.7 -WEB_SITE="http://fuse.sourceforge.net/" 60.8 +WEB_SITE="https://fuse.sourceforge.net/" 60.9 60.10 SOURCE="fuse" 60.11 TARBALL="$SOURCE-$VERSION.tar.gz"
61.1 --- a/fusecloop/receipt Tue Sep 27 16:54:01 2022 +0000 61.2 +++ b/fusecloop/receipt Wed Sep 28 08:10:35 2022 +0000 61.3 @@ -7,7 +7,7 @@ 61.4 MAINTAINER="pascal.bellard@slitaz.org" 61.5 LICENSE="GPL2" 61.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 61.7 -WEB_SITE="http://fusecloop.sourceforge.net/" 61.8 +WEB_SITE="https://fusecloop.sourceforge.net/" 61.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 61.10 ADVANCECOMP_VERSION="1.23" 61.11 ADVANCECOMP_TARBALL="advancecomp-$ADVANCECOMP_VERSION.tar.gz"
62.1 --- a/gambas2/receipt Tue Sep 27 16:54:01 2022 +0000 62.2 +++ b/gambas2/receipt Wed Sep 28 08:10:35 2022 +0000 62.3 @@ -7,7 +7,7 @@ 62.4 MAINTAINER="pankso@slitaz.org" 62.5 LICENSE="GPL2" 62.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 62.7 -WEB_SITE="http://gambas.sourceforge.net/" 62.8 +WEB_SITE="https://gambas.sourceforge.net/" 62.9 WGET_URL="$SF_MIRROR/gambas/$TARBALL" 62.10 TAGS="interpreter basic" 62.11
63.1 --- a/gavl-dev/receipt Tue Sep 27 16:54:01 2022 +0000 63.2 +++ b/gavl-dev/receipt Wed Sep 28 08:10:35 2022 +0000 63.3 @@ -6,7 +6,7 @@ 63.4 MAINTAINER="jozee@slitaz.org" 63.5 LICENSE="GPL3" 63.6 SHORT_DESC="gavl devel files" 63.7 -WEB_SITE="http://gmerlin.sourceforge.net/" 63.8 +WEB_SITE="https://gmerlin.sourceforge.net/" 63.9 WANTED="gavl" 63.10 63.11 DEPENDS="gavl pkg-config"
64.1 --- a/gavl/receipt Tue Sep 27 16:54:01 2022 +0000 64.2 +++ b/gavl/receipt Wed Sep 28 08:10:35 2022 +0000 64.3 @@ -6,7 +6,7 @@ 64.4 MAINTAINER="jozee@slitaz.org" 64.5 LICENSE="GPL3" 64.6 SHORT_DESC="A low level library, upon which multimedia APIs can be built." 64.7 -WEB_SITE="http://gmerlin.sourceforge.net/" 64.8 +WEB_SITE="https://gmerlin.sourceforge.net/" 64.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 64.10 WGET_URL="$SF_MIRROR/gmerlin/$TARBALL" 64.11
65.1 --- a/gcolor2/receipt Tue Sep 27 16:54:01 2022 +0000 65.2 +++ b/gcolor2/receipt Wed Sep 28 08:10:35 2022 +0000 65.3 @@ -7,7 +7,7 @@ 65.4 MAINTAINER="pankso@slitaz.org" 65.5 LICENSE="GPL2" 65.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 65.7 -WEB_SITE="http://gcolor2.sourceforge.net/" 65.8 +WEB_SITE="https://gcolor2.sourceforge.net/" 65.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 65.10 GENERIC_PIXMAPS="no" 65.11
66.1 --- a/geeqie/receipt Tue Sep 27 16:54:01 2022 +0000 66.2 +++ b/geeqie/receipt Wed Sep 28 08:10:35 2022 +0000 66.3 @@ -7,7 +7,7 @@ 66.4 MAINTAINER="devl547@gmail.com" 66.5 LICENSE="GPL2" 66.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 66.7 -WEB_SITE="http://geeqie.sourceforge.net/" 66.8 +WEB_SITE="https://geeqie.sourceforge.net/" 66.9 WGET_URL="https://github.com/BestImageViewer/geeqie/archive/refs/tags/v$VERSION.tar.gz" 66.10 66.11 DEPENDS="gtk+ lcms"
67.1 --- a/genromfs/receipt Tue Sep 27 16:54:01 2022 +0000 67.2 +++ b/genromfs/receipt Wed Sep 28 08:10:35 2022 +0000 67.3 @@ -7,7 +7,7 @@ 67.4 MAINTAINER="pascal.bellard@slitaz.org" 67.5 LICENSE="GPL2" 67.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 67.7 -WEB_SITE="http://romfs.sourceforge.net/" 67.8 +WEB_SITE="https://romfs.sourceforge.net/" 67.9 WGET_URL="https://github.com/chexum/$PACKAGE/archive/$VERSION.tar.gz" 67.10 67.11 DEPENDS=""
68.1 --- a/get-upx/receipt Tue Sep 27 16:54:01 2022 +0000 68.2 +++ b/get-upx/receipt Wed Sep 28 08:10:35 2022 +0000 68.3 @@ -6,7 +6,7 @@ 68.4 SHORT_DESC="Get UPX executable packer." 68.5 MAINTAINER="pascal.bellard@slitaz.org" 68.6 LICENSE="BSD" 68.7 -WEB_SITE="http://upx.sourceforge.net/" 68.8 +WEB_SITE="https://upx.sourceforge.net/" 68.9 68.10 # Rules to gen a SliTaz package suitable for Tazpkg. 68.11 genpkg_rules()
69.1 --- a/ggseq/receipt Tue Sep 27 16:54:01 2022 +0000 69.2 +++ b/ggseq/receipt Wed Sep 28 08:10:35 2022 +0000 69.3 @@ -7,7 +7,7 @@ 69.4 MAINTAINER="pankso@slitaz.org" 69.5 LICENSE="GPL2" 69.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 69.7 -WEB_SITE="http://ggseq.sourceforge.net/" 69.8 +WEB_SITE="https://ggseq.sourceforge.net/" 69.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 69.10 69.11 DEPENDS="wxWidgets28 libsndfile libsamplerate"
70.1 --- a/gif2apng/receipt Tue Sep 27 16:54:01 2022 +0000 70.2 +++ b/gif2apng/receipt Wed Sep 28 08:10:35 2022 +0000 70.3 @@ -6,7 +6,7 @@ 70.4 SHORT_DESC="Convert GIF animations into APNG format." 70.5 MAINTAINER="al.bobylev@gmail.com" 70.6 LICENSE="zlib/libpng" 70.7 -WEB_SITE="http://gif2apng.sourceforge.net/" 70.8 +WEB_SITE="https://gif2apng.sourceforge.net/" 70.9 70.10 TARBALL="$PACKAGE-$VERSION-src.zip" 70.11 WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
71.1 --- a/gimp-plugin-ufraw/receipt Tue Sep 27 16:54:01 2022 +0000 71.2 +++ b/gimp-plugin-ufraw/receipt Wed Sep 28 08:10:35 2022 +0000 71.3 @@ -8,7 +8,7 @@ 71.4 LICENSE="GPL2" 71.5 SUGGESTED="ufraw-locales" 71.6 WANTED="ufraw" 71.7 -WEB_SITE="http://ufraw.sourceforge.net/" 71.8 +WEB_SITE="https://ufraw.sourceforge.net/" 71.9 71.10 DEPENDS="gimp" 71.11
72.1 --- a/gitmail/receipt Tue Sep 27 16:54:01 2022 +0000 72.2 +++ b/gitmail/receipt Wed Sep 28 08:10:35 2022 +0000 72.3 @@ -7,7 +7,7 @@ 72.4 MAINTAINER="pankso@slitaz.org" 72.5 LICENSE="GPL2" 72.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 72.7 -WEB_SITE="http://gitmail.sourceforge.net/" 72.8 +WEB_SITE="https://gitmail.sourceforge.net/" 72.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 72.10 72.11 DEPENDS="gtk+ xorg-libXdamage"
73.1 --- a/glade-perl/receipt Tue Sep 27 16:54:01 2022 +0000 73.2 +++ b/glade-perl/receipt Wed Sep 28 08:10:35 2022 +0000 73.3 @@ -8,7 +8,7 @@ 73.4 LICENSE="GPL2" 73.5 SOURCE="Gtk2-GladeXML" 73.6 TARBALL="$SOURCE-$VERSION.tar.gz" 73.7 -WEB_SITE="http://gtk2-perl.sourceforge.net/" 73.8 +WEB_SITE="https://gtk2-perl.sourceforge.net/" 73.9 WGET_URL="$SF_MIRROR/gtk2-perl/$TARBALL" 73.10 73.11 DEPENDS="libglade perl-gtk2 perl"
74.1 --- a/glew-dev/receipt Tue Sep 27 16:54:01 2022 +0000 74.2 +++ b/glew-dev/receipt Wed Sep 28 08:10:35 2022 +0000 74.3 @@ -6,7 +6,7 @@ 74.4 SHORT_DESC="The OpenGL Extension Wrangler Library. (development files)" 74.5 MAINTAINER="pascal.bellard@slitaz.org" 74.6 LICENSE="MIT BSD" 74.7 -WEB_SITE="http://glew.sourceforge.net/" 74.8 +WEB_SITE="https://glew.sourceforge.net/" 74.9 74.10 WANTED="glew" 74.11 DEPENDS="glew pkg-config"
75.1 --- a/glew/receipt Tue Sep 27 16:54:01 2022 +0000 75.2 +++ b/glew/receipt Wed Sep 28 08:10:35 2022 +0000 75.3 @@ -6,7 +6,7 @@ 75.4 SHORT_DESC="The OpenGL Extension Wrangler Library." 75.5 MAINTAINER="pascal.bellard@slitaz.org" 75.6 LICENSE="MIT BSD" 75.7 -WEB_SITE="http://glew.sourceforge.net/" 75.8 +WEB_SITE="https://glew.sourceforge.net/" 75.9 75.10 TARBALL="$PACKAGE-$VERSION.tgz" 75.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
76.1 --- a/gmerlin/receipt Tue Sep 27 16:54:01 2022 +0000 76.2 +++ b/gmerlin/receipt Wed Sep 28 08:10:35 2022 +0000 76.3 @@ -7,7 +7,7 @@ 76.4 MAINTAINER="pankso@slitaz.org" 76.5 LICENSE="GPL3" 76.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 76.7 -WEB_SITE="http://gmerlin.sourceforge.net/" 76.8 +WEB_SITE="https://gmerlin.sourceforge.net/" 76.9 WGET_URL="$SF_MIRROR/project/gmerlin/gmerlin/$VERSION/$TARBALL" 76.10 76.11 DEPENDS="libxml2 expat gavl gtk+ alsa-lib libpng"
77.1 --- a/gnaughty/receipt Tue Sep 27 16:54:01 2022 +0000 77.2 +++ b/gnaughty/receipt Wed Sep 28 08:10:35 2022 +0000 77.3 @@ -6,7 +6,7 @@ 77.4 SHORT_DESC="Gnaughty is an utility to automatically download adult sex content." 77.5 MAINTAINER="devl547@gmail.com" 77.6 LICENSE="GPL2" 77.7 -WEB_SITE="http://gnaughty.sourceforge.net/" 77.8 +WEB_SITE="https://gnaughty.sourceforge.net/" 77.9 77.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 77.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
78.1 --- a/gnomad2/receipt Tue Sep 27 16:54:01 2022 +0000 78.2 +++ b/gnomad2/receipt Wed Sep 28 08:10:35 2022 +0000 78.3 @@ -6,7 +6,7 @@ 78.4 SHORT_DESC="GTK+ music manager and swiss army knife for the Creative Labs NOMAD and Zen range." 78.5 MAINTAINER="keupont@no-log.org" 78.6 LICENSE="GPL2" 78.7 -WEB_SITE="http://gnomad2.sourceforge.net/" 78.8 +WEB_SITE="https://gnomad2.sourceforge.net/" 78.9 78.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 78.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
79.1 --- a/gnu-netcat/receipt Tue Sep 27 16:54:01 2022 +0000 79.2 +++ b/gnu-netcat/receipt Wed Sep 28 08:10:35 2022 +0000 79.3 @@ -8,7 +8,7 @@ 79.4 LICENSE="GPL2" 79.5 SOURCE="netcat" 79.6 TARBALL="$SOURCE-$VERSION.tar.bz2" 79.7 -WEB_SITE="http://netcat.sourceforge.net/" 79.8 +WEB_SITE="https://netcat.sourceforge.net/" 79.9 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" 79.10 79.11 DEPENDS="texinfo"
80.1 --- a/gocr/receipt Tue Sep 27 16:54:01 2022 +0000 80.2 +++ b/gocr/receipt Wed Sep 28 08:10:35 2022 +0000 80.3 @@ -7,7 +7,7 @@ 80.4 SHORT_DESC="Optical Character Recognition program." 80.5 MAINTAINER="pascal.bellard@slitaz.org" 80.6 LICENSE="GPL" 80.7 -WEB_SITE="http://jocr.sourceforge.net/" 80.8 +WEB_SITE="https://jocr.sourceforge.net/" 80.9 80.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 80.11 WGET_URL="http://www-e.uni-magdeburg.de/jschulen/ocr/$TARBALL"
81.1 --- a/gparted/receipt Tue Sep 27 16:54:01 2022 +0000 81.2 +++ b/gparted/receipt Wed Sep 28 08:10:35 2022 +0000 81.3 @@ -11,7 +11,7 @@ 81.4 cryptsetup dmsetup lvm2 nilfs-utils udftools util-linux-minix exfat-utils \ 81.5 util-linux-mkfs" 81.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 81.7 -WEB_SITE="http://gparted.sourceforge.net/" 81.8 +WEB_SITE="https://gparted.sourceforge.net/" 81.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 81.10 CROSS="error: cannot run test program while cross compiling" 81.11
82.1 --- a/grub4dos-linux/receipt Tue Sep 27 16:54:01 2022 +0000 82.2 +++ b/grub4dos-linux/receipt Wed Sep 28 08:10:35 2022 +0000 82.3 @@ -6,7 +6,7 @@ 82.4 SHORT_DESC="Some enhancements of grub boot loader - linux files." 82.5 MAINTAINER="pascal.bellard@slitaz.org" 82.6 LICENSE="GPL2" 82.7 -WEB_SITE="http://grub4dos.sourceforge.net/" 82.8 +WEB_SITE="https://grub4dos.sourceforge.net/" 82.9 WANTED="grub4dos" 82.10 PROVIDE="grub" 82.11
83.1 --- a/grub4dos/receipt Tue Sep 27 16:54:01 2022 +0000 83.2 +++ b/grub4dos/receipt Wed Sep 28 08:10:35 2022 +0000 83.3 @@ -7,7 +7,7 @@ 83.4 MAINTAINER="pascal.bellard@slitaz.org" 83.5 LICENSE="GPL2" 83.6 TARBALL="$PACKAGE-$VERSION-src.zip" 83.7 -WEB_SITE="http://grub4dos.sourceforge.net/" 83.8 +WEB_SITE="https://grub4dos.sourceforge.net/" 83.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 83.10 83.11 BUILD_DEPENDS="lzma gcc3 binutils"
84.1 --- a/gsim51/receipt Tue Sep 27 16:54:01 2022 +0000 84.2 +++ b/gsim51/receipt Wed Sep 28 08:10:35 2022 +0000 84.3 @@ -8,7 +8,7 @@ 84.4 LICENSE="GPL2" 84.5 SOURCE="gSim51" 84.6 TARBALL="${SOURCE}v$VERSION.tar.gz" 84.7 -WEB_SITE="http://$PACKAGE.sourceforge.net/" 84.8 +WEB_SITE="https://$PACKAGE.sourceforge.net/" 84.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 84.10 TAGS="8051" 84.11
85.1 --- a/gtklp/receipt Tue Sep 27 16:54:01 2022 +0000 85.2 +++ b/gtklp/receipt Wed Sep 28 08:10:35 2022 +0000 85.3 @@ -7,7 +7,7 @@ 85.4 SHORT_DESC="Tools to use and administrate CUPS." 85.5 MAINTAINER="jozee@slitaz.org" 85.6 LICENSE="GPL2" 85.7 -WEB_SITE="http://gtklp.sourceforge.net/" 85.8 +WEB_SITE="https://gtklp.sourceforge.net/" 85.9 85.10 TARBALL="$PACKAGE-$VERSION.src.tar.gz" 85.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
86.1 --- a/gtkperf/receipt Tue Sep 27 16:54:01 2022 +0000 86.2 +++ b/gtkperf/receipt Wed Sep 28 08:10:35 2022 +0000 86.3 @@ -7,7 +7,7 @@ 86.4 MAINTAINER="devl547@gmail.com" 86.5 LICENSE="GPL2" 86.6 TARBALL="${PACKAGE}_${VERSION}.tar.gz" 86.7 -WEB_SITE="http://gtkperf.sourceforge.net/" 86.8 +WEB_SITE="https://gtkperf.sourceforge.net/" 86.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 86.10 86.11 DEPENDS="gtk+"
87.1 --- a/guichan-dev/receipt Tue Sep 27 16:54:01 2022 +0000 87.2 +++ b/guichan-dev/receipt Wed Sep 28 08:10:35 2022 +0000 87.3 @@ -6,7 +6,7 @@ 87.4 SHORT_DESC="a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL" 87.5 MAINTAINER="devl547@gmail.com" 87.6 LICENSE="BSD" 87.7 -WEB_SITE="http://guichan.sourceforge.net/" 87.8 +WEB_SITE="https://guichan.sourceforge.net/" 87.9 WANTED="guichan" 87.10 87.11 DEPENDS="pkg-config"
88.1 --- a/guichan/receipt Tue Sep 27 16:54:01 2022 +0000 88.2 +++ b/guichan/receipt Wed Sep 28 08:10:35 2022 +0000 88.3 @@ -7,7 +7,7 @@ 88.4 MAINTAINER="devl547@gmail.com" 88.5 LICENSE="BSD" 88.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 88.7 -WEB_SITE="http://guichan.sourceforge.net/" 88.8 +WEB_SITE="https://guichan.sourceforge.net/" 88.9 WGET_URL="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/$PACKAGE/$TARBALL" 88.10 88.11 DEPENDS="libsdl libsdl-image"
89.1 --- a/gutenprint-dev/receipt Tue Sep 27 16:54:01 2022 +0000 89.2 +++ b/gutenprint-dev/receipt Wed Sep 28 08:10:35 2022 +0000 89.3 @@ -6,7 +6,7 @@ 89.4 SHORT_DESC="Gutenprint development files." 89.5 MAINTAINER="jozee@slitaz.org" 89.6 LICENSE="GPL2" 89.7 -WEB_SITE="http://gimp-print.sourceforge.net/" 89.8 +WEB_SITE="https://gimp-print.sourceforge.net/" 89.9 89.10 DEPENDS="gutenprint pkg-config" 89.11 WANTED="gutenprint"
90.1 --- a/gutenprint-lang/receipt Tue Sep 27 16:54:01 2022 +0000 90.2 +++ b/gutenprint-lang/receipt Wed Sep 28 08:10:35 2022 +0000 90.3 @@ -6,7 +6,7 @@ 90.4 SHORT_DESC="Top quality drivers for Canon and Epson printers - localised messages." 90.5 MAINTAINER="maintainer@slitaz.org" 90.6 LICENSE="GPL2" 90.7 -WEB_SITE="http://gimp-print.sourceforge.net/" 90.8 +WEB_SITE="https://gimp-print.sourceforge.net/" 90.9 90.10 WANTED="gutenprint" 90.11
91.1 --- a/gutenprint/receipt Tue Sep 27 16:54:01 2022 +0000 91.2 +++ b/gutenprint/receipt Wed Sep 28 08:10:35 2022 +0000 91.3 @@ -7,7 +7,7 @@ 91.4 SHORT_DESC="Top quality drivers for Canon and Epson printers." 91.5 MAINTAINER="jozee@slitaz.org" 91.6 LICENSE="GPL2" 91.7 -WEB_SITE="http://gimp-print.sourceforge.net/" 91.8 +WEB_SITE="https://gimp-print.sourceforge.net/" 91.9 91.10 TARBALL="$PACKAGE-$VERSION.tar.xz" 91.11 WGET_URL="$SF_MIRROR/gimp-print/$TARBALL"
92.1 --- a/gutenpy/receipt Tue Sep 27 16:54:01 2022 +0000 92.2 +++ b/gutenpy/receipt Wed Sep 28 08:10:35 2022 +0000 92.3 @@ -7,7 +7,7 @@ 92.4 MAINTAINER="paul@slitaz.org" 92.5 LICENSE="GPL2" 92.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 92.7 -WEB_SITE="http://gutenpy.sourceforge.net/" 92.8 +WEB_SITE="https://gutenpy.sourceforge.net/" 92.9 WGET_URL="http://prdownloads.sourceforge.net/gutenpy/$TARBALL" 92.10 92.11 DEPENDS="python pygtk"
93.1 --- a/haserl-lua/receipt Tue Sep 27 16:54:01 2022 +0000 93.2 +++ b/haserl-lua/receipt Wed Sep 28 08:10:35 2022 +0000 93.3 @@ -6,7 +6,7 @@ 93.4 SHORT_DESC="Small program that uses shell or Lua script to create cgi web scripts." 93.5 MAINTAINER="milka@konstelacioj.info" 93.6 LICENSE="GPL2" 93.7 -WEB_SITE="http://haserl.sourceforge.net/" 93.8 +WEB_SITE="https://haserl.sourceforge.net/" 93.9 93.10 SOURCE="haserl" 93.11 TARBALL="$SOURCE-$VERSION.tar.gz"
94.1 --- a/haserl/receipt Tue Sep 27 16:54:01 2022 +0000 94.2 +++ b/haserl/receipt Wed Sep 28 08:10:35 2022 +0000 94.3 @@ -6,7 +6,7 @@ 94.4 SHORT_DESC="Small program that uses shell or Lua script to create cgi web scripts." 94.5 MAINTAINER="milka@konstelacioj.info" 94.6 LICENSE="GPL2" 94.7 -WEB_SITE="http://haserl.sourceforge.net/" 94.8 +WEB_SITE="https://haserl.sourceforge.net/" 94.9 94.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 94.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
95.1 --- a/ht/receipt Tue Sep 27 16:54:01 2022 +0000 95.2 +++ b/ht/receipt Wed Sep 28 08:10:35 2022 +0000 95.3 @@ -7,7 +7,7 @@ 95.4 MAINTAINER="pascal.bellard@slitaz.org" 95.5 LICENSE="GPL2" 95.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 95.7 -WEB_SITE="http://hte.sourceforge.net/" 95.8 +WEB_SITE="https://hte.sourceforge.net/" 95.9 WGET_URL="$SF_MIRROR/hte/$TARBALL" 95.10 TAGS="viewer text-editor analysis" 95.11
96.1 --- a/httpfs-fuse-static/receipt Tue Sep 27 16:54:01 2022 +0000 96.2 +++ b/httpfs-fuse-static/receipt Wed Sep 28 08:10:35 2022 +0000 96.3 @@ -6,7 +6,7 @@ 96.4 SHORT_DESC="HTTP Filesystem implemented with FUSE." 96.5 MAINTAINER="pascal.bellard@slitaz.org" 96.6 LICENSE="GPL" 96.7 -WEB_SITE="http://httpfs.sourceforge.net/" 96.8 +WEB_SITE="https://httpfs.sourceforge.net/" 96.9 WANTED="httpfs-fuse" 96.10 TAGS="filesystem" 96.11
97.1 --- a/httpfs-fuse/receipt Tue Sep 27 16:54:01 2022 +0000 97.2 +++ b/httpfs-fuse/receipt Wed Sep 28 08:10:35 2022 +0000 97.3 @@ -8,7 +8,7 @@ 97.4 LICENSE="GPL2" 97.5 SOURCE="httpfs_with_static_binaries" 97.6 TARBALL="${SOURCE}_$VERSION.tar.gz" 97.7 -WEB_SITE="http://httpfs.sourceforge.net/" 97.8 +WEB_SITE="https://httpfs.sourceforge.net/" 97.9 WGET_URL="$SF_MIRROR/httpfs/$TARBALL" 97.10 TAGS="filesystem" 97.11
98.1 --- a/httpfs2-fuse/receipt Tue Sep 27 16:54:01 2022 +0000 98.2 +++ b/httpfs2-fuse/receipt Wed Sep 28 08:10:35 2022 +0000 98.3 @@ -8,7 +8,7 @@ 98.4 MAINTAINER="pascal.bellard@slitaz.org" 98.5 LICENSE="GPL2" 98.6 TARBALL="$SOURCE-$VERSION.tar.gz" 98.7 -WEB_SITE="http://httpfs.sourceforge.net/" 98.8 +WEB_SITE="https://httpfs.sourceforge.net/" 98.9 WGET_URL="$SF_MIRROR/httpfs/$TARBALL" 98.10 PROVIDE="httpfs-fuse" 98.11 TAGS="filesystem"
99.1 --- a/icmpshell/receipt Tue Sep 27 16:54:01 2022 +0000 99.2 +++ b/icmpshell/receipt Wed Sep 28 08:10:35 2022 +0000 99.3 @@ -8,7 +8,7 @@ 99.4 MAINTAINER="pascal.bellard@slitaz.org" 99.5 LICENSE="GPL2" 99.6 TARBALL="$SOURCE-v$VERSION.tar.gz" 99.7 -WEB_SITE="http://icmpshell.sourceforge.net/" 99.8 +WEB_SITE="https://icmpshell.sourceforge.net/" 99.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 99.10 99.11 # What is the latest version available today?
100.1 --- a/id3lib-dev/receipt Tue Sep 27 16:54:01 2022 +0000 100.2 +++ b/id3lib-dev/receipt Wed Sep 28 08:10:35 2022 +0000 100.3 @@ -7,7 +7,7 @@ 100.4 MAINTAINER="pankso@slitaz.org" 100.5 LICENSE="GPL2" 100.6 WANTED="id3lib" 100.7 -WEB_SITE="http://id3lib.sourceforge.net/" 100.8 +WEB_SITE="https://id3lib.sourceforge.net/" 100.9 100.10 # Rules to gen a SliTaz package suitable for Tazpkg. 100.11 genpkg_rules()
101.1 --- a/id3lib/receipt Tue Sep 27 16:54:01 2022 +0000 101.2 +++ b/id3lib/receipt Wed Sep 28 08:10:35 2022 +0000 101.3 @@ -7,7 +7,7 @@ 101.4 MAINTAINER="pankso@slitaz.org" 101.5 LICENSE="GPL2" 101.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 101.7 -WEB_SITE="http://id3lib.sourceforge.net/" 101.8 +WEB_SITE="https://id3lib.sourceforge.net/" 101.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 101.10 101.11 DEPENDS="zlib gcc-lib-base"
102.1 --- a/id3v2/receipt Tue Sep 27 16:54:01 2022 +0000 102.2 +++ b/id3v2/receipt Wed Sep 28 08:10:35 2022 +0000 102.3 @@ -7,7 +7,7 @@ 102.4 MAINTAINER="paul@slitaz.org" 102.5 LICENSE="LGPL2.1" 102.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 102.7 -WEB_SITE="http://id3v2.sourceforge.net/" 102.8 +WEB_SITE="https://id3v2.sourceforge.net/" 102.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 102.10 102.11 DEPENDS="id3lib"
103.1 --- a/imagination/receipt Tue Sep 27 16:54:01 2022 +0000 103.2 +++ b/imagination/receipt Wed Sep 28 08:10:35 2022 +0000 103.3 @@ -7,7 +7,7 @@ 103.4 MAINTAINER="jozee@slitaz.org" 103.5 LICENSE="GPL2" 103.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 103.7 -WEB_SITE="http://imagination.sourceforge.net/" 103.8 +WEB_SITE="https://imagination.sourceforge.net/" 103.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 103.10 TAGS="slideshow photo" 103.11
104.1 --- a/imap-upload/receipt Tue Sep 27 16:54:01 2022 +0000 104.2 +++ b/imap-upload/receipt Wed Sep 28 08:10:35 2022 +0000 104.3 @@ -7,7 +7,7 @@ 104.4 MAINTAINER="pascal.bellard@slitaz.org" 104.5 TARBALL="$PACKAGE-$VERSION.zip" 104.6 LICENSE="MIT" 104.7 -WEB_SITE="http://imap-upload.sourceforge.net/" 104.8 +WEB_SITE="https://imap-upload.sourceforge.net/" 104.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 104.10 104.11 DEPENDS="python"
105.1 --- a/isync/receipt Tue Sep 27 16:54:01 2022 +0000 105.2 +++ b/isync/receipt Wed Sep 28 08:10:35 2022 +0000 105.3 @@ -7,7 +7,7 @@ 105.4 SHORT_DESC="IMAP and MailDir mailbox synchronizer." 105.5 MAINTAINER="pascal.bellard@slitaz.org" 105.6 LICENSE="GPL2" 105.7 -WEB_SITE="http://isync.sourceforge.net/" 105.8 +WEB_SITE="https://isync.sourceforge.net/" 105.9 105.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 105.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
106.1 --- a/ivman/receipt Tue Sep 27 16:54:01 2022 +0000 106.2 +++ b/ivman/receipt Wed Sep 28 08:10:35 2022 +0000 106.3 @@ -7,7 +7,7 @@ 106.4 MAINTAINER="pascal.bellard@slitaz.org" 106.5 LICENSE="GPL2 QPL" 106.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 106.7 -WEB_SITE="http://$PACKAGE.sourceforge.net/" 106.8 +WEB_SITE="https://$PACKAGE.sourceforge.net/" 106.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 106.10 CONFIG_FILES="/etc/ivman" 106.11
107.1 --- a/jfsutils/receipt Tue Sep 27 16:54:01 2022 +0000 107.2 +++ b/jfsutils/receipt Wed Sep 28 08:10:35 2022 +0000 107.3 @@ -7,7 +7,7 @@ 107.4 SHORT_DESC="Utilities for manipulating jfs file-system." 107.5 MAINTAINER="pascal.bellard@slitaz.org" 107.6 LICENSE="GPL3" 107.7 -WEB_SITE="http://jfs.sourceforge.net/" 107.8 +WEB_SITE="https://jfs.sourceforge.net/" 107.9 107.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 107.11 WGET_URL="${WEB_SITE}project/pub/$TARBALL"
108.1 --- a/jikes-dev/receipt Tue Sep 27 16:54:01 2022 +0000 108.2 +++ b/jikes-dev/receipt Wed Sep 28 08:10:35 2022 +0000 108.3 @@ -6,7 +6,7 @@ 108.4 SHORT_DESC="jikes devel files." 108.5 MAINTAINER="rcx@zoominternet.net" 108.6 LICENSE="EPL" 108.7 -WEB_SITE="http://jikes.sourceforge.net/" 108.8 +WEB_SITE="https://jikes.sourceforge.net/" 108.9 WANTED="jikes" 108.10 108.11 # Rules to gen a SliTaz package suitable for Tazpkg.
109.1 --- a/jikes/receipt Tue Sep 27 16:54:01 2022 +0000 109.2 +++ b/jikes/receipt Wed Sep 28 08:10:35 2022 +0000 109.3 @@ -7,7 +7,7 @@ 109.4 MAINTAINER="rcx@zoominternet.net" 109.5 LICENSE="EPL" 109.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 109.7 -WEB_SITE="http://jikes.sourceforge.net/" 109.8 +WEB_SITE="https://jikes.sourceforge.net/" 109.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 109.10 TAGS="java" 109.11
110.1 --- a/jtoolkit/receipt Tue Sep 27 16:54:01 2022 +0000 110.2 +++ b/jtoolkit/receipt Wed Sep 28 08:10:35 2022 +0000 110.3 @@ -8,7 +8,7 @@ 110.4 LICENSE="GPL2" 110.5 SOURCE="jToolkit" 110.6 TARBALL="$SOURCE-$VERSION.tar.gz" 110.7 -WEB_SITE="http://$PACKAGE.sourceforge.net/" 110.8 +WEB_SITE="https://$PACKAGE.sourceforge.net/" 110.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 110.10 110.11 DEPENDS="python"
111.1 --- a/karmen/receipt Tue Sep 27 16:54:01 2022 +0000 111.2 +++ b/karmen/receipt Wed Sep 28 08:10:35 2022 +0000 111.3 @@ -7,7 +7,7 @@ 111.4 MAINTAINER="pankso@slitaz.org" 111.5 LICENSE="MIT" 111.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 111.7 -WEB_SITE="http://karmen.sourceforge.net/" 111.8 +WEB_SITE="https://karmen.sourceforge.net/" 111.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 111.10 TAGS="window-manager" 111.11
112.1 --- a/katarina/receipt Tue Sep 27 16:54:01 2022 +0000 112.2 +++ b/katarina/receipt Wed Sep 28 08:10:35 2022 +0000 112.3 @@ -7,7 +7,7 @@ 112.4 MAINTAINER="pascal.bellard@slitaz.org" 112.5 LICENSE="GPL2" 112.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 112.7 -WEB_SITE="http://katarina.sourceforge.net/" 112.8 +WEB_SITE="https://katarina.sourceforge.net/" 112.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 112.10 TAGS="backup rsync" 112.11
113.1 --- a/lame-dev/receipt Tue Sep 27 16:54:01 2022 +0000 113.2 +++ b/lame-dev/receipt Wed Sep 28 08:10:35 2022 +0000 113.3 @@ -7,7 +7,7 @@ 113.4 SHORT_DESC="Lame (mp3 encoder) development files." 113.5 MAINTAINER="pankso@slitaz.org" 113.6 LICENSE="LGPL2" 113.7 -WEB_SITE="http://lame.sourceforge.net/" 113.8 +WEB_SITE="https://lame.sourceforge.net/" 113.9 113.10 WANTED="lame" 113.11 DEPENDS="lame"
114.1 --- a/lame/receipt Tue Sep 27 16:54:01 2022 +0000 114.2 +++ b/lame/receipt Wed Sep 28 08:10:35 2022 +0000 114.3 @@ -7,7 +7,7 @@ 114.4 SHORT_DESC="MPEG Audio Layer III (MP3) encoder." 114.5 MAINTAINER="pankso@slitaz.org" 114.6 LICENSE="LGPL2" 114.7 -WEB_SITE="http://lame.sourceforge.net/" 114.8 +WEB_SITE="https://lame.sourceforge.net/" 114.9 114.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 114.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
115.1 --- a/lftpfs/receipt Tue Sep 27 16:54:01 2022 +0000 115.2 +++ b/lftpfs/receipt Wed Sep 28 08:10:35 2022 +0000 115.3 @@ -7,7 +7,7 @@ 115.4 MAINTAINER="pascal.bellard@slitaz.org" 115.5 LICENSE="GPL2" 115.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 115.7 -WEB_SITE="http://lftpfs.sourceforge.net/" 115.8 +WEB_SITE="https://lftpfs.sourceforge.net/" 115.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 115.10 115.11 DEPENDS="perl-fuse perl-ipc-run"
116.1 --- a/libXaw3dXft-dev/receipt Tue Sep 27 16:54:01 2022 +0000 116.2 +++ b/libXaw3dXft-dev/receipt Wed Sep 28 08:10:35 2022 +0000 116.3 @@ -6,7 +6,7 @@ 116.4 SHORT_DESC="Xpaint module development files." 116.5 MAINTAINER="pascal.bellard@slitaz.org" 116.6 LICENSE="MIT" 116.7 -WEB_SITE="http://sf-xpaint.sourceforge.net/" 116.8 +WEB_SITE="https://sf-xpaint.sourceforge.net/" 116.9 116.10 WANTED="libXaw3dXft" 116.11 DEPENDS="libXaw3dXft xorg-libXmu-dev pkg-config"
117.1 --- a/libXaw3dXft/receipt Tue Sep 27 16:54:01 2022 +0000 117.2 +++ b/libXaw3dXft/receipt Wed Sep 28 08:10:35 2022 +0000 117.3 @@ -6,7 +6,7 @@ 117.4 SHORT_DESC="Xpaint module." 117.5 MAINTAINER="pascal.bellard@slitaz.org" 117.6 LICENSE="MIT" 117.7 -WEB_SITE="http://sf-xpaint.sourceforge.net/" 117.8 +WEB_SITE="https://sf-xpaint.sourceforge.net/" 117.9 117.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 117.11 WGET_URL="$SF_MIRROR/sf-xpaint/$TARBALL"
118.1 --- a/libcddb-dev/receipt Tue Sep 27 16:54:01 2022 +0000 118.2 +++ b/libcddb-dev/receipt Wed Sep 28 08:10:35 2022 +0000 118.3 @@ -7,7 +7,7 @@ 118.4 MAINTAINER="pankso@slitaz.org" 118.5 LICENSE="LGPL2" 118.6 WANTED="libcddb" 118.7 -WEB_SITE="http://libcddb.sourceforge.net/" 118.8 +WEB_SITE="https://libcddb.sourceforge.net/" 118.9 118.10 DEPENDS="libcddb pkg-config" 118.11
119.1 --- a/libcddb-utils/receipt Tue Sep 27 16:54:01 2022 +0000 119.2 +++ b/libcddb-utils/receipt Wed Sep 28 08:10:35 2022 +0000 119.3 @@ -6,7 +6,7 @@ 119.4 SHORT_DESC="libccdb utilities." 119.5 MAINTAINER="erjo@slitaz.org" 119.6 LICENSE="LGPL2" 119.7 -WEB_SITE="http://libcddb.sourceforge.net/" 119.8 +WEB_SITE="https://libcddb.sourceforge.net/" 119.9 WANTED="libcddb" 119.10 119.11 DEPENDS="libcddb libcdio"
120.1 --- a/libcddb/receipt Tue Sep 27 16:54:01 2022 +0000 120.2 +++ b/libcddb/receipt Wed Sep 28 08:10:35 2022 +0000 120.3 @@ -7,7 +7,7 @@ 120.4 MAINTAINER="pankso@slitaz.org" 120.5 LICENSE="LGPL2" 120.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 120.7 -WEB_SITE="http://libcddb.sourceforge.net/" 120.8 +WEB_SITE="https://libcddb.sourceforge.net/" 120.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 120.10 120.11 current_version()
121.1 --- a/libcomerr-dev/receipt Tue Sep 27 16:54:01 2022 +0000 121.2 +++ b/libcomerr-dev/receipt Wed Sep 28 08:10:35 2022 +0000 121.3 @@ -7,7 +7,7 @@ 121.4 MAINTAINER="pankso@slitaz.org" 121.5 LICENSE="GPL2" 121.6 WANTED="e2fsprogs" 121.7 -WEB_SITE="http://e2fsprogs.sourceforge.net/" 121.8 +WEB_SITE="https://e2fsprogs.sourceforge.net/" 121.9 HOST_ARCH="i486 arm" 121.10 121.11 DEPENDS="pkg-config"
122.1 --- a/libcomerr/receipt Tue Sep 27 16:54:01 2022 +0000 122.2 +++ b/libcomerr/receipt Wed Sep 28 08:10:35 2022 +0000 122.3 @@ -7,7 +7,7 @@ 122.4 MAINTAINER="pankso@slitaz.org" 122.5 LICENSE="GPL2" 122.6 WANTED="e2fsprogs" 122.7 -WEB_SITE="http://e2fsprogs.sourceforge.net/" 122.8 +WEB_SITE="https://e2fsprogs.sourceforge.net/" 122.9 HOST_ARCH="i486 arm" 122.10 122.11 # Rules to gen a SliTaz package suitable for Tazpkg.
123.1 --- a/libdbi-dev/receipt Tue Sep 27 16:54:01 2022 +0000 123.2 +++ b/libdbi-dev/receipt Wed Sep 28 08:10:35 2022 +0000 123.3 @@ -6,7 +6,7 @@ 123.4 SHORT_DESC="Database independent abstraction layer for C - development files." 123.5 MAINTAINER="maintainer@slitaz.org" 123.6 LICENSE="LGPL2+" 123.7 -WEB_SITE="http://libdbi.sourceforge.net/" 123.8 +WEB_SITE="https://libdbi.sourceforge.net/" 123.9 123.10 DEPENDS="libdbi pkg-config" 123.11 WANTED="libdbi"
124.1 --- a/libdbi/receipt Tue Sep 27 16:54:01 2022 +0000 124.2 +++ b/libdbi/receipt Wed Sep 28 08:10:35 2022 +0000 124.3 @@ -6,7 +6,7 @@ 124.4 SHORT_DESC="Database independent abstraction layer for C." 124.5 MAINTAINER="maintainer@slitaz.org" 124.6 LICENSE="LGPL2+" 124.7 -WEB_SITE="http://libdbi.sourceforge.net/" 124.8 +WEB_SITE="https://libdbi.sourceforge.net/" 124.9 124.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 124.11 WGET_URL="https://downloads.sourceforge.net/project/$PACKAGE/$PACKAGE/$PACKAGE-$VERSION/$TARBALL"
125.1 --- a/libdv-dev/receipt Tue Sep 27 16:54:01 2022 +0000 125.2 +++ b/libdv-dev/receipt Wed Sep 28 08:10:35 2022 +0000 125.3 @@ -7,7 +7,7 @@ 125.4 MAINTAINER="pankso@slitaz.org" 125.5 LICENSE="LGPL2.1" 125.6 WANTED="libdv" 125.7 -WEB_SITE="http://libdv.sourceforge.net/" 125.8 +WEB_SITE="https://libdv.sourceforge.net/" 125.9 125.10 DEPENDS="pkg-config" 125.11
126.1 --- a/libdv/receipt Tue Sep 27 16:54:01 2022 +0000 126.2 +++ b/libdv/receipt Wed Sep 28 08:10:35 2022 +0000 126.3 @@ -7,7 +7,7 @@ 126.4 MAINTAINER="pankso@slitaz.org" 126.5 LICENSE="LGPL2.1" 126.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 126.7 -WEB_SITE="http://libdv.sourceforge.net/" 126.8 +WEB_SITE="https://libdv.sourceforge.net/" 126.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 126.10 126.11 DEPENDS="popt xorg-libXv"
127.1 --- a/libmcrypt-dev/receipt Tue Sep 27 16:54:01 2022 +0000 127.2 +++ b/libmcrypt-dev/receipt Wed Sep 28 08:10:35 2022 +0000 127.3 @@ -6,7 +6,7 @@ 127.4 SHORT_DESC="Encryption Library dev files" 127.5 MAINTAINER="erjo@slitaz.org" 127.6 LICENSE="LGPL2.1" 127.7 -WEB_SITE="http://mcrypt.sourceforge.net/" 127.8 +WEB_SITE="https://mcrypt.sourceforge.net/" 127.9 WANTED="libmcrypt" 127.10 127.11 DEPENDS="libmcrypt"
128.1 --- a/libmcrypt/receipt Tue Sep 27 16:54:01 2022 +0000 128.2 +++ b/libmcrypt/receipt Wed Sep 28 08:10:35 2022 +0000 128.3 @@ -7,7 +7,7 @@ 128.4 MAINTAINER="erjo@slitaz.org" 128.5 LICENSE="LGPL2.1" 128.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 128.7 -WEB_SITE="http://mcrypt.sourceforge.net/" 128.8 +WEB_SITE="https://mcrypt.sourceforge.net/" 128.9 WGET_URL="http://downloads.sourceforge.net/project/mcrypt/Libmcrypt/$VERSION/$TARBALL" 128.10 128.11 DEPENDS=""
129.1 --- a/libmodplug-dev/receipt Tue Sep 27 16:54:01 2022 +0000 129.2 +++ b/libmodplug-dev/receipt Wed Sep 28 08:10:35 2022 +0000 129.3 @@ -6,7 +6,7 @@ 129.4 SHORT_DESC="libmodplug development files." 129.5 MAINTAINER="jozee@slitaz.org" 129.6 LICENSE="PublicDomain" 129.7 -WEB_SITE="http://modplug-xmms.sourceforge.net/" 129.8 +WEB_SITE="https://modplug-xmms.sourceforge.net/" 129.9 129.10 WANTED="libmodplug" 129.11 DEPENDS="pkg-config"
130.1 --- a/libmodplug/receipt Tue Sep 27 16:54:01 2022 +0000 130.2 +++ b/libmodplug/receipt Wed Sep 28 08:10:35 2022 +0000 130.3 @@ -6,7 +6,7 @@ 130.4 SHORT_DESC="A MOD playing library." 130.5 MAINTAINER="jozee@slitaz.org" 130.6 LICENSE="PublicDomain" 130.7 -WEB_SITE="http://modplug-xmms.sourceforge.net/" 130.8 +WEB_SITE="https://modplug-xmms.sourceforge.net/" 130.9 130.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 130.11 WGET_URL="$SF_MIRROR/project/modplug-xmms/$PACKAGE/$VERSION/$TARBALL"
131.1 --- a/libmpeg2-dev/receipt Tue Sep 27 16:54:01 2022 +0000 131.2 +++ b/libmpeg2-dev/receipt Wed Sep 28 08:10:35 2022 +0000 131.3 @@ -7,7 +7,7 @@ 131.4 MAINTAINER="jozee@slitaz.org" 131.5 LICENSE="GPL2" 131.6 WANTED="libmpeg2" 131.7 -WEB_SITE="http://libmpeg2.sourceforge.net/" 131.8 +WEB_SITE="https://libmpeg2.sourceforge.net/" 131.9 131.10 DEPENDS="libmpeg2 pkg-config" 131.11
132.1 --- a/libmpeg2/receipt Tue Sep 27 16:54:01 2022 +0000 132.2 +++ b/libmpeg2/receipt Wed Sep 28 08:10:35 2022 +0000 132.3 @@ -7,7 +7,7 @@ 132.4 MAINTAINER="jozee@slitaz.org" 132.5 LICENSE="GPL2" 132.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 132.7 -WEB_SITE="http://libmpeg2.sourceforge.net/" 132.8 +WEB_SITE="https://libmpeg2.sourceforge.net/" 132.9 WGET_URL="$WEB_SITE/files/$TARBALL" 132.10 TAGS="mpeg-1 mpeg-2 decoder" 132.11
133.1 --- a/libnjb-dev/receipt Tue Sep 27 16:54:01 2022 +0000 133.2 +++ b/libnjb-dev/receipt Wed Sep 28 08:10:35 2022 +0000 133.3 @@ -6,7 +6,7 @@ 133.4 SHORT_DESC="C library and API for communicating with the Creative Nomad JukeBox and Dell DJ - development files." 133.5 MAINTAINER="keupont@no-log.org" 133.6 LICENSE="BSD" 133.7 -WEB_SITE="http://libnjb.sourceforge.net/" 133.8 +WEB_SITE="https://libnjb.sourceforge.net/" 133.9 133.10 WANTED="libnjb" 133.11 DEPENDS="libnjb libusb pkg-config zlib"
134.1 --- a/libnjb/receipt Tue Sep 27 16:54:01 2022 +0000 134.2 +++ b/libnjb/receipt Wed Sep 28 08:10:35 2022 +0000 134.3 @@ -6,7 +6,7 @@ 134.4 SHORT_DESC="C library and API for communicating with the Creative Nomad JukeBox and Dell DJ." 134.5 MAINTAINER="keupont@no-log.org" 134.6 LICENSE="BSD" 134.7 -WEB_SITE="http://libnjb.sourceforge.net/" 134.8 +WEB_SITE="https://libnjb.sourceforge.net/" 134.9 134.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 134.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
135.1 --- a/libofx-dev/receipt Tue Sep 27 16:54:01 2022 +0000 135.2 +++ b/libofx-dev/receipt Wed Sep 28 08:10:35 2022 +0000 135.3 @@ -6,7 +6,7 @@ 135.4 SHORT_DESC="OFX parser library dev files" 135.5 MAINTAINER="remyhr@free.fr" 135.6 LICENSE="GPL2" 135.7 -WEB_SITE="http://libofx.sourceforge.net/" 135.8 +WEB_SITE="https://libofx.sourceforge.net/" 135.9 WANTED="libofx" 135.10 135.11 DEPENDS="libofx pkg-config opensp-dev"
136.1 --- a/libofx/receipt Tue Sep 27 16:54:01 2022 +0000 136.2 +++ b/libofx/receipt Wed Sep 28 08:10:35 2022 +0000 136.3 @@ -7,7 +7,7 @@ 136.4 MAINTAINER="remyhr@free.fr" 136.5 LICENSE="GPL2" 136.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 136.7 -WEB_SITE="http://libofx.sourceforge.net/" 136.8 +WEB_SITE="https://libofx.sourceforge.net/" 136.9 WGET_URL="https://sourceforge.net/projects/$PACKAGE/files/$PACKAGE/$VERSION/$TARBALL" 136.10 136.11 DEPENDS="opensp"
137.1 --- a/libpfm-dev/receipt Tue Sep 27 16:54:01 2022 +0000 137.2 +++ b/libpfm-dev/receipt Wed Sep 28 08:10:35 2022 +0000 137.3 @@ -6,7 +6,7 @@ 137.4 SHORT_DESC="Improve performance monitoring on Linux, development files." 137.5 MAINTAINER="pascal.bellard@slitaz.org" 137.6 LICENSE="MIT" 137.7 -WEB_SITE="http://perfmon2.sourceforge.net/" 137.8 +WEB_SITE="https://perfmon2.sourceforge.net/" 137.9 137.10 WANTED="libpfm" 137.11 DEPENDS="libpfm"
138.1 --- a/libpfm/receipt Tue Sep 27 16:54:01 2022 +0000 138.2 +++ b/libpfm/receipt Wed Sep 28 08:10:35 2022 +0000 138.3 @@ -6,7 +6,7 @@ 138.4 SHORT_DESC="Improve performance monitoring on Linux." 138.5 MAINTAINER="pascal.bellard@slitaz.org" 138.6 LICENSE="MIT" 138.7 -WEB_SITE="http://perfmon2.sourceforge.net/" 138.8 +WEB_SITE="https://perfmon2.sourceforge.net/" 138.9 138.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 138.11 WGET_URL="$SF_MIRROR/perfmon2/$TARBALL"
139.1 --- a/libquicktime-dev/receipt Tue Sep 27 16:54:01 2022 +0000 139.2 +++ b/libquicktime-dev/receipt Wed Sep 28 08:10:35 2022 +0000 139.3 @@ -6,7 +6,7 @@ 139.4 MAINTAINER="jozee@slitaz.org" 139.5 LICENSE="LGPL2.1" 139.6 SHORT_DESC="libquicktime devel files" 139.7 -WEB_SITE="http://libquicktime.sourceforge.net/" 139.8 +WEB_SITE="https://libquicktime.sourceforge.net/" 139.9 WANTED="libquicktime" 139.10 139.11 DEPENDS="libquicktime pkg-config"
140.1 --- a/libquicktime/receipt Tue Sep 27 16:54:01 2022 +0000 140.2 +++ b/libquicktime/receipt Wed Sep 28 08:10:35 2022 +0000 140.3 @@ -6,7 +6,7 @@ 140.4 MAINTAINER="jozee@slitaz.org" 140.5 LICENSE="LGPL2.1" 140.6 SHORT_DESC="A library for reading and writing quicktime files." 140.7 -WEB_SITE="http://libquicktime.sourceforge.net/" 140.8 +WEB_SITE="https://libquicktime.sourceforge.net/" 140.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 140.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 140.11
141.1 --- a/libraryopt/receipt Tue Sep 27 16:54:01 2022 +0000 141.2 +++ b/libraryopt/receipt Wed Sep 28 08:10:35 2022 +0000 141.3 @@ -7,7 +7,7 @@ 141.4 MAINTAINER="pascal.bellard@slitaz.org" 141.5 LICENSE="GPL2" 141.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 141.7 -WEB_SITE="http://libraryopt.sourceforge.net/" 141.8 +WEB_SITE="https://libraryopt.sourceforge.net/" 141.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 141.10 141.11 DEPENDS="python binutils"
142.1 --- a/librsvg-dev/receipt Tue Sep 27 16:54:01 2022 +0000 142.2 +++ b/librsvg-dev/receipt Wed Sep 28 08:10:35 2022 +0000 142.3 @@ -6,7 +6,7 @@ 142.4 SHORT_DESC="SVG Rendering Library, development files" 142.5 MAINTAINER="erjo@slitaz.org" 142.6 LICENSE="GPL2" 142.7 -WEB_SITE="http://librsvg.sourceforge.net/" 142.8 +WEB_SITE="https://librsvg.sourceforge.net/" 142.9 HOST_ARCH="i486 arm" 142.10 142.11 WANTED="librsvg"
143.1 --- a/librsync/receipt Tue Sep 27 16:54:01 2022 +0000 143.2 +++ b/librsync/receipt Wed Sep 28 08:10:35 2022 +0000 143.3 @@ -6,7 +6,7 @@ 143.4 SHORT_DESC="Library for the rsync remote-delta algorithm" 143.5 MAINTAINER="pascal.bellard@slitaz.org" 143.6 LICENSE="LGPL2.1" 143.7 -WEB_SITE="http://librsync.sourceforge.net/" 143.8 +WEB_SITE="https://librsync.sourceforge.net/" 143.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 143.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 143.11
144.1 --- a/libsctp-dev/receipt Tue Sep 27 16:54:01 2022 +0000 144.2 +++ b/libsctp-dev/receipt Wed Sep 28 08:10:35 2022 +0000 144.3 @@ -6,7 +6,7 @@ 144.4 SHORT_DESC="Stream Control Transmission Protocol - development files." 144.5 MAINTAINER="pascal.bellard@slitaz.org" 144.6 LICENSE="GPL2 LGPL2.1" 144.7 -WEB_SITE="http://lksctp.sourceforge.net/" 144.8 +WEB_SITE="https://lksctp.sourceforge.net/" 144.9 144.10 WANTED="sctp-tools" 144.11
145.1 --- a/libsctp/receipt Tue Sep 27 16:54:01 2022 +0000 145.2 +++ b/libsctp/receipt Wed Sep 28 08:10:35 2022 +0000 145.3 @@ -6,7 +6,7 @@ 145.4 SHORT_DESC="Stream Control Transmission Protocol libraries." 145.5 MAINTAINER="pascal.bellard@slitaz.org" 145.6 LICENSE="GPL2 LGPL2.1" 145.7 -WEB_SITE="http://lksctp.sourceforge.net/" 145.8 +WEB_SITE="https://lksctp.sourceforge.net/" 145.9 145.10 WANTED="sctp-tools" 145.11
146.1 --- a/libvncserver-dev/receipt Tue Sep 27 16:54:01 2022 +0000 146.2 +++ b/libvncserver-dev/receipt Wed Sep 28 08:10:35 2022 +0000 146.3 @@ -6,7 +6,7 @@ 146.4 SHORT_DESC="devel files for libvncserver" 146.5 MAINTAINER="slaxemulator@gmail.com" 146.6 LICENSE="GPL2" 146.7 -WEB_SITE="http://libvncserver.sourceforge.net/" 146.8 +WEB_SITE="https://libvncserver.sourceforge.net/" 146.9 WANTED="libvncserver" 146.10 SOURCE="LibVNCServer" 146.11
147.1 --- a/libvncserver/receipt Tue Sep 27 16:54:01 2022 +0000 147.2 +++ b/libvncserver/receipt Wed Sep 28 08:10:35 2022 +0000 147.3 @@ -8,7 +8,7 @@ 147.4 LICENSE="GPL2" 147.5 SOURCE="LibVNCServer" 147.6 TARBALL="$SOURCE-$VERSION.tar.gz" 147.7 -WEB_SITE="http://libvncserver.sourceforge.net/" 147.8 +WEB_SITE="https://libvncserver.sourceforge.net/" 147.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 147.10 147.11 DEPENDS="jpeg zlib libssl"
148.1 --- a/libxml++-dev/receipt Tue Sep 27 16:54:01 2022 +0000 148.2 +++ b/libxml++-dev/receipt Wed Sep 28 08:10:35 2022 +0000 148.3 @@ -7,7 +7,7 @@ 148.4 MAINTAINER="pankso@slitaz.org" 148.5 LICENSE="LGPL2.1" 148.6 WANTED="libxml++" 148.7 -WEB_SITE="http://libxmlplusplus.sourceforge.net/" 148.8 +WEB_SITE="https://libxmlplusplus.sourceforge.net/" 148.9 148.10 DEPENDS="glib-dev glibmm-dev libsigc++-dev libxml2-dev libxml++ zlib-dev \ 148.11 gcc-lib-base pkg-config"
149.1 --- a/libxml++/receipt Tue Sep 27 16:54:01 2022 +0000 149.2 +++ b/libxml++/receipt Wed Sep 28 08:10:35 2022 +0000 149.3 @@ -7,7 +7,7 @@ 149.4 MAINTAINER="pankso@slitaz.org" 149.5 LICENSE="LGPL2.1" 149.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 149.7 -WEB_SITE="http://libxmlplusplus.sourceforge.net/" 149.8 +WEB_SITE="https://libxmlplusplus.sourceforge.net/" 149.9 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" 149.10 149.11 DEPENDS="glibmm libsigc++ libxml2 zlib gcc-lib-base"
150.1 --- a/liferea/receipt Tue Sep 27 16:54:01 2022 +0000 150.2 +++ b/liferea/receipt Wed Sep 28 08:10:35 2022 +0000 150.3 @@ -7,7 +7,7 @@ 150.4 MAINTAINER="devl547@gmail.com" 150.5 LICENSE="GPL2" 150.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 150.7 -WEB_SITE="http://liferea.sourceforge.net/" 150.8 +WEB_SITE="https://liferea.sourceforge.net/" 150.9 WGET_URL="http://ftp.lip6.fr/pub/minix/distfiles/local/3.3.0/$TARBALL" 150.10 150.11 DEPENDS="gtk+ glib pango GConf libunique libxml2 libxslt sqlite libsoup \
151.1 --- a/linapple/receipt Tue Sep 27 16:54:01 2022 +0000 151.2 +++ b/linapple/receipt Wed Sep 28 08:10:35 2022 +0000 151.3 @@ -7,7 +7,7 @@ 151.4 SHORT_DESC="Apple //e emulator." 151.5 MAINTAINER="pascal.bellard@slitaz.org" 151.6 LICENSE="GPL2" 151.7 -WEB_SITE="http://linapple.sourceforge.net/" 151.8 +WEB_SITE="https://linapple.sourceforge.net/" 151.9 151.10 TARBALL="${PACKAGE}_src-$VERSION.tar.bz2" 151.11 #WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
152.1 --- a/lockdis/receipt Tue Sep 27 16:54:01 2022 +0000 152.2 +++ b/lockdis/receipt Wed Sep 28 08:10:35 2022 +0000 152.3 @@ -7,7 +7,7 @@ 152.4 MAINTAINER="pankso@slitaz.org" 152.5 LICENSE="GPL3" 152.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 152.7 -WEB_SITE="http://lockdis.sourceforge.net/" 152.8 +WEB_SITE="https://lockdis.sourceforge.net/" 152.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 152.10 HOST_ARCH="i486 arm" 152.11
153.1 --- a/lostirc/receipt Tue Sep 27 16:54:01 2022 +0000 153.2 +++ b/lostirc/receipt Wed Sep 28 08:10:35 2022 +0000 153.3 @@ -7,7 +7,7 @@ 153.4 MAINTAINER="erjo@slitaz.org" 153.5 LICENSE="GPL2" 153.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 153.7 -WEB_SITE="http://lostirc.sourceforge.net/" 153.8 +WEB_SITE="https://lostirc.sourceforge.net/" 153.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 153.10 153.11 DEPENDS="glibmm cairomm gtkmm libsigc++"
154.1 --- a/luckybackup/receipt Tue Sep 27 16:54:01 2022 +0000 154.2 +++ b/luckybackup/receipt Wed Sep 28 08:10:35 2022 +0000 154.3 @@ -7,7 +7,7 @@ 154.4 MAINTAINER="pascal.bellard@slitaz.org" 154.5 SHORT_DESC="A powerful, fast and reliable backup and synchronisation tool." 154.6 LICENSE="GPL3" 154.7 -WEB_SITE="http://luckybackup.sourceforge.net/" 154.8 +WEB_SITE="https://luckybackup.sourceforge.net/" 154.9 154.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 154.11 WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/source/$TARBALL"
155.1 --- a/lxnetdaemon/receipt Tue Sep 27 16:54:01 2022 +0000 155.2 +++ b/lxnetdaemon/receipt Wed Sep 28 08:10:35 2022 +0000 155.3 @@ -7,7 +7,7 @@ 155.4 MAINTAINER="pankso@slitaz.org" 155.5 LICENSE="GPL3" 155.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 155.7 -WEB_SITE="http://lxde.sourceforge.net/" 155.8 +WEB_SITE="https://lxde.sourceforge.net/" 155.9 WGET_URL="$SF_MIRROR/lxde/$TARBALL" 155.10 155.11 DEPENDS="glib"
156.1 --- a/magnifier/receipt Tue Sep 27 16:54:01 2022 +0000 156.2 +++ b/magnifier/receipt Wed Sep 28 08:10:35 2022 +0000 156.3 @@ -8,7 +8,7 @@ 156.4 LICENSE="GPL2" 156.5 SOURCE="magnifier-linux" 156.6 TARBALL="$SOURCE-$VERSION.tar.bz2" 156.7 -WEB_SITE="http://magnifier.sourceforge.net/" 156.8 +WEB_SITE="https://magnifier.sourceforge.net/" 156.9 WGET_URL="http://downloads.sourceforge.net/magnifier/$TARBALL" 156.10 156.11 DEPENDS="expat gtk+ xorg-libX11 xorg-libXau xorg-libXcomposite \
157.1 --- a/mailsync/receipt Tue Sep 27 16:54:01 2022 +0000 157.2 +++ b/mailsync/receipt Wed Sep 28 08:10:35 2022 +0000 157.3 @@ -7,7 +7,7 @@ 157.4 SHORT_DESC="A way of synchronizing a collection of mailboxes" 157.5 MAINTAINER="pascal.bellard@slitaz.org" 157.6 LICENSE="GPL2" 157.7 -WEB_SITE="http://mailsync.sourceforge.net/" 157.8 +WEB_SITE="https://mailsync.sourceforge.net/" 157.9 157.10 TARBALL="${PACKAGE}_$VERSION.orig.tar.gz" 157.11 WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
158.1 --- a/matplotlib/receipt Tue Sep 27 16:54:01 2022 +0000 158.2 +++ b/matplotlib/receipt Wed Sep 28 08:10:35 2022 +0000 158.3 @@ -6,7 +6,7 @@ 158.4 SHORT_DESC="2D plotting library for the Python." 158.5 MAINTAINER="pascal.bellard@slitaz.org" 158.6 LICENSE="PSL BSD" 158.7 -WEB_SITE="http://matplotlib.sourceforge.net/" 158.8 +WEB_SITE="https://matplotlib.sourceforge.net/" 158.9 158.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 158.11 WGET_URL="https://pypi.io/packages/source/m/$PACKAGE/$TARBALL"
159.1 --- a/maxima/receipt Tue Sep 27 16:54:01 2022 +0000 159.2 +++ b/maxima/receipt Wed Sep 28 08:10:35 2022 +0000 159.3 @@ -7,7 +7,7 @@ 159.4 MAINTAINER="pascal.bellard@slitaz.org" 159.5 LICENSE="GPL2" 159.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 159.7 -WEB_SITE="http://maxima.sourceforge.net/" 159.8 +WEB_SITE="https://maxima.sourceforge.net/" 159.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 159.10 159.11 DEPENDS="tk rlwrap"
160.1 --- a/mcrypt/receipt Tue Sep 27 16:54:01 2022 +0000 160.2 +++ b/mcrypt/receipt Wed Sep 28 08:10:35 2022 +0000 160.3 @@ -7,7 +7,7 @@ 160.4 MAINTAINER="erjo@slitaz.org" 160.5 LICENSE="GPL3" 160.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 160.7 -WEB_SITE="http://mcrypt.sourceforge.net/" 160.8 +WEB_SITE="https://mcrypt.sourceforge.net/" 160.9 WGET_URL="http://downloads.sourceforge.net/project/mcrypt/MCrypt/$VERSION/$TARBALL" 160.10 160.11 DEPENDS="zlib mhash libmcrypt"
161.1 --- a/mdbtools/receipt Tue Sep 27 16:54:01 2022 +0000 161.2 +++ b/mdbtools/receipt Wed Sep 28 08:10:35 2022 +0000 161.3 @@ -7,7 +7,7 @@ 161.4 MAINTAINER="pascal.bellard@slitaz.org" 161.5 LICENSE="GPL2" 161.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 161.7 -WEB_SITE="http://mdbtools.sourceforge.net/" 161.8 +WEB_SITE="https://mdbtools.sourceforge.net/" 161.9 WGET_URL="$SF_MIRROR/$PACKAGE/$PACKAGE/$VERSION/$TARBALL" 161.10 161.11 DEPENDS="ncurses readline glib libunixODBC libltdl"
162.1 --- a/menu-cache-dev/receipt Tue Sep 27 16:54:01 2022 +0000 162.2 +++ b/menu-cache-dev/receipt Wed Sep 28 08:10:35 2022 +0000 162.3 @@ -6,7 +6,7 @@ 162.4 SHORT_DESC="LXDE implementation of the freedesktop Menu's cache (development)" 162.5 MAINTAINER="devel@slitaz.org" 162.6 LICENSE="GPL2" 162.7 -WEB_SITE="http://lxde.sourceforge.net/" 162.8 +WEB_SITE="https://lxde.sourceforge.net/" 162.9 WANTED="menu-cache" 162.10 DEPENDS="menu-cache libfm-extra-dev pkg-config" 162.11 TAGS="LXDE"
163.1 --- a/mfstool/receipt Tue Sep 27 16:54:01 2022 +0000 163.2 +++ b/mfstool/receipt Wed Sep 28 08:10:35 2022 +0000 163.3 @@ -7,7 +7,7 @@ 163.4 MAINTAINER="pascal.bellard@slitaz.org" 163.5 LICENSE="GPL2" 163.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 163.7 -WEB_SITE="http://mfstool.sourceforge.net/" 163.8 +WEB_SITE="https://mfstool.sourceforge.net/" 163.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 163.10 163.11 # What is the latest version available today?
164.1 --- a/mhash-dev/receipt Tue Sep 27 16:54:01 2022 +0000 164.2 +++ b/mhash-dev/receipt Wed Sep 28 08:10:35 2022 +0000 164.3 @@ -6,7 +6,7 @@ 164.4 SHORT_DESC="uniform interface to a large number of hash algorithms devel files." 164.5 MAINTAINER="pascal.bellard@slitaz.org" 164.6 LICENSE="GPL2" 164.7 -WEB_SITE="http://mhash.sourceforge.net/" 164.8 +WEB_SITE="https://mhash.sourceforge.net/" 164.9 WANTED="mhash" 164.10 164.11 # Rules to gen a SliTaz package suitable for Tazpkg.
165.1 --- a/mhash/receipt Tue Sep 27 16:54:01 2022 +0000 165.2 +++ b/mhash/receipt Wed Sep 28 08:10:35 2022 +0000 165.3 @@ -7,7 +7,7 @@ 165.4 MAINTAINER="pascal.bellard@slitaz.org" 165.5 LICENSE="GPL2" 165.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 165.7 -WEB_SITE="http://mhash.sourceforge.net/" 165.8 +WEB_SITE="https://mhash.sourceforge.net/" 165.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 165.10 165.11 # What is the latest version available today?
166.1 --- a/miau/receipt Tue Sep 27 16:54:01 2022 +0000 166.2 +++ b/miau/receipt Wed Sep 28 08:10:35 2022 +0000 166.3 @@ -6,7 +6,7 @@ 166.4 SHORT_DESC="Another IRC-bouncer/proxy." 166.5 MAINTAINER="christophe.paris@free.fr" 166.6 LICENSE="GPL2" 166.7 -WEB_SITE="http://miau.sourceforge.net/" 166.8 +WEB_SITE="https://miau.sourceforge.net/" 166.9 166.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 166.11 WGET_URL="http://downloads.sourceforge.net/miau/$TARBALL"
167.1 --- a/mirage/receipt Tue Sep 27 16:54:01 2022 +0000 167.2 +++ b/mirage/receipt Wed Sep 28 08:10:35 2022 +0000 167.3 @@ -7,7 +7,7 @@ 167.4 MAINTAINER="paul@slitaz.org" 167.5 LICENSE="GPL3" 167.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 167.7 -WEB_SITE="http://mirageiv.sourceforge.net/" 167.8 +WEB_SITE="https://mirageiv.sourceforge.net/" 167.9 WGET_URL="http://download.berlios.de/mirageiv/$TARBALL" 167.10 167.11 DEPENDS="python pygtk xorg-libX11 xorg-libXau xorg-libXdmcp libffi"
168.1 --- a/moonshiner/receipt Tue Sep 27 16:54:01 2022 +0000 168.2 +++ b/moonshiner/receipt Wed Sep 28 08:10:35 2022 +0000 168.3 @@ -7,7 +7,7 @@ 168.4 MAINTAINER="pankso@slitaz.org" 168.5 LICENSE="GPL3" 168.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 168.7 -WEB_SITE="http://moonshiner.sourceforge.net/" 168.8 +WEB_SITE="https://moonshiner.sourceforge.net/" 168.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 168.10 168.11 DEPENDS="python pygtk ghostscript"
169.1 --- a/mp3gain/receipt Tue Sep 27 16:54:01 2022 +0000 169.2 +++ b/mp3gain/receipt Wed Sep 28 08:10:35 2022 +0000 169.3 @@ -6,7 +6,7 @@ 169.4 SHORT_DESC="Analyzes and adjusts volume on mp3 files." 169.5 MAINTAINER="paul@slitaz.org" 169.6 LICENSE="LGPL2.1" 169.7 -WEB_SITE="http://mp3gain.sourceforge.net/" 169.8 +WEB_SITE="https://mp3gain.sourceforge.net/" 169.9 169.10 TARBALL="$PACKAGE-${VERSION//./_}-src.zip" 169.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
170.1 --- a/mp3val/receipt Tue Sep 27 16:54:01 2022 +0000 170.2 +++ b/mp3val/receipt Wed Sep 28 08:10:35 2022 +0000 170.3 @@ -6,7 +6,7 @@ 170.4 SHORT_DESC="MP3val is a small, high-speed, free software tool for checking MPEG audio files' integrity" 170.5 MAINTAINER="devl547@gmail.com" 170.6 LICENSE="GPL2" 170.7 -WEB_SITE="http://mp3val.sourceforge.net/" 170.8 +WEB_SITE="https://mp3val.sourceforge.net/" 170.9 TARBALL="$PACKAGE-$VERSION-src.tar.gz" 170.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 170.11
171.1 --- a/mplayerplug-in/receipt Tue Sep 27 16:54:01 2022 +0000 171.2 +++ b/mplayerplug-in/receipt Wed Sep 28 08:10:35 2022 +0000 171.3 @@ -7,7 +7,7 @@ 171.4 MAINTAINER="jozee@slitaz.org" 171.5 LICENSE="GPL" 171.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 171.7 -WEB_SITE="http://mplayerplug-in.sourceforge.net/" 171.8 +WEB_SITE="https://mplayerplug-in.sourceforge.net/" 171.9 WGET_URL="http://downloads.sourceforge.net/mplayerplug-in/$TARBALL" 171.10 TAGS="player audio video browser" 171.11
172.1 --- a/ms-sys/receipt Tue Sep 27 16:54:01 2022 +0000 172.2 +++ b/ms-sys/receipt Wed Sep 28 08:10:35 2022 +0000 172.3 @@ -6,7 +6,7 @@ 172.4 SHORT_DESC="Program for writing Microsoft compatible boot records." 172.5 MAINTAINER="pascal.bellard@slitaz.org" 172.6 LICENSE="GPL2" 172.7 -WEB_SITE="http://ms-sys.sourceforge.net/" 172.8 +WEB_SITE="https://ms-sys.sourceforge.net/" 172.9 172.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 172.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
173.1 --- a/mtop/receipt Tue Sep 27 16:54:01 2022 +0000 173.2 +++ b/mtop/receipt Wed Sep 28 08:10:35 2022 +0000 173.3 @@ -7,7 +7,7 @@ 173.4 MAINTAINER="pascal.bellard@slitaz.org" 173.5 LICENSE="GPL2" 173.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 173.7 -WEB_SITE="http://mtop.sourceforge.net/" 173.8 +WEB_SITE="https://mtop.sourceforge.net/" 173.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 173.10 173.11 DEPENDS="perl-curses perl-dbd-mysql"
174.1 --- a/mtpaint-lang/receipt Tue Sep 27 16:54:01 2022 +0000 174.2 +++ b/mtpaint-lang/receipt Wed Sep 28 08:10:35 2022 +0000 174.3 @@ -6,7 +6,7 @@ 174.4 SHORT_DESC="Painting program to create pixel art and manipulate digital photos - localised messages." 174.5 MAINTAINER="maintainer@slitaz.org" 174.6 LICENSE="GPL3" 174.7 -WEB_SITE="http://mtpaint.sourceforge.net/" 174.8 +WEB_SITE="https://mtpaint.sourceforge.net/" 174.9 174.10 WANTED="mtpaint" 174.11
175.1 --- a/mtpaint/receipt Tue Sep 27 16:54:01 2022 +0000 175.2 +++ b/mtpaint/receipt Wed Sep 28 08:10:35 2022 +0000 175.3 @@ -6,7 +6,7 @@ 175.4 SHORT_DESC="Painting program to create pixel art and manipulate digital photos." 175.5 MAINTAINER="pankso@slitaz.org" 175.6 LICENSE="GPL3" 175.7 -WEB_SITE="http://mtpaint.sourceforge.net/" 175.8 +WEB_SITE="https://mtpaint.sourceforge.net/" 175.9 175.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 175.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
176.1 --- a/muninlite/receipt Tue Sep 27 16:54:01 2022 +0000 176.2 +++ b/muninlite/receipt Wed Sep 28 08:10:35 2022 +0000 176.3 @@ -7,7 +7,7 @@ 176.4 MAINTAINER="pascal.bellard@slitaz.org" 176.5 LICENSE="GPL2" 176.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 176.7 -WEB_SITE="http://$PACKAGE.sourceforge.net/" 176.8 +WEB_SITE="https://$PACKAGE.sourceforge.net/" 176.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 176.10 176.11 BUILD_DEPENDS="perl"
177.1 --- a/n2nc/receipt Tue Sep 27 16:54:01 2022 +0000 177.2 +++ b/n2nc/receipt Wed Sep 28 08:10:35 2022 +0000 177.3 @@ -7,7 +7,7 @@ 177.4 MAINTAINER="pascal.bellard@slitaz.org" 177.5 LICENSE="GPL2" 177.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 177.7 -WEB_SITE="http://n2nc.sourceforge.net/" 177.8 +WEB_SITE="https://n2nc.sourceforge.net/" 177.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 177.10 177.11 DEPENDS="zlib libcrypto gcc-lib-base"
178.1 --- a/netatalk-dev/receipt Tue Sep 27 16:54:01 2022 +0000 178.2 +++ b/netatalk-dev/receipt Wed Sep 28 08:10:35 2022 +0000 178.3 @@ -6,7 +6,7 @@ 178.4 SHORT_DESC="The AppleTalk Protocol Suite development files." 178.5 MAINTAINER="pascal.bellard@slitaz.org" 178.6 LICENSE="GPL2" 178.7 -WEB_SITE="http://netatalk.sourceforge.net/" 178.8 +WEB_SITE="https://netatalk.sourceforge.net/" 178.9 WANTED="netatalk" 178.10 178.11 DEPENDS="netatalk"
179.1 --- a/netatalk-pam/receipt Tue Sep 27 16:54:01 2022 +0000 179.2 +++ b/netatalk-pam/receipt Wed Sep 28 08:10:35 2022 +0000 179.3 @@ -8,7 +8,7 @@ 179.4 LICENSE="GPL2" 179.5 SOURCE="netatalk" 179.6 TARBALL="$SOURCE-$VERSION.tar.bz2" 179.7 -WEB_SITE="http://netatalk.sourceforge.net/" 179.8 +WEB_SITE="https://netatalk.sourceforge.net/" 179.9 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" 179.10 CONFIG_FILES="/etc/netatalk/AppleVolumes.* /etc/netatalk/*.conf" 179.11 PROVIDE="netatalk:pam"
180.1 --- a/netatalk/receipt Tue Sep 27 16:54:01 2022 +0000 180.2 +++ b/netatalk/receipt Wed Sep 28 08:10:35 2022 +0000 180.3 @@ -7,7 +7,7 @@ 180.4 MAINTAINER="pascal.bellard@slitaz.org" 180.5 LICENSE="GPL2" 180.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 180.7 -WEB_SITE="http://netatalk.sourceforge.net/" 180.8 +WEB_SITE="https://netatalk.sourceforge.net/" 180.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 180.10 CONFIG_FILES="/etc/netatalk/AppleVolumes.* /etc/netatalk/*.conf" 180.11
181.1 --- a/netrik/receipt Tue Sep 27 16:54:01 2022 +0000 181.2 +++ b/netrik/receipt Wed Sep 28 08:10:35 2022 +0000 181.3 @@ -6,7 +6,7 @@ 181.4 SHORT_DESC="Advanced text-mode WWW browser, focusing on a convenient user interface" 181.5 MAINTAINER="al.bobylev@gmail.com" 181.6 LICENSE="GPL2" 181.7 -WEB_SITE="http://netrik.sourceforge.net/" 181.8 +WEB_SITE="https://netrik.sourceforge.net/" 181.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 181.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 181.11
182.1 --- a/ninvaders/receipt Tue Sep 27 16:54:01 2022 +0000 182.2 +++ b/ninvaders/receipt Wed Sep 28 08:10:35 2022 +0000 182.3 @@ -7,7 +7,7 @@ 182.4 SHORT_DESC="Space Invaders clone." 182.5 MAINTAINER="pankso@slitaz.org" 182.6 LICENSE="GPL2" 182.7 -WEB_SITE="http://ninvaders.sourceforge.net/" 182.8 +WEB_SITE="https://ninvaders.sourceforge.net/" 182.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 182.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 182.11 WGET_URL="https://github.com/sf-refugees/$PACKAGE/archive/refs/tags/v$VERSION.tar.gz"
183.1 --- a/nmon/receipt Tue Sep 27 16:54:01 2022 +0000 183.2 +++ b/nmon/receipt Wed Sep 28 08:10:35 2022 +0000 183.3 @@ -6,7 +6,7 @@ 183.4 SHORT_DESC="Nigel's performance Monitor." 183.5 MAINTAINER="meshca@clarkson.edu" 183.6 LICENSE="GPL3" 183.7 -WEB_SITE="http://nmon.sourceforge.net/" 183.8 +WEB_SITE="https://nmon.sourceforge.net/" 183.9 183.10 TARBALL="lmon$VERSION.c" 183.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
184.1 --- a/notecase-lang/receipt Tue Sep 27 16:54:01 2022 +0000 184.2 +++ b/notecase-lang/receipt Wed Sep 28 08:10:35 2022 +0000 184.3 @@ -6,7 +6,7 @@ 184.4 SHORT_DESC="A hierarchical text notes manager - localised messages." 184.5 MAINTAINER="maintainer@slitaz.org" 184.6 LICENSE="BSD" 184.7 -WEB_SITE="http://notecase.sourceforge.net/" 184.8 +WEB_SITE="https://notecase.sourceforge.net/" 184.9 184.10 WANTED="notecase" 184.11
185.1 --- a/notecase/receipt Tue Sep 27 16:54:01 2022 +0000 185.2 +++ b/notecase/receipt Wed Sep 28 08:10:35 2022 +0000 185.3 @@ -7,7 +7,7 @@ 185.4 MAINTAINER="cooltaz@fastmail.fm" 185.5 LICENSE="BSD" 185.6 TARBALL="$PACKAGE-${VERSION}_src.tar.gz" 185.7 -WEB_SITE="http://notecase.sourceforge.net/" 185.8 +WEB_SITE="https://notecase.sourceforge.net/" 185.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 185.10 TAGS="office notes" 185.11
186.1 --- a/ntlmaps/receipt Tue Sep 27 16:54:01 2022 +0000 186.2 +++ b/ntlmaps/receipt Wed Sep 28 08:10:35 2022 +0000 186.3 @@ -7,7 +7,7 @@ 186.4 MAINTAINER="pascal.bellard@slitaz.org" 186.5 LICENSE="GPL2" 186.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 186.7 -WEB_SITE="http://ntlmaps.sourceforge.net/" 186.8 +WEB_SITE="https://ntlmaps.sourceforge.net/" 186.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 186.10 CONFIG_FILES="/etc/ntlmaps.conf" 186.11 TAGS="proxy server"
187.1 --- a/ogmrip/receipt Tue Sep 27 16:54:01 2022 +0000 187.2 +++ b/ogmrip/receipt Wed Sep 28 08:10:35 2022 +0000 187.3 @@ -6,7 +6,7 @@ 187.4 SHORT_DESC="Libraries and GTK2 interface for DVD ripping using mencoder." 187.5 MAINTAINER="fredericguilbault@live.ca" 187.6 LICENSE="LGPL2.1" 187.7 -WEB_SITE="http://ogmrip.sourceforge.net/" 187.8 +WEB_SITE="https://ogmrip.sourceforge.net/" 187.9 187.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 187.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
188.1 --- a/optipng/receipt Tue Sep 27 16:54:01 2022 +0000 188.2 +++ b/optipng/receipt Wed Sep 28 08:10:35 2022 +0000 188.3 @@ -7,7 +7,7 @@ 188.4 SHORT_DESC="A command line tool to compress and optimize PNG images." 188.5 MAINTAINER="pankso@slitaz.org" 188.6 LICENSE="zlib/libpng" 188.7 -WEB_SITE="http://optipng.sourceforge.net/" 188.8 +WEB_SITE="https://optipng.sourceforge.net/" 188.9 188.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 188.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
189.1 --- a/oxine/receipt Tue Sep 27 16:54:01 2022 +0000 189.2 +++ b/oxine/receipt Wed Sep 28 08:10:35 2022 +0000 189.3 @@ -7,7 +7,7 @@ 189.4 MAINTAINER="devl547@gmail.com" 189.5 LICENSE="GPL2" 189.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 189.7 -WEB_SITE="http://oxine.sourceforge.net/" 189.8 +WEB_SITE="https://oxine.sourceforge.net/" 189.9 WGET_URL="http://downloads.sourceforge.net/project/$PACKAGE/$PACKAGE/$VERSION/$TARBALL" 189.10 BUILD_DEPENDS="libcdio-dev xine-lib-dev curl-dev" 189.11 DEPENDS="libcdio xine-lib curl"
190.1 --- a/p7zip-full/receipt Tue Sep 27 16:54:01 2022 +0000 190.2 +++ b/p7zip-full/receipt Wed Sep 28 08:10:35 2022 +0000 190.3 @@ -8,7 +8,7 @@ 190.4 MAINTAINER="milka@konstelacioj.info" 190.5 LICENSE="LGPL2.1" 190.6 TARBALL="${SOURCE}_${VERSION}_src_all.tar.bz2" 190.7 -WEB_SITE="http://p7zip.sourceforge.net/" 190.8 +WEB_SITE="https://p7zip.sourceforge.net/" 190.9 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" 190.10 190.11 current_version()
191.1 --- a/p7zip/receipt Tue Sep 27 16:54:01 2022 +0000 191.2 +++ b/p7zip/receipt Wed Sep 28 08:10:35 2022 +0000 191.3 @@ -7,7 +7,7 @@ 191.4 MAINTAINER="milka@konstelacioj.info" 191.5 LICENSE="LGPL2.1" 191.6 TARBALL="${PACKAGE}_${VERSION}_src_all.tar.bz2" 191.7 -WEB_SITE="http://p7zip.sourceforge.net/" 191.8 +WEB_SITE="https://p7zip.sourceforge.net/" 191.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 191.10 191.11 current_version()
192.1 --- a/pam_mount/receipt Tue Sep 27 16:54:01 2022 +0000 192.2 +++ b/pam_mount/receipt Wed Sep 28 08:10:35 2022 +0000 192.3 @@ -7,7 +7,7 @@ 192.4 MAINTAINER="pascal.bellard@slitaz.org" 192.5 LICENSE="GPL2 LGPL" 192.6 TARBALL="$PACKAGE-$VERSION.tar.xz" 192.7 -WEB_SITE="http://pam-mount.sourceforge.net/" 192.8 +WEB_SITE="https://pam-mount.sourceforge.net/" 192.9 WGET_URL="$SF_MIRROR/pam-mount/$TARBALL" 192.10 192.11 BUILD_DEPENDS="pam-dev libhx libhx-dev libcrypto-dev openssl-dev libxml2-dev \
193.1 --- a/pam_ssh/receipt Tue Sep 27 16:54:01 2022 +0000 193.2 +++ b/pam_ssh/receipt Wed Sep 28 08:10:35 2022 +0000 193.3 @@ -7,7 +7,7 @@ 193.4 MAINTAINER="pascal.bellard@slitaz.org" 193.5 LICENSE="BSD" 193.6 TARBALL="$PACKAGE-$VERSION.tar.xz" 193.7 -WEB_SITE="http://pam-ssh.sourceforge.net/" 193.8 +WEB_SITE="https://pam-ssh.sourceforge.net/" 193.9 WGET_URL="$SF_MIRROR/pam-ssh/$TARBALL" 193.10 TAGS="ssh" 193.11
194.1 --- a/pamtester/receipt Tue Sep 27 16:54:01 2022 +0000 194.2 +++ b/pamtester/receipt Wed Sep 28 08:10:35 2022 +0000 194.3 @@ -7,7 +7,7 @@ 194.4 MAINTAINER="pascal.bellard@slitaz.org" 194.5 LICENSE="BSD" 194.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 194.7 -WEB_SITE="http://$PACKAGE.sourceforge.net/" 194.8 +WEB_SITE="https://$PACKAGE.sourceforge.net/" 194.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 194.10 194.11 DEPENDS="pam"
195.1 --- a/parcellite/receipt Tue Sep 27 16:54:01 2022 +0000 195.2 +++ b/parcellite/receipt Wed Sep 28 08:10:35 2022 +0000 195.3 @@ -6,7 +6,7 @@ 195.4 SHORT_DESC="Lightweight GTK+ clipboard manager." 195.5 MAINTAINER="pankso@slitaz.org" 195.6 LICENSE="GPL3" 195.7 -WEB_SITE="http://parcellite.sourceforge.net/" 195.8 +WEB_SITE="https://parcellite.sourceforge.net/" 195.9 195.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 195.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
196.1 --- a/phpeasyvcs/receipt Tue Sep 27 16:54:01 2022 +0000 196.2 +++ b/phpeasyvcs/receipt Wed Sep 28 08:10:35 2022 +0000 196.3 @@ -7,7 +7,7 @@ 196.4 SHORT_DESC="A simple version control system (VCS) and WebDAV server." 196.5 MAINTAINER="pascal.bellard@slitaz.org" 196.6 LICENSE="GPL3" 196.7 -WEB_SITE="http://phpeasyvcs.sourceforge.net/" 196.8 +WEB_SITE="https://phpeasyvcs.sourceforge.net/" 196.9 196.10 TARBALL="$SOURCE-$VERSION.zip" 196.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
197.1 --- a/phpqrcode/receipt Tue Sep 27 16:54:01 2022 +0000 197.2 +++ b/phpqrcode/receipt Wed Sep 28 08:10:35 2022 +0000 197.3 @@ -7,7 +7,7 @@ 197.4 MAINTAINER="pascal.bellard@slitaz.org" 197.5 LICENSE="GPL3" 197.6 TARBALL="$PACKAGE-2010100721_$VERSION.zip" 197.7 -WEB_SITE="http://phpqrcode.sourceforge.net/" 197.8 +WEB_SITE="https://phpqrcode.sourceforge.net/" 197.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 197.10 HOST_ARCH="any" 197.11
198.1 --- a/pidgin-libnotify/receipt Tue Sep 27 16:54:01 2022 +0000 198.2 +++ b/pidgin-libnotify/receipt Wed Sep 28 08:10:35 2022 +0000 198.3 @@ -7,7 +7,7 @@ 198.4 MAINTAINER="erjo@slitaz.org" 198.5 LICENSE="GPL3" 198.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 198.7 -WEB_SITE="http://gaim-libnotify.sourceforge.net/" 198.8 +WEB_SITE="https://gaim-libnotify.sourceforge.net/" 198.9 WGET_URL="http://downloads.sourceforge.net/project/gaim-libnotify/$PACKAGE/$PACKAGE-$VERSION/$TARBALL" 198.10 198.11 DEPENDS="pidgin libnotify"
199.1 --- a/plotdrop/receipt Tue Sep 27 16:54:01 2022 +0000 199.2 +++ b/plotdrop/receipt Wed Sep 28 08:10:35 2022 +0000 199.3 @@ -6,7 +6,7 @@ 199.4 SHORT_DESC="A minimal GTK frontend to GNUPlot." 199.5 MAINTAINER="pankso@slitaz.org" 199.6 LICENSE="GPL2" 199.7 -WEB_SITE="http://plotdrop.sourceforge.net/" 199.8 +WEB_SITE="https://plotdrop.sourceforge.net/" 199.9 199.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 199.11 WGET_URL="$SF_MIRROR/project/$PACKAGE/$TARBALL"
200.1 --- a/ploticus/receipt Tue Sep 27 16:54:01 2022 +0000 200.2 +++ b/ploticus/receipt Wed Sep 28 08:10:35 2022 +0000 200.3 @@ -6,7 +6,7 @@ 200.4 SHORT_DESC="Data display engine." 200.5 MAINTAINER="pascal.bellard@slitaz.org" 200.6 LICENSE="GPL" 200.7 -WEB_SITE="http://ploticus.sourceforge.net/" 200.8 +WEB_SITE="https://ploticus.sourceforge.net/" 200.9 200.10 #SOURCE="pl240src" 200.11 TARBALL="${PACKAGE}${VERSION/./}_src.tar.gz"
201.1 --- a/pnm2ppa/receipt Tue Sep 27 16:54:01 2022 +0000 201.2 +++ b/pnm2ppa/receipt Wed Sep 28 08:10:35 2022 +0000 201.3 @@ -6,7 +6,7 @@ 201.4 SHORT_DESC="Ghostscript print filter and color driver for some HP DeskJet printers." 201.5 MAINTAINER="jozee@slitaz.org" 201.6 LICENSE="GPL2" 201.7 -WEB_SITE="http://pnm2ppa.sourceforge.net/" 201.8 +WEB_SITE="https://pnm2ppa.sourceforge.net/" 201.9 201.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 201.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
202.1 --- a/poptop/receipt Tue Sep 27 16:54:01 2022 +0000 202.2 +++ b/poptop/receipt Wed Sep 28 08:10:35 2022 +0000 202.3 @@ -7,7 +7,7 @@ 202.4 SHORT_DESC="Microsoft Point-to-Point Tunneling Protocol server." 202.5 MAINTAINER="pascal.bellard@slitaz.org" 202.6 LICENSE="GPL2" 202.7 -WEB_SITE="http://poptop.sourceforge.net/" 202.8 +WEB_SITE="https://poptop.sourceforge.net/" 202.9 202.10 SOURCE="pptpd" 202.11 TARBALL="$SOURCE-$VERSION.tar.gz"
203.1 --- a/portsentry/receipt Tue Sep 27 16:54:01 2022 +0000 203.2 +++ b/portsentry/receipt Wed Sep 28 08:10:35 2022 +0000 203.3 @@ -7,7 +7,7 @@ 203.4 MAINTAINER="pascal.bellard@slitaz.org" 203.5 TARBALL="$PACKAGE-$VERSION.tar.gz" 203.6 LICENSE="CCPL" 203.7 -WEB_SITE="http://sentrytools.sourceforge.net/" 203.8 +WEB_SITE="https://sentrytools.sourceforge.net/" 203.9 WGET_URL="$SF_MIRROR/sentrytools/$TARBALL" 203.10 203.11 DEPENDS=""
204.1 --- a/pptpclient-extra/receipt Tue Sep 27 16:54:01 2022 +0000 204.2 +++ b/pptpclient-extra/receipt Wed Sep 28 08:10:35 2022 +0000 204.3 @@ -6,7 +6,7 @@ 204.4 SHORT_DESC="PPTP client configuration helper." 204.5 MAINTAINER="pascal.bellard@slitaz.org" 204.6 LICENSE="GPL2" 204.7 -WEB_SITE="http://pptpclient.sourceforge.net/" 204.8 +WEB_SITE="https://pptpclient.sourceforge.net/" 204.9 204.10 SOURCE="pptp" 204.11
205.1 --- a/pptpclient/receipt Tue Sep 27 16:54:01 2022 +0000 205.2 +++ b/pptpclient/receipt Wed Sep 28 08:10:35 2022 +0000 205.3 @@ -7,7 +7,7 @@ 205.4 SHORT_DESC="Microsoft Point-to-Point Tunneling Protocol client." 205.5 MAINTAINER="pascal.bellard@slitaz.org" 205.6 LICENSE="GPL2" 205.7 -WEB_SITE="http://pptpclient.sourceforge.net/" 205.8 +WEB_SITE="https://pptpclient.sourceforge.net/" 205.9 205.10 SOURCE="pptp" 205.11 TARBALL="$SOURCE-$VERSION.tar.gz"
206.1 --- a/prboom/receipt Tue Sep 27 16:54:01 2022 +0000 206.2 +++ b/prboom/receipt Wed Sep 28 08:10:35 2022 +0000 206.3 @@ -8,7 +8,7 @@ 206.4 LICENSE="GPL2" 206.5 SUGGESTED="nvidia" 206.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 206.7 -WEB_SITE="http://prboom.sourceforge.net/" 206.8 +WEB_SITE="https://prboom.sourceforge.net/" 206.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 206.10 206.11 DEPENDS="libsdl libsdl-mixer libsdl-net libpng mesa libglu-mesa freedoom"
207.1 --- a/procps/receipt Tue Sep 27 16:54:01 2022 +0000 207.2 +++ b/procps/receipt Wed Sep 28 08:10:35 2022 +0000 207.3 @@ -6,7 +6,7 @@ 207.4 SHORT_DESC="The proc filesystem utilities." 207.5 MAINTAINER="paul@slitaz.org" 207.6 LICENSE="GPL2" 207.7 -WEB_SITE="http://procps.sourceforge.net/" 207.8 +WEB_SITE="https://procps.sourceforge.net/" 207.9 207.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 207.11 WGET_URL="http://procps.sourceforge.net/$TARBALL"
208.1 --- a/psyco/receipt Tue Sep 27 16:54:01 2022 +0000 208.2 +++ b/psyco/receipt Wed Sep 28 08:10:35 2022 +0000 208.3 @@ -7,7 +7,7 @@ 208.4 MAINTAINER="pankso@slitaz.org" 208.5 LICENSE="MIT" 208.6 TARBALL="$PACKAGE-$VERSION-src.tar.gz" 208.7 -WEB_SITE="http://psyco.sourceforge.net/" 208.8 +WEB_SITE="https://psyco.sourceforge.net/" 208.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 208.10 208.11 DEPENDS="python"
209.1 --- a/pysdm/receipt Tue Sep 27 16:54:01 2022 +0000 209.2 +++ b/pysdm/receipt Wed Sep 28 08:10:35 2022 +0000 209.3 @@ -7,7 +7,7 @@ 209.4 MAINTAINER="pascal.bellard@slitaz.org" 209.5 LICENSE="GPL2" 209.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 209.7 -WEB_SITE="http://pysdm.sourceforge.net/" 209.8 +WEB_SITE="https://pysdm.sourceforge.net/" 209.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 209.10 209.11 DEPENDS="pygtk"
210.1 --- a/python-pyxml/receipt Tue Sep 27 16:54:01 2022 +0000 210.2 +++ b/python-pyxml/receipt Wed Sep 28 08:10:35 2022 +0000 210.3 @@ -8,7 +8,7 @@ 210.4 LICENSE="BSD" 210.5 SOURCE="PyXML" 210.6 TARBALL="$SOURCE-$VERSION.tar.gz" 210.7 -WEB_SITE="http://pyxml.sourceforge.net/" 210.8 +WEB_SITE="https://pyxml.sourceforge.net/" 210.9 WGET_URL="$SF_MIRROR/pyxml/$TARBALL" 210.10 210.11 DEPENDS="python"
211.1 --- a/python-xlib/receipt Tue Sep 27 16:54:01 2022 +0000 211.2 +++ b/python-xlib/receipt Wed Sep 28 08:10:35 2022 +0000 211.3 @@ -7,7 +7,7 @@ 211.4 MAINTAINER="pascal.bellard@slitaz.org" 211.5 LICENSE="GPL" 211.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 211.7 -WEB_SITE="http://$PACKAGE.sourceforge.net/" 211.8 +WEB_SITE="https://$PACKAGE.sourceforge.net/" 211.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 211.10 211.11 DEPENDS="python"
212.1 --- a/quesoglc-dev/receipt Tue Sep 27 16:54:01 2022 +0000 212.2 +++ b/quesoglc-dev/receipt Wed Sep 28 08:10:35 2022 +0000 212.3 @@ -6,7 +6,7 @@ 212.4 SHORT_DESC="devel files for quesoglc" 212.5 MAINTAINER="slaxemulator@gmail.com" 212.6 LICENSE="LGPL2.1" 212.7 -WEB_SITE="http://quesoglc.sourceforge.net/" 212.8 +WEB_SITE="https://quesoglc.sourceforge.net/" 212.9 WANTED="quesoglc" 212.10 212.11 DEPENDS="quesoglc pkg-config"
213.1 --- a/quesoglc/receipt Tue Sep 27 16:54:01 2022 +0000 213.2 +++ b/quesoglc/receipt Wed Sep 28 08:10:35 2022 +0000 213.3 @@ -7,7 +7,7 @@ 213.4 MAINTAINER="slaxemulator@gmail.com" 213.5 LICENSE="LGPL2.1" 213.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 213.7 -WEB_SITE="http://quesoglc.sourceforge.net/" 213.8 +WEB_SITE="https://quesoglc.sourceforge.net/" 213.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 213.10 213.11 DEPENDS="freetype fontconfig freeglut fribidi mesa libglu-mesa expat \
214.1 --- a/radiotray/receipt Tue Sep 27 16:54:01 2022 +0000 214.2 +++ b/radiotray/receipt Wed Sep 28 08:10:35 2022 +0000 214.3 @@ -6,7 +6,7 @@ 214.4 SHORT_DESC="Online radio streaming player that runs on system tray." 214.5 MAINTAINER="pankso@slitaz.org" 214.6 LICENSE="GPL" 214.7 -WEB_SITE="http://radiotray.sourceforge.net/" 214.8 +WEB_SITE="https://radiotray.sourceforge.net/" 214.9 214.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 214.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
215.1 --- a/remmina-dev/receipt Tue Sep 27 16:54:01 2022 +0000 215.2 +++ b/remmina-dev/receipt Wed Sep 28 08:10:35 2022 +0000 215.3 @@ -7,7 +7,7 @@ 215.4 SHORT_DESC="remmina development files" 215.5 MAINTAINER="pascal.bellard@slitaz.org" 215.6 LICENSE="GPL" 215.7 -WEB_SITE="http://remmina.sourceforge.net/" 215.8 +WEB_SITE="https://remmina.sourceforge.net/" 215.9 WANTED="remmina" 215.10 215.11
216.1 --- a/retawq/receipt Tue Sep 27 16:54:01 2022 +0000 216.2 +++ b/retawq/receipt Wed Sep 28 08:10:35 2022 +0000 216.3 @@ -6,7 +6,7 @@ 216.4 SHORT_DESC="Multi-threaded web browser for text terminals" 216.5 MAINTAINER="pankso@slitaz.org" 216.6 LICENSE="GPL2" 216.7 -WEB_SITE="http://retawq.sourceforge.net/" 216.8 +WEB_SITE="https://retawq.sourceforge.net/" 216.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 216.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 216.11 TAGS="web-browser"
217.1 --- a/rhapsody/receipt Tue Sep 27 16:54:01 2022 +0000 217.2 +++ b/rhapsody/receipt Wed Sep 28 08:10:35 2022 +0000 217.3 @@ -7,7 +7,7 @@ 217.4 MAINTAINER="pankso@slitaz.org" 217.5 LICENSE="GPL2" 217.6 TARBALL="${PACKAGE}_${VERSION}.tgz" 217.7 -WEB_SITE="http://rhapsody.sourceforge.net/" 217.8 +WEB_SITE="https://rhapsody.sourceforge.net/" 217.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 217.10 TAGS="irc" 217.11
218.1 --- a/rkhunter/receipt Tue Sep 27 16:54:01 2022 +0000 218.2 +++ b/rkhunter/receipt Wed Sep 28 08:10:35 2022 +0000 218.3 @@ -6,7 +6,7 @@ 218.4 SHORT_DESC="Rootkit scanner." 218.5 MAINTAINER="pascal.bellard@slitaz.org" 218.6 LICENSE="GPL2" 218.7 -WEB_SITE="http://rkhunter.sourceforge.net/" 218.8 +WEB_SITE="https://rkhunter.sourceforge.net/" 218.9 218.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 218.11 WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
219.1 --- a/rp-l2tp/receipt Tue Sep 27 16:54:01 2022 +0000 219.2 +++ b/rp-l2tp/receipt Wed Sep 28 08:10:35 2022 +0000 219.3 @@ -7,7 +7,7 @@ 219.4 MAINTAINER="pascal.bellard@slitaz.org" 219.5 LICENSE="GPL2" 219.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 219.7 -WEB_SITE="http://rp-l2tp.sourceforge.net/" 219.8 +WEB_SITE="https://rp-l2tp.sourceforge.net/" 219.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 219.10 TAGS="vpn tunnel" 219.11 CONFIG_FILES="/etc/l2tp"
220.1 --- a/safecopy/receipt Tue Sep 27 16:54:01 2022 +0000 220.2 +++ b/safecopy/receipt Wed Sep 28 08:10:35 2022 +0000 220.3 @@ -7,7 +7,7 @@ 220.4 MAINTAINER="slaxemulator@gmail.com" 220.5 LICENSE="GPL2" 220.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 220.7 -WEB_SITE="http://safecopy.sourceforge.net/" 220.8 +WEB_SITE="https://safecopy.sourceforge.net/" 220.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 220.10 220.11 DEPENDS=""
221.1 --- a/sctp-tools/receipt Tue Sep 27 16:54:01 2022 +0000 221.2 +++ b/sctp-tools/receipt Wed Sep 28 08:10:35 2022 +0000 221.3 @@ -6,7 +6,7 @@ 221.4 SHORT_DESC="Stream Control Transmission Protocol tools." 221.5 MAINTAINER="pascal.bellard@slitaz.org" 221.6 LICENSE="GPL2 LGPL2.1" 221.7 -WEB_SITE="http://lksctp.sourceforge.net/" 221.8 +WEB_SITE="https://lksctp.sourceforge.net/" 221.9 221.10 SOURCE="lksctp-tools" 221.11 TARBALL="$SOURCE-$VERSION.tar.gz"
222.1 --- a/sdcc/receipt Tue Sep 27 16:54:01 2022 +0000 222.2 +++ b/sdcc/receipt Wed Sep 28 08:10:35 2022 +0000 222.3 @@ -7,7 +7,7 @@ 222.4 SHORT_DESC="Retargettable C compiler for 8051, Z80 and 68HC08." 222.5 MAINTAINER="pascal.bellard@slitaz.org" 222.6 LICENSE="GPL2" 222.7 -WEB_SITE="http://sdcc.sourceforge.net/" 222.8 +WEB_SITE="https://sdcc.sourceforge.net/" 222.9 222.10 TARBALL="$PACKAGE-src-$VERSION.tar.bz2" 222.11 WGET_URL="$SF_MIRROR/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
223.1 --- a/setserial/receipt Tue Sep 27 16:54:01 2022 +0000 223.2 +++ b/setserial/receipt Wed Sep 28 08:10:35 2022 +0000 223.3 @@ -7,7 +7,7 @@ 223.4 MAINTAINER="pascal.bellard@slitaz.org" 223.5 LICENSE="GPL" 223.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 223.7 -WEB_SITE="http://setserial.sourceforge.net/" 223.8 +WEB_SITE="https://setserial.sourceforge.net/" 223.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 223.10 HOST_ARCH="i486 arm" 223.11
224.1 --- a/shared-desktop-ontologies/receipt Tue Sep 27 16:54:01 2022 +0000 224.2 +++ b/shared-desktop-ontologies/receipt Wed Sep 28 08:10:35 2022 +0000 224.3 @@ -7,7 +7,7 @@ 224.4 MAINTAINER="pankso@slitaz.org" 224.5 LICENSE="LGPL2.1" 224.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 224.7 -WEB_SITE="http://oscaf.sourceforge.net/" 224.8 +WEB_SITE="https://oscaf.sourceforge.net/" 224.9 WGET_URL="$SF_MIRROR/oscaf/$TARBALL" 224.10 224.11 DEPENDS=""
225.1 --- a/siproxd/receipt Tue Sep 27 16:54:01 2022 +0000 225.2 +++ b/siproxd/receipt Wed Sep 28 08:10:35 2022 +0000 225.3 @@ -6,7 +6,7 @@ 225.4 SHORT_DESC="A masquerading SIP Proxy Server." 225.5 MAINTAINER="pascal.bellard@slitaz.org" 225.6 LICENSE="GPL2" 225.7 -WEB_SITE="http://siproxd.sourceforge.net/" 225.8 +WEB_SITE="https://siproxd.sourceforge.net/" 225.9 225.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 225.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
226.1 --- a/slsnif/receipt Tue Sep 27 16:54:01 2022 +0000 226.2 +++ b/slsnif/receipt Wed Sep 28 08:10:35 2022 +0000 226.3 @@ -7,7 +7,7 @@ 226.4 MAINTAINER="pascal.bellard@slitaz.org" 226.5 LICENSE="GPL2" 226.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 226.7 -WEB_SITE="http://slsnif.sourceforge.net/" 226.8 +WEB_SITE="https://slsnif.sourceforge.net/" 226.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 226.10 226.11 # What is the latest version available today?
227.1 --- a/softgun/receipt Tue Sep 27 16:54:01 2022 +0000 227.2 +++ b/softgun/receipt Wed Sep 28 08:10:35 2022 +0000 227.3 @@ -7,7 +7,7 @@ 227.4 MAINTAINER="pankso@slitaz.org" 227.5 LICENSE="BSD" 227.6 TARBALL="$PACKAGE-$VERSION.tgz" 227.7 -WEB_SITE="http://softgun.sourceforge.net/" 227.8 +WEB_SITE="https://softgun.sourceforge.net/" 227.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 227.10 TAGS="emulator arm" 227.11
228.1 --- a/soprano-dev/receipt Tue Sep 27 16:54:01 2022 +0000 228.2 +++ b/soprano-dev/receipt Wed Sep 28 08:10:35 2022 +0000 228.3 @@ -6,7 +6,7 @@ 228.4 SHORT_DESC="Soprano - development files." 228.5 MAINTAINER="pankso@slitaz.org" 228.6 LICENSE="GPL2" 228.7 -WEB_SITE="http://soprano.sourceforge.net/" 228.8 +WEB_SITE="https://soprano.sourceforge.net/" 228.9 228.10 DEPENDS="pkg-config" 228.11 WANTED="soprano"
229.1 --- a/soprano/receipt Tue Sep 27 16:54:01 2022 +0000 229.2 +++ b/soprano/receipt Wed Sep 28 08:10:35 2022 +0000 229.3 @@ -6,7 +6,7 @@ 229.4 SHORT_DESC="Soprano is the Qt/C++ RDF framework." 229.5 MAINTAINER="pankso@slitaz.org" 229.6 LICENSE="GPL2" 229.7 -WEB_SITE="http://soprano.sourceforge.net/" 229.8 +WEB_SITE="https://soprano.sourceforge.net/" 229.9 229.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 229.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
230.1 --- a/sox-dev/receipt Tue Sep 27 16:54:01 2022 +0000 230.2 +++ b/sox-dev/receipt Wed Sep 28 08:10:35 2022 +0000 230.3 @@ -6,7 +6,7 @@ 230.4 SHORT_DESC="Swiss Army knife of sound processing programs - development files." 230.5 MAINTAINER="pascal.bellard@slitaz.org" 230.6 LICENSE="GPL LGPL" 230.7 -WEB_SITE="http://sox.sourceforge.net/" 230.8 +WEB_SITE="https://sox.sourceforge.net/" 230.9 230.10 WANTED="sox" 230.11
231.1 --- a/sox/receipt Tue Sep 27 16:54:01 2022 +0000 231.2 +++ b/sox/receipt Wed Sep 28 08:10:35 2022 +0000 231.3 @@ -6,7 +6,7 @@ 231.4 SHORT_DESC="Swiss Army knife of sound processing programs." 231.5 MAINTAINER="pascal.bellard@slitaz.org" 231.6 LICENSE="GPL LGPL" 231.7 -WEB_SITE="http://sox.sourceforge.net/" 231.8 +WEB_SITE="https://sox.sourceforge.net/" 231.9 231.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 231.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
232.1 --- a/speedtouch/receipt Tue Sep 27 16:54:01 2022 +0000 232.2 +++ b/speedtouch/receipt Wed Sep 28 08:10:35 2022 +0000 232.3 @@ -6,7 +6,7 @@ 232.4 MAINTAINER="jozee@slitaz.org" 232.5 LICENSE="GPL2" 232.6 SHORT_DESC="Driver for the ADSL Speed Touch USB modem" 232.7 -WEB_SITE="http://speedtouch.sourceforge.net/" 232.8 +WEB_SITE="https://speedtouch.sourceforge.net/" 232.9 DEPENDS="bash" 232.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 232.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
233.1 --- a/stardict/receipt Tue Sep 27 16:54:01 2022 +0000 233.2 +++ b/stardict/receipt Wed Sep 28 08:10:35 2022 +0000 233.3 @@ -6,7 +6,7 @@ 233.4 SHORT_DESC="A powerful international dictionary written in Gtk2." 233.5 MAINTAINER="lufeng369@slitaz.org" 233.6 LICENSE="GPL3" 233.7 -WEB_SITE="http://stardict-4.sourceforge.net/" 233.8 +WEB_SITE="https://stardict-4.sourceforge.net/" 233.9 233.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 233.11 WGET_URL="https://downloads.sourceforge.net/stardict-4/$TARBALL"
234.1 --- a/streamripper/receipt Tue Sep 27 16:54:01 2022 +0000 234.2 +++ b/streamripper/receipt Wed Sep 28 08:10:35 2022 +0000 234.3 @@ -7,7 +7,7 @@ 234.4 MAINTAINER="pankso@slitaz.org" 234.5 LICENSE="GPL2" 234.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 234.7 -WEB_SITE="http://streamripper.sourceforge.net/" 234.8 +WEB_SITE="https://streamripper.sourceforge.net/" 234.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 234.10 234.11 DEPENDS="gtk+ libmad libvorbis faad2 glibc-base"
235.1 --- a/sz81/receipt Tue Sep 27 16:54:01 2022 +0000 235.2 +++ b/sz81/receipt Wed Sep 28 08:10:35 2022 +0000 235.3 @@ -6,7 +6,7 @@ 235.4 SHORT_DESC="zx81 emulator/virtual machine.." 235.5 MAINTAINER="pascal.bellard@slitaz.org" 235.6 LICENSE="GPL2" 235.7 -WEB_SITE="http://sz81.sourceforge.net/" 235.8 +WEB_SITE="https://sz81.sourceforge.net/" 235.9 TARBALL="$PACKAGE-$VERSION-source.tar.gz" 235.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 235.11 TAGS="emulator zx81"
236.1 --- a/tcl2c/receipt Tue Sep 27 16:54:01 2022 +0000 236.2 +++ b/tcl2c/receipt Wed Sep 28 08:10:35 2022 +0000 236.3 @@ -6,7 +6,7 @@ 236.4 SHORT_DESC="Create a C file from Tcl file for C compiler" 236.5 MAINTAINER="al.bobylev@gmail.com" 236.6 LICENSE="GPL2" 236.7 -WEB_SITE="http://tcl2c.sourceforge.net/" 236.8 +WEB_SITE="https://tcl2c.sourceforge.net/" 236.9 236.10 TARBALL="$PACKAGE.$VERSION.zip" 236.11 WGET_URL="$SF_MIRROR/tcl2c/$TARBALL"
237.1 --- a/tcpick/receipt Tue Sep 27 16:54:01 2022 +0000 237.2 +++ b/tcpick/receipt Wed Sep 28 08:10:35 2022 +0000 237.3 @@ -7,7 +7,7 @@ 237.4 MAINTAINER="slaxemulator@gmail.com" 237.5 LICENSE="GPL2" 237.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 237.7 -WEB_SITE="http://tcpick.sourceforge.net/" 237.8 +WEB_SITE="https://tcpick.sourceforge.net/" 237.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 237.10 237.11 DEPENDS="libpcap"
238.1 --- a/terminus-font-base/receipt Tue Sep 27 16:54:01 2022 +0000 238.2 +++ b/terminus-font-base/receipt Wed Sep 28 08:10:35 2022 +0000 238.3 @@ -6,7 +6,7 @@ 238.4 SHORT_DESC="8x14 Unicode console font" 238.5 MAINTAINER="al.bobylev@gmail.com" 238.6 LICENSE="OFL" 238.7 -WEB_SITE="http://terminus-font.sourceforge.net/" 238.8 +WEB_SITE="https://terminus-font.sourceforge.net/" 238.9 SOURCE="terminus-font" 238.10 TARBALL="$SOURCE-$VERSION.tar.gz" 238.11 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
239.1 --- a/terminus-font/receipt Tue Sep 27 16:54:01 2022 +0000 239.2 +++ b/terminus-font/receipt Wed Sep 28 08:10:35 2022 +0000 239.3 @@ -6,7 +6,7 @@ 239.4 SHORT_DESC="Monospaced font designed for long (8+ hours per day) work with computers." 239.5 MAINTAINER="al.bobylev@gmail.com" 239.6 LICENSE="OFL" 239.7 -WEB_SITE="http://terminus-font.sourceforge.net/" 239.8 +WEB_SITE="https://terminus-font.sourceforge.net/" 239.9 WANTED="terminus-font-base" 239.10 239.11 DEPENDS="terminus-font-base"
240.1 --- a/tidy-dev/receipt Tue Sep 27 16:54:01 2022 +0000 240.2 +++ b/tidy-dev/receipt Wed Sep 28 08:10:35 2022 +0000 240.3 @@ -6,7 +6,7 @@ 240.4 SHORT_DESC="Development files for HTML Tidy" 240.5 MAINTAINER="al.bobylev@gmail.com" 240.6 LICENSE="MIT" 240.7 -WEB_SITE="http://tidy.sourceforge.net/" 240.8 +WEB_SITE="https://tidy.sourceforge.net/" 240.9 240.10 DEPENDS="tidy" 240.11 WANTED="tidy"
241.1 --- a/tidy/receipt Tue Sep 27 16:54:01 2022 +0000 241.2 +++ b/tidy/receipt Wed Sep 28 08:10:35 2022 +0000 241.3 @@ -6,7 +6,7 @@ 241.4 SHORT_DESC="HTML Tidy" 241.5 MAINTAINER="al.bobylev@gmail.com" 241.6 LICENSE="MIT" 241.7 -WEB_SITE="http://tidy.sourceforge.net/" 241.8 +WEB_SITE="https://tidy.sourceforge.net/" 241.9 TARBALL="$PACKAGE-$VERSION.tar.bz2" 241.10 WGET_URL="https://anduin.linuxfromscratch.org/sources/BLFS/svn/t/$TARBALL" 241.11
242.1 --- a/tix/receipt Tue Sep 27 16:54:01 2022 +0000 242.2 +++ b/tix/receipt Wed Sep 28 08:10:35 2022 +0000 242.3 @@ -8,7 +8,7 @@ 242.4 MAINTAINER="pascal.bellard@slitaz.org" 242.5 LICENSE="BSD" 242.6 TARBALL="$SOURCE$VERSION-src.tar.gz" 242.7 -WEB_SITE="http://tix.sourceforge.net/" 242.8 +WEB_SITE="https://tix.sourceforge.net/" 242.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 242.10 242.11 DEPENDS="tcl xorg-libX11 xorg-libXau xorg-libXdmcp libxcb"
243.1 --- a/tls/receipt Tue Sep 27 16:54:01 2022 +0000 243.2 +++ b/tls/receipt Wed Sep 28 08:10:35 2022 +0000 243.3 @@ -7,7 +7,7 @@ 243.4 MAINTAINER="erjo@slitaz.org" 243.5 LICENSE="MIT" 243.6 TARBALL="${PACKAGE}${VERSION}-src.tar.gz" 243.7 -WEB_SITE="http://tls.sourceforge.net/" 243.8 +WEB_SITE="https://tls.sourceforge.net/" 243.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 243.10 243.11 DEPENDS="openssl tcl"
244.1 --- a/traceroute/receipt Tue Sep 27 16:54:01 2022 +0000 244.2 +++ b/traceroute/receipt Wed Sep 28 08:10:35 2022 +0000 244.3 @@ -6,7 +6,7 @@ 244.4 SHORT_DESC="The full-featured traceroute program." 244.5 MAINTAINER="samuel_trassare@yahoo.com" 244.6 LICENSE="GPL2" 244.7 -WEB_SITE="http://traceroute.sourceforge.net/" 244.8 +WEB_SITE="https://traceroute.sourceforge.net/" 244.9 244.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 244.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
245.1 --- a/tsocks/receipt Tue Sep 27 16:54:01 2022 +0000 245.2 +++ b/tsocks/receipt Wed Sep 28 08:10:35 2022 +0000 245.3 @@ -7,7 +7,7 @@ 245.4 MAINTAINER="pascal.bellard@slitaz.org" 245.5 LICENSE="GPL2" 245.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 245.7 -WEB_SITE="http://tsocks.sourceforge.net/" 245.8 +WEB_SITE="https://tsocks.sourceforge.net/" 245.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 245.10 245.11 DEPENDS=""
246.1 --- a/turnserver/receipt Tue Sep 27 16:54:01 2022 +0000 246.2 +++ b/turnserver/receipt Wed Sep 28 08:10:35 2022 +0000 246.3 @@ -7,7 +7,7 @@ 246.4 MAINTAINER="pascal.bellard@slitaz.org" 246.5 LICENSE="GPL3" 246.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 246.7 -WEB_SITE="http://turnserver.sourceforge.net/" 246.8 +WEB_SITE="https://turnserver.sourceforge.net/" 246.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 246.10 246.11 DEPENDS="openssl"
247.1 --- a/ufraw-locales/receipt Tue Sep 27 16:54:01 2022 +0000 247.2 +++ b/ufraw-locales/receipt Wed Sep 28 08:10:35 2022 +0000 247.3 @@ -7,7 +7,7 @@ 247.4 MAINTAINER="pankso@slitaz.org" 247.5 LICENSE="GPL2" 247.6 WANTED="ufraw" 247.7 -WEB_SITE="http://ufraw.sourceforge.net/" 247.8 +WEB_SITE="https://ufraw.sourceforge.net/" 247.9 247.10 # Rules to gen a SliTaz package suitable for Tazpkg. 247.11 genpkg_rules()
248.1 --- a/ufraw/receipt Tue Sep 27 16:54:01 2022 +0000 248.2 +++ b/ufraw/receipt Wed Sep 28 08:10:35 2022 +0000 248.3 @@ -7,7 +7,7 @@ 248.4 MAINTAINER="pankso@slitaz.org" 248.5 LICENSE="GPL2" 248.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 248.7 -WEB_SITE="http://ufraw.sourceforge.net/" 248.8 +WEB_SITE="https://ufraw.sourceforge.net/" 248.9 WGET_URL="$SF_MIRROR/project/ufraw/ufraw/ufraw-$VERSION/$TARBALL" 248.10 SUGGESTED="ufraw-locales gimp-plugin-ufraw" 248.11
249.1 --- a/uml-utilities/receipt Tue Sep 27 16:54:01 2022 +0000 249.2 +++ b/uml-utilities/receipt Wed Sep 28 08:10:35 2022 +0000 249.3 @@ -8,7 +8,7 @@ 249.4 MAINTAINER="pascal.bellard@slitaz.org" 249.5 LICENSE="GPL2" 249.6 TARBALL="${SOURCE}_$VERSION.tar.bz2" 249.7 -WEB_SITE="http://user-mode-linux.sourceforge.net/" 249.8 +WEB_SITE="https://user-mode-linux.sourceforge.net/" 249.9 WGET_URL="${WEB_SITE}$TARBALL" 249.10 SUGGESTED="linux-uml" 249.11
250.1 --- a/unfs3/receipt Tue Sep 27 16:54:01 2022 +0000 250.2 +++ b/unfs3/receipt Wed Sep 28 08:10:35 2022 +0000 250.3 @@ -7,7 +7,7 @@ 250.4 MAINTAINER="erjo@slitaz.org" 250.5 LICENSE="BSD" 250.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 250.7 -WEB_SITE="http://unfs3.sourceforge.net/" 250.8 +WEB_SITE="https://unfs3.sourceforge.net/" 250.9 WGET_URL="http://downloads.sourceforge.net/project/unfs3/unfs3/$VERSION/$TARBALL" 250.10 TAGS="network nfs" 250.11 CONFIG_FILES="/etc/exports"
251.1 --- a/unzip/receipt Tue Sep 27 16:54:01 2022 +0000 251.2 +++ b/unzip/receipt Wed Sep 28 08:10:35 2022 +0000 251.3 @@ -7,7 +7,7 @@ 251.4 MAINTAINER="pascal.bellard@slitaz.org" 251.5 LICENSE="other" 251.6 TARBALL="$PACKAGE${VERSION//./}.tar.gz" 251.7 -WEB_SITE="http://infozip.sourceforge.net/" 251.8 +WEB_SITE="https://infozip.sourceforge.net/" 251.9 WGET_URL="$SF_MIRROR/infozip/$TARBALL" 251.10 TAGS="archive compression" 251.11
252.1 --- a/usbip-dev/receipt Tue Sep 27 16:54:01 2022 +0000 252.2 +++ b/usbip-dev/receipt Wed Sep 28 08:10:35 2022 +0000 252.3 @@ -6,7 +6,7 @@ 252.4 SHORT_DESC="general USB device sharing system over IP network, development files." 252.5 MAINTAINER="pascal.bellard@slitaz.org" 252.6 LICENSE="GPL2" 252.7 -WEB_SITE="http://usbip.sourceforge.net/" 252.8 +WEB_SITE="https://usbip.sourceforge.net/" 252.9 WANTED="linux" 252.10 TAGS="usb" 252.11
253.1 --- a/usbip/receipt Tue Sep 27 16:54:01 2022 +0000 253.2 +++ b/usbip/receipt Wed Sep 28 08:10:35 2022 +0000 253.3 @@ -6,7 +6,7 @@ 253.4 SHORT_DESC="general USB device sharing system over IP network." 253.5 MAINTAINER="pascal.bellard@slitaz.org" 253.6 LICENSE="GPL2" 253.7 -WEB_SITE="http://usbip.sourceforge.net/" 253.8 +WEB_SITE="https://usbip.sourceforge.net/" 253.9 WANTED="linux" 253.10 TAGS="usb" 253.11
254.1 --- a/usbutils-dev/receipt Tue Sep 27 16:54:01 2022 +0000 254.2 +++ b/usbutils-dev/receipt Wed Sep 28 08:10:35 2022 +0000 254.3 @@ -6,7 +6,7 @@ 254.4 SHORT_DESC="Development files for usbutils." 254.5 MAINTAINER="erjo@slitaz.org" 254.6 LICENSE="GPL2" 254.7 -WEB_SITE="http://linux-usb.sourceforge.net/" 254.8 +WEB_SITE="https://linux-usb.sourceforge.net/" 254.9 WANTED="usbutils" 254.10 254.11 DEPENDS="usbutils pkg-config"
255.1 --- a/usbutils/receipt Tue Sep 27 16:54:01 2022 +0000 255.2 +++ b/usbutils/receipt Wed Sep 28 08:10:35 2022 +0000 255.3 @@ -7,7 +7,7 @@ 255.4 MAINTAINER="erjo@slitaz.org" 255.5 LICENSE="GPL2" 255.6 TARBALL="$PACKAGE-$VERSION.tar.xz" 255.7 -WEB_SITE="http://linux-usb.sourceforge.net/" 255.8 +WEB_SITE="https://linux-usb.sourceforge.net/" 255.9 WGET_URL="http://deb.debian.org/debian/pool/main/u/usbutils/usbutils_$VERSION.orig.tar.xz" 255.10 HOST_ARCH="i486 arm" 255.11
256.1 --- a/visualnqc/receipt Tue Sep 27 16:54:01 2022 +0000 256.2 +++ b/visualnqc/receipt Wed Sep 28 08:10:35 2022 +0000 256.3 @@ -7,7 +7,7 @@ 256.4 MAINTAINER="rcx@zoominternet.net" 256.5 LICENSE="MPL" 256.6 TARBALL="$PACKAGE-$VERSION.tgz" 256.7 -WEB_SITE="http://funsoftware.sourceforge.net/" 256.8 +WEB_SITE="https://funsoftware.sourceforge.net/" 256.9 WGET_URL="http://users.zoominternet.net/~rcx/$TARBALL" 256.10 256.11 DEPENDS="nqc"
257.1 --- a/wicd/receipt Tue Sep 27 16:54:01 2022 +0000 257.2 +++ b/wicd/receipt Wed Sep 28 08:10:35 2022 +0000 257.3 @@ -7,7 +7,7 @@ 257.4 MAINTAINER="jozee@slitaz.org" 257.5 LICENSE="GPL2" 257.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 257.7 -WEB_SITE="http://wicd.sourceforge.net/" 257.8 +WEB_SITE="https://wicd.sourceforge.net/" 257.9 WGET_URL="https://launchpad.net/wicd/${VERSION:0:3}/$VERSION/+download/$TARBALL" 257.10 TAGS="wireless ethernet" 257.11
258.1 --- a/wipe/receipt Tue Sep 27 16:54:01 2022 +0000 258.2 +++ b/wipe/receipt Wed Sep 28 08:10:35 2022 +0000 258.3 @@ -6,7 +6,7 @@ 258.4 MAINTAINER="jozee@slitaz.org" 258.5 LICENSE="GPL2" 258.6 SHORT_DESC="A file and block device delete/erase utility - a secure rm" 258.7 -WEB_SITE="http://wipe.sourceforge.net/" 258.8 +WEB_SITE="https://wipe.sourceforge.net/" 258.9 TARBALL="$PACKAGE-$VERSION.tar.bz2" 258.10 WGET_URL="http://downloads.sourceforge.net/$PACKAGE/$TARBALL" 258.11 TAGS="delete"
259.1 --- a/wput/receipt Tue Sep 27 16:54:01 2022 +0000 259.2 +++ b/wput/receipt Wed Sep 28 08:10:35 2022 +0000 259.3 @@ -6,7 +6,7 @@ 259.4 SHORT_DESC="A tiny wget-like ftp-client for uploading files" 259.5 MAINTAINER="l.lemarinel@gmail.com" 259.6 LICENSE="GPL2" 259.7 -WEB_SITE="http://wput.sourceforge.net/" 259.8 +WEB_SITE="https://wput.sourceforge.net/" 259.9 TARBALL="${PACKAGE}-${VERSION}.tgz" 259.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 259.11 HOST_ARCH="i486 arm"
260.1 --- a/xarchive/receipt Tue Sep 27 16:54:01 2022 +0000 260.2 +++ b/xarchive/receipt Wed Sep 28 08:10:35 2022 +0000 260.3 @@ -9,7 +9,7 @@ 260.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 260.5 SUGGESTED="zip rar unace arj lha p7zip lzop linux-squashfs cromfs cabextract \ 260.6 xz lrzip" 260.7 -WEB_SITE="http://xarchive.sourceforge.net/" 260.8 +WEB_SITE="https://xarchive.sourceforge.net/" 260.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 260.10 260.11 DEPENDS="gtk+ xorg-libXdamage"
261.1 --- a/xmlrpc-c-dev/receipt Tue Sep 27 16:54:01 2022 +0000 261.2 +++ b/xmlrpc-c-dev/receipt Wed Sep 28 08:10:35 2022 +0000 261.3 @@ -6,7 +6,7 @@ 261.4 SHORT_DESC="A lightweight RPC library based on XML and HTTP, development files." 261.5 MAINTAINER="pascal.bellard@slitaz.org" 261.6 LICENSE="BSD" 261.7 -WEB_SITE="http://xmlrpc-c.sourceforge.net/" 261.8 +WEB_SITE="https://xmlrpc-c.sourceforge.net/" 261.9 WANTED="xmlrpc-c" 261.10 261.11 DEPENDS="xmlrpc-c"
262.1 --- a/xmlrpc-c/receipt Tue Sep 27 16:54:01 2022 +0000 262.2 +++ b/xmlrpc-c/receipt Wed Sep 28 08:10:35 2022 +0000 262.3 @@ -6,7 +6,7 @@ 262.4 SHORT_DESC="A lightweight RPC library based on XML and HTTP." 262.5 MAINTAINER="pascal.bellard@slitaz.org" 262.6 LICENSE="BSD" 262.7 -WEB_SITE="http://xmlrpc-c.sourceforge.net/" 262.8 +WEB_SITE="https://xmlrpc-c.sourceforge.net/" 262.9 TARBALL="$PACKAGE-$VERSION.tgz" 262.10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 262.11 #HOST_ARCH="i486 arm"
263.1 --- a/xmlstarlet/receipt Tue Sep 27 16:54:01 2022 +0000 263.2 +++ b/xmlstarlet/receipt Wed Sep 28 08:10:35 2022 +0000 263.3 @@ -6,7 +6,7 @@ 263.4 SHORT_DESC="Command Line XML Toolkit" 263.5 MAINTAINER="al.bobylev@gmail.com" 263.6 LICENSE="MIT" 263.7 -WEB_SITE="http://xmlstar.sourceforge.net/" 263.8 +WEB_SITE="https://xmlstar.sourceforge.net/" 263.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 263.10 WGET_URL="$SF_MIRROR/xmlstar/$TARBALL" 263.11
264.1 --- a/xournal/receipt Tue Sep 27 16:54:01 2022 +0000 264.2 +++ b/xournal/receipt Wed Sep 28 08:10:35 2022 +0000 264.3 @@ -6,7 +6,7 @@ 264.4 SHORT_DESC="Notetaking application." 264.5 MAINTAINER="meshca@clarkson.edu" 264.6 LICENSE="GPL2" 264.7 -WEB_SITE="http://xournal.sourceforge.net/" 264.8 +WEB_SITE="https://xournal.sourceforge.net/" 264.9 264.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 264.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
265.1 --- a/xpaint/receipt Tue Sep 27 16:54:01 2022 +0000 265.2 +++ b/xpaint/receipt Wed Sep 28 08:10:35 2022 +0000 265.3 @@ -6,7 +6,7 @@ 265.4 SHORT_DESC="Simple paint program for X." 265.5 MAINTAINER="mojo@slitaz.org" 265.6 LICENSE="GPL3" 265.7 -WEB_SITE="http://sf-xpaint.sourceforge.net/" 265.8 +WEB_SITE="https://sf-xpaint.sourceforge.net/" 265.9 265.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 265.11 WGET_URL="$SF_MIRROR/sf-$PACKAGE/files/$TARBALL"
266.1 --- a/xplanet/receipt Tue Sep 27 16:54:01 2022 +0000 266.2 +++ b/xplanet/receipt Wed Sep 28 08:10:35 2022 +0000 266.3 @@ -7,7 +7,7 @@ 266.4 MAINTAINER="pascal.bellard@slitaz.org" 266.5 LICENSE="GPL2" 266.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 266.7 -WEB_SITE="http://xplanet.sourceforge.net/" 266.8 +WEB_SITE="https://xplanet.sourceforge.net/" 266.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 266.10 266.11 DEPENDS="perl jpeg libpng zlib tiff xorg-libX11 freetype pango fontconfig \
267.1 --- a/yasr/receipt Tue Sep 27 16:54:01 2022 +0000 267.2 +++ b/yasr/receipt Wed Sep 28 08:10:35 2022 +0000 267.3 @@ -7,7 +7,7 @@ 267.4 MAINTAINER="paul@slitaz.org" 267.5 LICENSE="GPL2" 267.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 267.7 -WEB_SITE="http://yasr.sourceforge.net/" 267.8 +WEB_SITE="https://yasr.sourceforge.net/" 267.9 WGET_URL="http://prdownloads.sourceforge.net/yasr/$TARBALL" 267.10 267.11 DEPENDS="speech-dispatcher espeak bash"
268.1 --- a/zip/receipt Tue Sep 27 16:54:01 2022 +0000 268.2 +++ b/zip/receipt Wed Sep 28 08:10:35 2022 +0000 268.3 @@ -7,7 +7,7 @@ 268.4 MAINTAINER="pankso@slitaz.org" 268.5 LICENSE="other" 268.6 TARBALL="$PACKAGE${VERSION//./}.tgz" 268.7 -WEB_SITE="http://infozip.sourceforge.net/" 268.8 +WEB_SITE="https://infozip.sourceforge.net/" 268.9 WGET_URL="ftp://ftp.info-zip.org/pub/infozip/src/$TARBALL" 268.10 TAGS="archive compression" 268.11
269.1 --- a/ziproxy/receipt Tue Sep 27 16:54:01 2022 +0000 269.2 +++ b/ziproxy/receipt Wed Sep 28 08:10:35 2022 +0000 269.3 @@ -6,7 +6,7 @@ 269.4 SHORT_DESC="HTTP traffic compressor." 269.5 MAINTAINER="pascal.bellard@slitaz.org" 269.6 LICENSE="GPL2" 269.7 -WEB_SITE="http://ziproxy.sourceforge.net/" 269.8 +WEB_SITE="https://ziproxy.sourceforge.net/" 269.9 269.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 269.11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
270.1 --- a/znotes/receipt Tue Sep 27 16:54:01 2022 +0000 270.2 +++ b/znotes/receipt Wed Sep 28 08:10:35 2022 +0000 270.3 @@ -7,7 +7,7 @@ 270.4 MAINTAINER="al.bobylev@gmail.com" 270.5 LICENSE="GPL3" 270.6 #WEB_SITE="http://qt-apps.org/content/show.php/zNotes?content=113117" 270.7 -#WEB_SITE="http://znotes.sourceforge.net/" 270.8 +#WEB_SITE="https://znotes.sourceforge.net/" 270.9 WEB_SITE="https://github.com/proton/zNotes" 270.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 270.11 WGET_URL="https://github.com/proton/zNotes/archive/$VERSION.tar.gz"
271.1 --- a/zssh/receipt Tue Sep 27 16:54:01 2022 +0000 271.2 +++ b/zssh/receipt Wed Sep 28 08:10:35 2022 +0000 271.3 @@ -7,7 +7,7 @@ 271.4 MAINTAINER="pascal.bellard@slitaz.org" 271.5 LICENSE="GPL2" 271.6 TARBALL="$PACKAGE-$VERSION.tgz" 271.7 -WEB_SITE="http://zssh.sourceforge.net/" 271.8 +WEB_SITE="https://zssh.sourceforge.net/" 271.9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 271.10 TAGS="ssh" 271.11