Debian: use -m lesscpy instead of hard-coded name

python3 -m lesscpy now works correctly. The make-css.sh script is
replaced with a simpler make call and ipa.css now depends on all less
files.

Signed-off-by: Christian Heimes <cheimes@redhat.com>
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
This commit is contained in:
Christian Heimes 2019-04-17 13:43:12 +02:00
parent 993fd4d7fc
commit d796c37f17
2 changed files with 5 additions and 32 deletions

View File

@ -15,11 +15,10 @@ EXTRA_DIST = \
$(app_DATA) \
$(NULL)
ipa := $(wildcard ../less/*.less) \
../less/font-awesome/variables.less \
../less/patternfly/variables.less \
../less/bootstrap/variables.less \
../less/variables.less
ipa := \
$(wildcard ../less/*.less) \
$(wildcard ../less/*/*.less) \
$(NULL)
ipa.css: $(ipa)
$(srcdir)/../util/make-css.sh
$(PYTHON) -m lesscpy -x ../less/ipa.less > $@

View File

@ -1,26 +0,0 @@
#!/bin/bash
# Authors:
# Petr Vobornik <pvoborni@redhat.com>
#
# Copyright (C) 2013 Red Hat
# see file 'COPYING' for use and warranty information
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
set -o errexit
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
py3-lesscpy -x $DIR/../less/ipa.less > $DIR/../css/ipa.css
exit $?