Package Details: package-query 1.12-1

Git Clone URL: https://aur.archlinux.org/package-query.git (read-only, click to copy)
Package Base: package-query
Description: Query ALPM and AUR
Upstream URL: https://github.com/archlinuxfr/package-query/
Licenses: GPL
Submitter: tuxce
Maintainer: archlinuxfr (Skunnyk, f2404)
Last Packager: Skunnyk
Votes: 1154
Popularity: 0.22
First Submitted: 2010-03-24 23:18 (UTC)
Last Updated: 2021-06-02 15:03 (UTC)

Latest Comments

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

zaidan commented on 2022-07-13 08:17 (UTC)

Please remove the version from yajl dependency to support installing yajl-edenhill-git and yajl-git. Otherwise this package is incompatible with other packages - e.g: https://aur.archlinux.org/packages/kafkacat-avro-git

To resolve such issues, the best solution is to remove the version from the dependency: https://bbs.archlinux.org/viewtopic.php?pid=1715065#p1715065

depends=('pacman>=6.0' 'yajl')

maderios commented on 2022-02-25 11:59 (UTC)

@piussj2 "yaourt" is not an arch or aur package. It was an arch "aur helper" in the past, this not more the case.

piussj2 commented on 2022-02-24 02:34 (UTC)

Now I get:

/usr/lib/yaourt/util.sh, linha 190: 57058 Falha de segmentação (imagem do núcleo gravada)package-query "${PKGQUERY_C_ARG[@]}" "$@"

I install this version and git version is the same...

piussj2 commented on 2021-06-03 03:54 (UTC)

Thanks! =)

f2404 commented on 2021-06-02 15:06 (UTC)

The PR has been merged, version 1.12 has been released. Thanks!

malosasha commented on 2021-06-02 14:56 (UTC) (edited on 2021-06-02 14:59 (UTC) by malosasha)

There is a PR pending on the official github repo, until it is merged one can use this PKGBUILD :


pkgname=package-query
pkgver=1.11
pkgrel=1
pkgdesc="Query ALPM and AUR"
arch=('i686' 'x86_64' 'mips64el' 'armv6h' 'armv7h' 'arm' 'aarch64' 'pentium4')
url="https://github.com/archlinuxfr/package-query/"
license=('GPL')
depends=('pacman>=5.2' 'yajl>=2.0')
source=("git+https://github.com/egormanga/package-query#branch=fix-libalpm13")

build() {
  cd "$srcdir/$pkgname"
  ./autogen.sh
  ./configure --localstatedir=/var --prefix=/usr --sysconfdir=/etc --with-aur-url=https://aur.archlinux.org
  make
}

package ()
{
  cd "$srcdir/$pkgname"
  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et:
md5sums=('SKIP')

gile commented on 2021-06-02 11:14 (UTC)

Same here.

ktec commented on 2021-06-02 10:42 (UTC)

Just tried fresh clone from github, and makepkg -sicC and I get the

alpm-query.c:397:29: error: too few arguments to function ‘alpm_db_search’
  397 |         alpm_list_t *pkgs = alpm_db_search (db, targets);

error others seem to get.

jghodd commented on 2021-06-01 20:56 (UTC) (edited on 2021-06-01 22:02 (UTC) by jghodd)

all 3 aur helpers are broken because of this - yaourt, yay and paru. yaourt and yay come precompiled so no ability to re-link. paru tries to build an alpm unit and fails because of the changes to libalpm/alpm.h. please fix.