commit 503af71cf220ab4dcba2e5a55f4fb1a197fa41e8b53e130d47969d8d7026105f Author: Stephan Kulow Date: Wed Mar 29 08:48:35 2017 +0000 Accepting request 483249 from home:Tomcat42 This Package is needed by backuppc (repo: Archiving:Backup). It would be fine to find it in one of the perl repositories. Thanks! OBS-URL: https://build.opensuse.org/request/show/483249 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-file-rsyncp?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/File-RsyncP-0.74.tar.gz b/File-RsyncP-0.74.tar.gz new file mode 100644 index 0000000..0575ed9 --- /dev/null +++ b/File-RsyncP-0.74.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba4df5f9b0db6c9d86a6c5cf9861cf00d17b18e77cfa028e7a9157c0015a5aa3 +size 167122 diff --git a/perl-File-RsyncP.changes b/perl-File-RsyncP.changes new file mode 100644 index 0000000..cb3ff79 --- /dev/null +++ b/perl-File-RsyncP.changes @@ -0,0 +1,30 @@ +------------------------------------------------------------------- +Sat Jan 17 16:50:43 UTC 2015 - killerrex@gmail.com + + Version 0.74 + - updated FileList/config.guess FileList/config.sub with more recent + versions from rsync. + + - slight tweaks to FileList/t/exclude.t FileList/t/fileList.t. + + - updated LICENSE to GPL v3 and updated headers. + + +------------------------------------------------------------------- +Sun Jan 11 13:52:23 UTC 2015 - killerrex@gmail.com + + Version 0.72 + - in lib/File/RsyncP.pm, added getcheck(4) to read io_error flag; + fixes potential hang. Report and patch from Martin Wilck. + + - in FileList/flist.c, wrapped strlcpy() definition with + #ifndef HAVE_STRLCPY / #endif. Report and patch by + Ryan Schmidt. + + - Changed reset(), protocol() and add() in Digest/Digest.xs to be void. + +------------------------------------------------------------------- +Fri Jan 2 22:44:02 UTC 2015 - ecsos@opensuse.org + +- initial version 0.70 + diff --git a/perl-File-RsyncP.spec b/perl-File-RsyncP.spec new file mode 100644 index 0000000..3180fb0 --- /dev/null +++ b/perl-File-RsyncP.spec @@ -0,0 +1,73 @@ +# +# spec file for package perl-File-RsyncP +# +# Copyright (c) 2013 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/ +# + +%define cpan_name File-RsyncP + +Name: perl-File-RsyncP +Version: 0.74 +Release: 0 +Summary: File-RsyncP Perl module +License: GPL-3.0+ +Group: Development/Libraries/Perl +Url: http://perlrsync.sourceforge.net/ +Source: http://search.cpan.org/CPAN/authors/id/C/CB/CBARRATT/%{cpan_name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: perl +BuildRequires: perl-macros + + +BuildRequires: perl(ExtUtils::MakeMaker) +# Run-time: +BuildRequires: perl(AutoLoader) +BuildRequires: perl(constant) +BuildRequires: perl(Data::Dumper) +BuildRequires: perl(DynaLoader) +BuildRequires: perl(Encode) +BuildRequires: perl(Exporter) +BuildRequires: perl(File::Path) +BuildRequires: perl(Socket) + +%if 0%{?suse_version} >= 1210 +%{perl_requires} +%endif + +%description +File::RsyncP is a perl implementation of an Rsync client. It is +compatible with Rsync 2.x (protocol versions up to 28). It can send +or receive files, either by running rsync on the remote machine, or +connecting to an rsyncd-daemon on the remote machine. + +%prep +%setup -q -n %{cpan_name}-%{version} + +%build +%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" +make %{?_smp_flags} + +%check +%{__make} test + +%install +%perl_make_install +%perl_process_packlist +%perl_gen_filelist + +%files -f %{name}.files +%defattr(644,root,root,755) +%doc Changes README + +%changelog