Package Details: beets-git 2.2.0.r25.g9110a1110-1

Git Clone URL: https://aur.archlinux.org/beets-git.git (read-only, click to copy)
Package Base: beets-git
Description: Flexible music library manager and tagger - git version
Upstream URL: https://beets.io/
Licenses: MIT
Conflicts: beets
Provides: beets
Submitter: demize
Maintainer: alex19EP (schan)
Last Packager: alex19EP
Votes: 23
Popularity: 0.011428
First Submitted: 2013-06-14 20:07 (UTC)
Last Updated: 2024-12-16 22:32 (UTC)

Dependencies (50)

Required by (12)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

j1simon commented on 2017-02-13 12:55 (UTC)

The completion file for ZSH isn't installed: beets/extra/_beet

Freso commented on 2017-01-11 12:50 (UTC)

beets-python3-git has been merged back into beets-git: https://aur.archlinux.org/cgit/aur.git/commit/?h=beets-git&id=d710fb89438a7810eabd83f35b699c798faa38bc - this package will get deleted soon, so if you're using this, you should switch back. :)

Archange commented on 2017-01-10 22:18 (UTC)

Should depends on python-mutagen instead of mutagen. See https://bugs.archlinux.org/task/52482.

kozaki commented on 2015-11-17 20:01 (UTC)

Suggest adding python2-pip to dependencies to put some oil for non-Python guys, yeah like me. That since 1) pip2's needed to install most Beet plugins and 2) Doc often simply mentions `pip install <plugin-dependency>` which won't work on Arch where pip is python3* by default.

asampson commented on 2014-12-21 04:15 (UTC)

Thanks, Freso—pkgver updated.

Freso commented on 2014-12-20 10:01 (UTC)

Uh. `git describe --long | sed -r 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'` I mean.

Freso commented on 2014-12-20 09:56 (UTC)

`printf "%s" "command"` is the same as just using `command` straight up, so "git describe --tags --long | sed 's/^[v]//;s/-/-r/' | tr - ." would work fine - although I would probably rather go with something similar to what is listed on the wiki (https://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines#Git): git describe --long | sed -r 's/^v-//;s/([^-]*-g)/r\1/;s/-/./g' Also, please upload a PKGBUILD which actually has the $pkgver in the "new" format. Otherwise tools such as yaourt will always think that there's a newer version available since 20130930.787918f-1 > 1.3.9.r93.g01bb6fa-1.

asampson commented on 2013-10-20 20:05 (UTC)

@Kyrias: Good call on all counts. I've stolen your suggested pkgver implementation wholesale.

demize commented on 2013-10-20 17:43 (UTC)

Hey, could you switch the echo statement in the pkgver() function to something like printf "%s" "$(git describe --tags --long | sed 's/^[v]//;s/-/-r/' | tr - .)" to generate cleaner and logical version numbers instead of the current ones. This one makes them in the form of "1.3.1.r35.gc82cd29" (Last tag, number of commits since the last tag, and the commit SHA). You should also switch the maintainer and contributor lines since you're the maintainer now.

asampson commented on 2013-09-30 18:28 (UTC)

@mkraemer Thanks; PKGBUILD updated.