commit
7714d32fa6
@ -0,0 +1 @@
|
|||||||
|
e74c23e5480535898a6549aec11e5cfa1228e1ea SOURCES/djvulibre-3.5.28.tar.gz
|
@ -0,0 +1 @@
|
|||||||
|
SOURCES/djvulibre-3.5.28.tar.gz
|
@ -0,0 +1,12 @@
|
|||||||
|
diff -up djvulibre-3.5.22/libdjvu/GSmartPointer.h.cdefs djvulibre-3.5.22/libdjvu/GSmartPointer.h
|
||||||
|
--- djvulibre-3.5.22/libdjvu/GSmartPointer.h.cdefs 2008-03-05 01:44:20.000000000 +0000
|
||||||
|
+++ djvulibre-3.5.22/libdjvu/GSmartPointer.h 2011-01-31 13:43:37.595917364 +0000
|
||||||
|
@@ -65,6 +65,8 @@
|
||||||
|
# pragma interface
|
||||||
|
#endif
|
||||||
|
|
||||||
|
+#include <cstddef>
|
||||||
|
+
|
||||||
|
/** @name GSmartPointer.h
|
||||||
|
|
||||||
|
Files #"GSmartPointer.h"# and #"GSmartPointer.cpp"# define a smart-pointer
|
@ -0,0 +1,51 @@
|
|||||||
|
diff -up djvulibre-3.5.25/configure~ djvulibre-3.5.25/configure
|
||||||
|
--- djvulibre-3.5.25/configure~ 2012-05-08 05:56:53.000000000 +0300
|
||||||
|
+++ djvulibre-3.5.25/configure 2012-10-10 00:01:36.000000000 +0300
|
||||||
|
@@ -14733,6 +14733,7 @@ fi
|
||||||
|
|
||||||
|
OPTS=
|
||||||
|
|
||||||
|
+if false; then
|
||||||
|
saved_CXXFLAGS="$CXXFLAGS"
|
||||||
|
saved_CFLAGS="$CFLAGS"
|
||||||
|
CXXFLAGS=
|
||||||
|
@@ -14750,6 +14751,7 @@ fi
|
||||||
|
*) CFLAGS="$CFLAGS $opt" ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
+fi
|
||||||
|
if test x$ac_debug = xno ; then
|
||||||
|
OPTS=-DNDEBUG
|
||||||
|
|
||||||
|
@@ -14770,6 +14772,7 @@ $as_echo "no" >&6; }
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
+if false; then
|
||||||
|
opt="-O3"
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CXX accepts $opt" >&5
|
||||||
|
$as_echo_n "checking if $CXX accepts $opt... " >&6; }
|
||||||
|
@@ -14801,6 +14804,7 @@ $as_echo "no" >&6; }
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
+fi
|
||||||
|
|
||||||
|
|
||||||
|
opt="-Wno-non-virtual-dtor"
|
||||||
|
@@ -14819,6 +14823,7 @@ $as_echo "no" >&6; }
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
+if false; then
|
||||||
|
cpu=`uname -m 2>/dev/null`
|
||||||
|
test -z "$cpu" && cpu=${host_cpu}
|
||||||
|
case "${host_cpu}" in
|
||||||
|
@@ -14860,6 +14865,7 @@ $as_echo "no" >&6; }
|
||||||
|
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
+fi
|
||||||
|
else
|
||||||
|
|
||||||
|
opt="-Wall"
|
@ -0,0 +1,16 @@
|
|||||||
|
diff --git a/libdjvu/IW44Image.cpp b/libdjvu/IW44Image.cpp
|
||||||
|
index e8d4b44..aa3d554 100644
|
||||||
|
--- a/libdjvu/IW44Image.cpp
|
||||||
|
+++ b/libdjvu/IW44Image.cpp
|
||||||
|
@@ -678,7 +678,11 @@ IW44Image::Map::image(signed char *img8, int rowsize, int pixsep, int fast)
|
||||||
|
size_t sz = bw * bh;
|
||||||
|
if (sz / (size_t)bw != (size_t)bh) // multiplication overflow
|
||||||
|
G_THROW("IW44Image: image size exceeds maximum (corrupted file?)");
|
||||||
|
+ if (sz == 0)
|
||||||
|
+ G_THROW("IW44Image: zero size image (corrupted file?)");
|
||||||
|
GPBuffer<short> gdata16(data16,sz);
|
||||||
|
+ if (data16 == NULL)
|
||||||
|
+ G_THROW("IW44Image: unable to allocate image data");
|
||||||
|
// Copy coefficients
|
||||||
|
int i;
|
||||||
|
short *p = data16;
|
@ -0,0 +1,13 @@
|
|||||||
|
diff --git a/libdjvu/DataPool.cpp b/libdjvu/DataPool.cpp
|
||||||
|
index 5fcbedf..4c2eaf0 100644
|
||||||
|
--- a/libdjvu/DataPool.cpp
|
||||||
|
+++ b/libdjvu/DataPool.cpp
|
||||||
|
@@ -791,6 +791,8 @@ DataPool::create(const GP<DataPool> & pool, int start, int length)
|
||||||
|
DEBUG_MSG("DataPool::DataPool: pool=" << (void *)((DataPool *)pool) << " start=" << start << " length= " << length << "\n");
|
||||||
|
DEBUG_MAKE_INDENT(3);
|
||||||
|
|
||||||
|
+ if (!pool) G_THROW( ERR_MSG("DataPool.zero_DataPool") );
|
||||||
|
+
|
||||||
|
DataPool *xpool=new DataPool();
|
||||||
|
GP<DataPool> retval=xpool;
|
||||||
|
xpool->init();
|
@ -0,0 +1,36 @@
|
|||||||
|
diff --git a/libdjvu/DjVuPort.cpp b/libdjvu/DjVuPort.cpp
|
||||||
|
index 2b3e0d2..ede7f6b 100644
|
||||||
|
--- a/libdjvu/DjVuPort.cpp
|
||||||
|
+++ b/libdjvu/DjVuPort.cpp
|
||||||
|
@@ -507,10 +507,19 @@ GP<DjVuFile>
|
||||||
|
DjVuPortcaster::id_to_file(const DjVuPort * source, const GUTF8String &id)
|
||||||
|
{
|
||||||
|
GPList<DjVuPort> list;
|
||||||
|
+
|
||||||
|
+ if (!!opening_id && opening_id == id)
|
||||||
|
+ G_THROW("DjVuPortcaster: recursive opening of the same file (corrupted file?)");
|
||||||
|
+ else
|
||||||
|
+ opening_id = id;
|
||||||
|
+
|
||||||
|
compute_closure(source, list, true);
|
||||||
|
GP<DjVuFile> file;
|
||||||
|
for(GPosition pos=list;pos;++pos)
|
||||||
|
if ((file=list[pos]->id_to_file(source, id))) break;
|
||||||
|
+
|
||||||
|
+ opening_id = GUTF8String();
|
||||||
|
+
|
||||||
|
return file;
|
||||||
|
}
|
||||||
|
|
||||||
|
diff --git a/libdjvu/DjVuPort.h b/libdjvu/DjVuPort.h
|
||||||
|
index e2b3125..313dc2b 100644
|
||||||
|
--- a/libdjvu/DjVuPort.h
|
||||||
|
+++ b/libdjvu/DjVuPort.h
|
||||||
|
@@ -484,6 +484,7 @@ private:
|
||||||
|
const DjVuPort *dst, int distance);
|
||||||
|
void compute_closure(const DjVuPort *src, GPList<DjVuPort> &list,
|
||||||
|
bool sorted=false);
|
||||||
|
+ GUTF8String opening_id;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
@ -0,0 +1,23 @@
|
|||||||
|
diff --git a/tools/ddjvu.cpp b/tools/ddjvu.cpp
|
||||||
|
index 7109952..b41f7d2 100644
|
||||||
|
--- a/tools/ddjvu.cpp
|
||||||
|
+++ b/tools/ddjvu.cpp
|
||||||
|
@@ -70,6 +70,7 @@
|
||||||
|
#include <locale.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <errno.h>
|
||||||
|
+#include <stdint.h>
|
||||||
|
|
||||||
|
#ifdef UNIX
|
||||||
|
# include <sys/time.h>
|
||||||
|
@@ -394,7 +395,9 @@ render(ddjvu_page_t *page, int pageno)
|
||||||
|
rowsize = rrect.w;
|
||||||
|
else
|
||||||
|
rowsize = rrect.w * 3;
|
||||||
|
- if (! (image = (char*)malloc(rowsize * rrect.h)))
|
||||||
|
+ if ((size_t)rowsize > SIZE_MAX / rrect.h)
|
||||||
|
+ die(i18n("Integer overflow when allocating image buffer for page %d"), pageno);
|
||||||
|
+ if (! (image = (char*)malloc((size_t)rowsize * rrect.h)))
|
||||||
|
die(i18n("Cannot allocate image buffer for page %d"), pageno);
|
||||||
|
|
||||||
|
/* Render */
|
@ -0,0 +1,14 @@
|
|||||||
|
diff --git a/libdjvu/DjVuText.cpp b/libdjvu/DjVuText.cpp
|
||||||
|
index 60a4f39..b11df7b 100644
|
||||||
|
--- a/libdjvu/DjVuText.cpp
|
||||||
|
+++ b/libdjvu/DjVuText.cpp
|
||||||
|
@@ -345,7 +345,8 @@ DjVuTXT::decode(const GP<ByteStream> &gbs)
|
||||||
|
int textsize = bs.read24();
|
||||||
|
char *buffer = textUTF8.getbuf(textsize);
|
||||||
|
int readsize = bs.read(buffer,textsize);
|
||||||
|
- buffer[readsize] = 0;
|
||||||
|
+ if (buffer)
|
||||||
|
+ buffer[readsize] = 0;
|
||||||
|
if (readsize < textsize)
|
||||||
|
G_THROW( ERR_MSG("DjVuText.corrupt_chunk") );
|
||||||
|
// Try reading zones
|
@ -0,0 +1,21 @@
|
|||||||
|
diff --git a/libdjvu/GBitmap.cpp b/libdjvu/GBitmap.cpp
|
||||||
|
index c2fdbe4..e271a1d 100644
|
||||||
|
--- a/libdjvu/GBitmap.cpp
|
||||||
|
+++ b/libdjvu/GBitmap.cpp
|
||||||
|
@@ -69,6 +69,7 @@
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
+#include <limits.h>
|
||||||
|
|
||||||
|
// - Author: Leon Bottou, 05/1997
|
||||||
|
|
||||||
|
@@ -1284,6 +1285,8 @@ GBitmap::decode(unsigned char *runs)
|
||||||
|
// initialize pixel array
|
||||||
|
if (nrows==0 || ncolumns==0)
|
||||||
|
G_THROW( ERR_MSG("GBitmap.not_init") );
|
||||||
|
+ if (ncolumns > USHRT_MAX - border)
|
||||||
|
+ G_THROW("GBitmap: row size exceeds maximum (corrupted file?)");
|
||||||
|
bytes_per_row = ncolumns + border;
|
||||||
|
if (runs==0)
|
||||||
|
G_THROW( ERR_MSG("GBitmap.null_arg") );
|
@ -0,0 +1,552 @@
|
|||||||
|
%define _hardened_build 1
|
||||||
|
|
||||||
|
Summary: DjVu viewers, encoders, and utilities
|
||||||
|
Name: djvulibre
|
||||||
|
Version: 3.5.28
|
||||||
|
Release: 3%{?dist}
|
||||||
|
License: GPLv2+
|
||||||
|
URL: http://djvu.sourceforge.net/
|
||||||
|
Source0: http://downloads.sourceforge.net/djvu/%{name}-%{version}.tar.gz
|
||||||
|
Patch0: djvulibre-3.5.22-cdefs.patch
|
||||||
|
#Patch1: djvulibre-3.5.25.3-cflags.patch
|
||||||
|
Patch8: djvulibre-3.5.27-check-image-size.patch
|
||||||
|
Patch9: djvulibre-3.5.27-integer-overflow.patch
|
||||||
|
Patch10: djvulibre-3.5.27-check-input-pool.patch
|
||||||
|
Patch11: djvulibre-3.5.27-djvuport-stack-overflow.patch
|
||||||
|
Patch12: djvulibre-3.5.27-unsigned-short-overflow.patch
|
||||||
|
Patch14: djvulibre-3.5.27-out-of-bound-write-2.patch
|
||||||
|
|
||||||
|
Requires(post): xdg-utils
|
||||||
|
Requires(preun): xdg-utils
|
||||||
|
%if (0%{?fedora} > 15 || 0%{?rhel} > 6)
|
||||||
|
BuildRequires: gcc
|
||||||
|
BuildRequires: libjpeg-turbo-devel
|
||||||
|
%else
|
||||||
|
BuildRequires: libjpeg-devel
|
||||||
|
%endif
|
||||||
|
BuildRequires: libtiff-devel
|
||||||
|
BuildRequires: xdg-utils chrpath
|
||||||
|
BuildRequires: hicolor-icon-theme
|
||||||
|
BuildRequires: inkscape
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: make
|
||||||
|
|
||||||
|
Provides: %{name}-mozplugin = %{version}
|
||||||
|
Obsoletes: %{name}-mozplugin < 3.5.24
|
||||||
|
|
||||||
|
%description
|
||||||
|
DjVu is a web-centric format and software platform for distributing documents
|
||||||
|
and images. DjVu can advantageously replace PDF, PS, TIFF, JPEG, and GIF for
|
||||||
|
distributing scanned documents, digital documents, or high-resolution pictures.
|
||||||
|
DjVu content downloads faster, displays and renders faster, looks nicer on a
|
||||||
|
screen, and consume less client resources than competing formats. DjVu images
|
||||||
|
display instantly and can be smoothly zoomed and panned with no lengthy
|
||||||
|
re-rendering.
|
||||||
|
|
||||||
|
DjVuLibre is a free (GPL'ed) implementation of DjVu, including viewers,
|
||||||
|
decoders, simple encoders, and utilities. The browser plugin is in its own
|
||||||
|
separate sub-package.
|
||||||
|
|
||||||
|
|
||||||
|
%package libs
|
||||||
|
Summary: Library files for DjVuLibre
|
||||||
|
|
||||||
|
%description libs
|
||||||
|
Library files for DjVuLibre.
|
||||||
|
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for DjVuLibre
|
||||||
|
Requires: %{name}-libs = %{version}-%{release}
|
||||||
|
Requires: pkgconfig
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
Development files for DjVuLibre.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
%patch0 -p1 -b .cdefs
|
||||||
|
#%patch1 -p1 -b .cflags
|
||||||
|
%patch8 -p1 -b .check-image-size
|
||||||
|
%patch9 -p1 -b .integer-overflow
|
||||||
|
%patch10 -p1 -b .check-input-pool
|
||||||
|
%patch11 -p1 -b .djvuport-stack-overflow
|
||||||
|
%patch12 -p1 -b .unsigned-short-overflow
|
||||||
|
%patch14 -p1 -b .out-of-bound-write-2
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%configure --with-qt=%{_libdir}/qt-3.3 --enable-threads
|
||||||
|
# Disable rpath on 64bit - NOT! It makes the build fail (still as of 3.5.20-2)
|
||||||
|
#sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
||||||
|
#sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
||||||
|
|
||||||
|
make %{?_smp_mflags} V=1
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
make install DESTDIR=%{buildroot}
|
||||||
|
|
||||||
|
# Fix for the libs to get stripped correctly (still required in 3.5.20-2)
|
||||||
|
find %{buildroot}%{_libdir} -name '*.so*' | xargs %{__chmod} +x
|
||||||
|
|
||||||
|
# Remove rpath
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/djvutoxml
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/djvused
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/cjb2
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/csepdjvu
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/djvuserve
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/djvm
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/djvuxmlparser
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/djvutxt
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/ddjvu
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/djvumake
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/cpaldjvu
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/djvuextract
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/c44
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/djvups
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/djvudump
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/djvmcvt
|
||||||
|
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/bzz
|
||||||
|
|
||||||
|
# This XML file does not differentiate between DjVu Image and DjVu Document
|
||||||
|
# MIME types, the default one in shared-mime-info does.
|
||||||
|
rm -f $RPM_BUILD_ROOT%{_datadir}/mime/packages/djvulibre-mime.xml
|
||||||
|
|
||||||
|
# MIME types (icons and desktop file) - this installs icon files under
|
||||||
|
# /usr/share/icons/hicolor/ and an xml file under /usr/share/mime/image/
|
||||||
|
# Taken from {_datadir}/djvu/osi/desktop/register-djvu-mime install
|
||||||
|
# See also the README file in the desktopfiles directory of the source distribution
|
||||||
|
pushd desktopfiles
|
||||||
|
for i in 22 32 48 64 ; do
|
||||||
|
install -d $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/${i}x${i}/mimetypes/
|
||||||
|
cp -a ./prebuilt-hi${i}-djvu.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/${i}x${i}/mimetypes/image-vnd.djvu.mime.png
|
||||||
|
# cp -a ./hi${i}-djvu.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/${i}x${i}/mimetypes/gnome-mime-image-vnd.djvu.png
|
||||||
|
done
|
||||||
|
popd
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
# Unregister menu entry for djview3 if it is present as we no longer
|
||||||
|
# ship this in favour of the djview4 package. These files were
|
||||||
|
# installed in %post by the older djvulibre packages, but not actually
|
||||||
|
# owned by the package (packaging bug)
|
||||||
|
rm -f %{_datadir}/applications/djvulibre-djview3.desktop || :
|
||||||
|
rm -f %{_datadir}/icons/hicolor/32x32/apps/djvulibre-djview3.png || :
|
||||||
|
|
||||||
|
|
||||||
|
%preun
|
||||||
|
# This is the legacy script, not compliant with current packaging
|
||||||
|
# guidelines. However, we leave it in, as the old packages didn't own
|
||||||
|
# the icon and xml files, so we want to be sure we remove them
|
||||||
|
if [ $1 -eq 0 ]; then
|
||||||
|
# MIME types (icons and desktop file)
|
||||||
|
%{_datadir}/djvu/osi/desktop/register-djvu-mime uninstall || :
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
%ldconfig_scriptlets libs
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%{_bindir}/*
|
||||||
|
%{_mandir}/man1/*
|
||||||
|
%{_datadir}/djvu/
|
||||||
|
%{_datadir}/icons/hicolor/16x16/mimetypes/*
|
||||||
|
%{_datadir}/icons/hicolor/20x20/mimetypes/*
|
||||||
|
%{_datadir}/icons/hicolor/22x22/mimetypes/*
|
||||||
|
%{_datadir}/icons/hicolor/24x24/mimetypes/*
|
||||||
|
%{_datadir}/icons/hicolor/32x32/mimetypes/*
|
||||||
|
%{_datadir}/icons/hicolor/48x48/mimetypes/*
|
||||||
|
%{_datadir}/icons/hicolor/64x64/mimetypes/*
|
||||||
|
%{_datadir}/icons/hicolor/72x72/mimetypes/*
|
||||||
|
%{_datadir}/icons/hicolor/96x96/mimetypes/*
|
||||||
|
%{_datadir}/icons/hicolor/128x128/mimetypes/*
|
||||||
|
%{_datadir}/icons/hicolor/scalable/mimetypes/*
|
||||||
|
%{_datadir}/icons/hicolor/256x256/mimetypes/*
|
||||||
|
|
||||||
|
|
||||||
|
%files libs
|
||||||
|
%doc README COPYRIGHT COPYING NEWS
|
||||||
|
%{_libdir}/*.so.*
|
||||||
|
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%doc doc/*.*
|
||||||
|
%{_includedir}/libdjvu/
|
||||||
|
%{_libdir}/pkgconfig/ddjvuapi.pc
|
||||||
|
%exclude %{_libdir}/*.la
|
||||||
|
%{_libdir}/*.so
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Wed Feb 28 2024 Sergey Cherevko <s.cherevko@msvsphere-os.ru> - 3.5.28-3
|
||||||
|
- Rebuilt for MSVSphere 8.9
|
||||||
|
|
||||||
|
* Fri Mar 18 2022 Marek Kasik <mkasik@redhat.com> - 3.5.28-3
|
||||||
|
- Initial EPEL 8 release
|
||||||
|
- Resolves: #1739168
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.28-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 19 2022 Marek Kasik <mkasik@redhat.com> - 3.5.28-1
|
||||||
|
- Rebase to 3.5.28
|
||||||
|
|
||||||
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.27-31
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 02 2021 Marek Kasik <mkasik@redhat.com> - 3.5.27-30
|
||||||
|
- Improve previous commit
|
||||||
|
- Resolves: #1977428
|
||||||
|
|
||||||
|
* Fri Jul 02 2021 Marek Kasik <mkasik@redhat.com> - 3.5.27-29
|
||||||
|
- Fix out-of-bounds write in djvutext
|
||||||
|
- Resolves: #1977428
|
||||||
|
|
||||||
|
* Mon May 03 2021 Marek Kasik <mkasik@redhat.com> - 3.5.27-28
|
||||||
|
- Avoid unsigned short overflow in GBitmap when allocating row buffer
|
||||||
|
- Resolves: #1943424
|
||||||
|
|
||||||
|
* Mon May 03 2021 Marek Kasik <mkasik@redhat.com> - 3.5.27-27
|
||||||
|
- Avoid stack overflow in DjVuPort by remembering which file we are opening
|
||||||
|
- Resolves: #1943411, #1943685
|
||||||
|
|
||||||
|
* Mon May 03 2021 Marek Kasik <mkasik@redhat.com> - 3.5.27-26
|
||||||
|
- Check input pool for NULL
|
||||||
|
- Resolves: #1943410
|
||||||
|
|
||||||
|
* Mon May 03 2021 Marek Kasik <mkasik@redhat.com> - 3.5.27-25
|
||||||
|
- Avoid integer overflow when allocating bitmap
|
||||||
|
- Resolves: #1943409
|
||||||
|
|
||||||
|
* Mon May 03 2021 Marek Kasik <mkasik@redhat.com> - 3.5.27-24
|
||||||
|
- Check image size for 0
|
||||||
|
- Resolves: #1943408
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.27-23
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Aug 04 2020 Marek Kasik <mkasik@redhat.com> - 3.5.27-22
|
||||||
|
- Fix exporting of djvu icons with Inkscape
|
||||||
|
- Resolves: #1863428
|
||||||
|
|
||||||
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.27-21
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.27-20
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.27-19
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 22 2019 Marek Kasik <mkasik@redhat.com> - 3.5.27-18
|
||||||
|
- Fix a NULL pointer dereference in DJVU::filter_fv()
|
||||||
|
- Resolves: #1771267
|
||||||
|
|
||||||
|
* Fri Nov 8 2019 Marek Kasik <mkasik@redhat.com> - 3.5.27-17
|
||||||
|
- Use Inkscape's "--export-file" option replacing "--export-png"
|
||||||
|
- Related: #1767921
|
||||||
|
|
||||||
|
* Thu Nov 7 2019 Marek Kasik <mkasik@redhat.com> - 3.5.27-16
|
||||||
|
- Fix a crash due to missing zero-bytes check
|
||||||
|
- Resolves: #1767921
|
||||||
|
|
||||||
|
* Thu Nov 7 2019 Marek Kasik <mkasik@redhat.com> - 3.5.27-15
|
||||||
|
- Fix a stack overflow
|
||||||
|
- Resolves: #1767868
|
||||||
|
|
||||||
|
* Wed Nov 6 2019 Marek Kasik <mkasik@redhat.com> - 3.5.27-14
|
||||||
|
- Break an infinite loop
|
||||||
|
- Resolves: #1767857
|
||||||
|
|
||||||
|
* Wed Nov 6 2019 Marek Kasik <mkasik@redhat.com> - 3.5.27-13
|
||||||
|
- Fix a buffer overflow
|
||||||
|
- Resolves: #1767842
|
||||||
|
|
||||||
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.27-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.27-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 23 2018 Marek Kasik <mkasik@redhat.com> - 3.5.27-10
|
||||||
|
- Add BuildRequires of gcc-c++
|
||||||
|
- Resolves: #1603796
|
||||||
|
|
||||||
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.27-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 14 2018 Marek Kasik <mkasik@redhat.com> - 3.5.27-8
|
||||||
|
- Remove XML file defining DjVu MIME type because it does not differentiate
|
||||||
|
- between DjVu Image and DjVu Document (the default one in shared-mime-info does)
|
||||||
|
- Resolves: #1513188
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.5.27-7
|
||||||
|
- Escape macros in %%changelog
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.27-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.5.27-5
|
||||||
|
- Switch to %%ldconfig_scriptlets
|
||||||
|
|
||||||
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.27-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.27-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.27-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Mar 28 2016 François Cami <fcami@fedoraproject.org> - 3.5.27-1
|
||||||
|
- Update to latest upstream.
|
||||||
|
|
||||||
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.25.3-18
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.25.3-17
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 3.5.25.3-16
|
||||||
|
- Rebuilt for GCC 5 C++11 ABI change
|
||||||
|
|
||||||
|
* Fri Jan 09 2015 François Cami <fcami@fedoraproject.org> - 3.5.25.3-15
|
||||||
|
- Fix bogus date in changelog + use PIC.
|
||||||
|
|
||||||
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.25.3-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.25.3-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 5 2014 Peter Robinson <pbrobinson@fedoraproject.org> 3.5.25.3-12
|
||||||
|
- Remove autoconf requirement, it's not needed even for aarch64
|
||||||
|
it's handled in the %%configure macro
|
||||||
|
|
||||||
|
* Tue Dec 17 2013 Jonathan Underwood <jonathan.underwood@gmail.com> - 3.5.25.3-11
|
||||||
|
- Only call autoreconf for Fedora 19 and higher, and not RHEL
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.25.3-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu May 23 2013 François Cami <fcami@fedoraproject.org> - - 3.5.25.3-9
|
||||||
|
- Fix #729469 again.
|
||||||
|
|
||||||
|
* Thu May 23 2013 François Cami <fcami@fedoraproject.org> - - 3.5.25.3-8
|
||||||
|
- Add autoreconf to BuildRequires.
|
||||||
|
|
||||||
|
* Thu May 23 2013 François Cami <fcami@fedoraproject.org> - - 3.5.25.3-7
|
||||||
|
- Call autoreconf in %%build (#925264).
|
||||||
|
|
||||||
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.25.3-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 31 2013 François Cami <fcami@fedoraproject.org> - 3.5.25.3-5
|
||||||
|
- fix source URL (#905953).
|
||||||
|
|
||||||
|
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 3.5.25.3-4
|
||||||
|
- rebuild due to "jpeg8-ABI" feature drop
|
||||||
|
|
||||||
|
* Fri Dec 21 2012 Adam Tkac <atkac redhat com> - 3.5.25.3-3
|
||||||
|
- rebuild against new libjpeg
|
||||||
|
|
||||||
|
* Tue Oct 9 2012 Ville Skyttä <ville.skytta@iki.fi> - 3.5.25.3-2
|
||||||
|
- Build with $RPM_OPT_FLAGS (#729469).
|
||||||
|
|
||||||
|
* Wed Oct 3 2012 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 3.5.25.3-1
|
||||||
|
- Update to version 3.5.25.3
|
||||||
|
- Add BuildRequires for inkscape
|
||||||
|
|
||||||
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.24-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue May 8 2012 Jonathan G. Underwood <rpmb@mia.theory.phys.ucl.ac.uk> - 3.5.24-4
|
||||||
|
- Properly remove the djview3 menu entries
|
||||||
|
- Correctly package the icon files
|
||||||
|
|
||||||
|
* Sat May 5 2012 Jonathan G. Underwood <rpmb@mia.theory.phys.ucl.ac.uk> - 3.5.24-4
|
||||||
|
- Merge in changes from Fedora master branch to el6 branch to bring version 3.5.24
|
||||||
|
- Unregister djview3 menu/desktop entry on install if present
|
||||||
|
- Replace BuildRequire for libjpeg-turbo-devel with libjpeg-devel
|
||||||
|
depending on fedora/rhel version
|
||||||
|
|
||||||
|
* Fri Feb 17 2012 Orion Poplawski <orion@cora.nwra.com> - 3.5.24-3
|
||||||
|
- Don't call register-djview-menu since we don't build djview3 anymore (bug 734856)
|
||||||
|
|
||||||
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.24-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Aug 8 2011 Peter Robinson <pbrobinson@gmail.com> 3.5.24-1
|
||||||
|
- 3.5.24
|
||||||
|
- Obsolete mozplugin, dropped upstream
|
||||||
|
- Dropped djview3, use djview4
|
||||||
|
|
||||||
|
* Mon Jan 31 2011 Karsten Hopp <karsten@redhat.com> 3.5.22-2
|
||||||
|
- add include cstddefs for size_t
|
||||||
|
|
||||||
|
* Mon Nov 30 2009 Ralesh Pandit <rakesh@fedoraproject.org> 3.5.22-1
|
||||||
|
- Updated to 3.5.22 (#542221) (Spec patch by Michal Schmidt)
|
||||||
|
|
||||||
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.21-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.21-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 17 2009 Rakesh Pandit <rakesh@fedoraproject.org> 3.5.21-1
|
||||||
|
- Updated to 3.5.21
|
||||||
|
|
||||||
|
* Fri Jun 06 2008 Dennis Gilmore <dennis@ausil.us> 3.5.20-3
|
||||||
|
- BR qt3-devel
|
||||||
|
|
||||||
|
* Sun Feb 3 2008 Matthias Saou <http://freshrpms.net/> 3.5.20-2
|
||||||
|
- Update to 3.5.20-2 (#431025).
|
||||||
|
- Split off a -libs sub-package (#391201).
|
||||||
|
- Split off a -mozplugin sub-package.
|
||||||
|
|
||||||
|
* Wed Aug 22 2007 Matthias Saou <http://freshrpms.net/> 3.5.19-4
|
||||||
|
- Rebuild for new BuildID feature.
|
||||||
|
|
||||||
|
* Mon Aug 6 2007 Matthias Saou <http://freshrpms.net/> 3.5.19-3
|
||||||
|
- Update License field.
|
||||||
|
|
||||||
|
* Mon Jun 11 2007 Matthias Saou <http://freshrpms.net/> 3.5.19-2
|
||||||
|
- Include patch to remove LC_CTYPE for ja man pages, fixes sed 100% CPU issue.
|
||||||
|
|
||||||
|
* Fri Jun 8 2007 Matthias Saou <http://freshrpms.net/> 3.5.19-1
|
||||||
|
- Update to 3.5.19.
|
||||||
|
- Disable rpath on 64bit... not.
|
||||||
|
- Convert ja man pages to UTF-8.
|
||||||
|
|
||||||
|
* Tue Feb 13 2007 Matthias Saou <http://freshrpms.net/> 3.5.18-2
|
||||||
|
- Include man page patch to have man pages be identical across archs (#228359).
|
||||||
|
|
||||||
|
* Mon Feb 5 2007 Matthias Saou <http://freshrpms.net/> 3.5.18-1
|
||||||
|
- Update to 3.5.18.
|
||||||
|
- Remove no longer needed /usr/include/qt3 replacing.
|
||||||
|
- Replace desktop build requirements and scriplets with new xdg utils way.
|
||||||
|
- Include new de and fr man page translations... not! Directories are empty.
|
||||||
|
- Split -devel sub-package, as the new djview4 should build require it.
|
||||||
|
- No longer build require a web browser, the plugin always gets built now.
|
||||||
|
|
||||||
|
* Mon Aug 28 2006 Matthias Saou <http://freshrpms.net/> 3.5.17-2
|
||||||
|
- FC6 rebuild.
|
||||||
|
- Use mozilla up to FC5, and seamonkey for FC6+ and non-Fedora.
|
||||||
|
- Build require gnome-mime-data to get build time detected dirs in place.
|
||||||
|
|
||||||
|
* Sun Jul 2 2006 Matthias Saou <http://freshrpms.net/> 3.5.17-1
|
||||||
|
- Update to 3.5.17.
|
||||||
|
|
||||||
|
* Tue Mar 14 2006 Matthias Saou <http://freshrpms.net/> 3.5.16-3
|
||||||
|
- Update to CVS snapshot, fixes the build with gcc 4.1 (sf.net #1420522).. NOT!
|
||||||
|
- Include workaround for wrong qt3 includes in gui/djview/Makefile.dep.
|
||||||
|
- Add new pkgconfig ddjvuapi.pc file.
|
||||||
|
|
||||||
|
* Mon Mar 6 2006 Matthias Saou <http://freshrpms.net/> 3.5.16-2
|
||||||
|
- FC5 rebuild... nope.
|
||||||
|
|
||||||
|
* Mon Jan 30 2006 Matthias Saou <http://freshrpms.net/> 3.5.16-1
|
||||||
|
- Update to 3.5.16.
|
||||||
|
- Add conditional to build with/without modular X depending on FC version.
|
||||||
|
- Remove no longer needed gcc4 patch.
|
||||||
|
- Add extra qualification patch.
|
||||||
|
|
||||||
|
* Thu Aug 4 2005 Matthias Saou <http://freshrpms.net/> 3.5.15-2
|
||||||
|
- Include djvulibre-3.5.15-gcc401.patch to fix compilation with gcc 4.0.1.
|
||||||
|
- Add hicolor-icon-theme build req for /usr/share/icons/hicolor/48x48/mimetypes
|
||||||
|
to exist.
|
||||||
|
|
||||||
|
* Thu Aug 4 2005 Matthias Saou <http://freshrpms.net/> 3.5.15-1
|
||||||
|
- Update to 3.5.15.
|
||||||
|
- Move desktop icon to datadir/icons/hicolor.
|
||||||
|
- Add gtk-update-icon-cache calls for the new icon.
|
||||||
|
- Move browser plugin from netscape to mozilla directory instead of symlinking.
|
||||||
|
- Clean build requirements and add libtiff-devel.
|
||||||
|
- Add redhat-menus build req since it owns /etc/xdg/menus/applications.menu,
|
||||||
|
which the configure script checks to install the desktop file.
|
||||||
|
- Add OPTS to the make line (#156208 - Michael Schwendt).
|
||||||
|
|
||||||
|
* Tue May 3 2005 David Woodhouse <dwmw2@infradead.org> 3.5.14-6
|
||||||
|
- Remove files that were installed only for older KDE versions.
|
||||||
|
|
||||||
|
* Mon Feb 14 2005 David Woodhouse <dwmw2@infradead.org> 3.5.14-4
|
||||||
|
- Include %%{_datadir}/mimelnk/image/x-djvu.desktop
|
||||||
|
|
||||||
|
* Tue Nov 16 2004 Matthias Saou <http://freshrpms.net/> 3.5.14-3
|
||||||
|
- Bump release to provide Extras upgrade path.
|
||||||
|
|
||||||
|
* Fri Nov 5 2004 Matthias Saou <http://freshrpms.net/> 3.5.14-2
|
||||||
|
- Re-enable the lib/mozilla/ symlink to the plugin.
|
||||||
|
- Add source of /etc/profile.d/qt.sh to fix weird detection problem on FC3...
|
||||||
|
...doesn't fix it, some lib required by qt is probably installed after and
|
||||||
|
ldconfig not run.
|
||||||
|
- Added lib +x chmod'ing to get proper stripping and debuginfo package.
|
||||||
|
|
||||||
|
* Sat Oct 16 2004 Matthias Saou <http://freshrpms.net/> 3.5.14-2
|
||||||
|
- Added update-desktop-database scriplet calls.
|
||||||
|
|
||||||
|
* Mon Aug 16 2004 Matthias Saou <http://freshrpms.net/> 3.5.14-1
|
||||||
|
- Update to 3.5.14.
|
||||||
|
- Added newly introduced files to the package.
|
||||||
|
|
||||||
|
* Mon May 17 2004 Matthias Saou <http://freshrpms.net/> 3.5.13-1
|
||||||
|
- Update to 3.5.13.
|
||||||
|
- Added new Japanese man pages.
|
||||||
|
|
||||||
|
* Wed May 5 2004 Matthias Saou <http://freshrpms.net/> 3.5.12-4
|
||||||
|
- Changed the plugin directory for mozilla to %%{_libdir}/mozilla,
|
||||||
|
as suggested by Matteo Corti.
|
||||||
|
- Shortened the description.
|
||||||
|
|
||||||
|
* Wed Jan 14 2004 Matthias Saou <http://freshrpms.net/> 3.5.12-3
|
||||||
|
- Added XFree86-devel and libjpeg-devel build requirements.
|
||||||
|
|
||||||
|
* Fri Nov 7 2003 Matthias Saou <http://freshrpms.net/> 3.5.12-2
|
||||||
|
- Rebuild for Fedora Core 1.
|
||||||
|
|
||||||
|
* Mon Sep 1 2003 Matthias Saou <http://freshrpms.net/>
|
||||||
|
- Update to 3.5.12.
|
||||||
|
|
||||||
|
* Thu May 1 2003 Matthias Saou <http://freshrpms.net/>
|
||||||
|
- Update to 3.5.11.
|
||||||
|
|
||||||
|
* Mon Mar 31 2003 Matthias Saou <http://freshrpms.net/>
|
||||||
|
- Rebuilt for Red Hat Linux 9.
|
||||||
|
|
||||||
|
* Thu Mar 20 2003 Matthias Saou <http://freshrpms.net/>
|
||||||
|
- Update to 3.5.10.
|
||||||
|
|
||||||
|
* Wed Jul 24 2002 Matthias Saou <http://freshrpms.net/>
|
||||||
|
- Update to 3.5.7.
|
||||||
|
|
||||||
|
* Fri Jul 19 2002 Matthias Saou <http://freshrpms.net/>
|
||||||
|
- Spec file cleanup and fixes.
|
||||||
|
|
||||||
|
* Wed May 29 2002 Leon Bottou <leon@bottou.org>
|
||||||
|
- bumped to version 3.5.6-1
|
||||||
|
|
||||||
|
* Mon Apr 1 2002 Leon Bottou <leonb@users.sourceforge.net>
|
||||||
|
- bumped to version 3.5.5-2
|
||||||
|
- changed group to Applications/Publishing
|
||||||
|
|
||||||
|
* Mon Mar 25 2002 Leon Bottou <leonb@users.sourceforge.net>
|
||||||
|
- bumped to version 3.5.5-2
|
||||||
|
|
||||||
|
* Tue Jan 22 2002 Leon Bottou <leonb@users.sourceforge.net>
|
||||||
|
- bumped to version 3.5.4-1.
|
||||||
|
- fixed for properly locating the man directory.
|
||||||
|
- bumped to version 3.5.4-2.
|
||||||
|
|
||||||
|
* Wed Jan 16 2002 Leon Bottou <leonb@users.sourceforge.net>
|
||||||
|
- bumped to version 3.5.3-1
|
||||||
|
|
||||||
|
* Fri Dec 7 2001 Leon Bottou <leonb@users.sourceforge.net>
|
||||||
|
- bumped to version 3.5.2-1.
|
||||||
|
|
||||||
|
* Wed Dec 5 2001 Leon Bottou <leonb@users.sourceforge.net>
|
||||||
|
- created spec file for rh7.x.
|
||||||
|
|
Loading…
Reference in new issue