Revisions of libgpiod

buildservice-autocommit accepted request 1010612 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 34)
baserev update by copy to link target
Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) accepted request 1010611 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 33)
- Use Catch2-2-devel on Tumbleweed since libgpiod is not ready
  for Catch2 v3
Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) accepted request 955478 from Fabian Vogt's avatar Fabian Vogt (Vogtinator) (revision 32)
- Update to v1.6.3:
  * Bug fixes:
    - fix uninitialized default_vals being passed to gpiod_LineBulk_request()
      in Python bindings
    - fix building C++ bindings with clang
    - fix one of the line request test cases
- Update to v1.6.2:
  * Improvements:
    - allow to build the library with pre linux v5.5 kernel headers
- Update to v1.6.1:
  * Bug fixes:
    - fix incorrect object size of gpiod.LineBulk in Python bindings
    - fix a crash in Line.request() when it's called without keyword arguments
- Update to v1.6:
  * New features:
    - add a standardized '__version__' module attribute in Python bindings
    - print the bias flags info (if set) in gpioinfo
  * Improvements:
    - remove unnecessary indirection in free_dirs() in iterator code
    - put all ABI versions next to one another in configure.ac
    - improve std namespace resolution in C++ bindings
    - add more checks for non-standard functions in configure.ac
    - various code size improvements
    - enforce gnu89 C standard in makefiles
    - many documentation improvements
    - unduplicate signalfd() handling in tools
    - fix a forward declaration for line_event in C++ bindings
  * Bug fixes:
    - relax is_gpiochip_cdev() for symbolic links
    - make gpiod_line_get_value_bulk() work for bulks of lines requested for
buildservice-autocommit accepted request 796563 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 31)
baserev update by copy to link target
Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) accepted request 796561 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 30)
- Update to v1.5.1:
  * Bug fixes:
    - relax gpiod_chip_open() for symbolic links
- Update to v1.5:
  * New features:
    - switched to using the GLib testing framework for core library tests and BATS
      (Bash Automated Testing System) for command-line tools
    - used Catch2 C++ testing framework to implement a proper test-suite for C++
      bindings while also reusing the API provided by libgpiomockup
    - used Python's unittest package to implement a proper test suite for Python
      bindings and reused libgpiockup again
    - provided line::update() and Line.update() routines for C++ and Python
      bindings respectively allowing to update the line info from bindings as well
    - added support for bias flags which are a new functionality first available in
      linux v5.5; subsequently the library now requires v5.5 kernel headers to
      build; the new flags are supported in the core library, C++ and Python
      bindings as well as the command-line tools
    - added support for the new SET_CONFIG ioctl(): this too is a new functionality
      added in linux v5.5; both features have been implemented in the library by
      Kent Gibson
    - added routines for reading multiple line events at once to the core library,
      C++ and Python bindings
  * Improvements:
    - constified function arguments where applicable in libgpiomockup
    - fixed the name of the test exeucutable displayed at build time
    - improved the function pointer casting in Python bindings to avoid warnings
      emitted by GCC8
    - switched to using the KERNEL_VERSION() macro in tests instead of handcoded
      version parsing
    - improved the setup ordering in tests (setup libgpiomockup before checking
      the kernel version
    - add 'extern "c"' to the libgpiomockup header to make it usable from C++
    - add chip index validation to libgpiomockup functions
    - check if the debugfs directory used by libgpiomockup is writable before
      using it to set the pull of dummy lines
    - add several new test cases
    - improved Python example programs (made gpiomon's output similar to the
      original tool, make gpioset wait for an ENTER pres by default)
    - fixed the major:minor number comparison between the device and sysfs
    - deprecated the gpiod_line_needs_update() function and removed the logic
      behind it from the library
    - shrank the Python bindings a bit by directly returning the value from
      PyErr_SetFromErrno()
    - dropped noexcept from methods which can throw in C++ bindings
    - switched to initializing the bitset with integers instead of strings in C++
      bindings
    - allowed gpiod_line_set_value_bulk() to accept null pointers
    - when building Python bindings: check for the existence of python-config
    - improved the readability of help text messages for command-line tools
    - reworked the .gitignore file: added libtool scripts generated during
      cross-compilation and split the main .gitignore into several fine-grained
      files
    - fixed several misspellings
    - other minor tweaks and improvements
  * Bug fixes:
    - fixed memory leaks in libgpiomockup
    - fixed memory leaks in the testing framework
    - fixed a segfault in error path in tests
    - make gpioinfo show lines claimed by the kernel as used even if they have no
      named consumer
    - fixed the test cases validating the '--active-low' switch in gpiomon and
      the GPIOHANDLE_REQUEST_ACTIVE_LOW flag in the core library after a fix
      for incorrect behavior was merged in linux v5.2.7
    - stopped failing at init-time of libgpiomockup if gpio-mockup is already
      loaded
    - added a missing throw keyword in error path in C++ bindings
    - fixed a segfault in Python bindings when calling Line.request() without
      the consumer argument
buildservice-autocommit accepted request 794919 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 29)
baserev update by copy to link target
Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) accepted request 794917 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 28)
- Update to v1.4.3:
  * Bug fixes:
    - relax gpiod_chip_open() for symbolic links
buildservice-autocommit accepted request 786536 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 27)
baserev update by copy to link target
Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) accepted request 786534 from Petr Tesařík's avatar Petr Tesařík (ptesarik) (revision 26)
- Rename the libgpiod package (which contains the command-line tools) to libgpiod-utils.

Having libgpiod2-* (the library) and libgpiod (the tools) is quite confusing. Let's follow Fedora naming scheme and call the command-line tools package libgpiod-utils.
buildservice-autocommit accepted request 783433 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 25)
baserev update by copy to link target
Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) accepted request 783432 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 24)
- Update to version 1.4.2 (Bug fixes release):
  * fix the major:minor number comparison between the device and sysfs
  * drop noexcept from direction() and active_state() in C++ bindings
  * fix a segfault when calling Line.request() in Python bindings
buildservice-autocommit accepted request 769613 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 23)
baserev update by copy to link target
buildservice-autocommit accepted request 744438 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 21)
baserev update by copy to link target
Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) accepted request 744437 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 20)
Add provides/obsolete for python package due to the rename
Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) accepted request 744415 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 19)
Rename python-libgpiod to python3-gpiod
buildservice-autocommit accepted request 743965 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 18)
baserev update by copy to link target
Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) accepted request 743963 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 17)
- Update to v1.4.1 (Bug fixes release):
  * fix GCC8 warnings when building python bindings
  * fix a bug in gpioinfo where lines used by the kernel without any consumer
    string were reported as unused
  * fix a bug in line::event_get_fd() in C++ bindings where the exception
    wouldn't be throws in error cases due to a missing 'throw' keyword
  * fix a couple bugs in the test-suite
  * disable a failing assertion in the test-suite that stopped working after
  linux v5.2.7
buildservice-autocommit accepted request 709751 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 16)
baserev update by copy to link target
Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) accepted request 709750 from Guillaume GARDET's avatar Guillaume GARDET (Guillaume_G) (revision 15)
- Replace *_number with *_soversion
Displaying revisions 1 - 20 of 34
openSUSE Build Service is sponsored by