-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpg_repack.spec
60 lines (46 loc) · 1.52 KB
/
pg_repack.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Name: pg_repack
Version: 1.4.4
Release: 1%{?dist}
Summary: Reorganize tables in PostgreSQL databases without any locks
License: BSD
URL: http://reorg.github.io/%{name}/
Source0: https://github.com/reorg/%{name}/archive/ver_1.4.4.tar.gz
BuildRequires: postgresql, gcc, openssl-devel, postgresql-server
BuildRequires: postgresql-libs, postgresql-devel
BuildRequires: readline-devel, zlib-devel, postgresql-static
BuildRequires: python3-docutils
%{?postgresql_module_requires}
%description
pg_repack is a PostgreSQL extension which lets you remove
bloat from tables and indexes, and optionally
restore the physical order of clustered indexes.
Unlike CLUSTER and VACUUM FULL it works online,
without holding an exclusive lock on the processed tables during processing.
pg_repack is efficient to boot,
with performance comparable to using CLUSTER directly.
Please check the documentation (in the doc directory or online)
for installation and usage instructions.
%prep
%setup -n %{name}-ver_%{version} -q
%build
make %{?_smp_mflags}
cd doc
make
%install
%make_install
%files
%{_bindir}/%{name}
%{_libdir}/pgsql/%{name}.so
%{_datadir}/pgsql/extension/%{name}.control
%{_datadir}/pgsql/extension/%{name}--%{version}.sql
%license COPYRIGHT
%doc README.rst
%doc doc/%{name}.html
%doc doc/%{name}.rst
%doc doc/%{name}_jp.html
%doc doc/%{name}_jp.rst
%doc doc/release.html
%doc doc/release.rst
%changelog
* Wed Aug 21 2019 Filip Januš <[email protected]> 1.4.4-1
- Initial packaging