Date: Friday, April 7, 2023 @ 05:52:12
Author: felixonmars
Revision: 1440678
archrelease: copy trunk to community-staging-any
Added:
python-slugify/repos/community-staging-any/
python-slugify/repos/community-staging-any/PKGBUILD
(from rev 1440674, python-slugify/trunk/PKGBUILD)
----------+
PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
Copied: python-slugify/repos/community-staging-any/PKGBUILD (from rev 1440674,
python-slugify/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-07 05:52:12 UTC (rev 1440678)
@@ -0,0 +1,41 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+# Contributor: Thomas Jost <[email protected]>
+# Contributor: Andrey Mikhaylenko <[email protected]>
+
+pkgname=python-slugify
+pkgver=8.0.1
+pkgrel=2
+pkgdesc='A Python slugify application that handles unicode'
+arch=(any)
+url=https://github.com/un33k/python-slugify
+license=(MIT)
+depends=(python-text-unidecode)
+makedepends=(
+ git
+ python-setuptools
+)
+optdepends=('python-unidecode: Unidecode support')
+_tag=58031becacdc8945393ddf628e84a6785cd08066
+source=(git+https://github.com/un33k/python-slugify.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+ cd python-slugify
+
+ git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+ cd python-slugify
+
+ python setup.py build
+}
+
+package() {
+ cd python-slugify
+
+ python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+ install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-slugify/
+}
+
+# vim: ts=2 sw=2 et: