agora inbox for [email protected]help / color / mirror / Atom feed
[PATCH v53 5/7] Check for transaction block early in ExecRepack 139+ messages / 2 participants [nested] [flat]
* [PATCH v53 5/7] Check for transaction block early in ExecRepack @ 2026-04-03 15:23 Srinath Reddy Sadipiralla <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Srinath Reddy Sadipiralla @ 2026-04-03 15:23 UTC (permalink / raw) Currently, executing REPACK (CONCURRENTLY) without a table name inside a transaction block throws the error "REPACK CONCURRENTLY requires explicit table name" instead of the expected transaction block error. This occurs because ExecRepack() validates the parsed options and missing relation before verifying the transaction state. This behavior is inconsistent with other utility commands like VACUUM ,REINDEX, etc; which invoke PreventInTransactionBlock() at the very start of their execution to properly reject execution inside user transactions before validating targets. Add PreventInTransactionBlock to the top of ExecRepack() to enforce the transaction block restriction early. This prevents the user from fixing a missing table error only to immediately hit a transaction block error, and also ensures consistency with rest of the commands. Author: Srinath Reddy Sadipiralla <[email protected]> --- src/backend/commands/repack.c | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/src/backend/commands/repack.c b/src/backend/commands/repack.c index f2759cdbef1..8d9b2b2e370 100644 --- a/src/backend/commands/repack.c +++ b/src/backend/commands/repack.c @@ -279,6 +279,21 @@ ExecRepack(ParseState *pstate, RepackStmt *stmt, bool isTopLevel) /* Determine the lock mode to use. */ lockmode = RepackLockLevel((params.options & CLUOPT_CONCURRENT) != 0); + if ((params.options & CLUOPT_CONCURRENT) != 0) + { + /* + * Make sure we're not in a transaction block. + * + * The reason is that repack_setup_logical_decoding() could wait + * indefinitely for our XID to complete. (The deadlock detector would + * not recognize it because we'd be waiting for ourselves, i.e. no + * real lock conflict.) It would be possible to run in a transaction + * block if we had no XID, but this restriction is simpler for users + * to understand and we don't lose any functionality. + */ + PreventInTransactionBlock(isTopLevel, "REPACK (CONCURRENTLY)"); + } + /* * If a single relation is specified, process it and we're done ... unless * the relation is a partitioned table, in which case we fall through. @@ -511,19 +526,7 @@ cluster_rel(RepackCommand cmd, Relation OldHeap, Oid indexOid, * replica index OID. */ if (concurrent) - { - /* - * Make sure we're not in a transaction block. - * - * The reason is that repack_setup_logical_decoding() could deadlock - * if there's an XID already assigned. It would be possible to run in - * a transaction block if we had no XID, but this restriction is - * simpler for users to understand and we don't lose anything. - */ - PreventInTransactionBlock(isTopLevel, "REPACK (CONCURRENTLY)"); - check_repack_concurrently_requirements(OldHeap, &ident_idx); - } /* Check for user-requested abort. */ CHECK_FOR_INTERRUPTS(); -- 2.47.3 --qr3jlalmmcpkiodg Content-Type: text/x-diff; charset=utf-8 Content-Disposition: attachment; filename="v53-0006-Error-out-any-process-that-would-block-at-REPACK.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --lyfxwjjve3vodszg Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v9a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
* [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package @ 2026-06-03 05:40 Andres Freund <[email protected]> 0 siblings, 0 replies; 139+ messages in thread From: Andres Freund @ 2026-06-03 05:40 UTC (permalink / raw) Before there's this complaint: warning: removing 'mingw-w64-ucrt-x86_64-pkg-config-0.29.2-6' from target list because it conflicts with 'mingw-w64-ucrt-x86_64-pkgconf-1~2.5.1-1' --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index a4fd4f42a50..5ae8162d635 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -901,7 +901,7 @@ jobs: ${MINGW_PACKAGE_PREFIX}-make \ ${MINGW_PACKAGE_PREFIX}-meson \ ${MINGW_PACKAGE_PREFIX}-perl \ - ${MINGW_PACKAGE_PREFIX}-pkg-config \ + ${MINGW_PACKAGE_PREFIX}-pkgconf \ ${MINGW_PACKAGE_PREFIX}-readline \ ${MINGW_PACKAGE_PREFIX}-zlib -- 2.54.0.380.gc69baaf57b --vphnza2cz5zw5t4a Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v8a-0006-ci-windows-2022-already-openssl-installed.patch" ^ permalink raw reply [nested|flat] 139+ messages in thread
end of thread, other threads:[~2026-06-03 05:40 UTC | newest] Thread overview: 139+ messages (download: mbox mbox.gz follow: Atom feed) -- links below jump to the message on this page -- 2026-04-03 15:23 [PATCH v53 5/7] Check for transaction block early in ExecRepack Srinath Reddy Sadipiralla <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v9a 05/22] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]> 2026-06-03 05:40 [PATCH v8a 05/14] ci: Use mingw -pkgconf instead of -pkg-config package Andres Freund <[email protected]>
This inbox is served by agora; see mirroring instructions for how to clone and mirror all data and code used for this inbox