forked from holland-backup/holland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathholland.spec
732 lines (603 loc) · 23 KB
/
holland.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
# we don't do the condition check as per FPG because we are targeting
# el4 also... which doesn't support it
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%{!?holland_version: %global holland_version 1.0.14}
# default %%rhel to make things easier to build
%{!?rhel: %global rhel %%(%{__sed} 's/^[^0-9]*\\([0-9]\\+\\).*/\\1/' /etc/redhat-release)}
%if %{!?with:1}0
%global with() %{expand:%%{?with_%{1}:1}%%{!?with_%{1}:0}}
%endif
%if %{!?without:1}0
%global without() %{expand:%%{?with_%{1}:0}%%{!?with_%{1}:1}}
%endif
%if %{!?bcond_with:1}0
%global bcond_with() %{expand:%%{?_with_%{1}:%%global with_%{1} 1}}
%endif
%if %{!?bcond_without:1}0
%global bcond_without() %{expand:%%{!?_without_%{1}:%%global with_%{1} 1}}
%endif
%bcond_with tests
%bcond_with example
%bcond_with sphinxdocs
%bcond_with mysqlhotcopy
%bcond_with maatkit
%bcond_with tar
%bcond_without pgdump
%bcond_without sqlite
%bcond_without xtrabackup
Name: holland
Version: %{holland_version}
Release: 1%{?dist}
Summary: Pluggable Backup Framework
Group: Applications/Archiving
License: BSD
URL: http://hollandbackup.org
Source0: http://hollandbackup.org/releases/stable/1.0/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: python2-devel python-setuptools
%if %{with sphinxdocs}
BuildRequires: python-sphinx
%endif
Requires: python-setuptools
%description
A pluggable backup framework which focuses on, but is not limited to, highly
configurable database backups.
%package common
Summary: Common library functionality for Holland Plugins
License: GPLv2
Group: Applications/Archiving
Requires: %{name} = %{version}-%{release} MySQL-python
%description common
Library for common functionality used by holland plugins
%if %{with example}
%package example
Summary: Example Backup Provider Plugin for Holland
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description example
Example Backup Plugin for Holland
%endif
%package random
Summary: Random Backup Provider Plugin for Holland
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description random
Random Backup Provider Plugin for Holland
%if %{with maatkit}
%package maatkit
Summary: Holland mk-parallel-dump plugin
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}, %{name}-common = %{version}-%{release}
Requires: maatkit
%description maatkit
This plugin provides support for holland to perform MySQL backups using the
mk-parallel-dump script from the Maatkit toolkit.
%endif
%package mysqldump
Summary: Logical mysqldump backup plugin for Holland
License: GPLv2
Group: Development/Libraries
Requires: %{name} = %{version}-%{release} %{name}-common = %{version}-%{release}
%description mysqldump
This plugin allows holland to perform logical backups of a MySQL database
using the mysqldump command.
%if %{with mysqlhotcopy}
%package mysqlhotcopy
Summary: Raw non-transactional backup plugin for Holland
License: GPLv2
Group: Development/Libraries
Requires: %{name} = %{version}-%{release} %{name}-common = %{version}-%{release}
%description mysqlhotcopy
This plugin allows holland to perform backups of MyISAM and other
non-transactional table types in MySQL by issuing a table lock and copying the
raw files from the data directory.
%endif
%package mysqllvm
Summary: Holland LVM snapshot backup plugin for MySQL
License: GPLv2
Group: Development/Libraries
Requires: %{name} = %{version}-%{release} %{name}-common = %{version}-%{release}
Provides: %{name}-lvm = %{version}-%{release}
Obsoletes: %{name}-lvm < 0.9.8
Requires: lvm2 MySQL-python tar
%description mysqllvm
This plugin allows holland to perform LVM snapshot backups of a MySQL database
and to generate a tar archive of the raw data directory.
%if %{with pgdump}
%package pgdump
Summary: Holland LVM snapshot backup plugin for MySQL
License: GPLv2
Group: Development/Libraries
Provides: %{name}-pgdump = %{version}-%{release}
Requires: %{name} = %{version}-%{release} %{name}-common = %{version}-%{release}
Requires: python-psycopg2
%description pgdump
This plugin allows holland to backup Postgres databases via the pg_dump command.
%endif
%if %{with sqlite}
%package sqlite
Summary: SQLite Backup Provider Plugin for Holland
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Requires: %{name}-common = %{version}-%{release}
%description sqlite
SQLite Backup Provider Plugin for Holland
%endif
%if %{with xtrabackup}
%package xtrabackup
Summary: Holland plugin for Percona XtraBackup
License: GPLv2
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Requires: %{name}-common = %{version}-%{release}
Requires: percona-xtrabackup
%description xtrabackup
This package provides a Holland plugin for Percona Xtrabackup. This
plugin requires Percona XtraBackup and runs the provided
/usr/bin/innobackupex script.
%endif
%if %{with tar}
%package tar
Summary: tar plugin for Holland
License: GPLv2
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Requires: %{name}-common = %{version}-%{release}
Requires: tar
%description tar
This package provides a Holland plugin for creating tar files
%endif
%prep
%setup -q
find ./ -name setup.cfg -exec rm -f {} \;
mv plugins/README README.plugins
mv config/providers/README README.providers
# cleanup, will be removed upstream at some point
rm plugins/ACTIVE
%build
%{__python} setup.py build
%if %{with sphinxdocs}
# docs
pushd docs
make html
rm -f build/html/.buildinfo
popd
%endif
# library : holland.lib.common
cd plugins/holland.lib.common
%{__python} setup.py build
cd -
# library : holland.lib.mysql
cd plugins/holland.lib.mysql
%{__python} setup.py build
cd -
# library: holland.lib.lvm
cd plugins/holland.lib.lvm
%{__python} setup.py build
cd -
%if %{with example}
# plugin : holland.backup.example
cd plugins/holland.backup.example
%{__python} setup.py build
cd -
%endif
%if %{with maatkit}
# plugin : holland.backup.maatkit
cd plugins/holland.backup.maatkit
%{__python} setup.py build
cd -
%endif
# plugin : holland.backup.mysqldump
cd plugins/holland.backup.mysqldump
%{__python} setup.py build
cd -
%if %{with mysqlhotcopy}
# plugin : holland.backup.mysqlhotcopy
cd plugins/holland.backup.mysqlhotcopy
%{__python} setup.py build
cd -
%endif
# plugin : holland.backup.mysql_lvm
cd plugins/holland.backup.mysql_lvm
%{__python} setup.py build
cd -
%if %{with pgdump}
cd plugins/holland.backup.pgdump
%{__python} setup.py build
cd -
%endif
# plugin : holland.backup.random
cd plugins/holland.backup.random
%{__python} setup.py build
cd -
%if %{with sqlite}
# plugin : holland.backup.sqlite
cd plugins/holland.backup.sqlite
%{__python} setup.py build
cd -
%endif
%if %{with xtrabackup}
cd plugins/holland.backup.xtrabackup
%{__python} setup.py build
cd -
%endif
%if %{with tar}
cd plugins/holland.backup.tar
%{__python} setup.py build
cd -
%endif
%install
rm -rf %{buildroot}
%{__mkdir} -p %{buildroot}%{_sysconfdir}/holland/{backupsets,providers} \
%{buildroot}%{_localstatedir}/spool/holland \
%{buildroot}%{_localstatedir}/log/holland/ \
%{buildroot}%{_mandir}/man5
# holland-core
%{__python} setup.py install -O1 --skip-build --root %{buildroot} --install-scripts %{_sbindir}
install -m 0640 config/holland.conf %{buildroot}%{_sysconfdir}/holland/
%{__mkdir_p} -p %{buildroot}%{_mandir}/man1
install -m 0644 docs/man/holland.1 %{buildroot}%{_mandir}/man1
%{__mkdir_p} %{buildroot}%{python_sitelib}/holland/{lib,backup,commands,restore}
# library : holland.lib.common
cd plugins/holland.lib.common
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
cd -
# library : holland.lib.mysql
cd plugins/holland.lib.mysql
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
cd -
# library: holland.lib.lvm
cd plugins/holland.lib.lvm
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
cd -
%if %{with example}
# plugin : holland.backup.example
cd plugins/holland.backup.example
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
cd -
install -m 0640 config/providers/example.conf %{buildroot}%{_sysconfdir}/holland/providers/
%endif
%if %{with maatkit}
# plugin : holland.backup.maatkit
cd plugins/holland.backup.maatkit
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
cd -
install -m 0640 config/providers/maatkit.conf %{buildroot}%{_sysconfdir}/holland/providers/
%endif
# plugin : holland.backup.mysqldump
cd plugins/holland.backup.mysqldump
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
cd -
install -m 0640 config/providers/mysqldump.conf %{buildroot}%{_sysconfdir}/holland/providers/
%if %{with mysqlhotcopy}
# plugin : holland.backup.mysqlhotcopy
cd plugins/holland.backup.mysqlhotcopy
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
install -c -m 0644 docs/man/holland-mysqlhotcopy.5 \
%{buildroot}%{_mandir}/man5
cd -
install -m 0640 config/providers/mysqlhotcopy.conf %{buildroot}%{_sysconfdir}/holland/providers/
%endif
# plugin : holland.backup.mysql_lvm
cd plugins/holland.backup.mysql_lvm
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
cd -
install -m 0640 config/providers/mysql-lvm.conf %{buildroot}%{_sysconfdir}/holland/providers/
install -m 0640 config/providers/mysqldump-lvm.conf %{buildroot}%{_sysconfdir}/holland/providers/
# plugin : holland.backup.pgdump
%if %{with pgdump}
cd plugins/holland.backup.pgdump
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
cd -
install -m 0640 config/providers/pgdump.conf %{buildroot}%{_sysconfdir}/holland/providers/
%endif
# plugin : holland.backup.random
cd plugins/holland.backup.random
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
cd -
install -m 0640 config/providers/random.conf %{buildroot}%{_sysconfdir}/holland/providers/
%if %{with sqlite}
# plugin : holland.backup.sqlite
cd plugins/holland.backup.sqlite
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
cd -
install -m 0640 config/providers/sqlite.conf %{buildroot}%{_sysconfdir}/holland/providers/
%endif
%if %{with xtrabackup}
# plugin : holland.backup.xtrabackup
cd plugins/holland.backup.xtrabackup
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
cd -
install -m 0640 config/providers/xtrabackup.conf %{buildroot}%{_sysconfdir}/holland/providers/
%endif
%if %{with tar}
# plugin : holland.backup.tar
cd plugins/holland.backup.tar
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
cd -
install -m 0640 config/providers/tar.conf %{buildroot}%{_sysconfdir}/holland/providers/
%endif
# logrotate
%{__mkdir} -p %{buildroot}%{_sysconfdir}/logrotate.d
cat > %{buildroot}%{_sysconfdir}/logrotate.d/holland <<EOF
/var/log/holland.log /var/log/holland/holland.log {
rotate 4
weekly
compress
missingok
create root adm
}
EOF
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc CHANGES.rst README README.plugins README.providers
%doc INSTALL LICENSE config/backupsets/examples/
%if %{with sphinxdocs}
%doc docs/build/html/
%endif
%{_sbindir}/holland
%dir %{python_sitelib}/holland/
%{python_sitelib}/holland/core/
%{python_sitelib}/holland-%{version}-*-nspkg.pth
%{python_sitelib}/holland-%{version}-*.egg-info
%{_mandir}/man1/holland.1*
%{_localstatedir}/log/holland/
%{python_sitelib}/holland/commands/*.py*
%attr(0755,root,root) %dir %{_sysconfdir}/holland/
%attr(0755,root,root) %dir %{_sysconfdir}/holland/backupsets
%attr(0755,root,root) %dir %{_sysconfdir}/holland/providers
%attr(0640,root,root) %config(noreplace) %{_sysconfdir}/holland/holland.conf
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/logrotate.d/holland
%attr(0755,root,root) %{_localstatedir}/spool/holland
# virtual namespaces
%dir %{python_sitelib}/holland/backup/
%dir %{python_sitelib}/holland/restore/
%dir %{python_sitelib}/holland/commands/
%dir %{python_sitelib}/holland/lib/
%files common
%defattr(-,root,root,-)
%doc plugins/holland.lib.common/{README,LICENSE}
%{python_sitelib}/%{name}/lib/compression.py*
%{python_sitelib}/%{name}/lib/archive/
%{python_sitelib}/%{name}/lib/safefilename.py*
%{python_sitelib}/%{name}/lib/which.py*
%{python_sitelib}/%{name}/lib/multidict.py*
%{python_sitelib}/%{name}/lib/mysql/
%{python_sitelib}/holland.lib.common-%{version}-*-nspkg.pth
%{python_sitelib}/holland.lib.common-%{version}-*.egg-info
%{python_sitelib}/holland.lib.mysql-%{version}-*-nspkg.pth
%{python_sitelib}/holland.lib.mysql-%{version}-*.egg-info
%if %{with example}
%files example
%defattr(-,root,root,-)
%doc plugins/holland.backup.example/{README,LICENSE}
%{python_sitelib}/holland/backup/example.py*
%{python_sitelib}/holland.backup.example-%{version}-*-nspkg.pth
%{python_sitelib}/holland.backup.example-%{version}-*.egg-info
%config(noreplace) %{_sysconfdir}/holland/providers/example.conf
%endif
%files random
%defattr(-,root,root,-)
%doc plugins/holland.backup.random/{README,LICENSE}
%{python_sitelib}/holland/backup/random.py*
%{python_sitelib}/holland.backup.random-%{version}-*-nspkg.pth
%{python_sitelib}/holland.backup.random-%{version}-*.egg-info
%config(noreplace) %{_sysconfdir}/holland/providers/random.conf
%if %{with maatkit}
%files maatkit
%defattr(-,root,root,-)
%doc plugins/holland.backup.maatkit/{README,LICENSE}
%{python_sitelib}/holland/backup/maatkit.py*
%{python_sitelib}/holland.backup.maatkit-%{version}-*-nspkg.pth
%{python_sitelib}/holland.backup.maatkit-%{version}-*.egg-info
%config(noreplace) %{_sysconfdir}/holland/providers/maatkit.conf
%endif
%files mysqldump
%defattr(-,root,root,-)
%doc plugins/holland.backup.mysqldump/{README,LICENSE}
%{python_sitelib}/holland/backup/mysqldump/
%{python_sitelib}/holland.backup.mysqldump-%{version}-*-nspkg.pth
%{python_sitelib}/holland.backup.mysqldump-%{version}-*.egg-info
%config(noreplace) %{_sysconfdir}/holland/providers/mysqldump.conf
%files mysqllvm
%defattr(-,root,root,-)
%doc plugins/holland.backup.mysql_lvm/{README,LICENSE}
%{python_sitelib}/holland/backup/mysql*_lvm/
%{python_sitelib}/holland.backup.mysql*_lvm-%{version}-*-nspkg.pth
%{python_sitelib}/holland.backup.mysql*_lvm-%{version}-*.egg-info
%{python_sitelib}/%{name}/lib/lvm/
%{python_sitelib}/holland.lib.lvm-%{version}-*-nspkg.pth
%{python_sitelib}/holland.lib.lvm-%{version}-*.egg-info
%config(noreplace) %{_sysconfdir}/holland/providers/mysql-lvm.conf
%config(noreplace) %{_sysconfdir}/holland/providers/mysqldump-lvm.conf
%if %{with mysqlhotcopy}
%files mysqlhotcopy
%defattr(-,root,root,-)
%doc plugins/holland.backup.mysqlhotcopy/{README,LICENSE}
%{python_sitelib}/holland/backup/mysqlhotcopy.py*
%{python_sitelib}/holland.backup.mysqlhotcopy-%{version}-*-nspkg.pth
%{python_sitelib}/holland.backup.mysqlhotcopy-%{version}-*.egg-info
%config(noreplace) %{_sysconfdir}/holland/providers/mysqlhotcopy.conf
%{_mandir}/man5/holland-mysqlhotcopy.5*
%endif
%if %{with pgdump}
%files pgdump
%defattr(-,root,root,-)
%doc plugins/holland.backup.pgdump/{README,LICENSE}
%{python_sitelib}/holland.backup.pgdump-%{version}-*-nspkg.pth
%{python_sitelib}/holland.backup.pgdump-%{version}-*.egg-info
%{python_sitelib}/holland/backup/pgdump/
%config(noreplace) %{_sysconfdir}/holland/providers/pgdump.conf
%endif
%if %{with sqlite}
%files sqlite
%defattr(-,root,root,-)
%doc plugins/holland.backup.sqlite/{README,LICENSE}
%{python_sitelib}/holland/backup/sqlite.py*
%{python_sitelib}/holland.backup.sqlite-%{version}-*-nspkg.pth
%{python_sitelib}/holland.backup.sqlite-%{version}-*.egg-info
%config(noreplace) %{_sysconfdir}/holland/providers/sqlite.conf
%endif
%if %{with xtrabackup}
%files xtrabackup
%defattr(-,root,root,-)
%doc plugins/holland.backup.xtrabackup/{README,LICENSE}
%{python_sitelib}/holland/backup/xtrabackup/
%{python_sitelib}/holland.backup.xtrabackup-%{version}-*-nspkg.pth
%{python_sitelib}/holland.backup.xtrabackup-%{version}-*.egg-info
%config(noreplace) %{_sysconfdir}/holland/providers/xtrabackup.conf
%endif
%if %{with tar}
%files tar
%defattr(-,root,root,-)
%doc plugins/holland.backup.tar/{README,LICENSE}
%{python_sitelib}/holland/backup/tar.py*
%{python_sitelib}/holland.backup.tar-%{version}-*-nspkg.pth
%{python_sitelib}/holland.backup.tar-%{version}-*.egg-info
%config(noreplace) %{_sysconfdir}/holland/providers/tar.conf
%endif
%changelog
* Tue Mar 01 2016 Andrew Garner <[email protected]> - 1.0.14-1
- Latest sources from upstream
* Mon Feb 08 2016 Andrew Garner <[email protected]> - 1.0.12-2
- Latest sources from upstream
* Mon Jul 29 2013 Andrew Garner <[email protected]> - 1.0.10-1
- Latest sources from upstream
* Wed Jan 09 2013 Andrew Garner <[email protected]> - 1.0.8-1
- Latest sources from upstream
* Wed Jan 12 2011 BJ Dierkes <[email protected]> - 1.0.7-1
- Development version
* Wed Jan 12 2011 BJ Dierkes <[email protected]> - 1.0.6-1
- Latest sources from upstream. Full change log available at:
http://hollandbackup.org/releases/stable/1.0/CHANGES.txt
- ChangeLog became CHANGES.txt
* Tue Dec 14 2010 BJ Dierkes <[email protected]> - 1.0.5-1
- Development version
* Tue Dec 14 2010 BJ Dierkes <[email protected]> - 1.0.4-3
- Remove condition check around setting python_site{lib,arch} as
it is not supported in el4.
- No longer set python_sitearch as we aren't using it
* Tue Nov 02 2010 BJ Dierkes <[email protected]> - 1.0.4-2
- Make the example plugin optional (do not include by default)
* Tue Oct 26 2010 BJ Dierkes <[email protected]> - 1.0.4-1
- Latest sources from upstream.
- No longer install /etc/holland/backupsets/examples, only keep it
in %%doc
- Install config/providers/README to doc README.providers
* Thu Jul 08 2010 BJ Dierkes <[email protected]> - 1.0.2-2
- Updated Source0 URL
- Updated python_sitelib/python_sitearch (per FPG)
- BuildRequires: python2-devel (per FPG)
* Thu Jul 08 2010 Andrew Garner <[email protected]> - 1.0.2-1
- Source updated to 1.0.2
* Tue Jul 06 2010 BJ Dierkes <[email protected]> - 1.0.0-4
- Source update, 1.0.0 final
- Add ChangeLog back in under %%doc
* Thu Jul 01 2010 Andrew Garner <[email protected]> - 1.0.0-3.rc3
- Source updated to rc3
* Mon Jun 28 2010 Andrew Garner <[email protected]> - 1.0.0-2.rc2
- Source updated to rc2
* Fri Jun 11 2010 Andrew Garner <[email protected]> - 1.0.0-1.rc1
- Repackaging for release candidate
- Using conditional builds to exclude experimental plugins
* Tue Jun 08 2010 Andrew Garner <[email protected]> - 0.9.9-12
- Revert directory permissions back to standard 0755
* Sun Jun 06 2010 Andrew Garner <[email protected]> - 0.9.9-11
- Updated for changes from LVM cleanup
* Thu Jun 03 2010 Andrew Garner <[email protected]> - 0.9.9-10
- Added xtrabackup plugin
* Thu May 27 2010 BJ Dierkes <[email protected]> - 0.9.9-9
- Move plugins/README to README.plugins and install via %%doc
* Tue May 25 2010 BJ Dierkes <[email protected]> - 0.9.9-8
- Adding holland.lib.lvm under -common subpackage
* Wed May 19 2010 BJ Dierkes <[email protected]> - 0.9.9-7
- BuildRequires: python-sphinx (to build docs)
* Mon May 17 2010 BJ Dierkes <[email protected]> - 0.9.9-6
- Added sqlite plugin
- Loop over plugins rather than explicity build/install each. Removes
currently incomplete plugins first (pgdump)
* Fri May 14 2010 Tim Soderstrom <[email protected]> - 0.9.9-5
- Added random plugin
* Mon May 10 2010 Andrew Garner <[email protected]> - 0.9.9-4
- Added missingok to holland.logrotate
* Sat May 8 2010 Andrew Garner <[email protected]> - 0.9.9-3
- Cleaned up /usr/share/docs/holland-* to only include html user documentation
rather than everything in docs/
- /var/spool/holland and /var/log/holland/ are no longer world-readable
- /etc/holland/backupsets/examples is now a symlink to examples in the
/usr/share/docs/holland-* directory
- The plugins/ACTIVE file is no longer used in order to have more flexibility
in handling each individual plugin
- The setup.py --record mechanism is no longer used
- holland/{lib,commands,backup,restore} are now owned by the main holland
package.
* Wed Apr 14 2010 Andrew Garner <[email protected]> - 0.9.9-2
- Updated rpm for new tree layout
* Tue Apr 13 2010 BJ Dierkes <[email protected]> - 0.9.9-1.rs
- Removed -commvault subpackage
- Removed mysql-lvm config file hack
- Changed URL to http://hollandbackup.org
- No longer package plugins as eggs
- Conditionally BuildRequire: python-nose and run nose tests if _with_tests
* Wed Apr 07 2010 BJ Dierkes <[email protected]> - 0.9.8-2.rs
- Rename holland-lvm to holland-mysqllvm, Obsoletes: holland-lvm
- Manually install mysql-lvm.conf provider config (fixed in 0.9.9)
- Install man files to _mandir
- Make logrotate.d/holland config(noreplace)
* Fri Apr 02 2010 BJ Dierkes <[email protected]> - 0.9.8-1.rs
- Latest stable source from upstream.
* Wed Dec 09 2009 BJ Dierkes <[email protected]> - 0.9.7dev-1.rs
- Latest development trunk.
- Adding /etc/logrotate.d/holland logrotate script.
* Wed Dec 09 2009 BJ Dierkes <[email protected]> - 0.9.6-1.rs
- Latest stable sources from upstream.
* Fri Dec 04 2009 BJ Dierkes <[email protected]> - 0.9.5dev-1.rs
- Removing mysqlcmds by default
- Adding lvm subpackage
* Thu Oct 08 2009 BJ Dierkes <[email protected]> - 0.9.4-1.1.rs
- BuildRequires: python-dev
- Rebuilding for Fedora Core
* Tue Sep 15 2009 BJ Dierkes <[email protected]> - 0.9.4-1.rs
- Latest sources.
* Mon Jul 13 2009 BJ Dierkes <[email protected]> - 0.9.3-1.rs
- Latest sources.
* Mon Jul 06 2009 BJ Dierkes <[email protected]> - 0.9.2-1.1.rs
- Rebuild
* Thu Jun 11 2009 BJ Dierkes <[email protected]> - 0.9.2-1.rs
- Latest sources from upstream.
- Only require epel for el4 (for now), and use PreReq rather than Requires.
- Require 'mysql' rather than 'mysqlclient'
* Wed Jun 03 2009 BJ Dierkes <[email protected]> - 0.9.1-1.rs
- Latest sources from upstream.
- Requires epel.
* Mon May 18 2009 BJ Dierkes <[email protected]> - 0.9.0-1.rs
- Latest from upstream
- Adding mysqlcmds package
* Tue May 05 2009 BJ Dierkes <[email protected]> - 0.4-1.2.rs
- Rebuild from trunk
* Sun May 03 2009 BJ Dierkes <[email protected]> - 0.4-1.1.rs
- Rebuild from trunk
- Adding commvault addon package.
- Removing Patch2: holland-0.3-config.patch
- Disable backupsets by default
* Sat May 02 2009 BJ Dierkes <[email protected]> - 0.3.1-1.2.rs
- Build as noarch.
* Wed Apr 29 2009 BJ Dierkes <[email protected]> - 0.3.1-1.rs
- Latest sources.
* Tue Apr 28 2009 BJ Dierkes <[email protected]> - 0.3-1.rs
- Latest sources.
- Removed tests for time being
- Added Patch2: holland-0.3-config.patch
- Sub package holland-mysqldump obsoletes holland-mysql = 1.0. Resolves
tracker [#1189].
* Fri Apr 17 2009 BJ Dierkes <[email protected]> - 0.2-2.rs
- Rebuild.
* Wed Mar 11 2009 BJ Dierkes <[email protected]> - 0.2-1.rs
- Latest sources from upstream.
* Fri Feb 20 2009 BJ Dierkes <[email protected]> - 0.1.1.rs
- Updated with subpackages/plugins
* Wed Jan 28 2009 BJ Dierkes <[email protected]> - 0.1-1.rs
- Initial spec build