./devel/libmaa, General purpose data structures and functions

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


Branch: CURRENT, Version: 1.4.7nb1, Package name: libmaa-1.4.7nb1, Maintainer: cheusov

The LIBMAA library provides many low-level data structures which are
helpful for writing compilers, including hash tables, sets, lists,
debugging support, and memory management. Although LIBMAA was
designed and implemented as a foundation for the Khepera
Transformation System, the data structures are generally applicable to
a wide range of programming problems.

The memory management routines are especially helpful for improving the
performance of memory-intensive applications.


Required to build:
[devel/mk-configure] [pkgtools/cwrappers]

Master sites:

Filesize: 169.656 KB

Version history: (Expand)


CVS history: (Expand)


   2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016)
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums

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

Could not be committed due to merge conflict:
devel/py-traitlets/distinfo

The following distfiles were unfetchable (note: some may be only fetched
conditionally):

./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
   2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017)
Log message:
devel: Remove SHA1 hashes for distfiles
   2020-06-16 14:40:23 by Leonardo Taccari | Files touched by this commit (3)
Log message:
libmaa: Limit hostname to 64 characters to avoid possible truncation

Discussed and ok <cheusov>

PKGREVISION++
   2020-04-11 00:44:23 by Aleksey Cheusov | Files touched by this commit (2)
Log message:
Update libmaa to 1.4.7:

  Fix incorrect work of set_* where hash function generates full
  ulong_t hash value

  hsh_string_hash generates full 64bit hash value on platforms where
  sizeof(long) == 8

  Improve build and test system

  tests/err: minor fix, target "test" should not remove _mkc_* and .o files

  Avoid trailing \n in format argument for err_* functions, no need
  for it any longer

  tests/err/errtest.c: fix another compilation failure due to __wur
  (warning used result)
   2020-04-02 18:50:23 by Aleksey Cheusov | Files touched by this commit (1)
Log message:
Temporarily disable "err" test; it will be fixed soon in upstream
   2020-03-30 20:39:47 by Aleksey Cheusov | Files touched by this commit (2)
Log message:
Update to libmaa-1.4.6

  Add missing fix (compilation failure) for tests/err/errtest.c
   2020-03-30 15:09:54 by Aleksey Cheusov | Files touched by this commit (3)
Log message:
Update to libmaa-1.4.5
  * err_* functions:
      Fix segfault caused by "ap" is used twice.  Solution is to va_copy
          it and use copied "ap" for printing to stderr.
    Improve formatting (no empty lines in log files)
  * err_set_program_name: handle correctly NULL argument
  * log_mkpath function: avoid use of alloca(3)
  * hsh_pointer_compare function now follows -1/0/1 logic
  * Add more tests for log_*, err_*, hsh_* and set_* function
   2019-04-23 21:02:48 by Aleksey Cheusov | Files touched by this commit (2)
Log message:
Update to 1.4.4
  Fix compilation failure using gcc-8.
  Thanks to Robert Luberda!