Date: Wednesday, May 10, 2023 @ 09:11:48
Author: grawlinson
Revision: 1459742
archrelease: copy trunk to community-any
Added:
python-acme/repos/community-any/PKGBUILD
(from rev 1459741, python-acme/trunk/PKGBUILD)
Deleted:
python-acme/repos/community-any/PKGBUILD
----------+
PKGBUILD | 150 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 75 insertions(+), 75 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-05-10 09:10:42 UTC (rev 1459741)
+++ PKGBUILD 2023-05-10 09:11:48 UTC (rev 1459742)
@@ -1,75 +0,0 @@
-# Maintainer: George Rawlinson <[email protected]>
-# Contributor: Felix Yan <[email protected]>
-# Contributor: Gordian Edenhofer <gordian.edenhofer[at]yahoo[dot]de>
-
-pkgname=python-acme
-pkgver=2.5.0
-pkgrel=1
-pkgdesc='ACME protocol implementation in Python'
-arch=('any')
-license=('Apache')
-url='https://github.com/certbot/certbot'
-depends=(
- 'python-cryptography'
- 'python-josepy'
- 'python-pyopenssl'
- 'python-pyrfc3339'
- 'python-pytz'
- 'python-requests'
-)
-makedepends=(
- 'git'
- 'python-build'
- 'python-installer'
- 'python-wheel'
- 'python-setuptools'
- 'python-sphinx'
- 'python-sphinx_rtd_theme'
-)
-checkdepends=('python-pytest')
-# git repository is used because certbot is a huge monorepo and it's easier to
-# share the entire repository across all certbot related packages than a few
-# hundred tarballs.
-_commit='3c667e8fffc2f6f4304f284ea52531bbf750a6c4'
-_repo="github.com-certbot-certbot"
-source=("$_repo::git+https://github.com/certbot/certbot#commit=$_commit")
-b2sums=('SKIP')
-
-pkgver() {
- cd "$_repo"
-
- git describe --tags | sed 's/^v//'
-}
-
-prepare() {
- cd "$_repo/acme"
-
- # nuke setuptools from orbit ^W install_requires
- sed \
- -e '/setuptools>=/d' \
- -i setup.py
-}
-
-build() {
- cd "$_repo/acme"
-
- python -m build --wheel --no-isolation
-
- # create man page
- make -C docs man
-}
-
-check() {
- cd "$_repo/acme"
-
- python -m pytest
-}
-
-package() {
- cd "$_repo/acme"
-
- python -m installer --destdir="$pkgdir" dist/*.whl
-
- # man pages
- install -vDm644 -t "$pkgdir/usr/share/man/man1" docs/_build/man/*.1
-}
Copied: python-acme/repos/community-any/PKGBUILD (from rev 1459741,
python-acme/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-05-10 09:11:48 UTC (rev 1459742)
@@ -0,0 +1,75 @@
+# Maintainer: George Rawlinson <[email protected]>
+# Contributor: Felix Yan <[email protected]>
+# Contributor: Gordian Edenhofer <gordian.edenhofer[at]yahoo[dot]de>
+
+pkgname=python-acme
+pkgver=2.6.0
+pkgrel=1
+pkgdesc='ACME protocol implementation in Python'
+arch=('any')
+license=('Apache')
+url='https://github.com/certbot/certbot'
+depends=(
+ 'python-cryptography'
+ 'python-josepy'
+ 'python-pyopenssl'
+ 'python-pyrfc3339'
+ 'python-pytz'
+ 'python-requests'
+)
+makedepends=(
+ 'git'
+ 'python-build'
+ 'python-installer'
+ 'python-wheel'
+ 'python-setuptools'
+ 'python-sphinx'
+ 'python-sphinx_rtd_theme'
+)
+checkdepends=('python-pytest')
+# git repository is used because certbot is a huge monorepo and it's easier to
+# share the entire repository across all certbot related packages than a few
+# hundred tarballs.
+_commit='013621d04ed26377cf6616448b21a4c050683719'
+_repo="github.com-certbot-certbot"
+source=("$_repo::git+https://github.com/certbot/certbot#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+ cd "$_repo"
+
+ git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+ cd "$_repo/acme"
+
+ # nuke setuptools from orbit ^W install_requires
+ sed \
+ -e '/setuptools>=/d' \
+ -i setup.py
+}
+
+build() {
+ cd "$_repo/acme"
+
+ python -m build --wheel --no-isolation
+
+ # create man page
+ make -C docs man
+}
+
+check() {
+ cd "$_repo/acme"
+
+ python -m pytest
+}
+
+package() {
+ cd "$_repo/acme"
+
+ python -m installer --destdir="$pkgdir" dist/*.whl
+
+ # man pages
+ install -vDm644 -t "$pkgdir/usr/share/man/man1" docs/_build/man/*.1
+}