From cbe231465c919e6392129dbda1cb070f90d8a754 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Wed, 30 Sep 2020 21:27:35 +0200 Subject: [PATCH] Dropped any reference to pgfoundry Close #237 --- README.rst | 3 +-- SPECS/pg_repack84.spec | 2 +- SPECS/pg_repack90.spec | 2 +- bin/pg_repack.c | 4 ++-- bin/pgut/pgut-fe.c | 6 +++--- bin/pgut/pgut.h | 2 +- doc/pg_repack.rst | 6 +++--- doc/pg_repack_jp.rst | 10 +++++----- doc/release.rst | 5 ++--- 9 files changed, 19 insertions(+), 21 deletions(-) diff --git a/README.rst b/README.rst index 992a8de6..ef10b317 100644 --- a/README.rst +++ b/README.rst @@ -5,7 +5,6 @@ pg_repack -- Reorganize tables in PostgreSQL databases with minimal locks - Download: https://pgxn.org/dist/pg_repack/ - Development: https://github.com/reorg/pg_repack - Bug Report: https://github.com/reorg/pg_repack/issues -- Mailing List: http://pgfoundry.org/mailman/listinfo/reorg-general |travis| @@ -49,4 +48,4 @@ drop-in replacement: you are advised to check the documentation__ before upgrading from previous versions. .. __: pg_repack_ -.. _pg_reorg: http://reorg.projects.pgfoundry.org/ +.. _pg_reorg: https://github.com/reorg/pg_reorg diff --git a/SPECS/pg_repack84.spec b/SPECS/pg_repack84.spec index 36d6baac..caae001c 100644 --- a/SPECS/pg_repack84.spec +++ b/SPECS/pg_repack84.spec @@ -9,7 +9,7 @@ Release: 1%{?dist} License: BSD Group: Applications/Databases Source0: %{sname}-%{version}.tar.gz -URL: http://pgfoundry.org/projects/%{sname}/ +URL: https://reorg.github.io/%{sname}/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id_u} -n) BuildRequires: postgresql-devel, postgresql diff --git a/SPECS/pg_repack90.spec b/SPECS/pg_repack90.spec index 775ef71e..de56019e 100644 --- a/SPECS/pg_repack90.spec +++ b/SPECS/pg_repack90.spec @@ -14,7 +14,7 @@ Release: 1%{?dist} License: BSD Group: Applications/Databases Source0: %{sname}-%{version}.tar.gz -URL: http://pgfoundry.org/projects/%{sname}/ +URL: https://reorg.github.io/%{sname}/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id_u} -n) BuildRequires: postgresql90-devel, postgresql90 diff --git a/bin/pg_repack.c b/bin/pg_repack.c index 9002fafb..7ccc705f 100644 --- a/bin/pg_repack.c +++ b/bin/pg_repack.c @@ -10,8 +10,8 @@ * @brief Client Modules */ -const char *PROGRAM_URL = "http://reorg.github.com/pg_repack"; -const char *PROGRAM_EMAIL = "reorg-general@lists.pgfoundry.org"; +const char *PROGRAM_URL = "https://reorg.github.io/pg_repack/"; +const char *PROGRAM_ISSUES = "https://github.com/reorg/pg_repack/issues"; #ifdef REPACK_VERSION /* macro trick to stringify a macro expansion */ diff --git a/bin/pgut/pgut-fe.c b/bin/pgut/pgut-fe.c index c2a58101..3f4cc469 100644 --- a/bin/pgut/pgut-fe.c +++ b/bin/pgut/pgut-fe.c @@ -817,12 +817,12 @@ help(bool details) printf(" --help show this help, then exit\n"); printf(" --version output version information, then exit\n"); - if (details && (PROGRAM_URL || PROGRAM_EMAIL)) + if (details && (PROGRAM_URL || PROGRAM_ISSUES)) { printf("\n"); if (PROGRAM_URL) printf("Read the website for details: <%s>.\n", PROGRAM_URL); - if (PROGRAM_EMAIL) - printf("Report bugs to <%s>.\n", PROGRAM_EMAIL); + if (PROGRAM_ISSUES) + printf("Report bugs to <%s>.\n", PROGRAM_ISSUES); } } diff --git a/bin/pgut/pgut.h b/bin/pgut/pgut.h index e8816d38..9020be55 100644 --- a/bin/pgut/pgut.h +++ b/bin/pgut/pgut.h @@ -43,7 +43,7 @@ typedef void (*pgut_atexit_callback)(bool fatal, void *userdata); extern const char *PROGRAM_NAME; extern const char *PROGRAM_VERSION; extern const char *PROGRAM_URL; -extern const char *PROGRAM_EMAIL; +extern const char *PROGRAM_ISSUES; /* * pgut framework variables and functions diff --git a/doc/pg_repack.rst b/doc/pg_repack.rst index 028596b4..93734995 100644 --- a/doc/pg_repack.rst +++ b/doc/pg_repack.rst @@ -33,7 +33,7 @@ NOTICE: .. _VACUUM FULL: VACUUM_ .. _VACUUM: http://www.postgresql.org/docs/current/static/sql-vacuum.html .. _project page: https://github.com/reorg/pg_repack -.. _pg_reorg: http://reorg.projects.pgfoundry.org/ +.. _pg_reorg: https://github.com/reorg/pg_reorg Requirements @@ -64,8 +64,8 @@ the package; use:: Check the `pgxn install documentation`__ for the options available. -.. _PGXN Client: http://pgxnclient.projects.pgfoundry.org/ -.. __: http://pgxnclient.projects.pgfoundry.org/usage.html#pgxn-install +.. _PGXN Client: https://pgxn.github.io/pgxnclient/ +.. __: https://pgxn.github.io/pgxnclient/usage.html#pgxn-install Installation diff --git a/doc/pg_repack_jp.rst b/doc/pg_repack_jp.rst index 4f5fac6f..8f314992 100644 --- a/doc/pg_repack_jp.rst +++ b/doc/pg_repack_jp.rst @@ -55,7 +55,7 @@ pg_repackでは再編成する方法として次のものが選択できます .. _VACUUM FULL: VACUUM_ .. _VACUUM: http://www.postgresql.jp/document/current/html/sql-vacuum.html .. _project page: https://github.com/reorg/pg_repack -.. _pg_reorg: http://reorg.projects.pgfoundry.org/ +.. _pg_reorg: https://github.com/reorg/pg_reorg .. Requirements @@ -95,8 +95,8 @@ PostgreSQL バージョン Check the `pgxn install documentation`__ for the options available. - .. _PGXN Client: http://pgxnclient.projects.pgfoundry.org/ - .. __: http://pgxnclient.projects.pgfoundry.org/usage.html#pgxn-install + .. _PGXN Client: https://pgxn.github.io/pgxnclient/ + .. __: https://pgxn.github.io/pgxnclient/usage.html#pgxn-install ダウンロード @@ -113,8 +113,8 @@ pg_repackは、PGXNのWebサイトから `ダウンロード`__ できます。 利用可能なオプションについては `pgxn install コマンドのドキュメント`__ を参照してください。 -.. _PGXN Client: http://pgxnclient.projects.pgfoundry.org/ -.. __: http://pgxnclient.projects.pgfoundry.org/usage.html#pgxn-install +.. _PGXN Client: https://pgxn.github.io/pgxnclient/ +.. __: https://pgxn.github.io/pgxnclient/usage.html#pgxn-install diff --git a/doc/release.rst b/doc/release.rst index 299a9cfe..f2490d74 100644 --- a/doc/release.rst +++ b/doc/release.rst @@ -27,7 +27,7 @@ with the right privileges: contact Daniele Varrazzo to obtain them. the path, e.g. ``PATH=$(pg_config --bindir):$PATH``; check the ``install`` log to see where ``pg_repack`` executable was installed). - .. __: http://pgxnclient.projects.pgfoundry.org/ + .. __: https://pgxn.github.io/pgxnclient/ - Push the code changes on github:: @@ -60,5 +60,4 @@ with the right privileges: contact Daniele Varrazzo to obtain them. - Check the page http://reorg.github.io/pg_repack/ is right. -- Announce the package on reorg-general@pgfoundry.org and - pgsql-announce@postgresql.org. +- Announce the package on pgsql-announce@postgresql.org.