Date: Saturday, April 8, 2023 @ 17:23:21
Author: felixonmars
Revision: 1442807
archrelease: copy trunk to community-staging-any
Added:
python-poetry-plugin-up/repos/community-staging-any/
python-poetry-plugin-up/repos/community-staging-any/PKGBUILD
(from rev 1442806, python-poetry-plugin-up/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: python-poetry-plugin-up/repos/community-staging-any/PKGBUILD (from rev
1442806, python-poetry-plugin-up/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-08 17:23:21 UTC (rev 1442807)
@@ -0,0 +1,39 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+# Contributor: Matthew Gamble <[email protected]>
+
+pkgname=python-poetry-plugin-up
+pkgver=0.2.1
+pkgrel=2
+pkgdesc='Poetry plugin that updates dependencies and bumps their versions in
pyproject.toml file'
+url=https://github.com/MousaZeidBaker/poetry-plugin-up
+license=(MIT)
+depends=(
+ python
+ python-poetry
+)
+makedepends=(
+ git
+ python-build
+ python-installer
+)
+_tag=54e7deb4528dffcc7df8b2bab56f0f360a1b5831
+source=(git+https://github.com/MousaZeidBaker/poetry-plugin-up.git#tag=${_tag})
+b2sums=(SKIP)
+arch=(any)
+
+pkgver() {
+ cd poetry-plugin-up
+ git describe --tags
+}
+
+build() {
+ cd poetry-plugin-up
+ python -m build -wn
+}
+
+package() {
+ python -m installer -d "${pkgdir}" poetry-plugin-up/dist/*.whl
+ install -Dm 644 poetry-plugin-up/LICENSE -t
"${pkgdir}"/usr/share/licenses/python-poetry-plugin-up/
+}
+
+# vim: ts=2 sw=2 et: