mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2025-11-04 16:45:57 +00:00
Compare commits
9 Commits
0.49.0
...
debian-pac
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4298c52a7e | ||
|
|
dfab864745 | ||
|
|
d013928a6c | ||
|
|
9d1fc0704d | ||
|
|
81a837ebac | ||
|
|
41da9480c7 | ||
|
|
26556d8091 | ||
|
|
273644d2d7 | ||
|
|
397f79ffd5 |
53
.github/workflows/build-deb-package.yml
vendored
Normal file
53
.github/workflows/build-deb-package.yml
vendored
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
name: Build Debian Package
|
||||||
|
# Check status: systemctl status changedetection.io.service
|
||||||
|
# Get logs: journalctl -u changedetection.io.service
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-deb:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Build and Package changedetection.io
|
||||||
|
env:
|
||||||
|
PACKAGE_VERSION: 0.48.5 # or load from somewhere else
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
path: changedetection.io-${{ env.PACKAGE_VERSION }}
|
||||||
|
|
||||||
|
- name: Set up Python 3.11
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: '3.11'
|
||||||
|
|
||||||
|
- name: Install Build Dependencies
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y \
|
||||||
|
build-essential \
|
||||||
|
devscripts \
|
||||||
|
dh-virtualenv \
|
||||||
|
dh-python \
|
||||||
|
python3-all \
|
||||||
|
python3-all-dev \
|
||||||
|
python3.10 \
|
||||||
|
python3.10-venv \
|
||||||
|
python3.10-dev \
|
||||||
|
debhelper-compat
|
||||||
|
|
||||||
|
- name: Build the Debian Package
|
||||||
|
# Build it the same as the pypi way, then use the same package tar
|
||||||
|
run: |
|
||||||
|
mkdir /tmp/changedetection.io
|
||||||
|
python3 -m build
|
||||||
|
mv dist/*gz .
|
||||||
|
debuild -us -uc
|
||||||
|
|
||||||
|
- name: Upload Debian Package Artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: changedetection.io-deb-package
|
||||||
|
path: ../*.deb
|
||||||
|
|
||||||
|
#@todo install and test that some basic content appears
|
||||||
165
.github/workflows/build-deb.yml
vendored
Normal file
165
.github/workflows/build-deb.yml
vendored
Normal file
@@ -0,0 +1,165 @@
|
|||||||
|
name: Build Debian Package
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-deb:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: debian:bookworm
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install git and dependencies
|
||||||
|
run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y git
|
||||||
|
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Install build dependencies
|
||||||
|
run: |
|
||||||
|
apt-get install -y \
|
||||||
|
dpkg-dev \
|
||||||
|
debhelper \
|
||||||
|
dh-python \
|
||||||
|
python3-all \
|
||||||
|
python3-setuptools \
|
||||||
|
python3-pip \
|
||||||
|
python3-venv \
|
||||||
|
build-essential \
|
||||||
|
fakeroot
|
||||||
|
|
||||||
|
- name: Build Debian package
|
||||||
|
run: |
|
||||||
|
# Build the package
|
||||||
|
dpkg-buildpackage -us -uc -b
|
||||||
|
|
||||||
|
# Move built package to workspace for artifact upload
|
||||||
|
mkdir -p deb-packages
|
||||||
|
mv ../*.deb deb-packages/ || true
|
||||||
|
mv ../*.buildinfo deb-packages/ || true
|
||||||
|
mv ../*.changes deb-packages/ || true
|
||||||
|
|
||||||
|
# List what was built
|
||||||
|
ls -lh deb-packages/
|
||||||
|
|
||||||
|
- name: Upload .deb package
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: changedetection-deb-package
|
||||||
|
path: deb-packages/*.deb
|
||||||
|
retention-days: 30
|
||||||
|
|
||||||
|
- name: Upload build artifacts
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: changedetection-build-info
|
||||||
|
path: |
|
||||||
|
deb-packages/*.buildinfo
|
||||||
|
deb-packages/*.changes
|
||||||
|
retention-days: 30
|
||||||
|
|
||||||
|
test-install:
|
||||||
|
needs: build-deb
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: debian:bookworm
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Download .deb package
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: changedetection-deb-package
|
||||||
|
path: ./deb-packages
|
||||||
|
|
||||||
|
- name: Install systemd and dependencies
|
||||||
|
run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y systemd systemctl
|
||||||
|
|
||||||
|
- name: Install package
|
||||||
|
run: |
|
||||||
|
ls -lh deb-packages/
|
||||||
|
apt-get install -y ./deb-packages/*.deb
|
||||||
|
|
||||||
|
- name: Verify installation
|
||||||
|
run: |
|
||||||
|
echo "Checking if _changedetection user exists..."
|
||||||
|
id _changedetection
|
||||||
|
|
||||||
|
echo "Checking if data directory exists..."
|
||||||
|
test -d /var/lib/changedetection
|
||||||
|
ls -ld /var/lib/changedetection
|
||||||
|
|
||||||
|
echo "Checking if service file exists..."
|
||||||
|
test -f /lib/systemd/system/changedetection.io.service
|
||||||
|
|
||||||
|
echo "Checking if binary wrapper exists..."
|
||||||
|
test -x /usr/bin/changedetection.io
|
||||||
|
|
||||||
|
echo "Checking if venv exists..."
|
||||||
|
test -d /opt/changedetection
|
||||||
|
test -x /opt/changedetection/bin/python3
|
||||||
|
|
||||||
|
echo "Testing binary execution..."
|
||||||
|
/usr/bin/changedetection.io --help || echo "Help command returned: $?"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "✓ Installation verification passed!"
|
||||||
|
|
||||||
|
- name: Test service start and HTTP endpoint
|
||||||
|
run: |
|
||||||
|
apt-get install -y curl procps
|
||||||
|
|
||||||
|
echo "Starting changedetection.io service manually..."
|
||||||
|
# Start service in background as _changedetection user
|
||||||
|
su - _changedetection -s /bin/sh -c 'cd /var/lib/changedetection && /opt/changedetection/bin/changedetection.io -h 127.0.0.1 -p 5000 -d /var/lib/changedetection' &
|
||||||
|
|
||||||
|
echo "Waiting 5 seconds for service to start..."
|
||||||
|
sleep 5
|
||||||
|
|
||||||
|
echo "Checking if process is running..."
|
||||||
|
ps aux | grep changedetection || true
|
||||||
|
|
||||||
|
echo "Testing HTTP endpoint on localhost:5000..."
|
||||||
|
if curl -f -s http://127.0.0.1:5000/ | grep -i "changedetection" > /dev/null; then
|
||||||
|
echo "✓ Service is responding on port 5000!"
|
||||||
|
echo "✓ HTML content received successfully!"
|
||||||
|
else
|
||||||
|
echo "✗ Service did not respond correctly"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Optional: Publish to GitHub Releases on tag push
|
||||||
|
publish-release:
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
needs: [build-deb, test-install]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Download .deb package
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: changedetection-deb-package
|
||||||
|
path: ./deb-packages
|
||||||
|
|
||||||
|
- name: Create Release
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
with:
|
||||||
|
files: deb-packages/*.deb
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
@@ -10,6 +10,8 @@ recursive-include changedetectionio/tests *
|
|||||||
prune changedetectionio/static/package-lock.json
|
prune changedetectionio/static/package-lock.json
|
||||||
prune changedetectionio/static/styles/node_modules
|
prune changedetectionio/static/styles/node_modules
|
||||||
prune changedetectionio/static/styles/package-lock.json
|
prune changedetectionio/static/styles/package-lock.json
|
||||||
|
prune changedetectionio/tests/test-datastore
|
||||||
|
|
||||||
include changedetection.py
|
include changedetection.py
|
||||||
include requirements.txt
|
include requirements.txt
|
||||||
include README-pip.md
|
include README-pip.md
|
||||||
@@ -18,5 +20,6 @@ global-exclude node_modules
|
|||||||
global-exclude venv
|
global-exclude venv
|
||||||
|
|
||||||
global-exclude test-datastore
|
global-exclude test-datastore
|
||||||
|
global-exclude changedetectionio/tests/test-datastore
|
||||||
global-exclude changedetection.io*dist-info
|
global-exclude changedetection.io*dist-info
|
||||||
global-exclude changedetectionio/tests/proxy_socks5/test-datastore
|
global-exclude changedetectionio/tests/proxy_socks5/test-datastore
|
||||||
|
|||||||
40
build-deb.sh
Executable file
40
build-deb.sh
Executable file
@@ -0,0 +1,40 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
echo "========================================"
|
||||||
|
echo "Building changedetection.io Debian package"
|
||||||
|
echo "========================================"
|
||||||
|
|
||||||
|
# Check if running on Debian-based system
|
||||||
|
if ! command -v dpkg-buildpackage &> /dev/null; then
|
||||||
|
echo "Error: dpkg-buildpackage not found. Install with:"
|
||||||
|
echo " sudo apt-get install dpkg-dev debhelper dh-python python3-all python3-setuptools"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Clean previous builds
|
||||||
|
echo "Cleaning previous builds..."
|
||||||
|
rm -rf debian/.debhelper debian/changedetection.io debian/files debian/*.debhelper* debian/*.substvars
|
||||||
|
rm -f ../changedetection.io_*.deb ../changedetection.io_*.buildinfo ../changedetection.io_*.changes
|
||||||
|
|
||||||
|
# Build the package
|
||||||
|
echo "Building package..."
|
||||||
|
dpkg-buildpackage -us -uc -b
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "========================================"
|
||||||
|
echo "Build complete!"
|
||||||
|
echo "========================================"
|
||||||
|
echo ""
|
||||||
|
echo "Package created at:"
|
||||||
|
ls -lh ../changedetection.io_*.deb
|
||||||
|
echo ""
|
||||||
|
echo "To install locally:"
|
||||||
|
echo " sudo dpkg -i ../changedetection.io_*.deb"
|
||||||
|
echo " sudo apt-get install -f # If there are dependency issues"
|
||||||
|
echo ""
|
||||||
|
echo "To test in a clean environment:"
|
||||||
|
echo " docker run --rm -it -v \$(pwd)/..:/build debian:bookworm bash"
|
||||||
|
echo " # Inside container:"
|
||||||
|
echo " apt-get update && apt-get install -y /build/changedetection.io_*.deb"
|
||||||
|
echo " systemctl status changedetection.io"
|
||||||
4
changedetectionio/__main__.py
Normal file
4
changedetectionio/__main__.py
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
from . import main
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
||||||
3
debian/changedetection-wrapper
vendored
Executable file
3
debian/changedetection-wrapper
vendored
Executable file
@@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Wrapper script to run changedetection.io from venv
|
||||||
|
exec /opt/changedetection/bin/python3 /opt/changedetection/bin/changedetection.io "$@"
|
||||||
31
debian/changedetection.io.service
vendored
Normal file
31
debian/changedetection.io.service
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=changedetection.io - Website change detection and monitoring
|
||||||
|
After=network.target
|
||||||
|
Documentation=https://changedetection.io
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
User=_changedetection
|
||||||
|
Group=_changedetection
|
||||||
|
WorkingDirectory=/var/lib/changedetection
|
||||||
|
Environment="DATASTORE_PATH=/var/lib/changedetection"
|
||||||
|
Environment="HOST=127.0.0.1"
|
||||||
|
Environment="PORT=5000"
|
||||||
|
ExecStart=/opt/changedetection/bin/changedetection.io -h 127.0.0.1 -p 5000 -d /var/lib/changedetection
|
||||||
|
|
||||||
|
# Security hardening
|
||||||
|
NoNewPrivileges=true
|
||||||
|
PrivateTmp=true
|
||||||
|
ProtectSystem=strict
|
||||||
|
ProtectHome=true
|
||||||
|
ReadWritePaths=/var/lib/changedetection
|
||||||
|
ProtectKernelTunables=true
|
||||||
|
ProtectKernelModules=true
|
||||||
|
ProtectControlGroups=true
|
||||||
|
|
||||||
|
# Restart policy
|
||||||
|
Restart=on-failure
|
||||||
|
RestartSec=10s
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
13
debian/changedetection.io/lib/systemd/system/changedetection.io.service
vendored
Normal file
13
debian/changedetection.io/lib/systemd/system/changedetection.io.service
vendored
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=changedetection.io Service
|
||||||
|
After=network.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
User=changedetio
|
||||||
|
Group=changedetio
|
||||||
|
WorkingDirectory=/opt/changedetection.io
|
||||||
|
ExecStart=/opt/changedetection.io/bin/python -m changedetectionio
|
||||||
|
Restart=on-failure
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
7
debian/changelog
vendored
Normal file
7
debian/changelog
vendored
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
changedetection.io (0.50.38) stable; urgency=medium
|
||||||
|
|
||||||
|
* Initial Debian package release
|
||||||
|
* Service runs as _changedetection user on localhost:5000
|
||||||
|
* Systemd integration with security hardening
|
||||||
|
|
||||||
|
-- dgtlmoon <dgtlmoon@changedetection.io> Sat, 02 Nov 2024 00:00:00 +0000
|
||||||
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
13
|
||||||
38
debian/control
vendored
Normal file
38
debian/control
vendored
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
Source: changedetection.io
|
||||||
|
Section: web
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: dgtlmoon <dgtlmoon@changedetection.io>
|
||||||
|
Build-Depends: debhelper-compat (= 13),
|
||||||
|
dh-python,
|
||||||
|
python3-all (>= 3.10),
|
||||||
|
python3-setuptools,
|
||||||
|
python3-pip,
|
||||||
|
python3-venv
|
||||||
|
Standards-Version: 4.6.2
|
||||||
|
Homepage: https://changedetection.io
|
||||||
|
Vcs-Browser: https://github.com/dgtlmoon/changedetection.io
|
||||||
|
Vcs-Git: https://github.com/dgtlmoon/changedetection.io.git
|
||||||
|
Rules-Requires-Root: no
|
||||||
|
|
||||||
|
Package: changedetection.io
|
||||||
|
Architecture: all
|
||||||
|
Depends: ${misc:Depends},
|
||||||
|
${python3:Depends},
|
||||||
|
python3 (>= 3.10),
|
||||||
|
python3-pip,
|
||||||
|
python3-venv,
|
||||||
|
adduser
|
||||||
|
Description: Website change detection and monitoring service
|
||||||
|
changedetection.io is a self-hosted open source application for monitoring
|
||||||
|
websites for changes. It detects changes to web pages and sends alerts or
|
||||||
|
notifications when changes are detected.
|
||||||
|
.
|
||||||
|
Features include:
|
||||||
|
* Monitor websites for visual and text changes
|
||||||
|
* XPath, CSS, and JSON filtering
|
||||||
|
* Notifications via multiple services (Apprise)
|
||||||
|
* API for automation
|
||||||
|
* Headless browser support
|
||||||
|
.
|
||||||
|
This package installs changedetection.io as a systemd service running on
|
||||||
|
localhost (127.0.0.1:5000) as the unprivileged _changedetection user.
|
||||||
1
debian/debhelper-build-stamp
vendored
Normal file
1
debian/debhelper-build-stamp
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
python-changedetection.io
|
||||||
2
debian/install
vendored
Normal file
2
debian/install
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# Install wrapper script
|
||||||
|
debian/changedetection-wrapper usr/bin/changedetection.io
|
||||||
51
debian/postinst
vendored
Executable file
51
debian/postinst
vendored
Executable file
@@ -0,0 +1,51 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
configure)
|
||||||
|
# Create system user if it doesn't exist
|
||||||
|
if ! getent passwd _changedetection >/dev/null; then
|
||||||
|
adduser --system --group --home /var/lib/changedetection \
|
||||||
|
--gecos "changedetection.io service" \
|
||||||
|
--shell /usr/sbin/nologin \
|
||||||
|
_changedetection
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Create data directory with proper permissions
|
||||||
|
if [ ! -d /var/lib/changedetection ]; then
|
||||||
|
mkdir -p /var/lib/changedetection
|
||||||
|
fi
|
||||||
|
chown _changedetection:_changedetection /var/lib/changedetection
|
||||||
|
chmod 755 /var/lib/changedetection
|
||||||
|
|
||||||
|
# Reload systemd and enable service
|
||||||
|
if [ -d /run/systemd/system ]; then
|
||||||
|
systemctl daemon-reload >/dev/null || true
|
||||||
|
deb-systemd-helper enable changedetection.io.service >/dev/null || true
|
||||||
|
|
||||||
|
# Start service if this is a fresh install
|
||||||
|
if [ -z "$2" ]; then
|
||||||
|
echo "Starting changedetection.io service..."
|
||||||
|
systemctl start changedetection.io.service || true
|
||||||
|
echo ""
|
||||||
|
echo "changedetection.io has been installed and started."
|
||||||
|
echo "Access it at: http://127.0.0.1:5000"
|
||||||
|
echo ""
|
||||||
|
echo "To check status: systemctl status changedetection.io"
|
||||||
|
echo "To view logs: journalctl -u changedetection.io -f"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
abort-upgrade|abort-remove|abort-deconfigure)
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "postinst called with unknown argument \`$1'" >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
|
||||||
|
exit 0
|
||||||
29
debian/postrm
vendored
Executable file
29
debian/postrm
vendored
Executable file
@@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
purge)
|
||||||
|
# Remove system user on purge
|
||||||
|
if getent passwd _changedetection >/dev/null; then
|
||||||
|
deluser --system _changedetection >/dev/null || true
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Remove data directory on purge (with confirmation in package description)
|
||||||
|
if [ -d /var/lib/changedetection ]; then
|
||||||
|
echo "Note: Data directory /var/lib/changedetection has been preserved."
|
||||||
|
echo "Remove manually with: rm -rf /var/lib/changedetection"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "postrm called with unknown argument \`$1'" >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
|
||||||
|
exit 0
|
||||||
23
debian/prerm
vendored
Executable file
23
debian/prerm
vendored
Executable file
@@ -0,0 +1,23 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
remove|deconfigure)
|
||||||
|
# Stop service before removal
|
||||||
|
if [ -d /run/systemd/system ]; then
|
||||||
|
deb-systemd-invoke stop changedetection.io.service >/dev/null || true
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
upgrade|failed-upgrade)
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "prerm called with unknown argument \`$1'" >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
|
||||||
|
exit 0
|
||||||
37
debian/rules
vendored
Executable file
37
debian/rules
vendored
Executable file
@@ -0,0 +1,37 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
# Debian rules file for changedetection.io
|
||||||
|
# This uses a Python virtual environment approach for isolated dependencies
|
||||||
|
|
||||||
|
export PYBUILD_NAME=changedetection.io
|
||||||
|
export DH_VERBOSE=1
|
||||||
|
|
||||||
|
# Use venv installation method
|
||||||
|
VENV_DIR = debian/changedetection.io/opt/changedetection
|
||||||
|
PYTHON = python3
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@ --with python3 --buildsystem=pybuild
|
||||||
|
|
||||||
|
override_dh_auto_install:
|
||||||
|
# Create virtual environment
|
||||||
|
$(PYTHON) -m venv $(VENV_DIR)
|
||||||
|
|
||||||
|
# Install the package and dependencies into venv
|
||||||
|
$(VENV_DIR)/bin/pip install --upgrade pip setuptools wheel
|
||||||
|
$(VENV_DIR)/bin/pip install .
|
||||||
|
|
||||||
|
# Remove pip and setuptools to reduce size (optional)
|
||||||
|
# $(VENV_DIR)/bin/pip uninstall -y pip setuptools wheel
|
||||||
|
|
||||||
|
# Create wrapper script directory
|
||||||
|
install -d debian/changedetection.io/usr/bin
|
||||||
|
|
||||||
|
override_dh_auto_test:
|
||||||
|
# Skip tests during package build
|
||||||
|
# Tests can be run separately with pytest
|
||||||
|
@echo "Skipping tests during package build"
|
||||||
|
|
||||||
|
override_dh_auto_clean:
|
||||||
|
dh_auto_clean
|
||||||
|
rm -rf build dist *.egg-info
|
||||||
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
3.0 (native)
|
||||||
Reference in New Issue
Block a user