debian/0000775000000000000000000000000012276707117007202 5ustar debian/libquazip0.manpages0000664000000000000000000000002512276706040012766 0ustar debian/libquazip0.1 debian/copyright0000664000000000000000000001172612276706040011136 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: quazip Source: https://sourceforge.net/projects/quazip/ Files: * Copyright: 2005-2011 Sergey A. Tachenov License: GPL2+ or LGPL This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. . You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. Comment: On Debian systems, the complete text of the GNU Lesser General Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. Remark: Here we are using LGPL to be able to link against a BSD licensed program Files: quazip/quazip/{crypt.h ioapi.c unzip.[ch] z*} Copyright: 1998-2005 Gilles Vollant, Jean-loup Gailly and Mark Adler License: Info-ZIP Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the above disclaimer and the following restrictions: . 1. Redistributions of source code (in whole or in part) must retain the above copyright notice, definition, disclaimer, and this list of conditions. . 2. Redistributions in binary form (compiled executables and libraries) must reproduce the above copyright notice, definition, disclaimer, and this list of conditions in documentation and/or other materials provided with the distribution. The sole exception to this condition is redistribution of a standard UnZipSFX binary (including SFXWiz) as part of a self-extracting archive; that is permitted without inclusion of this license, as long as the normal SFX banner has not been removed from the binary or disabled. . 3. Altered versions--including, but not limited to, ports to new operating systems, existing ports with new graphical interfaces, versions with modified or added functionality, and dynamic, shared, or static library versions not from Info-ZIP--must be plainly marked as such and must not be misrepresented as being the original source or, if binaries, compiled from the original source. Such altered versions also must not be misrepresented as being Info-ZIP releases--including, but not limited to, labeling of the altered versions with the names "Info-ZIP" (or any variation thereof, including, but not limited to, different capitalizations), "Pocket UnZip," "WiZ" or "MacZip" without the explicit permission of Info-ZIP. Such altered versions are further prohibited from misrepresentative use of the Zip-Bugs or Info-ZIP e-mail addresses or the Info-ZIP URL(s), such as to imply Info-ZIP will provide support for the altered versions. . 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its own source and binary releases. Files: debian/* Copyright: 2012, Eric Maeker 2012, Andreas Tille License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/libquazip0.lintian-overrides0000664000000000000000000000012112276706040014626 0ustar libquazip0: hardening-no-fortify-functions usr/lib/i386-linux-gnu/libquazip.so.* debian/libquazip-doc.docs0000664000000000000000000000003212276706040012604 0ustar NEWS README.txt doc/html debian/watch0000664000000000000000000000022112276706040010220 0ustar version=3 http://sf.net/quazip/quazip-(.+)\.(?:tar\.gz) # http://sourceforge.net/projects/quazip/files/quazip/0.4.4/quazip-0.4.4.tar.gz/download debian/libquazip0.10000664000000000000000000000141312276706040011335 0ustar .TH QuaZIP 1 "01 June 2012" .SH NAME quazip - C++/Qt wrapper for UNZIP/ZIP .SH SYNOPSIS .B quazip .SH DESCRIPTION .B QuaZIP is a simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package that can be used to access ZIP archives. It uses Trolltech's Qt toolkit. . .B QuaZIP allows you to access files inside ZIP archives using QIODevice API, and that means that you can also use QTextStream, QDataStream or whatever you would like to use on your zipped files. . .B QuaZIP provides complete abstraction of the ZIP/UNZIP API, for both reading from and writing to ZIP archives. .SH SEE ALSO .BR minizip (1), .BR miniunzip (1), .BR zlib (3), .BR zip (1). .SH AUTHOR This program was written by Sergey A. Tachenov. This manual page was written by Eric Maeker . debian/rules0000775000000000000000000000336112276707020010256 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # Extract the current version number and package name DEBIAN := $(shell dpkg-parsechangelog | grep ^Version: | cut -d' ' -f2) DEBVERS := $(shell echo '$(DEBIAN)' | cut -d- -f1) VERSION := $(shell echo '$(DEBVERS)' | sed -e 's/[+-].*//' -e 's/~//g') name := $(shell dpkg-parsechangelog | sed -n 's/^Source: //p') DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) QMAKE_GENERIC := \ LIBS+=-lz \ VERSION=$(VERSION) \ LIB_ARCH="$(DEB_HOST_MULTIARCH)" QMAKE_STATIC := CONFIG+=staticlib -o Makefile.Static %: dh $@ --buildsystem=qmake_qt4 --parallel --dbg-package=libquazip0-dbg override_dh_auto_configure: dh_auto_configure -- $(QMAKE_GENERIC) $(extra_configure_opts) dh_auto_configure -- $(QMAKE_GENERIC) $(QMAKE_STATIC) $(extra_configure_opts) cp NEWS.txt NEWS override_dh_auto_clean: rm -Rf quazip/.obj rm -Rf quazip/.moc rm -Rf quazip/libquazip.so.* rm -Rf quazip/libquazip.so rm -Rf quazip/libquazip.a find . -name Makefile -delete rm -Rf NEWS rm -Rf Makefile.Static quazip/Makefile.Static dh_auto_clean override_dh_auto_build: # Build the static lib dh_auto_build -Smakefile -- -f Makefile.Static rm -Rf quazip/.obj rm -Rf quazip/.moc # Build the dynamic lib dh_auto_build -Smakefile override_dh_auto_install: dh_auto_install -Smakefile -- INSTALL_ROOT=$(CURDIR)/debian/tmp cp -a quazip/libquazip.a $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH) override_dh_installchangelogs: dh_installchangelogs -plibquazip0 NEWS upstream dh_installchangelogs -plibquazip0-dev NEWS upstream dh_installchangelogs -plibquazip0-dbg NEWS upstream #dh_installchangelogs -plibquazip0-headers NEWS upstream dh_installchangelogs debian/source/0000775000000000000000000000000012276706040010474 5ustar debian/source/format0000664000000000000000000000001412276706040011702 0ustar 3.0 (quilt) debian/libquazip0-dev.install0000664000000000000000000000010312276706040013412 0ustar usr/lib/*/libquazip.so usr/lib/*/libquazip.a usr/include/quazip/* debian/changelog0000664000000000000000000000361412276706056011061 0ustar libquazip (0.6.2-0ubuntu1) trusty; urgency=medium * New upstream release -- Jonathan Riddell Wed, 12 Feb 2014 14:58:42 +0000 libquazip (0.5.1-2) unstable; urgency=low [ Rohan Garg ] * Make sure libquazip-dev depends on zlib1g-dev (Closes: #712905) [ Andreas Tille ] * Remove the just created README.Debian that explains rather historic status than the current package * debian/control: - Standards-Version: 3.9.4 - DM-Upload-Allowed removed - cme fix dpkg-control -- Andreas Tille Fri, 21 Jun 2013 08:27:25 +0200 libquazip (0.5.1-1) unstable; urgency=low [ Eric Maeker ] * New upstream * debian/patch: Updating patches (multiarch, remove tests) * Static lib * debian/rules: building the static version of the lib * debian/libquazip0-dev.install: adding the static lib to the dev package * debian/rules: libquazip0-headers was removed * Adding debian/libquazip-doc.lintian-overrides [ Andreas Tille ] * remove debian/d-{devlibdeps,shlibmove} which were injected as a hack aroung not yet working d-shlibs but are not used anyway -- Eric Maeker Mon, 18 Mar 2013 18:02:42 +0100 libquazip (0.5-1) unstable; urgency=low [ Eric Maeker ] * New upstream * creating multi-arch binaries * debian/rules * debian/libquazip0.install * debian/libquazip0-dev.install * debian/copyright: removed symlink * including upstream changelog in all packages * debian/libquazip-doc: lintian overrides duplicate files [ Andreas Tille ] * debian/control: removed dependency from libquazip0-headers which is no part of the package -- Eric Maeker Tue, 18 Dec 2012 08:34:13 +0100 libquazip (0.4.4-1) unstable; urgency=low * Initial release (Closes: #675276) -- Eric Maeker Mon, 30 May 2012 12:00:00 +0100 debian/compat0000664000000000000000000000000212276706040010372 0ustar 9 debian/libquazip0.install0000664000000000000000000000003112276706040012636 0ustar usr/lib/*/libquazip.so.* debian/control0000664000000000000000000000671712276706212010613 0ustar Source: libquazip Maintainer: Kubuntu Developers XSBC-Original-Maintainer: Debian Med Packaging Team Uploaders: Eric Maeker , Andreas Tille Section: libs Priority: optional Build-Depends: debhelper (>= 9), libqt4-dev (>= 4:4.7.4), libxext-dev, zlib1g-dev Standards-Version: 3.9.4 Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/libquazip/trunk/ Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/libquazip/trunk/ Homepage: https://sourceforge.net/projects/quazip/ Package: libquazip0 Architecture: any Multi-Arch: same Depends: ${shlibs:Depends}, ${misc:Depends} Suggests: libquazip-doc Pre-Depends: ${misc:Pre-Depends} Description: C++ wrapper wrapper for ZIP/UNZIP QuaZIP is a simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package that can be used to access ZIP archives. It uses Trolltech's Qt toolkit. . QuaZIP allows you to access files inside ZIP archives using QIODevice API, and that means that you can also use QTextStream, QDataStream or whatever you would like to use on your zipped files. . QuaZIP provides complete abstraction of the ZIP/UNZIP API, for both reading from and writing to ZIP archives. Package: libquazip0-dev Architecture: any Multi-Arch: same Section: libdevel Depends: libquazip0 (= ${binary:Version}), ${misc:Depends}, zlib1g-dev Conflicts: libquazip-dev Provides: libquazip-dev Description: C++ wrapper wrapper for ZIP/UNZIP (development files) QuaZIP is a simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package that can be used to access ZIP archives. It uses Trolltech's Qt toolkit. . QuaZIP allows you to access files inside ZIP archives using QIODevice API, and that means that you can also use QTextStream, QDataStream or whatever you would like to use on your zipped files. . QuaZIP provides complete abstraction of the ZIP/UNZIP API, for both reading from and writing to ZIP archives. . This package contains the development files. Package: libquazip0-dbg Architecture: any Multi-Arch: same Section: debug Priority: extra Depends: libquazip0 (= ${binary:Version}), ${misc:Depends} Description: debugging symbols for libquazip QuaZIP is a simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package that can be used to access ZIP archives. It uses Trolltech's Qt toolkit. . QuaZIP allows you to access files inside ZIP archives using QIODevice API, and that means that you can also use QTextStream, QDataStream or whatever you would like to use on your zipped files. . QuaZIP provides complete abstraction of the ZIP/UNZIP API, for both reading from and writing to ZIP archives. . This package contains the debugging symbols for Qt Creator IDE. Package: libquazip-doc Architecture: all Multi-Arch: foreign Section: doc Depends: ${misc:Depends} Description: C++ wrapper for ZIP/UNZIP (documentation) QuaZIP is a simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package that can be used to access ZIP archives. It uses Trolltech's Qt toolkit. . QuaZIP allows you to access files inside ZIP archives using QIODevice API, and that means that you can also use QTextStream, QDataStream or whatever you would like to use on your zipped files. . QuaZIP provides complete abstraction of the ZIP/UNZIP API, for both reading from and writing to ZIP archives. . This package contains the API documentation in HTML. debian/libquazip-doc.lintian-overrides0000664000000000000000000000205712276706040015323 0ustar # Lintian reports duplicate files in the doxygen autogenerated output # that should not be concidered as duplicatees libquazip-doc: duplicate-files usr/share/doc/libquazip-doc/html/classQuaAdler32__coll__graph.map usr/share/doc/libquazip-doc/html/classQuaAdler32__inherit__graph.map usr/share/doc/libquazip-doc/html/classQuaCrc32__coll__graph.map usr/share/doc/libquazip-doc/html/classQuaCrc32__inherit__graph.map libquazip-doc: duplicate-files usr/share/doc/libquazip-doc/html/classQuaAdler32__coll__graph.md5 usr/share/doc/libquazip-doc/html/classQuaAdler32__inherit__graph.md5 libquazip-doc: duplicate-files usr/share/doc/libquazip-doc/html/classQuaAdler32__coll__graph.png usr/share/doc/libquazip-doc/html/classQuaAdler32__inherit__graph.png libquazip-doc: duplicate-files usr/share/doc/libquazip-doc/html/classQuaCrc32__coll__graph.md5 usr/share/doc/libquazip-doc/html/classQuaCrc32__inherit__graph.md5 libquazip-doc: duplicate-files usr/share/doc/libquazip-doc/html/classQuaCrc32__coll__graph.png usr/share/doc/libquazip-doc/html/classQuaCrc32__inherit__graph.png debian/patches/0000775000000000000000000000000012276706327010633 5ustar debian/patches/no-test-build.patch0000664000000000000000000000103312276706327014337 0ustar Author: Eric Maeker Description: Do not build testing apps libquazip comes with testing applications that we do not need in the package. Last-Update: 2013-03-18 Forwarded: no Index: quazip-0.6.2/quazip.pro =================================================================== --- quazip-0.6.2.orig/quazip.pro 2014-02-12 15:01:40.851420646 +0000 +++ quazip-0.6.2/quazip.pro 2014-02-12 15:01:40.847420646 +0000 @@ -1,3 +1,3 @@ TEMPLATE=subdirs -SUBDIRS=quazip qztest +SUBDIRS=quazip #qztest qztest.depends = quazip debian/patches/series0000775000000000000000000000005412276706040012042 0ustar multiarch_version.patch no-test-build.patch debian/patches/multiarch_version.patch0000664000000000000000000000161112276706322015403 0ustar Author: Eric Maeker Description: Correctly define the version and the sublib path libquazip comes with a default version=1.0.0 and no sublib path (for multi-arch build). Last-Update: 2013-03-18 Forwarded: no Index: quazip-0.6.2/quazip/quazip.pro =================================================================== --- quazip-0.6.2.orig/quazip/quazip.pro 2014-02-12 15:01:20.787420838 +0000 +++ quazip-0.6.2/quazip/quazip.pro 2014-02-12 15:01:35.635420696 +0000 @@ -1,7 +1,7 @@ TEMPLATE = lib CONFIG += qt warn_on QT -= gui -!win32:VERSION = 1.0.0 +#!win32:VERSION = 1.0.0 DEFINES += QUAZIP_BUILD CONFIG(staticlib): DEFINES += QUAZIP_STATIC @@ -12,7 +12,7 @@ unix:!symbian { headers.path=$$PREFIX/include/quazip headers.files=$$HEADERS - target.path=$$PREFIX/lib + target.path=$$PREFIX/lib/$${LIB_ARCH} INSTALLS += headers target OBJECTS_DIR=.obj debian/libquazip0.symbols_fixed_revision0000664000000000000000000001451212276706040015766 0ustar libquazip.so.0 libquazip0 #MINVER# _Z24qiodevice_open_file_funcPvS_i@Base 0.4.4 _Z24qiodevice_read_file_funcPvS_S_m@Base 0.4.4 _Z24qiodevice_seek_file_funcPvS_mi@Base 0.4.4 _Z24qiodevice_tell_file_funcPvS_@Base 0.4.4 _Z25qiodevice_close_file_funcPvS_@Base 0.4.4 _Z25qiodevice_error_file_funcPvS_@Base 0.4.4 _Z25qiodevice_write_file_funcPvS_PKvm@Base 0.4.4 _ZN10JlCompress10extractDirE7QStringS0_@Base 0.4.4 _ZN10JlCompress11compressDirE7QStringS0_b@Base 0.4.4 _ZN10JlCompress11extractFileE7QStringS0_S0_@Base 0.4.4 _ZN10JlCompress11getFileListE7QString@Base 0.4.4 _ZN10JlCompress12compressFileE7QStringS0_@Base 0.4.4 _ZN10JlCompress12extractFilesE7QString11QStringListS0_@Base 0.4.4 _ZN10JlCompress13compressFilesE7QString11QStringList@Base 0.4.4 _ZN10QuaAdler325resetEv@Base 0.4.4 _ZN10QuaAdler325valueEv@Base 0.4.4 _ZN10QuaAdler326updateERK10QByteArray@Base 0.4.4 _ZN10QuaAdler329calculateERK10QByteArray@Base 0.4.4 _ZN10QuaAdler32C1Ev@Base 0.4.4 _ZN10QuaAdler32C2Ev@Base 0.4.4 _ZN10QuaZipFile10setZipNameERK7QString@Base 0.4.4 _ZN10QuaZipFile11getFileInfoEP14QuaZipFileInfo@Base 0.4.4 _ZN10QuaZipFile11setFileNameERK7QStringN6QuaZip15CaseSensitivityE@Base 0.4.4 _ZN10QuaZipFile4openE6QFlagsIN9QIODevice12OpenModeFlagEE@Base 0.4.4 _ZN10QuaZipFile4openE6QFlagsIN9QIODevice12OpenModeFlagEEPiS4_bPKc@Base 0.4.4 _ZN10QuaZipFile4openE6QFlagsIN9QIODevice12OpenModeFlagEERK13QuaZipNewInfoPKcjiibiii@Base 0.4.4 _ZN10QuaZipFile5closeEv@Base 0.4.4 _ZN10QuaZipFile6setZipEP6QuaZip@Base 0.4.4 _ZN10QuaZipFile8readDataEPcx@Base 0.4.4 _ZN10QuaZipFile9writeDataEPKcx@Base 0.4.4 _ZN10QuaZipFileC1EP6QuaZipP7QObject@Base 0.4.4 _ZN10QuaZipFileC1EP7QObject@Base 0.4.4 _ZN10QuaZipFileC1ERK7QStringP7QObject@Base 0.4.4 _ZN10QuaZipFileC1ERK7QStringS2_N6QuaZip15CaseSensitivityEP7QObject@Base 0.4.4 _ZN10QuaZipFileC1Ev@Base 0.4.4 _ZN10QuaZipFileC2EP6QuaZipP7QObject@Base 0.4.4 _ZN10QuaZipFileC2EP7QObject@Base 0.4.4 _ZN10QuaZipFileC2ERK7QStringP7QObject@Base 0.4.4 _ZN10QuaZipFileC2ERK7QStringS2_N6QuaZip15CaseSensitivityEP7QObject@Base 0.4.4 _ZN10QuaZipFileC2Ev@Base 0.4.4 _ZN10QuaZipFileD0Ev@Base 0.4.4 _ZN10QuaZipFileD1Ev@Base 0.4.4 _ZN10QuaZipFileD2Ev@Base 0.4.4 _ZN13QuaZipNewInfo15setFileDateTimeERK7QString@Base 0.4.4 _ZN13QuaZipNewInfoC1ERK7QString@Base 0.4.4 _ZN13QuaZipNewInfoC1ERK7QStringS2_@Base 0.4.4 _ZN13QuaZipNewInfoC2ERK7QString@Base 0.4.4 _ZN13QuaZipNewInfoC2ERK7QStringS2_@Base 0.4.4 _ZN13QuaZipNewInfoD1Ev@Base 0.4.4 _ZN13QuaZipNewInfoD2Ev@Base 0.4.4 _ZN14QuaZipFileInfoD1Ev@Base 0.4.4 _ZN14QuaZipFileInfoD2Ev@Base 0.4.4 _ZN6QuaZip10getUnzFileEv@Base 0.4.4 _ZN6QuaZip10getZipFileEv@Base 0.4.4 _ZN6QuaZip10setCommentERK7QString@Base 0.4.4 _ZN6QuaZip10setZipNameERK7QString@Base 0.4.4 _ZN6QuaZip11setIoDeviceEP9QIODevice@Base 0.4.4 _ZN6QuaZip12goToNextFileEv@Base 0.4.4 _ZN6QuaZip13goToFirstFileEv@Base 0.4.4 _ZN6QuaZip14setCurrentFileERK7QStringNS_15CaseSensitivityE@Base 0.4.4 _ZN6QuaZip15setCommentCodecEP10QTextCodec@Base 0.4.4 _ZN6QuaZip15setCommentCodecEPKc@Base 0.4.4 _ZN6QuaZip16setFileNameCodecEP10QTextCodec@Base 0.4.4 _ZN6QuaZip16setFileNameCodecEPKc@Base 0.4.4 _ZN6QuaZip31setDataDescriptorWritingEnabledEb@Base 0.4.4 _ZN6QuaZip4openENS_4ModeEP19zlib_filefunc_def_s@Base 0.4.4 _ZN6QuaZip5closeEv@Base 0.4.4 _ZN6QuaZipC1EP9QIODevice@Base 0.4.4 _ZN6QuaZipC1ERK7QString@Base 0.4.4 _ZN6QuaZipC1Ev@Base 0.4.4 _ZN6QuaZipC2EP9QIODevice@Base 0.4.4 _ZN6QuaZipC2ERK7QString@Base 0.4.4 _ZN6QuaZipC2Ev@Base 0.4.4 _ZN6QuaZipD1Ev@Base 0.4.4 _ZN6QuaZipD2Ev@Base 0.4.4 _ZN7QStringD1Ev@Base 0.4.4 _ZN7QStringD2Ev@Base 0.4.4 _ZN8QuaCrc325resetEv@Base 0.4.4 _ZN8QuaCrc325valueEv@Base 0.4.4 _ZN8QuaCrc326updateERK10QByteArray@Base 0.4.4 _ZN8QuaCrc329calculateERK10QByteArray@Base 0.4.4 _ZN8QuaCrc32C1Ev@Base 0.4.4 _ZN8QuaCrc32C2Ev@Base 0.4.4 _ZNK10QuaZipFile10getZipNameEv@Base 0.4.4 _ZNK10QuaZipFile10metaObjectEv@Base 0.4.4 _ZNK10QuaZipFile11getFileNameEv@Base 0.4.4 _ZNK10QuaZipFile11getZipErrorEv@Base 0.4.4 _ZNK10QuaZipFile12isSequentialEv@Base 0.4.4 _ZNK10QuaZipFile14bytesAvailableEv@Base 0.4.4 _ZNK10QuaZipFile17getActualFileNameEv@Base 0.4.4 _ZNK10QuaZipFile18getCaseSensitivityEv@Base 0.4.4 _ZNK10QuaZipFile3posEv@Base 0.4.4 _ZNK10QuaZipFile4sizeEv@Base 0.4.4 _ZNK10QuaZipFile5atEndEv@Base 0.4.4 _ZNK10QuaZipFile5csizeEv@Base 0.4.4 _ZNK10QuaZipFile5isRawEv@Base 0.4.4 _ZNK10QuaZipFile5usizeEv@Base 0.4.4 _ZNK10QuaZipFile6getZipEv@Base 0.4.4 _ZNK6QuaZip10getCommentEv@Base 0.4.4 _ZNK6QuaZip10getZipNameEv@Base 0.4.4 _ZNK6QuaZip11getIoDeviceEv@Base 0.4.4 _ZNK6QuaZip11getZipErrorEv@Base 0.4.4 _ZNK6QuaZip14hasCurrentFileEv@Base 0.4.4 _ZNK6QuaZip15getCommentCodecEv@Base 0.4.4 _ZNK6QuaZip15getEntriesCountEv@Base 0.4.4 _ZNK6QuaZip15getFileInfoListEv@Base 0.4.4 _ZNK6QuaZip15getFileNameListEv@Base 0.4.4 _ZNK6QuaZip16getFileNameCodecEv@Base 0.4.4 _ZNK6QuaZip18getCurrentFileInfoEP14QuaZipFileInfo@Base 0.4.4 _ZNK6QuaZip18getCurrentFileNameEv@Base 0.4.4 _ZNK6QuaZip30isDataDescriptorWritingEnabledEv@Base 0.4.4 _ZNK6QuaZip6isOpenEv@Base 0.4.4 _ZNK6QuaZip7getModeEv@Base 0.4.4 _ZTI10QuaAdler32@Base 0.4.4 _ZTI10QuaZipFile@Base 0.4.4 _ZTI13QuaChecksum32@Base 0.4.4 _ZTI8QuaCrc32@Base 0.4.4 _ZTS10QuaAdler32@Base 0.4.4 _ZTS10QuaZipFile@Base 0.4.4 _ZTS13QuaChecksum32@Base 0.4.4 _ZTS8QuaCrc32@Base 0.4.4 _ZTV10QuaAdler32@Base 0.4.4 _ZTV10QuaZipFile@Base 0.4.4 _ZTV13QuaChecksum32@Base 0.4.4 _ZTV8QuaCrc32@Base 0.4.4 fill_qiodevice_filefunc@Base 0.4.4 unzClose@Base 0.4.4 unzCloseCurrentFile@Base 0.4.4 unzGetCurrentFileInfo@Base 0.4.4 unzGetFilePos@Base 0.4.4 unzGetGlobalComment@Base 0.4.4 unzGetGlobalInfo@Base 0.4.4 unzGetLocalExtrafield@Base 0.4.4 unzGetOffset@Base 0.4.4 unzGoToFilePos@Base 0.4.4 unzGoToFirstFile@Base 0.4.4 unzGoToNextFile@Base 0.4.4 unzLocateFile@Base 0.4.4 unzOpen2@Base 0.4.4 unzOpen@Base 0.4.4 unzOpenCurrentFile2@Base 0.4.4 unzOpenCurrentFile3@Base 0.4.4 unzOpenCurrentFile@Base 0.4.4 unzOpenCurrentFilePassword@Base 0.4.4 unzReadCurrentFile@Base 0.4.4 unzSetOffset@Base 0.4.4 unzStringFileNameCompare@Base 0.4.4 unz_copyright@Base 0.4.4 unzeof@Base 0.4.4 unztell@Base 0.4.4 zipClearFlags@Base 0.4.4 zipClose@Base 0.4.4 zipCloseFileInZip@Base 0.4.4 zipCloseFileInZipRaw@Base 0.4.4 zipOpen2@Base 0.4.4 zipOpen@Base 0.4.4 zipOpenNewFileInZip2@Base 0.4.4 zipOpenNewFileInZip3@Base 0.4.4 zipOpenNewFileInZip@Base 0.4.4 zipSetFlags@Base 0.4.4 zipWriteInFileInZip@Base 0.4.4 zip_copyright@Base 0.4.4 debian/libquazip-doc.doc-base0000664000000000000000000000130312276706040013333 0ustar Document: libquazip-doc Title: libquazip Author: Sergey A. Tachenov Abstract: C++ wrapper wrapper for ZIP/UNZIP QuaZIP is a simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package that can be used to access ZIP archives. It uses Trolltech's Qt toolkit. . QuaZIP allows you to access files inside ZIP archives using QIODevice API, and that means that you can also use QTextStream, QDataStream or whatever you would like to use on your zipped files. . QuaZIP provides complete abstraction of the ZIP/UNZIP API, for both reading from and writing to ZIP archives. Section: Programming/C++ Format: HTML Index: /usr/share/doc/libquazip-doc/html/index.html Files: /usr/share/doc/libquazip-doc/html/*