From 558c74c98873d2ee6396ba917e16afa605611897 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 7 Oct 2024 20:58:01 +0300 Subject: [PATCH] import lldpd-1.0.18-4.el9 --- .gitignore | 1 + .lldpd.metadata | 1 + SOURCES/lldpd-cleanup.sh | 31 ++++ SOURCES/lldpd-systemd-sysusers.conf | 2 + SOURCES/lldpd-tmpfiles | 2 + SOURCES/lldpd.service | 20 +++ SOURCES/lldpd.sysconfig | 8 ++ SPECS/lldpd.spec | 216 ++++++++++++++++++++++++++++ 8 files changed, 281 insertions(+) create mode 100644 .gitignore create mode 100644 .lldpd.metadata create mode 100755 SOURCES/lldpd-cleanup.sh create mode 100644 SOURCES/lldpd-systemd-sysusers.conf create mode 100644 SOURCES/lldpd-tmpfiles create mode 100644 SOURCES/lldpd.service create mode 100644 SOURCES/lldpd.sysconfig create mode 100644 SPECS/lldpd.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8490aae --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/lldpd-1.0.18-free.tar.gz diff --git a/.lldpd.metadata b/.lldpd.metadata new file mode 100644 index 0000000..a4f0e84 --- /dev/null +++ b/.lldpd.metadata @@ -0,0 +1 @@ +3552b6c8bea1077345bb29e75feb4646c847efad SOURCES/lldpd-1.0.18-free.tar.gz diff --git a/SOURCES/lldpd-cleanup.sh b/SOURCES/lldpd-cleanup.sh new file mode 100755 index 0000000..5a09592 --- /dev/null +++ b/SOURCES/lldpd-cleanup.sh @@ -0,0 +1,31 @@ +#!/bin/sh + +# Process a lldpd tarball to remove proprietary source code. +# +# Yaakov Selkowitz - 2021 +# + +SOURCE="$1" +NEW_SOURCE=`echo $SOURCE | sed 's/\.tar\.gz/-free&/'` +DIRECTORY=`echo $SOURCE | sed 's/\.tar\.gz//'` + +error() +{ + MESSAGE=$1 + echo $MESSAGE + exit 1 +} + +rm -rf $DIRECTORY +tar xzf $SOURCE || error "Cannot unpack $SOURCE" +pushd $DIRECTORY > /dev/null || error "Cannot open directory \"$DIRECTORY\"" + +echo "Remove proprietary source files" +find include/osx -type f -delete + +echo + +popd > /dev/null + +tar czf $NEW_SOURCE $DIRECTORY +echo "$NEW_SOURCE is ready to use" diff --git a/SOURCES/lldpd-systemd-sysusers.conf b/SOURCES/lldpd-systemd-sysusers.conf new file mode 100644 index 0000000..9b45295 --- /dev/null +++ b/SOURCES/lldpd-systemd-sysusers.conf @@ -0,0 +1,2 @@ +#Type Name ID GECOS Home directory Shell +u lldpd - "Used by the lldpd daemon" /var/lib/lldpd /sbin/nologin diff --git a/SOURCES/lldpd-tmpfiles b/SOURCES/lldpd-tmpfiles new file mode 100644 index 0000000..875f2a7 --- /dev/null +++ b/SOURCES/lldpd-tmpfiles @@ -0,0 +1,2 @@ +d /run/lldpd 0755 root root - +d /run/lldpd/chroot 0755 root root - diff --git a/SOURCES/lldpd.service b/SOURCES/lldpd.service new file mode 100644 index 0000000..93bee22 --- /dev/null +++ b/SOURCES/lldpd.service @@ -0,0 +1,20 @@ +[Unit] +Description=LLDP daemon +Documentation=man:lldpd(8) +After=network.target + +[Service] +Type=notify +NotifyAccess=main +EnvironmentFile=-/etc/sysconfig/lldpd +ExecStart=/usr/sbin/lldpd $DAEMON_ARGS $LLDPD_OPTIONS +Restart=on-failure +PrivateTmp=yes +RestrictAddressFamilies=AF_INET AF_INET6 AF_PACKET AF_NETLINK AF_UNIX +ProtectHome=yes +ReadWriteDirectories=/var/run/lldpd +ProtectSystem=full + +[Install] +WantedBy=multi-user.target + diff --git a/SOURCES/lldpd.sysconfig b/SOURCES/lldpd.sysconfig new file mode 100644 index 0000000..de2adcc --- /dev/null +++ b/SOURCES/lldpd.sysconfig @@ -0,0 +1,8 @@ +## Path: Network/Discovery +## Description: lldpd configuration +## Type: string(-x,-c,-s,-e,-f) +## Default: "" +## ServiceRestart: lldpd +# Parameters for lldpd. See the manual page for the +# accepted parameters. +LLDPD_OPTIONS="" diff --git a/SPECS/lldpd.spec b/SPECS/lldpd.spec new file mode 100644 index 0000000..6d60117 --- /dev/null +++ b/SPECS/lldpd.spec @@ -0,0 +1,216 @@ +Name: lldpd +Version: 1.0.18 +Release: 4%{?dist} +Summary: ISC-licensed implementation of LLDP + +License: ISC +URL: https://github.com/lldpd/ +# Upstream https://github.com/lldpd/lldpd/archive/v%{version}/%{name}-%{version}.tar.gz +Source0: lldpd-%{version}-free.tar.gz +Source1: %{name}.service +Source2: %{name}-tmpfiles +Source3: %{name}.sysconfig +Source4: %{name}-systemd-sysusers.conf + +Source100: lldpd-cleanup.sh + +BuildRequires: check-devel +BuildRequires: gcc +BuildRequires: libxml2-devel +BuildRequires: libevent-devel +BuildRequires: make +BuildRequires: net-snmp-devel +BuildRequires: readline-devel +BuildRequires: systemd-rpm-macros +%{?systemd_requires} +%{?sysusers_requires_compat} + +Requires(pre): shadow-utils + +%description +LLDP is an industry standard protocol designed to supplant proprietary +Link-Layer protocols such as EDP or CDP. The goal of LLDP is to provide +an inter-vendor compatible mechanism to deliver Link-Layer notifications +to adjacent network devices. + +%package devel +Requires: %{name}%{?_isa} = %{version}-%{release} +Summary: %{summary} + +%description devel +%{name} development libraries and headers + +%prep +%autosetup -p1 + +%build +%configure --disable-static --with-snmp --disable-silent-rules \ + --with-privsep-user=%{name} --with-privsep-group=%{name} \ + --with-privsep-chroot=%{_rundir}/%{name}/chroot \ + --with-lldpd-ctl-socket=%{_rundir}/%{name}/%{name}.socket \ + --with-systemdsystemunitdir=%{_unitdir} --with-sysusersdir=no + +%make_build + +%install +%make_install + +install -p -D -m644 %{SOURCE1} %{buildroot}%{_unitdir}/%{name}.service +install -p -D -m644 %{SOURCE2} %{buildroot}%{_tmpfilesdir}/%{name}.conf +install -p -D -m644 %{SOURCE3} %{buildroot}/etc/sysconfig/%{name} +install -p -D -m644 %{SOURCE4} %{buildroot}%{_sysusersdir}/%{name}.conf + +install -d -D -m 0755 %{buildroot}%{_rundir}/%{name}/chroot +install -d -m 0755 %{buildroot}%{_sharedstatedir}/%{name} +# remove the docs from buildroot +rm -rf %{buildroot}/usr/share/doc/%{name} + +# don't include completion conf yet +rm -f %{buildroot}/usr/share/bash-completion/completions/lldpcli +rm -f %{buildroot}/usr/share/zsh/vendor-completions/_lldpcli +rm -f %{buildroot}/usr/share/zsh/site-functions/_lldpcli + +# remove static libtool archive +find %{buildroot} -type f -name "*.la" -delete + +%ldconfig_scriptlets + +%pre +%sysusers_create_compat %{SOURCE4} + +%post +%systemd_post %{name}.service + +%preun +%systemd_preun %{name}.service + +%postun +%systemd_postun_with_restart %{name}.service + +%files +%license LICENSE +%doc NEWS README.md +%config %{_sysconfdir}/%{name}.d +%config(noreplace) %{_sysconfdir}/sysconfig/%{name} +%{_sbindir}/lldpcli +%{_sbindir}/lldpctl +%{_sbindir}/%{name} +%{_mandir}/man8/lldpcli.8* +%{_mandir}/man8/lldpctl.8* +%{_mandir}/man8/%{name}.8* +%{_libdir}/liblldpctl.so.4* +%dir %{_rundir}/%{name} +%dir %{_rundir}/%{name}/chroot +%{_unitdir}/%{name}.service +%{_tmpfilesdir}/%{name}.conf +%{_sysusersdir}/%{name}.conf +%dir %attr(-,lldpd,lldpd) %{_sharedstatedir}/%{name} + +%files devel +%{_includedir}/lldp-const.h +%{_includedir}/lldpctl.h +%{_libdir}/liblldpctl.so +%{_libdir}/pkgconfig/lldpctl.pc + +%changelog +* Mon Oct 07 2024 MSVSphere Packaging Team - 1.0.18-4 +- Rebuilt for MSVSphere 9.5 beta + +* Mon May 20 2024 Hangbin Liu - 1.0.18-3 +- Add lldpd-devel package [RHEL-22127] + +* Sun Feb 18 2024 Hangbin Liu - 1.0.18-2 +- Remove networkd gating test [RHEL-25990] + +* Wed Jan 31 2024 Hangbin Liu - 1.0.18-1 +- Rebased to 1.0.18 [RHEL-2211] + +* Mon Nov 06 2023 Hangbin Liu - 1.0.17-1 +- Rebased to 1.0.17 [RHEL-2211, RHEL-5791, RHEL-5796] + +* Mon Aug 09 2021 Mohan Boddu - 1.0.4-10 +- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags + Related: rhbz#1991688 + +* Mon Jul 12 2021 Aaron Conole - 1.0.4-9 +- Strip ASL components (#1982259) + +* Tue Jun 22 2021 Mohan Boddu - 1.0.4-8 +- Rebuilt for RHEL 9 BETA for openssl 3.0 + Related: rhbz#1971065 + +* Fri Apr 16 2021 Mohan Boddu - 1.0.4-7 +- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937 + +* Tue Jan 26 2021 Fedora Release Engineering - 1.0.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Tue Sep 29 20:35:23 CEST 2020 Zbigniew Jędrzejewski-Szmek - 1.0.4-5 +- Rebuilt for libevent 2.1.12 + +* Wed Sep 02 2020 Josef Ridky - 1.0.4-4 +- Rebuilt for new net-snmp release + +* Tue Jul 28 2020 Fedora Release Engineering - 1.0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Wed Jan 29 2020 Fedora Release Engineering - 1.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Tue Aug 13 2019 James Hogarth - 1.0.4-1 +- Updated to new upstream release 1.0.4 + +* Thu Jul 25 2019 Fedora Release Engineering - 1.0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Feb 17 2019 Igor Gnatenko - 1.0.1-5 +- Rebuild for readline 8.0 + +* Fri Feb 01 2019 Fedora Release Engineering - 1.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Tue Jul 24 2018 Adam Williamson - 1.0.1-3 +- Rebuild for new net-snmp + +* Fri Jul 13 2018 Fedora Release Engineering - 1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Apr 17 2018 James Hogarth - 1.0.1-1 +- Update to 1.0.1 + +* Thu Feb 08 2018 Fedora Release Engineering - 0.9.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Mon Aug 21 2017 James Hogarth - 0.9.8-1 +- Update to 0.9.8 + +* Fri Aug 11 2017 Igor Gnatenko - 0.9.7-10 +- Rebuilt after RPM update (№ 3) + +* Thu Aug 10 2017 Igor Gnatenko - 0.9.7-9 +- Rebuilt for RPM soname bump + +* Thu Aug 10 2017 Igor Gnatenko - 0.9.7-8 +- Rebuilt for RPM soname bump + +* Thu Aug 03 2017 Fedora Release Engineering - 0.9.7-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 0.9.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Thu Apr 06 2017 James Hogarth - 0.9.7-5 +- Older fedora needs the older syntax matching EPEL7 + +* Wed Apr 05 2017 James Hogarth - 0.9.7-4 +- EPEL7 systemd needs an older syntax + +* Wed Apr 05 2017 James Hogarth - 0.9.7-3 +- Use the official release tarball rather than the github snapshot +- Add EPEL6 conditionals + +* Wed Apr 05 2017 James Hogarth - 0.9.7-2 +- Tweaks to spec requested in review + +* Tue Apr 04 2017 James Hogarth - 0.9.7-1 +- Initial package