Package Details: pkgbrowser 0.28.1-4

Git Clone URL: https://aur.archlinux.org/pkgbrowser.git (read-only, click to copy)
Package Base: pkgbrowser
Description: A utility for browsing pacman databases and the AUR
Upstream URL: https://codeberg.org/kachelaqa/pkgbrowser
Licenses: GPL2
Submitter: kachelaqa
Maintainer: kachelaqa
Last Packager: kachelaqa
Votes: 283
Popularity: 0.78
First Submitted: 2011-04-20 18:18 (UTC)
Last Updated: 2024-12-23 20:29 (UTC)

Latest Comments

1 2 3 4 5 6 .. 20 Next › Last »

kachelaqa commented on 2024-12-23 22:32 (UTC) (edited on 2024-12-23 22:33 (UTC) by kachelaqa)

@yochananmarqos I'm glad you got the message. Next time this happens, I may break out the popcorn and leave it for a week instead of updating it the next day.

yochananmarqos commented on 2024-12-23 22:10 (UTC)

@kachelaqa: You do realize how selfish that sounds, right?

Fine, do whatever you want. Have fun!

kachelaqa commented on 2024-12-23 21:39 (UTC)

It's there for the benefit of the code author (i.e. me). I don't care about any trivial inconvenience to other users, nor whether it makes sense to people who aren't familiar with the code.

yochananmarqos commented on 2024-12-23 20:33 (UTC)

@kachelaqa: The Python version restriction makes no sense. Users are responsible for rebuilding their own AUR packages. If the restriction wasn't there, there would be nothing for you to do.

trux commented on 2024-12-22 22:51 (UTC)

Small change in PKGBUILD to fix the error: python>=3.13

blackhole commented on 2024-12-22 16:01 (UTC)

I tried to remove 'python<3.13' but I have errors

rafaelff commented on 2024-12-17 04:37 (UTC)

Python 3.13.1 landed core-testing repository and it breaks the 'python<3.13' dependency in the PKGBUILD.

galvez_65 commented on 2024-09-15 16:35 (UTC)

1+ for @siliconmeadow's patch applied it and it build successfully

siliconmeadow commented on 2024-09-15 14:45 (UTC)

Due to pacman 7 out now, I did part of what @becko suggested and removed the upper limit version of pacman:

diff --git a/PKGBUILD b/PKGBUILD
index 2fdb04d..f300024 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@ pkgdesc='A utility for browsing pacman databases and the AUR'
 arch=('x86_64')
 url="https://codeberg.org/kachelaqa/$pkgname"
 license=('GPL2')
-depends=('pacman>=4.1' 'pacman<6.2' 'python>=3.2' 'python<3.13' 'python-pyqt5')
+depends=('pacman>=4.1' 'python>=3.2' 'python<3.13' 'python-pyqt5')
 makedepends=('python-setuptools')
 install="$pkgname.install"
 source=("https://codeberg.org/kachelaqa/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz")


Cody_Learner commented on 2024-04-28 18:44 (UTC) (edited on 2024-04-28 19:22 (UTC) by Cody_Learner)

Had to add python-setuptools to the depends array in the PKGBUILD to get it to build.

EDIT:

OK, I rebuild pkgbrowser adding a makedepends array in the PKGBUILD. ie: makedepends=('python-setuptools') inserted below the depends array.

Pkgbrowser doesn't need python-setuptools to run, so no point in having it listed as a dependency.

I build both with my AUR helper, https://github.com/Cody-Learner/aurch , and in a clean chroot using pkgctl build. The 'pkgctl' script is provided by the devtools package.