CVS log for pkgsrc/converters/libcdr/distinfo
Up to [cvs.NetBSD.org] / pkgsrc / converters / libcdr
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.15: download - view: text, markup, annotated - select for diffs
Tue Oct 26 10:06:41 2021 UTC (3 years ago) by nia
Branches: MAIN
CVS tags: pkgsrc-2024Q3-base,
pkgsrc-2024Q3,
pkgsrc-2024Q2-base,
pkgsrc-2024Q2,
pkgsrc-2024Q1-base,
pkgsrc-2024Q1,
pkgsrc-2023Q4-base,
pkgsrc-2023Q4,
pkgsrc-2023Q3-base,
pkgsrc-2023Q3,
pkgsrc-2023Q2-base,
pkgsrc-2023Q2,
pkgsrc-2023Q1-base,
pkgsrc-2023Q1,
pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
pkgsrc-2022Q3-base,
pkgsrc-2022Q3,
pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1,
pkgsrc-2021Q4-base,
pkgsrc-2021Q4,
HEAD
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +2 -2
lines
converters: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Revision 1.14: download - view: text, markup, annotated - select for diffs
Thu Oct 7 13:29:00 2021 UTC (3 years ago) by nia
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +1 -2
lines
converters: Remove SHA1 hashes for distfiles
Revision 1.13: download - view: text, markup, annotated - select for diffs
Thu Apr 1 16:16:52 2021 UTC (3 years, 7 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2021Q3-base,
pkgsrc-2021Q3,
pkgsrc-2021Q2-base,
pkgsrc-2021Q2
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +5 -6
lines
libcdr: update to 0.1.7.
Changes not found.
Revision 1.12: download - view: text, markup, annotated - select for diffs
Thu Nov 5 09:17:53 2020 UTC (3 years, 11 months ago) by ryoon
Branches: MAIN
CVS tags: pkgsrc-2021Q1-base,
pkgsrc-2021Q1,
pkgsrc-2020Q4-base,
pkgsrc-2020Q4
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -1
lines
libcdr: Fix build with textproc/icu-68.1
Revision 1.11: download - view: text, markup, annotated - select for diffs
Sun Feb 9 14:03:38 2020 UTC (4 years, 8 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2020Q3-base,
pkgsrc-2020Q3,
pkgsrc-2020Q2-base,
pkgsrc-2020Q2,
pkgsrc-2020Q1-base,
pkgsrc-2020Q1
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +5 -5
lines
libcdr: update to 0.1.6.
2020-02-02 Fridrich Štrba <fridrich.strba@bluewin.ch> [bd969c36b580f5de0cc30fe1badf4f1b8361c05d]
Fix txsm for version 15
2020-02-02 Fridrich Štrba <fridrich.strba@bluewin.ch> [496e288d9e5450ed7db8324b51a1767377f0125a]
improve readFild for versions 13 and up
2019-10-09 Albert Astals Cid <aacid@kde.org> [4b28c1a10f06e0a610d0a740b8a5839dcec9dae4]
CDROutputElementList::draw: Micro perfomance improvement
make the auto variable of the for loop const &, otherwise there's a copy
involved. Copying a shared_ptr is not very expensive but not copying it
is cheaper :)
2019-10-08 Albert Astals Cid <aacid@kde.org> [012bce64e08d45c9ce37c9c6758e8556cebf8688]
Fix -Wdeprecated-copy warnings
New gcc complains when you're using the default defined operator= but
your class has an explicitely defined copy constructor.
This is because if you implemented the copy constructor is usually
because you needed something special, so you'll need that special in the
assignment operator.
In the cases here it's not really a problem since the explicitely
defined constructors where just doing the same as the default so i've
just marked them as default as well as the assignment operator
Example:
CDRParser.cpp: In member function ‘void libcdr::CDRParser::readFont(librevenge::RVNGInputStream*, unsigned int)’:
CDRParser.cpp:2550:53: warning: implicitly-declared ‘libcdr::CDRFont& libcdr::CDRFont::operator=(const libcdr::CDRFont&)’ is deprecated [-Wdeprecated-copy]
2550 | m_fonts[fontId] = CDRFont(fontName, fontEncoding);
| ^
In file included from CDRParser.h:18,
from CDRParser.cpp:10:
CDRTypes.h:372:3: note: because ‘libcdr::CDRFont’ has user-provided ‘libcdr::CDRFont::CDRFont(const libcdr::CDRFont&)’
372 | CDRFont(const CDRFont &font)
| ^~~~~~~
2019-07-02 Stephan Bergmann <sbergman@redhat.com> [5da3e01b9aa19f8676e052e98815b861311222b9]
Avoid UB converting from double to int via unsigned
See <https://gerrit.libreoffice.org/#/c/73181/> "external/libcdr: Avoid UB
converting from double to int via unsigned" for details.
2019-01-29 Miklos Vajna <vmiklos@collabora.com> [d89355ea031e2ecaa66a0c397bd043ab43051bbc]
Fix too small loop variables
These loop variables had narrower type than the iteration's upper bound.
2019-01-28 Miklos Vajna <vmiklos@collabora.com> [00c4b331df8157dff7c251323d00ec2d63691dfb]
Add missing include
CMXParser.cpp:42:43: error: expected ')'
CDR_DEBUG_MSG(("invalid tag length %" PRIu16 "\n", tagLength));
^
CMXParser.cpp:42:19: note: to match this '('
CDR_DEBUG_MSG(("invalid tag length %" PRIu16 "\n", tagLength));
^
1 error generated.
2018-12-29 David Tardon <dtardon@redhat.com> [10211e95bb95d05c2261819c88b7f48d9db20b32]
fix conditional
Revision 1.10: download - view: text, markup, annotated - select for diffs
Wed Feb 13 22:03:46 2019 UTC (5 years, 8 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2019Q4-base,
pkgsrc-2019Q4,
pkgsrc-2019Q3-base,
pkgsrc-2019Q3,
pkgsrc-2019Q2-base,
pkgsrc-2019Q2,
pkgsrc-2019Q1-base,
pkgsrc-2019Q1
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +5 -5
lines
libcdr: update to 0.1.5.
libcdr 0.1.5
* Drop outdated MSVC project files.
* Fix several issues found by oss-fuzz.
* Switch from --enable-werror to --disable-werror as configure default.
* Miscellaneous code cleanups.
Revision 1.9: download - view: text, markup, annotated - select for diffs
Mon Oct 2 14:58:12 2017 UTC (7 years, 1 month ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2018Q4-base,
pkgsrc-2018Q4,
pkgsrc-2018Q3-base,
pkgsrc-2018Q3,
pkgsrc-2018Q2-base,
pkgsrc-2018Q2,
pkgsrc-2018Q1-base,
pkgsrc-2018Q1,
pkgsrc-2017Q4-base,
pkgsrc-2017Q4
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +5 -6
lines
libcdr: update to 0.1.4.
libcdr 0.1.4
* Fix several issues found by oss-fuzz.
* Require C++11 for build.
* Fix issues found by coverity.
* Various code cleanups.
Revision 1.8: download - view: text, markup, annotated - select for diffs
Sun Jul 24 19:00:12 2016 UTC (8 years, 3 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2017Q3-base,
pkgsrc-2017Q3,
pkgsrc-2017Q2-base,
pkgsrc-2017Q2,
pkgsrc-2017Q1-base,
pkgsrc-2017Q1,
pkgsrc-2016Q4-base,
pkgsrc-2016Q4,
pkgsrc-2016Q3-base,
pkgsrc-2016Q3
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +6 -5
lines
Updated libcdr to 0.1.3.
libcdr 0.1.3
* Improvements for CMX parsers
- More robust parsing using the pointers from CMX header
- Implement almost all fills
- Implement outline properties
- Implement embedded raster images
- Implement transparency lens for fills
* Some fixes for CDR parsers
- Consider fill/outline styles
* Tools
- Make cmx2* and cdr2* tools handle both CDR and CMX
Revision 1.7: download - view: text, markup, annotated - select for diffs
Wed Dec 30 00:18:31 2015 UTC (8 years, 10 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2016Q2-base,
pkgsrc-2016Q2,
pkgsrc-2016Q1-base,
pkgsrc-2016Q1
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +5 -6
lines
Update libcdr to 0.1.2:
libcdr 0.1.2
* Fix various crashes and hangs when reading broken files found with the
help of american-fuzzy-lop.
* Fix build with boost 1.59. (rhbz#1258127)
* Fix various problems detected by Coverity.
* Do not drop empty text lines. (tdf#67873)
* Make --help output of all command line tools more help2man-friendly.
* Several other small improvements.
Revision 1.6: download - view: text, markup, annotated - select for diffs
Tue Nov 3 01:43:49 2015 UTC (9 years ago) by agc
Branches: MAIN
CVS tags: pkgsrc-2015Q4-base,
pkgsrc-2015Q4
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -1
lines
Add SHA512 digests for distfiles for converters category
Problems found with existing distfile:
distfiles/libiconv-1.13-cp932.patch.gz
No changes made to the libiconv distinfo file.
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
Revision 1.5: download - view: text, markup, annotated - select for diffs
Mon Dec 1 11:15:21 2014 UTC (9 years, 11 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2015Q3-base,
pkgsrc-2015Q3,
pkgsrc-2015Q2-base,
pkgsrc-2015Q2,
pkgsrc-2015Q1-base,
pkgsrc-2015Q1,
pkgsrc-2014Q4-base,
pkgsrc-2014Q4
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +5 -4
lines
Update to 0.1.1:
libcdr 0.1.1
* Fix several problems found by Coverity.
* Fix crash when NULL is passed as input stream.
* Fix various crashes and hangs when reading broken files found with the
help of american-fuzzy-lop.
* Only export public symbols on Linux.
Revision 1.4: download - view: text, markup, annotated - select for diffs
Tue Jul 22 11:07:58 2014 UTC (10 years, 3 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2014Q3-base,
pkgsrc-2014Q3
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +4 -4
lines
Update to 0.1.0. Ride libwpd bump.
libcdr 0.1.0
* switch to librevenge
Revision 1.3: download - view: text, markup, annotated - select for diffs
Sun May 4 16:56:01 2014 UTC (10 years, 6 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2014Q2-base,
pkgsrc-2014Q2
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +4 -4
lines
Update to 0.0.16: NEWS not found.
Revision 1.2: download - view: text, markup, annotated - select for diffs
Sun Feb 2 07:22:15 2014 UTC (10 years, 9 months ago) by ryoon
Branches: MAIN
CVS tags: pkgsrc-2014Q1-base,
pkgsrc-2014Q1
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +4 -4
lines
Update to 0.0.14
* Remove c from USE_LANGUAGES to suppress many and many warnings
(I cannot understant what happens.)
* Disable documentation generation with doxygen
CHangelo:
Not available.
Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Sun Apr 22 17:47:42 2012 UTC (12 years, 6 months ago) by wiz
Branches: TNF
CVS tags: pkgsrc-2013Q4-base,
pkgsrc-2013Q4,
pkgsrc-2013Q3-base,
pkgsrc-2013Q3,
pkgsrc-2013Q2-base,
pkgsrc-2013Q2,
pkgsrc-2013Q1-base,
pkgsrc-2013Q1,
pkgsrc-2012Q4-base,
pkgsrc-2012Q4,
pkgsrc-2012Q3-base,
pkgsrc-2012Q3,
pkgsrc-2012Q2-base,
pkgsrc-2012Q2,
pkgsrc-20120422
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0
lines
Initial import of libcdr-0.0.6 from wip, packaged by Francois Tigeot.
Libcdr is a library providing the ability to interpret and import
Corel Draw drawings into various applications. You can find it being
used in libreoffice.
Revision 1.1: download - view: text, markup, annotated - select for diffs
Sun Apr 22 17:47:42 2012 UTC (12 years, 6 months ago) by wiz
Branches: MAIN
Initial revision
CVSweb <webmaster@jp.NetBSD.org>