diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index bf3b1e4..ce7c158 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: apt install -y --no-install-recommends \ git curl wget build-essential devscripts debhelper dh-python \ python3-all python3-setuptools python3-pytest python3-yaml \ - python3-click python3-jinja2 python3-requests python3-dev \ + python3-click python3-jinja2 python3-requests python3-psutil python3-dev \ python3-pip python3-wheel python3-build python3-installer \ sbuild schroot debootstrap systemd-container ccache \ lintian diff --git a/cache-plugins/README.md b/cache-plugins/README.md new file mode 100644 index 0000000..84830de --- /dev/null +++ b/cache-plugins/README.md @@ -0,0 +1 @@ +# Cache plugins diff --git a/cache.d/README.md b/cache.d/README.md new file mode 100644 index 0000000..13a87fc --- /dev/null +++ b/cache.d/README.md @@ -0,0 +1 @@ +# Cache configurations diff --git a/chroot.d/README.md b/chroot.d/README.md new file mode 100644 index 0000000..3a5e0f4 --- /dev/null +++ b/chroot.d/README.md @@ -0,0 +1 @@ +# Chroot configurations diff --git a/debian/control b/debian/control index f6f62ba..3f44510 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: mock Section: devel Priority: optional Maintainer: Deb-Mock Team -Build-Depends: debhelper (>= 13), dh-python, python3-all, python3-setuptools, python3-pytest, python3-yaml, python3-click, python3-jinja2, python3-requests +Build-Depends: debhelper (>= 13), dh-python, python3-all, python3-setuptools, python3-pytest, python3-yaml, python3-click, python3-jinja2, python3-requests, python3-psutil Standards-Version: 4.6.2 Homepage: https://git.raines.xyz/robojerk/deb-mock Vcs-Git: https://git.raines.xyz/robojerk/deb-mock.git @@ -10,7 +10,7 @@ Vcs-Browser: https://git.raines.xyz/robojerk/deb-mock Package: deb-mock Architecture: all -Depends: ${python3:Depends}, ${misc:Depends}, python3-click (>= 8.0.0), python3-yaml (>= 6.0), python3-jinja2 (>= 3.0.0), python3-requests (>= 2.25.0), sbuild, schroot, debootstrap, systemd-container, deb-mock-filesystem, deb-mock-configs +Depends: ${python3:Depends}, ${misc:Depends}, python3-click (>= 8.0.0), python3-yaml (>= 6.0), python3-jinja2 (>= 3.0.0), python3-requests (>= 2.25.0), python3-psutil (>= 5.8.0), sbuild, schroot, debootstrap, systemd-container, deb-mock-filesystem, deb-mock-configs Recommends: deb-mock-plugins, ccache, python3-pytest, python3-pytest-cov Description: Debian package build environment manager Deb-Mock is a low-level utility to create clean, isolated build environments diff --git a/default-configs/README.md b/default-configs/README.md new file mode 100644 index 0000000..13fa48e --- /dev/null +++ b/default-configs/README.md @@ -0,0 +1 @@ +# Default configurations diff --git a/docs/api/README.md b/docs/api/README.md new file mode 100644 index 0000000..c67872c --- /dev/null +++ b/docs/api/README.md @@ -0,0 +1 @@ +# API documentation diff --git a/docs/plugins/README.md b/docs/plugins/README.md new file mode 100644 index 0000000..6c38318 --- /dev/null +++ b/docs/plugins/README.md @@ -0,0 +1 @@ +# Plugin documentation diff --git a/include/README.md b/include/README.md new file mode 100644 index 0000000..9b92694 --- /dev/null +++ b/include/README.md @@ -0,0 +1 @@ +# Header files diff --git a/mounts/README.md b/mounts/README.md new file mode 100644 index 0000000..1099b5c --- /dev/null +++ b/mounts/README.md @@ -0,0 +1 @@ +# Mount points diff --git a/pyproject.toml b/pyproject.toml index 064b417..67672da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = [ ] readme = "README.md" requires-python = ">=3.9" -license = {text = "GPL-2.0-or-later"} +license = "GPL-2.0-or-later" keywords = ["debian", "mock", "chroot", "build", "environment", "packaging"] classifiers = [ "Development Status :: 3 - Alpha", @@ -29,6 +29,7 @@ dependencies = [ "pyyaml>=6.0", "jinja2>=3.0.0", "requests>=2.25.0", + "psutil>=5.8.0", ] [project.urls] diff --git a/templates/README.md b/templates/README.md new file mode 100644 index 0000000..c4f8830 --- /dev/null +++ b/templates/README.md @@ -0,0 +1 @@ +# Templates directory