./textproc/libxlsxwriter, C library for creating Microsoft Excel files

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 1.1.5nb2, Package name: libxlsxwriter-1.1.5nb2, Maintainer: sjmulder

C library that can be used to write text, numbers, formulas and hyperlinks to
multiple worksheets in a Microsoft Excel 2007+ XLSX file.

It supports features such as full formatting support, merged cells, defined
names, autofilters and charts.


Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 21036.568 KB

Version history: (Expand)


CVS history: (Expand)


   2023-10-25 00:11:51 by Thomas Klausner | Files touched by this commit (2298)
Log message:
*: bump for openssl 3
   2023-08-14 07:25:36 by Thomas Klausner | Files touched by this commit (1247)
Log message:
*: recursive bump for Python 3.11 as new default
   2023-04-19 16:36:14 by Sijmen J. Mulder | Files touched by this commit (4)
Log message:
textproc/libxlsxwriter: Update to 1.1.5

Changes:
 - Added support for writing a workbook to a memory buffer instead of
   to a file via the output_buffer parameter of workbook_new_opt().
 - Add support for using in-memory data instead of temporary files on
   systems where fmemopen() and open_memstream() are supported. This
   requires the USE_MEM_FILE compilation option.
   2021-11-19 23:13:32 by Sijmen J. Mulder | Files touched by this commit (5)
Log message:
textproc/libxlsxwriter: Update to 1.1.4

Changes:
 - Added support for Worksheet tables. Tables in Excel are a way of
   grouping a range of cells into a single entity that has common
   formatting or that can be referenced from formulas. Tables can have
   column headers, autofilters, total rows, column formulas and default
   formatting. See working_with_tables and tables.c.
 - Added support for adding a macro button to a worksheet. See macro.c.

Package changes:
 - Fixed test target (missing py.test version suffix).
   2021-10-26 13:23:42 by Nia Alarie | Files touched by this commit (1161)
Log message:
textproc: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes

Unfetchable distfiles (fetched conditionally?):
./textproc/convertlit/distinfo clit18src.zip
   2021-10-07 17:02:49 by Nia Alarie | Files touched by this commit (1162)
Log message:
textproc: Remove SHA1 hashes for distfiles
   2021-08-10 14:05:40 by Sijmen J. Mulder | Files touched by this commit (2)
Log message:
textproc/libxlsxwriter: Update to 1.1.3

Fixes use of reserved C++ 'operator' keyword.
   2021-08-09 09:05:23 by Sijmen J. Mulder | Files touched by this commit (4)
Log message:
textproc/libxlsxwriter: Update to 1.1.2

- Added support for autofilter rules.
- Added Description/Alt Text and Decorative accessibility options for
  charts. These options were already available for images
- Fix incorrect use of LDFLAGS when building object files.
- Fix for not using LDFLAGS when linking tests.
- Fix time type, Excel always needs 64-bit values so time_t is not
  always sufficient.
- Fix minor const issue.