-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
aeceb2a
commit b109fc8
Showing
4 changed files
with
15 additions
and
9 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Name: postgresql-93-tds_fdw | ||
Version: 1.0.2 | ||
Version: 1.0.3 | ||
Release: 1%{?dist} | ||
Summary: TDS foreing data wrapper for PostgreSQL 9.3 | ||
|
||
|
@@ -25,7 +25,7 @@ It does not yet support write operations, as added in PostgreSQL 9.3. | |
%global debug_package %{nil} | ||
|
||
%prep | ||
%setup -q -n tds_fdw-1.0.2 | ||
%setup -q -n tds_fdw-1.0.3 | ||
|
||
|
||
%build | ||
|
@@ -43,14 +43,17 @@ rm -rf %{buildroot} | |
|
||
%files | ||
%attr(755, root, root)/usr/pgsql-9.3/lib/tds_fdw.so | ||
%attr(644, root, root)/usr/pgsql-9.3/share/extension/tds_fdw--1.0.2.sql | ||
%attr(644, root, root)/usr/pgsql-9.3/share/extension/tds_fdw--1.0.3.sql | ||
%attr(644, root, root)/usr/pgsql-9.3/share/extension/tds_fdw.control | ||
%doc /usr/share/doc/%{name}-%{version}/README.md | ||
|
||
|
||
|
||
%changelog | ||
|
||
* Sun Sep 13 2015 Julio Gonzalez Gil <[email protected]> - 1.0.3 | ||
- 1.0.3 build from https://github.com/GeoffMontee/tds_fdw | ||
|
||
* Sun Sep 13 2015 Julio Gonzalez Gil <[email protected]> - 1.0.2 | ||
- 1.0.2 build from https://github.com/GeoffMontee/tds_fdw | ||
|
||
|
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,5 +1,5 @@ | ||
Name: postgresql-94-tds_fdw | ||
Version: 1.0.2 | ||
Version: 1.0.3 | ||
Release: 1%{?dist} | ||
Summary: TDS foreing data wrapper for PostgreSQL 9.4 | ||
|
||
|
@@ -25,7 +25,7 @@ It does not yet support write operations, as added in PostgreSQL 9.3. | |
%global debug_package %{nil} | ||
|
||
%prep | ||
%setup -q -n tds_fdw-1.0.2 | ||
%setup -q -n tds_fdw-1.0.3 | ||
|
||
|
||
%build | ||
|
@@ -43,14 +43,17 @@ rm -rf %{buildroot} | |
|
||
%files | ||
%attr(755, root, root)/usr/pgsql-9.4/lib/tds_fdw.so | ||
%attr(644, root, root)/usr/pgsql-9.4/share/extension/tds_fdw--1.0.2.sql | ||
%attr(644, root, root)/usr/pgsql-9.4/share/extension/tds_fdw--1.0.3.sql | ||
%attr(644, root, root)/usr/pgsql-9.4/share/extension/tds_fdw.control | ||
%doc /usr/share/doc/%{name}-%{version}/README.md | ||
|
||
|
||
|
||
%changelog | ||
|
||
* Sun Sep 13 2015 Julio Gonzalez Gil <[email protected]> - 1.0.3 | ||
- 1.0.3 build from https://github.com/GeoffMontee/tds_fdw | ||
|
||
* Sun Sep 13 2015 Julio Gonzalez Gil <[email protected]> - 1.0.2 | ||
- 1.0.2 build from https://github.com/GeoffMontee/tds_fdw | ||
|
||
|
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,7 +1,7 @@ | ||
#!/bin/bash | ||
|
||
SCRIPT=$(basename ${0}) | ||
MODULE_VER="1.0.2" | ||
MODULE_VER="1.0.3" | ||
VERSIONS="9.3 9.4" | ||
|
||
function help() { | ||
|