aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Alonso Cardenas Marquez <acm@FreeBSD.org>2024-12-29 03:17:54 +0000
committerJose Alonso Cardenas Marquez <acm@FreeBSD.org>2024-12-29 03:17:54 +0000
commitfd83baf04636d22af84c5ba137710acfd82d520b (patch)
tree2c5d1dda06b0cc852516f7e2d82f6ed2ece62dc3
parent8c558ffb7d56826eb9bd8f5a168922001719b70e (diff)
-rw-r--r--astro/py-indiweb/Makefile3
-rw-r--r--astro/py-indiweb/distinfo6
-rw-r--r--astro/py-indiweb/files/patch-indiweb_driver.py10
3 files changed, 9 insertions, 10 deletions
diff --git a/astro/py-indiweb/Makefile b/astro/py-indiweb/Makefile
index ee9d7f7ce77a..fe96705c39ca 100644
--- a/astro/py-indiweb/Makefile
+++ b/astro/py-indiweb/Makefile
@@ -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}
diff --git a/astro/py-indiweb/distinfo b/astro/py-indiweb/distinfo
index 4f5366a1e430..5d822a25b6a1 100644
--- a/astro/py-indiweb/distinfo
+++ b/astro/py-indiweb/distinfo
@@ -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
diff --git a/astro/py-indiweb/files/patch-indiweb_driver.py b/astro/py-indiweb/files/patch-indiweb_driver.py
index dfb843943021..44b170cce30b 100644
--- a/astro/py-indiweb/files/patch-indiweb_driver.py
+++ b/astro/py-indiweb/files/patch-indiweb_driver.py
@@ -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: