Skip to content

Commit 74c6635

Browse files
authored
remove remaining references to pg_repack (#857)
1 parent bd0ed77 commit 74c6635

File tree

3 files changed

+0
-59
lines changed

3 files changed

+0
-59
lines changed

Dockerfile

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ ARG groonga_release=12.0.8
3232
ARG pgroonga_release=2.4.0
3333
ARG wrappers_release=0.2.0
3434
ARG hypopg_release=1.3.1
35-
ARG pg_repack_release=1.4.8
3635
ARG pgvector_release=0.4.0
3736
ARG pg_tle_release=1.0.3
3837
ARG supautils_release=1.9.0
@@ -734,32 +733,6 @@ RUN --mount=type=cache,target=/ccache,from=public.ecr.aws/supabase/postgres:ccac
734733
# Create debian package
735734
RUN checkinstall -D --install=no --fstrans=no --backup=no --pakdir=/tmp --nodoc
736735

737-
####################
738-
# 27-pg_repack.yml
739-
####################
740-
FROM ccache as pg_repack-source
741-
ARG pg_repack_release
742-
ARG pg_repack_release_checksum
743-
ADD --checksum=${pg_repack_release_checksum} \
744-
"https://github.com/reorg/pg_repack/archive/refs/tags/ver_${pg_repack_release}.tar.gz" \
745-
/tmp/pg_repack.tar.gz
746-
RUN tar -xvf /tmp/pg_repack.tar.gz -C /tmp && \
747-
rm -rf /tmp/pg_repack.tar.gz
748-
# Install build dependencies
749-
RUN apt-get update && apt-get install -y --no-install-recommends \
750-
liblz4-dev \
751-
libz-dev \
752-
libzstd-dev \
753-
libreadline-dev \
754-
&& rm -rf /var/lib/apt/lists/*
755-
# Build from source
756-
WORKDIR /tmp/pg_repack-ver_${pg_repack_release}
757-
ENV USE_PGXS=1
758-
RUN --mount=type=cache,target=/ccache,from=public.ecr.aws/supabase/postgres:ccache \
759-
make -j$(nproc)
760-
# Create debian package
761-
RUN checkinstall -D --install=no --fstrans=no --backup=no --pakdir=/tmp --pkgversion=${pg_repack_release} --nodoc
762-
763736
####################
764737
# 28-pgvector.yml
765738
####################
@@ -850,7 +823,6 @@ COPY --from=vault-source /tmp/*.deb /tmp/
850823
COPY --from=pgroonga-source /tmp/*.deb /tmp/
851824
COPY --from=wrappers /tmp/*.deb /tmp/
852825
COPY --from=hypopg-source /tmp/*.deb /tmp/
853-
COPY --from=pg_repack-source /tmp/*.deb /tmp/
854826
COPY --from=pgvector-source /tmp/*.deb /tmp/
855827
COPY --from=pg_tle-source /tmp/*.deb /tmp/
856828
COPY --from=supautils /tmp/*.deb /tmp/

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ Unmodified Postgres with some useful plugins. Our goal with this repo is not to
3131
| [pgsodium](https://github.com/michelp/pgsodium) | [3.1.0](https://github.com/michelp/pgsodium/releases/tag/2.0.0) | Modern encryption API using libsodium. |
3232
| [pg_stat_monitor](https://github.com/percona/pg_stat_monitor) | [1.0.1](https://github.com/percona/pg_stat_monitor/releases/tag/1.0.1) | Query Performance Monitoring Tool for PostgreSQL
3333
| [pgvector](https://github.com/pgvector/pgvector) | [v0.4.0](https://github.com/pgvector/pgvector/releases/tag/v0.4.0) | Open-source vector similarity search for Postgres
34-
| [pg_repack](https://github.com/reorg/pg_repack) | [ver_1.4.8](https://github.com/reorg/pg_repack/releases/tag/ver_1.4.8) | Tool to remove bloat from tables and indexes
3534

3635

3736
Can't find your favorite extension? Suggest for it to be added into future releases [here](https://github.com/supabase/supabase/discussions/679)!

docker/orioledb/Dockerfile

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ ARG groonga_release=12.0.8
3232
ARG pgroonga_release=2.4.0
3333
ARG wrappers_release=0.2.0
3434
ARG hypopg_release=1.3.1
35-
ARG pg_repack_release=1.4.8
3635
ARG pgvector_release=0.4.0
3736
ARG pg_tle_release=1.0.3
3837
ARG supautils_release=1.9.0
@@ -839,34 +838,6 @@ RUN --mount=type=cache,target=/ccache,from=public.ecr.aws/supabase/postgres:ccac
839838
# Create debian package
840839
RUN checkinstall -D --install=no --fstrans=no --backup=no --pakdir=/tmp --nodoc
841840

842-
####################
843-
# 27-pg_repack.yml
844-
####################
845-
FROM ccache as pg_repack-source
846-
ARG pg_repack_release
847-
ARG pg_repack_release_checksum
848-
ADD --checksum=${pg_repack_release_checksum} \
849-
"https://github.com/reorg/pg_repack/archive/refs/tags/ver_${pg_repack_release}.tar.gz" \
850-
/tmp/pg_repack.tar.gz
851-
RUN tar -xvf /tmp/pg_repack.tar.gz -C /tmp && \
852-
rm -rf /tmp/pg_repack.tar.gz
853-
# Install build dependencies
854-
RUN apt-get update && apt-get install -y --no-install-recommends \
855-
liblz4-dev \
856-
libz-dev \
857-
libzstd-dev \
858-
libreadline-dev \
859-
&& rm -rf /var/lib/apt/lists/*
860-
# Build from source
861-
WORKDIR /tmp/pg_repack-ver_${pg_repack_release}
862-
# Makefile:29: *** pg_repack requires PostgreSQL 9.4 or later. This is 3. Stop.
863-
RUN sed -i -e "s|904|3|g" Makefile
864-
ENV USE_PGXS=1
865-
RUN --mount=type=cache,target=/ccache,from=public.ecr.aws/supabase/postgres:ccache \
866-
make -j$(nproc)
867-
# Create debian package
868-
RUN checkinstall -D --install=no --fstrans=no --backup=no --pakdir=/tmp --pkgversion=${pg_repack_release} --nodoc
869-
870841
####################
871842
# 28-pgvector.yml
872843
####################
@@ -972,7 +943,6 @@ COPY --from=vault-source /tmp/*.deb /tmp/
972943
COPY --from=pgroonga-source /tmp/*.deb /tmp/
973944
COPY --from=wrappers-source /tmp/*.deb /tmp/
974945
COPY --from=hypopg-source /tmp/*.deb /tmp/
975-
COPY --from=pg_repack-source /tmp/*.deb /tmp/
976946
COPY --from=pgvector-source /tmp/*.deb /tmp/
977947
COPY --from=pg_tle-source /tmp/*.deb /tmp/
978948
COPY --from=supautils-source /tmp/*.deb /tmp/

0 commit comments

Comments
 (0)