Changeset 17c9da8
- Timestamp:
- 04/15/2021 09:31:50 AM (3 years ago)
- Branches:
- 11.0, 11.1, 11.2, 11.3, 12.0, kea, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/python-mods, qt5new, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 84de88e
- Parents:
- 1adab68
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r1adab68 r17c9da8 56 56 57 57 html: $(BASEDIR)/index.html 58 $(BASEDIR)/index.html: $(RENDERTMP)/$(BLFSHTML) 58 $(BASEDIR)/index.html: $(RENDERTMP)/$(BLFSHTML) version 59 59 @echo "Generating chunked XHTML files..." 60 60 $(Q)xsltproc --nonet \ … … 89 89 90 90 nochunks: $(BASEDIR)/$(NOCHUNKS_OUTPUT) 91 $(BASEDIR)/$(NOCHUNKS_OUTPUT): $(RENDERTMP)/$(BLFSHTML) 91 $(BASEDIR)/$(NOCHUNKS_OUTPUT): $(RENDERTMP)/$(BLFSHTML) version 92 92 @echo "Generating non-chunked XHTML file..." 93 93 $(Q)xsltproc --nonet \ … … 112 112 113 113 validate: $(RENDERTMP)/$(BLFSFULL) 114 $(RENDERTMP)/$(BLFSFULL): general.ent packages.ent $(ALLXML) $(ALLXSL) 114 $(RENDERTMP)/$(BLFSFULL): general.ent packages.ent $(ALLXML) $(ALLXSL) version 115 115 $(Q)[ -d $(RENDERTMP) ] || mkdir -p $(RENDERTMP) 116 116 … … 131 131 132 132 profile-html: $(RENDERTMP)/$(BLFSHTML) 133 $(RENDERTMP)/$(BLFSHTML): $(RENDERTMP)/$(BLFSFULL) 133 $(RENDERTMP)/$(BLFSHTML): $(RENDERTMP)/$(BLFSFULL) version 134 134 @echo "Generating profiled XML for XHTML..." 135 135 $(Q)xsltproc --nonet \ … … 144 144 blfs-patches.sh > blfs-patch-list 145 145 146 blfs-patches.sh: $(RENDERTMP)/$(BLFSFULL) 146 blfs-patches.sh: $(RENDERTMP)/$(BLFSFULL) version 147 147 @echo "Generating blfs patch script..." 148 148 $(Q)xsltproc --nonet \ … … 152 152 153 153 wget-list: $(BASEDIR)/wget-list 154 $(BASEDIR)/wget-list: $(RENDERTMP)/$(BLFSFULL) 154 $(BASEDIR)/wget-list: $(RENDERTMP)/$(BLFSFULL) version 155 155 @echo "Generating wget list for $(REV) at $(BASEDIR)/wget-list ..." 156 156 $(Q)mkdir -p $(BASEDIR) … … 161 161 162 162 test-links: $(BASEDIR)/test-links 163 $(BASEDIR)/test-links: $(RENDERTMP)/$(BLFSFULL) 163 $(BASEDIR)/test-links: $(RENDERTMP)/$(BLFSFULL) version 164 164 @echo "Generating test-links file..." 165 165 $(Q)mkdir -p $(BASEDIR) … … 213 213 214 214 dump-commands: $(DUMPDIR) 215 $(DUMPDIR): $(RENDERTMP)/$(BLFSFULL) 215 $(DUMPDIR): $(RENDERTMP)/$(BLFSFULL) version 216 216 @echo "Dumping book commands..." 217 217 $(Q)xsltproc --output $(DUMPDIR)/ \ … … 222 222 .PHONY: blfs all world html nochunks tmpdir clean \ 223 223 validate profile-html blfs-patch-list wget-list test-links \ 224 dump-commands bootscripts systemd-units 225 226 224 dump-commands bootscripts systemd-units version 225 226 version: 227 $(Q)./git-version.sh -
book/bookinfo.xml
r1adab68 r17c9da8 49 49 <revhistory> 50 50 <revision> 51 <revnumber>& version;</revnumber>51 <revnumber>&short-version;</revnumber> 52 52 <date>&pubdate;</date> 53 53 <revremark>Ongoing Release</revremark> -
general.ent
r1adab68 r17c9da8 1 <!-- $LastChangedBy$ $Date$ --> 1 <!-- version info generated from git commit, 2 comment out the following two lines for release. --> 3 <!ENTITY % version-entities SYSTEM "version.ent"> 4 %version-entities; 2 5 3 <!ENTITY day "15"> <!-- Always 2 digits --> 4 <!ENTITY month "04"> <!-- Always 2 digits --> 5 <!ENTITY year "2021"> 6 <!ENTITY copyrightdate "2001-&year;"> 6 <!-- uncomment the following entities and modify them for release, 7 month and year should be always 2 digits. --> 8 <!-- 9 <!ENTITY day "01"> 10 <!ENTITY month "09"> 11 <!ENTITY year "2021"> 12 <!ENTITY copyrightdate "2001-2021"> 13 <!ENTITY version "10.2"> 14 <!ENTITY releasedate "September 1st, &year;"> 15 <!ENTITY pubdate "&year;-&month;-&day;"> 16 <!ENTITY short-version "&version;"> 17 --> 18 7 19 <!ENTITY copyholder "The BLFS Development Team"> 8 <!ENTITY version "&year;-&month;-&day;">9 <!ENTITY releasedate "April 15th, &year;">10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->11 20 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> 12 21 <!ENTITY lfs-version "development"> <!-- x.y|development --> 13 22 <!ENTITY lfs-versiond "systemd"> <!-- x.y-systemd|systemd --> 14 <!ENTITY last-commit "$Date$"> <!-- Automatic update -->15 23 <!ENTITY lfs-domainname "linuxfromscratch.org"> 16 24
Note:
See TracChangeset
for help on using the changeset viewer.