Package Details: pa-applet-git r19.3b4f8b3-8

Git Clone URL: https://aur.archlinux.org/pa-applet-git.git (read-only, click to copy)
Package Base: pa-applet-git
Description: PulseAudio control applet
Upstream URL: https://github.com/fernandotcl/pa-applet
Keywords: applet control pa pulseaudio system systray tray volume
Licenses: BSD
Submitter: arcetera
Maintainer: Antiz
Last Packager: Antiz
Votes: 35
Popularity: 0.22
First Submitted: 2015-09-25 22:21 (UTC)
Last Updated: 2023-02-10 18:07 (UTC)

Latest Comments

1 2 3 Next › Last »

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 $(git rev-list --count HEAD).$(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.