Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pcLL0-0002qe-Ia for pgsql-hackers@arkaria.postgresql.org; Wed, 15 Mar 2023 07:14:18 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1pcLKz-0006Y2-EL for pgsql-hackers@arkaria.postgresql.org; Wed, 15 Mar 2023 07:14:17 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pcLKz-0006Xr-42 for pgsql-hackers@lists.postgresql.org; Wed, 15 Mar 2023 07:14:17 +0000 Received: from new4-smtp.messagingengine.com ([66.111.4.230]) by magus.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pcLKw-0006os-6M for pgsql-hackers@postgresql.org; Wed, 15 Mar 2023 07:14:16 +0000 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailnew.nyi.internal (Postfix) with ESMTP id BBF76581EAD for ; Wed, 15 Mar 2023 03:14:11 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute3.internal (MEProxy); Wed, 15 Mar 2023 03:14:11 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :content-type:date:date:feedback-id:feedback-id:from:from :in-reply-to:message-id:mime-version:reply-to:sender:subject :subject:to:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm2; t=1678864451; x=1678871651; bh=nBQIggDdQg6Ba cuzIshfiv4T7mDZSrICYaH8cjNWaVA=; b=k3sYx0aheedkdG0wbinQkdjz1ZBao nDnZLOMawsbhGU8ucfCH6aT19SfoQcSeR56wDnvYjVnYLp4jmLdImZfMbVZYIWb7 N0tARSJFe+Vn7mXHJSC3B728yG4XbwRH9jGkshKHnfxa1Vcy5zZ4fMli4zygcXkJ /rOCF4ZZV0nZnC3Ub1RNu4QC1k2RFhw+inSFxcREJ/VoHgYmPYlFAvaQJ4TCkUDa fNwydZhjZPDDdGcgOf7LqnP9rHfOPOw+r2esEwwx6ecftIc41Qscv1une84S2kxQ 1H8Djc7DOKc5UgCs5OnL+yC/+nLAcyLAzSNE9ZGUDYyXWb8o1dBvUjbzg== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvhedrvddvjedguddtvdcutefuodetggdotefrod ftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfgh necuuegrihhlohhuthemuceftddtnecunecujfgurhepkfffgggfhffuvfgtgfesthejre dttdefjeenucfhrhhomheprfgvthgvrhcugfhishgvnhhtrhgruhhtuceophgvthgvrhdr vghishgvnhhtrhgruhhtsegvnhhtvghrphhrihhsvggusgdrtghomheqnecuggftrfgrth htvghrnhepieejueevgefhieettedtgedtvefhvdeludelveevgeelvedtleeuheetveff tdeunecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehmrghilhhfrhhomhepph gvthgvrhdrvghishgvnhhtrhgruhhtsegvnhhtvghrphhrihhsvggusgdrtghomh X-ME-Proxy: Feedback-ID: i131946ab:Fastmail Received: by mail.messagingengine.com (Postfix) with ESMTPA for ; Wed, 15 Mar 2023 03:14:11 -0400 (EDT) Message-ID: <3fc3bb9b-f7f8-d442-35c1-ec82280c564a@enterprisedb.com> Date: Wed, 15 Mar 2023 08:14:09 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.8.0 Content-Language: en-US From: Peter Eisentraut Subject: meson documentation build open issues To: pgsql-hackers Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk I have identified several open issues with the documentation build under Meson (approximately in priority order): 1. Image files are not handled at all, so they don't show up in the final product. 2. Defaults to website stylesheet, no way to configure. This should be adjusted to match the make build. 3. The various build targets and their combinations are mismatching and incomplete. For example: Top-level GNUmakefile has these targets: - docs (builds html and man) - html - man (Those are the formats that are part of a distribution build.) doc/src/sgml/Makefile has these documented targets: - default target is html - all (builds html and man, maps to top-level "docs") - html - man - postgres-A4.pdf - postgres-US.pdf - check as well as (undocumented): - htmlhelp - postgres.html - postgres.txt - epub - postgres.epub - postgres.info meson has the following documented targets: - docs (builds only html) - alldocs (builds all formats, including obscure ones) as well as the following undocumented targets: - html - man - html_help [sic] - postgres-A4.pdf - postgres-US.pdf - postgres.epub - [info is not implemented at all] - [didn't find an equivalent of check] As you can see, this is all over the place. I'd like to arrive at some consistency across all build systems for handling each tier of documentation formats, in terms of what is documented, what the targets are named, and how they are grouped. 4. There doesn't appear to be a way to install the documentation. (There are also some open questions in the top-level meson.build about the installation directories, but I suppose if we can't install them then exactly where to install them hasn't been thought about too much.) 5. There doesn't appear to be an equivalent of "make world" and "make install-world" that includes documentation builds.