Projet

Général

Profil

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

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

Télécharger (1,6 ko)

Voir les différences:

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

 debian/control | 2 +-
 setup.py       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
debian/control
2 2
Maintainer: Frederic Peters <fpeters@entrouvert.com>
3 3
Section: python
4 4
Priority: optional
5
Build-Depends: python-setuptools (>= 33), python-pkg-resources (>= 33), dh-python, dpkg-dev, python-all (>= 2.6.6-3), python2.7-dev, python-all-dev, python3-setuptools, python3-all, debhelper (>= 9), python-django, python3-django, inkscape, python-imaging, python3-pil, libjpeg-dev, zlib1g-dev, ruby-sass (>= 3.4)
5
Build-Depends: python-setuptools (>= 33), python-pkg-resources (>= 33), dh-python, dpkg-dev, python-all (>= 2.6.6-3), python2.7-dev, python-all-dev, python3-setuptools, python3-all, debhelper (>= 9), python-django, python3-django, inkscape, python-imaging, python3-pil, libjpeg-dev, zlib1g-dev, sassc
6 6
Standards-Version: 3.9.1
7 7

  
8 8
Package: python-gadjo
setup.py
96 96

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