Projet

Général

Profil

0001-debian-use-PYBUILD_NAME-41634.patch

Benjamin Dauvergne, 13 avril 2020 12:07

Télécharger (1,44 ko)

Voir les différences:

Subject: [PATCH] debian: use PYBUILD_NAME (#41634)

 debian/combo.install         | 2 --
 debian/python3-combo.install | 1 -
 debian/rules                 | 5 +++++
 3 files changed, 5 insertions(+), 3 deletions(-)
 delete mode 100644 debian/python3-combo.install
debian/combo.install
1
debian/combo.service      /lib/systemd/system
2 1
debian/combo-manage       /usr/bin
3 2
debian/settings.py        /etc/combo
4 3
debian/uwsgi.ini          /etc/combo
5 4
debian/debian_config.py   /usr/lib/combo
6
usr/bin/manage.py         /usr/lib/combo
debian/python3-combo.install
1
usr/lib/python3.*
debian/rules
1 1
#!/usr/bin/make -f
2 2
# -*- makefile -*-
3 3

  
4
export PYBUILD_NAME=combo
4 5
export PYBUILD_DISABLE=test
5 6

  
6 7
%:
7 8
	dh $@ --with python3,systemd --buildsystem=pybuild
9

  
10
override_dh_install:
11
	dh_install
12
	mv $(CURDIR)/debian/python3-combo/usr/bin/manage.py $(CURDIR)/debian/combo/usr/lib/combo/manage.py
8
-