[arch-commits] Commit in python-mpd2/repos (2 files)
Evangelos Foutras
foutrelis at gemini.archlinux.org
Wed Dec 1 14:50:40 UTC 2021
Date: Wednesday, December 1, 2021 @ 14:50:40
Author: foutrelis
Revision: 1059390
archrelease: copy trunk to community-staging-any
Added:
python-mpd2/repos/community-staging-any/
python-mpd2/repos/community-staging-any/PKGBUILD
(from rev 1059386, python-mpd2/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: python-mpd2/repos/community-staging-any/PKGBUILD (from rev 1059386, python-mpd2/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2021-12-01 14:50:40 UTC (rev 1059390)
@@ -0,0 +1,42 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Jörg Thalheim <joerg at higgsboson.tk>
+# Contributor: Emmanuel Gil Peyrot <linkmauve at linkmauve.fr>
+# Contributor: Peter Richard Lewis <plewis at aur.archlinux.org>
+# Contributor: Wieland Hoffmann <the_mineo at web.de>
+# Contributor: stonecrest <stonecrest[at]gmail[dot]com>
+
+pkgname=python-mpd2
+pkgver=3.0.4
+pkgrel=2
+pkgdesc='Python library which provides a client interface for the Music Player Daemon'
+url=https://github.com/Mic92/python-mpd2
+license=(GPL3)
+depends=(python)
+makedepends=(
+ git
+ python-setuptools
+)
+arch=(any)
+_tag=954473205ec8bcae4a9d8b5e8c26187450e968fe
+source=(git+https://github.com/Mic92/python-mpd2.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+ cd python-mpd2
+
+ git describe --tags | sed 's/^v//'
+}
+
+build() {
+ cd python-mpd2
+
+ python setup.py build
+}
+
+package() {
+ cd python-mpd2
+
+ python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+# vim: ts=2 sw=2 et:
More information about the arch-commits
mailing list