Changeset 139b910


Ignore:
Timestamp:
01/10/2023 09:56:53 PM (16 months ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/llvm18, xry111/xf86-video-removal
Children:
0231d69
Parents:
b588758
Message:

Add a make rule to generate pythonhosted.xml

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    rb588758 r139b910  
    271271version:
    272272        $(Q)./git-version.sh $(REV)
     273
     274ALL_PYTHON_DEPS := $(filter-out general/prog/python-dependencies/pythonhosted.xml, $(wildcard general/prog/python-dependencies/*.xml))
     275
     276PYTHONHOSTED_MODS := requests sphinx_rtd_theme pytest gi-docgen
     277
     278PYTHONHOSTED_DEPS := $(addprefix general/prog/python-modules/,$(addsuffix .xml,$(PYTHONHOSTED_MODS)))
     279
     280general/prog/python-dependencies/pythonhosted.xml: $(ALL_PYTHON_DEPS) $(PYTHONHOSTED_DEPS) stylesheets/pythonhosted.xsl
     281        @echo Generating pythonhosted.xml
     282        @xsltproc --xinclude \
     283        -o temp.xml \
     284        --stringparam packages "$(PYTHONHOSTED_MODS)" \
     285        stylesheets/pythonhosted.xsl \
     286        general/prog/python-modules.xml
     287        @mv temp.xml $@
Note: See TracChangeset for help on using the changeset viewer.