Projet

Général

Profil

0001-debian-use-sassc-to-build-css-files-35497.patch

Frédéric Péters, 21 août 2019 09:46

Télécharger (1,27 ko)

Voir les différences:

Subject: [PATCH] debian: use sassc to build css files (#35497)

 debian/control | 2 +-
 setup.py       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
debian/control
2 2
Maintainer: Jérôme Schneider <jschneider@entrouvert.com>
3 3
Section: python
4 4
Priority: optional
5
Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 9), python-django, dh-python, dh-systemd, ruby-sass
5
Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 9), python-django, dh-python, dh-systemd, sassc
6 6
Standards-Version: 3.9.6
7 7
X-Python-Version: >= 2.7
8 8

  
setup.py
97 97

  
98 98
    def run(self):
99 99
        sass_bin = None
100
        for program in ('sass', 'sassc'):
100
        for program in ('sassc', 'sass'):
101 101
            sass_bin = find_executable(program)
102 102
            if sass_bin:
103 103
                break
104
-