Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Install Apparmor profiles for onionshare.
· db022651
Ulrike Uhlig
authored
Apr 24, 2018
db022651
Update Standards version. No change needed.
· 17926538
Ulrike Uhlig
authored
May 25, 2018
17926538
Hide whitespace changes
Inline
Side-by-side
debian/control
View file @
17926538
...
...
@@ -5,7 +5,7 @@ Section: net
Priority: optional
Build-Depends: dh-python, python3-all, python3-setuptools, python3-distutils-extra, python3-flask, python3-nose, python3-stem (>= 1.4.0), python3-pyqt5, python3-pytest, python-nautilus, debhelper (>= 9.20120909~)
X-Python3-Version: >= 3.2
Standards-Version:
3.9.8
Standards-Version:
4.1.4
Homepage: https://onionshare.org
Vcs-Git: https://salsa.debian.org/pkg-privacy-team/onionshare.git
Vcs-Browser: https://salsa.debian.org/pkg-privacy-team/onionshare
...
...
debian/rules
View file @
17926538
...
...
@@ -3,6 +3,12 @@
%:
dh $@ --with python3 --buildsystem=pybuild
override_dh_install:
for PROFILE in usr.bin.onionshare usr.bin.onionshare-gui ; do \
cp apparmor/$$PROFILE debian/onionshare/etc/apparmor.d/ ; \
dh_apparmor --profile-name=$$PROFILE -ponionshare ; \
done
override_dh_auto_clean:
dh_auto_clean
rm -rf *.egg-info
...
...