Package Details: fzf-bibtex-git r70.53c49fa-1

Git Clone URL: https://aur.archlinux.org/fzf-bibtex-git.git (read-only, click to copy)
Package Base: fzf-bibtex-git
Description: Fzf for bibtex. Straightforward vim integration.
Upstream URL: https://github.com/msprev/fzf-bibtex
Licenses: GPL
Submitter: sonam
Maintainer: None
Last Packager: sonam
Votes: 0
Popularity: 0.000000
First Submitted: 2020-12-29 06:20 (UTC)
Last Updated: 2020-12-29 06:20 (UTC)

Dependencies (4)

Required by (0)

Sources (1)

Latest Comments

sonam commented on 2024-11-12 08:31 (UTC)

Thanks @chueewowee for making me aware of these issues. I'm no longer using this package (nor Arch in fact). I'm orphaning the package, feel free to take over!

chueewowee commented on 2024-11-12 01:00 (UTC) (edited on 2024-11-12 01:03 (UTC) by chueewowee)

failure to build: probably needs attention to package


==> Making package: fzf-bibtex-git r92.64316c2-1 (Tue 12 Nov 2024 00:58:33 GMT)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting pkgver()...
==> Starting build()...
pattern ./...: directory prefix . does not contain main module or its selected dependencies
==> ERROR: A failure occurred in build().
    Aborting...
error: failed to build 'fzf-bibtex-git-r70.53c49fa-1': 
error: packages failed to build: fzf-bibtex-git-r70.53c49fa-1

falsum commented on 2024-07-17 04:46 (UTC)

At least for me, I had to revise the PKGBUILD. More specifically, changing the build and package portions as follows worked for me:

build() {
  cd "${srcdir}/${_pkgname}"
  export GOPATH="$srcdir/build"

  for cmd in bibtex-ls bibtex-markdown bibtex-cite; do
    go install "github.com/msprev/${_pkgname}/cmd/${cmd}@latest"
  done
}

package() {
  install -Dm755 "$GOPATH/bin/bibtex-ls" "$pkgdir/usr/bin/bibtex-ls"
  install -Dm755 "$GOPATH/bin/bibtex-markdown" "$pkgdir/usr/bin/bibtex-markdown"
  install -Dm755 "$GOPATH/bin/bibtex-cite" "$pkgdir/usr/bin/bibtex-cite"
}

sonam commented on 2021-10-11 08:33 (UTC)

Hi @tapia, thanks for the comment! I've just tried to fix this, but the build seems to be failing for other reasons now. As I've stopped using this package a while ago, I hadn't noticed the PKGBUILD isn't functional. I'll try to fix it, but unfortunately my Go skills are pretty lacking, and it might take a few days. If you want to take over maintaining this package, let me know -- I'd be happy to pass it on!

tapia commented on 2021-10-10 12:26 (UTC) (edited on 2021-10-10 12:27 (UTC) by tapia)

Hi, I am getting the following error when trying to install this package:

==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting pkgver()...
==> Removing existing $pkgdir/ directory...
==> Starting build()...
missing $GOPATH
==> ERROR: A failure occurred in build().
    Aborting...

error making: fzf-bibtex-git