Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 775254 - sci-mathematics/octave-6.2.0 calls commands that do not exist
Summary: sci-mathematics/octave-6.2.0 calls commands that do not exist
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo Science Mathematics related packages
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-03-10 13:37 UTC by Agostino Sarubbo
Modified: 2022-01-17 17:28 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
build.log.xz (build.log.xz,129.27 KB, application/x-xz)
2021-03-10 13:37 UTC, Agostino Sarubbo
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Agostino Sarubbo gentoo-dev 2021-03-10 13:37:22 UTC
https://blogs.gentoo.org/ago/2020/07/04/gentoo-tinderbox/

Issue: sci-mathematics/octave-6.2.0 calls commands that do not exist.
Discovered on: amd64 (internal ref: ci)

NOTE:
Please look for 'command not found' and/or 'no such file or directory'.
Comment 1 Agostino Sarubbo gentoo-dev 2021-03-10 13:37:25 UTC
Created attachment 690510 [details]
build.log.xz

build log and emerge --info (compressed because it exceeds attachment limit, use 'xzless' to read it)
Comment 2 Michael Orlitzky gentoo-dev 2022-01-17 17:13:21 UTC
***** test
 ## test zip together with unzip
 unwind_protect
   filename = tempname ();
   tmp_var  = pi;
   save (filename, "tmp_var");
   dirname = tempname ();
   mkdir (dirname);
   zipfile = tempname ();
   [~, basename, ext] = fileparts (filename);
   filelist = zip (zipfile, [basename ext], tempdir);
   filelist = filelist{1};
   if (! strcmp (filelist, [basename ext]))
     error ("zip archive does not contain expected name!");
   endif
   if (! exist ([zipfile ".zip"], "file"))
     error ("zip file cannot be found!");
   endif
   unzip ([zipfile ".zip"], dirname);
   fid = fopen (filename, "rb");
   assert (fid >= 0);
   orig_data = fread (fid);
   fclose (fid);
   fid = fopen ([dirname filesep basename ext], "rb");
   assert (fid >= 0);
   new_data = fread (fid);
   fclose (fid);
   if (orig_data != new_data)
     error ("unzipped file not equal to original file!");
   endif
 unwind_protect_cleanup
   unlink (filename);
   unlink ([dirname, filesep, basename, ext]);
   unlink (zipfile);
   unlink ([zipfile ".zip"]);
   rmdir (dirname);
 end_unwind_protect
!!!!! test failed
zip: zip failed with exit status = 127
Comment 3 Larry the Git Cow gentoo-dev 2022-01-17 17:28:38 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3b07b88c4c2034c849824210c3227bb0ab28bfa

commit c3b07b88c4c2034c849824210c3227bb0ab28bfa
Author:     Michael Orlitzky <mjo@gentoo.org>
AuthorDate: 2022-01-17 17:19:22 +0000
Commit:     Michael Orlitzky <mjo@gentoo.org>
CommitDate: 2022-01-17 17:24:31 +0000

    sci-mathematics/octave: new upstream version 6.4.0.
    
    Bug: https://bugs.gentoo.org/776583
    Closes: https://bugs.gentoo.org/775254
    Package-Manager: Portage-3.0.28, Repoman-3.0.3
    Signed-off-by: Michael Orlitzky <mjo@gentoo.org>

 sci-mathematics/octave/Manifest            |   1 +
 sci-mathematics/octave/octave-6.4.0.ebuild | 204 +++++++++++++++++++++++++++++
 2 files changed, 205 insertions(+)