source: projects/specs/trunk/lib/libb/libblockdev/libblockdev-vl.spec @ 12056

Revision 12056, 81.4 KB checked in by tomop, 5 years ago (diff)

Merge branch 'tomop'

Line 
1%define with_python2 1
2%define with_python3 1
3%define with_gtk_doc 1
4%define with_bcache 0
5%define with_btrfs 1
6%define with_crypto 1
7%define with_dm 1
8%define with_loop 1
9%define with_lvm 1
10%define with_lvm_dbus 0
11%define with_mdraid 1
12%define with_mpath 1
13%define with_swap 1
14%define with_kbd 1
15%define with_part 1
16%define with_fs 1
17%define with_nvdimm 0
18%define with_vdo 1
19%define with_gi 1
20%define with_escrow 0
21%define with_dmraid 1
22
23%if %{with_python2} == 0
24%define python2_copts --without-python2
25%endif
26
27%if %{with_python3} == 0
28%define python3_copts  --without-python3
29%endif
30
31%if %{with_bcache} == 0
32%define bcache_copts --without-bcache
33%endif
34
35%if %{with_lvm_dbus} == 0
36%define lvm_dbus_copts --without-lvm-dbus
37%endif
38
39# vdo is not available on non-x86_64 on older RHEL
40%if (0%{?rhel} && 0%{?rhel} <= 7)
41%ifnarch x86_64
42%define with_vdo 0
43%define vdo_copts --without-vdo
44%endif
45%endif
46
47%if %{with_btrfs} == 0
48%define btrfs_copts --without-btrfs
49%endif
50
51%if %{with_btrfs} != 1
52%define btrfs_copts --without-btrfs
53%endif
54%if %{with_crypto} != 1
55%define crypto_copts --without-crypto
56%else
57%if %{with_escrow} != 1
58%define crypto_copts --without-escrow
59%endif
60%endif
61%if %{with_dm} != 1
62%define dm_copts --without-dm
63%else
64%if %{with_dmraid} != 1
65%define dm_copts --without-dmraid
66%endif
67%endif
68%if %{with_loop} != 1
69%define loop_copts --without-loop
70%endif
71%if %{with_lvm} != 1
72%define lvm_copts --without-lvm
73%endif
74%if %{with_lvm_dbus} != 1
75%define lvm_dbus_copts --without-lvm_dbus
76%endif
77%if %{with_mdraid} != 1
78%define mdraid_copts --without-mdraid
79%endif
80%if %{with_mpath} != 1
81%define mpath_copts --without-mpath
82%endif
83%if %{with_swap} != 1
84%define swap_copts --without-swap
85%endif
86%if %{with_kbd} != 1
87%define kbd_copts --without-kbd
88%endif
89%if %{with_part} != 1
90%define part_copts --without-part
91%endif
92%if %{with_fs} != 1
93%define fs_copts --without-fs
94%endif
95%if %{with_nvdimm} != 1
96%define nvdimm_copts --without-nvdimm
97%endif
98%if %{with_vdo} != 1
99%define vdo_copts --without-vdo
100%endif
101%if %{with_gi} != 1
102%define gi_copts --disable-introspection
103%endif
104
105%define configure_opts %{?python2_copts} %{?python3_copts} %{?bcache_copts} %{?lvm_dbus_copts} %{?btrfs_copts} %{?crypto_copts} %{?dm_copts} %{?loop_copts} %{?lvm_copts} %{?lvm_dbus_copts} %{?mdraid_copts} %{?mpath_copts} %{?swap_copts} %{?kbd_copts} %{?part_copts} %{?fs_copts} %{?nvdimm_copts} %{?vdo_copts} %{?gi_copts}
106
107Name:         libblockdev
108Version:      2.20
109Release:      5%{?_dist_release}
110Summary:      A library for low-level manipulation with block devices
111License:      LGPLv2+
112URL:          https://github.com/storaged-project/libblockdev
113
114Vendor:       Project Vine
115Distribution: Vine Linux
116
117Source0:      https://github.com/storaged-project/libblockdev/releases/download/%{version}-%{release}/%{name}-%{version}.tar.gz
118Patch0:       0001-swap-error-codes.patch
119
120BuildRequires: glib2-devel
121BuildRequires: libudev-devel
122%if %{with_gi}
123BuildRequires: gobject-introspection-devel
124%endif
125%if %{with_python2}
126BuildRequires: python-devel
127%endif
128%if %{with_python3}
129BuildRequires: python3-devel
130%endif
131%if %{with_gtk_doc}
132BuildRequires: gtk-doc
133%endif
134#BuildRequires: glib2-doc
135
136# Needed for the escrow tests in tests/crypto_test.py, but not used to build
137# BuildRequires: volume_key
138# BuildRequires: nss-tools
139
140# Needed for python 2 vs. 3 compatibility in the tests, but not used to build
141# BuildRequires: python2-six
142# BuildRequires: python3-six
143
144%if %{with_dm}
145Requires: %{name}-dm%{?_isa} = %{version}-%{release}
146%endif
147%if %{with_fs}
148Requires: %{name}-fs%{?_isa} = %{version}-%{release}
149%endif
150%if %{with_loop}
151Requires: %{name}-loop%{?_isa} = %{version}-%{release}
152%endif
153%if %{with_lvm}
154Requires: %{name}-lvm%{?_isa} = %{version}-%{release}
155%endif
156%if %{with_mdraid}
157Requires: %{name}-mdraid%{?_isa} = %{version}-%{release}
158%endif
159%if %{with_part}
160Requires: %{name}-part%{?_isa} = %{version}-%{release}
161%endif
162
163%description
164The libblockdev is a C library with GObject introspection support that can be
165used for doing low-level operations with block devices like setting up LVM,
166BTRFS, LUKS or MD RAID. The library uses plugins (LVM, BTRFS,...) and serves as
167a thin wrapper around its plugins' functionality. All the plugins, however, can
168be used as standalone libraries. One of the core principles of libblockdev is
169that it is stateless from the storage configuration's perspective (e.g. it has
170no information about VGs when creating an LV).
171
172%package devel
173Summary:     Development files for libblockdev
174Requires: %{name}%{?_isa} = %{version}-%{release}
175Requires: glib2-devel
176
177%description devel
178This package contains header files and pkg-config files needed for development
179with the libblockdev library.
180
181%if %{with_python2}
182%package -n python-blockdev
183Summary:       Python gobject-introspection bindings for libblockdev
184BuildRequires: python-devel python-rpm-macros
185Requires:      %{name}%{?_isa} = %{version}-%{release}
186Requires:      pygobject
187%{?python_provide:%python_provide python2-blockdev}
188
189%description -n python-blockdev
190This package contains enhancements to the gobject-introspection bindings for
191libblockdev in Python2.
192%endif
193
194%if %{with_python3}
195%package -n python3-blockdev
196Summary:       Python3 gobject-introspection bindings for libblockdev
197BuildRequires: python3-devel python3-rpm-macros
198Requires:      %{name}%{?_isa} = %{version}-%{release}
199Requires:      python3-pygobject
200%{?python_provide:%python_provide python3-blockdev}
201
202%description -n python3-blockdev
203This package contains enhancements to the gobject-introspection bindings for
204libblockdev in Python3.
205%endif
206
207%package utils
208BuildRequires: kmod-devel
209Summary:     A library with utility functions for the libblockdev library
210
211%description utils
212The libblockdev-utils is a library providing utility functions used by the
213libblockdev library and its plugins.
214
215%package utils-devel
216Summary:     Development files for libblockdev-utils
217Requires: %{name}-utils%{?_isa} = %{version}-%{release}
218Requires: glib2-devel
219
220%description utils-devel
221This package contains header files and pkg-config files needed for development
222with the libblockdev-utils library.
223
224
225%if %{with_btrfs}
226%package btrfs
227BuildRequires: libbytesize-devel
228Summary:     The BTRFS plugin for the libblockdev library
229Requires: %{name}-utils%{?_isa} >= 0.11
230Requires: btrfs-progs
231
232%description btrfs
233The libblockdev library plugin (and in the same time a standalone library)
234providing the BTRFS-related functionality.
235
236%package btrfs-devel
237Summary:     Development files for the libblockdev-btrfs plugin/library
238Requires: %{name}-btrfs%{?_isa} = %{version}-%{release}
239Requires: glib2-devel
240Requires: %{name}-utils-devel%{?_isa}
241
242%description btrfs-devel
243This package contains header files and pkg-config files needed for development
244with the libblockdev-btrfs plugin/library.
245%endif
246
247
248%if %{with_crypto}
249%package crypto
250BuildRequires: cryptsetup-devel
251BuildRequires: libblkid-devel
252
253%if %{with_escrow}
254BuildRequires: volume_key-devel >= 0.3.9-7
255BuildRequires: nss-devel
256%endif
257
258Summary:     The crypto plugin for the libblockdev library
259
260%description crypto
261The libblockdev library plugin (and in the same time a standalone library)
262providing the functionality related to encrypted devices (LUKS).
263
264%package crypto-devel
265Summary:     Development files for the libblockdev-crypto plugin/library
266Requires: %{name}-crypto%{?_isa} = %{version}-%{release}
267Requires: glib2-devel
268
269%description crypto-devel
270This package contains header files and pkg-config files needed for development
271with the libblockdev-crypto plugin/library.
272%endif
273
274
275%if %{with_dm}
276%package dm
277BuildRequires: device-mapper-devel
278%if %{with_dmraid}
279BuildRequires: dmraid
280BuildRequires: dmraid-devel
281%endif
282#BuildRequires: systemd-devel
283Summary:     The Device Mapper plugin for the libblockdev library
284Requires: %{name}-utils%{?_isa} >= 0.11
285Requires: device-mapper
286%if %{with_dmraid}
287Requires: dmraid
288%endif
289
290%description dm
291The libblockdev library plugin (and in the same time a standalone library)
292providing the functionality related to Device Mapper.
293
294%package dm-devel
295Summary:     Development files for the libblockdev-dm plugin/library
296Requires: %{name}-dm%{?_isa} = %{version}-%{release}
297Requires: glib2-devel
298Requires: device-mapper-devel
299#Requires: systemd-devel
300%if %{with_dmraid}
301Requires: dmraid-devel
302%endif
303Requires: %{name}-utils-devel%{?_isa}
304
305%description dm-devel
306This package contains header files and pkg-config files needed for development
307with the libblockdev-dm plugin/library.
308%endif
309
310
311%if %{with_fs}
312%package fs
313BuildRequires: parted-devel
314BuildRequires: libblkid-devel
315BuildRequires: libmount-devel
316Summary:     The FS plugin for the libblockdev library
317Requires: %{name}-utils%{?_isa} >= 0.11
318#Requires: device-mapper-multipath
319
320%description fs
321The libblockdev library plugin (and in the same time a standalone library)
322providing the functionality related to operations with file systems.
323
324%package fs-devel
325Summary:     Development files for the libblockdev-fs plugin/library
326Requires: %{name}-fs%{?_isa} = %{version}-%{release}
327Requires: %{name}-utils-devel%{?_isa}
328Requires: glib2-devel
329Requires: xfsprogs
330Requires: dosfstools
331
332%description fs-devel
333This package contains header files and pkg-config files needed for development
334with the libblockdev-fs plugin/library.
335%endif
336
337
338%if %{with_kbd}
339%package kbd
340BuildRequires: libbytesize-devel
341Summary:     The KBD plugin for the libblockdev library
342Requires: %{name}-utils%{?_isa} >= 0.11
343%if %{with_bcache}
344Requires: bcache-tools >= 1.0.8
345%endif
346
347%description kbd
348The libblockdev library plugin (and in the same time a standalone library)
349providing the functionality related to kernel block devices (namely zRAM and
350Bcache).
351
352%package kbd-devel
353Summary:     Development files for the libblockdev-kbd plugin/library
354Requires: %{name}-kbd%{?_isa} = %{version}-%{release}
355Requires: %{name}-utils-devel%{?_isa}
356Requires: glib2-devel
357
358%description kbd-devel
359This package contains header files and pkg-config files needed for development
360with the libblockdev-kbd plugin/library.
361%endif
362
363
364%if %{with_loop}
365%package loop
366Summary:     The loop plugin for the libblockdev library
367Requires: %{name}-utils%{?_isa} >= 0.11
368
369%description loop
370The libblockdev library plugin (and in the same time a standalone library)
371providing the functionality related to loop devices.
372
373%package loop-devel
374Summary:     Development files for the libblockdev-loop plugin/library
375Requires: %{name}-loop%{?_isa} = %{version}-%{release}
376Requires: %{name}-utils-devel%{?_isa}
377Requires: glib2-devel
378
379%description loop-devel
380This package contains header files and pkg-config files needed for development
381with the libblockdev-loop plugin/library.
382%endif
383
384
385%if %{with_lvm}
386%package lvm
387BuildRequires: device-mapper-devel
388Summary:     The LVM plugin for the libblockdev library
389Requires: %{name}-utils%{?_isa} >= 0.11
390Requires: lvm2
391# for thin_metadata_size
392Requires: device-mapper-persistent-data
393
394%description lvm
395The libblockdev library plugin (and in the same time a standalone library)
396providing the LVM-related functionality.
397
398%package lvm-devel
399Summary:     Development files for the libblockdev-lvm plugin/library
400Requires: %{name}-lvm%{?_isa} = %{version}-%{release}
401Requires: %{name}-utils-devel%{?_isa}
402Requires: glib2-devel
403
404%description lvm-devel
405This package contains header files and pkg-config files needed for development
406with the libblockdev-lvm plugin/library.
407%endif
408
409%if %{with_lvm_dbus}
410%package lvm-dbus
411BuildRequires: device-mapper-devel
412Summary:     The LVM plugin for the libblockdev library
413Requires: %{name}-utils%{?_isa} >= 1.4
414Requires: lvm2-dbusd >= 2.02.156
415# for thin_metadata_size
416Requires: device-mapper-persistent-data
417
418%description lvm-dbus
419The libblockdev library plugin (and in the same time a standalone library)
420providing the LVM-related functionality utilizing the LVM DBus API.
421
422%package lvm-dbus-devel
423Summary:     Development files for the libblockdev-lvm-dbus plugin/library
424Requires: %{name}-lvm-dbus%{?_isa} = %{version}-%{release}
425Requires: %{name}-utils-devel%{?_isa} >= 1.4
426Requires: glib2-devel
427
428%description lvm-dbus-devel
429This package contains header files and pkg-config files needed for development
430with the libblockdev-lvm-dbus plugin/library.
431%endif
432
433
434%if %{with_mdraid}
435%package mdraid
436BuildRequires: libbytesize-devel
437Summary:     The MD RAID plugin for the libblockdev library
438Requires: %{name}-utils%{?_isa} >= 0.11
439Requires: mdadm
440
441%description mdraid
442The libblockdev library plugin (and in the same time a standalone library)
443providing the functionality related to MD RAID.
444
445%package mdraid-devel
446Summary:     Development files for the libblockdev-mdraid plugin/library
447Requires: %{name}-mdraid%{?_isa} = %{version}-%{release}
448Requires: %{name}-utils-devel%{?_isa}
449Requires: glib2-devel
450
451%description mdraid-devel
452This package contains header files and pkg-config files needed for development
453with the libblockdev-mdraid plugin/library.
454%endif
455
456
457%if %{with_mpath}
458%package mpath
459BuildRequires: device-mapper-devel
460Summary:     The multipath plugin for the libblockdev library
461Requires: %{name}-utils%{?_isa} >= 0.11
462Requires: device-mapper-multipath
463
464%description mpath
465The libblockdev library plugin (and in the same time a standalone library)
466providing the functionality related to multipath devices.
467
468%package mpath-devel
469Summary:     Development files for the libblockdev-mpath plugin/library
470Requires: %{name}-mpath%{?_isa} = %{version}-%{release}
471Requires: %{name}-utils-devel%{?_isa}
472Requires: glib2-devel
473
474%description mpath-devel
475This package contains header files and pkg-config files needed for development
476with the libblockdev-mpath plugin/library.
477%endif
478
479%if %{with_nvdimm}
480%package nvdimm
481BuildRequires: ndctl-devel
482BuildRequires: libuuid-devel
483Summary:     The NVDIMM plugin for the libblockdev library
484Requires: %{name}-utils%{?_isa} >= 0.11
485Requires: ndctl
486
487%description nvdimm
488The libblockdev library plugin (and in the same time a standalone library)
489providing the functionality related to operations with NVDIMM devices.
490
491%package nvdimm-devel
492Summary:     Development files for the libblockdev-nvdimm plugin/library
493Requires: %{name}-nvdimm%{?_isa} = %{version}-%{release}
494Requires: %{name}-utils-devel%{?_isa}
495Requires: glib2-devel
496
497%description nvdimm-devel
498This package contains header files and pkg-config files needed for development
499with the libblockdev-nvdimm plugin/library.
500%endif
501
502
503%if %{with_part}
504%package part
505BuildRequires: parted-devel
506Summary:     The partitioning plugin for the libblockdev library
507Requires: %{name}-utils%{?_isa} >= 0.11
508#Requires: device-mapper-multipath
509Requires: gdisk
510Requires: util-linux
511
512%description part
513The libblockdev library plugin (and in the same time a standalone library)
514providing the functionality related to partitioning.
515
516%package part-devel
517Summary:     Development files for the libblockdev-part plugin/library
518Requires: %{name}-part%{?_isa} = %{version}-%{release}
519Requires: %{name}-utils-devel%{?_isa}
520Requires: glib2-devel
521
522%description part-devel
523This package contains header files and pkg-config files needed for development
524with the libblockdev-part plugin/library.
525%endif
526
527
528%if %{with_swap}
529%package swap
530Summary:     The swap plugin for the libblockdev library
531Requires: %{name}-utils%{?_isa} >= 0.11
532Requires: util-linux
533
534%description swap
535The libblockdev library plugin (and in the same time a standalone library)
536providing the functionality related to swap devices.
537
538%package swap-devel
539Summary:     Development files for the libblockdev-swap plugin/library
540Requires: %{name}-swap%{?_isa} = %{version}-%{release}
541Requires: %{name}-utils-devel%{?_isa}
542Requires: glib2-devel
543
544%description swap-devel
545This package contains header files and pkg-config files needed for development
546with the libblockdev-swap plugin/library.
547%endif
548
549
550%if %{with_vdo}
551%package vdo
552BuildRequires: libbytesize-devel
553BuildRequires: libyaml-devel
554Summary:     The vdo plugin for the libblockdev library
555Requires: %{name}-utils%{?_isa} >= 0.11
556
557# weak dependencies doesn't work on older RHEL
558%if (0%{?rhel} && 0%{?rhel} <= 7)
559Requires: vdo
560Requires: kmod-kvdo
561%else
562# we want to build the plugin everywhere but the dependencies might not be
563# available so just use weak dependency
564Recommends: vdo
565Recommends: kmod-kvdo
566%endif
567
568%description vdo
569The libblockdev library plugin (and in the same time a standalone library)
570providing the functionality related to VDO devices.
571
572%package vdo-devel
573Summary:     Development files for the libblockdev-vdo plugin/library
574Requires: %{name}-vdo%{?_isa} = %{version}-%{release}
575Requires: %{name}-utils-devel%{?_isa}
576Requires: glib2-devel
577
578%description vdo-devel
579This package contains header files and pkg-config files needed for development
580with the libblockdev-vdo plugin/library.
581%endif
582
583
584%ifarch s390 s390x
585%package s390
586Summary:    The s390 plugin for the libblockdev library
587Requires: s390utils
588
589%description s390
590The libblockdev library plugin (and in the same time a standalone library)
591providing the functionality related to s390 devices.
592
593%package s390-devel
594Summary:     Development files for the libblockdev-s390 plugin/library
595Requires: %{name}-s390%{?_isa} = %{version}-%{release}
596Requires: %{name}-utils-devel%{?_isa}
597Requires: glib2-devel
598
599%description s390-devel
600This package contains header files and pkg-config files needed for development
601with the libblockdev-s390 plugin/library.
602%endif
603
604%package plugins-all
605Summary:     Meta-package that pulls all the libblockdev plugins as dependencies
606Requires: %{name}%{?_isa} = %{version}-%{release}
607
608%if %{with_btrfs}
609Requires: %{name}-btrfs%{?_isa} = %{version}-%{release}
610%endif
611
612%if %{with_crypto}
613Requires: %{name}-crypto%{?_isa} = %{version}-%{release}
614%endif
615
616%if %{with_dm}
617Requires: %{name}-dm%{?_isa} = %{version}-%{release}
618%endif
619
620%if %{with_fs}
621Requires: %{name}-fs%{?_isa} = %{version}-%{release}
622%endif
623
624%if %{with_kbd}
625Requires: %{name}-kbd%{?_isa} = %{version}-%{release}
626%endif
627
628%if %{with_loop}
629Requires: %{name}-loop%{?_isa} = %{version}-%{release}
630%endif
631
632%if %{with_lvm}
633Requires: %{name}-lvm%{?_isa} = %{version}-%{release}
634%endif
635
636%if %{with_mdraid}
637Requires: %{name}-mdraid%{?_isa} = %{version}-%{release}
638%endif
639
640%if %{with_mpath}
641Requires: %{name}-mpath%{?_isa} = %{version}-%{release}
642%endif
643
644%if %{with_nvdimm}
645Requires: %{name}-nvdimm%{?_isa} = %{version}-%{release}
646%endif
647
648%if %{with_part}
649Requires: %{name}-part%{?_isa} = %{version}-%{release}
650%endif
651
652%if %{with_swap}
653Requires: %{name}-swap%{?_isa} = %{version}-%{release}
654%endif
655
656%if %{with_vdo}
657Requires: %{name}-vdo%{?_isa} = %{version}-%{release}
658%endif
659
660%ifarch s390 s390x
661Requires: %{name}-s390%{?_isa} = %{version}-%{release}
662%endif
663
664%description plugins-all
665A meta-package that pulls all the libblockdev plugins as dependencies.
666
667
668%prep
669%setup -q -n %{name}-%{version}
670%patch0 -p1
671
672%build
673autoreconf -ivf
674%configure %{?configure_opts}
675%{__make} %{?_smp_mflags}
676
677%install
678%{make_install}
679find %{buildroot} -type f -name "*.la" | xargs %{__rm}
680
681
682%post -p /sbin/ldconfig
683%postun -p /sbin/ldconfig
684
685%postun utils
686
687%if %{with_btrfs}
688%post btrfs -p /sbin/ldconfig
689%postun btrfs -p /sbin/ldconfig
690%endif
691
692%if %{with_crypto}
693%post crypto -p /sbin/ldconfig
694%postun crypto -p /sbin/ldconfig
695%endif
696
697%if %{with_dm}
698%post dm -p /sbin/ldconfig
699%postun dm -p /sbin/ldconfig
700%endif
701
702%if %{with_fs}
703%post fs -p /sbin/ldconfig
704%postun fs -p /sbin/ldconfig
705%endif
706
707%if %{with_loop}
708%post loop -p /sbin/ldconfig
709%postun loop -p /sbin/ldconfig
710%endif
711
712%if %{with_lvm}
713%post lvm -p /sbin/ldconfig
714%postun lvm -p /sbin/ldconfig
715%endif
716
717%if %{with_lvm_dbus}
718%post lvm-dbus -p /sbin/ldconfig
719%postun lvm-dbus -p /sbin/ldconfig
720%endif
721
722%if %{with_mdraid}
723%post mdraid -p /sbin/ldconfig
724%postun mdraid -p /sbin/ldconfig
725%endif
726
727%if %{with_mpath}
728%postun mpath -p /sbin/ldconfig
729%post mpath -p /sbin/ldconfig
730%endif
731
732%if %{with_nvdimm}
733%post nvdimm -p /sbin/ldconfig
734%postun nvdimm -p /sbin/ldconfig
735%endif
736
737%if %{with_part}
738%post part -p /sbin/ldconfig
739%postun part -p /sbin/ldconfig
740%endif
741
742%if %{with_swap}
743%post swap -p /sbin/ldconfig
744%postun swap -p /sbin/ldconfig
745%endif
746
747%if %{with_vdo}
748%post vdo -p /sbin/ldconfig
749%postun vdo -p /sbin/ldconfig
750%endif
751
752%ifarch s390 s390x
753%post s390
754%postun s390
755%endif
756
757%if %{with_kbd}
758%post kbd -p /sbin/ldconfig
759%postun kbd -p /sbin/ldconfig
760%endif
761
762
763%files
764%{!?_licensedir:%global license %%doc}
765%license LICENSE
766%{_libdir}/libblockdev.so.*
767%if %{with_gi}
768%{_libdir}/girepository*/BlockDev*.typelib
769%endif
770%dir %{_sysconfdir}/libblockdev
771%dir %{_sysconfdir}/libblockdev/conf.d
772%config %{_sysconfdir}/libblockdev/conf.d/00-default.cfg
773
774%files devel
775%doc features.rst specs.rst
776%{_libdir}/libblockdev.so
777%dir %{_includedir}/blockdev
778%{_includedir}/blockdev/blockdev.h
779%{_includedir}/blockdev/plugins.h
780%{_libdir}/pkgconfig/blockdev.pc
781%if %{with_gtk_doc}
782%{_datadir}/gtk-doc/html/libblockdev
783%endif
784%if %{with_gi}
785%{_datadir}/gir*/BlockDev*.gir
786%endif
787
788%if %{with_python2}
789%files -n python-blockdev
790%{python_sitearch}/gi/overrides/*
791%endif
792
793%if %{with_python3}
794%files -n python3-blockdev
795%{python3_sitearch}/gi/overrides/BlockDev*
796#%{python3_sitearch}/gi/overrides/__pycache__/BlockDev*
797%endif
798
799%files utils
800%{_libdir}/libbd_utils.so.*
801%{_libdir}/libbd_part_err.so.*
802
803%files utils-devel
804%{_libdir}/libbd_utils.so
805%{_libdir}/libbd_part_err.so
806%{_libdir}/pkgconfig/blockdev-utils.pc
807%dir %{_includedir}/blockdev
808%{_includedir}/blockdev/utils.h
809%{_includedir}/blockdev/sizes.h
810%{_includedir}/blockdev/exec.h
811%{_includedir}/blockdev/extra_arg.h
812%{_includedir}/blockdev/dev_utils.h
813%{_includedir}/blockdev/module.h
814%{_includedir}/blockdev/dbus.h
815
816
817%if %{with_btrfs}
818%files btrfs
819%{_libdir}/libbd_btrfs.so.*
820
821%files btrfs-devel
822%{_libdir}/libbd_btrfs.so
823%dir %{_includedir}/blockdev
824%{_includedir}/blockdev/btrfs.h
825%endif
826
827
828%if %{with_crypto}
829%files crypto
830%{_libdir}/libbd_crypto.so.*
831
832%files crypto-devel
833%{_libdir}/libbd_crypto.so
834%dir %{_includedir}/blockdev
835%{_includedir}/blockdev/crypto.h
836%endif
837
838
839%if %{with_dm}
840%files dm
841%{_libdir}/libbd_dm.so.*
842
843%files dm-devel
844%{_libdir}/libbd_dm.so
845%dir %{_includedir}/blockdev
846%{_includedir}/blockdev/dm.h
847%endif
848
849
850%if %{with_fs}
851%files fs
852%{_libdir}/libbd_fs.so.*
853
854%files fs-devel
855%{_libdir}/libbd_fs.so
856%dir %{_includedir}/blockdev
857%dir %{_includedir}/blockdev/fs
858%{_includedir}/blockdev/fs.h
859%{_includedir}/blockdev/fs/*.h
860%endif
861
862
863%if %{with_kbd}
864%files kbd
865%{_libdir}/libbd_kbd.so.*
866
867%files kbd-devel
868%{_libdir}/libbd_kbd.so
869%dir %{_includedir}/blockdev
870%{_includedir}/blockdev/kbd.h
871%endif
872
873
874%if %{with_loop}
875%files loop
876%{_libdir}/libbd_loop.so.*
877
878%files loop-devel
879%{_libdir}/libbd_loop.so
880%dir %{_includedir}/blockdev
881%{_includedir}/blockdev/loop.h
882%endif
883
884
885%if %{with_lvm}
886%files lvm
887%{_libdir}/libbd_lvm.so.*
888
889%files lvm-devel
890%{_libdir}/libbd_lvm.so
891%dir %{_includedir}/blockdev
892%{_includedir}/blockdev/lvm.h
893%endif
894
895
896%if %{with_lvm_dbus}
897%files lvm-dbus
898%{_libdir}/libbd_lvm-dbus.so.*
899%config %{_sysconfdir}/libblockdev/conf.d/10-lvm-dbus.cfg
900
901%files lvm-dbus-devel
902%{_libdir}/libbd_lvm-dbus.so
903%dir %{_includedir}/blockdev
904%{_includedir}/blockdev/lvm.h
905%endif
906
907
908%if %{with_mdraid}
909%files mdraid
910%{_libdir}/libbd_mdraid.so.*
911
912%files mdraid-devel
913%{_libdir}/libbd_mdraid.so
914%dir %{_includedir}/blockdev
915%{_includedir}/blockdev/mdraid.h
916%endif
917
918
919%if %{with_mpath}
920%files mpath
921%{_libdir}/libbd_mpath.so.*
922
923%files mpath-devel
924%{_libdir}/libbd_mpath.so
925%dir %{_includedir}/blockdev
926%{_includedir}/blockdev/mpath.h
927%endif
928
929
930%if %{with_nvdimm}
931%files nvdimm
932%{_libdir}/libbd_nvdimm.so.*
933
934%files nvdimm-devel
935%{_libdir}/libbd_nvdimm.so
936%dir %{_includedir}/blockdev
937%{_includedir}/blockdev/nvdimm.h
938%endif
939
940
941%if %{with_part}
942%files part
943%{_libdir}/libbd_part.so.*
944
945%files part-devel
946%{_libdir}/libbd_part.so
947%dir %{_includedir}/blockdev
948%{_includedir}/blockdev/part.h
949%endif
950
951
952%if %{with_swap}
953%files swap
954%{_libdir}/libbd_swap.so.*
955
956%files swap-devel
957%{_libdir}/libbd_swap.so
958%dir %{_includedir}/blockdev
959%{_includedir}/blockdev/swap.h
960%endif
961
962
963%if %{with_vdo}
964%files vdo
965%{_libdir}/libbd_vdo.so.*
966
967%files vdo-devel
968%{_libdir}/libbd_vdo.so
969%dir %{_includedir}/blockdev
970%{_includedir}/blockdev/vdo.h
971%endif
972
973
974%ifarch s390 s390x
975%files s390
976%{_libdir}/libbd_s390.so.*
977
978%files s390-devel
979%{_libdir}/libbd_s390.so
980%dir %{_includedir}/blockdev
981%{_includedir}/blockdev/s390.h
982%endif
983
984%files plugins-all
985
986%changelog
987* Thu Feb 07 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.20-5
988- removed R:device-mapper-multipath from libblockdev-{fs,part}.
989
990* Mon Jan 07 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.20-4
991- disabled lvmdbusd.
992- added R:libblockdev-{dm,fs,loop,lvm,mdraid,part}.
993
994* Mon Dec 17 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.20-3
995- initial build for Vine Linux.
996- disabled bcache, escrow and nvdimm.
997
998* Mon Oct 08 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.20-2
999- Use libblkid to check swap status before swapon (vtrefny)
1000- Add error codes and Python exceptions for swapon fails (vtrefny)
1001
1002* Wed Sep 26 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.20-1
1003- Use unsafe caching for storage for devel/testing VMs (v.podzimek)
1004- Require newer version of cryptsetup for LUKS2 tests (vtrefny)
1005- Skip nvdimm tests on systems without ndctl (vtrefny)
1006- Add Ubuntu 18.04 VM configuration to the vagrant template (vtrefny)
1007- Add some missing test dependencies to the vagrant template (vtrefny)
1008- Fix how/where the bcache tests are skipped (v.podzimek)
1009- Document what the 'misc' directory contains (v.podzimek)
1010- Add a Vagrantfile template (v.podzimek)
1011- Fix the error message when deleting partition fails (vpodzime)
1012- Fix build of plugins by changing linking order (devurandom)
1013- Fix how we check zram stats from /sys/block/zram0/stat (vtrefny)
1014- lvm-dbus: Fix parsing extra arguments for LVM methods calls (vtrefny)
1015- Skip MDTestAddRemove on Debian (vtrefny)
1016- Skip NTFS mount test on Debian testing (vtrefny)
1017- Skip bcache tests on Debian testing (vtrefny)
1018- tests: Try harder to get distribution version (vtrefny)
1019- Mark the function stubs as static (v.podzimek)
1020- Build the dm plugin without dmraid support on newer RHEL (vtrefny)
1021- Fix skipping zram tests on Fedora 27 (vtrefny)
1022- kbd: Check for zram module availability in 'bd_kbd_is_tech_avail' (vtrefny)
1023- Always build the VDO plugin (vtrefny)
1024- Do not require 'dmraid' package if built without dmraid support (vtrefny)
1025- Fix licence header in dbus.c (vtrefny)
1026- Fix spacing in NEWS.rst (vtrefny)
1027
1028* Fri Aug 10 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.19-1
1029- Use python interpreter explicitly when running boilerplate_generator.py (vtrefny)
1030- vdo: Implement bd_vdo_get_stats() (tbzatek)
1031- Add test for is_tech_available with multiple dependencies (vtrefny)
1032- lvm-dbus.c: Check for 'lvmdbus' dependency in 'bd_lvm_is_tech_avail' (vtrefny)
1033- lvm.c: Check for 'lvm' dependency in 'bd_lvm_is_tech_avail' (vtrefny)
1034- Fix licence headers in sources (vtrefny)
1035- Fix three memory leaks in lvm-dbus.c (vtrefny)
1036- Ignore "bad-super-call" pylint warning in BlockDev.py (vtrefny)
1037- Fix running pylint in tests (vtrefny)
1038- Fix vdo configuration options definition in spec file (vtrefny)
1039- Fix calling BlockDev.reinit in swap tests (vtrefny)
1040- Fix how we check zram stats from /sys/block/zram0/mm_stat (vtrefny)
1041- Skip VDO tests also when the 'kvdo' module is not available (vtrefny)
1042- Add version to tests that should be skipped on CentOS/RHEL 7 (vtrefny)
1043- Skip btrfs tests if btrfs module is not available (vtrefny)
1044- Do not build KBD plugin with bcache support on RHEL (vtrefny)
1045- Do not build btrfs plugin on newer RHEL (vtrefny)
1046- fs: Properly close both ends of the pipe (tbzatek)
1047- Make sure library_test works after fixing -Wstrict-prototypes (vtrefny)
1048- Make sure library tests properly clean after themselves (vtrefny)
1049- pkg-config: add -L${libdir} and -I${includedir} (max.kellermann)
1050- plugins/kbd: make wait_for_file() static (max.kellermann)
1051- plugins/lvm{,-dbus}: get_lv_type_from_flags() returns const string (max.kellermann)
1052- plugins/dm: add explicit cast to work around -Wdiscarded-qualifiers (max.kellermann)
1053- plugins/crypto: work around -Wdiscarded-qualifiers (max.kellermann)
1054- plugins/check_deps: make all strings and `UtilDep` instances `const` (max.kellermann)
1055- exec: make `msg` parameters const (max.kellermann)
1056- fix -Wstrict-prototypes (max.kellermann)
1057- module.c: Accept kernel modules if they are built-in (marco.guerri.dev)
1058- BlockDev.py Convert dictionary keys to set before using them (vtrefny)
1059- Skip 'test_cache_pool_create_remove' on CentOS 7 (vtrefny)
1060- Re-order libbd_crypto_la_LIBADD to fix libtool issue (tom)
1061- acinclude.m4: Use AS_EXIT to fail in LIBBLOCKDEV_FAILURES (vtrefny)
1062- configure.ac: Fix missing parenthesis in blkid version check (vtrefny)
1063- Allow specifying extra options for PBKDF when creating LUKS2 (vtrefny)
1064- Reintroduce python2 support for Fedora 29 (vtrefny)
1065- Use versioned command for Python 2 (vtrefny)
1066- Fix few wrong names in doc strings (vtrefny)
1067- Make sure all our free and copy functions work with NULL (vtrefny)
1068- Use libblkid in bd_crypto_is_luks (vtrefny)
1069- vdo: Properly destroy the yaml parser (tbzatek)
1070- Add a simple test case for bd_crypto_tc_open (vtrefny)
1071- Add Python override for bd_crypto_tc_open_full (vtrefny)
1072- Show simple summary after configure (vtrefny)
1073- Do not build VDO plugin on non-x86_64 architectures (vtrefny)
1074- Sync spec with downstream (vtrefny)
1075
1076* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.18-4
1077- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
1078
1079* Mon Jul 09 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.18-3
1080- Reitroduce python2 support for Fedora 29
1081
1082* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 2.18-2
1083- Rebuilt for Python 3.7
1084
1085* Wed Jun 20 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.18-1
1086- Add VDO to features.rst (vtrefny)
1087- Remove roadmap.rst (vtrefny)
1088- vdo: Add tests for bd_vdo_grow_physical() (tbzatek)
1089- Do not try to build VDO plugin on Fedora (vtrefny)
1090- Introduce reporting function per thread (kailueke)
1091- vdo: Implement bd_vdo_grow_physical() (tbzatek)
1092- Correct arguments for ext4 repair with progress (kailueke)
1093- Clarify that checking an RW-mounted XFS file system is impossible (v.podzimek)
1094- vdo: Resolve real device file path (tbzatek)
1095- Adjust to new NVDIMM namespace modes (vtrefny)
1096- Use xfs_repair instead of xfs_db in bd_fs_xfs_check() (v.podzimek)
1097- Allow compiling libblockdev without libdmraid (vtrefny)
1098- Only require plugins we really need in LVM dbus tests (vtrefny)
1099- Add tests for VDO plugin (vtrefny)
1100- Add decimal units definition to utils/sizes.h (vtrefny)
1101- Add basic VDO plugin functionality (vtrefny)
1102- Add the VDO plugin (vtrefny)
1103- Always check for error when (un)mounting (vtrefny)
1104- Fix off-by-one error when counting TCRYPT keyfiles (segfault)
1105- Add 'bd_dm_is_tech_avail' to header file (vtrefny)
1106- Fix release number in NEWS.rst (vtrefny)
1107- Update specs.rst and features.rst (vtrefny)
1108
1109* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 2.17-2
1110- Rebuilt for Python 3.7
1111
1112* Tue Apr 24 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.17-1
1113- Redirect cryptsetup log to libblockdev log (vtrefny)
1114- Add a generic logging function for libblockdev (vtrefny)
1115- Add functions to resize LUKS 2 (vtrefny)
1116- Add function to get information about LUKS 2 integrity devices (vtrefny)
1117- Add function to get information about a LUKS device (vtrefny)
1118- Add a basic test for creating LUKS 2 format (vtrefny)
1119- Use libblockdev function to create LUKS 2 in tests (vtrefny)
1120- Add support for creating LUKS 2 format (vtrefny)
1121- Skip bcache tests on Rawhide (vtrefny)
1122- Allow building libblockdev without Python 2 support (vtrefny)
1123- Allow compiling libblockdev crypto plugin without escrow support (vtrefny)
1124- Require at least libndctl 58.4 (vtrefny)
1125- New function for luks metadata size (japokorn)
1126- Add functions to backup and restore LUKS header (vtrefny)
1127- Add function for killing keyslot on a LUKS device (vtrefny)
1128- Add functions to suspend and resume a LUKS device (vtrefny)
1129- Use '=' instead of '==' to compare using 'test' (v.podzimek)
1130- lvm-dbus: Check returned job object for error (vtrefny)
1131- Get sector size for non-block NVDIMM namespaces too (vtrefny)
1132- Fix memory leaks discovered by clang (vtrefny)
1133- Add new functions to docs/libblockdev-sections.txt (segfault)
1134- Make a link point to the relevant section (segfault)
1135- Don't use VeraCrypt PIM if compiled against libcryptsetup < 2.0 (segfault)
1136- Make keyfiles parameter to bd_crypto_tc_open_full zero terminated (segfault)
1137- Add function bd_crypto_device_seems_encrypted (segfault)
1138- Support VeraCrypt PIM (segfault)
1139- Support TCRYPT system volumes (segfault)
1140- Support TCRYPT hidden containers (segfault)
1141- Support TCRYPT keyfiles (segfault)
1142- Support unlocking VeraCrypt volumes (segfault)
1143- Enforce ZERO_INIT gcc backwards compatibility (bjornpagen)
1144- Add function for getting NVDIMM namespace name from devname or path (vtrefny)
1145- Add --without-xyz to DISTCHECK_CONFIGURE_FLAGS for disabled plugins (vtrefny)
1146- Add tests for the NVDIMM plugin (vtrefny)
1147- Add the NVDIMM plugin (vtrefny)
1148- Fix build with clang (bjornpagen)
1149- s390: don't hardcode paths, search PATH (flokli)
1150- Fix build against musl libc (bjornpagen)
1151- Fix python2-gobject-base dependency on Fedora 26 and older (vtrefny)
1152- Sync the spec file with downstream (vtrefny)
1153
1154* Wed Apr 11 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.16-3
1155- Add the NVDIMM plugin (vtrefny)
1156- Add tests for the NVDIMM plugin (vtrefny)
1157- Add --without-xyz to DISTCHECK_CONFIGURE_FLAGS for disabled plugins (vtrefny)
1158- Add function for getting NVDIMM namespace name from devname or path (vtrefny)
1159
1160* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.16-2
1161- Escape macros in %%changelog
1162
1163* Thu Feb 08 2018 Vojtech Trefny <vtrefny@redhat.com> - 2.16-1
1164- Add tests for progress report (jtulak)
1165- Add e2fsck progress (jtulak)
1166- Add progress reporting infrastructure for Ext fsck (jtulak)
1167- Add a function to test if prog. reporting was initialized (jtulak)
1168- Add support for LUKS 2 opening and key management (vtrefny)
1169- Fix few more links for project and documentation website (vtrefny)
1170- Sync the spec file with downstream (vpodzime)
1171- Check if 'journalctl' is available before trying to use it in tests (vtrefny)
1172- Update 'Testing libblockdev' section in documentation (vtrefny)
1173- Fix link to online documentation (vtrefny)
1174- Fix how the new kernel module functions are added to docs (vpodzime)
1175
1176* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.15-4
1177- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
1178
1179* Wed Feb 07 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.15-3
1180- Update Python 2 dependency declarations to new packaging standards
1181  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
1182
1183* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.15-2
1184- Switch to %%ldconfig_scriptlets
1185
1186* Fri Dec 01 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.15-1
1187- Do not use the 'btrfs' plugin in overrides tests (vpodzime)
1188- Do not use the btrfs plugin in library tests (vpodzime)
1189- Check for btrfs module availability in btrfs module (vtrefny)
1190- Move kernel modules (un)loading and checking into utils (vtrefny)
1191- Free locale struct in kbd plugin (vtrefny)
1192- Add test for setting partition flags on GPT (vtrefny)
1193- Use only sgdisk to set flags on GPT (vtrefny)
1194- Move the fs.h file to its original place (vpodzime)
1195- Add a HACKING.rst file (vpodzime)
1196- Mark bcache tests as unstable (vpodzime)
1197- Fix memory leaks in bd_fs_vfat_get_info() (vpodzime)
1198- Revert the behaviour of bd_fs_check_deps() (vpodzime)
1199- Split the bd_fs_is_tech_avail() implementation (vpodzime)
1200- Split the FS plugin source into multiple files (vpodzime)
1201- Fix bd_s390_dasd_format (vponcova)
1202- Mark unstable tests as such (vpodzime)
1203- bd_s390_dasd_is_ldl should be true only for LDL DADSs (vponcova)
1204- Do not lie about tag creation (vpodzime)
1205
1206* Wed Nov 08 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.14-2
1207- Rebuild for cryptsetup-2.0.0
1208
1209* Tue Oct 31 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.14-1
1210- Support the legacy boot GPT flag (intrigeri)
1211- Respect the version in the blockdev.pc file (vpodzime)
1212- Add pkgconfig definitions for the utils library (vpodzime)
1213- fs.c: Fix potential NULL pointer dereference (vtrefny)
1214- dm.c: Fix uninitialized values in various dm plugin functions (vtrefny)
1215- dm.c: Check return values of dm_task_set_name/run/get_info functions (vtrefny)
1216- fs.c: Fix multiple "forward NULL" warnings in 'bd_fs_ntfs_get_info' (vtrefny)
1217- lvm-dbus.c: Fix multiple "use after free" coverity warnings (vtrefny)
1218- Fix duplicate 'const' in generated functions (vtrefny)
1219- Add some test cases for NTFS (kailueke)
1220- Add function wrappers for NTFS tools (kailueke)
1221- exec.c: Fix error message in 'bd_utils_exec_and_report_progress' (vtrefny)
1222- crypto.c: Fix waiting for enough entropy (vtrefny)
1223- Ignore some coverity false positive errors (vtrefny)
1224- exec.c: Ignore errors from 'g_io_channel_shutdown' (vtrefny)
1225- part.c: Check if we've found a place to put new logical partitions (vtrefny)
1226- kbd.c: Fix potential string overflow in 'bd_kbd_bcache_create' (vtrefny)
1227- exec.c: Fix resource leaks in 'bd_utils_exec_and_report_progress' (vtrefny)
1228- fs.c: Fix "forward null" in 'do_mount' and 'bd_fs_xfs_get_info' (vtrefny)
1229- part.c: Fix possible NULL pointer dereference (vtrefny)
1230- crypto.c: Use right key buffer in 'bd_crypto_luks_add_key' (vtrefny)
1231- exec.c: Fix "use after free" in 'bd_utils_check_util_version' (vtrefny)
1232- kbd.c: Fix double free in 'bd_kbd_zram_get_stats' (vtrefny)
1233- part.c: Check if file discriptor is >= 0 before closing it (vtrefny)
1234- mdraid.c: Fix resource leaks (vtrefny)
1235- lvm.c: Fix "use after free" in 'bd_lvm_get_thpool_meta_size' (vtrefny)
1236- fs.c: Fix for loop condition in 'bd_fs_get_fstype' (vtrefny)
1237- fs.c: Check sscanf return value in 'bd_fs_vfat_get_info' (vtrefny)
1238- fs.c: Fix resource leaks in 'bd_fs_get_fstype' (vtrefny)
1239- blockdev.c.in: Fix unused variables (vtrefny)
1240- Use libbytesize to parse bcache block size (vtrefny)
1241- Use system values in KbdTestBcacheStatusTest (vtrefny)
1242- Fix BSSize memory leaks in btrfs and mdraid plugins (vtrefny)
1243- Skip btrfs subvolume tests with btrfs-progs 4.13.2 (vtrefny)
1244- Added function to get DM device subsystem (japokorn)
1245- Sync spec with downstream (vpodzime)
1246
1247* Fri Sep 29 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.13-1
1248- Fix the rpmlog and shortlog targets (vpodzime)
1249- Add a function for enabling/disabling plugins' init checks (vpodzime)
1250- Assign functions to tech-mode categories (vpodzime)
1251- Add missing items to particular sections in the documentation (vpodzime)
1252- Add a basic test for the runtime dependency checking (vpodzime)
1253- Simplify what WITH_BD_BCACHE changes in the KBD plugin (vpodzime)
1254- Add functions for querying available technologies (vpodzime)
1255- Dynamically check for the required utilities (vpodzime)
1256- Use shorter prefix for tempfiles (vtrefny)
1257- Try harder when waiting for lio device to show up (vtrefny)
1258- Better handle old and new zram sysfs api in tests (vtrefny)
1259- Skip btrfs tests on CentOS 7 aarch64 (vtrefny)
1260- Add new function for setting swap label (vtrefny)
1261- Use only one git tag for new releases (vtrefny)
1262- Fix source URL in spec file (vtrefny)
1263- Add NEWS.rst file (vtrefny)
1264- Do not include s390utils/vtoc.h in s390 plugin (vtrefny)
1265- Use "AC_CANONICAL_BUILD" to check architecture instead of "uname" (vtrefny)
1266- Bypass error proxy in s390 test (vtrefny)
1267- Fix zFCP LUN max length (vtrefny)
1268- Do not run g_clear_error after setting it (vtrefny)
1269- Allow compiling libblockdev without s390 plugin (vtrefny)
1270- Add a function for getting plugin name (vpodzime)
1271
1272* Thu Sep 28 2017 Troy Dawson <tdawson@redhat.com> - 2.12-3
1273- Cleanup spec file conditionals correctly
1274
1275* Wed Sep 27 2017 Troy Dawson <tdawson@redhat.com> - 2.12-2
1276- Cleanup spec file conditionals
1277
1278* Wed Aug 30 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.12-1
1279- Own directories /etc/libblockdev and /etc/libblockdev/conf.d (vtrefny)
1280- Wait for resized partition (kailueke)
1281- Make sure the device is opened for libparted (vpodzime)
1282- Fix label check in swap_test (vtrefny)
1283- Use "run_tests" script for running tests from Makefile (vtrefny)
1284- Add a script for running tests (vtrefny)
1285- Tests: Move library initialization to setUpClass method (vtrefny)
1286- Stop skipping FAT resize tests on rawhide (vtrefny)
1287- Close filesystem before closing the partition during FAT resize (vtrefny)
1288- Use mountpoint for "xfs_info" calls (vtrefny)
1289- Use libmount cache when parsing /proc/mounts (vtrefny)
1290- Add some space for the CI status (vpodzime)
1291- Confirm the force when creating PVs in FS tests (vpodzime)
1292- Skip vgremove tests on 32bit Debian (vtrefny)
1293- Fix names of backing files in tests (vtrefny)
1294-  Fix checking for available locales (vtrefny)
1295- Skip dependency checking in mpath tests on Debian (vtrefny)
1296- Skip zRAM tests on Debian (vtrefny)
1297- Skip the test for device escrow on Debian too (vtrefny)
1298- Skip free region tests on Debian too (vtrefny)
1299- Fix redirecting command output to /dev/null in tests (vtrefny)
1300- Try harder to unmount devices in test cleanup (vtrefny)
1301- Require only plugins that are needed for given test (vtrefny)
1302- Try to get distribution info from "PrettyName" if "CPEName" isn't available (vtrefny)
1303- Use -ff when creating PVs in FS tests (vpodzime)
1304- Sync spec with downstream (vpodzime)
1305
1306* Mon Jul 31 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.11-1
1307- Make the KbdZRAMDevicesTestCase inherit from KbdZRAMTestCase (vpodzime)
1308- Allow non-source directory builds (kailueke)
1309- Add a way to disable runtime dependency checks (vpodzime)
1310- Link to GObject even if no plugin is activated (kailueke)
1311- Skip zram tests on Rawhide (vpodzime)
1312- Keep most utilities available for tests (vpodzime)
1313- Use new libmount function to get (un)mount error message (vtrefny)
1314- Update the documentation URL (vpodzime)
1315
1316* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-2
1317- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1318
1319* Wed Jul 05 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.10-1
1320- Only enable partition size tolerance with alignment (vpodzime)
1321- Limit the requested partition size to maximum possible (vpodzime)
1322- Do not verify vfat FS' size after generic resize (vpodzime)
1323- Specify tolerance for partition size (kailueke)
1324- Only use the exact constraint if not using any other (vpodzime)
1325- Check resulting FS size in tests for generic FS resize (vpodzime)
1326- Query setting FS label support and generic relabeling (kailueke)
1327- Do not strictly require all FS utilities (vpodzime)
1328- Compile everything with the C99 standard (vpodzime)
1329- Add partition resize function (kailueke)
1330- Generic Check and Repair Functions (kailueke)
1331- Query functions for FS resize and repair support (kailueke)
1332- Update the project/source URL in the spec file (vpodzime)
1333- Add functions for opening/closing TrueCrypt/VeraCrypt volumes (vpodzime)
1334- Adapt to a change in behaviour in new libmount (vpodzime)
1335- Try RO mount also if we get EACCES (vpodzime)
1336- Size in bytes for xfs_resize_device (kailueke)
1337- src/plugins/Makefile.am: Remove hard coded include path in /usr prefix (tristan.vanberkom)
1338- Fixed include for libvolume_key.h (tristan.vanberkom)
1339- Ignore parted warnings if possible (squimrel)
1340- bcache tests: Remove FEELINGLUCKY checks (tasleson)
1341- kbd.c: Code review corrections (tasleson)
1342- kbd.c: Make bd_kbd_bcache_create work without abort (tasleson)
1343
1344* Tue Jun 13 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.9-1
1345- Fix hardcoded reference to gcc (timo.gurr)
1346- Catch and ignore partial failures in LVM tests' cleanups (vpodzime)
1347- Fix hardcoded reference to pkg-config (timo.gurr)
1348- Make GObject introspection optional (vpodzime)
1349- Do not link libraries required by plugins to the GI files (vpodzime)
1350- Make sure the whole build status image is shown (vpodzime)
1351- Show CI status in README (at the GH repo's front page) (vpodzime)
1352- Always require the libudev pkg (tgurr)
1353- Make sure we give kernel time to fully setup zram device(s) (vpodzime)
1354- fs_test.py: Close FDs when calling utilities (tasleson)
1355- crypto.c: Correct segmentation fault (tasleson)
1356
1357* Tue Jun 06 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.8-1
1358- Temporarily skip vfat generic resize test on rawhide (vtrefny)
1359- Use "safeprobe" in "bd_fs_wipe" (vtrefny)
1360- Add a generic filesystem resize function (vtrefny)
1361- Add a function to get mountpoint for a device (vtrefny)
1362- Add a function to get filesystem type for a device (vtrefny)
1363- Only include the LVM DBus config when shipping LVM DBus (vpodzime)
1364- Skip the LVM DBus vgreduce tests on Rawhide (vpodzime)
1365- Do not build the lvm-dbus plugin on RHEL/CentOS (vpodzime)
1366- Give zRAM more time to settle before trying to remove a device (vpodzime)
1367- Put zram tests adding/removing devices into a separate class (vpodzime)
1368- Skip LVM cache and RAID tests on Rawhide (vpodzime)
1369- Fix the skip_on decorator factory for tests (vpodzime)
1370- Use 'blkid -p' instead of lsblk to get device's FS type (vpodzime)
1371- Improve the lvm_set_global_config test (vpodzime)
1372- Pass '-y' to pvresize (vpodzime)
1373- Create a copy of os.environ for a child process (vpodzime)
1374- Revert "Use the "C.UTF-8" locale instead of just "C"" (vpodzime)
1375- Fix how we create vfat FS in tests (vpodzime)
1376- Skip the test if requiring unavailable locales (vpodzime)
1377- Use the "C.UTF-8" locale instead of just "C" (vpodzime)
1378- Add functions for working with ext2 and ext3 filesystems (vtrefny)
1379- Link to gobject when lvm or btrfs is enabled (andreas)
1380- Link to libm where needed (andreas)
1381- Add a function for cleaning a device (vtrefny)
1382- Add few code exaples to documentation (vtrefny)
1383- Use a special exception for no fs signature when doing wipe (vpodzime)
1384- One more incompatible os.symlink() call (vpodzime)
1385- Do not use pass-by-name in the os.symlink() call (vpodzime)
1386- Ignore previous errors when falling back to using ioctl() (vpodzime)
1387- Use ioctl() call to teardown loop devices (vpodzime)
1388- Resolve the device to remove for mdadm (vpodzime)
1389- Add a function for getting device symlinks (vpodzime)
1390- Use the new resolve_device() function where appropriate (vpodzime)
1391- Add the resolve_device() function to the utils library (vpodzime)
1392- First try to read the 'autoclear' flag from /sys/ (vpodzime)
1393
1394* Wed Apr 26 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.7-1
1395- Skip btrfs min size tests on Fedora 25 (vtrefny)
1396- Make sure the loop device doesn't disappear during tests (vpodzime)
1397- Close the loop device when autoclear is (un)set (vpodzime)
1398- Do not enforce Python 3 for running tests in CI (vpodzime)
1399- Revert "Use different BTRFS_MIN_MEMBER_SIZE on aarch64" (vtrefny)
1400- Use both 'old' and 'new' sysfs files to read zRAM stats (vtrefny)
1401- Check if libparted-fs-resize pkgconfig is available (vpodzime)
1402- Do not try to get name for inactive partitions (vtrefny)
1403- Skip tests for getting free regions on CentOS/RHEL (vpodzime)
1404- Free the container holding the specs of free regions (vpodzime)
1405- Open loop devices as O_RDONLY when getting flags (vpodzime)
1406- Resolve maximum partition size when we know its start (vpodzime)
1407- Use --id instead of --part-type when setting partition id (vpodzime)
1408- Fix mdadm command for removing failed device from an array (vtrefny)
1409- Skip bcache tests on CentOS/RHEL 7 (vpodzime)
1410- Use six.assertRaisesRegex in the FS tests (vpodzime)
1411- Use mkdtemp() instead of TemporaryDirectory() (vpodzime)
1412- Fix installation without specifying --exec-prefix (vpodzime)
1413- Add options to force mkfs.ext4/vfat to create a FS on the whole device (vpodzime)
1414- Skip the test for device escrow on CentOS/RHEL (vpodzime)
1415- Define DEVNULL on our own if not in subprocess (vpodzime)
1416- Remove the patches from the spec file (vpodzime)
1417- Sync the spec file with downstream (vpodzime)
1418- Stop skipping zRAM stats tests (vtrefny)
1419- Add more tests for zRAM stats (vtrefny)
1420- Fix reading zRAM properties from sysfs (vtrefny)
1421
1422* Wed Apr 12 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.6-3
1423- Do not try to parse 'raid_spec' for 'bd_md_activate' (vtrefny)
1424  Resolves: rhbz#1439111
1425
1426* Tue Apr 11 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.6-2
1427- Make sure the returned thpool MD size is valid (vpodzime)
1428
1429* Wed Mar 15 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.6-1
1430- Move the  part_err library before part and fs (vtrefny)
1431- Fix BuildRequires for crypto and dm packages (vtrefny)
1432- Fix mounting read-only devices (vtrefny)
1433- Fix the bd_s390_dasd_is_ldl function. (vponcova)
1434- Add the bd_s390_dasd_is_fba function to check if DASD is FBA (vponcova)
1435- Disable MD RAID tests on 32bit systems (vpodzime)
1436- Fix error message when mounting with a wrong fs type (vtrefny)
1437- Only create RPMs for requested/configured  plugins (vpodzime)
1438- Only check dependencies of plugins to be built (vpodzime)
1439- Only build and distribute plugins if configured so (vpodzime)
1440- Fix format-security and unused-result compiler warnings (vtrefny)
1441- Add an AC macro for modular builds (vpodzime)
1442- Add functions for mounting and unmounting filesystems (vtrefny)
1443
1444* Mon Mar 06 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.5-1
1445- Do not try to get GVariant after not adding anything to its builder (vpodzime)
1446- Replace NULL with "" when building ExtraArg (vpodzime)
1447- Replace NULL with "" when adding it as a 's' GVariant (vpodzime)
1448- Make sure we don't try to add NULL as GVariant to DBus params (vpodzime)
1449- Add function for getting recommended thpool metadata size (vpodzime)
1450- Make udev settle after we create a LIO device (vpodzime)
1451- Always use '--yes' for lvremove (vpodzime)
1452
1453* Tue Feb 21 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.4-1
1454- Update specs.rst to use present-tense and current API (agrover)
1455- Add functions using BLOBs as LUKS passphrases (vpodzime)
1456- Make sure the _error_quark() functions are in the library (vtrefny)
1457- Return a special error when trying to wipe empty device (vtrefny)
1458- Adapt tests to use LIO devices instead of loop devices (vpodzime)
1459- Add functions for creating and deleting LIO devices (vpodzime)
1460- MDRAID: Allow path as input for functions that work with sysfs (vtrefny)
1461
1462* Wed Feb 15 2017 Vratislav Podzimek <vtrefny@redhat.com> - 2.3-3
1463- Rebuild with changelog fixed up
1464
1465* Tue Feb 14 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.3-1
1466- Allow specifying raid 'name' in multiple way when calling md functions (vtrefny)
1467- Allow using both path and raid name in bd_md_set_bitmap_location (vtrefny)
1468- Fix potential memory issues in s390 sanitizate functions (vpodzime)
1469- Try multiple times when probing device for wiping (vpodzime)
1470- Check for libvolume_key.h and dmraid.h in configure.ac (vpodzime)
1471- Define our own macro for testing required header files (vpodzime)
1472- Include blockdev/utils.h in mdraid.h (vtrefny)
1473- Fix misspelling (agrover)
1474- Skip the bcache tests even on x86_64 (vpodzime)
1475- Take a break between bcache creation tests (vpodzime)
1476- Make sure ./configure fails if there are some soft failures (vpodzime)
1477- Improve the error message on missing GI support (vpodzime)
1478- Only require bcache-tools if supporting bcache (vpodzime)
1479- Skip bcache tests on non-x86_64 architectures (vpodzime)
1480- Try harder to register a new bcache device (vpodzime)
1481- Reimplement swapon/swapoff functions by using syscalls (vpodzime)
1482- Make sure bcache functions are correctly provided or not (vpodzime)
1483- Changelog fixup (vpodzime)
1484
1485* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2-3
1486- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
1487
1488* Wed Jan 11 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.2-2
1489- Rebuild with changelog fixed up
1490
1491* Wed Jan 11 2017 Vratislav Podzimek <vpodzime@redhat.com> - 2.2-1
1492- Use the .in file as source when bumping version (vpodzime)
1493- Run pylint based on the python version and make it optional (vpodzime)
1494- Disable python3 and bcache on RHEL (vpodzime)
1495- Make bcache support optional (vpodzime)
1496- Teach boileplate_generator.py to skip things based on patterns (vpodzime)
1497- Require lower versions of some utilities (vpodzime)
1498- Do not require python3 for the boilerplate generation script (vpodzime)
1499- Use a proper initialization value for 'GPollFD fds[2]' (vpodzime)
1500- Deal with older parted and libblkid (vpodzime)
1501- Make python3 and gtk-doc optional (vpodzime)
1502- Bump the version of the utils library (vpodzime)
1503- Fix docstring for 'bd_md_node_from_name' (vtrefny)
1504- Add tests for added mdraid methods (vtrefny)
1505- Skip 'MDTestNominateDenominateActive' unless feeling lucky (vtrefny)
1506- MDRaid tests: change 'wait_for_resync' to wait for given action (vtrefny)
1507- Add functionality need by storaged to mdraid plugin (vtrefny)
1508- Move 'echo_str_to_file' method to utils (vtrefny)
1509- Add a function to setup a loop device from a file descriptor (vpodzime)
1510- Add functions to get/set the autoclear flag on a loop device (vpodzime)
1511- Fix checking /proc/mdstat for resync action (vtrefny)
1512- Adapt the test config files to version 2.x (vpodzime)
1513
1514* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.1-3
1515- Rebuild for Python 3.6
1516
1517* Tue Nov 15 2016 Vratislav Podzimek <vpodzime@redhat.com> - 2.1-2
1518- Rebuild for a chain-build with storaged (vpodzime)
1519
1520* Thu Nov 10 2016 Vratislav Podzimek <vpodzime@redhat.com> - 2.1-1
1521- Do not require an exclusive lock on the device to commit part stuff (vpodzime)
1522- Prevent failure if there are no btrfs subvolumes (vpodzime)
1523- Fix the test for getting version of a failing utility (vpodzime)
1524- Also run the utils tests (vpodzime)
1525- Bump the version of the pkgconfig module (vpodzime)
1526- Include utils.h in plugins that need it (vpodzime)
1527- Fix dependency check in fs plugin (vtrefny)
1528- Add support for setting part id (part type) on msdos part tables (vtrefny)
1529- Trim the extra info for MD RAID's name (vpodzime)
1530- Add xfsprogs and dosfstools as dependencies of the fs plugin (vpodzime)
1531- Fix md_name_from_node to work with the "/dev/" prefix (vpodzime)
1532- New major upstream release
1533
1534* Wed Nov  9 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-8
1535- Revert "Prevent issues between libparted and udev" (vpodzime)
1536- Revert "Open the device file as RDWR when committing parts" (vpodzime)
1537
1538* Thu Oct 27 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-7
1539- Open the device file as RDWR when committing parts (vpodzime)
1540- Handle mdadm --examine output during migration (adamw)
1541  Resolves: rhbz#1381996
1542
1543* Mon Oct 24 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-6
1544- Prevent issues between libparted and udev (vpodzime)
1545
1546* Mon Oct 10 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-5
1547- Make sure all object paths are passed and extracted as such (vpodzime)
1548  Resolves: rhbz#1374973
1549
1550* Tue Oct  4 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-4
1551- Do not report volume name for FW RAID container device (vpodzime)
1552  Related: rhbz#1379865
1553- Search for just "UUID" in mdadm --examine output (vpodzime)
1554  Related: rhbz#1379865
1555- Use 'mdadm --examine --export' to get MD RAID level (vpodzime)
1556  Related: rhbz#1379865
1557
1558* Mon Oct  3 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-3
1559- Try to search for "RAID Level" in mdadm's output (vpodzime)
1560  Resolves: rhbz#1379865
1561- Fix the number passed to LVM DBus as a job-creation timeout (vpodzime)
1562  Resolves: rhbz#1378970
1563
1564* Mon Aug 29 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-2
1565- Explicitly cast number constants for GVariants (vpodzime)
1566
1567* Wed Jul 27 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.9-1
1568- Add functions for creating thin/cache pools from existing LVs (vpodzime)
1569- Add the new mpath_get_members() function to the docs (vpodzime)
1570
1571* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8-2
1572- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
1573
1574* Wed Jun 29 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.8-1
1575- Add a function to get all mpath member devices (vpodzime)
1576- Fix backport issues in the zfcp-related functionality (#1348442) (vpodzime)
1577- Revert "Fix a few const params in the s390 plugin." (vpodzime)
1578- Fix creation of the version-only tags (vpodzime)
1579
1580* Wed Jun 15 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.7-1
1581- Include the LV roles in the LVdata (vpodzime)
1582- Add a few missing items to the documentation (vpodzime)
1583- Document fields of the structures (vpodzime)
1584- Report (meta)data LV name properly for cache pools in lvm-dbus (vpodzime)
1585- Add information about related LVs to LVMLVdata (vpodzime)
1586- Remove unused code for getting supported functions (vpodzime)
1587- Add zFCP functionality to s390 plugin (sbueno+anaconda)
1588- Fix a few const params in the s390 plugin. (sbueno+anaconda)
1589
1590* Wed Jun 01 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.6-1
1591- Ignore merge commits when creating changelog (vpodzime)
1592- Only take the number of the first %%changelog line found (vpodzime)
1593- Add some more detailed description to the part plugin (vpodzime)
1594- Fix a few extra issues with the const types (vpodzime)
1595- Add function for getting best free region (vpodzime)
1596- Add function for getting free regions (vpodzime)
1597- Fix the error message when setting part flag fails (vpodzime)
1598- Add function for setting disk flags (vpodzime)
1599- Add function for getting information about disk(s) (vpodzime)
1600- Do not set nonsense partition paths (vpodzime)
1601- Add function for getting partition by position (vpodzime)
1602- Indicate if there was error from parted or not in set_parted_error() (vpodzime)
1603- Minor fixes for the bd_part_get_part_spec() function (vpodzime)
1604- Add support for extra GPT flags (vpodzime)
1605- Add functionality for partition types (GUIDs) (vpodzime)
1606- Add functionality for partition names (vpodzime)
1607- Do not destroy disk objects we didn't get (vpodzime)
1608- Add a function for setting multiple partition flags at once (vpodzime)
1609- Remove the unused definition USE_PYTHON3 from configure.ac (vpodzime)
1610- Use different BTRFS_MIN_MEMBER_SIZE on aarch64 (vpodzime)
1611- Better release memory from parted objects on failures (vpodzime)
1612- Rework how we do optimal alignment (vpodzime)
1613- Do not try to destroy object we didn't get (vpodzime)
1614- Don't pass sizes in bytes to LVM (#1317373) (vpodzime)
1615- Add the libbytesize-devel build requires (vpodzime)
1616- Search for the LVM DBus service in both active and activatable names (vpodzime)
1617- Adapt to another stupid change in btrfs-progs (vpodzime)
1618- Add the XFS-related functions to the documentation (vpodzime)
1619- Add tests for the XFS-related functions (vpodzime)
1620- Add support for the XFS file system to the FS plugin (vpodzime)
1621- Add chunk_size to BDMDExamineData (vtrefny)
1622- Add the subpackage for the FS plugin (vpodzime)
1623- Add the FS plugin to the docs (vpodzime)
1624- Add tests for the ext4 functionality in the fs plugin (vpodzime)
1625- Add the FS plugin and the ext4 support (vpodzime)
1626- Add a function for running utility reporting error and exit code (vpodzime)
1627- Add the subpackage for the part plugin (vpodzime)
1628- Add a missing BuildRequires for parted-devel (vpodzime)
1629- Tag as both libblockdev-$version and just $version (vpodzime)
1630- Add the 'part' plugin to documentation (vpodzime)
1631- Add tests for the newly added part plugin (vpodzime)
1632- Add the part plugin with storaged-required functionality (vpodzime)
1633
1634* Mon Mar 21 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.5-1
1635- Merge pull request #72 from vpodzime/master-faster_tests (vpodzime)
1636- Ignore all .bak files (vpodzime)
1637- Use python3-pylint and skip Python 2 tests (vpodzime)
1638- Try a bit harder when deactivating MD arrays in tests (vpodzime)
1639- Recompile only the LVM plugin in tests (vpodzime)
1640- Merge pull request #65 from vpodzime/master-loc_indep_error (vpodzime)
1641- Merge pull request #70 from vojtechtrefny/master-chunk_size (vpodzime)
1642- Add bd_md_create_with_chunk_size() function (vtrefny)
1643- Merge pull request #68 from vpodzime/master-no_intro_data (vpodzime)
1644- Merge pull request #71 from vpodzime/master-ipython3 (vpodzime)
1645- Run coverage with the right config directories (vpodzime)
1646- Merge pull request #67 from phatina/master (vpodzime)
1647- Merge pull request #69 from vpodzime/master-lvm_dbus_autostart (vpodzime)
1648- Use ipython3 for debugging and testing sessions (vpodzime)
1649- Don't expect to always get introspection data from DBus (vpodzime)
1650- Make invocation of tests configurable (phatina)
1651- Make error messages locale agnostic (vpodzime)
1652
1653* Tue Mar 15 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.4-5
1654- Search for the LVM DBus service in activatable names (vpodzime)
1655- Better check for the LVM DBus API (vpodzime)
1656
1657* Wed Mar  9 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.4-4
1658- Do not try to get object path of NULL in vgreduce (vpodzime)
1659
1660* Tue Mar  1 2016 Peter Robinson <pbrobinson@fedoraproject.org> 1.4-3
1661- Depend on python3-gobject-base not python3-gobject so as to not pull in X components
1662
1663* Thu Feb 25 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.4-2
1664- Add/fix the requirement for the LVM DBus daemon
1665
1666* Thu Feb 25 2016 Vratislav Podzimek <vpodzime@redhat.com> - 1.4-1
1667- Merge pull request #62 from vpodzime/master-clean_up (vpodzime)
1668- Use addCleanup() instead of tearDown() in tests (vpodzime)
1669- Merge pull request #58 from vpodzime/master-lvm_dbus_pr (vpodzime)
1670- Add the VG renaming functionality (vpodzime)
1671- Packaging of the lvm-dbus plugin (vpodzime)
1672- The LVM DBus plugin (vpodzime)
1673- Add more generic functions for logging (vpodzime)
1674- Use MAX(a, b) instead of CLAMP(b, a, b) (vpodzime)
1675- Merge pull request #59 from vpodzime/master-vgrename (vpodzime)
1676- Add a function for renaming VGs (vpodzime)
1677- Merge pull request #57 from clumens/master (vpodzime)
1678- Fix error reporting when running "make test". (clumens)
1679- Merge pull request #54 from vojtechtrefny/master-pvsize (vpodzime)
1680- Do not try to create a PV with 4KiB metadata space (vpodzime)
1681- Add pv_info to BDLVMPVdata (vtrefny)
1682- btrfs now requires at least 128MiB device(s) (vpodzime)
1683- Merge pull request #52 from vpodzime/master (vpodzime)
1684- Round size in thpoolcreate() to KiB (vpodzime)
1685- Sync the %%changelog in spec with downstream (vpodzime)
1686
1687* Wed Nov 25 2015 Vratislav Podzimek <vpodzime@redhat.com> - 1.3-4
1688- Create the cache pool before the to-be-cached LV (vpodzime)
1689
1690* Thu Nov 05 2015 Robert Kuska <rkuska@redhat.com> - 1.3-3
1691- Rebuilt for Python3.5 rebuild
1692
1693* Wed Nov 04 2015 Vratislav Podzimek <vpodzime@redhat.com> - 1.3-2
1694- Fix the annotation of bd_try_init in blockdev.c (vpodzime)
1695
1696* Mon Oct 26 2015 Vratislav Podzimek <vpodzime@redhat.com> - 1.3-1
1697- Add missing python GI requires (vpodzime)
1698- Merge pull request #49 from dashea/libblockdev-python (vpodzime)
1699- Merge pull request #50 from vpodzime/master-fix_striped_lv (vpodzime)
1700- Merge pull request #46 from vpodzime/master-bcache_destroy (vpodzime)
1701- Merge pull request #39 from vpodzime/master-lvm_physical_space (vpodzime)
1702- Add a missing ldconfig that rpmlint found. (dshea)
1703- Move python files to separate packages (#1256758) (dshea)
1704- Fix lvcreate calls for striped LVs (vpodzime)
1705- Merge pull request #48 from vojtechtrefny/master_pvfree (vpodzime)
1706- Add pv_free to BDLVMPVdata (vtrefny)
1707- Merge pull request #47 from atodorov/add_coverage_report (vpodzime)
1708- Produce coverage report in CI (atodorov)
1709- Check bcache device's state before trying to detach the cache in destroy() (vpodzime)
1710- Fix URLs in the spec (vpodzime)
1711- Fix the int-float less-than comparison (vpodzime)
1712- Fix the calculation of physical space taken by an LV (vpodzime)
1713
1714* Wed Sep 23 2015 Vratislav Podzimek <vpodzime@redhat.com> - 1.2-1
1715- Merge pull request #40 from vpodzime/master-config_support (vpodzime)
1716- Add tests for configuration support (vpodzime)
1717- Add a function for getting the loaded soname for a plugin (vpodzime)
1718- Add the default configuration (vpodzime)
1719- Load and respect configuration files when loading plugins (vpodzime)
1720- Add functions for finding and processing configuration files (vpodzime)
1721- Merge pull request #38 from vpodzime/master-md_superblock_size (vpodzime)
1722- Better document how MD RAID superblock size should be calculated (vpodzime)
1723- Merge pull request #36 from phatina/master (vpodzime)
1724- BTRFS: allow an arbitrary label to be set for a btrfs volume (phatina)
1725- Merge pull request #32 from phatina/master (vpodzime)
1726- BTRFS: fix parsing empty partition label (phatina)
1727- Merge pull request #35 from vpodzime/master (vpodzime)
1728- Define env variables for sudo via the env utility (vpodzime)
1729- Merge pull request #34 from dashea/python3-tests (vpodzime)
1730- Use unittest.addCleanup to simplify crypto_test. (dshea)
1731- Run tests with both python2 and python3 in the ci target. (dshea)
1732- Fix python3 issues in the unittests. (dshea)
1733- Do not run all tests in the 'ci' target (vpodzime)
1734- Merge pull request #33 from clumens/master (vpodzime)
1735- Add a new makefile target that does everything needed for jenkins. (clumens)
1736- Synchronize the .spec file with downstream (vpodzime)
1737
1738* Fri Jul 24 2015 Vratislav Podzimek <vpodzime@redhat.com> - 1.1-2
1739- Explicitly specify the type of the cert_data parameter (#1246096) (vpodzime)
1740
1741* Fri Jun 19 2015 Vratislav Podzimek <vpodzime@redhat.com> - 1.1-1
1742- Clean generated boilerplate code on 'make clean' (vpodzime)
1743- Merge pull request #31 from atodorov/use_lang_c (vpodzime)
1744- tests: use LANG=C in test_backup_passphrase() (atodorov)
1745- Merge pull request #30 from atodorov/makefile_updates (vpodzime)
1746- Makefile.am:   - add separate check target   - add coverage targets   - make it possible to test with Python3 (atodorov)
1747- Merge pull request #29 from atodorov/fix_issue_28 (vpodzime)
1748- Merge pull request #27 from atodorov/fix_docs_url (vpodzime)
1749- Merge pull request #26 from atodorov/test_docs (vpodzime)
1750- Change the modified sources back in tearDown() method as well. Closes #28. (atodorov)
1751- update URL to on-line documentation (atodorov)
1752- add test documentation (atodorov)
1753- Merge pull request #22 from dashea/escrow-tests (vpodzime)
1754- Merge pull request #25 from dashea/python-dep (vpodzime)
1755- Filter the python files from automatic rpm requires (dshea)
1756- Added tests for escrow packets and backup passphrases (dshea)
1757- Free leaked contexts from crypto_init (dshea)
1758- Cooperate with volume_key's memory management (dshea)
1759- Fix inheritance in the LVM tests to prevent multiple runs of some tests (vpodzime)
1760- Make the regexp for testing crypto_generate_backup_passphrase() stricter (vpodzime)
1761- Leave room in the backup passphrase for a trailing 0 (dshea)
1762- Add functions to get names of data/metadata internal LVs (vpodzime)
1763- Allow getting info for an internal LV (vpodzime)
1764- Gather information about all LVs (vpodzime)
1765- Round requested size to KBs in lvresize() (#1221247) (vpodzime)
1766- Add overrides for the ensure_init() function (vpodzime)
1767- Change the default value of the 'reload' parameter of try_reinit() (vpodzime)
1768- Merge pull request #21 from vpodzime/master-thpool_size_discard (vpodzime)
1769- Add overrides for the lvm_is_valid_thpool_chunk_size() function (vpodzime)
1770
1771* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-2
1772- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
1773
1774* Thu May 21 2015 Vratislav Podzimek <vpodzime@redhat.com> - 1.0-1
1775- Adapt the release helper targets to autotools (vpodzime)
1776- Fixes of paths in Makefile.am's inspired by build failures on s390 (vpodzime)
1777- Add an s390-specific BuildRequires (vpodzime)
1778- Distribute also the boilerplate_generator.py script (vpodzime)
1779- Fix path to the generated blockdev.pc file (vpodzime)
1780- Adapt tests that compile stuff to autotools (vpodzime)
1781- Merge pull request #18 from vpodzime/master-autotools (vpodzime)
1782- Merge pull request #20 from dashea/gtkdoc-sections (vpodzime)
1783- Use the autotools building system instead of scons (vpodzime)
1784- Add the two new functions to the 'blockdev' docs section (vpodzime)
1785- Fix the line defining the docs file for the s390 section (vpodzime)
1786- Add a missing #include to the kbd.api file (vpodzime)
1787- Prevent s390-specific stuff from being used on other architectures (vpodzime)
1788- Update the documentation of the is_initialized() function (vpodzime)
1789- Merge pull request #19 from vpodzime/master-ensure_init (vpodzime)
1790- Remove private macros from the gtkdoc sections file. (dshea)
1791- Terminate ifdef statements for arch check. (sbueno+anaconda)
1792- Return early from the init functions if setting up logging fails (vpodzime)
1793- Add tests for the new and modified init functions (vpodzime)
1794- Add new try_init() and try_reinit() functions (vpodzime)
1795- Fix for adding number of loaded plugins (vpodzime)
1796- Fix for ensure_init() (vpodzime)
1797- Rename the try_init() function to ensure_init() and improve it (vpodzime)
1798- Check number of loaded plugins and library initialization state (vpodzime)
1799- Make 'reload' default to True instead of False in overrides (vpodzime)
1800- Add the s390 plugin test file. (sbueno+anaconda)
1801- Add the s390 plugin functions. (sbueno+anaconda)
1802- Add the s390 plugin. (sbueno+anaconda)
1803- Fix a typo in the spec file. (sbueno+anaconda)
1804- Require the kmod-devel package for the build process (vpodzime)
1805- Merge pull request #16 from dashea/escrow-encoding (vpodzime)
1806- Merge pull request #13 from vpodzime/master-lvm_cache (vpodzime)
1807- Merge pull request #12 from vpodzime/master-kbd_plugin (vpodzime)
1808- Merge pull request #14 from vpodzime/master-better_is_multipath (vpodzime)
1809- Use g_strdup() instead of g_strdup_printf() to just dup a string (vpodzime)
1810- Fix the spelling of "escrow" (dshea)
1811- Make the crypto plugin string parameters const (dshea)
1812- Set encoding to NULL before writing the escrow packet. (dshea)
1813- Get cache stats directly from the device mapper (vpodzime)
1814- Reimplement the is_mpath_member() function using device mapper (vpodzime)
1815- Add the LVM cache related symbols to the LVM section in the documentation (vpodzime)
1816- Update the list of LVM cache related functions in features.rst (vpodzime)
1817- Add tests for functions related to the LVM cache technology (vpodzime)
1818- Implement the lvm_cache_stats() function (vpodzime)
1819- Implement the lvm_cache_pool_name function (vpodzime)
1820- Implement the lvm_cache_create_cached_lv() function (vpodzime)
1821- Implement lvm_cache_attach/detach() functions (vpodzime)
1822- Implement the lvm_cache_create_pool() function plus two support functions (vpodzime)
1823- Implement the lvm_cache_get_default_md_size() function (vpodzime)
1824- Add the 'type' parameter to the lvm_lvcreate function (vpodzime)
1825- Teach boilerplate_generator to work with enum return types (vpodzime)
1826- Teach boilerplate_generator to work with 'const' return types (vpodzime)
1827- Add subpackages for the KBD plugin and its devel files (vpodzime)
1828- Add provided symbols to the documentation section of the KBD plugin (vpodzime)
1829- Implement the bcache_get_backing/cache_device functions (vpodzime)
1830- Exclude bcache tests from the normal 'test' target (vpodzime)
1831- Add some more and prolong some of the waits in KBD tests (vpodzime)
1832- Zero all newly allocated structures (vpodzime)
1833- Implement the bcache_status function and all it wants (vpodzime)
1834- Fix for the zram stats (vpodzime)
1835- Add bcache_get_mode and bcache_set_mode functions (vpodzime)
1836- Teach boilerplate_generator to work with enum return types (vpodzime)
1837- Teach boilerplate_generator to work with 'const' return types (vpodzime)
1838- Add the zram_get_stats function (vpodzime)
1839- Add the check() function for the KBD plugin (vpodzime)
1840- Add ErrorProxy instance for the KBD plugin (vpodzime)
1841- Add tests for bcache_create/attach/detach/destroy functions (vpodzime)
1842- Add the 'rebuild' Makefile target (vpodzime)
1843- Add bcache_create, bcache_attach, bcache_detach and bcache_destroy functions (vpodzime)
1844- Implement a helper function to echo string into a file (vpodzime)
1845- Add tests for zram_create_devices and zram_destroy_devices functions (vpodzime)
1846- Add the zram_destroy_devices function to the KBD plugin (vpodzime)
1847- Add first function to the KBD plugin: zram_create_devices (vpodzime)
1848- Add the KernelBlockDevices plugin (vpodzime)
1849
1850* Wed May 13 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.13-1
1851- Prevent a leaky test from running in Jenkins (vpodzime)
1852- Try harder when cleaning up after MD RAID tests (vpodzime)
1853- Improve the MD RAID activate/deactivate test (vpodzime)
1854- One more @contextmanager that needs try-finally (vpodzime)
1855- Do not require metadata version to be reported by 'mdadm --examine' (#1217900) (vpodzime)
1856- Make sure we always set things back in context managers (vpodzime)
1857- Make the release date for version 1.0 more realistic (vpodzime)
1858- Merge pull request #11 from vpodzime/master (vpodzime)
1859- Run utilities with LC_ALL=C (vpodzime) (#1219033)
1860- Free GMatchInfo instance even in case of no match (vpodzime)
1861- Resolve /dev/md/ symlinks when checking swap status. (dlehman)
1862
1863* Fri Apr 24 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.12-1
1864- Require minimum version of libblockdev-utils in some plugins (vpodzime)
1865- Report both stdout and stderr if exit code != 0 (vpodzime)
1866
1867* Fri Apr 17 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.11-1
1868- Fix issues with using overriden functions over ErrorProxy (vpodzime)
1869- Update the roadmap.rst and features.rst with new stuff (vpodzime)
1870- Fix two minor issues with docs generation (vpodzime)
1871
1872* Thu Apr 16 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.10-1
1873- Fix return type of the unload_plugins() function (vpodzime)
1874- Close the DL handle when check() or init() fail (vpodzime)
1875- Add one more check to the reload test (vpodzime)
1876- Drop reference to check() and init() functions (vpodzime)
1877- Add more cats to tests (vpodzime)
1878- Make regexp for getting btrfs version more generic (vpodzime)
1879- Merge pull request #8 from vpodzime/master-check_functions (vpodzime)
1880- Fix parameters passed to unoverridden swapon function (vpodzime)
1881- Implement and test swap plugin's check function (vpodzime)
1882- Implement and test MD RAID plugin's check function (vpodzime)
1883- Implement and test mpath plugin's check function (vpodzime)
1884- Try harder to get util's version (vpodzime)
1885- Implement and test loop plugin's check function (vpodzime)
1886- Implement and test DM plugin's check function (vpodzime)
1887- Implement and test BTRFS plugin's check function (vpodzime)
1888- Implement and test LVM plugin's check function (vpodzime)
1889- Init logging before loading plugins (vpodzime)
1890- Add function for utility availability checking (vpodzime)
1891- Fix default value for the fake_utils' path argument (vpodzime)
1892- Add ErrorProxy instance for the utils functions (vpodzime)
1893- Add function for version comparison (vpodzime)
1894- Merge pull request #9 from clumens/master (vpodzime)
1895- Disable pylint checking on the new exception proxy. (clumens)
1896- Fix XRules application and add a test for it (vpodzime)
1897- Raise NotImplementedError when an unavailable function is called (vpodzime)
1898- Merge pull request #4 from vpodzime/master-error_proxy (vpodzime)
1899- Merge branch 'master' into master-error_proxy (vpodzime)
1900- Merge pull request #5 from vpodzime/master-not_implemented_error (vpodzime)
1901- Add a simple test for unloaded/unavailable functions (vpodzime)
1902- Unload the plugins properly when reinit() is called (vpodzime)
1903- Raise error/exception when an unimplemented function is called (#1201475) (vpodzime)
1904- Do an ugly but necessary hack to make local GI overrides work (vpodzime)
1905- Add the __dir__ method to ErrorProxy (vpodzime)
1906- Add a rationale for the ErrorProxy to the overrides' docstring (vpodzime)
1907- Add some basic info about GI overrides to the documentation (vpodzime)
1908- Use pylint to check for errors in python overrides (vpodzime)
1909- Add the first small test for the ErrorProxy (vpodzime)
1910- Put the GI overrides in a special dir so that they are preferred (vpodzime)
1911- Add a cache for attributes already resolved by ErrorProxy (vpodzime)
1912- Implement the ErrorProxy python class and use it (vpodzime)
1913
1914* Tue Apr 07 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.9-1
1915- Merge pull request #7 from vpodzime/master-fw_raid_fixes (vpodzime)
1916- Try a bit harder when trying to determine MD RAID name (#1207317) (vpodzime)
1917- Don't be naïve about mdadm --detail telling us what we want (#1207317) (vpodzime)
1918- Ignore libblockdev tarballs (vpodzime)
1919- Implement a test of btrfs_list_subvolumes on data from bug report (vpodzime)
1920- Implement a context manager for running tests with fake utils (vpodzime)
1921- Do not try to cannonicalize MD UUIDs if we didn't get them (#1207317) (vpodzime)
1922- Fix the table in roadmap.rst (vpodzime)
1923- Enrich the roadmap.rst file and add info about new plans (vpodzime)
1924- Sync spec file with downstream (vpodzime)
1925
1926* Fri Mar 27 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.8-1
1927- Merge pull request #6 from vpodzime/master-sort_btrfs_subvolumes (vpodzime)
1928- Don't be naïve about mdadm providing us data we would like (#1206394) (vpodzime)
1929- Sort BTRFS subvolumes in a way that child never appears before parent (#1201120) (vpodzime)
1930- Let libcryptsetup handle LUKSname->/dev/mapper/LUKSname for us (vpodzime)
1931- Fix the crypto_luks_resize and create a test for it (vpodzime)
1932- Add targets to create the SRPM and RPM files easily (vpodzime)
1933- Don't round up to multiple of PE size bigger than max value of the rtype (vpodzime)
1934- Mark majority of MD RAID tests as slow (vpodzime)
1935- Merge pull request #1 from dashea/file-paths (vpodzime)
1936- Don't report error for no loop device associated with given file (vpodzime)
1937- Skip the detail_data.clean check when running tests in Jenkins (vpodzime)
1938- Make package file paths more specific (dshea)
1939- Implement and use MD RAID-specific wait for tests (vpodzime)
1940- Try to give MD RAID time to sync things before querying them (vpodzime)
1941- Fix the default value of the BDMDDetailData.clean field (vpodzime)
1942- Do cleanup after every single MD RAID tests (vpodzime)
1943- Do cleanup after every single LVM test (vpodzime)
1944- Do cleanup after every single BTRFS test (vpodzime)
1945- Make sure the LUKS device is closed and removed after tests (vpodzime)
1946- Make sure DM maps from tests are removed after tests (vpodzime)
1947- Make sure that loop devices are deactivated after tests (vpodzime)
1948- Make the tearDown method of the mpath test case better visible (vpodzime)
1949- Make sure that the swap is deactivated after tests (vpodzime)
1950- Fix docstrings in tests' utils helper functions (vpodzime)
1951- Improve the logging tests in utils_test.py (vpodzime)
1952- Update the features.rst file (vpodzime)
1953- Update the roadmap (vpodzime)
1954- Don't check if we get a mountpoint for BTRFS operations (vpodzime)
1955
1956* Sun Mar 22 2015 Peter Robinson <pbrobinson@fedoraproject.org> 0.7-2
1957- Ship license as per packaging guidelines
1958- plugins-all should depend on base library too
1959- Add dev docs
1960
1961* Fri Feb 27 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.7-1
1962- Be ready for mdadm --examine to not provide some of the values we want (vpodzime)
1963- Add exit code information to exec logging (vpodzime)
1964- Improve and add tests (vpodzime)
1965- Mark the test_force_plugin and test_reload as slow (vpodzime)
1966- Make sure we get some devices when creating btrfs volume (vpodzime)
1967- Add override for the lvremove function (vpodzime)
1968- Do not create LUKS format with no passphrase and no key file (vpodzime)
1969- Make sure we use the /dev/mapper/... path for luks_status (vpodzime)
1970
1971* Thu Feb 19 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.6-1
1972- Don't report error when non-existing swap's status is queried (vpodzime)
1973- Make libblockdev-plugins-all pull the same version of plugins (vpodzime)
1974- Don't report error when asked for a backing file of an uknown loop (vpodzime)
1975- Fix accidental change in the spec's changelog (vpodzime)
1976
1977* Mon Feb 16 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.5-1
1978- Add tests for what we can easily test from the mpath plugin (vpodzime)
1979- Add link to sources to the documentation (vpodzime)
1980- Add missing symbols into the libblockdev-sections.txt file (vpodzime)
1981- Do not build docs for testing (vpodzime)
1982- Add the bd_try_init function (vpodzime)
1983- Log stdout and stderr output when running processes (vpodzime)
1984- Allow a subset of plugins to be load instead of all (vpodzime)
1985- Make sure devmapper doesn't spam stdout with tons of messages (vpodzime)
1986- Let debug messages go to stderr when running ipython (vpodzime)
1987- Give plugins a way to initialize themselves (vpodzime)
1988- Give plugins a way how to check if they could run properly (vpodzime)
1989- Allow a subset of plugins to be load instead of all [TEST NEEDED] (vpodzime)
1990- Make sure we use the whole /dev/mapper path for cryptsetup (vpodzime)
1991- Fix vg_pv_count parsing when getting info about PV (vpodzime)
1992- Set default values to data structures if real values are not available (vpodzime)
1993- Fix the parameter name specifying pool metadata size (vpodzime)
1994- Activate LUKS as ReadWrite in luks_open (vpodzime)
1995- Make sure we pass key_size to cryptsetup in bytes (vpodzime)
1996- Add the min_entropy parameter to luks_format Python overrides (vpodzime)
1997- Pass size in KiB instead of B to lvcreate (vpodzime)
1998- Add underscore into dataalignment and metadatasize parameter names (vpodzime)
1999- Don't report error if non-mpath device is tested for being mpath member (vpodzime)
2000- Fix name of the invoked utility in mpath_set_friendly_names (vpodzime)
2001
2002* Sat Jan 31 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.4-1
2003- Improve the test for lvm_set_global_config (vpodzime)
2004- Fix some minor issues in the spec file (vpodzime)
2005- Fix issues with the LVM global config str (vpodzime)
2006- Add couple more Python overrides (vpodzime)
2007- Fix the name of the lvm_thlvpoolname() function in the header file (vpodzime)
2008- Use assertEqual instead of assertTrue(a == b) (vpodzime)
2009- Add the min_entropy parameter to luks_format (vpodzime)
2010- Move internal dmraid-related macros into the source file (vpodzime)
2011- Add an override for the md_add function (vpodzime)
2012- Fix parameters in luks_open python overrides (vpodzime)
2013- Prevent init() from being done multiple times and provide a test function (vpodzime)
2014- Add the roadmap.rst document (vpodzime)
2015- Remove an extra parenthesis in one of the docstrings (vpodzime)
2016- Move the mddetail function next to the mdexamine function (vpodzime)
2017- Add some more constants required by blivet (vpodzime)
2018
2019* Wed Jan 21 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.3-1
2020- Require volume_key-devel in a version that fixes build issues (vpodzime)
2021- Fix Python 2 devel package name in BuildRequires (vpodzime)
2022- Generate docs for the library and all plugins (vpodzime)
2023- Make doc comments better for documentation generation (vpodzime)
2024- Fix parameter names in function prototypes (vpodzime)
2025- Add the metadatasize parameter to pvcreate (vpodzime)
2026- Add the dataalignment parameter to lvm_pvcreate (vpodzime)
2027- Export non-internal constants via introspection (vpodzime)
2028- Expand size constants in the GI-scanned files (vpodzime)
2029- Fix usage printing in the boilerplate_generator (vpodzime)
2030- Add the build directory to .gitignore (vpodzime)
2031- Add the md_run function (vpodzime)
2032- Fix some issues in Python overrides (vpodzime)
2033- Add the escrow_device function to the crypto plugin (vpodzime)
2034- Fix version of GI files in the Makefile (vpodzime)
2035- Make the order of release target's dependencies more explicit (vpodzime)
2036
2037* Mon Jan 12 2015 Vratislav Podzimek <vpodzime@redhat.com> - 0.2-1
2038- Fix dependencies of the release target (vpodzime)
2039- Python overrides for the GI-generated bindings (vpodzime)
2040- Pass version info to the code and use it to load plugins (vpodzime)
2041
2042* Wed Dec 10 2014 Vratislav Podzimek <vpodzime@redhat.com> - 0.1-1
2043- Initial release
Note: See TracBrowser for help on using the repository browser.