os icon indicating copy to clipboard operation
os copied to clipboard

firefox/131.0.3 package update

Open octo-sts[bot] opened this issue 1 year ago • 1 comments

octo-sts[bot] avatar Oct 14 '24 05:10 octo-sts[bot]

Open AI suggestions to solve the build error:

The error log indicates that there is an issue with building the Firefox package. The specific error is that the revision 'FIREFOX_131_0_3_RELEASE' is unknown, leading to a failure in the build process. Here are some steps to resolve the issue:

1. **Verify the Tag**: Check if the tag 'FIREFOX_131_0_3_RELEASE' exists in the repository. If it doesn't, you may need to create it or use a different, valid tag.

2. **Update Build Scripts**: If the tag is incorrect, update the Makefile or build script to reference a valid tag.

3. **Check Build Environment**: Ensure that the build environment is correctly set up and that all necessary dependencies are installed.

4. **Re-run the Build**: After making the necessary changes, try running the build process again.

The error log also shows that the process completed with exit code 2, indicating a failure in the make process.

octo-sts[bot] avatar Oct 14 '24 06:10 octo-sts[bot]

Package firefox: Click to expand/collapse

Package firefox:

.PKGINFO metadata:

  (
  	"""
  	# Generated by melange
  	pkgname = firefox
- 	pkgver = 131.0.2-r1
+ 	pkgver = 131.0.3-r0
  	arch = x86_64
- 	size = 255416831
+ 	size = 255431304
  	origin = firefox
  	pkgdesc = Firefox web browser
  	url = 
- 	commit = 309ab56d1aa0feac08393b8622761d0198c0ba63
- 	builddate = 1728594642
+ 	commit = 5d86a33643d1c64f9b0fee72c0b8e4457e2f53d7
+ 	builddate = 1728953041
  	license = GPL-3.0-only AND LGPL-2.1-only AND LGPL-3.0-only AND MPL-2.0
  	depend = mesa-gl
  	... // 48 identical lines
  	# vendored = so:libssl3.so=0
  	# vendored = so:libxul.so=0
- 	datahash = 187a4c738af5c2ca0b978e9bf3a21fd1ff1190a007c5c11fa55743d666eb4e43
+ 	datahash = ab620bb48317baeec9047fccf4b2f8494ca8ec91eee5d15c881c63d05ce87a00
  	"""
  )

Modified: /usr/lib/firefox/application.ini Modified: /usr/lib/firefox/browser/omni.ja Modified: /usr/lib/firefox/crashreporter Modified: /usr/lib/firefox/firefox Modified: /usr/lib/firefox/firefox-bin Modified: /usr/lib/firefox/libxul.so Modified: /usr/lib/firefox/omni.ja Modified: /usr/lib/firefox/platform.ini Modified: /usr/lib/firefox/updater

malcontent found differences: Click to expand/collapse

Changed: /tmp/wolfictl-apk-3761078723/firefox/usr/lib/firefox/libxul.so

Moved: firefox/var/lib/db/sbom/firefox-131.0.2-r1.spdx.json -> /tmp/wolfictl-apk-3761078723/firefox/var/lib/db/sbom/firefox-131.0.3-r0.spdx.json (similarity: 0.98)

github-actions[bot] avatar Oct 15 '24 01:10 github-actions[bot]

Open AI suggestions to solve the build error:

The error log indicates that the script is failing to open the files `usr/bin/firefox` and `usr/bin/firefox-bin` because they do not exist. Here are some steps to resolve the issue:

1. **Verify Firefox Installation**: Check if Firefox is installed by running `which firefox` in the terminal.
2. **Install Firefox**: If Firefox is not installed, you can install it using:
   - For Debian/Ubuntu: `sudo apt-get install firefox`
   - For Fedora: `sudo dnf install firefox`
3. **Check the Correct Path**: Use `whereis firefox` to find the correct path to the Firefox executable.
4. **Update the Script**: Modify the script or configuration to use the correct path to the Firefox executable.
5. **Check Permissions**: Ensure that the user running the script has the necessary permissions to access the directory and files.

octo-sts[bot] avatar Oct 15 '24 01:10 octo-sts[bot]