user/paperless-ngx: upgrade to 2.20.0 #1828

Open
forge wants to merge 3 commits from paperless-ngx/upgrade-2.20.0 into edge
12 changed files with 131 additions and 508 deletions

View file

@ -0,0 +1,65 @@
maintainer="Hoang Nguyen <folliekazetani@protonmail.com>"
pkgname=py3-dateparser
_pyname=${pkgname#py3-}
pkgver=1.2.2
pkgrel=0
pkgdesc="Python parser for human readable dates"
url="https://github.com/scrapinghub/dateparser"
arch="noarch"
license="BSD-3-Clause"
depends="
python3
py3-dateutil
py3-regex
py3-tz
py3-tzlocal
"
makedepends="
py3-gpep517
py3-setuptools
py3-wheel
"
checkdepends="
py3-fasttext
py3-gitpython
py3-langdetect
py3-parameterized
py3-parsel
py3-pytest
py3-requests
py3-ruamel.yaml
"
subpackages="$pkgname-pyc"
source="$pkgname-$pkgver.tar.gz::https://github.com/scrapinghub/dateparser/archive/refs/tags/v$pkgver.tar.gz"
builddir="$srcdir/$_pyname-$pkgver"
build() {
gpep517 build-wheel \
--wheel-dir .dist \
--output-fd 3 3>&1 >&2
}
check() {
# test_relative_base_setting_2_en fails due to tzinfo mismatch
# test_custom_language_detect_fast_text fails due to wrong file format
_test_filter="not test_parsing_date_should_fail_using_datetime_strptime_if_locale_is_non_english \
and not test_relative_base_setting_2_en and not test_custom_language_detect_fast_text"
python3 -m venv --clear --without-pip --system-site-packages .testenv
.testenv/bin/python3 -m installer .dist/*.whl
# test_hijri.py: needs hijri_converter, test_jalali.py: convertdate
.testenv/bin/python3 -m pytest tests \
-k "$_test_filter" \
--ignore tests/test_hijri.py \
--ignore tests/test_jalali.py
}
package() {
python3 -m installer -d "$pkgdir" \
.dist/*.whl
}
sha512sums="
98431efec4763821438d531e5046c1fd69f70e5408eb9bd3359ce95de1c64833e90ff65c6c7ffc8617bce00392a90eab4b560111e937e8089f66f038ae7bcb3c py3-dateparser-1.2.2.tar.gz
"

View file

@ -0,0 +1,37 @@
# Contributor: lauren n. liberda <lauren@selfisekai.rocks>
# Maintainer: lauren n. liberda <lauren@selfisekai.rocks>
pkgname=py3-pathvalidate
pkgver=3.3.1
pkgrel=0
pkgdesc="Python library to sanitize/validate a string such as filenames/file-paths/etc"
url="https://github.com/thombashi/pathvalidate"
arch="noarch"
license="MIT"
depends="python3"
makedepends="
py3-gpep517
py3-setuptools
py3-setuptools_scm
py3-wheel
"
checkdepends="py3-pytest py3-click py3-faker"
options="!check" # tests require unpackaged unmaintained dependencies
subpackages="$pkgname-pyc"
source="https://github.com/thombashi/pathvalidate/archive/refs/tags/v$pkgver/pathvalidate-$pkgver.tar.gz"
builddir="$srcdir/pathvalidate-$pkgver"
build() {
export SETUPTOOLS_SCM_PRETEND_VERSION="$pkgver"
gpep517 build-wheel \
--wheel-dir .dist \
--output-fd 3 3>&1 >&2
}
package() {
python3 -m installer -d "$pkgdir" \
.dist/*.whl
}
sha512sums="
02bd6bc439f42df3dc6004d1d0883d4e85ac7d761cddb61552576acf49db29ac3994a76a460ddd068eebd89279ae3f14d6703f90f4266ea7443be257ddc48b4e pathvalidate-3.3.1.tar.gz
"

View file

@ -1,438 +0,0 @@
From 40d1e18faf39dd50dd41c5e94ab13350df384e51 Mon Sep 17 00:00:00 2001
From: Antoine Martin <dev@ayakael.net>
Date: Wed, 14 Jun 2023 10:20:42 -0400
Subject: [PATCH 1/1] Add OpenID Connect SSO support via django-allauth (#1746)
---
src/documents/templates/account/base.html | 14 +
src/documents/templates/account/login.html | 1 +
src/documents/templates/account/logout.html | 1 +
.../templates/registration/login.html | 72 ++-
.../socialaccount/authentication_error.html | 1 +
src/documents/templatetags/django_settings.py | 9 +
src/paperless/allauth_custom.py | 73 +++
src/paperless/settings.py | 114 +++++
src/paperless/urls.py | 9 +-
10 files changed, 711 insertions(+), 18 deletions(-)
create mode 100644 0001-Add-OpenID-Connect-SSO-support-via-django-allauth-17.patch
create mode 100644 src/documents/templates/account/base.html
create mode 120000 src/documents/templates/account/login.html
create mode 120000 src/documents/templates/account/logout.html
create mode 120000 src/documents/templates/socialaccount/authentication_error.html
create mode 100644 src/documents/templatetags/django_settings.py
create mode 100644 src/paperless/allauth_custom.py
diff --git a/src/documents/templates/account/base.html b/src/documents/templates/account/base.html
new file mode 100644
index 00000000..0912c609
--- /dev/null
+++ b/src/documents/templates/account/base.html
@@ -0,0 +1,14 @@
+{% load i18n %}
+<html lang="en">
+ <head>
+ <title>{% translate "Redirecting" %}</title>
+ <meta http-equiv="refresh" content="0;URL='{% url "base" %}'" />
+ <style type="text/css">
+ body { background-color: #fff; }
+ a { color: #ccc; }
+ </style>
+ </head>
+ <body>
+ <a href="{% url "base" %}">{% translate "Redirecting" %}...</a>
+ </body>
+</html>
diff --git a/src/documents/templates/account/login.html b/src/documents/templates/account/login.html
new file mode 120000
index 00000000..03fd169e
--- /dev/null
+++ b/src/documents/templates/account/login.html
@@ -0,0 +1 @@
+../registration/login.html
\ No newline at end of file
diff --git a/src/documents/templates/account/logout.html b/src/documents/templates/account/logout.html
new file mode 120000
index 00000000..7cad0aa6
--- /dev/null
+++ b/src/documents/templates/account/logout.html
@@ -0,0 +1 @@
+../registration/logged_out.html
\ No newline at end of file
diff --git a/src/documents/templates/registration/login.html b/src/documents/templates/registration/login.html
index d9ff86a7..404f37e6 100644
--- a/src/documents/templates/registration/login.html
+++ b/src/documents/templates/registration/login.html
@@ -1,4 +1,7 @@
<!doctype html>
+{% load django_settings %}
+{% load socialaccount %}
+{% settings_value "LOGIN_HIDE_PASSWORD_FORM" as hide_password_form %}
{% load static %}
{% load i18n %}
@@ -38,8 +41,7 @@
</head>
<body class="text-center">
- <form class="form-signin" method="post">
- {% csrf_token %}
+ <div class="form-signin">
<svg xmlns="http://www.w3.org/2000/svg" width="300" class="logo mb-4" viewBox="0 0 2897.4 896.6">
<path class="leaf" d="M140,713.7c-3.4-16.4-10.3-49.1-11.2-49.1c-145.7-87.1-128.4-238-80.2-324.2C59,449,251.2,524,139.1,656.8 c-0.9,1.7,5.2,22.4,10.3,41.4c22.4-37.9,56-83.6,54.3-87.9C65.9,273.9,496.9,248.1,586.6,39.4c40.5,201.8-20.7,513.9-367.2,593.2 c-1.7,0.9-62.9,108.6-65.5,109.5c0-1.7-25.9-0.9-22.4-9.5C133.1,727.4,136.6,720.6,140,713.7L140,713.7z M135.7,632.6 c44-50.9-7.8-137.9-38.8-166.4C149.5,556.7,146,609.3,135.7,632.6L135.7,632.6z" transform="translate(0)" style="fill:#17541f"/>
<g class="text" style="fill:#000">
@@ -58,19 +60,55 @@
<path d="M757.6,293.7c-20-10.8-42.6-16.2-67.8-16.2H600c-8.5,39.2-21.1,76.4-37.6,111.3c-9.9,20.8-21.1,40.6-33.6,59.4v207.2h88.9 V521.5h72c25.2,0,47.8-5.4,67.8-16.2s35.7-25.6,47.1-44.2c11.4-18.7,17.1-39.1,17.1-61.3c0.1-22.7-5.6-43.3-17-61.9 C793.3,319.2,777.6,304.5,757.6,293.7z M716.6,434.3c-9.3,8.9-21.6,13.3-36.7,13.3l-62.2,0.4v-92.5l62.2-0.4 c15.1,0,27.3,4.4,36.7,13.3c9.4,8.9,14,19.9,14,32.9C730.6,414.5,726,425.4,716.6,434.3z" transform="translate(0)"/>
</g>
</svg>
- <p>{% translate "Please sign in." %}</p>
- {% if form.errors %}
- <div class="alert alert-danger" role="alert">
- {% translate "Your username and password didn't match. Please try again." %}
- </div>
- {% endif %}
- {% translate "Username" as i18n_username %}
- {% translate "Password" as i18n_password %}
- <label for="inputUsername" class="sr-only">{{ i18n_username }}</label>
- <input type="text" name="username" id="inputUsername" class="form-control" placeholder="{{ i18n_username }}" autocorrect="off" autocapitalize="none" required autofocus>
- <label for="inputPassword" class="sr-only">{{ i18n_password }}</label>
- <input type="password" name="password" id="inputPassword" class="form-control" placeholder="{{ i18n_password }}" required>
- <button class="btn btn-lg btn-primary btn-block" type="submit">{% translate "Sign in" %}</button>
- </form>
- </body>
+ {% if auth_error %}
+ <div class="alert alert-danger" role="alert">
+ {% translate "An authentication error occurred. Please try again." %}
+ </div>
+ {% endif %}
+ {% if not hide_password_form %}
+ <p>{% translate "Please sign in." %}</p>
+ <form method="post">
+ {% csrf_token %}
+ {% if form.errors %}
+ <div class="alert alert-danger" role="alert">
+ {% translate "Your username and password didn't match. Please try again." %}
+ </div>
+ {% endif %}
+ {% translate "Username" as i18n_username %}
+ {% translate "Password" as i18n_password %}
+ <label for="inputUsername" class="sr-only">{{ i18n_username }}</label>
+ <input type="text" name="username" id="inputUsername" class="form-control" placeholder="{{ i18n_username }}" autocorrect="off" autocapitalize="none" required autofocus>
+ <label for="inputPassword" class="sr-only">{{ i18n_password }}</label>
+ <input type="password" name="password" id="inputPassword" class="form-control" placeholder="{{ i18n_password }}" required>
+ <button class="btn btn-lg btn-primary btn-block" type="submit">{% translate "Sign in" %}</button>
+ </form>
+ {% endif %}
+ {% get_providers as socialaccount_providers %}
+ {% if socialaccount_providers %}
+ {% if not hide_password_form %}
+ <p></p>
+ <p>- {% translate "or" %} -</p>
+ {% endif %}
+
+ {% for provider in socialaccount_providers %}
+ {% if provider.id == "openid" %}
+ {% for brand in provider.get_brands %}
+ <form method="post" action="{% provider_login_url provider.id openid=brand.openid_url process=process %}">
+ {% csrf_token %}
+ <p>
+ <input class="btn btn-lg btn-primary btn-block" type="submit" value="Log in with {{ brand.name }}">
+ </p>
+ </form>
+ {% endfor %}
+ {% endif %}
+ <form method="post" action="{% provider_login_url provider.id process=process %}">
+ {% csrf_token %}
+ <p>
+ <input class="btn btn-lg btn-primary btn-block" type="submit" value="Log in with {{ provider.name }}">
+ </p>
+ </form>
+ {% endfor %}
+ {% endif %}
+ </div>
+ </body>
</html>
diff --git a/src/documents/templates/socialaccount/authentication_error.html b/src/documents/templates/socialaccount/authentication_error.html
new file mode 120000
index 00000000..b2ef5434
--- /dev/null
+++ b/src/documents/templates/socialaccount/authentication_error.html
@@ -0,0 +1 @@
+../account/login.html
\ No newline at end of file
diff --git a/src/documents/templatetags/django_settings.py b/src/documents/templatetags/django_settings.py
new file mode 100644
index 00000000..cf415d5c
--- /dev/null
+++ b/src/documents/templatetags/django_settings.py
@@ -0,0 +1,9 @@
+from django import template
+from django.conf import settings
+
+register = template.Library()
+
+
+@register.simple_tag
+def settings_value(name):
+ return getattr(settings, name, "")
diff --git a/src/paperless/allauth_custom.py b/src/paperless/allauth_custom.py
new file mode 100644
index 00000000..0e716346
--- /dev/null
+++ b/src/paperless/allauth_custom.py
@@ -0,0 +1,73 @@
+import logging
+
+from allauth.account.adapter import DefaultAccountAdapter
+from allauth.socialaccount.adapter import DefaultSocialAccountAdapter
+from django.conf import settings
+from django.http import Http404
+from django.urls import include
+from django.urls import path
+from django.urls import re_path
+from django.urls import reverse
+from django.urls import reverse_lazy
+from django.views.generic import RedirectView
+
+logger = logging.getLogger("paperless.allauth")
+
+
+def raise_404(*args, **kwargs):
+ raise Http404
+
+
+class CustomAccountAdapter(DefaultAccountAdapter):
+ def get_login_redirect_url(self, request):
+ return reverse("base")
+
+ def get_signup_redirect_url(self, request):
+ return self.get_login_redirect_url(request)
+
+ def is_open_for_signup(self, request):
+ return getattr(settings, "LOGIN_ENABLE_SIGNUP", False)
+
+
+class CustomSocialAccountAdapter(DefaultSocialAccountAdapter):
+ def authentication_error(
+ self,
+ request,
+ provider_id,
+ error=None,
+ exception=None,
+ extra_context=None,
+ ):
+ logger.error(f"Authentication error: {exception}")
+ return super().authentication_error(
+ request,
+ provider_id,
+ error,
+ exception,
+ extra_context,
+ )
+
+ def is_auto_signup_allowed(self, *args, **kwargs):
+ if getattr(settings, "SSO_AUTO_LINK_MULTIPLE", True):
+ # Skip allauth default logic of checking for an existing user with
+ # the same email address. This requires paperless administrators to
+ # trust the SSO providers connected to paperless.
+ return True
+ return super().is_auto_signup_allowed(*args, **kwargs)
+
+ def is_open_for_signup(self, request, sociallogin):
+ # True indicates a user should be automatically created on successful
+ # login via configured external provider
+ return getattr(settings, "SSO_AUTO_LINK", True)
+
+
+base_url = reverse_lazy("base")
+urlpatterns = [
+ # Override allauth URLs to disable features we don't want
+ path("signup/", RedirectView.as_view(url=base_url)),
+ re_path("confirm-email/.*", RedirectView.as_view(url=base_url)),
+ re_path("email/.*", RedirectView.as_view(url=base_url)),
+ re_path("password/.*", RedirectView.as_view(url=base_url)),
+ # Import allauth-provided URL patterns
+ path("", include("allauth.urls")),
+]
diff --git a/src/paperless/settings.py b/src/paperless/settings.py
index d3c239b4..a2cba20b 100644
--- a/src/paperless/settings.py
+++ b/src/paperless/settings.py
@@ -18,6 +18,7 @@ from urllib.parse import urlparse
from celery.schedules import crontab
from concurrent_log_handler.queue import setup_logging_queues
+from django.utils.text import slugify
from django.utils.translation import gettext_lazy as _
from dotenv import load_dotenv
@@ -91,6 +92,22 @@ def __get_list(
return []
+def __get_list(
+ key: str,
+ sep: str = ",",
+ default: Optional[List[str]] = None,
+) -> List[str]:
+ """
+ Return a list of strings based on the environment variable or an given default
+ list, if provided or an empty list
+ """
+ if key in os.environ:
+ os.getenv(key).split(sep)
+ elif default is not None:
+ return default
+ return []
+
+
def _parse_redis_url(env_redis: Optional[str]) -> Tuple[str]:
"""
Gets the Redis information from the environment or a default and handles
@@ -256,6 +273,40 @@ SCRATCH_DIR = __get_path(
Path(tempfile.gettempdir()) / "paperless",
)
+###############################################################################
+# SSO Configuration
+###############################################################################
+
+
+def _get_oidc_server() -> Optional[Dict]:
+ config_id = os.environ.get("PAPERLESS_SSO_OIDC_ID")
+ name = os.environ.get("PAPERLESS_SSO_OIDC_NAME")
+ url = os.environ.get("PAPERLESS_SSO_OIDC_URL")
+ client_id = os.environ.get("PAPERLESS_SSO_OIDC_CLIENT_ID")
+ secret = os.environ.get("PAPERLESS_SSO_OIDC_SECRET")
+ if name and url and client_id and secret:
+ return {
+ "id": config_id or slugify(name)[:30],
+ "name": name,
+ "server_url": url,
+ "APP": {
+ "client_id": client_id,
+ "secret": secret,
+ },
+ }
+ return None
+
+
+_allauth_provider_modules = set(__get_list("PAPERLESS_SSO_MODULES"))
+_oidc_server = _get_oidc_server()
+if _oidc_server:
+ _allauth_provider_modules.add("openid_connect")
+
+SSO_ENABLED = __get_boolean(
+ "PAPERLESS_SSO_ENABLED",
+ str(bool(_allauth_provider_modules)),
+)
+
###############################################################################
# Application Definition #
###############################################################################
@@ -282,9 +333,18 @@ INSTALLED_APPS = [
"django_filters",
"django_celery_results",
"guardian",
+ "allauth",
+ "allauth.account",
+ "allauth.socialaccount",
*env_apps,
]
+if SSO_ENABLED:
+ INSTALLED_APPS += [
+ f"allauth.socialaccount.providers.{provider}"
+ for provider in _allauth_provider_modules
+ ]
+
if DEBUG:
INSTALLED_APPS.append("channels")
@@ -394,6 +454,10 @@ HTTP_REMOTE_USER_HEADER_NAME = os.getenv(
if ENABLE_HTTP_REMOTE_USER:
MIDDLEWARE.append("paperless.auth.HttpRemoteUserMiddleware")
AUTHENTICATION_BACKENDS.insert(0, "django.contrib.auth.backends.RemoteUserBackend")
+ if SSO_ENABLED:
+ AUTHENTICATION_BACKENDS.append(
+ "allauth.account.auth_backends.AuthenticationBackend",
+ )
REST_FRAMEWORK["DEFAULT_AUTHENTICATION_CLASSES"].append(
"rest_framework.authentication.RemoteUserAuthentication",
)
@@ -949,3 +1013,53 @@ def _get_nltk_language_setting(ocr_lang: str) -> Optional[str]:
NLTK_ENABLED: Final[bool] = __get_boolean("PAPERLESS_ENABLE_NLTK", "yes")
NLTK_LANGUAGE: Optional[str] = _get_nltk_language_setting(OCR_LANGUAGE)
+
+
+###############################################################################
+# Single Sign-On (SSO)
+###############################################################################
+
+
+if SSO_ENABLED:
+ SSO_AUTO_LINK = __get_boolean("PAPERLESS_SSO_AUTO_LINK", "yes")
+ SSO_AUTO_LINK_MULTIPLE = __get_boolean(
+ "PAPERLESS_SSO_AUTO_LINK_MULTIPLE",
+ "yes",
+ )
+
+ # TODO This setting is unused and not part of django-allauth
+ SSO_SIGNUP_ONLY = __get_boolean(
+ "PAPERLESS_SSO_SIGNUP_ONLY",
+ "yes",
+ )
+ ACCOUNT_ADAPTER = "paperless.allauth_custom.CustomAccountAdapter"
+ ACCOUNT_DEFAULT_HTTP_PROTOCOL = "https"
+ ACCOUNT_EMAIL_VERIFICATION = "none"
+ LOGIN_ENABLE_SIGNUP = __get_boolean("PAPERLESS_LOGIN_ENABLE_SIGNUP", "no")
+ LOGIN_HIDE_PASSWORD_FORM = __get_boolean(
+ "PAPERLESS_LOGIN_HIDE_PASSWORD_FORM",
+ "no",
+ )
+ ACCOUNT_LOGOUT_ON_GET = True
+
+ # Disable all allauth forms except for the login form
+ class AllauthFormsOverride(dict):
+ def get(self, key, default=None):
+ return super().get(key, "paperless.allauth_custom.raise_404")
+
+ ACCOUNT_FORMS = AllauthFormsOverride(
+ login="allauth.account.forms.LoginForm",
+ )
+
+ SOCIALACCOUNT_ADAPTER = "paperless.allauth_custom.CustomSocialAccountAdapter"
+ SOCIALACCOUNT_LOGIN_ON_GET = __get_boolean(
+ "PAPERLESS_SSO_LOGIN_ON_GET",
+ "no",
+ )
+ SOCIALACCOUNT_PROVIDERS = json.loads(
+ os.environ.get("PAPERLESS_SSO_PROVIDERS", "{}"),
+ )
+ if _oidc_server:
+ SOCIALACCOUNT_PROVIDERS.setdefault("openid_connect", {})
+ SOCIALACCOUNT_PROVIDERS["openid_connect"].setdefault("SERVERS", [])
+ SOCIALACCOUNT_PROVIDERS["openid_connect"]["SERVERS"] += [_oidc_server]
diff --git a/src/paperless/urls.py b/src/paperless/urls.py
index c2b72d7b..3a3bf342 100644
--- a/src/paperless/urls.py
+++ b/src/paperless/urls.py
@@ -154,7 +154,14 @@ urlpatterns = [
),
# TODO: with localization, this is even worse! :/
# login, logout
- path("accounts/", include("django.contrib.auth.urls")),
+ path(
+ "accounts/",
+ include(
+ "paperless.allauth_custom"
+ if settings.SSO_ENABLED
+ else "django.contrib.auth.urls",
+ ),
+ ),
# Root of the Frontent
re_path(r".*", login_required(IndexView.as_view()), name="base"),
]
--
2.40.1

View file

@ -1,8 +1,8 @@
# Contributor: Antoine Martin (ayakael) <dev@ayakael.net>
# Maintainer: Antoine Martin (ayakael) <dev@ayakael.net>
pkgname=paperless-ngx
pkgver=1.17.4
pkgrel=1
pkgver=2.20.0
pkgrel=0
pkgdesc="A community-supported supercharged version of paperless: scan, index and archive all your physical documents"
url="https://github.com/paperless-ngx/paperless-ngx"
license="GPL-3.0-only"
@ -11,6 +11,8 @@ license="GPL-3.0-only"
# all: uvicorn doesn't yet work with websockets 14
arch="noarch !s390x !armhf !ppc64le"
install="$pkgname.post-install $pkgname.post-upgrade $pkgname.pre-install"
# whoosh actually need whoosh-reloaded
# optional depend: mysqlclient
depends="
file
gnupg
@ -24,99 +26,58 @@ depends="
tesseract-ocr-data-osd
ttf-liberation
uvicorn
py3-aiohttp
py3-anyio
py3-arrow
py3-asgiref
py3-async-timeout
py3-attrs
py3-autobahn
py3-automat
py3-blessed
py3-certifi
py3-babel
py3-bleach
py3-celery
py3-chardet
py3-charset-normalizer
py3-channels
py3-channels_redis
py3-click
py3-channels-redis
py3-concurrent-log-handler
py3-constantly
py3-cryptography
py3-daphne
py3-dateparser
py3-deprecation
py3-django-allauth
py3-django-auditlog
py3-django-cachalot
py3-django-compression-middleware
py3-django-celery-results
py3-django-cors-headers
py3-django-extensions
py3-django-filter
py3-django-guardian
py3-django-picklefield
py3-django-q2
py3-django-multiselectfield
py3-django-soft-delete
py3-django-treenode
py3-django-rest-framework
py3-django-rest-framework-guardian
py3-drf-spectacular
py3-drf-sidecar
py3-drf-writable-nested
py3-filelock
py3-fuzzywuzzy
py3-gunicorn
py3-h11
py3-flower
py3-gotenberg-client
py3-httpx-oauth
py3-hiredis
py3-httptools
py3-humanfriendly
py3-hyperlink
py3-idna
py3-imap-tools
py3-incremental
py3-inotify_simple
py3-inotifyrecursive
py3-jinja2
py3-python-ipware
py3-joblib
py3-langdetect
py3-lxml
py3-msgpack
py3-numpy
py3-nltk
py3-magic
py3-pathvalidate
py3-portalocker
py3-psycopg2
py3-asn1
py3-asn1-modules
py3-cparser
py3-openssl
py3-pdf2image
py3-psycopg
py3-dateutil
py3-dotenv
py3-gnupg
py3-levenshtein
py3-magic
py3-pdf2image
py3-pyzbar
py3-pillow
py3-tz
py3-redis
py3-regex
py3-requests
py3-rapidfuzz
py3-scikit-learn
py3-scipy
py3-service_identity
py3-six
py3-sniffio
py3-sortedcontainers
py3-sqlparse
py3-threadpoolctl
py3-setproctitle
py3-tika
py3-twisted
py3-txaio
py3-urllib3
py3-tqdm
py3-uvloop
py3-watchdog
py3-watchfiles
py3-wcwidth
py3-websockets
py3-whitenoise
py3-whoosh
py3-yaml
py3-zope-interface
py3-zstandard
py3-zbar
py3-zxing-cpp
postgresql
jbig2enc
"
@ -124,7 +85,6 @@ builddir="$srcdir"/$pkgname
source="
$url/releases/download/v$pkgver/$pkgname-v$pkgver.tar.xz
1746_add-OpenID-Connect-SSO-support-via-django-allauth.patch
paperless-scheduler.openrc
paperless-consumer.openrc
paperless-webserver.openrc
@ -178,8 +138,7 @@ package() {
}
sha512sums="
eb225244d51db0ba0db9fca259825ab542448f5f9904d2bf55ad581f16a9386696457593df2ad5eda6df5eefb296f0ee0c0f27e6fc0eff8956807aedf20e0094 paperless-ngx-v1.17.4.tar.xz
71526db0d48f26168005de06a91f6099c318c6622b70d7af32a899a2e485b34876e94fe14d7434367232d80fbbf8c4d75281874283ab832fd8568dfea3b87bdf 1746_add-OpenID-Connect-SSO-support-via-django-allauth.patch
8f2c27fbd76901095de6b52cc495fedbbd4572edcc314f5bc527c837e9e17625aede8c750879a85bab3ac2314678329794dee3f7b225a83ea873fd8e24dfe21f paperless-ngx-v2.20.0.tar.xz
b782dd9479d31d2f6a82e86639bb5e2bb3675c1ffc1d6b08e027e10159dd58ed9f68b5986b9d7c8a326e95384e701bcf9834101d6a6720db7e97465e4d295d36 paperless-scheduler.openrc
b4413f48b481d53b3e10542f5ffe830928c40ae016e2dc1da533ae8b546c5b6e4ddfa1129280807f866002f61b283c4eba327be6eb04171e259fe27fec47696a paperless-consumer.openrc
e9c517f7fbae269072506316711a12a6ba5568456348305972caf023020de5ebeab45401371fe114fe8dbddfacbcc6cfd01d0fad2b2ade6ee3883f46120b904e paperless-webserver.openrc