Commit Graph

333 Commits

Author SHA1 Message Date
GCC Administrator
8d6498f0d7 Daily bump. 2024-07-20 00:17:53 +00:00
Richard Biener
a589d3bfe5 Close GCC 11 branch
Remove gcc-11 branch from updating and snapshot generating

contrib/
	* gcc-changelog/git_update_version.py: Remove gcc-11 branch.

maintainer-scripts/
	* crontab: Remove entry for gcc-11 branch.
2024-07-19 07:59:58 +02:00
GCC Administrator
53eef7915a Daily bump. 2024-07-08 00:17:01 +00:00
Gerald Pfeifer
e3b8480f94 maintainer-scripts: Switch bug reporting URL to https
maintainer-scripts:
	* update_web_docs_git (BUGURL): Switch to https.
2024-07-07 22:20:45 +02:00
GCC Administrator
2781d8090e Daily bump. 2024-04-27 00:18:05 +00:00
Jakub Jelinek
036aad9dfc Update crontab and git_update_version.py
2024-04-26  Jakub Jelinek  <jakub@redhat.com>

maintainer-scripts/
	* crontab: Snapshots from trunk are now GCC 15 related.
	Add GCC 14 snapshots from the respective branch.
contrib/
	* gcc-changelog/git_update_version.py (active_refs): Add
	releases/gcc-14.
2024-04-26 12:18:29 +02:00
GCC Administrator
b9fd8399ec Daily bump. 2023-11-14 12:23:39 +00:00
Sam James
d22b87864e maintainer-scripts/gcc_release: cleanup whitespace
maintainer-scripts/
	* gcc_release: Cleanup whitespace.

Signed-off-by: Sam James <sam@gentoo.org>
2023-11-14 00:19:45 +00:00
Sam James
3239a80555 maintainer-scripts/gcc_release: use HTTPS for links
maintainer-scripts/
	* gcc_release: Use HTTPS for links.

Signed-off-by: Sam James <sam@gentoo.org>
2023-11-14 00:19:41 +00:00
GCC Administrator
01405f0108 Daily bump. 2023-07-08 00:16:53 +00:00
Richard Biener
8bebf97f84 Closing the GCC 10 branch
contrib/
	* gcc-changelog/git_update_version.py: Remove GCC 10 from
	active_refs.

maintainer-scripts/
	* crontab: Remove entry for GCC 10.
2023-07-07 09:11:46 +02:00
GCC Administrator
ce4e4f37fd Daily bump. 2023-04-21 00:17:31 +00:00
Arsen Arsenović
fa3a566378
update_web_docs_git: Allow setting TEXI2*, add git build default
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-20 22:57:16 +02:00
GCC Administrator
56b288f508 Daily bump. 2023-04-18 00:17:26 +00:00
Jakub Jelinek
f46ab32139 Update crontab and git_update_version.py
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-04-17 15:16:11 +02:00
GCC Administrator
031785270a Daily bump. 2023-03-22 00:17:03 +00:00
Arsen Arsenović
0395e1364d
html: Set CONTENTS_OUTPUT_LOCATION=inline if makeinfo supports it
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-21 09:47:34 +01:00
Arsen Arsenović
27334ebe38
update_web_docs_git: Update CSS reference to new manual CSS
maintainer-scripts/ChangeLog:

	* update_web_docs_git (CSS): Update CSS reference to point to
	/texinfo-manuals.css.
2023-03-21 09:47:34 +01:00
GCC Administrator
5c389a5c36 Daily bump. 2023-03-17 00:17:03 +00:00
Gaius Mulley
fa4d0ab533 maintainer-scripts: Add Modula-2 manual to update_web_docs_git
maintainer-scripts/ChangeLog:

	* update_web_docs_git (MANUALS): Add gm2.
	Add include path for gm2 manual.
