From 0fc8665d8e0473ca55f6d67d246502cdda472343 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Nov 01 2019 17:02:16 +0000 Subject: import nuxwdog-1.0.5-1.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..407ae3c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/nuxwdog-1.0.5.tar.gz diff --git a/.nuxwdog.metadata b/.nuxwdog.metadata new file mode 100644 index 0000000..6ce01fc --- /dev/null +++ b/.nuxwdog.metadata @@ -0,0 +1 @@ +127cde7055e9a8d1d7efa672eba23d68ab6146a2 SOURCES/nuxwdog-1.0.5.tar.gz diff --git a/SPECS/nuxwdog.spec b/SPECS/nuxwdog.spec new file mode 100644 index 0000000..c916e7f --- /dev/null +++ b/SPECS/nuxwdog.spec @@ -0,0 +1,257 @@ +Name: nuxwdog +Version: 1.0.5 +Release: 1%{?dist} +Summary: Watchdog server to start and stop processes, and prompt for passwords +# The entire source code is LGPLv2 except for the perl module, which is GPL+ or Artistic +License: LGPLv2 and (GPL+ or Artistic) +Group: System Environment/Libraries +URL: http://www.redhat.com/certificate_system +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: ant +BuildRequires: java-devel >= 1:1.6.0 +BuildRequires: jpackage-utils +BuildRequires: nspr-devel +BuildRequires: nss-devel +BuildRequires: pkgconfig +BuildRequires: libselinux-devel +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: keyutils-libs-devel + +Requires: nss +Requires: keyutils-libs +Obsoletes: nuxwdog-client + +Source0: https://github.com/dogtagpki/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz + +# Note: there is an rpmlint warning about Nuxwdogclient.so being a private-shared-object-provide +# This would ordinarily be fixed by calling the macro perl_default_filter, but +# this disables rpms file coloring and makes the package fail multilib tests. + +%description +The nuxwdog package supplies the nuxwdog watchdog daemon, +used to start,stop, prompt for passwords and monitor processes. +It also contains C/C++ and Perl client code to allow clients to +interact with the nuxwdog watchdog daemon. + +%package devel +Group: Development/Libraries +Summary: Development files for the Nuxwdog Watchdog +Requires: %{name} = %{version}-%{release} +Obsoletes: nuxwdog-client-devel + +%description devel +The nuxwdog-devel package contains the header files needed to build clients +that call WatchdogClient functions, so that clients can interact with the +nuxwdog watchdog server. + +%package client-java +Group: System Environment/Libraries +Summary: Nuxwdog Watchdog client JNI Package +Requires: java-headless >= 1:1.6.0 +Requires: jpackage-utils +Requires: %{name} = %{version}-%{release} + +%description client-java +The nuxwdog-client-java package contains a JNI interface to the nuxwdog +client code, so that Java clients can interact with the nuxwdog watchdog +server. + +%package client-perl +Group: System Environment/Libraries +Summary: Nuxwdog Watchdog client perl bindings +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +Requires: %{name} = %{version}-%{release} + +%description client-perl +The nuxwdog-client-perl package contains a perl interface to nuxwdog. + +%prep +%setup -q -n %{name}-%{version} + +%build +ant \ + -Dproduct.ui.flavor.prefix="" \ + -Dproduct.prefix="" \ + -Dproduct="nuxwdog" \ + -Dversion="%{version}" +%configure --disable-static \ +%ifarch ppc64 s390x sparc64 x86_64 + --enable-64bit \ +%endif + --libdir=%{_libdir} +make + +%install +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} INSTALL="install -p" + +find %{buildroot} -name '*.la' -exec rm -f {} ';' + +mkdir -p %{buildroot}%{_docdir} +mv %{buildroot}%{_usr}/doc %{buildroot}%{_docdir}/%{name}-%{version} + +find %{buildroot}/%{perl_vendorarch} -name .packlist |xargs rm -f {} +find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';' +find %{buildroot} -name "perllocal.pod" |xargs rm -f {} +%{_fixperms} %{buildroot}/%{perl_vendorarch}/* + +mkdir -p %{buildroot}/%{_libdir}/nuxwdog-jni +mv %{buildroot}/%{_libdir}/libnuxwdog-jni.so %{buildroot}/%{_libdir}/nuxwdog-jni +mv %{buildroot}%{_usr}/jars/nuxwdog.jar %{buildroot}/%{_libdir}/nuxwdog-jni/nuxwdog-%{version}.jar +mkdir -p %{buildroot}%{_jnidir} +cd %{buildroot}/%{_jnidir} +ln -s %{_libdir}/nuxwdog-jni/nuxwdog-%{version}.jar nuxwdog.jar +rm -rf %{buildroot}%{_usr}/jars +rm -rf %{buildroot}%{_usr}/doc + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%doc LICENSE +%{_bindir}/* +%{_libdir}/libnuxwdog.so.* +%{_mandir}/man1/nuxwdog.1* + +%files devel +%defattr(-,root,root,-) +%doc +%{_includedir}/nuxwdog/ +%{_libdir}/libnuxwdog.so + +%files client-java +%defattr(-,root,root,-) +%doc +%{_libdir}/nuxwdog-jni/ +%{_jnidir}/* + +%files client-perl +%defattr(-,root,root,-) +%{_mandir}/man3/Nuxwdogclient.3pm* +%{perl_vendorarch}/* +%exclude %dir %{perl_vendorarch}/auto/ + +%changelog +* Mon Aug 05 2019 Dogtag Team 1.0.5-1 +- Resolves: rhbz #1509040 - nuxwdog spec file has outdated + source for tarballs (dmoluguw) +- Rebase to upstream nuxwdog 1.0.5-1 + +* Mon Aug 20 2018 Dogtag Team 1.0.3-8 +- Resolves: rhbz #1615617 - nuxwdog systemd - memory error + when starting subCA (dmoluguw) + +* Wed Jan 17 2018 Ade Lee 1.0.3-7 +- Resolves: 1534030 - add option to set process uid + +* Thu Nov 2 2017 Ade Lee 1.0.3-6 +- Resolves: rhbz#1503753 - nuxwdog is cutting off long ExeArgs + +* Fri Jun 24 2016 Ade Lee 1.0.3-5 +- Resolves: rhbz#1283272 - Move perl bindings to a subpackage + +* Wed Nov 18 2015 Ade Lee 1.0.3-4 +- Resolves: rhbz#1283338 - Use java-headless instead + +* Wed Jun 17 2015 Ade Lee 1.0.3-2 +- Resolves: rhbz#1229817 - Re-enable builds for ppc64/ppc64le/s390x + +* Sun May 10 2015 Ade Lee 1.0.3-1 +- Add systemd support + +* Wed Apr 22 2015 Ade Lee 1.0.2-1 +- Allow passwords to be retrieved post-init phase +- Fix null termination issue on returned stored passwords + +* Tue Sep 30 2014 Ade Lee - 1.0.1-10 +- Resolves: rhbz#1117072 - ppc64le is missing from ExcludeArch +- reverted the previous change. ppc64le now removed from ExcludeArch + +* Wed Aug 13 2014 Ade Lee - 1.0.1-9 +- Resolves: rhbz#1117072 - ppc64le is missing from ExcludeArch + +* Fri Dec 27 2013 Daniel Mach - 1.0.1-8 +- Mass rebuild 2013-12-27 + +* Thu Feb 14 2013 Fedora Release Engineering - 1.0.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Dec 19 2012 Stanislav Ochotnicky - 1.0.1-6 +- revbump after jnidir change + +* Wed Dec 12 2012 Stanislav Ochotnicky - 1.0.1-5 +- Rebuilt for jpackage-utils changes + +* Fri Jul 20 2012 Fedora Release Engineering - 1.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri Jan 13 2012 Fedora Release Engineering - 1.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Feb 08 2011 Fedora Release Engineering - 1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Fri Jan 28 2011 Ade Lee 1.0.1-1 +- Resolves: #643546 - [RFE] Add nuxwdog to RHEL. +- fix file coloring, aliasing problem + +* Tue Jan 4 2011 Ade Lee 1.0.0-16 +- Resolves: #643546 - [RFE] Add nuxwdog to RHEL. +- fix build problem + +* Tue Jan 4 2011 Ade Lee 1.0.0-15 +- Resolves: #643546 - [RFE] Add nuxwdog to RHEL. +- add needed build requires, requires + +* Thu Dec 23 2010 Ade Lee 1.0.0-14 +- Resolves: #643546 - [RFE] Add nuxwdog to RHEL. +- Remove old encryption scheme +- Store passwords in kernel keyring + +* Thu Dec 16 2010 Ade Lee 1.0.0-13 +- Resolves: #643546 - [RFE] Add nuxwdog to RHEL. + +* Wed Dec 15 2010 Ade Lee 1.0.0-12 +- Resolves: #643546 - [RFE] Add nuxwdog to RHEL. + +* Wed Dec 15 2010 Ade Lee 1.0.0-11 +- Exclude arches for which there is no java + +* Wed Dec 8 2010 Ade Lee 1.0.0-10 +- Fixed copyright notices +- Removed versioning for requires +- Fixed library reference in perl build + +* Tue Dec 7 2010 Ade Lee 1.0.0-9 +- Fixed macros and copyrights +- Copyrights fixed for perl modules + +* Fri Dec 3 2010 Ade Lee 1.0.0-8 +- Spec file modified as per fedora review +- Copyrights fixed for perl modules + +* Wed Dec 1 2010 Ade Lee 1.0.0-7 +- Added missing build dependency on MakeMaker +- Removed extra config flags + +* Tue Nov 30 2010 Ade Lee 1.0.0-6 +- Restructure rpms +- Fix rpmlint issues + +* Fri Sep 10 2010 Ade Lee 1.0.0-5 +- Bumped version to match brew builds +- Bugzilla Bug 630115 - added printMessage() method + +* Thu Feb 11 2010 Ade Lee 1.0.0-2 +- Initial version in separated repo. + +* Tue Dec 1 2009 Ade Lee 1.0.0-1 +- Initial open source version based upon Red Hat + Certificate System (RHCS) 6.1 uxwdog code. +