Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Factory:Rings:1-MinimalX
perl-FFI-CheckLib
perl-FFI-CheckLib.changes
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File perl-FFI-CheckLib.changes of Package perl-FFI-CheckLib
------------------------------------------------------------------- Sat Oct 1 03:06:46 UTC 2022 - Tina Müller <timueller+perl@suse.de> - updated to 0.31 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.31 2022-09-30 07:42:44 -0600 - Better support for Homebrew and MacPorts on macOS (gh#46 cdalvaro++) - New environment variable FFI_CHECKLIB_PACKAGE (gh#46) - New environment variable FFI_CHECKLIB_PATH (gh#50, gh#52) - Documentation improvements (gh#49, gh#52) ------------------------------------------------------------------- Fri Sep 23 03:06:56 UTC 2022 - Tina Müller <timueller+perl@suse.de> - updated to 0.30 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.30 2022-09-22 04:24:26 -0600 - [ BREAKING CHANGE ] If the alien option is provided, the libraries provided by aliens will be preferred over the system libraries (gh#47, gh#48) ------------------------------------------------------------------- Sun Sep 11 03:06:13 UTC 2022 - Tina Müller <timueller+perl@suse.de> - updated to 0.29 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.29 2022-09-10 01:46:05 -0600 - Handle Windows DLLs using underscores instead of dashes in version numbers (gh#44, gh#45, shawnlaffan++) ------------------------------------------------------------------- Mon May 17 03:06:58 UTC 2021 - Tina Müller <timueller+perl@suse.de> - updated to 0.28 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.28 2021-05-16 15:10:34 -0600 - Avoid undef warning from File::Spec->catpath (gh#30, gh#33) - The alien option now works in fallback mode; if one or more of the Aliens are not installed then they will be ignored, previously this module would throw whatever exception was produced by require (gh#23, gh#34) - Move to PerlFFI org on GitHub (previously this dist lived in Perl5-FFI) (gh#24) ------------------------------------------------------------------- Tue May 12 03:07:50 UTC 2020 - Tina Müller <timueller+perl@suse.de> updated to 0.27 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.27 2020-05-11 14:24:08 -0400 - Added a FAQ section to the documentation (gh#22) ------------------------------------------------------------------- Thu Jan 23 03:08:20 UTC 2020 - <timueller+perl@suse.de> - updated to 0.26 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.26 2020-01-22 05:54:02 -0700 - Name check on alien option is always done, even if the Alien is already loaded (gh#21) - Remove dependency on Module::Load (gh#21) ------------------------------------------------------------------- Tue Nov 19 10:34:38 UTC 2019 - Pedro Monreal Gonzalez <pmonrealgonzalez@suse.com> - Update spec file * Remove doc files not needed and perl-FFI-CheckLib-rpmlintrc ------------------------------------------------------------------- Tue Nov 5 09:17:20 UTC 2019 - Lars Vogdt <lars@linux-schulserver.de> - added perl-FFI-CheckLib-rpmlintrc to allow building with older rpmlint ------------------------------------------------------------------- Wed Jun 26 05:08:19 UTC 2019 - Stephan Kulow <coolo@please-enter-an-email-address> - updated to 0.25 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.25 2019-06-25 12:27:58 -0400 - Add support for Alien::Base with alien option (gh#18) ------------------------------------------------------------------- Sun Apr 28 05:11:51 UTC 2019 - Stephan Kulow <coolo@suse.com> - updated to 0.24 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.24 2019-04-27 09:14:34 -0400 - Add try_linker_script option (gh#13, gh#15) ------------------------------------------------------------------- Thu Dec 6 15:40:26 UTC 2018 - Stephan Kulow <coolo@suse.com> - updated to 0.23 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.23 2018-11-18 00:07:49 -0500 - Handle DLLs on Windows with "dashed" version numbers (example: foo-1-2-3.dll) (gh#10, gh#11, SLAFFAN++) ------------------------------------------------------------------- Thu Nov 8 06:20:47 UTC 2018 - Stephan Kulow <coolo@suse.com> - updated to 0.22 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.22 2018-10-13 22:24:46 -0400 - Production version identical to 0.21_01 0.21_01 2018-10-11 22:53:43 -0400 - Documentation fixes - Handle DLLs with upper-case characters in extension on MSWin32 (gh#9) ------------------------------------------------------------------- Sun Jun 10 05:25:04 UTC 2018 - coolo@suse.com - updated to 0.20 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.20 2018-06-04 18:18:09 -0400 - Add system_path function. 0.19 2018-05-30 21:09:32 -0400 - Administrative release to note that this dist is moving its repository to the Perl5-FFI org on github.com ------------------------------------------------------------------- Thu Oct 26 05:18:55 UTC 2017 - coolo@suse.com - updated to 0.18 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.18 2017-10-25 10:00:47 -0400 - Production version identical to 0.17_02 0.17_02 2017-10-14 01:03:04 -0400 - Fix Windows testing regression introduced in 0.17_01 0.17_01 2017-10-13 15:58:30 -0400 - Filter out broken and recursive symlinks - Better handle symlinked .so files on platforms that support that. Previously, we preferred the longer .so names (ie, libfoo.so.1.2.3) over the shorter .so names (libfoo.so) since the latter is usually a symlink, and the former may have useful "version" information in the filename. That is a problem when a system is using symlinks to indicate a preference, (for example, if there are both libfoo.so.1.2.3, libfoo.so.1.2.4 and libfoo.so is a symlink to one of those). Now we still endevour to return the long .so name, but use the short name to see which one is preferred by the operating system, or user. In the absense of any symlinks to disambiguate two libraries with the same name, we prefer the one with a newer version number. That is libfoo.so.2.3.4 would be preferred over libfoo.so.1.2.3 - Slightly more consistent diagnostic messages. - Added functions: which, where, has_symbols None are exported by default, but may be requested. ------------------------------------------------------------------- Wed Aug 9 05:34:48 UTC 2017 - coolo@suse.com - updated to 0.16 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.16 2017-08-08 10:24:49 -0400 - Tentative support for msys ------------------------------------------------------------------- Mon May 23 11:49:55 UTC 2016 - coolo@suse.com - updated to 0.15 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.15 2016-05-05 19:53:32 -0400 - Add MSYS2 support ------------------------------------------------------------------- Wed Sep 23 08:37:21 UTC 2015 - coolo@suse.com - updated to 0.14 see /usr/share/doc/packages/perl-FFI-CheckLib/Changes 0.14 2015-09-09 08:25:15 -0400 - Version identical to 0.12 (0.12 was accidentally removed from CPAN) 0.12 2015-08-06 16:09:32 -0400 - Switch to MakeMaker since we are not using any features that require Module::Build ------------------------------------------------------------------- Tue Feb 17 13:43:04 UTC 2015 - coolo@suse.com - initial package 0.11 * created by cpanspec 1.78.08
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor