Porteus-v5.0rc3 x86_64 bug reports

Please reproduce your error on a second machine before posting, and check the error by running without saved changes or extra modules (See FAQ No. 13, "How to report a bug"). For unstable Porteus versions (alpha, beta, rc) please use the relevant thread in our "Development" section.
User avatar
babam
Warlord
Warlord
Posts: 526
Joined: 16 Nov 2016, 10:30
Distribution: Porteus 5.0rc3 Xfce K6.1.1
Location: Rainy city

Porteus-v5.0rc3 x86_64 bug reports

Post#181 by babam » 04 Jul 2022, 00:49

Minor fix for Porteus 5.0rc3

Code: Select all

diff -u a/aufs-insert b/aufs-insert
--- a/aufs-insert	2020-11-09 05:29:15.000000000 +0700
+++ b/aufs-insert	2021-12-31 16:00:31.000000000 +0700
@@ -77,6 +77,7 @@
 [ -e "$MOD"/usr/share/mime ] && touch $CACHES/mime
 [ -e "$MOD"/usr/share/fonts ] && touch $CACHES/fonts
 [ -e "$MOD"/usr/share/glib-2.0/schemas ] && touch $CACHES/schemas
+[ -e "$MOD"/usr/$lib/gdk-pixbuf-*/*/loaders ] && touch $CACHES/pixbuf
 [ -e "$MOD"/usr/$lib/gio/modules ] && touch $CACHES/gio
 [ -e "$MOD"/usr/$lib/gtk-2.0/*/immodules ] && touch $CACHES/immodules
 [ -e "$MOD"/usr/$lib/gtk-3.0/*/immodules ] && touch $CACHES/immodules

diff -u a/aufs-remove b/aufs-remove
--- a/aufs-remove	2021-01-01 14:26:52.000000000 +0700
+++ b/aufs-remove	2021-12-31 15:59:18.000000000 +0700
@@ -35,6 +35,7 @@
 [ -e "$MOD"/usr/share/mime ] && touch $CACHES/mime
 [ -e "$MOD"/usr/share/fonts ] && touch $CACHES/fonts
 [ -e "$MOD"/usr/share/glib-2.0/schemas ] && touch $CACHES/schemas
+[ -e "$MOD"/usr/$lib/gdk-pixbuf-*/*/loaders ] && touch $CACHES/pixbuf
 [ -e "$MOD"/usr/$lib/gio/modules ] && touch $CACHES/gio
 [ -e "$MOD"/usr/$lib/gtk-2.0/*/immodules ] && touch $CACHES/immodules
 [ -e "$MOD"/usr/$lib/gtk-3.0/*/immodules ] && touch $CACHES/immodules

diff -u a/update-cache b/update-cache
--- a/update-cache	2019-12-07 13:40:42.000000000 +0700
+++ b/update-cache	2022-07-03 18:33:05.438613709 +0700
@@ -19,6 +19,7 @@
 	    [ -e $MOD/usr/share/applications ] && touch $CACHES/desktop
 	    [ -e $MOD/usr/share/mime ] && touch $CACHES/mime
 	    [ -e $MOD/usr/share/fonts ] && touch $CACHES/fonts
+	    [ -e $MOD/usr/lib64/gdk-pixbuf-*/*/loaders ] && touch $CACHES/pixbuf
 	    [ -e $MOD/usr/lib64/gtk-2.0/*/immodules ] && touch $CACHES/immodules
 	    [ -e $MOD/usr/lib64/gtk-3.0/*/immodules ] && touch $CACHES/immodules
 	    [ -e $MOD/usr/share/glib-2.0/schemas ] && touch $CACHES/schemas
@@ -38,6 +39,7 @@
 	    [ -e $MOD/usr/share/applications ] && touch $CACHES/desktop
 	    [ -e $MOD/usr/share/mime ] && touch $CACHES/mime
 	    [ -e $MOD/usr/share/fonts ] && touch $CACHES/fonts
+	    [ -e $MOD/usr/lib/gdk-pixbuf-*/*/loaders ] && touch $CACHES/pixbuf
 	    [ -e $MOD/usr/lib/gtk-2.0/*/immodules ] && touch $CACHES/immodules
 	    [ -e $MOD/usr/lib/gtk-3.0/*/immodules ] && touch $CACHES/immodules
 	    [ -e $MOD/usr/share/glib-2.0/schemas ] && touch $CACHES/schemas
Thanks.
Sorry, my English is bad.

