astro/py-indiweb: Update to 0.1.8

This commit is contained in:
Jose Alonso Cardenas Marquez 2024-12-28 19:17:54 -08:00
parent 8c558ffb7d
commit fd83baf046
No known key found for this signature in database
GPG key ID: 335B9246BA5E30F4
3 changed files with 9 additions and 10 deletions

View file

@ -1,6 +1,5 @@
PORTNAME= indiweb
PORTVERSION= 0.1.7
PORTREVISION= 1
PORTVERSION= 0.1.8
CATEGORIES= astro python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1621711052
SHA256 (indiweb-0.1.7.tar.gz) = cd12917c7b62c16b57f2e130e57fb25071ef79767b85e518e6dcbbcc4a6f2ec3
SIZE (indiweb-0.1.7.tar.gz) = 368004
TIMESTAMP = 1735442027
SHA256 (indiweb-0.1.8.tar.gz) = fcbca408ec32f37908637193007ec49bd9c95d32375dd004bd70bdebc6945ffc
SIZE (indiweb-0.1.8.tar.gz) = 367411

View file

@ -1,11 +1,11 @@
--- indiweb/driver.py 2021-09-05 00:47:09.163136000 -0500
+++ indiweb/driver.py 2021-09-05 00:47:30.642233000 -0500
@@ -5,7 +5,7 @@
--- indiweb/driver.py.orig 2021-02-24 15:36:36 UTC
+++ indiweb/driver.py
@@ -5,7 +5,7 @@ import xml.etree.ElementTree as ET
import xml.etree.ElementTree as ET
# Default INDI data directory
-INDI_DATA_DIR = "/usr/share/indi/"
+INDI_DATA_DIR = "%%LOCALBASE%%/share/indi/"
-INDI_DATA_DIR = os.environ.get('INDI_DATA_DIR', "/usr/share/indi/")
+INDI_DATA_DIR = os.environ.get('INDI_DATA_DIR', "%%LOCALBASE%%/share/indi/")
class DeviceDriver: