From 29f2d0f646e948d4bdb55e4f8ad472ff0fcaf9b8 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 13 Jun 2012 20:26:29 +0200 Subject: reorg repo --- glpi-appliances.spec | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 glpi-appliances.spec (limited to 'glpi-appliances.spec') diff --git a/glpi-appliances.spec b/glpi-appliances.spec new file mode 100644 index 0000000..8f934b9 --- /dev/null +++ b/glpi-appliances.spec @@ -0,0 +1,99 @@ +%global pluginname appliances +#global svnrelease 136 + +Name: glpi-appliances +Version: 1.7.0 +%if 0%{?svnrelease} +Release: 0.1.svn%{svnrelease}%{?dist} +%else +Release: 1%{?dist} +%endif +Summary: GLPI Plugin to manage appliances +Summary(fr): Extension GLPI de gestion des applicatifs + +Group: Applications/Internet +License: GPLv2+ +URL: https://forge.indepnet.net/projects/appliances + +%if 0%{?svnrelease} +# svn export -r 136 https://forge.indepnet.net/svn/appliances/trunk appliances +# tar czf glpi-appliances-1.7.0-136.tar.gz appliances +Source0: glpi-%{pluginname}-%{version}-%{svnrelease}.tar.gz +%else +Source0: https://forge.indepnet.net/attachments/download/924/glpi-appliances-1.7.0.tar.gz +%endif + + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch + +Requires: glpi >= 0.80 +Requires: glpi < 0.81 +Requires: php-xmlrpc php-soap + +%description +This plugin add appliances management to GLPI +* Appliances creation (composed by various inventory item) +* Direct management from items +* Integrated with Helpdesk + + +%description -l fr +Cette extension permet la gestion des applicatifs dans GLPI +* Création d’applicatifs composé de plusieurs items +* Gestion directe à partir de l’item +* Intégration avec l'assistance + + +%prep +%setup -q -c + +cat >httpd < + Order Allow,Deny + Deny from all + +EOF + + +%build +# empty build + +%install +rm -rf %{buildroot} + +mkdir -p %{buildroot}/%{_datadir}/glpi/plugins +cp -ar %{pluginname} %{buildroot}/%{_datadir}/glpi/plugins/%{pluginname} + +# ===== apache ===== +rm -f %{buildroot}/%{_datadir}/glpi/plugins/%{pluginname}/sql/.htaccess +mkdir -p %{buildroot}/%{_sysconfdir}/httpd/conf.d/ +install --mode 644 httpd %{buildroot}/%{_sysconfdir}/httpd/conf.d/%{name}.conf + + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/httpd/conf.d/%{name}.conf +%{_datadir}/glpi/plugins/%{pluginname} + + +%changelog +* Thu Jun 30 2011 Remi Collet - 1.7.0-1 +- version 1.7.0 released + +* Tue Jun 28 2011 Remi Collet - 1.7.0-0.1.svn136 +- version 1.7.0 for glpi 0.80 (svn snapshot) + +* Tue Oct 12 2010 Remi Collet - 1.6.0-1 +- version 1.6.0 and GLPI 0.78 released + +* Wed Aug 25 2010 Remi Collet - 1.6.0-0.1.svn114 +- new svn snapshot + +* Sun Jun 20 2010 Remi Collet - 1.6.0-0.1.svn110 +- version 1.6.0 for glpi 0.78 RC (svn snapshot) +- initial RPM + -- cgit