Package Details: deadbeef-git r12073.2ca653c82-1

Git Clone URL: https://aur.archlinux.org/deadbeef-git.git (read-only, click to copy)
Package Base: deadbeef-git
Description: A GTK+ audio player for GNU/Linux (devel branch)
Upstream URL: https://deadbeef.sourceforge.io/
Licenses: zlib, GPL-2.0-or-later, LGPL-2.1-or-later
Conflicts: deadbeef
Provides: deadbeef
Submitter: archtux
Maintainer: ToadKing
Last Packager: ToadKing
Votes: 120
Popularity: 0.000344
First Submitted: 2009-08-21 13:16 (UTC)
Last Updated: 2026-03-21 20:10 (UTC)

Required by (43)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 12 Next › Last »

dreieck commented on 2021-04-24 11:39 (UTC) (edited on 2021-04-24 11:47 (UTC) by dreieck)

Dear maintainer,

thanks for maintaining this package.

Can you please update pkgver() such that it includes the upstream software version?

git describe --tags gives me 1.8.7-190-g6757aac40, so there I assume is a version 1.8.7.

And then change provides=('deadbeef') to provides=("deadbeef=${pkgver})? There is at least one package, that has explicit version dependencies (>=0.6) on deadbeef.

And, don't forget to then increment epoch, too, since the $pkgver-scheme changed, i.e. setting epoch=1.

Here is a pkgver() you could use:

pkgver() {
  cd "$srcdir/deadbeef"
  _gitdescribe="$(git describe --tags)"
  _ver="$(awk -F- '{print $1}' <<<"${_gitdescribe}")"
  _subver="$(awk -F- '{print $2}' <<<"${_gitdescribe}")"
  _rev="$(git rev-list HEAD --count)"
  _date="$(git log -1 --format=%cd --date=format:%Y%m%d)"
  _hash="$(git rev-parse --short HEAD)"
  if [ -z "${_ver}" ]; then
    error "Could not determine version. Aborting."
    return 11
  else
    printf '%s' "${_ver}.${_subver}+r${_rev}.${_date}.${_hash}"
  fi
}

Thanks again for maintaining!

ToadKing commented on 2021-02-06 16:35 (UTC)

soloturn: I think that should be fixed in your package by marking it as providing libblocksruntime.

soloturn commented on 2021-02-06 10:15 (UTC)

updated libdispatch-git to newest now, providing both libblocksruntime and libdispatch.

ToadKing commented on 2020-09-19 18:05 (UTC)

New changes from upstream now require clang to build and require libblocksruntime and libdispatch at runtime. Currently only the last.fm and notify plugins actually require these but the upstream dev is working on moving more plugins and core parts of deadbeef to also require them in the future, so they're hard dependencies.

ToadKing commented on 2020-07-10 13:16 (UTC)

DanEng1982, it still builds fine here. What compile errors are you getting, and are you building from a clean repo?

DanEng1982 commented on 2020-07-10 12:04 (UTC)

Dead yes, beefy not so much anymore. Broken, doesn't compile since two weeks or so on ArchDeepin.

ToadKing commented on 2020-07-05 17:06 (UTC)

I've adopted the package. Build should be fixed and added opusfile as an optional dependency. If you're using an AUR helper like yay make sure you do a clean build.

Soukyuu commented on 2020-07-05 11:54 (UTC)

I am not really using deadbeef anymore, so I disowned the package. Feel free to adopt.

zhqrbitee commented on 2020-07-03 22:02 (UTC)

It seems deadbeef has included new submodule 'external/mp4p' , so need to add 'git submodule init; git submodule update' in prepare function to sync everything, otherwise compile will fail.