PKGBUILD builds
Forum rules
This General Discussion board is meant for topics that are still relevant to Pale Moon, web browsers, browser tech, UXP applications, and related, but don't have a more fitting board available.
Please stick to the relevance of this forum here, which focuses on everything around the Pale Moon project and its user community. "Random" subjects don't belong here, and should be posted in the Off-Topic board.
This General Discussion board is meant for topics that are still relevant to Pale Moon, web browsers, browser tech, UXP applications, and related, but don't have a more fitting board available.
Please stick to the relevance of this forum here, which focuses on everything around the Pale Moon project and its user community. "Random" subjects don't belong here, and should be posted in the Off-Topic board.
- frostknight
- Lunatic
- Posts: 370
- Joined: 2022-08-10, 02:25
PKGBUILD builds
Does anyone know how to make a PKGBUILD for palemoon? I want to use my custom .mozconfig.
Problem is, i tried modifying one on aur, but it keeps resetting itself to the old .mozconfig setup... no matter what I do. Archlinux has started to be a jerk on this problem with more and more packages lol...
I wasn't sure where I should post this, so I posted it here.
Can anyone manipulate the regular palemoon PKGBUILD to use with
This is the .mozconfig I want to use:
https://upload.disroot.org/r/amodzZMX#e ... AVhh1irwM=
I uploaded it there.
I don't need python2.7 to be changed to tauthon, I have an archlinux qcow2 I can use. Just need that other problem fixed.
Problem is, i tried modifying one on aur, but it keeps resetting itself to the old .mozconfig setup... no matter what I do. Archlinux has started to be a jerk on this problem with more and more packages lol...
I wasn't sure where I should post this, so I posted it here.
Can anyone manipulate the regular palemoon PKGBUILD to use with
This is the .mozconfig I want to use:
https://upload.disroot.org/r/amodzZMX#e ... AVhh1irwM=
I uploaded it there.
I don't need python2.7 to be changed to tauthon, I have an archlinux qcow2 I can use. Just need that other problem fixed.
Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
Re: PKGBUILD builds
Are you @Rakiri on AUR?
This is basically what maintainer there also commented.
Yes, all you have to do is change this file then update sums https://aur.archlinux.org/cgit/aur.git/ ... h=palemoonfrostknight wrote: ↑2024-10-07, 12:50Does anyone know how to make a PKGBUILD for palemoon? I want to use my custom .mozconfig.
This is basically what maintainer there also commented.
Then you did this incorrectly, this has nothing to do with Arch Linux. You just don't know how to modify them.frostknight wrote: ↑2024-10-07, 12:50Problem is, i tried modifying one on aur, but it keeps resetting itself to the old .mozconfig setup... no matter what I do. Archlinux has started to be a jerk on this problem with more and more packages lol...
-
- Astronaut
- Posts: 683
- Joined: 2015-07-30, 20:29
- Location: Vaughan, ON, Canada
Re: PKGBUILD builds
I use Gentoo linux, which has "ebuilds" that work like Arch "pkgbuild". Step 1) Try to...frostknight wrote: ↑2024-10-07, 12:50Does anyone know how to make a PKGBUILD for palemoon? I want to use my custom .mozconfig.
Problem is, i tried modifying one on aur, but it keeps resetting itself to the old .mozconfig setup... no matter what I do. Archlinux has started to be a jerk on this problem with more and more packages lol...
I wasn't sure where I should post this, so I posted it here.
Can anyone manipulate the regular palemoon PKGBUILD to use with
grep .mozconfig <name of pkgbld file>
This will give you an idea of what it's doing to .mozconfig so you can look at changing it. Warning: Gentoo has a checksum feature that blocks modified ebuilds unless you jump through hoops to "authorize" the modified ebuild. I wonder if Arch does the same. This is all in the name of security.
Some comments on the .mozconfig... Get rid offrostknight wrote: ↑2024-10-07, 12:50This is the .mozconfig I want to use:oROjW8AkrUeNSP4T+HAVhh1irwM=
ac_add_options --with-system-jpeg
ac_add_options --with-system-zlib
ac_add_options --with-system-bz2
ac_add_options --enable-system-pixman
It is generally a BAD idea to unnecessarily use system libs. See viewtopic.php?f=5&t=23706 for a detailed explanation.
Re: enable-optimize: I only run the build on the machine it's built on, so I throw in "-march=native" to get all the cpu optimizations possible. Note: do not use "-march=native" if you want to run the build on another machine than the one it's built on.
ac_add_options --enable-optimize="-O2 -march=native -mfpmath=sse -fomit-frame-pointer -pipe -fno-unwind-tables -fno-asynchronous-unwind-tables -w"
mk_add_options MOZ_MAKE_FLAGS="-j1"
gcc uses up to 2 gigabytes per parallel job. I generally...
* take system ram amount
* subtract 2-to-4 gigs for X, plus running apps
* divide remaining gihabytes by 2
Example: You have a desktop with 16 gigs of ram. Subtract 4 gigs for X and running apps. That leaves 12 gigs. Divide by 2, and you can run "-j6" without hitting swap. This does not affect the final product... but it does build a lot faster than "-j1"
Nitpick: I see you have two items listed twice...
ac_add_options --disable-alsa
ac_add_options --enable-sndio
It probably won't hurt, probably just cosmetic.
There are 2 kinds of people in this world...
1) Those who can extrapolate from incomplete data
1) Those who can extrapolate from incomplete data
- frostknight
- Lunatic
- Posts: 370
- Joined: 2022-08-10, 02:25
Re: PKGBUILD builds
This config mostly has worked for me though. When I compile it outside of a PKGBUILD.Walter Dnes wrote: ↑2024-10-07, 15:10It is generally a BAD idea to unnecessarily use system libs. See viewtopic.php?f=5&t=23706 for a detailed explanation.
The problem is the PKGBUILD keeps resetting to its older config despite me making my .mozconfig the mozconfig.in
Well... I'll check what he wrote, but I must be missing something.micwoj92 wrote: ↑2024-10-07, 13:55Yes, all you have to do is change this file then update sums https://aur.archlinux.org/cgit/aur.git/ ... h=palemoon
This is basically what maintainer there also commented.
Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
- frostknight
- Lunatic
- Posts: 370
- Joined: 2022-08-10, 02:25
Re: PKGBUILD builds
Actually, I kind of changed my mind for a moment, to try this on my Hyperbola OS because it keeps failing on archlinux for some egregious unknown reason.
Only problem is, this:
git+"https://repo.palemoon.org/MoonchildProd ... =${_commit}
Seems to keep failing
EDIT: NVM, it was the git+ part...
weird.
Can anyone modify that pkgbuild and make it actually work on Hyperbola? I am beyond stumped.
I was originally going to build it this way on archlinux so I could use it for other OS including Hyperbola.
But I run into issues no matter what it seems lol.
That PKGBUILD keeps pretending it cannot find application palemoon even though its very close by. Its weird.
Only problem is, this:
git+"https://repo.palemoon.org/MoonchildProd ... =${_commit}
Seems to keep failing
EDIT: NVM, it was the git+ part...
weird.
Can anyone modify that pkgbuild and make it actually work on Hyperbola? I am beyond stumped.
I was originally going to build it this way on archlinux so I could use it for other OS including Hyperbola.
But I run into issues no matter what it seems lol.
That PKGBUILD keeps pretending it cannot find application palemoon even though its very close by. Its weird.
Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
Re: PKGBUILD builds
Now, if you could only post some build logfrostknight wrote: ↑2024-10-08, 01:03Actually, I kind of changed my mind for a moment, to try this on my Hyperbola OS because it keeps failing on archlinux for some egregious unknown reason.
I didn't try this on hyperbola, your mozconfig was missing MOZ_OBJDIR, I added this and changed back tauthon to python2. These are the only 2 changes, diff below:frostknight wrote: ↑2024-10-08, 01:03Can anyone modify that pkgbuild and make it actually work on Hyperbola? I am beyond stumped.
I was originally going to build it this way on archlinux so I could use it for other OS including Hyperbola.
But I run into issues no matter what it seems lol.
That PKGBUILD keeps pretending it cannot find application palemoon even though its very close by. Its weird.
Code: Select all
diff --git a/PKGBUILD b/PKGBUILD
index 3aee41f..d843018 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -15,8 +15,7 @@ pkgdesc="Open source web browser based on Firefox focusing on efficiency."
arch=('i686' 'x86_64')
url="https://www.palemoon.org/"
license=('MPL-2.0')
-depends=('gtk2' 'dbus-glib' 'desktop-file-utils' 'libxt' 'mime-types' 'alsa-lib'
- 'startup-notification')
+depends=('gtk2' 'desktop-file-utils' 'libxt' 'mime-types' 'sndio')
makedepends=('python2' 'unzip' 'zip' 'yasm' 'libpulse' 'git')
optdepends=('libpulse: PulseAudio audio driver'
'ffmpeg: various video and audio support')
@@ -26,10 +25,10 @@ source=(git+"https://repo.palemoon.org/MoonchildProductions/${_repo}?signed#comm
validpgpkeys=('3DAD8CD107197488D2A2A0BD40481E7B8FCF9CEC')
sha1sums=('SKIP'
'SKIP'
- '999bbd13d2149a392d620901caf61ffeaf3f86b9')
+ 'ef4e614cd4e9ea5fab743b8c6faa1608b7fc7215')
sha256sums=('SKIP'
'SKIP'
- '6fa73d13a3dc5dd5bb984bf2a37e2074ca256df7988f72289fb649a704405bc5')
+ 'f69acb82fe1c26ad3f41e4b72301f78ec910e6909f4dbad105d63d239b7fa695')
prepare() {
sed 's#%SRCDIR%#'"${srcdir}"'#g' mozconfig.in > mozconfig
diff --git a/mozconfig.in b/mozconfig.in
index 132d360..a379f48 100644
--- a/mozconfig.in
+++ b/mozconfig.in
@@ -1,31 +1,78 @@
mk_add_options MOZ_OBJDIR=%SRCDIR%/pmbuild
+# Clear this if not a 64bit build
+_BUILD_64=1
-ac_add_options --enable-official-branding
-export MOZILLA_OFFICIAL=1
-export MOZ_PKG_SPECIAL=gtk2
-
+# Set GTK Version to 2 or 3
+_GTK_VERSION=2
+ac_add_options --prefix=/usr
+mk_add_options PYTHON=/usr/bin/python2
+# Standard build options for Pale Moon
ac_add_options --enable-application=palemoon
-ac_add_options --enable-optimize="-O2 -w"
-ac_add_options --enable-default-toolkit=cairo-gtk2
+ac_add_options --enable-optimize="-O2 -w -mfpmath=sse -fomit-frame-pointer -pipe -fno-unwind-tables -fno-asynchronous-unwind-tables"
ac_add_options --enable-jemalloc
ac_add_options --enable-strip
ac_add_options --enable-devtools
ac_add_options --enable-av1
-ac_add_options --enable-jxl
-ac_add_options --disable-webrtc
+
+# Iceweasel-UXP
+ac_add_options --disable-official-branding
+
+# Disable bloat
+ac_add_options --disable-safe-browsing
+ac_add_options --disable-url-classifier
+ac_add_options --disable-mozril-geoloc
+ac_add_options --disable-nfc
+ac_add_options --disable-synth-pico
ac_add_options --disable-gamepad
+ac_add_options --disable-startup-notification
ac_add_options --disable-tests
ac_add_options --disable-debug
ac_add_options --disable-necko-wifi
-ac_add_options --disable-updater
+ac_add_options --disable-dbus
+ac_add_options --disable-userinfo
+ac_add_options --disable-sync
+ac_add_options --disable-pulseaudio
+ac_add_options --disable-alsa
+ac_add_options --enable-sndio
+
+# System Libraries
+
+ac_add_options --with-system-jpeg
+ac_add_options --with-system-zlib
+ac_add_options --with-system-bz2
+
+
+# ac_add_options --enable-system-ffi
+ac_add_options --enable-system-pixman
+
+# Features
+ac_add_options --enable-default-toolkit=cairo-gtk2
+
ac_add_options --disable-gconf
-ac_add_options --with-pthreads
-
-ac_add_options --x-libraries=/usr/lib
+# ac_add_options --enable-proxy-bypass-protection
+ac_add_options --disable-crashreporter
+ac_add_options --disable-alsa
+ac_add_options --enable-sndio
+ac_add_options --disable-updater
+ac_add_options --disable-gio
-# Use python2
-mk_add_options PYTHON=/usr/bin/python2
+mk_add_options MOZ_MAKE_FLAGS="-j1"
+
+# STRIP_FLAGS="--strip-debug"
+
+# Other
+# mk_add_options MOZ_OBJDIR=@TOPSCRDIR@/moz-objdir
+
+# vim:set ft=sh:
+
+# Please see https://www.palemoon.org/redist.shtml for restrictions when using the official branding.
+# export MOZILLA_OFFICIAL=1
+
+# Processor architecture specific build options
+if [ -n "$_BUILD_64" ]; then
+ ac_add_options --x-libraries=/usr/lib64
+else
+ ac_add_options --x-libraries=/usr/lib
+fi
-# uncomment the following to limit the number of parallel build jobs
-# remember to run updpkgsums after, or you'll get a checksum failure
-#mk_add_options MOZ_MAKE_FLAGS="-j4"
+export MOZ_PKG_SPECIAL=gtk$_GTK_VERSION
- frostknight
- Lunatic
- Posts: 370
- Joined: 2022-08-10, 02:25
Re: PKGBUILD builds
This is what happens and uh I posted an upload recently... but I will do so again:
https://upload.disroot.org/r/UtpvvLS_#b ... oaFDAppUw=
Can you modify the pkgbuild and mozconfig in a way that they could work on archlinux or hyperbola? Then send back. I am a bit lost here
This is what happens when I use the pkgbuild and mozconfig.in
==> Making package: palemoon 1:33.3.1-1 (Tue 08 Oct 2024 10:07:01 AM EDT)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Found Pale-Moon
-> Found UXP
-> Found mozconfig.in
==> WARNING: Skipping all source file integrity checks.
==> Extracting sources...
==> Starting build()...
/home/localuser/palemoon/Info/PKGBUILD: line 35: cd: UXP: Not a directory
==> ERROR: A failure occurred in build().
Aborting...
Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
Re: PKGBUILD builds
I already posted diff to fix your issue in my previous post. This is also first time I am seeing your broken PKGBUILD, previously you have only sent mozconfig.frostknight wrote: ↑2024-10-08, 14:10This is what happens and uh I posted an upload recently... but I will do so again:
https://upload.disroot.org/r/UtpvvLS_#b ... oaFDAppUw=
Can you modify the pkgbuild and mozconfig in a way that they could work on archlinux or hyperbola? Then send back. I am a bit lost here
It quite literally tells you what the error is, it tries to cd into somewhere that doesn't exist.frostknight wrote: ↑2024-10-08, 14:10This is what happens when I use the pkgbuild and mozconfig.in
==> Making package: palemoon 1:33.3.1-1 (Tue 08 Oct 2024 10:07:01 AM EDT)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Found Pale-Moon
-> Found UXP
-> Found mozconfig.in
==> WARNING: Skipping all source file integrity checks.
==> Extracting sources...
==> Starting build()...
/home/localuser/palemoon/Info/PKGBUILD: line 35: cd: UXP: Not a directory
==> ERROR: A failure occurred in build().
Aborting...
You changed things without understanding why.
From quick look:
1. You are cd'ing into wrong directory, which is not there. You modified the PKGBUILD to `cd UXP` from `cd ${_repo}` _repo variable is Pale-Moon.
2. You got rid of prepare(), this is the issue why your mozconfig doesn't work, look at the sed line there.
3. Removing prepare() also broke platform submodule, because it's being updated there, it's impossible to build that way.
4. Your PKGBUILD always gets latest sources, but you are not using pkgver().
- frostknight
- Lunatic
- Posts: 370
- Joined: 2022-08-10, 02:25
Re: PKGBUILD builds
My bad, how do I make needed changes though? Do I need to use your patch?
I uploaded an older version of the mozconfig and PKGBUILD I had.
https://upload.disroot.org/r/caF6f6f_#b ... cfZs679ho=
https://upload.disroot.org/r/CdV6hV0q#o ... yIusPYxPM=
So I don't have a location you say, that is foolish I suppose.
I uploaded an older version of the mozconfig and PKGBUILD I had.
https://upload.disroot.org/r/caF6f6f_#b ... cfZs679ho=
https://upload.disroot.org/r/CdV6hV0q#o ... yIusPYxPM=
So I don't have a location you say, that is foolish I suppose.
Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
- frostknight
- Lunatic
- Posts: 370
- Joined: 2022-08-10, 02:25
Re: PKGBUILD builds
seems I screwed up, I added the wrong mozconfig.in and PKGBUILDS when I sent them to you;
https://upload.disroot.org/r/DXwPyBA7#h ... g1UPyNvug=
https://upload.disroot.org/r/_4x3Du_q#j ... PofaZnTSQ=
These have been updated with your suggestions more or less, except the python 2 one.
But it still has link making issues for some reason
https://upload.disroot.org/r/DXwPyBA7#h ... g1UPyNvug=
https://upload.disroot.org/r/_4x3Du_q#j ... PofaZnTSQ=
These have been updated with your suggestions more or less, except the python 2 one.
But it still has link making issues for some reason
Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
Re: PKGBUILD builds
Here is what you do, step by step:
1. Copy the patch from my post, save it as patch.patch as example
2. git clone https://aur.archlinux.org/palemoon.git
3. cd palemoon
4. move your patch.patch file into pwd
5. patch -i patch.patch
6. makepkg -s
7. voila, package will be ready.
1. Copy the patch from my post, save it as patch.patch as example
2. git clone https://aur.archlinux.org/palemoon.git
3. cd palemoon
4. move your patch.patch file into pwd
5. patch -i patch.patch
6. makepkg -s
7. voila, package will be ready.
- frostknight
- Lunatic
- Posts: 370
- Joined: 2022-08-10, 02:25
Re: PKGBUILD builds
micwoj92 wrote: ↑2024-10-08, 16:37Here is what you do, step by step:
1. Copy the patch from my post, save it as patch.patch as example
2. git clone https://aur.archlinux.org/palemoon.git
3. cd palemoon
4. move your patch.patch file into pwd
5. patch -i patch.patch
6. makepkg -s
7. voila, package will be ready.
Hmm... odd it does this now:
patching file PKGBUILD
Hunk #1 FAILED at 15.
Hunk #2 FAILED at 26.
2 out of 2 hunks FAILED -- saving rejects to file PKGBUILD.rej
patching file mozconfig.in
patch unexpectedly ends in middle of line
patch: **** malformed patch at line 126:
I must have copied it wrong or something?
Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
Re: PKGBUILD builds
You did not copy all the contents of the patch. For me this file is 127 lines long. Last of that file is `+export MOZ_PKG_SPECIAL=gtk$_GTK_VERSION`.
- frostknight
- Lunatic
- Posts: 370
- Joined: 2022-08-10, 02:25
Re: PKGBUILD builds
My bad, I realized what you meant after I posted. I need to start from scratch lol.
This time ran into this:
==> Making package: palemoon 1:33.4.0.1-1 (Tue 08 Oct 2024 02:00:21 PM EDT)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Cloning Pale-Moon?signed git repo...
Cloning into bare repository '/home/localuser/palemoon/Pale-Moon?signed'...
fatal: https://repo.palemoon.org/MoonchildProd ... /info/refs not valid: could not determine hash algorithm; is this a git repository?
==> ERROR: Failure while downloading Pale-Moon?signed git repo
Aborting...
Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
Re: PKGBUILD builds
Please just forget about your current PKGBUILD, start with a new location, new download executing 7 steps I said. Nothing more and nothing less and then share your result.
- frostknight
- Lunatic
- Posts: 370
- Joined: 2022-08-10, 02:25
Re: PKGBUILD builds
Actually, I just did.
Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
Re: PKGBUILD builds
No, you did not, because as of now aur/palemoon is current in version 1:33.4.0-1, your build message indicated building 1:33.4.0.1-1 which means you must have changed something.
- frostknight
- Lunatic
- Posts: 370
- Joined: 2022-08-10, 02:25
Re: PKGBUILD builds
I'll try doing it on archlinux again. Hyperbola didn't work maybe for the signed commit problem. It uses an older pacman.
Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
- frostknight
- Lunatic
- Posts: 370
- Joined: 2022-08-10, 02:25
Re: PKGBUILD builds
Does it change that much?
Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
- frostknight
- Lunatic
- Posts: 370
- Joined: 2022-08-10, 02:25
Re: PKGBUILD builds
Edit: its working now, building I mean
It seems its because I was using the old pacman in hyperbola. Its before rust was added.
It seems its because I was using the old pacman in hyperbola. Its before rust was added.
Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!
If you wish to be humbled, try to exalt yourself long term If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Say NO to Fascism and Corporatism as much as possible!
Also, Peace Be With us All!