# SPDX-FileCopyrightText: 2023 - 2024 Benjamin Grande M. S. # # SPDX-License-Identifier: AGPL-3.0-or-later %define project sys-git %define license_csv AGPL-3.0-or-later ## Reproducibility. %define source_date_epoch_from_changelog 1 %define use_source_date_epoch_as_buildtime 1 %define clamp_mtime_to_source_date_epoch 1 ## Changelog is trimmed according to current date, not last date from changelog. %define _changelog_trimtime 0 %define _changelog_trimage 0 %global _buildhost %{name} ## Python bytecode interferes when updates occur and restart is not done. %undefine __brp_python_bytecompile Name: qusal-sys-git Version: 0.0.1 Release: 1%{?dist} Summary: Git operations through Qrexec in Qubes OS Group: qusal Packager: %{?_packager}%{!?_packager:Ben Grande } Vendor: Ben Grande License: AGPL-3.0-or-later URL: https://github.com/ben-grande/qusal BugURL: https://github.com/ben-grande/qusal/issues Source0: %{name}-%{version}.tar.gz BuildArch: noarch Requires: qubes-mgmt-salt Requires: qubes-mgmt-salt-dom0 Requires: qusal-dev Requires: qusal-dotfiles Requires: qusal-sys-pgp Requires: qusal-utils %description Setup a Git server called "sys-git", an offline Git Server that can be accessed from client qubes via Qrexec. Access control via Qrexec policy can restrict access to certain repositories, set of git actions for Fetch, Push and Init. This is an implementation of split-git. %prep %setup -q %build %check %pre %install rm -rf %{buildroot} install -m 755 -d \ %{buildroot}/srv/salt/qusal \ %{buildroot}%{_docdir}/%{name} \ %{buildroot}%{_defaultlicensedir}/%{name} for license in $(echo "%{license_csv}" | tr "," " "); do license_dir="LICENSES" if test -d "salt/%{project}/LICENSES"; then license_dir="salt/%{project}/LICENSES" fi install -m 644 "${license_dir}/${license}.txt" %{buildroot}%{_defaultlicensedir}/%{name}/ done install -m 644 salt/%{project}/README.md %{buildroot}%{_docdir}/%{name}/ rm -rf \ salt/%{project}/LICENSES \ salt/%{project}/README.md \ salt/%{project}/.* cp -rv salt/%{project} %{buildroot}/srv/salt/qusal/%{name} %post if test "$1" = "1"; then ## Install qubesctl state.apply sys-git.create qubesctl --skip-dom0 --targets=tpl-sys-git state.apply sys-git.install qubesctl --skip-dom0 --targets=sys-git state.apply sys-git.configure elif test "$1" = "2"; then ## Upgrade true fi %preun if test "$1" = "0"; then ## Uninstall true elif test "$1" = "1"; then ## Upgrade true fi %postun if test "$1" = "0"; then ## Uninstall true elif test "$1" = "1"; then ## Upgrade true fi %files %defattr(-,root,root,-) %license %{_defaultlicensedir}/%{name}/* %doc %{_docdir}/%{name}/README.md %dir /srv/salt/qusal/%{name} /srv/salt/qusal/%{name}/* %dnl TODO: missing '%ghost', files generated during %post, such as Qrexec policies. %changelog * Fri Jun 21 2024 Ben Grande - c84dfea - fix: generate RPM Specs for Qubes Builder V2 * Wed Jun 19 2024 Ben Grande - bf0a4bc - fix: terminate option parsing for qvm commands * Tue Jun 04 2024 Ben Grande - 8d9ad74 - fix: correct man-db typo * Tue May 28 2024 Ben Grande - 44ea4c5 - feat: add manual page reader * Mon Mar 18 2024 Ben Grande - f9ead06 - fix: remove extraneous package repository updates * Mon Mar 11 2024 Ben Grande - beb5c04 - fix: start qube before running qrexec-client * Fri Feb 23 2024 Ben Grande - 5605ec7 - doc: prefix qubesctl with sudo * Mon Jan 29 2024 Ben Grande - 6efcc1d - chore: copyright update * Sat Jan 20 2024 Ben Grande - 422b01e - feat: remove audiovm setting when unnecessary * Thu Jan 18 2024 Ben Grande - 04a016e - doc: attacker can display a large byte set * Thu Jan 18 2024 Ben Grande - f8ea066 - doc: how to update the repository * Thu Jan 18 2024 Ben Grande - 23bcceb - fix: dom0 as sys-git client * Thu Dec 28 2023 Ben Grande - b52e4b1 - fix: strict split-gpg2 service * Thu Dec 21 2023 Ben Grande - f21f676 - fix: dom0 qrexec call target qube * Thu Dec 21 2023 Ben Grande - a820751 - refactor: git Qrexec helper with drop-in commands * Tue Nov 21 2023 Ben Grande - 10b3bcd - fix: unstrusted input marking and sanitization * Mon Nov 13 2023 Ben Grande - 5eebd78 - refactor: initial commit