Sync from SUSE:SLFO:Main rpcsvc-proto revision 84b02da737432b2e36df8925309f1ade

This commit is contained in:
Adrian Schröter 2024-05-04 00:08:07 +02:00
commit d54adc4f2e
4 changed files with 172 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -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

BIN
rpcsvc-proto-1.4.4.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.

74
rpcsvc-proto.changes Normal file
View File

@ -0,0 +1,74 @@
-------------------------------------------------------------------
Wed May 10 08:29:59 UTC 2023 - Thorsten Kukuk <kukuk@suse.com>
- Update to version 1.4.4
- Use AC_SYS_LARGEFILE macro to control largefile support
-------------------------------------------------------------------
Sat Jun 18 14:00:04 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 1.4.3:
* Fix rpcgen build on macos arm64
-------------------------------------------------------------------
Mon Jun 29 12:27:38 UTC 2020 - Thorsten Kukuk <kukuk@suse.com>
- Update to version 1.4.2
- Allow newer gettext versions
- Add support for external libintl
-------------------------------------------------------------------
Mon May 28 09:32:20 CEST 2018 - kukuk@suse.de
- Update to version 1.4
- Remove historic _RPC_THREAD_SAFE_ preprocessor conditional
-------------------------------------------------------------------
Fri Feb 23 10:26:29 UTC 2018 - kukuk@suse.com
- Use %license instead of %doc [bsc#1082318]
-------------------------------------------------------------------
Mon Jan 15 15:52:34 CET 2018 - kukuk@suse.de
- Update to version 1.3.1
- fix autogen.sh script
- Revert renames to tirpc, make it directly useable. glibc no
longer contains this files.
-------------------------------------------------------------------
Fri Nov 24 09:24:01 UTC 2017 - kukuk@suse.de
- Update to version 1.3
- only use original BSD-3-Clause code
- Correct email addresses
-------------------------------------------------------------------
Sun Nov 12 10:00:55 CET 2017 - kukuk@suse.de
- Re-enable rpcgen sub-package, but rename files, for easier
migration later
-------------------------------------------------------------------
Sun Nov 12 07:58:36 CET 2017 - kukuk@suse.de
- Disable rpcgen sub-package and install header files in tirpc
sub-directory until we deprecate sunrpc in glibc
-------------------------------------------------------------------
Thu Feb 23 15:33:51 CET 2017 - kukuk@suse.de
- Update to version 1.2
- fix possible buffer overrun in rpcgen
-------------------------------------------------------------------
Tue Apr 5 14:00:00 CEST 2016 - kukuk@suse.de
- Update to version 1.1
- ship own rpcgen
-------------------------------------------------------------------
Thu Mar 31 13:52:42 CEST 2016 - kukuk@suse.de
- Initial package

72
rpcsvc-proto.spec Normal file
View File

@ -0,0 +1,72 @@
#
# spec file for package rpcsvc-proto
#
# Copyright (c) 2023 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
Name: rpcsvc-proto
Version: 1.4.4
Release: 0
Summary: RPC protocol definitions
License: BSD-3-Clause
Group: System/Libraries
URL: https://github.com/thkukuk/rpcsvc-proto
Source: https://github.com/thkukuk/rpcsvc-proto/releases/download/v%{version}/rpcsvc-proto-%{version}.tar.xz
%description
The rpcsvc-proto package includes several rpcsvc header files
and RPC protocol definitions from SunRPC sources (as shipped with
glibc).
%package devel
Summary: RPC protocol definitions
Group: Development/Libraries/C and C++
%description devel
The rpcsvc-proto package includes several rpcsvc header files
and RPC protocol definitions from SunRPC sources (as shipped with
glibc).
%package -n rpcgen
Summary: RPC protocol compiler
Group: Development/Tools/Other
Provides: glibc-devel:%{_bindir}/rpcgen
%description -n rpcgen
rpcgen is a tool that generates C code to implement an RPC protocol.
The input to rpcgen is a language similar to C known as RPC Language
(Remote Procedure Call Language).
%prep
%setup -q
%build
%configure
%make_build
%install
%make_install
%files devel
%license COPYING
%dir %{_includedir}/rpcsvc
%{_includedir}/rpcsvc/*
%files -n rpcgen
%license COPYING
%{_bindir}/rpcgen
%{_mandir}/man1/rpcgen.1%{?ext_man}
%changelog