4abc89700f
Release / AUR package (push) Successful in 53s
Release / DataGrip Plugin (push) Successful in 4m17s
Release / Release (push) Successful in 1m57s
Release / VSCode Extension (push) Successful in 56s
Release / Test (push) Successful in 1m50s
CI / Test (push) Successful in 1m51s
CI / Build (push) Successful in 21s
Release / RPM package (push) Successful in 39s
Release / Debian packages (push) Successful in 47s
Release / Windows installer (push) Successful in 47s
32 lines
854 B
RPMSpec
32 lines
854 B
RPMSpec
Name: pgtidy
|
|
Version: 0.0.6
|
|
Release: 1%{?dist}
|
|
Summary: PostgreSQL SQL formatter and linter
|
|
|
|
License: MIT
|
|
URL: https://git.warky.dev/wdevs/pgtidy
|
|
Source0: pgtidy
|
|
Source1: LICENSE
|
|
ExclusiveArch: x86_64
|
|
|
|
%global debug_package %{nil}
|
|
%define _debugsource_packages 0
|
|
%define _debuginfo_subpackages 0
|
|
|
|
%description
|
|
PgTidy formats and lints PostgreSQL SQL, enforcing a consistent style
|
|
for migrations, schemas, functions, procedures, and triggers.
|
|
|
|
%install
|
|
install -Dm755 %{SOURCE0} %{buildroot}%{_bindir}/%{name}
|
|
mkdir -p %{buildroot}%{_datadir}/licenses/%{name}
|
|
install -m644 %{SOURCE1} %{buildroot}%{_datadir}/licenses/%{name}/LICENSE
|
|
|
|
%files
|
|
%{_bindir}/%{name}
|
|
%{_datadir}/licenses/%{name}/LICENSE
|
|
|
|
%changelog
|
|
* Sun Jun 29 2026 Hein (Warky Devs) <hein@warky.dev> - 0.0.1-1
|
|
- Initial package
|