-
Notifications
You must be signed in to change notification settings - Fork 0
/
cups-filters.spec
1296 lines (959 loc) · 45.1 KB
/
cups-filters.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# we build CUPS also with relro
%global _hardened_build 1
Summary: OpenPrinting CUPS filters and backends
Name: cups-filters
Version: 1.28.17
Release: 1%{?dist}
# For a breakdown of the licensing, see COPYING file
# GPLv2: filters: commandto*, imagetoraster, pdftops, rasterto*,
# imagetopdf, pstopdf, texttopdf
# backends: parallel, serial
# GPLv2+: filters: gstopxl, textonly, texttops, imagetops, foomatic-rip
# GPLv3: filters: bannertopdf
# GPLv3+: filters: urftopdf, rastertopdf
# LGPLv2+: utils: cups-browsed
# MIT: filters: gstoraster, pdftoijs, pdftoopvp, pdftopdf, pdftoraster
License: GPLv2 and GPLv2+ and GPLv3 and GPLv3+ and LGPLv2+ and MIT and BSD with advertising
Url: http://www.linuxfoundation.org/collaborate/workgroups/openprinting/cups-filters
Source0: https://github.com/OpenPrinting/cups-filters/releases/download/%{version}/cups-filters-%{version}.tar.xz
# acrobat-pstops script which strips DRM that prevents printing
Source1: acrobat-pstops
# backported from upstream
Patch0001: 0001-beh-backend-Use-execv-instead-of-system-CVE-2023-248.patch
Patch0002: 0001-auto-generated-pppds-do-not-set-rgb-default-on-mono-printers.patch
Patch0003: 0001-support-more-than-2-apple-raster-resolutions.patch
Patch0004: 0001-CVE-2024-47176.patch
Patch0005: 0001-CVE-2024-47076.patch
Patch0006: 0001-pdftopdf-add-newline-to-avoid-mangling.patch
Patch0007: 0001-remove-legacy-browsing-and-ldap.patch
Patch0008: 0001-c++17-onwards-noexcept-fix.patch
# c++17 support is required for building against qpdf >= 11.3.0
Patch1000: cups-filters-require-cxx17.patch
# Strip "No Re-Distill DRM" from macOS Acrobat generated PostScript
# which unitentionally prevents printing
Patch1001: cups-filters-acrobat-drm.patch
# Use acroread for pdftops filter and fallback to hybrid if /usr/bin/acroread is not installed
Patch1002: cups-filters-acroread-hybrid.patch
# Enable page-logging with pdftopdf filter for PostScript final content
Patch1003: cups-filters-postscript-page-log.patch
# Silence QPDF warnings patch
Patch1004: cups-filters-silence-macos-warnings.patch
# Allow pdftopdf-form-flattening=ghostscript for not just PDF forms
Patch1005: cups-filters-gs-flatten.patch
# autogen.sh
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: gettext-devel
BuildRequires: libtool
# build requirements for build system:
# gcc for backends (implicitclass, parallel, serial, backend error handling)
# cupsfilters (colord, color manager...), filter (banners,
# commandto*, braille, foomatic-rip, imagetoraster, imagetopdf, gstoraster e.g.),
# fontembed, cups-browsed
BuildRequires: gcc
# gcc-c++ for pdftoopvp, pdftopdf
BuildRequires: gcc-c++
# for autosetup
BuildRequires: git-core
# uses make for compiling
BuildRequires: make
# we use pkgconfig to get a proper devel packages
# proper CFLAGS and LDFLAGS
BuildRequires: pkgconf-pkg-config
# uses CUPS API functions - arrays, ipp functions
BuildRequires: cups-devel
# pdftopdf
BuildRequires: pkgconfig(libqpdf)
# pdftops
BuildRequires: poppler-utils
# pdftoraster, gstoraster
BuildRequires: ghostscript
BuildRequires: libjpeg-turbo-devel
BuildRequires: libtiff-devel
BuildRequires: pkgconfig(dbus-1)
BuildRequires: pkgconfig(fontconfig)
BuildRequires: pkgconfig(freetype2)
BuildRequires: pkgconfig(lcms2)
# used for getting image resolution from images - they have
# EXIF data in them and library accesses it
BuildRequires: pkgconfig(libexif)
BuildRequires: pkgconfig(libpng)
BuildRequires: pkgconfig(poppler-cpp)
BuildRequires: pkgconfig(zlib)
# cups-browsed
BuildRequires: avahi-devel
BuildRequires: pkgconfig(avahi-glib)
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: systemd
# Make sure we get postscriptdriver tags.
BuildRequires: python3-cups
# Testing font for test scripts.
BuildRequires: dejavu-sans-fonts
# needed for systemd rpm macros in scriptlets
BuildRequires: systemd-rpm-macros
# cups-browsed needs systemd-resolved or nss-mdns for resolving .local addresses of remote print queues
# let's not require a specific package and let the user decide what he wants to use.
# just recommend nss-mdns for Fedora for now to have working default, but
# don't hardwire it for resolved users
%if 0%{?fedora}
Recommends: nss-mdns
%endif
# Avahi is needed for device discovery for newer (2012+) devices and its sharing - make it recommended
Recommends: avahi
# ippfind is used in driverless backend, not needed classic PPD based print queue
Recommends: cups-ipptool
# braille filters and backend
Recommends: %{name}-braille%{?_isa} = %{version}-%{release}
# pstopdf
Requires: bc grep sed which
# for getting ICC profiles for filters (dbus must run)
Requires: colord
Requires: cups-filesystem
# have the same libs for the package
Requires: cups-filters-libs%{?_isa} = %{version}-%{release}
# several filters calls 'gs' binary during filtering
Requires: ghostscript
# texttopdf
Requires: liberation-mono-fonts
# if --with-pdftops is set to hybrid, we use poppler filters for several printers
# and for printing banners, for other printers we need gs - ghostscript
Requires: poppler-utils
# cups-browsed
# cups-browsed needs to have cups.service to run
Requires: cups
Requires(post): systemd
Requires(preun): systemd
Requires(postun): systemd
%package libs
Summary: OpenPrinting CUPS filters and backends - cupsfilters and fontembed libraries
# LGPLv2: libcupsfilters
# MIT: libfontembed
License: LGPLv2 and MIT
%package devel
Summary: OpenPrinting CUPS filters and backends - development environment
License: LGPLv2 and MIT
Requires: cups-filters-libs%{?_isa} = %{version}-%{release}
%package braille
Summary: OpenPrinting CUPS filters and backends - braille filters and backend
License: GPLv2+ and MIT
BuildRequires: liblouis-devel
# we need classic pdftopdf and other filters as well
Requires: cups-filters%{?_isa} = %{version}-%{release}
# lou_translate and file2brl are needed for file conversions
# liblouis-utils for lou_translate
Requires: liblouis-utils
# liblouisutdml-utils for file2brl
Requires: liblouisutdml-utils
%description
Contains backends, filters, and other software that was
once part of the core CUPS distribution but is no longer maintained by
Apple Inc. In addition it contains additional filters developed
independently of Apple, especially filters for the PDF-centric printing
workflow introduced by OpenPrinting.
%description libs
This package provides cupsfilters and fontembed libraries.
%description devel
This is the development package for OpenPrinting CUPS filters and backends.
%description braille
The package provides filters and cups-brf backend needed for braille printing.
%prep
%autosetup -S git
%build
# work-around Rpath
./autogen.sh
# --with-pdftops=acroread - use Adobe Reader and fallback to hybrid option
# if /usr/bin/acroread not installed
# --with-rcdir=no - don't install SysV init script
# --enable-driverless - enable PPD generator for driverless printing in
# /usr/lib/cups/driver, it is for manual setup of
# driverless printers with printer setup tool
# --disable-static - do not build static libraries (because of Fedora Packaging
# Guidelines)
# --enable-dbus - enable DBus Connection Manager's code
# --disable-silent-rules - verbose build output
# --disable-mutool - mupdf is retired in Fedora, use qpdf
# --enable-pclm - support for pclm language
# --with-remote-cups-local-queue-naming=RemoteName - name created local queues, which point to
# remote CUPS queue, by its name from the server
%configure --disable-static \
--disable-silent-rules \
--with-pdftops=acroread \
--enable-dbus \
--with-rcdir=no \
--disable-mutool \
--enable-driverless \
--enable-pclm \
--with-apple-raster-filter=rastertopdf \
--with-browseremoteprotocols=none \
--with-remote-cups-local-queue-naming=RemoteName
%make_build
%install
%make_install
# Don't ship libtool la files.
rm -f %{buildroot}%{_libdir}/lib*.la
# Not sure what is this good for.
rm -f %{buildroot}%{_bindir}/ttfread
rm -f %{buildroot}%{_pkgdocdir}/INSTALL
mkdir -p %{buildroot}%{_pkgdocdir}/fontembed/
cp -p fontembed/README %{buildroot}%{_pkgdocdir}/fontembed/
# systemd unit file
mkdir -p %{buildroot}%{_unitdir}
install -p -m 644 utils/cups-browsed.service %{buildroot}%{_unitdir}
# LSB3.2 requires /usr/bin/foomatic-rip,
# create it temporarily as a relative symlink
ln -sf %{_cups_serverbin}/filter/foomatic-rip %{buildroot}%{_bindir}/foomatic-rip
# acrobat-pstops
install -p -m 755 %{SOURCE1} %{buildroot}%{_cups_serverbin}/filter/
%check
make check
%post
%systemd_post cups-browsed.service
# put UpdateCUPSQueuesMaxPerCall and PauseBetweenCUPSQueueUpdates into cups-browsed.conf
# for making cups-browsed work more stable for environments with many print queues
# remove this after 1-2 releases
for directive in "UpdateCUPSQueuesMaxPerCall" "PauseBetweenCUPSQueueUpdates"
do
found=`%{_bindir}/grep "^[[:blank:]]*$directive" %{_sysconfdir}/cups/cups-browsed.conf`
if [ -z "$found" ]
then
if [ "x$directive" == "xUpdateCUPSQueuesMaxPerCall" ]
then
%{_bindir}/echo "UpdateCUPSQueuesMaxPerCall 20" >> %{_sysconfdir}/cups/cups-browsed.conf
else
%{_bindir}/echo "PauseBetweenCUPSQueueUpdates 5" >> %{_sysconfdir}/cups/cups-browsed.conf
fi
fi
done
# Set BrowseRemoteProtocols to none in light of CVE-2024-47176
if ! grep -Fxq "# added by post scriptlet" %{_sysconfdir}/cups/cups-browsed.conf
then
cp %{_sysconfdir}/cups/cups-browsed.conf %{_sysconfdir}/cups/cups-browsed.conf.rpmsave
sed -i "s/^\s*BrowseRemoteProtocols.*/# added by post scriptlet\nBrowseRemoteProtocols none/" %{_sysconfdir}/cups/cups-browsed.conf
fi
%preun
%systemd_preun cups-browsed.service
%postun
%systemd_postun_with_restart cups-browsed.service
%ldconfig_scriptlets libs
%files
%{_pkgdocdir}/README
%{_pkgdocdir}/ABOUT-NLS
%{_pkgdocdir}/AUTHORS
%{_pkgdocdir}/NEWS
%{_bindir}/foomatic-rip
%{_bindir}/driverless
%{_bindir}/driverless-fax
%{_sbindir}/cups-browsed
%attr(0700,root,root) %{_cups_serverbin}/backend/beh
# implicitclass backend must be run as root
%attr(0700,root,root) %{_cups_serverbin}/backend/implicitclass
# all backends needs to be run only as root because of kerberos
%attr(0700,root,root) %{_cups_serverbin}/backend/parallel
# Serial backend needs to run as root (bug #212577#c4).
%attr(0700,root,root) %{_cups_serverbin}/backend/serial
%{_cups_serverbin}/backend/driverless
%{_cups_serverbin}/backend/driverless-fax
%attr(0755,root,root) %{_cups_serverbin}/filter/bannertopdf
%attr(0755,root,root) %{_cups_serverbin}/filter/commandtoescpx
%attr(0755,root,root) %{_cups_serverbin}/filter/commandtopclx
%attr(0755,root,root) %{_cups_serverbin}/filter/foomatic-rip
%attr(0755,root,root) %{_cups_serverbin}/filter/gstopdf
%attr(0755,root,root) %{_cups_serverbin}/filter/gstopxl
%attr(0755,root,root) %{_cups_serverbin}/filter/gstoraster
%attr(0755,root,root) %{_cups_serverbin}/filter/imagetopdf
%attr(0755,root,root) %{_cups_serverbin}/filter/imagetops
%attr(0755,root,root) %{_cups_serverbin}/filter/imagetoraster
%attr(0755,root,root) %{_cups_serverbin}/filter/pdftopdf
%attr(0755,root,root) %{_cups_serverbin}/filter/pdftops
%attr(0755,root,root) %{_cups_serverbin}/filter/pdftoraster
%attr(0755,root,root) %{_cups_serverbin}/filter/rastertoescpx
%attr(0755,root,root) %{_cups_serverbin}/filter/rastertopclm
%attr(0755,root,root) %{_cups_serverbin}/filter/rastertopclx
%attr(0755,root,root) %{_cups_serverbin}/filter/rastertopdf
%attr(0755,root,root) %{_cups_serverbin}/filter/rastertops
%attr(0755,root,root) %{_cups_serverbin}/filter/sys5ippprinter
%attr(0755,root,root) %{_cups_serverbin}/filter/textbrftoindexv3
%attr(0755,root,root) %{_cups_serverbin}/filter/texttobrf
%attr(0755,root,root) %{_cups_serverbin}/filter/texttopdf
%attr(0755,root,root) %{_cups_serverbin}/filter/texttops
%attr(0755,root,root) %{_cups_serverbin}/filter/texttotext
%{_cups_serverbin}/driver/driverless
%{_cups_serverbin}/driver/driverless-fax
%{_datadir}/cups/banners
%{_datadir}/cups/charsets
%{_datadir}/cups/data/*
%{_datadir}/cups/drv/cupsfilters.drv
%{_datadir}/cups/mime/cupsfilters.types
%{_datadir}/cups/mime/cupsfilters.convs
%{_datadir}/cups/mime/cupsfilters-ghostscript.convs
%{_datadir}/cups/mime/cupsfilters-poppler.convs
%{_datadir}/ppd/cupsfilters
# this needs to be in the main package because of cupsfilters.drv
%{_datadir}/cups/ppdc/pcl.h
%{_mandir}/man1/foomatic-rip.1.gz
%{_mandir}/man1/driverless.1.gz
%{_mandir}/man5/cups-browsed.conf.5.gz
%{_mandir}/man8/cups-browsed.8.gz
# 2123809 - rpm -Va reports changes due %post scriptlet (remove the verify part once we remove
# cups-browsed.conf update from %post)
%config(noreplace) %verify(not size filedigest mtime) %{_sysconfdir}/cups/cups-browsed.conf
%{_unitdir}/cups-browsed.service
%files libs
%dir %{_pkgdocdir}/
%{_pkgdocdir}/COPYING
%dir %{_pkgdocdir}/fontembed
%{_pkgdocdir}/fontembed/README
%{_libdir}/libcupsfilters.so.1*
%{_libdir}/libfontembed.so.1*
%files devel
%{_datadir}/cups/ppdc/escp.h
%{_includedir}/cupsfilters
%{_includedir}/fontembed
%{_libdir}/libcupsfilters.so
%{_libdir}/libfontembed.so
%{_libdir}/pkgconfig/libcupsfilters.pc
%{_libdir}/pkgconfig/libfontembed.pc
%files braille
# cups-brf needs to be run as root, otherwise it leaves error messages
# in journal
%attr(0700,root,root) %{_cups_serverbin}/backend/cups-brf
%attr(0755,root,root) %{_cups_serverbin}/filter/acrobat-pstops
%attr(0755,root,root) %{_cups_serverbin}/filter/brftoembosser
%attr(0755,root,root) %{_cups_serverbin}/filter/brftopagedbrf
%attr(0755,root,root) %{_cups_serverbin}/filter/imagetobrf
%attr(0755,root,root) %{_cups_serverbin}/filter/imageubrltoindexv3
%attr(0755,root,root) %{_cups_serverbin}/filter/imageubrltoindexv4
%attr(0755,root,root) %{_cups_serverbin}/filter/musicxmltobrf
%attr(0755,root,root) %{_cups_serverbin}/filter/vectortobrf
%attr(0755,root,root) %{_cups_serverbin}/filter/vectortopdf
%{_cups_serverbin}/filter/cgmtopdf
%{_cups_serverbin}/filter/cmxtopdf
%{_cups_serverbin}/filter/emftopdf
%{_cups_serverbin}/filter/imagetoubrl
%{_cups_serverbin}/filter/svgtopdf
%{_cups_serverbin}/filter/textbrftoindexv4
%{_cups_serverbin}/filter/vectortoubrl
%{_cups_serverbin}/filter/xfigtopdf
%{_cups_serverbin}/filter/wmftopdf
%{_datadir}/cups/braille
%{_datadir}/cups/drv/generic-brf.drv
%{_datadir}/cups/drv/generic-ubrl.drv
%{_datadir}/cups/drv/indexv3.drv
%{_datadir}/cups/drv/indexv4.drv
%{_datadir}/cups/ppdc/braille.defs
%{_datadir}/cups/ppdc/fr-braille.po
%{_datadir}/cups/ppdc/imagemagick.defs
%{_datadir}/cups/ppdc/index.defs
%{_datadir}/cups/ppdc/liblouis.defs
%{_datadir}/cups/ppdc/liblouis1.defs
%{_datadir}/cups/ppdc/liblouis2.defs
%{_datadir}/cups/ppdc/liblouis3.defs
%{_datadir}/cups/ppdc/liblouis4.defs
%{_datadir}/cups/ppdc/media-braille.defs
%{_datadir}/cups/mime/braille.convs
%{_datadir}/cups/mime/braille.types
%changelog
* Wed Nov 06 2024 Douglas Kosovic <[email protected]> - 1.28.17-1
- Update to 1.28.17
- C++17 support required for building against qpdf >= 11.3.0
- Use acroread for pdtops filter and fallback to hybrid if no acroread installed
- Enable page-logging for PostScript final content with pdftopdf filter
- Add acrobat-pstops script which removes No Re-Distill DRM from PostScript
- Silence QPDF warnings for PDFs, especially those generated by macOS
- Allow pdftopdf-form-flattening=ghostscript for not just PDF forms
- CVE-2024-47076 cups-filters: `cfGetPrinterAttributes` API does not perform sanitization on returned IPP attributes
- CVE-2024-47176 cups-filters: cups-browsed binds on UDP INADDR_ANY:631 trusting any packet from any source
- Remove legacy browsing and LDAP support
- Support more than 2 Apple raster resolutions
- Auto-generate PPDs with RGBDefault=none for mono printers
- Use execv instead of system in beh backend
- Add newlines to pdftopdf to avoid mangling
- Remove browsed-updatenetif.patch
* Wed May 17 2023 Zdenek Dohnal <[email protected]> - 1.28.16-3
- 2207970 - CVE-2023-24805 cups-filters: remote code execution in cups-filters, beh CUPS backend
* Wed Sep 21 2022 Zdenek Dohnal <[email protected]> - 1.28.16-2
- disable frequent network interface data update, which slows down the queue creation
* Thu Sep 08 2022 Zdenek Dohnal <[email protected]> - 1.28.16-1
- 1.28.16
* Thu Sep 08 2022 Zdenek Dohnal <[email protected]> - 1.28.15-3
- 2123809 - rpm -Va reports error on /etc/cups/cups-browsed.conf
* Wed Jul 20 2022 Fedora Release Engineering <[email protected]> - 1.28.15-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Wed Apr 20 2022 Zdenek Dohnal <[email protected]> - 1.28.15-1
- 1.28.15
* Thu Apr 07 2022 Zdenek Dohnal <[email protected]> - 1.28.14-1
- 1.28.14
* Mon Mar 28 2022 Zdenek Dohnal <[email protected]> - 1.28.13-1
- 1.28.13
* Tue Mar 08 2022 Zdenek Dohnal <[email protected]> - 1.28.12-1
- 1.28.12
* Thu Jan 20 2022 Fedora Release Engineering <[email protected]> - 1.28.11-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Tue Jan 18 2022 Zdenek Dohnal <[email protected]> - 1.28.11-2
- raise the NVR to get a new build
* Mon Jan 17 2022 Zdenek Dohnal <[email protected]> - 1.28.11-1
- 1.28.11
* Mon Jan 17 2022 Zdenek Dohnal <[email protected]> - 1.28.10-4
- fix typo in braille requires
* Mon Jan 17 2022 Zdenek Dohnal <[email protected]> - 1.28.10-3
- 2040973 - Make Braille printing support optional
* Mon Dec 06 2021 Zdenek Dohnal <[email protected]> - 1.28.10-2
- 1995728 - Enable braille printing
* Tue Sep 14 2021 Zdenek Dohnal <[email protected]> - 1.28.10-1
- 1.28.10
* Tue Jul 27 2021 Zdenek Dohnal <[email protected]> - 1.28.9-5
- rebuilt with poppler-21.07.0
* Tue Jul 27 2021 Zdenek Dohnal <[email protected]> - 1.28.9-4
- remove build requirement on poppler-devel - we need just poppler-cpp-devel
* Wed Jul 21 2021 Fedora Release Engineering <[email protected]> - 1.28.9-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Wed Jul 14 2021 Zdenek Dohnal <[email protected]> - 1.28.9-2
- 1981603 - pdftopdf doesn't handle "page-range=10-2147483647" correctly
* Mon Jun 21 2021 Zdenek Dohnal <[email protected]> - 1.28.9-1
- 1.28.9
* Mon Jun 21 2021 Zdenek Dohnal <[email protected]> - 1.28.8-2
- 1973056 - cups-browsed doesn't renew DBus subscription in time and all printing comes to a halt
* Fri May 14 2021 Zdenek Dohnal <[email protected]> - 1.28.8-1
- 1.28.8
* Wed Apr 28 2021 Zdenek Dohnal <[email protected]> - 1.28.7-7
- 1954524 - cups-browsed doesn't save "*-default" options
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <[email protected]> - 1.28.7-6
- Rebuilt for updated systemd-rpm-macros
See https://pagure.io/fesco/issue/2583.
* Mon Feb 01 2021 Zdenek Dohnal <[email protected]> - 1.28.7-5
- put nss-mdns only for Fedora
* Thu Jan 28 2021 Zdenek Dohnal <[email protected]> - 1.28.7-4
- remove nss-mdns - dont require a specific way how to resolve .local addresses
* Tue Jan 26 2021 Fedora Release Engineering <[email protected]> - 1.28.7-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Mon Jan 25 2021 Zdenek Dohnal <[email protected]> - 1.28.7-2
- unpush fix for 1904405 - M281fdw now often chokes on URF
* Mon Jan 11 2021 Zdenek Dohnal <[email protected]> - 1.28.7-1
- 1.28.7, urftopdf nor pdftoopvp aren't compiled anymore
- 1904405 - HP M281fdw: čžš characters printed as squares with "driverless" driver
* Mon Dec 07 2020 Zdenek Dohnal <[email protected]> - 1.28.6-1
- 1.28.6
* Tue Dec 01 2020 Zdenek Dohnal <[email protected]> - 1.28.5-4
- filters using ijs were removed, removed the dep
* Tue Nov 24 2020 Zdenek Dohnal <[email protected]> - 1.28.5-3
- fix various memory issues within cups-browsed
* Thu Nov 05 2020 Zdenek Dohnal <[email protected]> - 1.28.5-2
- use make and git-core
* Mon Nov 02 2020 Zdenek Dohnal <[email protected]> - 1.28.5-1
- 1.28.5, 1881365 - cups-browsed crashing
* Tue Sep 29 2020 Zdenek Dohnal <[email protected]> - 1.28.2-3
- 1891720 - foomatic-rip files up /var/spool/tmp with temporary files
* Thu Sep 17 2020 Zdenek Dohnal <[email protected]> - 1.28.2-2
- 1879147 - driverless cannot generate ppd for dns-sd based uris
* Tue Sep 15 2020 Zdenek Dohnal <[email protected]> - 1.28.2-1
- 1.28.2
* Thu Sep 03 2020 Zdenek Dohnal <[email protected]> - 1.28.1-2
- revert previous commit - systemd-resolved doesn't work with avahi right now
because missing link in NetworkManager
* Mon Aug 31 2020 Zdenek Dohnal <[email protected]> - 1.28.1-2
- MDNS resolving should be done by systemd-resolved now
* Thu Aug 27 2020 Zdenek Dohnal <[email protected]> - 1.28.1-1
- 1.28.1 - added driverless fax support
* Fri Aug 21 2020 Zdenek Dohnal <[email protected]> - 1.27.5-7
- use configure option instead of downstream, cups-browsed.conf editing, patch
- the exact path in cups-browsed manpage was removed, use the patch removing it instead of downstream one
- use configure option to dont save queues between restarts instead of downstream patch reverting the issue
- memory leaks patch is from upstream too
* Wed Aug 19 2020 Zdenek Dohnal <[email protected]> - 1.27.5-6
- 1867412 - cups-browsed leaks memory
* Thu Aug 06 2020 Zdenek Dohnal <[email protected]> - 1.27.5-5
- require ipptool explicitly
- remove buildrequire on ipptool
* Wed Aug 05 2020 Zdenek Dohnal <[email protected]> - 1.27.5-4
- use %%make_build and %%make_install according FPG
- own 'new' directories
* Mon Jul 27 2020 Fedora Release Engineering <[email protected]> - 1.27.5-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Mon Jul 20 2020 Zdenek Dohnal <[email protected]> - 1.27.5-2
- 1848575 - [cups, cups-filters] PPD generators creates invalid cupsManualCopies entry
* Mon Jun 08 2020 Zdenek Dohnal <[email protected]> - 1.27.5-1
- 1.27.5
* Tue Apr 14 2020 Zdenek Dohnal <[email protected]> - 1.27.4-1
- 1.27.4
* Wed Apr 08 2020 Zdenek Dohnal <[email protected]> - 1.27.3-3
- memory issues in cups-browsed
* Mon Apr 06 2020 Zdenek Dohnal <[email protected]> - 1.27.3-2
- make nss-mdns and avahi recommended
* Mon Mar 23 2020 Zdenek Dohnal <[email protected]> - 1.27.3-1
- 1.27.3
* Fri Mar 13 2020 Zdenek Dohnal <[email protected]> - 1.27.2-2
- fix leaks in cups-browsed
- add require on nss-mdns
* Mon Mar 02 2020 Zdenek Dohnal <[email protected]> - 1.27.2-1
- 1.27.2
* Tue Feb 25 2020 Zdenek Dohnal <[email protected]> - 1.27.1-2
- 1806862 - foomatic-rip handles empty files in bad way
* Tue Feb 18 2020 Zdenek Dohnal <[email protected]> - 1.27.1-1
- 1.27.1
* Tue Feb 18 2020 Zdenek Dohnal <[email protected]> - 1.27.0-2
- 1802969 - Service "cups-browsed" is crashing all the time
* Tue Jan 28 2020 Zdenek Dohnal <[email protected]> - 1.27.0-1
- 1.27.0
- add post scriptlet for update
* Wed Jan 22 2020 Zdenek Dohnal <[email protected]> - 1.22.5-13
- fix build with GCC 10 and remove old obsoletes
* Fri Jan 17 2020 Marek Kasik <[email protected]> - 1.22.5-11
- Rebuild for poppler-0.84.0
* Wed Jan 15 2020 Zdenek Dohnal <[email protected]> - 1.22.5-11
- add buildrequires fro systemd-rpm-macros
* Tue Nov 26 2019 Zdenek Dohnal <[email protected]> - 1.22.5-10
- 1776271 - Updated cups-browsed in RHEL 7.7 leaks sockets
* Tue Nov 19 2019 Zdenek Dohnal <[email protected]> - 1.22.5-9
- rebuilt for qpdf-9.1.0
* Tue Oct 22 2019 Zdenek Dohnal <[email protected]> - 1.22.5-8
- 1756726 - Epson ET 7700 reports pwg support, but pwg does not work
* Wed Oct 09 2019 Zdenek Dohnal <[email protected]> - 1.22.5-7
- gs 9.27 now uses setfilladjust2
* Tue Sep 17 2019 Zdenek Dohnal <[email protected]> - 1.22.5-6
- ftbfs with qpdf-9.0.0
- pdftopdf output should not be encrypted
* Wed Sep 11 2019 Zdenek Dohnal <[email protected]> - 1.22.5-5
- require colord, because it is needed for ICC profiles for filters
* Tue Aug 13 2019 Zdenek Dohnal <[email protected]> - 1.22.5-4
- 1740122 - foomatic-rip segfaults when env variable PRINTER is not defined
* Wed Aug 07 2019 Zdenek Dohnal <[email protected]> - 1.22.5-3
- remove unneeded scriptlet
* Wed Jul 24 2019 Fedora Release Engineering <[email protected]> - 1.22.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Mon Apr 08 2019 Zdenek Dohnal <[email protected]> - 1.22.5-1
- 1.22.5
* Tue Mar 26 2019 Zdenek Dohnal <[email protected]> - 1.22.3-1
- 1.22.3
* Fri Feb 01 2019 Zdenek Dohnal <[email protected]> - 1.22.0-4
- cups-brf needs to be run as root
* Thu Jan 31 2019 Fedora Release Engineering <[email protected]> - 1.22.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Jan 25 2019 Marek Kasik <[email protected]> - 1.22.0-2
- Rebuild for poppler-0.73.0
* Fri Jan 25 2019 Zdenek Dohnal <[email protected]> - 1.22.0-1
- 1.22.0
* Mon Jan 14 2019 Björn Esser <[email protected]> - 1.21.6-2
- Rebuilt for libcrypt.so.2 (#1666033)
* Tue Jan 08 2019 Zdenek Dohnal <[email protected]> - 1.21.6-1
- 1.21.6
* Thu Dec 13 2018 Zdenek Dohnal <[email protected]> - 1.21.5-1
- 1.21.5
* Mon Nov 12 2018 Zdenek Dohnal <[email protected]> - 1.21.2-4
- links in manpages are wrong
* Mon Sep 24 2018 Zdenek Dohnal <[email protected]> - 1.21.2-3
- 1632267 - cups-filters needs to obsolete ghostscript-cups and foomatic-filters
- rebuilt for qpdf-8.2.1
* Fri Sep 21 2018 Zdenek Dohnal <[email protected]> - 1.21.2-2
- 1628255 - cups-filters: Sticky EOF behavior in glibc breaks descriptor concatenation using dup2 (breaks printing)
* Mon Sep 10 2018 Zdenek Dohnal <[email protected]> - 1.21.2-1
- 1.21.2
* Tue Aug 14 2018 Marek Kasik <[email protected]> - 1.20.3-7
- Rebuild for poppler-0.67.0
* Tue Jul 24 2018 Zdenek Dohnal <[email protected]> - 1.20.3-6
- correcting license
* Thu Jul 12 2018 Fedora Release Engineering <[email protected]> - 1.20.3-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Mon Jun 25 2018 Zdenek Dohnal <[email protected]> - 1.20.3-4
- rebuilt for new qpdf-8.1.0
* Tue Jun 12 2018 Zdenek Dohnal <[email protected]> - 1.20.3-3
- hybrid pdftops filter requires poppler and ghostscript for run
* Tue Jun 12 2018 Zdenek Dohnal <[email protected]> - 1.20.3-2
- cups-browsed needs to have cups.service to run
* Fri Apr 13 2018 Zdenek Dohnal <[email protected]> - 1.20.3-1
- 1.20.3
* Wed Apr 04 2018 Zdenek Dohnal <[email protected]> - 1.20.2-1
- 1.20.2
- fixing discovering of remote CUPS queues and LDAP queues
- dependency on poppler-utils is now only recommended
* Fri Mar 23 2018 Marek Kasik <[email protected]> - 1.20.1-4
- Rebuild for poppler-0.63.0
* Wed Mar 07 2018 Zdenek Dohnal <[email protected]> - 1.20.1-3
- Rebuilt for qpdf-8.0.2
* Mon Mar 05 2018 Zdenek Dohnal <[email protected]> - 1.20.1-2
- 1.20.1
* Wed Feb 28 2018 Zdenek Dohnal <[email protected]> - 1.20.0-8
- add explicit soname -> warning about soname change
* Wed Feb 21 2018 Zdenek Dohnal <[email protected]> - 1.20.0-7
- libjpeg is shipped in libjpeg-turbo and pkgconfig in pkgconf-pkg-config
* Mon Feb 19 2018 Zdenek Dohnal <[email protected]> - 1.20.0-6
- gcc and gcc-c++ is no longer in buildroot by default
* Wed Feb 14 2018 David Tardon <[email protected]> - 1.20.0-5
- rebuild for poppler 0.62.0
* Fri Feb 09 2018 Igor Gnatenko <[email protected]> - 1.20.0-4
- Escape macros in %%changelog
* Thu Feb 08 2018 Zdenek Dohnal <[email protected]> - 1.20.0-3
- remove old stuff https://lists.fedoraproject.org/archives/list/[email protected]/thread/MRWOMRZ6KPCV25EFHJ2O67BCCP3L4Y6N/
* Wed Feb 07 2018 Fedora Release Engineering <[email protected]> - 1.20.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Tue Jan 30 2018 Zdenek Dohnal <[email protected]> - 1.20.0-1
- Rebase to 1.20.0
* Sat Jan 20 2018 Björn Esser <[email protected]> - 1.19.0-2
- Rebuilt for switch to libxcrypt
* Tue Jan 16 2018 Zdenek Dohnal <[email protected]> - 1.19.0-1
- Rebase to 1.19.0
* Thu Jan 11 2018 Zdenek Dohnal <[email protected]> - 1.17.9-5
- adding build dependency on ghostscript because of its package changes
* Tue Jan 02 2018 Zdenek Dohnal <[email protected]> - 1.17.9-4
- 1529680 - set CreateIPPPrintQueues to ALL and LocalRemoteCUPSQueueNaming to RemoteName
* Mon Nov 20 2017 Zdenek Dohnal <[email protected]> - 1.17.9-3
- fixing patch for upstream issue 1413
* Wed Nov 08 2017 David Tardon <[email protected]> - 1.17.9-2
- rebuild for poppler 0.61.0
* Wed Oct 18 2017 Zdenek Dohnal <[email protected]> - 1.17.9-1
- rebase to 1.17.9
* Mon Oct 09 2017 Zdenek Dohnal <[email protected]> - 1.17.8-4
- removing Provides ghostscript-cups and foomatic-filters
* Fri Oct 06 2017 David Tardon <[email protected]> - 1.17.8-3
- rebuild for poppler 0.60.1
* Fri Oct 06 2017 Zdenek Dohnal <[email protected]> - 1.17.8-2
- upstream 1413 - Propagation of location doesn't work
* Tue Oct 03 2017 Zdenek Dohnal <[email protected]> - 1.17.8-1
- rebase to 1.17.8
* Tue Sep 19 2017 Zdenek Dohnal <[email protected]> - 1.17.7-1
- rebase to 1.17.7
* Fri Sep 08 2017 David Tardon <[email protected]> - 1.17.2-2
- rebuild for poppler 0.59.0
* Wed Sep 06 2017 Zdenek Dohnal <[email protected]> - 1.17.2-1
- rebase to 1.17.2
* Tue Aug 22 2017 Zdenek Dohnal <[email protected]> - 1.16.3-1
- rebase to 1.16.3
* Mon Aug 14 2017 Zdenek Dohnal <[email protected]> - 1.16.1-1
- rebase to 1.16.1
* Thu Aug 10 2017 Zdenek Dohnal <[email protected]> - 1.16.0-2
- rebuilt for qpdf-libs
* Mon Aug 07 2017 Zdenek Dohnal <[email protected]> - 1.16.0-1
- rebase to 1.16.0
* Thu Aug 03 2017 David Tardon <[email protected]> - 1.14.1-5
- rebuild for poppler 0.57.0
* Wed Aug 02 2017 Fedora Release Engineering <[email protected]> - 1.14.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <[email protected]> - 1.14.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Mon Jul 03 2017 Jonathan Wakely <[email protected]> - 1.14.1-2
- Rebuilt for Boost 1.64
* Fri Jun 30 2017 Zdenek Dohnal <[email protected]> - 1.14.1-1
- rebase to 1.14.1
* Thu Jun 29 2017 Zdenek Dohnal <[email protected]> - 1.14.0-3
- update python Requires/BuildRequires accordingly to Fedora Guidelines for Python (python-cups -> python3-cups)
* Wed May 31 2017 Zdenek Dohnal <[email protected]> - 1.14.0-2
- removing BuildRequires: mupdf
* Wed May 17 2017 Zdenek Dohnal <[email protected]> - 1.14.0-1
- rebase to 1.14.0
* Fri Apr 28 2017 Zdenek Dohnal <[email protected]> - 1.13.5-1
- rebase to 1.13.5
* Tue Mar 28 2017 David Tardon <[email protected]> - 1.13.4-2
- rebuild for poppler 0.53.0
* Fri Feb 24 2017 Zdenek Dohnal <[email protected]> - 1.13.4-1
- rebase to 1.13.4
- 1426567 - Added queues are not marked as remote ones
* Fri Feb 10 2017 Fedora Release Engineering <[email protected]> - 1.13.3-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Fri Jan 27 2017 Jonathan Wakely <[email protected]> - 1.13.3-3
- Rebuilt for Boost 1.63
* Fri Jan 27 2017 Jonathan Wakely <[email protected]> - 1.13.3-2
- Rebuilt for Boost 1.63
* Thu Jan 19 2017 Zdenek Dohnal <[email protected]> - 1.13.3-1
- rebase to 1.13.3
* Mon Jan 02 2017 Zdenek Dohnal <[email protected]> - 1.13.2-1
- rebase to 1.13.2
* Mon Dec 19 2016 Zdenek Dohnal <[email protected]> - 1.13.1-1
- rebase to 1.13.1
* Fri Dec 16 2016 David Tardon <[email protected]> - 1.13.0-2
- rebuild for poppler 0.50.0
* Mon Dec 12 2016 Zdenek Dohnal <[email protected]> - 1.13.0-1
- rebase to 1.13.0
* Fri Dec 02 2016 Zdenek Dohnal <[email protected]> - 1.12.0-2
- adding new sources
* Fri Dec 02 2016 Zdenek Dohnal <[email protected]> - 1.12.0-1
- rebase to 1.12.0
* Wed Nov 23 2016 David Tardon <[email protected]> - 1.11.6-2
- rebuild for poppler 0.49.0
* Fri Nov 11 2016 Zdenek Dohnal <[email protected]> - 1.11.6-1
- rebase to 1.11.6
* Mon Oct 31 2016 Zdenek Dohnal <[email protected]> - 1.11.5-1
- rebase to 1.11.5
* Fri Oct 21 2016 Marek Kasik <[email protected]> - 1.11.4-2
- Rebuild for poppler-0.48.0
* Tue Sep 27 2016 Zdenek Dohnal <[email protected]> - 1.11.4-1
- rebase to 1.11.4
* Tue Sep 20 2016 Zdenek Dohnal <[email protected]> - 1.11.3-1
- rebase to 1.11.3
* Tue Aug 30 2016 Zdenek Dohnal <[email protected]> - 1.11.2-1
- rebase to 1.11.2, adding cupsfilters-poppler.convs and cupsfilters-mupdf.convs into package
* Wed Aug 03 2016 Jiri Popelka <[email protected]> - 1.10.0-3
- %%{_defaultdocdir}/cups-filters/ -> %%{_pkgdocdir}
* Mon Jul 18 2016 Zdenek Dohnal <[email protected]> - 1.10.0-2
- adding new sources cups-filters-1.10.0
* Mon Jul 18 2016 Zdenek Dohnal <[email protected]> - 1.10.0-1
- rebase 1.10.0, include missing ppd.h
* Mon Jul 18 2016 Marek Kasik <[email protected]> - 1.9.0-2
- Rebuild for poppler-0.45.0
* Fri Jun 10 2016 Jiri Popelka <[email protected]> - 1.9.0-1
- 1.9.0
* Tue May 3 2016 Marek Kasik <[email protected]> - 1.8.3-2
- Rebuild for poppler-0.43.0
* Thu Mar 24 2016 Zdenek Dohnal <[email protected]> - 1.8.3-1
- Update to 1.8.3, adding cupsfilters-ghostscript.convs to %%files
* Fri Feb 12 2016 Jiri Popelka <[email protected]> - 1.8.2-1
- 1.8.2
* Wed Feb 03 2016 Fedora Release Engineering <[email protected]> - 1.8.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Fri Jan 22 2016 Marek Kasik <[email protected]> - 1.8.1-2
- Rebuild for poppler-0.40.0
* Fri Jan 22 2016 Jiri Popelka <[email protected]> - 1.8.1-1
- 1.8.1
* Thu Jan 21 2016 Jiri Popelka <[email protected]> - 1.8.0-1
- 1.8.0
* Tue Jan 19 2016 Jiri Popelka <[email protected]> - 1.7.0-1
- 1.7.0
* Fri Jan 15 2016 Jonathan Wakely <[email protected]> - 1.6.0-2
- Rebuilt for Boost 1.60
* Thu Jan 14 2016 Jiri Popelka <[email protected]> - 1.6.0-1
- 1.6.0
* Fri Dec 18 2015 Jiri Popelka <[email protected]> - 1.5.0-1
- 1.5.0
* Tue Dec 15 2015 Jiri Popelka <[email protected]> - 1.4.0-1
- 1.4.0
* Wed Dec 09 2015 Jiri Popelka <[email protected]> - 1.3.0-1
- 1.3.0
* Fri Nov 27 2015 Jiri Popelka <[email protected]> - 1.2.0-1
- 1.2.0
* Wed Nov 11 2015 Peter Robinson <[email protected]> 1.1.0-2
- Rebuild (qpdf-6)
* Tue Oct 27 2015 Jiri Popelka <[email protected]> - 1.1.0-1
- 1.1.0 (version numbering change: minor version = feature, revision = bugfix)
* Sun Sep 13 2015 Jiri Popelka <[email protected]> - 1.0.76-1
- 1.0.76
* Tue Sep 08 2015 Jiri Popelka <[email protected]> - 1.0.75-1
- 1.0.75
* Thu Aug 27 2015 Jonathan Wakely <[email protected]> - 1.0.74-2
- Rebuilt for Boost 1.59
* Wed Aug 26 2015 Jiri Popelka <[email protected]> - 1.0.74-1
- 1.0.74
* Wed Aug 19 2015 Jiri Popelka <[email protected]> - 1.0.73-1
- 1.0.73 - new implicitclass backend
* Fri Jul 24 2015 David Tardon <[email protected]> - 1.0.71-3
- rebuild for Boost 1.58 to fix deps
* Thu Jul 23 2015 Orion Poplawski <[email protected]> - 1.0.71-2
- Add upstream patch for poppler 0.34 support
* Wed Jul 22 2015 Marek Kasik <[email protected]> - 1.0.71-2
- Rebuild (poppler-0.34.0)
* Fri Jul 03 2015 Jiri Popelka <[email protected]> - 1.0.71-1
- 1.0.71
* Mon Jun 29 2015 Jiri Popelka <[email protected]> - 1.0.70-1
- 1.0.70
* Mon Jun 22 2015 Tim Waugh <[email protected]> - 1.0.69-3
- Fixes for glib source handling (bug #1228555).
* Wed Jun 17 2015 Fedora Release Engineering <[email protected]> - 1.0.69-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Thu Jun 11 2015 Jiri Popelka <[email protected]> - 1.0.69-1
- 1.0.69
* Fri Jun 5 2015 Marek Kasik <[email protected]> - 1.0.68-2
- Rebuild (poppler-0.33.0)
* Tue Apr 14 2015 Jiri Popelka <[email protected]> - 1.0.68-1
- 1.0.68
* Wed Mar 11 2015 Jiri Popelka <[email protected]> - 1.0.67-1
- 1.0.67
* Mon Mar 02 2015 Jiri Popelka <[email protected]> - 1.0.66-1