1

Where can I find the official repository for the source code for postgresql-contrib's pg_updatedicts.

The top of the file shows

(C) 2012-2016 Christoph Berg <[email protected]>

So I know I could always email him, but isn't there an easier way?

Evan Carroll
  • 28,578
  • 45
  • 164
  • 290

1 Answers1

2

Take a look at the package tracker, and look for the VCS links. You can browse the git repository here. pg_updatedicts is here.

On a correctly-configured Debian system,

apt-get source postgresql-contrib

will download and extract the source code. You can also install debcheckout and use that instead to clone the VCS repository.

You can see the VCS links from a Debian system using apt-cache showsrc, for example apt-cache showsrc postgresql-contrib, or debcheckout -d.

Stephen Kitt
  • 411,918
  • 54
  • 1,065
  • 1,164