wok rev 21866

updated firefox-official packages (68.0 -> 69.0)
author Hans-G?nter Theisgen
date Tue Sep 24 16:03:49 2019 +0100 (2019-09-24)
parents 11cb94e92478 5a7169b036c6
children fc14753420dd
files firefox-official-de/receipt firefox-official-en-GB/receipt firefox-official-es/receipt firefox-official-fr/receipt firefox-official-it/receipt firefox-official-pt-BR/receipt firefox-official-ru/receipt firefox-official-uk/receipt firefox-official/receipt
line diff
     1.1 --- a/busybox/receipt	Sun Sep 22 16:46:49 2019 +0100
     1.2 +++ b/busybox/receipt	Tue Sep 24 16:03:49 2019 +0100
     1.3 @@ -167,6 +167,7 @@
     1.4  	rm -f $fs/bin/bbconfig $fs/usr/bin/ar
     1.5  	mkdir -p $fs/etc/init.d $fs/var/spool/cron/crontabs $fs/var/spool/lpd \
     1.6  		 $fs/var/lib/misc
     1.7 +	cp $stuff/command_not_found $fs/bin
     1.8  
     1.9  	# Busybox config files.
    1.10  	for f in busybox.conf dnsd.conf udhcpd.conf inetd.conf httpd.conf \
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/busybox/stuff/command_not_found	Tue Sep 24 16:03:49 2019 +0100
     2.3 @@ -0,0 +1,21 @@
     2.4 +#!/bin/sh
     2.5 +
     2.6 +ZLIST=/var/lib/tazpkg/files.list.lzma
     2.7 +LIST=/tmp/command-list
     2.8 +[ ! $LIST -nt $ZLIST ] && unlzma <$ZLIST | grep -E '(usr/games/|bin/)' >$LIST && chmod 666 $LIST
     2.9 +
    2.10 +lookup() {
    2.11 +	grep -s "/$2$1$" $LIST | while read pkg file; do
    2.12 +		cat <<EOT
    2.13 +Command '$1' not found, but can be installed as root with:
    2.14 +
    2.15 +tazpkg -gi ${pkg%:}
    2.16 +${2:+$2$1}
    2.17 +EOT
    2.18 +		break
    2.19 +	done
    2.20 +}
    2.21 +
    2.22 +MSG="$(lookup "$1")"
    2.23 +[ "$MSG" ] || MSG="$(lookup "$1" get-)"
    2.24 +echo "${MSG:-${SHELL##*/}: $1: not found}"
     3.1 --- a/firefox-official-de/receipt	Sun Sep 22 16:46:49 2019 +0100
     3.2 +++ b/firefox-official-de/receipt	Tue Sep 24 16:03:49 2019 +0100
     3.3 @@ -2,7 +2,7 @@
     3.4  
     3.5  PACKAGE="firefox-official-de"
     3.6  lang="de"
     3.7 -VERSION="68.0"
     3.8 +VERSION="69.0"
     3.9  CATEGORY="network"
    3.10  TAGS="web-browser"
    3.11  SHORT_DESC="Official Firefox build by the Mozilla foundation (German language)."
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/firefox-official-en-GB/receipt	Tue Sep 24 16:03:49 2019 +0100
     4.3 @@ -0,0 +1,60 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="firefox-official-en-GB"
     4.7 +lang="en-GB"
     4.8 +VERSION="69.0"
     4.9 +CATEGORY="network"
    4.10 +TAGS="web-browser"
    4.11 +SHORT_DESC="Official Firefox build by the Mozilla foundation (English language for Great Britain)."
    4.12 +MAINTAINER="al.bobylev@gmail.com"
    4.13 +LICENSE="MPL2"
    4.14 +WEB_SITE="http://www.mozilla.org/firefox"
    4.15 +
    4.16 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    4.17 +WGET_URL="http://ftp.mozilla.org/pub/firefox/releases/$VERSION/linux-i686/$lang/firefox-$VERSION.tar.bz2"
    4.18 +
    4.19 +PROVIDE="firefox-official browser-html5"
    4.20 +DEPENDS="alsa-lib dbus-glib gtk+ gtk+3 libatomic xorg-libXt"
    4.21 +HOST_ARCH="i486"
    4.22 +
    4.23 +# Rules to configure and make the package.
    4.24 +compile_rules()
    4.25 +{
    4.26 +	# Installation path
    4.27 +	fx='/opt/mozilla/firefox'
    4.28 +
    4.29 +	mkdir -p				\
    4.30 +		$install$fx			\
    4.31 +		$install/usr/bin		\
    4.32 +		$install/usr/share/applications	\
    4.33 +		$install/usr/share/icons/hicolor/128x128/apps
    4.34 +
    4.35 +	# Copy everything
    4.36 +	cp -a $src/* $install$fx
    4.37 +
    4.38 +	# Executable
    4.39 +	ln -s $fx/firefox $install/usr/bin/firefox-official
    4.40 +
    4.41 +	# Icons
    4.42 +	ln -s $fx/browser/icons/mozicon128.png \
    4.43 +		$install/usr/share/icons/hicolor/128x128/apps/firefox-official.png
    4.44 +	for size in 16 32 48; do
    4.45 +		icon_folder="$install/usr/share/icons/hicolor/${size}x$size/apps"
    4.46 +		mkdir -p $icon_folder
    4.47 +		ln -s $fx/browser/chrome/icons/default/default$size.png \
    4.48 +			$icon_folder/firefox-official.png
    4.49 +	done
    4.50 +
    4.51 +	# Allow user updates (save user's and our traffic)
    4.52 +	chmod -R a+w $install$fx
    4.53 +
    4.54 +	# Desktop shortcut
    4.55 +	cp $stuff/firefox-official.desktop $install/usr/share/applications
    4.56 +}
    4.57 +
    4.58 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.59 +genpkg_rules()
    4.60 +{
    4.61 +	cp -a $install/* $fs
    4.62 +	ln -s firefox-official $fs/usr/bin/browser-html5
    4.63 +}
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/firefox-official-en-GB/stuff/firefox-official.desktop	Tue Sep 24 16:03:49 2019 +0100
     5.3 @@ -0,0 +1,89 @@
     5.4 +[Desktop Entry]
     5.5 +Type=Application
     5.6 +Name=Firefox Web Browser (official)
     5.7 +Name[cs]=Prohlížeč WWW Firefox (official)
     5.8 +Name[da]=Firefox - internetsurfning (official)
     5.9 +Name[de]=Firefox Webbrowser (official)
    5.10 +Name[el]=Περιηγητής Διαδικτύου Firefox (official)
    5.11 +Name[es]=Navegador Web Firefox (official)
    5.12 +Name[fi]=Firefox, WWW-selain (official)
    5.13 +Name[fr]=Navigateur Web Firefox (officiel)
    5.14 +Name[hr]=Firefox Web preglednik (official)
    5.15 +Name[hu]=Firefox webböngésző (official)
    5.16 +Name[id]=Web Browser Firefox (official)
    5.17 +Name[it]=Browser web Firefox (official)
    5.18 +Name[ja]=Firefox ウェブ・ブラウザ (official)
    5.19 +Name[nb]=Firefox nettleser (official)
    5.20 +Name[nl]=Firefox Webbrowser (official)
    5.21 +Name[nn]=Firefox nettlesar (official)
    5.22 +Name[pl]=Przeglądarka WWW Firefox (official)
    5.23 +Name[pt]=Navegador Web Firefox (official)
    5.24 +Name[pt_BR]=Navegador Web Firefox (official)
    5.25 +Name[ro]=Navigatorul Firefox (official)
    5.26 +Name[ru]=Браузер Firefox (официальный)
    5.27 +Name[sl]=Spletni brskalnik Firefox (official)
    5.28 +Name[sv]=Webbläsaren Firefox (official)
    5.29 +Name[tr]=Firefox Web Tarayıcı (official)
    5.30 +Name[uk]=Переглядач web Firefox (official)
    5.31 +Name[zh_CN]=Firefox Web 浏览器 (official)
    5.32 +Name[zh_TW]=Firefox 網頁瀏覽器 (official)
    5.33 +GenericName=Web Browser
    5.34 +GenericName[ar]=متصفّح الانترنت
    5.35 +GenericName[cs]=Prohlížeč WWW
    5.36 +GenericName[da]=Internetsurfning
    5.37 +GenericName[de]=Webbrowser
    5.38 +GenericName[el]=Περιηγητής Ιστοσελίδων
    5.39 +GenericName[es]=Navegador web
    5.40 +GenericName[fi]=WWW-selain
    5.41 +GenericName[fr]=Navigateur Web
    5.42 +GenericName[hr]=Web preglednik
    5.43 +GenericName[hu]=Webböngésző
    5.44 +GenericName[id]=Browser Web
    5.45 +GenericName[it]=Browser web
    5.46 +GenericName[ja]=ウェブ・ブラウザ
    5.47 +GenericName[nb]=Nettleser
    5.48 +GenericName[nl]=Web-browser
    5.49 +GenericName[nn]=Nettlesar
    5.50 +GenericName[pl]=Przeglądarka WWW
    5.51 +GenericName[pt]=Navegador Web
    5.52 +GenericName[pt_BR]=Navegador Web
    5.53 +GenericName[ro]=Navigator Internet
    5.54 +GenericName[ru]=Веб-браузер
    5.55 +GenericName[sl]=Spletni brskalnik
    5.56 +GenericName[sv]=Webbläsare
    5.57 +GenericName[tr]=Web Tarayıcı
    5.58 +GenericName[uk]=Переглядач веб-сторінок
    5.59 +GenericName[zh_CN]=Web 浏览器
    5.60 +GenericName[zh_TW]=網頁瀏覽器
    5.61 +Comment=Browse the web
    5.62 +Comment[ar]=تصفح الانترنت
    5.63 +Comment[cs]=Prohlížet WWW
    5.64 +Comment[da]=Surf på internettet
    5.65 +Comment[de]=Im Web surfen
    5.66 +Comment[el]=Περιήγηση στον παγκόσμιο ιστό
    5.67 +Comment[es]=Navegar por la web
    5.68 +Comment[fi]=Selaa WWW:tä
    5.69 +Comment[fr]=Naviguer sur Internet
    5.70 +Comment[hr]=Pregledaj Web
    5.71 +Comment[hu]=A világháló böngészése
    5.72 +Comment[id]=Jelajah web
    5.73 +Comment[it]=Esplora il web
    5.74 +Comment[ja]=ウェブを閲覧します
    5.75 +Comment[nb]=Surf på nettet
    5.76 +Comment[nl]=Websurfen
    5.77 +Comment[nn]=Surf på nettet
    5.78 +Comment[pl]=Przeglądanie stron WWW
    5.79 +Comment[pt]=Navegar na web
    5.80 +Comment[pt_BR]=Navegar na web
    5.81 +Comment[ro]=Navigare Internet
    5.82 +Comment[ru]=Просмотр интернета
    5.83 +Comment[sl]=Brskaj po spletu
    5.84 +Comment[sv]=Surfa på nätet
    5.85 +Comment[tr]=Web'e Gözat
    5.86 +Comment[uk]=Перегляд веб-сторінок
    5.87 +Comment[zh_CN]=浏览 Web
    5.88 +Comment[zh_TW]=瀏覽網頁
    5.89 +Exec=firefox-official %u
    5.90 +Icon=firefox-official
    5.91 +Categories=GTK;Network;WebBrowser;
    5.92 +MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https;
     6.1 --- a/firefox-official-es/receipt	Sun Sep 22 16:46:49 2019 +0100
     6.2 +++ b/firefox-official-es/receipt	Tue Sep 24 16:03:49 2019 +0100
     6.3 @@ -2,7 +2,7 @@
     6.4  
     6.5  PACKAGE="firefox-official-es"
     6.6  lang="es-ES"
     6.7 -VERSION="68.0"
     6.8 +VERSION="69.0"
     6.9  CATEGORY="network"
    6.10  TAGS="web-browser"
    6.11  SHORT_DESC="Official Firefox build by the Mozilla foundation (Spanish language)."
     7.1 --- a/firefox-official-fr/receipt	Sun Sep 22 16:46:49 2019 +0100
     7.2 +++ b/firefox-official-fr/receipt	Tue Sep 24 16:03:49 2019 +0100
     7.3 @@ -2,7 +2,7 @@
     7.4  
     7.5  PACKAGE="firefox-official-fr"
     7.6  lang="fr"
     7.7 -VERSION="68.0"
     7.8 +VERSION="69.0"
     7.9  CATEGORY="network"
    7.10  TAGS="web-browser"
    7.11  SHORT_DESC="Official Firefox build by the Mozilla foundation (French language)."
     8.1 --- a/firefox-official-it/receipt	Sun Sep 22 16:46:49 2019 +0100
     8.2 +++ b/firefox-official-it/receipt	Tue Sep 24 16:03:49 2019 +0100
     8.3 @@ -2,7 +2,7 @@
     8.4  
     8.5  PACKAGE="firefox-official-it"
     8.6  lang="it"
     8.7 -VERSION="68.0"
     8.8 +VERSION="69.0"
     8.9  CATEGORY="network"
    8.10  TAGS="web-browser"
    8.11  SHORT_DESC="Official Firefox build by the Mozilla foundation (Italian language)."
     9.1 --- a/firefox-official-pt-BR/receipt	Sun Sep 22 16:46:49 2019 +0100
     9.2 +++ b/firefox-official-pt-BR/receipt	Tue Sep 24 16:03:49 2019 +0100
     9.3 @@ -2,7 +2,7 @@
     9.4  
     9.5  PACKAGE="firefox-official-pt-BR"
     9.6  lang="pt-BR"
     9.7 -VERSION="68.0"
     9.8 +VERSION="69.0"
     9.9  CATEGORY="network"
    9.10  TAGS="web-browser"
    9.11  SHORT_DESC="Official Firefox build by the Mozilla foundation (Portuguese (Brazil) language)."
    10.1 --- a/firefox-official-ru/receipt	Sun Sep 22 16:46:49 2019 +0100
    10.2 +++ b/firefox-official-ru/receipt	Tue Sep 24 16:03:49 2019 +0100
    10.3 @@ -2,7 +2,7 @@
    10.4  
    10.5  PACKAGE="firefox-official-ru"
    10.6  lang="ru"
    10.7 -VERSION="68.0"
    10.8 +VERSION="69.0"
    10.9  CATEGORY="network"
   10.10  TAGS="web-browser"
   10.11  SHORT_DESC="Official Firefox build by the Mozilla foundation (Russian language)."
    11.1 --- a/firefox-official-uk/receipt	Sun Sep 22 16:46:49 2019 +0100
    11.2 +++ b/firefox-official-uk/receipt	Tue Sep 24 16:03:49 2019 +0100
    11.3 @@ -2,7 +2,7 @@
    11.4  
    11.5  PACKAGE="firefox-official-uk"
    11.6  lang="uk"
    11.7 -VERSION="68.0"
    11.8 +VERSION="69.0"
    11.9  CATEGORY="network"
   11.10  TAGS="web-browser"
   11.11  SHORT_DESC="Official Firefox build by the Mozilla foundation (Ukrainian language)."
    12.1 --- a/firefox-official/receipt	Sun Sep 22 16:46:49 2019 +0100
    12.2 +++ b/firefox-official/receipt	Tue Sep 24 16:03:49 2019 +0100
    12.3 @@ -1,7 +1,7 @@
    12.4  # SliTaz package receipt.
    12.5  
    12.6  PACKAGE="firefox-official"
    12.7 -VERSION="68.0"
    12.8 +VERSION="69.0"
    12.9  CATEGORY="network"
   12.10  TAGS="web-browser"
   12.11  SHORT_DESC="Official Firefox build by the Mozilla foundation (English language)."
    13.1 --- a/hfsprescue/receipt	Sun Sep 22 16:46:49 2019 +0100
    13.2 +++ b/hfsprescue/receipt	Tue Sep 24 16:03:49 2019 +0100
    13.3 @@ -1,7 +1,7 @@
    13.4  # SliTaz package receipt.
    13.5  
    13.6  PACKAGE="hfsprescue"
    13.7 -VERSION="1.1"
    13.8 +VERSION="3.4"
    13.9  CATEGORY="base-system"
   13.10  SHORT_DESC="HFS+ recovery tool."
   13.11  MAINTAINER="pascal.bellard@slitaz.org"
   13.12 @@ -10,7 +10,8 @@
   13.13  WEB_SITE="http://www.plop.at/en/hfsprescue.html"
   13.14  WGET_URL="http://download.plop.at/$PACKAGE/$TARBALL"
   13.15  
   13.16 -DEPENDS="gcc-lib-base"
   13.17 +DEPENDS="gcc-lib-base libcrypto zlib"
   13.18 +BUILD_DEPENDS="openssl-dev"
   13.19  
   13.20  # Rules to configure and make the package.
   13.21  compile_rules()