Package Details: python-lyricsgenius 3.0.0-1

Git Clone URL: https://aur.archlinux.org/python-lyricsgenius.git (read-only, click to copy)
Package Base: python-lyricsgenius
Description: A Python client for the Genius.com API, that provides a simple interface to the song, artist, and lyrics data stored on Genius.com
Upstream URL: https://github.com/johnwmillr/LyricsGenius
Licenses: MIT
Submitter: hendrimat
Maintainer: hendrimat
Last Packager: hendrimat
Votes: 1
Popularity: 0.000000
First Submitted: 2019-03-03 14:04 (UTC)
Last Updated: 2021-03-03 17:50 (UTC)

Latest Comments

red5h4d0w commented on 2025-02-11 20:36 (UTC) (edited on 2025-02-11 20:36 (UTC) by red5h4d0w)

Updated PKGBUILD for 3.2.0

# Maintainer: Hendrik Matvejev <hendrik.matvejev@gmail.com>

pkgname=python-lyricsgenius
_name=lyricsgenius
pkgver=3.2.0
pkgrel=1
pkgdesc="A Python client for the Genius.com API, that provides a simple interface to the song, artist, and lyrics data stored on Genius.com"
arch=('any')
url="https://github.com/johnwmillr/LyricsGenius"
license=('MIT')
depends=('python')
makedepends=('python-setuptools')
checkdepends=('python-nose')
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz" "https://raw.githubusercontent.com/johnwmillr/LyricsGenius/master/LICENSE.txt")
md5sums=('e70bbb5ffe7405c058a084b1f2c8bf90'
         '6e5763392072aa689772702a289321d9')

build() {
  cd $_name-$pkgver
  python setup.py build
}

package() {
  depends=('python-beautifulsoup4' 'python-requests')

  cd $_name-$pkgver
  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
  cd $srcdir
  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
}

martinbaselier commented on 2025-02-05 01:53 (UTC)

The checksum for LICENSE.txt should now be 6e5763392072aa689772702a289321d9 Then the PKGBUILD will work again.

sa-wilson commented on 2024-12-17 11:04 (UTC) (edited on 2024-12-17 11:05 (UTC) by sa-wilson)

Build is broken as the master LICENSE.txt has been updated for 2024

Change source to 'https://raw.githubusercontent.com/johnwmillr/LyricsGenius/refs/tags/3.0.0/LICENSE.txt' and it will build correctly again