commit b9f9e0c83f1df40a0dec29fec2ee21e9ba1de621e1bbc17d743cf5a971729330 Author: Marcus Rueckert Date: Wed May 4 02:32:15 2016 +0000 - update to 1.00 OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/pgbackrest?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/pgbackrest-release-1.00.tar.gz b/pgbackrest-release-1.00.tar.gz new file mode 100644 index 0000000..cf287e2 --- /dev/null +++ b/pgbackrest-release-1.00.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:708eb80cb32c658492b1bb22b628735504e13af0418eee4ced50e5622ac5bc8a +size 4259358 diff --git a/pgbackrest.changes b/pgbackrest.changes new file mode 100644 index 0000000..1be3301 --- /dev/null +++ b/pgbackrest.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Wed May 4 02:26:45 UTC 2016 - mrueckert@suse.de + +- update to 1.00 + diff --git a/pgbackrest.spec b/pgbackrest.spec new file mode 100644 index 0000000..1f0646e --- /dev/null +++ b/pgbackrest.spec @@ -0,0 +1,55 @@ +# +# spec file for package pgbackrest +# +# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +Name: pgbackrest +Version: 1.00 +Release: 0 +License: MIT +Summary: Reliable PostgreSQL Backup & Restore +Url: http://www.pgbackrest.org/ +Group: Productivity/Databases/Tools +Source: %{name}-release-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildArch: noarch +Requires: perl + +%description +pgBackRest aims to be a simple, reliable backup and restore system that can +seamlessly scale up to the largest databases and workloads. + +Instead of relying on traditional backup tools like tar and rsync, pgBackRest +implements all backup features internally and uses a custom protocol for +communicating with remote systems. Removing reliance on tar and rsync allows +for better solutions to database-specific backup challenges. The custom remote +protocol allows for more flexibility and limits the types of connections that +are required to perform a backup which increases security. + +%prep +%setup -q -n %{name}-release-%{version} + +%build + +%install +install -D -d -m 0755 %{buildroot}%{_datadir}/%{name} %{buildroot}%{_bindir} +cp -a bin lib %{buildroot}%{_datadir}/%{name} +ln -s %{_datadir}/%{name}/bin/%{name} %{buildroot}%{_bindir}/%{name} + +%files +%defattr(-,root,root) +%doc LICENSE README.md CHANGELOG.md +%{_bindir}/%{name} +%{_datadir}/%{name}