Пакет python-module-larch: Информация

    Исходный пакет: python-module-larch
    Версия: 1.20131130-alt1
    Собран:  21 августа 2015 г. 2:28 в задании #147937
    Категория: Разработка/Python
    Сообщить об ошибке в пакете
    Домашняя страница: http://liw.fi/larch/

    Лицензия: GPLv3+
    О пакете: Python B-tree library
    Описание: 
    This is an implementation of particular kind of B-tree, based on
    research by Ohad Rodeh. See "B-trees, Shadowing, and Clones" (copied
    here with permission of author) for details on the data
    structure. This is the same data structure that btrfs uses. Note that
    my implementation is independent from the btrfs one, and might differ
    from what the paper describes.
    
    The distinctive feature of this B-tree is that a node is never
    modified (sort-of). Instead, all updates are done by
    copy-on-write. Among other things, this makes it easy to clone a tree,
    and modify only the clone, while other processes access the original
    tree. This is utterly wonderful for my backup application, and that's
    the reason I wrote larch in the first place.
    
    I have tried to keep the implementation generic and flexible, so that
    you may use it in a variety of situations. For example, the tree
    itself does not decide where its nodes are stored: you provide a class
    that does that for it. I have two implementations of the NodeStore
    class, one for in-memory and one for on-disk storage.
    
    The tree attempts to guarantee this: all modifications you make will
    be safely stored in the node store when the larch.Forest.commit method
    is called. After that, unless you actually modify the committed tree
    yourself, it will be safe from further modifications. (You need to
    take care to create a new tree for further modifications, though.)

    Список rpm-пакетов, предоставляемых данным srpm-пакетом:
    python-module-larch (noarch)
    python-module-larch-doc (noarch)

    Сопровождающий: Vitaly Lipatov

    Список участников:
    Vitaly Lipatov
    Igor Vlasenko

      1. python-devel
      2. python-module-cliapp
      3. python-module-coverage-test-runner
      4. rpm-build-python
      5. python-module-sphinx
      6. python-module-tracing
      7. python-module-ttystatus
      8. cmdtest

    Последнее изменение


    21 августа 2015 г. Vitaly Lipatov 1.20131130-alt1
    - new version 1.20131130 (with rpmrb script)
    13 августа 2015 г. Vitaly Lipatov 1.20130808-alt3
    - human build for ALT Linux Sisyphus
    7 июля 2014 г. Igor Vlasenko 1.20130808-alt1_2
    - update to new release by fcimport