-
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
b109fc8
commit d5bf01a
Showing
5 changed files
with
16 additions
and
10 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.3 | ||
Version: 1.0.6 | ||
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.3 | ||
%setup -q -n tds_fdw-1.0.6 | ||
|
||
|
||
%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.3.sql | ||
%attr(644, root, root)/usr/pgsql-9.3/share/extension/tds_fdw--1.0.6.sql | ||
%attr(644, root, root)/usr/pgsql-9.3/share/extension/tds_fdw.control | ||
%doc /usr/share/doc/%{name}-%{version}/README.md | ||
|
||
|
||
|
||
%changelog | ||
|
||
* Sun Oct 25 2015 Julio Gonzalez Gil <[email protected]> - 1.0.6 | ||
- 1.0.6 build from https://github.com/GeoffMontee/tds_fdw | ||
|
||
* Sun Sep 13 2015 Julio Gonzalez Gil <[email protected]> - 1.0.3 | ||
- 1.0.3 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.3 | ||
Version: 1.0.6 | ||
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.3 | ||
%setup -q -n tds_fdw-1.0.6 | ||
|
||
|
||
%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.3.sql | ||
%attr(644, root, root)/usr/pgsql-9.4/share/extension/tds_fdw--1.0.6.sql | ||
%attr(644, root, root)/usr/pgsql-9.4/share/extension/tds_fdw.control | ||
%doc /usr/share/doc/%{name}-%{version}/README.md | ||
|
||
|
||
|
||
%changelog | ||
|
||
* Sun Oct 25 2015 Julio Gonzalez Gil <[email protected]> - 1.0.6 | ||
- 1.0.6 build from https://github.com/GeoffMontee/tds_fdw | ||
|
||
* Sun Sep 13 2015 Julio Gonzalez Gil <[email protected]> - 1.0.3 | ||
- 1.0.3 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,2 +1,2 @@ | ||
#!/bin/bash | ||
rm -rf BUILD/* BUILDROOT/* RPMS/* SRPMS/* SOURCES/*.tar.gz | ||
rm -rf BUILD BUILDROOT RPMS SRPMS SOURCES |
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.3" | ||
MODULE_VER="1.0.6" | ||
VERSIONS="9.3 9.4" | ||
|
||
function help() { | ||
|