2023-03-17 00:11:48 +01:00
Gerald Pfeifer
0c061da91a maintainer-scripts: Abstract BUGURL in update_web_docs_git
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.
2023-03-16 01:25:14 +01:00
GCC Administrator
6eea85a95e Daily bump. 2022-12-01 00:17:51 +00:00
Iain Buclaw
d13c359a49 maintainer-scripts: Add gdc to update_web_docs_git
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-30 22:40:56 +01:00
GCC Administrator
8761284fd7 Daily bump. 2022-11-24 00:17:47 +00:00
Sam James
2650b6f914 maintainer-scripts/gcc_release: compress xz in parallel
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-23 09:53:48 +00:00
GCC Administrator
83d400bded Daily bump. 2022-11-15 08:32:29 +00:00
Martin Liska
c909a4af72 Revert "sphinx: add update_web_docs_git.py script"
This reverts commit 6373b1fdf7.
2022-11-14 09:35:05 +01:00
Martin Liska
705dd990de Revert "sphinx: simplify default in baseconf.py."
This reverts commit 8d7a55b7f4.
2022-11-14 09:35:04 +01:00
Martin Liska
8c7311c198 Revert "sphinx: update crontab with new script"
This reverts commit d05a423c1e.
2022-11-14 09:35:04 +01:00
Martin Liska
65ae20063a Revert "docs: create sources tarball"
This reverts commit 52eedc1fa3.
2022-11-14 09:35:04 +01:00
Martin Liska
30ad6e0f46 Revert "maintainer-scripts: fix superfluous 'sh' for Python script"
This reverts commit 9072763f4f.
2022-11-14 09:35:03 +01:00
GCC Administrator
f225b813e4 Daily bump. 2022-11-11 00:17:22 +00:00
Martin Liska
9072763f4f maintainer-scripts: fix superfluous 'sh' for Python script
maintainer-scripts/ChangeLog:

	* crontab: Fix superfluous 'sh' for Python script.
2022-11-10 06:37:32 +01:00
GCC Administrator
1cdfd0e5cd Daily bump. 2022-11-10 00:17:57 +00:00
Martin Liska
52eedc1fa3 docs: create sources tarball
maintainer-scripts/ChangeLog:

	* update_web_docs_git.py: Create sources tarball.
2022-11-09 19:37:15 +01:00
Martin Liska
d05a423c1e sphinx: update crontab with new script
maintainer-scripts/ChangeLog:

	* crontab: Use new script for documentation of master branch.
2022-11-09 12:37:20 +01:00
Martin Liska
8d7a55b7f4 sphinx: simplify default in baseconf.py.
ChangeLog:

	* doc/baseconf.py: Simplify BUGURL and VERSION_PACKAGE,
	provide a default.

maintainer-scripts/ChangeLog:

	* update_web_docs_git.py: Simplify.
2022-11-09 11:52:13 +01:00
Martin Liska
6373b1fdf7 sphinx: add update_web_docs_git.py script
maintainer-scripts/ChangeLog:

	* update_web_docs_git.py: New file.
2022-11-09 09:33:17 +01:00
GCC Administrator
af086d1911 Daily bump. 2022-07-29 00:16:21 +00:00
Martin Liska
c6894e1dde contrib: use sphinx-build from a venv
maintainer-scripts/ChangeLog:

	* update_web_docs_git: Use sphinx-build from a venv so that
	we can use a recent version.
2022-07-28 12:38:09 +02:00
GCC Administrator
57f2ce6a87 Daily bump. 2022-05-21 00:16:32 +00:00
Richard Biener
6865c9599f Disable snapshots from gcc-9
GCC 9 nears its end.

2022-05-20  Richard Biener  <rguenther@suse.de>

maintainer-scripts/
	* crontab: Disable snapshots from the gcc-9 branch.
2022-05-20 09:12:59 +02:00
GCC Administrator
6b6f53d8af Daily bump. 2022-04-29 00:16:26 +00:00
Jakub Jelinek
12cc2b3299 Update crontab and git_update_version.py
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.
2022-04-28 16:22:42 +02:00
GCC Administrator
87a7d10c2e Daily bump. 2021-05-15 00:16:27 +00:00
Jakub Jelinek
df18a1343d Closing of 8 branch.
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-05-14 11:25:30 +02:00
GCC Administrator
be8aad8d73 Daily bump. 2021-04-21 00:16:23 +00:00
Jakub Jelinek
919323c1a4 Update crontab and git_update_version.py
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-20 10:50:22 +02:00
GCC Administrator
3115aba8d8 Daily bump. 2021-04-10 00:16:23 +00:00
Martin Liska
7d7481ecbc branch_changer: distinguish terminal output
maintainer-scripts/ChangeLog:

	* branch_changer.py: Generate URL only when emitting
	to terminal.
2021-04-09 13:39:30 +02:00