search.cpan.org is EOL, update links

Started by Daniel Gustafssonabout 8 years ago5 messagesdocs
Beta feature

Hackorum builds and tests every patch posted to the lists, not only commitfest submissions. This is Hackorum's own CI rather than the PostgreSQL project's, and it is still under testing - please report anything that looks wrong.

won't retrysuccessCI history

You can run a PostgreSQL built from this patch straight from Docker, with no checkout and no build:

docker run --rm -p 5432:5432 ghcr.io/hackorum-dev/postgres-patch:t76260
psql -h localhost -U postgres

Built from patchset v3 (message #3), July 27, 2026 at 08:13 PM.

Every patchset is also pushed to a branch of our PostgreSQL fork, so you can check out the same tree CI built. Without a PostgreSQL checkout:

git clone --branch t76260_3 https://github.com/hackorum-dev/postgres.git

In a checkout you already have, add the fork once:

git remote add hackorum https://github.com/hackorum-dev/postgres.git

then, for this patchset and every later one:

git fetch hackorum t76260_3 && git checkout t76260_3

Patchset v3 (message #3) is on t76260_3

Jump to latest
#1Daniel Gustafsson
daniel@yesql.se

search.cpan.org has now been EOL’d and turned off, with all URLs redirecting to
metacpan.org [1]https://www.perl.com/article/saying-goodbye-to-search-cpan-org/. While the redirects are likely to the maintained for a long
time, we might as well update to avoid the risk of stale redirects. Attached
patch changes the few links we have to instead use metacpan.

cheers ./daniel

[1]: https://www.perl.com/article/saying-goodbye-to-search-cpan-org/

Attachments:

search_cpan_eol.patchapplication/octet-stream; name=search_cpan_eol.patch; x-unix-mode=0644Download+3-4
#2Michael Paquier
michael@paquier.xyz
In reply to: Daniel Gustafsson (#1)
Re: search.cpan.org is EOL, update links

On Thu, Jun 28, 2018 at 01:00:47PM +0200, Daniel Gustafsson wrote:

search.cpan.org has now been EOL’d and turned off, with all URLs redirecting to
metacpan.org [1]. While the redirects are likely to the maintained for a long
time, we might as well update to avoid the risk of stale redirects. Attached
patch changes the few links we have to instead use metacpan.

Okay, let's fix that.

While working on the links for CPAN, perhaps these should be switched to
https as well?
src/sgml/acronyms.sgml:
<ulink url="http://www.cpan.org/&quot;&gt;Comprehensive Perl Archive Network</ulink>
contrib/fuzzystrmatch/dmetaphone.c:
version 0.05 available from http://www.cpan.org.
--
Michael

#3Daniel Gustafsson
daniel@yesql.se
In reply to: Michael Paquier (#2)
Re: search.cpan.org is EOL, update links

On 29 Jun 2018, at 03:23, Michael Paquier <michael@paquier.xyz> wrote:

On Thu, Jun 28, 2018 at 01:00:47PM +0200, Daniel Gustafsson wrote:

search.cpan.org has now been EOL’d and turned off, with all URLs redirecting to
metacpan.org [1]. While the redirects are likely to the maintained for a long
time, we might as well update to avoid the risk of stale redirects. Attached
patch changes the few links we have to instead use metacpan.

Okay, let's fix that.

While working on the links for CPAN, perhaps these should be switched to
https as well?

Good point, we might as well do that too. Fixed those two and an additional
one in the attached updated version.

cheers ./daniel

Attachments:

t76260_3
search_cpan_eol-v2.patchapplication/octet-stream; name=search_cpan_eol-v2.patch; x-unix-mode=0644Download+6-7
#4Michael Paquier
michael@paquier.xyz
In reply to: Daniel Gustafsson (#3)
Re: search.cpan.org is EOL, update links

On Fri, Jun 29, 2018 at 08:29:16AM +0200, Daniel Gustafsson wrote:

Good point, we might as well do that too. Fixed those two and an additional
one in the attached updated version.

Did you notice the paragraph at the top of ppport.h? This is a file
automatically generated so it does not sound like a good idea to apply
the change there. Refreshing this file would make the most sense if
needed, but I have not looked at that in details.

Pushed the rest with a proper back-patch for the docs.
--
Michael

#5Daniel Gustafsson
daniel@yesql.se
In reply to: Michael Paquier (#4)
Re: search.cpan.org is EOL, update links

On 29 Jun 2018, at 15:24, Michael Paquier <michael@paquier.xyz> wrote:

On Fri, Jun 29, 2018 at 08:29:16AM +0200, Daniel Gustafsson wrote:

Good point, we might as well do that too. Fixed those two and an additional
one in the attached updated version.

Did you notice the paragraph at the top of ppport.h? This is a file
automatically generated so it does not sound like a good idea to apply
the change there. Refreshing this file would make the most sense if
needed, but I have not looked at that in details.

Good spot, I missed that and 100% agree with you.

Pushed the rest with a proper back-patch for the docs.

Thanks!