Date: Wednesday, December 21, 2022 @ 17:08:28
Author: alucryd
Revision: 1364916
archrelease: copy trunk to community-any
Added:
python-django-q/repos/community-any/PKGBUILD
(from rev 1364915, python-django-q/trunk/PKGBUILD)
python-django-q/repos/community-any/python-django-q-pep517.patch
(from rev 1364915, python-django-q/trunk/python-django-q-pep517.patch)
Deleted:
python-django-q/repos/community-any/PKGBUILD
python-django-q/repos/community-any/python-django-q-pep517.patch
------------------------------+
PKGBUILD | 129 ++++++++++++++++++++---------------------
python-django-q-pep517.patch | 28 ++++----
2 files changed, 79 insertions(+), 78 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-12-21 17:08:17 UTC (rev 1364915)
+++ PKGBUILD 2022-12-21 17:08:28 UTC (rev 1364916)
@@ -1,64 +0,0 @@
-# Maintainer: Maxime Gauduin <[email protected]>
-
-pkgname=python-django-q
-pkgver=1.3.9
-pkgrel=5
-pkgdesc='A multiprocessing distributed task queue for Django'
-arch=(any)
-url=https://github.com/Koed00/django-q
-license=(MIT)
-depends=(
- python-arrow
- python-asgiref
- python-blessed
- python-dateutil
- python-django
- python-django-picklefield
- python-future
- python-pytz
- python-redis
- python-setuptools
- python-six
- python-sqlparse
- python-wcwidth
-)
-makedepends=(
- git
- python-build
- python-installer
- python-poetry-core
-)
-optdepends=(
- 'python-boto3: Amazon Simple Queue Service message queue support'
- 'python-psutil: resource usage limit support'
- 'python-pymongo: MongoDB as a message broker support'
-)
-_tag=4a8ef8f388b842b916f2ac713383192eec87b8d8
-source=(
- git+https://github.com/Koed00/django-q.git#tag=${_tag}
- python-django-q-pep517.patch
-)
-b2sums=('SKIP'
-
'2b95ad47f38f1217d21ad11b5f23a602660880b1d6bcb09716bf8b201987153a360cfabf94d7d3028caa46c9a494bc0716d8d69cf576fe78a5890c9508f88ef5')
-
-prepare() {
- cd django-q
- patch -Np1 -i ../python-django-q-pep517.patch
-}
-
-pkgver() {
- cd django-q
- git describe --tags | sed 's/^v//'
-}
-
-build() {
- cd django-q
- python -m build --wheel --no-isolation
-}
-
-package() {
- python -m installer --destdir="${pkgdir}" django-q/dist/*.whl
- install -Dm 644 django-q/LICENSE -t
"${pkgdir}"/usr/share/licenses/python-django-q/
-}
-
-# vim: ts=2 sw=2 et:
Copied: python-django-q/repos/community-any/PKGBUILD (from rev 1364915,
python-django-q/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-12-21 17:08:28 UTC (rev 1364916)
@@ -0,0 +1,65 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+
+pkgname=python-django-q
+pkgver=1.3.9
+pkgrel=6
+pkgdesc='A multiprocessing distributed task queue for Django'
+arch=(any)
+url=https://github.com/Koed00/django-q
+license=(MIT)
+depends=(
+ python-arrow
+ python-asgiref
+ python-blessed
+ python-dateutil
+ python-django
+ python-django-picklefield
+ python-future
+ python-pytz
+ python-redis
+ python-setuptools
+ python-six
+ python-sqlparse
+ python-wcwidth
+)
+makedepends=(
+ git
+ python-build
+ python-installer
+ python-poetry-core
+)
+optdepends=(
+ 'python-boto3: Amazon Simple Queue Service message queue support'
+ 'python-psutil: resource usage limit support'
+ 'python-pymongo: MongoDB as a message broker support'
+)
+_tag=4a8ef8f388b842b916f2ac713383192eec87b8d8
+source=(
+ git+https://github.com/Koed00/django-q.git#tag=${_tag}
+ python-django-q-pep517.patch
+)
+b2sums=('SKIP'
+
'2b95ad47f38f1217d21ad11b5f23a602660880b1d6bcb09716bf8b201987153a360cfabf94d7d3028caa46c9a494bc0716d8d69cf576fe78a5890c9508f88ef5')
+
+prepare() {
+ cd django-q
+ patch -Np1 -i ../python-django-q-pep517.patch
+}
+
+pkgver() {
+ cd django-q
+ git describe --tags | sed 's/^v//'
+}
+
+build() {
+ cd django-q
+ python -m build --wheel --no-isolation
+}
+
+package() {
+ python -m installer --destdir="${pkgdir}" django-q/dist/*.whl
+ rm "${pkgdir}"/usr/lib/python*/site-packages/CHANGELOG.md
+ install -Dm 644 django-q/LICENSE -t
"${pkgdir}"/usr/share/licenses/python-django-q/
+}
+
+# vim: ts=2 sw=2 et:
Deleted: python-django-q-pep517.patch
===================================================================
--- python-django-q-pep517.patch 2022-12-21 17:08:17 UTC (rev 1364915)
+++ python-django-q-pep517.patch 2022-12-21 17:08:28 UTC (rev 1364916)
@@ -1,14 +0,0 @@
-diff '--color=auto' -rupN django-q.orig/pyproject.toml django-q/pyproject.toml
---- django-q.orig/pyproject.toml 2022-10-24 10:50:42.274924167 +0200
-+++ django-q/pyproject.toml 2022-10-24 10:51:01.686713418 +0200
-@@ -76,4 +76,8 @@ sentry = ["django-q-sentry"]
-
- [tool.isort]
- profile = "black"
--multi_line_output = 3
-\ No newline at end of file
-+multi_line_output = 3
-+
-+[build-system]
-+requires = ["poetry-core"]
-+build-backend = "poetry.core.masonry.api"
Copied: python-django-q/repos/community-any/python-django-q-pep517.patch (from
rev 1364915, python-django-q/trunk/python-django-q-pep517.patch)
===================================================================
--- python-django-q-pep517.patch (rev 0)
+++ python-django-q-pep517.patch 2022-12-21 17:08:28 UTC (rev 1364916)
@@ -0,0 +1,14 @@
+diff '--color=auto' -rupN django-q.orig/pyproject.toml django-q/pyproject.toml
+--- django-q.orig/pyproject.toml 2022-10-24 10:50:42.274924167 +0200
++++ django-q/pyproject.toml 2022-10-24 10:51:01.686713418 +0200
+@@ -76,4 +76,8 @@ sentry = ["django-q-sentry"]
+
+ [tool.isort]
+ profile = "black"
+-multi_line_output = 3
+\ No newline at end of file
++multi_line_output = 3
++
++[build-system]
++requires = ["poetry-core"]
++build-backend = "poetry.core.masonry.api"