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

Revision 12000, 80.7 KB checked in by tomop, 8 years ago (diff)

new: elogind-239.3 (and packages that depends on elogind)

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