-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
25 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,6 +56,8 @@ rm -rf $RPM_BUILD_ROOT | |
%{pgsql_path}/share/extension/firebird_fdw.control | ||
|
||
%changelog | ||
* Wed Dec 28 2022 Ian Barwick ([email protected]) | ||
- 1.3.0 release | ||
* Sun Feb 20 2022 Ian Barwick ([email protected]) | ||
- 1.2.3 release | ||
* Tue Sep 14 2021 Ian Barwick ([email protected]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,6 +64,8 @@ rm -rf $RPM_BUILD_ROOT | |
%endif | ||
|
||
%changelog | ||
* Wed Dec 28 2022 Ian Barwick ([email protected]) | ||
- 1.3.0 release | ||
* Sun Feb 20 2022 Ian Barwick ([email protected]) | ||
- 1.2.3 release | ||
* Tue Sep 14 2021 Ian Barwick ([email protected]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,6 +64,8 @@ rm -rf $RPM_BUILD_ROOT | |
%endif | ||
|
||
%changelog | ||
* Wed Dec 28 2022 Ian Barwick ([email protected]) | ||
- 1.3.0 release | ||
* Sun Feb 20 2022 Ian Barwick ([email protected]) | ||
- 1.2.3 release | ||
* Tue Sep 14 2021 Ian Barwick ([email protected]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,6 +64,8 @@ rm -rf $RPM_BUILD_ROOT | |
%endif | ||
|
||
%changelog | ||
* Wed Dec 28 2022 Ian Barwick ([email protected]) | ||
- 1.3.0 release | ||
* Sun Feb 20 2022 Ian Barwick ([email protected]) | ||
- 1.2.3 release | ||
* Tue Sep 14 2021 Ian Barwick ([email protected]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,6 +64,8 @@ rm -rf $RPM_BUILD_ROOT | |
%endif | ||
|
||
%changelog | ||
* Wed Dec 28 2022 Ian Barwick ([email protected]) | ||
- 1.3.0 release | ||
* Sun Feb 20 2022 Ian Barwick ([email protected]) | ||
- 1.2.3 release | ||
* Tue Sep 14 2021 Ian Barwick ([email protected]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
Summary: A PostgreSQL foreign data wrapper (FDW) for Firebird | ||
Name: postgresql96-firebird_fdw | ||
Name: postgresql15-firebird_fdw | ||
Version: 1.3.0 | ||
Release: 1 | ||
Source: firebird_fdw-%{version}.tar.gz | ||
URL: https://github.com/ibarwick/firebird_fdw | ||
License: PostgreSQL | ||
Group: Productivity/Databases/Tools | ||
Packager: Ian Barwick | ||
BuildRequires: postgresql96-devel firebird-devel | ||
BuildRequires: postgresql15-devel firebird-devel | ||
BuildRequires: libfq | ||
%if 0%{?rhel} && 0%{?rhel} >= 7 | ||
BuildRequires: llvm-toolset-7 | ||
BuildRequires: llvm5.0 | ||
%endif | ||
BuildRoot: %{_tmppath}/%{name}-%{version}-build | ||
Requires: postgresql96-server libfq | ||
Requires: postgresql15-server libfq | ||
|
||
%define pgsql_path /usr/pgsql-9.6 | ||
%define pgsql_path /usr/pgsql-15 | ||
|
||
%description | ||
This is a foreign data wrapper (FDW) to connect PostgreSQL to Firebird. | ||
|
@@ -55,7 +59,13 @@ rm -rf $RPM_BUILD_ROOT | |
%{pgsql_path}/share/extension/firebird_fdw--1.3.0.sql | ||
%{pgsql_path}/share/extension/firebird_fdw.control | ||
|
||
%if 0%{?rhel} && 0%{?rhel} >= 7 | ||
%exclude %{pgsql_path}/lib/bitcode | ||
%endif | ||
|
||
%changelog | ||
* Wed Dec 28 2022 Ian Barwick ([email protected]) | ||
- 1.3.0 release | ||
* Sun Feb 20 2022 Ian Barwick ([email protected]) | ||
- 1.2.3 release | ||
* Tue Sep 14 2021 Ian Barwick ([email protected]) | ||
|