aboutsummaryrefslogtreecommitdiff
path: root/maintainer-scripts
AgeCommit message (Collapse)AuthorFilesLines
2023-11-14Daily bump.GCC Administrator1-0/+8
2023-11-14maintainer-scripts/gcc_release: cleanup whitespaceSam James1-8/+8
maintainer-scripts/ * gcc_release: Cleanup whitespace. Signed-off-by: Sam James <sam@gentoo.org>
2023-11-14maintainer-scripts/gcc_release: use HTTPS for linksSam James1-3/+3
maintainer-scripts/ * gcc_release: Use HTTPS for links. Signed-off-by: Sam James <sam@gentoo.org>
2023-07-08Daily bump.GCC Administrator1-0/+4
2023-07-07Closing the GCC 10 branchRichard Biener1-1/+0
contrib/ * gcc-changelog/git_update_version.py: Remove GCC 10 from active_refs. maintainer-scripts/ * crontab: Remove entry for GCC 10.
2023-04-21Daily bump.GCC Administrator1-0/+6
2023-04-20update_web_docs_git: Allow setting TEXI2*, add git build defaultArsen Arsenović1-3/+14
maintainer-scripts/ChangeLog: * update_web_docs_git: Add a mechanism to override makeinfo, texi2dvi and texi2pdf, and default them to /home/gccadmin/texinfo/install-git/bin/${tool}, if present.
2023-04-18Daily bump.GCC Administrator1-0/+5
2023-04-17Update crontab and git_update_version.pyJakub Jelinek1-4/+5
2023-04-17 Jakub Jelinek <jakub@redhat.com> maintainer-scripts/ * crontab: Snapshots from trunk are now GCC 14 related. Add GCC 13 snapshots from the respective branch. contrib/ * gcc-changelog/git_update_version.py (active_refs): Add releases/gcc-13.
2023-03-22Daily bump.GCC Administrator1-0/+10
2023-03-21html: Set CONTENTS_OUTPUT_LOCATION=inline if makeinfo supports itArsen Arsenović1-1/+1
This flag allows us to restore old (pre-6.8) behavior of the @{summary,}content commands, so that texi2any continues to emit summarycontents first. maintainer-scripts/ChangeLog: * update_web_docs_git: Set CONTENTS_OUTPUT_LOCATION=inline in order to put @shortcontents above contents. gcc/ChangeLog: * configure.ac: Add check for the Texinfo 6.8 CONTENTS_OUTPUT_LOCATION customization variable and set it if supported. * configure: Regenerate. * Makefile.in (MAKEINFO_TOC_INLINE_FLAG): New variable. Set by configure.ac to -c CONTENTS_OUTPUT_LOCATION=inline if CONTENTS_OUTPUT_LOCATION support is detected, empty otherwise. ($(build_htmldir)/%/index.html): Pass MAKEINFO_TOC_INLINE_FLAG.
2023-03-21update_web_docs_git: Update CSS reference to new manual CSSArsen Arsenović1-1/+1
maintainer-scripts/ChangeLog: * update_web_docs_git (CSS): Update CSS reference to point to /texinfo-manuals.css.
2023-03-17Daily bump.GCC Administrator1-0/+9
2023-03-17maintainer-scripts: Add Modula-2 manual to update_web_docs_gitGaius Mulley1-1/+5
maintainer-scripts/ChangeLog: * update_web_docs_git (MANUALS): Add gm2. Add include path for gm2 manual.
2023-03-16maintainer-scripts: Abstract BUGURL in update_web_docs_gitGerald Pfeifer1-2/+3
The URL where to report bugs is hard coded in two places; abstract that into one variable, defined up front. maintainer-scripts/ChangeLog: * update_web_docs_git (BUGURL): Introduce and use throughout.
2022-12-01Daily bump.GCC Administrator1-0/+5
2022-11-30maintainer-scripts: Add gdc to update_web_docs_gitIain Buclaw1-0/+1
So that it's built and uploaded to gcc.gnu.org/onlinedocs. PR web/107749 maintainer-scripts/ChangeLog: * update_web_docs_git: Add gdc to MANUALS.
2022-11-24Daily bump.GCC Administrator1-0/+4
2022-11-23maintainer-scripts/gcc_release: compress xz in parallelSam James1-1/+1
1. This should speed up decompression for folks, as parallel xz creates a different archive which can be decompressed in parallel. Note that this different method is enabled by default in a new xz release coming shortly anyway (>= 5.3.3_alpha1). I build GCC regularly from the weekly snapshots and so the decompression time adds up. 2. It should speed up compression on the webserver a bit. Note that -T0 won't be the default in the new xz release, only the parallel compression mode (which enables parallel decompression). -T0 detects the number of cores available. So, if a different number of threads is preferred, it's fine to set e.g. -T2, etc. Signed-off-by: Sam James <sam@gentoo.org> * gcc_release (XZ): Add -T0.
2022-11-15Daily bump.GCC Administrator1-0/+35
2022-11-14Revert "sphinx: add update_web_docs_git.py script"Martin Liska1-81/+0
This reverts commit 6373b1fdf75ea0908dfaebdbfc54d8b55b08d409.
2022-11-14Revert "sphinx: simplify default in baseconf.py."Martin Liska1-2/+7
This reverts commit 8d7a55b7f4ce37ecc869bd31cadc3f9e059e2f44.
2022-11-14Revert "sphinx: update crontab with new script"Martin Liska1-1/+1
This reverts commit d05a423c1e7b81021a1b6bee93db31a903d87667.
2022-11-14Revert "docs: create sources tarball"Martin Liska1-29/+0
This reverts commit 52eedc1fa3d211f29196eed60e11e6a8738329c2.
2022-11-14Revert "maintainer-scripts: fix superfluous 'sh' for Python script"Martin Liska1-1/+1
This reverts commit 9072763f4f17e600a980ff510b2baf8ad8ada1b5.
2022-11-11Daily bump.GCC Administrator1-0/+4
2022-11-10maintainer-scripts: fix superfluous 'sh' for Python scriptMartin Liska1-1/+1
maintainer-scripts/ChangeLog: * crontab: Fix superfluous 'sh' for Python script.
2022-11-10Daily bump.GCC Administrator1-0/+16
2022-11-09docs: create sources tarballMartin Liska1-0/+29
maintainer-scripts/ChangeLog: * update_web_docs_git.py: Create sources tarball.
2022-11-09sphinx: update crontab with new scriptMartin Liska1-1/+1
maintainer-scripts/ChangeLog: * crontab: Use new script for documentation of master branch.
2022-11-09sphinx: simplify default in baseconf.py.Martin Liska1-7/+2
ChangeLog: * doc/baseconf.py: Simplify BUGURL and VERSION_PACKAGE, provide a default. maintainer-scripts/ChangeLog: * update_web_docs_git.py: Simplify.
2022-11-09sphinx: add update_web_docs_git.py scriptMartin Liska1-0/+81
maintainer-scripts/ChangeLog: * update_web_docs_git.py: New file.
2022-07-29Daily bump.GCC Administrator1-0/+5
2022-07-28contrib: use sphinx-build from a venvMartin Liska1-15/+6
maintainer-scripts/ChangeLog: * update_web_docs_git: Use sphinx-build from a venv so that we can use a recent version.
2022-05-21Daily bump.GCC Administrator1-0/+4
2022-05-20Disable snapshots from gcc-9Richard Biener1-1/+0
GCC 9 nears its end. 2022-05-20 Richard Biener <rguenther@suse.de> maintainer-scripts/ * crontab: Disable snapshots from the gcc-9 branch.
2022-04-29Daily bump.GCC Administrator1-0/+5
2022-04-28Update crontab and git_update_version.pyJakub Jelinek1-4/+5
2022-04-28 Jakub Jelinek <jakub@redhat.com> maintainer-scripts/ * crontab: Snapshots from trunk are now GCC 13 related. Add GCC 12 snapshots from the respective branch. contrib/ * gcc-changelog/git_update_version.py (active_refs): Add releases/gcc-12.
2021-05-15Daily bump.GCC Administrator1-0/+4
2021-05-14Closing of 8 branch.Jakub Jelinek1-1/+0
2021-05-14 Jakub Jelinek <jakub@redhat.com> contrib/ * gcc-changelog/git_update_version.py: Remove releases/gcc-8 from active_refs. maintainer-scripts/ * crontab: Stop doing gcc-8 snapshots.
2021-04-21Daily bump.GCC Administrator1-0/+5
2021-04-20Update crontab and git_update_version.pyJakub Jelinek1-4/+5
2021-04-20 Jakub Jelinek <jakub@redhat.com> maintainer-scripts/ * crontab: Snapshots from trunk are now GCC 12 related. Add GCC 11 snapshots from the respective branch. contrib/ * gcc-changelog/git_update_version.py (active_refs): Add releases/gcc-11.
2021-04-10Daily bump.GCC Administrator1-0/+22
2021-04-09branch_changer: distinguish terminal outputMartin Liska1-1/+5
maintainer-scripts/ChangeLog: * branch_changer.py: Generate URL only when emitting to terminal.
2021-04-09branch_changer.py: mention CLOSING candidatesMartin Liska1-5/+8
maintainer-scripts/ChangeLog: * branch_changer.py: Mention closing candidates and emit console links to bugzilla.
2021-04-09branch_changer.py: document more behavior.Martin Liska1-1/+8
maintainer-scripts/ChangeLog: * branch_changer.py: Document more how the script behaves.
2021-04-09branch_changer: fix usage of Version class.Martin Liska1-2/+8
maintainer-scripts/ChangeLog: * branch_changer.py: Fix usage of Version class.
2021-04-09branch_changer.py: use new versioning scheme.Martin Liska1-1/+1
maintainer-scripts/ChangeLog: * branch_changer.py: Use new version scheme in --help output.
2021-04-09Daily bump.GCC Administrator1-0/+14
2021-04-08maintainer-scripts: Disable multilib when generating libstdc++ docsJonathan Wakely1-1/+1
This allows the docs to be generated on hosts without the necessary files present for multilib support. maintainer-scripts/ChangeLog: * generate_libstdcxx_web_docs: Add --disable-multilib to configure command.