-
-
Notifications
You must be signed in to change notification settings - Fork 559
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update pgloader.spec - Update from 3.3.2 to 3.6.1 - Use Requires and BuildRequires - Variablise Source0 - Fix Prep and Files to match source tarball - Update spec file Changelog * link to install documentation for RedHat/CentOS. fix tab indentation of debian code block * Update install instructions for RHEL/CentOS
- Loading branch information
1 parent
bbcce92
commit 2e8ce7a
Showing
3 changed files
with
64 additions
and
14 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
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,11 +1,20 @@ | ||
Summary: extract, transform and load data into PostgreSQL | ||
Name: pgloader | ||
Version: 3.3.2 | ||
Version: 3.6.1 | ||
Release: 22%{?dist} | ||
License: The PostgreSQL Licence | ||
Group: System Environment/Base | ||
Source: %{name}-%{version}.tar.gz | ||
URL: https://github.com/dimitri/pgloader | ||
Source0: %{url}/archive/v%{version}.tar.gz | ||
|
||
BuildRequires: sbcl | ||
BuildRequires: freetds-devel | ||
BuildRequires: sqlite-devel | ||
BuildRequires: zlib-devel | ||
Requires: freetds | ||
Requires: sbcl | ||
Requires: zlib | ||
Requires: sqlite | ||
|
||
%description | ||
pgloader imports data from different kind of sources and COPY it into | ||
|
@@ -22,7 +31,7 @@ PostgreSQL. In the MySQL case it's possible to edit CASTing rules from the | |
pgloader command directly. | ||
|
||
%prep | ||
%setup -q -n %{name} | ||
%setup -q -n %{name}-%{version} | ||
|
||
%build | ||
%define debug_package %{nil} | ||
|
@@ -35,11 +44,17 @@ mkdir -p $RPM_BUILD_ROOT/etc/prelink.conf.d | |
echo '-b /usr/bin/pgloader' > $RPM_BUILD_ROOT/etc/prelink.conf.d/%{name}.conf | ||
|
||
%files | ||
%doc README.md pgloader.1.md | ||
%doc README.md | ||
%{_bindir}/* | ||
/etc/prelink.conf.d/%{name}.conf | ||
|
||
%changelog | ||
* Tue Sep 24 2019 Phil Ingram <[email protected]> - 3.6.1 | ||
- Release 3.6.1 | ||
- Use Requires and BuildRequires | ||
- Variablise Source0 | ||
- Fix Files | ||
|
||
* Thu Jan 22 2015 Dimitri Fontaine <[email protected]> - 3.2.1.preview-22 | ||
- Release 3.2.1.preview | ||
|
||
|