AUR (en) - pa-applet-git (original) (raw)
Antiz commented on 2022-04-25 11:27 (UTC)
@a821 Thanks for pointing that out.
I corrected the PKGBUILD (through a pkgrel) by specifically listing all supported architectures in the $arch
array ('i686' 'x86_64' 'aarch64').
a821 commented on 2022-04-25 10:20 (UTC)
@Antiz the package should not use any
in the $arch
array as this is reserved for architecture-independent packages which this package is not (it contains compiled code). You would need to list all supported architectures in $arch
. Check https://wiki.archlinux.org/title/PKGBUILD#arch
Alternatively for ARM machines and others, the PKGBUILD can be anyway built by passing -A
to makepkg(8)
Antiz commented on 2022-04-22 18:30 (UTC)
The correction has been pushed !
Everyone should now be able to build this package again.
Additionally, I changed the "arch" variable's value to "any" so you can now build this package on ARM machines as well (such as Raspberry PI for instance).
I also added every past maintainers as contributors.
k4rakara commented on 2022-04-22 18:07 (UTC)
@Antiz Thank you! Also, don't worry too much about the pronouns thing, I hadn't updated my name and pronouns on the AUR until today. It means a lot more than you'd think :)
Antiz commented on 2022-04-22 17:59 (UTC) (edited on 2022-04-22 18:08 (UTC) by Antiz)
@k4rakara Thank you, I adopted the package and will push the corrections as soon as possible.
Good luck for your studies tho, I hope they'll go well !
By the way, sorry for calling you "he/him", I wans't aware of your pronouns back then.
Anyway I'll push the corrected PKGBUILD soon so this package becomes "buildable" again
k4rakara commented on 2022-04-22 17:50 (UTC)
@Antiz, @zazavo: Apologies for not getting back to you all sooner. I'm currently in the midst of my senior year of highschool, and don't have the time to maintain this package. Either of you are welcome to take ownership of the package.
Antiz commented on 2022-04-20 13:22 (UTC) (edited on 2022-04-20 13:22 (UTC) by Antiz)
@zuzavo Well, I gave the needed corrections to @k4rakara by email and I also said to him that if he doesn't have enough time or if he lost interest in maintaining this package, I was down to adopt it and correct it myself.
I hope I'll get an answer, but if I do not have any response by the end of the month, I'll probably submit an orphan request.
zuzavo commented on 2022-04-20 12:15 (UTC)
Thanks @Antiz. I also sent an email to @k4rakara, but without any result.. It would be fine if you become the maintainer of this package if @k4rakara has no time or lost interest to continue.
Antiz commented on 2022-04-20 10:34 (UTC) (edited on 2022-04-20 12:46 (UTC) by Antiz)
I managed to correct the PKGBUILD by modifying the "source" variable's value like so :
source=("$pkgname"::git+$url)
I sent @k4rakara an email with the correction so he can either push it or orphan the package so I can adopt it and push it myself.
Here's the corrected PKGBUILD :
# Maintainer: Colin Reeder <colin AT reederhome DOT net>
pkgname=pa-applet-git
pkgver=19.3b4f8b3
pkgrel=1
pkgdesc="PulseAudio control applet"
arch=(i686 x86_64)
url="https://github.com/fernandotcl/pa-applet"
license=('BSD')
depends=('gtk3' 'libnotify' 'libpulse')
makedepends=('git')
options=('!libtool')
source=("$pkgname"::git+$url)
md5sums=('SKIP')
pkgver() {
cd "$pkgname"
echo <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo stretchy="false">(</mo><mi>g</mi><mi>i</mi><mi>t</mi><mi>r</mi><mi>e</mi><mi>v</mi><mo>−</mo><mi>l</mi><mi>i</mi><mi>s</mi><mi>t</mi><mo>−</mo><mo>−</mo><mi>c</mi><mi>o</mi><mi>u</mi><mi>n</mi><mi>t</mi><mi>H</mi><mi>E</mi><mi>A</mi><mi>D</mi><mo stretchy="false">)</mo><mi mathvariant="normal">.</mi></mrow><annotation encoding="application/x-tex">(git rev-list --count HEAD).</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mopen">(</span><span class="mord mathnormal" style="margin-right:0.03588em;">g</span><span class="mord mathnormal">i</span><span class="mord mathnormal">t</span><span class="mord mathnormal">re</span><span class="mord mathnormal" style="margin-right:0.03588em;">v</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">−</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="base"><span class="strut" style="height:0.7778em;vertical-align:-0.0833em;"></span><span class="mord mathnormal" style="margin-right:0.01968em;">l</span><span class="mord mathnormal">i</span><span class="mord mathnormal">s</span><span class="mord mathnormal">t</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">−</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord">−</span><span class="mord mathnormal">co</span><span class="mord mathnormal">u</span><span class="mord mathnormal">n</span><span class="mord mathnormal">t</span><span class="mord mathnormal" style="margin-right:0.08125em;">H</span><span class="mord mathnormal" style="margin-right:0.05764em;">E</span><span class="mord mathnormal">A</span><span class="mord mathnormal" style="margin-right:0.02778em;">D</span><span class="mclose">)</span><span class="mord">.</span></span></span></span>(git rev-parse --short HEAD)
}
build() {
cd "$srcdir/$pkgname"
CFLAGS+=" -Wno-error"
./autogen.sh
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir/" install
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
zuzavo commented on 2022-04-10 12:57 (UTC) (edited on 2022-04-10 12:58 (UTC) by zuzavo)
Hello, yesterday I sent an email to K4rakara asking him about if he could solved the problem with the new GitHub standards. I have tried local workarounds but without any success. I hope he responds or fix this issue.