py-octoprint: update to version 1.5.2

From the list of changes:

 * #3855 & #3867 - Fix settings merging on the frontend causing
   issues with array values.
 * Pin watchdog dependency to 0.10.4 to work around backwards
   incompatibility with the just release 0.10.5 under Python 3.
This commit is contained in:
Pierre Pronchery 2020-12-26 20:14:27 +01:00
parent 1feb42a406
commit 853bf0341f
3 changed files with 16 additions and 7 deletions

View File

@ -1,7 +1,7 @@
# $NetBSD$
DISTNAME= ${GITHUB_PROJECT}-${PKGVERSION_NOREV}
PKGNAME= ${PYPKGPREFIX}-octoprint-1.5.1
PKGNAME= ${PYPKGPREFIX}-octoprint-1.5.2
CATEGORIES= print
MASTER_SITES= ${MASTER_SITE_GITHUB:=OctoPrint/}
GITHUB_PROJECT= OctoPrint

View File

@ -1,7 +1,7 @@
$NetBSD$
SHA1 (OctoPrint-1.5.1.tar.gz) = b2bbf82d584892871a444e67424793370d40a619
RMD160 (OctoPrint-1.5.1.tar.gz) = 331627291a7e49c870ccb1dfde088ae85b45cfae
SHA512 (OctoPrint-1.5.1.tar.gz) = 23733bba7f6fceb4170a4df89e5bf93daf92122f2e8e38c6a230e6a52321dcdbd66c91f670d8aab5b141a3c0cedfe15f37fc3ad4c9b3565e445a907d20627cd9
Size (OctoPrint-1.5.1.tar.gz) = 5976925 bytes
SHA1 (patch-setup.py) = 75fa95db8dcb8ffbcaa3a2b76c7a8ba03c7fdac6
SHA1 (OctoPrint-1.5.2.tar.gz) = ff4b00f12c21ff4a47f24c7dc3dbd4e79628cd66
RMD160 (OctoPrint-1.5.2.tar.gz) = e558116080e57e0b36a43ccd1f7bc3d2705a3ca0
SHA512 (OctoPrint-1.5.2.tar.gz) = 297349b69c62fabfd746e34001154aa17bd990fc1b2e6bf03fa29150745013250e33e7e82c9dda8c425d360ea38a5d679658ba018d13ecc42b21f36a413cf177
Size (OctoPrint-1.5.2.tar.gz) = 5976625 bytes
SHA1 (patch-setup.py) = 7a31a193bdafa7b8b09a56933209110b97fffaa4

View File

@ -2,7 +2,7 @@ $NetBSD$
Override some version checks
--- setup.py.orig 2020-12-04 09:41:45.000000000 +0000
--- setup.py.orig 2020-12-10 11:34:21.000000000 +0000
+++ setup.py
@@ -32,7 +32,7 @@ INSTALL_REQUIRES = [
"markupsafe>=1.1,<2.0", # Jinja dependency, newer versions require Python 3
@ -13,6 +13,15 @@ Override some version checks
"regex!=2018.11.6", # avoid broken 2018.11.6. See #2874
# anything below this should be checked on releases for new versions
"flask>=1.1.2,<2",
@@ -46,7 +46,7 @@ INSTALL_REQUIRES = [
"PyYAML>=5.3.1,<6",
"pyserial>=3.4,<4",
"netaddr>=0.7.19,<1",
- "watchdog==0.10.4", # watchdog dropped Py>3.6 on 0.10.5 point release...
+ "watchdog>=0.10.3", # watchdog dropped Py>3.6 on 0.10.5 point release...
"sarge==0.1.5post0",
"netifaces>=0.10.9,<1",
"pylru>=1.2,<2",
@@ -63,7 +63,7 @@ INSTALL_REQUIRES = [
"sentry-sdk>=0.15.1,<1",
"filetype>=1.0.7,<2",