User avatar
ncmprhnsbl
DEV Team
DEV Team
Posts: 3924
Joined: 20 Mar 2012, 03:42
Distribution: v5.0-64bit
Location: australia
Contact:

Porteus-v5.0rc3 x86_64 bug reports

Post#182 by ncmprhnsbl » 06 Jul 2022, 04:48

babam wrote:
04 Jul 2022, 00:49
Minor fix for Porteus 5.0rc3
thanks, i don't suppose it would do any harm .. i do wonder though how often this would come up.. like.. how many packages are there that include pixbuf loaders?
Forum Rules : https://forum.porteus.org/viewtopic.php?f=35&t=44

User avatar
babam
Warlord
Warlord
Posts: 526
Joined: 16 Nov 2016, 10:30
Distribution: Porteus 5.0rc3 Xfce K6.1.1
Location: Rainy city

Porteus-v5.0rc3 x86_64 bug reports

Post#183 by babam » 06 Jul 2022, 05:55

ncmprhnsbl wrote:
06 Jul 2022, 04:48
thanks, i don't suppose it would do any harm .. i do wonder though how often this would come up.. like.. how many packages are there that include pixbuf loaders?
I need it to be able to use libheif http://slackbuilds.org/repository/15.0/ ... s/libheif/

Now the system (gpicview) can open image files with .heic and .avif formats

BTW, Thank you very much for releasing Porteus 5.0
Sorry, my English is bad.

User avatar
ncmprhnsbl
DEV Team
DEV Team
Posts: 3924
Joined: 20 Mar 2012, 03:42
Distribution: v5.0-64bit
Location: australia
Contact:

Porteus-v5.0rc3 x86_64 bug reports

Post#184 by ncmprhnsbl » 06 Jul 2022, 12:17

looking at this, i notice that pixbuf loader update is there, but only for "x86_64 multilib support" .. strange.. some sort of long standing weird oversight..
anyway, will fix for next update..
Forum Rules : https://forum.porteus.org/viewtopic.php?f=35&t=44

User avatar
Ed_P
Contributor
Contributor
Posts: 8341
Joined: 06 Feb 2013, 22:12
Distribution: Cinnamon 5.01 ISO
Location: Western NY, USA

Porteus-v5.0rc3 x86_64 bug reports

Post#185 by Ed_P » 06 Jul 2022, 22:14

ncmprhnsbl wrote:
06 Jul 2022, 12:17
will fix for next update..
Weekly or monthly? :D
Ed

User avatar
Rava
Contributor
Contributor
Posts: 5401
Joined: 11 Jan 2011, 02:46
Distribution: XFCE 5.01 x86_64 + 4.0 i586
Location: Forests of Germany

Porteus-v5.0rc3 x86_64 bug reports

Post#186 by Rava » 19 Aug 2022, 01:36

ncmprhnsbl wrote:
06 Jul 2022, 04:48
thanks, i don't suppose it would do any harm .. i do wonder though how often this would come up.. like.. how many packages are there that include pixbuf loaders?
I think viewnior does, and I also think fulalas changed XFCE's default image viewer to viewnior… (At least I do)
Cheers!
Yours Rava

User avatar
ncmprhnsbl
DEV Team
DEV Team
Posts: 3924
Joined: 20 Mar 2012, 03:42
Distribution: v5.0-64bit
Location: australia
Contact:

Porteus-v5.0rc3 x86_64 bug reports

Post#187 by ncmprhnsbl » 19 Aug 2022, 01:50

Rava wrote:
19 Aug 2022, 01:36
I think viewnior does,
well technically, viewnior just uses gdk-pixbuf loaders which are supplied by other packages eg. webp-pixbuf-loader or libheif or libjxl ..
in any case the last updates (see porteus settings centre>update porteus) include the above mentioned change ie. any module including a pixbuf-loader will invoke the loader cache to be rebuilt..
Forum Rules : https://forum.porteus.org/viewtopic.php?f=35&t=44

User avatar
Rava
Contributor
Contributor
Posts: 5401
Joined: 11 Jan 2011, 02:46
Distribution: XFCE 5.01 x86_64 + 4.0 i586
Location: Forests of Germany

Porteus-v5.0rc3 x86_64 bug reports

Post#188 by Rava » 19 Aug 2022, 05:34

I work on updating my main system folders and restart as soon as I have at least one working older version as failsafe, and the newest version set up for test.
Cheers!
Yours Rava

Post Reply