Package Details: graphqlmap-git r63.59305d7-1

Git Clone URL: https://aur.archlinux.org/graphqlmap-git.git (read-only, click to copy)
Package Base: graphqlmap-git
Description: scripting engine to interact with a GraphQL endpoint for pentesting purposes
Upstream URL: https://github.com/swisskyrepo/GraphQLmap
Licenses: MIT
Conflicts: graphqlmap
Provides: graphqlmap
Submitter: cyrevolt
Maintainer: None
Last Packager: micwoj92
Votes: 0
Popularity: 0.000000
First Submitted: 2020-10-05 20:59 (UTC)
Last Updated: 2023-12-09 18:04 (UTC)

Latest Comments

CountMurphy commented on 2023-08-28 16:01 (UTC)

Current PKG fails to build, even with SKIP added for checksum. The following PKGBUILD is working:

_pyname=graphqlmap
pkgname=graphqlmap-git
pkgver=r4.6e313a8
pkgrel=1
pkgdesc="scripting engine to interact with a GraphQL endpoint for pentesting purposes"
arch=('any')
url="https://github.com/swisskyrepo/GraphQLmap"
license=('MIT')
depends=(
  'python'
  'python-argparse'
  'python-requests'
  'python-rl'
)
makedepends=(
  'git'
  'python-setuptools'
)
provides=("$_pyname")
conflicts=(graphqlmap)
options=(!emptydirs)
source=(
    git+https://github.com/swisskyrepo/$_pyname.git
)
sha512sums=('SKIP')

pkgver() {
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
  cd "$_pyname"
  python setup.py install --root="$pkgdir/" --optimize=1
  install -Dm 644 LICENSE $pkgdir/usr/share/licenses/${pkgname}/LICENSE
}

MarsSeed commented on 2023-07-18 23:28 (UTC)

Please set sha512sums=('SKIP'). Doesn't make sense to define a fixed checksum for a git repository.

dreieck commented on 2023-05-12 12:27 (UTC)

python-argparse must be removed from the depends array, see ↗ here.

Thanks for maintaining!

CountMurphy commented on 2022-07-25 20:16 (UTC)

Can't get the current repo to clone (just hangs) but I can clone manually. I think something in the PKGBUILD might have broken.

cyrevolt commented on 2020-10-05 22:28 (UTC)

Thanks, done!