Problems updating Gentoo ebuild for 27.8.0

Users and developers helping users with generic and technical Pale Moon issues on all operating systems.

Moderator: trava90

Forum rules
This board is for technical/general usage questions and troubleshooting for the Pale Moon browser only.
Technical issues and questions not related to the Pale Moon browser should be posted in other boards!
Please keep off-topic and general discussion out of this board, thank you!
Walter Dnes
Astronaut
Astronaut
Posts: 652
Joined: 2015-07-30, 20:29
Location: Vaughan, ON, Canada

Re: Problems updating Gentoo ebuild for 27.8.0

Unread post by Walter Dnes » 2018-03-07, 17:42

trava90 wrote:As Moonchild mentioned I'm certain this was fixed quite some time back, and I myself have not experienced any such issues (either from git checkout or downloading the tar.gz archive).
What do you get when you execute

find <source_dir_name> ! -executable | grep \\.sh$ | xargs ls -og

What permissions do you see? I get a bunch of .sh files with "-rw-r--r--". I don't think my "git clone" command is that badly broken.
There's a right way
There's a wrong way
And then there's my way

User avatar
adesh
Board Warrior
Board Warrior
Posts: 1277
Joined: 2017-06-06, 07:38

Re: Problems updating Gentoo ebuild for 27.8.0

Unread post by adesh » 2018-03-07, 18:04

Walter,
https://ptpb.pw/TUBE

Only file of some importance is "/gfx/harfbuzz/src/check-defs.sh", others are nss test scripts.

Walter Dnes
Astronaut
Astronaut
Posts: 652
Joined: 2015-07-30, 20:29
Location: Vaughan, ON, Canada

Re: Problems updating Gentoo ebuild for 27.8.0

Unread post by Walter Dnes » 2018-03-07, 18:39

adesh wrote:Walter,
https://ptpb.pw/TUBE

Only file of some importance is "/gfx/harfbuzz/src/check-defs.sh", others are nss test scripts.
What about .ksh files? And can python .py files run without being marked executable (like "sourcing" in bash)?

find pmsrc ! -executable | grep \\.ksh$ | xargs ls -og
find pmsrc ! -executable | grep \\.py$ | xargs ls -og
There's a right way
There's a wrong way
And then there's my way

User avatar
adesh
Board Warrior
Board Warrior
Posts: 1277
Joined: 2017-06-06, 07:38

Re: Problems updating Gentoo ebuild for 27.8.0

Unread post by adesh » 2018-03-07, 19:04

Walter Dnes wrote:And can python .py files run without being marked executable (like "sourcing" in bash)?
Same as "sh" files. Need to be executable and have a correct shebang line. Otherwise "python some_file.py" always works!

Walter Dnes wrote:find pmsrc ! -executable | grep \\.ksh$ | xargs ls -og

Code: Select all

[adesh Pale-Moon]$ find . ! -executable | grep \\.ksh$ | xargs ls -og
-rw-rw-r-- 1 6880 Feb 25 06:29 ./intl/icu/source/tools/tzcode/tzselect.ksh
-rw-rw-r-- 1 1918 Feb 25 06:29 ./nsprpub/pkg/solaris/bld_awk_pkginfo.ksh
-rw-rw-r-- 1 3604 Feb 25 06:29 ./nsprpub/pr/tests/runy2ktests.ksh
-rw-rw-r-- 1  348 Feb 25 06:29 ./security/nss/cmd/makepqg/testit.ksh
-rw-rw-r-- 1 1898 Feb 25 06:29 ./security/nss/pkg/solaris/bld_awk_pkginfo.ksh
Walter Dnes wrote:find pmsrc ! -executable | grep \\.py$ | xargs ls -og
https://ptpb.pw/0qw0

Locked