]> git.pld-linux.org Git - packages/eventum.git/blame - eventum.spec
up to 3.6.3-37-ga8d4c81db
[packages/eventum.git] / eventum.spec
CommitLineData
a659c698
JB
1#
2# Conditional build:
7bc9b641 3%bcond_with order # with experimental order patch
cddf3011 4
7f6639c7 5%define rel 1
94cd239c
ER
6%define subver 37
7%define githash a8d4c81db
8890ece7 8%define php_min_version 7.1.3
c96aabf5 9Summary: Eventum Issue / Bug tracking system
9f49cf47 10Summary(pl.UTF-8): Eventum - system śledzenia spraw/błędów
bb01d732 11Name: eventum
da2a4aa9 12Version: 3.6.3
7665f424 13Release: %{?subver:1.%{subver}.%{?githash:g%{githash}.}}%{rel}
0bd66721 14License: GPL v2+
6850abd9 15Group: Applications/WWW
94cd239c
ER
16#Source0: https://github.com/eventum/eventum/releases/download/v%{version}/%{name}-%{version}.tar.xz
17Source0: https://github.com/eventum/eventum/releases/download/snapshot/%{name}-%{version}-%{subver}-g%{githash}.tar.xz
18# Source0-md5: 5eb1fe9db2f2c9e0dfcdaef2d1e99105
82121306 19Source1: %{name}-apache.conf
cd719538
ER
20Source2: %{name}-mail-queue.cron
21Source3: %{name}-mail-download.cron
22Source4: %{name}-reminder.cron
23Source5: %{name}-monitor.cron
1cce3e61 24Source10: sphinx.crontab
cfcdd0a9
ER
25Source13: %{name}-router-postfix.sh
26Source14: %{name}.logrotate
27Source15: %{name}-lighttpd.conf
d0dabd47
ER
28Source16: http://www.isocra.com/images/updown2.gif
29# Source16-md5: deb6eeb2552ba757d3a949ed10c4107d
cc613bc9 30Source17: %{name}.tmpfiles
4f627938 31Patch2: %{name}-order.patch
7a906e31
ER
32#Patch3: group-users.patch
33#Patch4: https://github.com/glensc/eventum/compare/cf_escape.patch
14ff3418 34# packaging patches that probably never go upstream
ac27ba92 35Patch100: %{name}-paths.patch
cfcdd0a9 36Patch107: %{name}-gettext.patch
3ca19d87 37Patch108: autoload.patch
a6016bab
ER
38# some tests
39Patch200: %{name}-fixed-nav.patch
a3a1480e 40URL: https://wiki.github.com/eventum/eventum/
376f0835 41BuildRequires: gettext-tools
5500a61e 42BuildRequires: rpmbuild(macros) >= 1.654
4068cb73 43BuildRequires: sed >= 4.0
290540fe
ER
44BuildRequires: tar >= 1:1.22
45BuildRequires: xz
db2ce4e2 46Requires(post): sudo
5132bae6
ER
47Requires(postun): /usr/sbin/groupdel
48Requires(postun): /usr/sbin/userdel
49Requires(pre): /bin/id
50Requires(pre): /usr/bin/getgid
51Requires(pre): /usr/sbin/groupadd
52Requires(pre): /usr/sbin/useradd
0b88d857 53Requires: fonts-TTF-RedHat-liberation
01d8dfff 54Requires: php(core) >= %{php_min_version}
085aa6d4 55Requires: php(ds)
2f331c68 56Requires: php(filter)
2f331c68
ER
57Requires: php(iconv)
58Requires: php(imap)
59Requires: php(json)
60Requires: php(mbstring)
2f331c68 61Requires: php(pcre)
75d6f458 62Requires: php(pdo_mysql)
2f331c68 63Requires: php(session)
5dbd4bf5
ER
64Requires: php-Smarty >= 3.1
65Requires: php-Smarty-plugin-gettext
9d207070 66Requires: php-ZendFramework-Config >= 2.4
fefc61ab 67Requires: php-ZendFramework-Loader >= 2.4
05c9edc6 68Requires: php-ZendFramework-Mail >= 2.4.13-2
fefc61ab 69Requires: php-ZendFramework-Mime >= 2.4
1beb4932 70Requires: php-ZendFramework-ServiceManager >= 2.4
fefc61ab 71Requires: php-ZendFramework-Validator >= 2.4
19d84727 72Requires: php-monolog >= 1.17.2
19d84727 73Requires: php-psr-Log >= 1.0.0-2
0b88d857 74Requires: phplot >= 5.8.0
bdf85dc8 75Requires: webapps
f399f1c0
ER
76Requires: webserver(access)
77Requires: webserver(alias)
897bdb2c 78Requires: webserver(indexfile)
61351540 79Requires: webserver(php) >= 4.2.0
462ee1a6 80Suggests: localedb
383eed8e
ER
81Suggests: php(mcrypt)
82Suggests: php(openssl)
06ddb94b 83Suggests: webserver(setenv)
5132bae6
ER
84Provides: group(eventum)
85Provides: user(eventum)
86Obsoletes: eventum-base < 3.0.3-1.305
4e2cf70d
ER
87Obsoletes: eventum-route-drafts < 3.0.8-1.1
88Obsoletes: eventum-route-emails < 3.0.8-1.1
89Obsoletes: eventum-route-notes < 3.0.8-1.1
bd70ea88 90Conflicts: logrotate < 3.8.0
35fa3cf8 91BuildArch: noarch
bb01d732
ER
92BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
93
1d760108 94%define _libdir %{_prefix}/lib/%{name}
71f56750 95%define _appdir %{_datadir}/%{name}
d1c44829 96%define _smartydir %{php_data_dir}/Smarty
bdf85dc8
ER
97%define _webapps /etc/webapps
98%define _webapp %{name}
8a37ad9d
ER
99%define _webappdir %{_webapps}/%{_webapp}
100%define _sysconfdir /etc/%{name}
bb01d732
ER
101
102%description
103Eventum is a user-friendly and flexible issue tracking system that can
104be used by a support department to track incoming technical support
105requests, or by a software development team to quickly organize tasks
a3a1480e 106and bugs.
bb01d732 107
d8cfa9f0
JR
108%description -l pl.UTF-8
109Eventum to przyjazny dla użytkownika system śledzenia spraw, który
110może być używany przez dział obsługi do śledzenia przychodzących żądań
111obsługi technicznej albo przez zespół tworzący oprogramowanie do
a3a1480e 112szybkiej organizacji zadań i błędów.
4068cb73 113
ab983aaa 114%package setup
4068cb73 115Summary: Eventum setup package
9f49cf47 116Summary(pl.UTF-8): Pakiet do wstępnej konfiguracji Eventum
ab983aaa 117Group: Applications/WWW
5b165428 118Requires: %{name} = %{version}-%{release}
ab983aaa
ER
119
120%description setup
121Install this package to configure initial Eventum installation. You
122should uninstall this package when you're done, as it considered
123insecure to keep the setup files in place.
124
d8cfa9f0
JR
125%description setup -l pl.UTF-8
126Ten pakiet należy zainstalować w celu wstępnej konfiguracji Eventum po
127pierwszej instalacji. Potem należy go odinstalować, jako że
128pozostawienie plików instalacyjnych mogłoby być niebezpieczne.
4068cb73 129
d4a553ea
ER
130%package doc
131Summary: Eventum documentation and Wiki
132Group: Documentation
133
134%description doc
135Eventum documentation and copy of Wiki.
136
0da8e1f2 137%package mail-queue
30689148 138Summary: Eventum mail queue process
9f49cf47 139Summary(pl.UTF-8): Przetwarzanie kolejki poczty Eventum
0da8e1f2 140Group: Applications/WWW
5b165428 141Requires: %{name} = %{version}-%{release}
0da8e1f2
ER
142Requires: crondaemon
143
144%description mail-queue
145Beginning with the first release of Eventum, emails are not directly
146sent out from the various scripts, but rather added to a mail queue
147table that is processed by a cron job. If an email cannot be sent, it
148will be marked as such in the mail queue log, and the cron job script
149will re-try to send it again the next time it runs.
150
151This package contains the cron job.
152
d8cfa9f0
JR
153%description mail-queue -l pl.UTF-8
154Od pierwszego wydania Eventum poczta nie jest wysyłana bezpośrednio z
155różnych skryptów, lecz dodawana do kolejki przetwarzanej z crona.
156Jeśli poczta nie może być wysłana, będzie odpowiednio oznaczona w logu
157kolejki poczty, a skrypt z crona będzie próbował wysłać ją ponownie
158następnym razem.
0181746f 159
30689148 160Ten pakiet zawiera zadanie dla crona.
161
ea084bcb 162%package mail-download
30689148 163Summary: Eventum email download
9f49cf47 164Summary(pl.UTF-8): Ściąganie poczty Eventum
ea084bcb 165Group: Applications/WWW
5b165428 166Requires: %{name} = %{version}-%{release}
ea084bcb
ER
167Requires: crondaemon
168
169%description mail-download
170In order for Eventum's email integration feature to work, you need to
171setup a cron job to run the script every so often.
172
173This package contains the cron job.
174
d8cfa9f0
JR
175%description mail-download -l pl.UTF-8
176Aby integracja poczty elektronicznej w Eventum działała, trzeba
177ustawić zadanie crona, aby uruchamiał odpowiedni skrypt wystarczająco
178często.
0181746f
JB
179
180Ten pakiet zawiera zadanie dla crona.
181
cd719538
ER
182%package reminder
183Summary: Eventum Reminder System
9f49cf47 184Summary(pl.UTF-8): System przypominania dla Eventum
cd719538 185Group: Applications/WWW
5b165428 186Requires: %{name} = %{version}-%{release}
cd719538
ER
187Requires: crondaemon
188
189%description reminder
190The reminder system was designed with the objective as serving as a
191safe net for issues that need attention. Depending on what
192configuration you create, you may have several reminders (or alerts)
193be sent out whenever an issue needs attention, for whatever parameter
194you may deem necessary.
195
196This package contains the cron job.
197
d8cfa9f0
JR
198%description reminder -l pl.UTF-8
199System przypominania został zaprojektowany tak, aby służył jako
200bezpieczna sieć dla spraw wymagających uwagi. W zależności od
201konfiguracji można ustawić różne przypominajki (lub alarmy) wysyłane
202przy każdej sprawie wymagającej uwagi lub przy parametrze, który można
203uważać za potrzebny.
6341f096
JB
204
205Ten pakiet zawiera zadanie dla crona.
206
cd719538
ER
207%package monitor
208Summary: Eventum Heartbeat Monitor
9f49cf47 209Summary(pl.UTF-8): Monitor życia dla Eventum
cd719538 210Group: Applications/WWW
5b165428 211Requires: %{name} = %{version}-%{release}
cd719538 212Requires: crondaemon
2f331c68 213Requires: php(posix)
cd719538
ER
214
215%description monitor
216The heartbeat monitor is a feature designed for the administrator that
217wants to be alerted whenever a common problem in Eventum is detected,
218like the database server not being available anymore, or maybe when
219the recommended permissions for certain configuration files are
220changed.
221
222Please note that before running the heartbeat monitor, you may need to
223customize some of the checks to be appropriate for your own system,
224particularly the permission and file checks on
225Monitor::checkConfiguration().
226
227This package contains the cron job.
228
d8cfa9f0
JR
229%description monitor -l pl.UTF-8
230Monitor życia to funkcjonalność zaprojektowana dla administratora
231chcącego być alarmowanym przy każdym wykryciu popularnego problemu z
232Eventum, jak nie działanie serwera bazy danych albo zmiana uprawnień
233do plików konfiguracyjnych.
6341f096 234
d8cfa9f0
JR
235Należy zauważyć, że przed uruchomieniem tego monitora może być
236konieczne dostosowanie niektórych testów do systemu, w szczególności
237testów uprawnień i plików w Monitor::checkConfiguration().
6341f096
JB
238
239Ten pakiet zawiera zadanie dla crona.
240
a6d2ad69
ER
241%package router-postfix
242Summary: Eventum Mail Routing - Postfix
9f49cf47 243Summary(pl.UTF-8): Przekazywanie poczty Eventum - Postfix
a6d2ad69 244Group: Applications/Mail
5b165428 245Requires: %{name} = %{version}-%{release}
a6d2ad69 246Requires: postfix
8bc4bcd1
ER
247Provides: eventum(router)
248Obsoletes: eventum(router)
a6d2ad69
ER
249
250%description router-postfix
251This package provides way of routing notes and emails back to Eventum
252via Postfix.
253
e1bb3563 254The Postfix configuration instructions you can find from
a3a1480e 255<https://github.com/eventum/eventum/wiki/System-Admin:-Setting-up-email-routing-with-postfix>
e1bb3563 256
d8cfa9f0
JR
257%description router-postfix -l pl.UTF-8
258Ten pakiet udostępnia metodę przekazywania notatek i listów do Eventum
995fa554
JB
259przez Postfiksa.
260
d8cfa9f0 261Opis konfiguracji Postfiksa można znaleźć pod adresem
a3a1480e 262<https://github.com/eventum/eventum/wiki/System-Admin:-Setting-up-email-routing-with-postfix>
a659c698 263
1cce3e61
ER
264%package sphinx
265Summary: Eventum Sphinx Search
266Group: Applications/WWW
267Requires: %{name} = %{version}-%{release}
268Requires: crondaemon
269Requires: sphinx
270
271%description sphinx
272Sphinx search integration for Eventum.
273
274This package contains the cron job.
275
bb01d732 276%prep
4b01e826 277%setup -q -n %{name}-%{version}%{?githash:-%{subver}-g%{githash}}
5b165428 278
fa6167ba
ER
279mv docs/examples .
280
9487d524 281# bug fixes / features
4f627938 282%{?with_order:%patch2 -p1}
7a906e31
ER
283#%patch3 -p0
284#%patch4 -p1
7a906e31 285%{?with_order:cp -p %{SOURCE16} htdocs/images}
a6016bab 286#%patch200 -p1
ac27ba92 287
1cce3e61
ER
288# produce default sphinx config
289# must be run before paths.patch
7a906e31 290%if 0
1cce3e61
ER
291cat <<'EOF' > config/config.php
292<?php
293define('APP_SQL_DBTYPE', 'mysql');
294define('APP_SQL_DBHOST', 'localhost:/var/lib/mysql/mysql.sock');
295define('APP_SQL_DBPORT', 3306);
296define('APP_SQL_DBNAME', 'eventum');
297define('APP_SQL_DBUSER', 'mysql');
298define('APP_SQL_DBPASS', '');
299define('APP_TABLE_PREFIX', 'eventum_');
300EOF
301php config/sphinx.conf.php > config/sphinx.conf
54b9a2df 302rm config/config.php
7a906e31 303%endif
1cce3e61 304
ac27ba92
ER
305# packaging
306%patch100 -p1
ac27ba92 307%patch107 -p1
3ca19d87 308%patch108 -p1
0b3b58dd 309
54b9a2df 310rm htdocs/.htaccess.dist
dee89c38 311rm config/config.dist.php
54b9a2df 312
1df90ad2
ER
313# cleanup libs taken from system, everything else gets bundled
314rm -r vendor/fonts/liberation
315rm -r vendor/monolog/monolog
1df90ad2
ER
316rm -r vendor/php-gettext/php-gettext
317rm -r vendor/phplot/phplot
318rm -r vendor/psr/log
319rm -r vendor/smarty-gettext/smarty-gettext
320rm -r vendor/smarty/smarty
321rm -r vendor/sphinx/php-sphinxapi
322rm -r vendor/zendframework/zend-config
323rm -r vendor/zendframework/zend-loader
324rm -r vendor/zendframework/zend-mail
325rm -r vendor/zendframework/zend-mime
326rm -r vendor/zendframework/zend-servicemanager
327rm -r vendor/zendframework/zend-stdlib
328rm -r vendor/zendframework/zend-validator
c3fd3767 329
5b165428 330# remove backups from patching as we use globs to package files to buildroot
73c437a6 331find '(' -name '*~' -o -name '*.orig' ')' | xargs -r rm -v
085e39c0 332
465c3ab7 333%build
ae3e48e6 334%{__make} -C localization
465c3ab7 335
bb01d732
ER
336%install
337rm -rf $RPM_BUILD_ROOT
cfc3bce6 338install -d \
6e3be5a3 339 $RPM_BUILD_ROOT{%{_webappdir}/{custom_field,templates,workflow},%{_sysconfdir},%{_bindir},%{_sbindir},%{_libdir}} \
2b135b34 340 $RPM_BUILD_ROOT/etc/{rc.d/init.d,cron.d,logrotate.d,sysconfig} \
c1e74aa1 341 $RPM_BUILD_ROOT/var/{run,cache,lib}/%{name} \
685fc383 342 $RPM_BUILD_ROOT/var/log/{archive/,}%{name} \
ac6bab4c 343 $RPM_BUILD_ROOT/var/lib/%{name}/{routed_{emails,drafts,notes},storage} \
73de38a1 344 $RPM_BUILD_ROOT%{systemdtmpfilesdir}
cfc3bce6 345
9de27aeb 346%{__make} install-eventum install-localization \
ae3e48e6 347 sysconfdir=%{_webappdir} \
7a906e31 348 localedir=%{_localedir} \
ae3e48e6 349 DESTDIR=$RPM_BUILD_ROOT
da8d6134 350
dd5b687f 351ln -s %{_webappdir} $RPM_BUILD_ROOT%{_appdir}/config
37f06e5c 352
bcb86d50 353cp -a vendor $RPM_BUILD_ROOT%{_appdir}
3ca19d87 354
29e8ea7c
ER
355# unsupported locale
356%{__rm} -r $RPM_BUILD_ROOT%{_localedir}/ht
357
fa6167ba
ER
358install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
359cp -a examples/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
360
ae3e48e6 361%{?with_order:cp -a htdocs/ajax $RPM_BUILD_ROOT%{_appdir}/htdocs}
9cdc5027 362
f399f1c0 363touch $RPM_BUILD_ROOT%{_webappdir}/htpasswd
1b5aae0f 364cp -p %{SOURCE1} $RPM_BUILD_ROOT%{_webappdir}/apache.conf
87ca28ca 365cp -p %{SOURCE1} $RPM_BUILD_ROOT%{_webappdir}/httpd.conf
1b5aae0f 366cp -p %{SOURCE15} $RPM_BUILD_ROOT%{_webappdir}/lighttpd.conf
1cce3e61
ER
367
368install -d $RPM_BUILD_ROOT/etc/sphinx
7a906e31 369#cp -p config/sphinx.conf $RPM_BUILD_ROOT/etc/sphinx/%{name}.conf
858c6f2a 370cp -p config/sphinx.conf.php $RPM_BUILD_ROOT%{_webappdir}
ae3e48e6 371
1b5aae0f
ER
372cp -p %{SOURCE2} $RPM_BUILD_ROOT/etc/cron.d/%{name}-mail-queue
373cp -p %{SOURCE3} $RPM_BUILD_ROOT/etc/cron.d/%{name}-mail-download
374cp -p %{SOURCE4} $RPM_BUILD_ROOT/etc/cron.d/%{name}-reminder
375cp -p %{SOURCE5} $RPM_BUILD_ROOT/etc/cron.d/%{name}-monitor
1cce3e61 376cp -p %{SOURCE10} $RPM_BUILD_ROOT/etc/cron.d/%{name}-sphinx
ae3e48e6 377
1b5aae0f 378cp -p %{SOURCE14} $RPM_BUILD_ROOT/etc/logrotate.d/%{name}
2b135b34 379
410d72c7 380# postfix router
858c6f2a 381install -p %{SOURCE13} $RPM_BUILD_ROOT%{_libdir}/router-postfix
a6d2ad69 382
92bc2f5d 383cp -p %{SOURCE17} $RPM_BUILD_ROOT%{systemdtmpfilesdir}/%{name}.conf
cc613bc9 384
600d96a0 385%find_lang %{name}
c1e74aa1 386
bb01d732
ER
387%clean
388rm -rf $RPM_BUILD_ROOT
389
01b84746 390%pre
5132bae6
ER
391%groupadd -g 146 %{name}
392%useradd -u 146 -d /var/lib/%{name} -g %{name} -c "Eventum User" %{name}
01b84746
ER
393%addusertogroup http %{name}
394
82121306 395%post
686306de
ER
396# create empty ghost files
397# these permissions ensure the logs are write only
398for a in \
399 errors.log login_attempts.log \
2df0528f 400 eventum.log \
7b26fd71 401 auth.log cli.log \
686306de
ER
402; do
403 test -f /var/log/%{name}/$a && continue
404 install -m 0620 -o root -g http /dev/null /var/log/%{name}/$a
08196fe2
ER
405done
406
00358bba
ER
407# run database update if configured
408test -s %{_webappdir}/config.php && \
db2ce4e2 409sudo -H -u http -- %{_appdir}/bin/upgrade.php || :
847270fe 410
da8d6134
ER
411# nuke Smarty templates cache after upgrade
412rm -f /var/cache/eventum/*.php
413
4a751c1a
ER
414# Restart webserver on upgrade to get .mo translations reloaded.
415# actually php engines "php-fcgi" and "php-fpm" needed only, apache is restarted anyway via webapp trigger.
114241d7
ER
416%php_webserver_restart
417
82121306
ER
418%preun
419if [ "$1" = "0" ]; then
dfe0f6d6
ER
420 # nuke cache
421 rm -f /var/cache/eventum/*.php 2>/dev/null || :
422fi
cfc3bce6 423
5132bae6 424%postun
01b84746 425if [ "$1" = "0" ]; then
a6d2ad69 426 %userremove %{name}
1f52d1fe 427 %groupremove %{name}
a6d2ad69
ER
428fi
429
94bd779f 430%post setup
dee89c38
ER
431chmod 660 %{_webappdir}/{config,private_key,secret_key}.php
432chown root:http %{_webappdir}/{config,private_key,secret_key}.php
94bd779f
ER
433
434%postun setup
b4fe195b 435if [ "$1" = "0" ] && [ -f %{_webappdir}/config.php ]; then
dee89c38
ER
436 chmod 640 %{_webappdir}/{config,private_key,secret_key}.php
437 chown root:http %{_webappdir}/{config,private_key,secret_key}.php
94bd779f
ER
438fi
439
09f58a75 440%triggerin -- apache1 < 1.3.37-3, apache1-base
bdf85dc8 441%webapp_register apache %{_webapp}
1d760108 442
09f58a75 443%triggerun -- apache1 < 1.3.37-3, apache1-base
bdf85dc8 444%webapp_unregister apache %{_webapp}
1d760108 445
87ca28ca 446%triggerin -- apache < 2.2.0, apache-base
bdf85dc8 447%webapp_register httpd %{_webapp}
1d760108 448
87ca28ca 449%triggerun -- apache < 2.2.0, apache-base
bdf85dc8 450%webapp_unregister httpd %{_webapp}
1d760108 451
f399f1c0
ER
452%triggerin -- lighttpd
453%webapp_register lighttpd %{_webapp}
454
455%triggerun -- lighttpd
456%webapp_unregister lighttpd %{_webapp}
457
600d96a0 458%files -f %{name}.lang
bb01d732 459%defattr(644,root,root,755)
371b276a 460%attr(771,root,http) %dir %{_webappdir}
f7d1e520 461%attr(751,root,http) %dir %{_webappdir}/crm
e9a24d52 462%attr(751,root,http) %dir %{_webappdir}/custom_field
f7d1e520 463%attr(751,root,http) %dir %{_webappdir}/partner
e9a24d52
ER
464%attr(751,root,http) %dir %{_webappdir}/templates
465%attr(751,root,http) %dir %{_webappdir}/workflow
e570944f 466%attr(640,root,http) %config(noreplace) %verify(not md5 mtime size) %{_webappdir}/config.php
94cd239c 467%attr(640,root,http) %config(noreplace) %verify(not md5 mtime size) %{_webappdir}/htpasswd
e570944f 468%attr(640,root,http) %config(noreplace) %verify(not md5 mtime size) %{_webappdir}/private_key.php
dee89c38 469%attr(640,root,http) %config(noreplace) %verify(not md5 mtime size) %{_webappdir}/secret_key.php
94cd239c
ER
470%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_webappdir}/apache.conf
471%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_webappdir}/httpd.conf
472%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_webappdir}/lighttpd.conf
e570944f 473%attr(660,root,http) %config(noreplace) %verify(not md5 mtime size) %{_webappdir}/setup.php
d2e501e8 474
7e9ea0b3 475%dir %attr(731,root,http) /var/log/%{name}
e570944f 476%attr(620,root,http) %ghost /var/log/%{name}/*
3c6aa7a9 477%dir %attr(750,root,root) /var/log/archive/%{name}
8fd047ac 478%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/%{name}
35f9d6a3 479
5132bae6 480%dir %{_appdir}
37f06e5c
ER
481%{_appdir}/config
482
7a906e31 483%dir %{_appdir}/bin
acff2f42 484%attr(755,root,root) %{_appdir}/bin/extension.php
bd0576dd 485%attr(755,root,root) %{_appdir}/bin/ldapsync.php
c316a9af 486%attr(755,root,root) %{_appdir}/bin/migrate_storage_adapter.php
7a906e31 487%attr(755,root,root) %{_appdir}/bin/process_all_emails.php
6453eaf6 488%attr(755,root,root) %{_appdir}/bin/upgrade.php
7a906e31 489
4b01e826 490%{_appdir}/autoload.php
1beb4932 491%{_appdir}/globals.php
ae3e48e6 492%{_appdir}/init.php
1beb4932 493%{_appdir}/phinx.php
cfc3bce6
ER
494%dir %{_appdir}/htdocs
495%{_appdir}/htdocs/*.php
da8d6134 496%{_appdir}/htdocs/*.ico
7bc9b641 497%{_appdir}/htdocs/ajax
cfc3bce6
ER
498%{_appdir}/htdocs/css
499%{_appdir}/htdocs/customer
500%{_appdir}/htdocs/images
501%{_appdir}/htdocs/js
502%{_appdir}/htdocs/manage
503%{_appdir}/htdocs/reports
504%{_appdir}/htdocs/rpc
7a906e31 505%{_appdir}/htdocs/components
9748a8c3 506%{_appdir}/templates
847270fe 507
8be9fbff
ER
508%dir %{_appdir}/db
509%dir %{_appdir}/db/migrations
510%{_appdir}/db/migrations/*.php
847270fe 511
8772b0d6 512%{_appdir}/res
e8b7cc70 513%{_appdir}/src
8772b0d6 514%{_appdir}/vendor
ae3e48e6
ER
515%dir %{_appdir}/lib
516%{_appdir}/lib/eventum
36395687
ER
517%exclude %{_appdir}/src/Console/Command/MailDownloadCommand.php
518%exclude %{_appdir}/src/Console/Command/MailQueueProcessCommand.php
519%exclude %{_appdir}/src/Console/Command/MailQueueTruncateCommand.php
520%exclude %{_appdir}/src/Console/Command/MonitorCommand.php
521%exclude %{_appdir}/src/Console/Command/ReminderCheckCommand.php
00e339ff 522
5132bae6
ER
523%dir %{_libdir}
524
73de38a1 525%{systemdtmpfilesdir}/%{name}.conf
5132bae6
ER
526
527%dir /var/lib/%{name}
e570944f
ER
528%dir %attr(730,root,http) /var/run/%{name}
529%dir %attr(730,root,http) /var/cache/%{name}
ab983aaa 530
89522a33 531# saved mail copies
e570944f
ER
532%attr(770,root,http) %dir /var/lib/%{name}/routed_emails
533%attr(770,root,http) %dir /var/lib/%{name}/routed_drafts
534%attr(770,root,http) %dir /var/lib/%{name}/routed_notes
ac6bab4c
ER
535# attachment storage
536%attr(770,root,http) %dir /var/lib/%{name}/storage
d2e501e8 537
ab983aaa
ER
538%files setup
539%defattr(644,root,root,755)
cfc3bce6 540%{_appdir}/htdocs/setup
0da8e1f2 541
d4a553ea 542%files doc
06ddb94b 543%defattr(644,root,root,755)
d4a553ea
ER
544%doc docs/*
545%{_examplesdir}/%{name}-%{version}
546
0da8e1f2
ER
547%files mail-queue
548%defattr(644,root,root,755)
36395687
ER
549%{_appdir}/src/Console/Command/MailQueueProcessCommand.php
550%{_appdir}/src/Console/Command/MailQueueTruncateCommand.php
7a906e31 551%attr(755,root,root) %{_appdir}/bin/process_mail_queue.php
f56655e1 552%attr(755,root,root) %{_appdir}/bin/truncate_mail_queue.php
ea084bcb
ER
553%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/cron.d/%{name}-mail-queue
554
555%files mail-download
556%defattr(644,root,root,755)
36395687 557%{_appdir}/src/Console/Command/MailDownloadCommand.php
7a906e31 558%attr(755,root,root) %{_appdir}/bin/download_emails.php
ea084bcb 559%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/cron.d/%{name}-mail-download
5cb2e61d 560
cd719538
ER
561%files reminder
562%defattr(644,root,root,755)
36395687 563%{_appdir}/src/Console/Command/ReminderCheckCommand.php
7a906e31 564%attr(755,root,root) %{_appdir}/bin/check_reminders.php
cd719538
ER
565%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/cron.d/%{name}-reminder
566
567%files monitor
568%defattr(644,root,root,755)
36395687 569%{_appdir}/src/Console/Command/MonitorCommand.php
7a906e31 570%attr(755,root,root) %{_appdir}/bin/monitor.php
cd719538
ER
571%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/cron.d/%{name}-monitor
572
a6d2ad69
ER
573%files router-postfix
574%defattr(644,root,root,755)
410d72c7 575%attr(755,root,root) %{_libdir}/router-postfix
a6d2ad69 576
1cce3e61
ER
577%files sphinx
578%defattr(644,root,root,755)
579%{_webappdir}/sphinx.conf.php
7a906e31 580#%attr(750,root,http) %config(noreplace) %verify(not md5 mtime size) /etc/sphinx/%{name}.conf
1cce3e61 581%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/cron.d/%{name}-sphinx
This page took 0.307328 seconds and 4 git commands to generate.