Package Details: feroxbuster-git 0.0.0-1

Git Clone URL: https://aur.archlinux.org/feroxbuster-git.git (read-only, click to copy)
Package Base: feroxbuster-git
Description: A fast, simple, recursive content discovery tool written in Rust.
Upstream URL: https://github.com/epi052/feroxbuster
Licenses: MIT
Conflicts: feroxbuster
Provides: feroxbuster
Submitter: spikecodes
Maintainer: theguy147
Last Packager: theguy147
Votes: 1
Popularity: 0.000000
First Submitted: 2020-10-18 18:30 (UTC)
Last Updated: 2021-04-30 09:12 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

cookiewookie commented on 2022-04-21 15:33 (UTC)

BUILD currently fails.

error: there is no argument named `loc`
   --> src/response.rs:423:32
    |
423 |                 format!("{} => {loc}", self.url())
    |                                ^^^^^

error[E0277]: expected a `FnMut<(char,)>` closure, found `[char; 37]`
  --> src/nlp/utils.rs:44:9
   |
43 |       text.replace(
   |            ------- required by a bound introduced by this call
44 | /         [
45 | |             '!', '\\', '"', '#', '$', '%', '&', '(', ')', '*', '+', ':', ';', '<', '=', '>', '?',
46 | |             '@', '[', ']', '^', '{', '}', '|', '~', ',', '\'', '“', '”', '’', '‘', '’', '‘', '/',
47 | |             '–', '—', '.',
48 | |         ],
   | |_________^ expected an `FnMut<(char,)>` closure, found `[char; 37]`
   |
   = help: the trait `FnMut<(char,)>` is not implemented for `[char; 37]`
   = note: required because of the requirements on the impl of `Pattern<'_>` for `[char; 37]`

For more information about this error, try `rustc --explain E0277`.
error: could not compile `feroxbuster` due to 2 previous errors
warning: build failed, waiting for other jobs to finish...
error: build failed
==> ERROR: A failure occurred in build().
    Aborting...
 -> error making: feroxbuster-git

theguy147 commented on 2021-04-29 11:27 (UTC)

@spikecodes is this package still maintained by you or has it been orphaned? it would be helpful if the pkgver fix and the shell completions could be added to the PKGBUILD file.

wfxr commented on 2021-03-06 02:41 (UTC)

Install the shell completions as well?

install -Dm644 "${_pkgname}/shell_completions/${_pkgname}.fish" "$pkgdir/usr/share/fish/vendor_completions.d/${_pkgname}.fish"
install -Dm644 "${_pkgname}/shell_completions/_${_pkgname}"     "$pkgdir/usr/share/zsh/site-functions/_${_pkgname}"

theguy147 commented on 2021-02-20 10:28 (UTC) (edited on 2021-02-20 10:29 (UTC) by theguy147)

the pkgver does not comply with the VCS package guidelines (https://wiki.archlinux.org/index.php/VCS_package_guidelines#Git). Could you plz fix that?

I would suggest something like

pkgver() { cd "{$_pkgname}" git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' }

spikecodes commented on 2020-10-23 21:24 (UTC)

Thanks, fixed.