[packages/powerman] - new

qboosh qboosh at pld-linux.org
Sun Dec 3 18:25:35 CET 2017


commit d889afafd057c433fd119227f6df3e3558a01fb2
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date:   Sun Dec 3 18:26:37 2017 +0100

    - new

 powerman.spec | 168 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 168 insertions(+)
---
diff --git a/powerman.spec b/powerman.spec
new file mode 100644
index 0000000..07dee04
--- /dev/null
+++ b/powerman.spec
@@ -0,0 +1,168 @@
+# TODO: SysV init script (scripts/powerman, needs to be PLDified)
+#
+# Conditional build:
+%bcond_without	static_libs	# static library
+#
+Summary:	PowerMan - centralized power control for clusters
+Summary(pl.UTF-8):	PowerMan - scentralizowane zarządzanie zasilaniem dla klastrów
+Name:		powerman
+Version:	2.3.24
+Release:	1
+License:	GPL v2+
+Group:		Applications/System
+#Source0Download: https://github.com/chaos/powerman/releases
+Source0:	https://github.com/chaos/powerman/releases/download/%{version}/%{name}-%{version}.tar.gz
+# Source0-md5:	94da2ea19d8855fb383029c5da80f03e
+URL:		https://github.com/chaos/powerman
+BuildRequires:	bison
+BuildRequires:	curl-devel
+BuildRequires:	flex
+BuildRequires:	genders-devel
+BuildRequires:	ncurses-devel
+BuildRequires:	net-snmp-devel
+BuildRequires:	pkgconfig
+Requires:	%{name}-libs = %{version}-%{release}
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+PowerMan is a tool for manipulating remote power control (RPC) devices
+from a central location. Several RPC varieties are supported natively
+by PowerMan and Expect-like configurability simplifies the addition of
+new devices.
+
+%description -l pl.UTF-8
+PowerMan to narzędzie do operowanie urządzeniami zdalnego sterowania
+zasilaniem (RPC - Remote Power Control) ze scentralizowanego miejsca.
+Natywnie przez PowerMana obsługiwane jest kilka rodzajów RPC, a
+konfiguracja w stylu Expecta upraszcza dodawanie nowych urządzeń.
+
+%package stonith
+Summary:	PowerMan plugin for STONITH interface
+Summary(pl.UTF-8):	Wtyczka PowerMan do interfejsu STONITH
+Group:		Applications/System
+Requires:	%{name} = %{version}-%{release}
+Requires:	cluster-glue-stonith
+
+%description stonith
+PowerMan plugin for STONITH interface.
+
+%description stonith -l pl.UTF-8
+Wtyczka PowerMan do interfejsu STONITH.
+
+%package libs
+Summary:	Library for applications using PowerMan
+Summary(pl.UTF-8):	Biblioteka dla aplikacji wykorzystujących PowerMan
+Group:		Libraries
+
+%description libs
+Shared library for applications using PowerMan.
+
+%description libs -l pl.UTF-8
+Biblioteka współdzielona dla aplikacji wykorzystujących PowerMan.
+
+%package devel
+Summary:	Header files for PowerMan library
+Summary(pl.UTF-8):	Pliki nagłówkowe biblioteki PowerMan
+Group:		Development/Libraries
+Requires:	%{name}-libs = %{version}-%{release}
+
+%description devel
+Header files for PowerMan library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki PowerMan.
+
+%package static
+Summary:	Static PowerMan library
+Summary(pl.UTF-8):	Statyczna biblioteka PowerMan
+Group:		Development/Libraries
+Requires:	%{name}-devel = %{version}-%{release}
+
+%description static
+Static PowerMan library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka PowerMan.
+
+%prep
+%setup -q
+
+%build
+%configure \
+	--disable-silent-rules \
+	%{!?with_static_libs:--disable-static} \
+	--with-genders \
+	--with-httppower \
+	--with-snmppower \
+	--with-systemdsystemunitdir=%{systemdunitdir}
+
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+	DESTDIR=$RPM_BUILD_ROOT
+
+%{__mv} $RPM_BUILD_ROOT%{_sysconfdir}/powerman/powerman.conf{.example,}
+
+install -d $RPM_BUILD_ROOT%{systemdtmpfilesdir}
+cat >$RPM_BUILD_ROOT%{systemdtmpfilesdir}/powerman.conf <<EOF
+d /var/run/powerman 0755 root root -
+EOF
+
+# obsoleted by pkg-config
+%{__rm} $RPM_BUILD_ROOT%{_libdir}/libpowerman.la
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post	libs -p /sbin/ldconfig
+%postun	libs -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS DISCLAIMER NEWS README TODO
+%attr(755,root,root) %{_bindir}/pm
+%attr(755,root,root) %{_bindir}/powerman
+%attr(755,root,root) %{_sbindir}/httppower
+%attr(755,root,root) %{_sbindir}/plmpower
+%attr(755,root,root) %{_sbindir}/powermand
+%attr(755,root,root) %{_sbindir}/snmppower
+%attr(755,root,root) %{_sbindir}/vpcd
+%dir %{_sysconfdir}/powerman
+%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/powerman/powerman.conf
+%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/powerman/*.dev
+%{systemdunitdir}/powerman.service
+%{systemdtmpfilesdir}/powerman.conf
+%dir /var/run/powerman
+%{_mandir}/man1/pm.1*
+%{_mandir}/man1/powerman.1*
+%{_mandir}/man5/powerman.conf.5*
+%{_mandir}/man5/powerman.dev.5*
+%{_mandir}/man8/httppower.8*
+%{_mandir}/man8/plmpower.8*
+%{_mandir}/man8/powermand.8*
+%{_mandir}/man8/vpcd.8*
+
+%files stonith
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/stonith/plugins/external/powerman
+
+%files libs
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libpowerman.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libpowerman.so.0
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libpowerman.so
+%{_includedir}/libpowerman.h
+%{_pkgconfigdir}/libpowerman.pc
+%{_mandir}/man3/libpowerman.3*
+
+%if %{with static_libs}
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libpowerman.a
+%endif
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/powerman.git/commitdiff/d889afafd057c433fd119227f6df3e3558a01fb2



More information about the pld-cvs-commit mailing list