The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Changes for version 0.005

  • Change: 261de7f86931460ce140254aebdb864bf78114dd Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br> Date : 2024-04-07 00:29:53 +0000
    • Fix badge
    • wrong repo name
  • Change: fa477860cb8ce35e774138ce7b4ded25edeb3ca2 Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br> Date : 2024-04-07 00:27:17 +0000
    • Update README.md
    • Github Actions badge
  • Change: 3ac6067d753c6c22879e10293582e7dd05d2930d Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br> Date : 2024-04-07 00:21:24 +0000
    • Merge pull request #3 from glasswalk3r/bugfix/github-actions
    • Bugfix/GitHub actions
  • Change: 9f0116724629df22673c7336d8ce61f26259c0a8 Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br> Date : 2024-04-07 00:17:04 +0000
    • fix: wrong syntax
  • Change: 5773f9efa3e6910cb93ce87a7db741673f3038f2 Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br> Date : 2024-04-07 00:14:17 +0000
    • feat: ignoring files on push
  • Change: e41823c4e9c6b074c9eb264a5f6bc383ee6f1d47 Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br> Date : 2024-04-07 00:11:48 +0000
    • fix: dir name typo
  • Change: b2cfc03e97a43b6472a40bd9cca4724fadcfe714 Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br> Date : 2024-04-07 00:05:10 +0000
    • Merge pull request #2 from glasswalk3r/doc/pod-fixes
    • Doc/pod fixes
  • Change: f163374e67749df49896d8eea59c895730fc586d Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br> Date : 2024-04-07 00:03:23 +0000
    • chore: updated requirements
  • Change: 39c6e1d5b1cd8d6bf48748fe60337b0a20593b5d Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br> Date : 2024-04-07 00:03:10 +0000
    • feat: automation
  • Change: 610a4918bbca25b9f9ec9b282f9540483d0dfb27 Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br> Date : 2024-04-07 00:02:56 +0000
    • feat: github action
  • Change: c2221bb9d310dbfbf639948da964e213dd4e66ed Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br> Date : 2024-04-07 00:02:02 +0000
    • doc: more install details
  • Change: 4a229ccd9eea2e078e38fdf8a28cd4c6354d5db1 Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br> Date : 2024-04-07 00:01:28 +0000
    • doc: required fixes
  • Change: 895ff2cd03b27c0b3589eae353b85db816f157ec Author: Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org> Date : 2017-06-06 10:33:47 +0000
    • Fixed dynamic module generation
    • Renamed the script to a better name Now working on the file generated on blib directory, after pm_to_blib phase of Makefile.PL Using chmod to add write permissions and change it back to original after editing the module
  • Change: 48fe96111bc7b4130989bcbaa5e9c15447b3fd3f Author: Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org> Date : 2017-05-26 22:01:15 +0000
    • Moving Syscalls.pm generation outside Makefile.PL
    • Generating the code from Makefile.PL is generating problems when Inline dependency is not yet installed Created build_my_module.PL to generate the module AFTER the Makefile.PL is executed, during "make" execution Still need to figure out how to make build_my_module.PL to be executed before the Syscalls.pm is copied from lib to blib
  • Change: fbbc717e85617485b77ae4bc4c3217ce76d76553 Author: Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org> Date : 2017-05-15 16:44:08 +0000
    • Included Inline::C in the Prereqs
    • Due lots of failed reports for release 0.002 due the missing Inline::C Simplified the generation of Linux::NFS::BigDir::Syscalls, no need to create a sub if it will be invoked only once
  • Change: 746d7caeb2f31e3dc8e3186040781e5dabf7042d Author: Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org> Date : 2017-05-03 00:51:15 +0000
    • Moved syscall constant retrival to Makefile.PL
    • Instead of calling the Inline::C function everytime, code to retrieve the constant from corresponding C header file was moved to the Makefile.PL (generated by Dist::Zilla automatically). This should take care of making the distribution portable between Linux architectures and avoid loading/running Inline everytime without need.
  • Change: cb284820e6bf04dfc9b22e6ea5af29444d951c64 Author: Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org> Date : 2017-05-03 00:29:41 +0000
    • Fixed license of the distribution
  • Change: cc347013f6f73e19793726afeb3278d2553bb49d Author: Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org> Date : 2017-05-01 18:36:55 +0000
    • Added CPANFile
    • Added the plug-in Dist::Zilla::Plugin::CPANFile to add a cpanfile to this distribution, making it easier to install it with cpanm
  • Change: cb12c28e99eba21806b7bdb0ef14c65b25a1d6d6 Author: Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org> Date : 2017-05-01 18:30:06 +0000
    • Removed hardcode values for SYS_getdents syscall
    • Using Inline::C to return respective integer from header files, avoiding using hardcodes or having to rely on h2ph Added more descriptive messages on getdents.t test Added the benchmark.t author test (still not passing, marked as TODO) Added a gitignore due files generated by Inline::C
  • Change: 6549d1129550c4dde198ef6cdcb44c33c6f15b68 Author: Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org> Date : 2017-05-01 03:49:10 +0000
    • Validations for hardcoded number of SYS_getdents
    • Updated the Pod Added the getdents_safe to the module Expanded the tests to include getdents and getdents_safe validation
  • Change: 241ab401d57ce8aac032243054681f3396d99b7a Author: Olivier Mengué <dolmen@cpan.org> Date : 2017-04-30 19:44:53 +0000
    • Syscall as constants per archname instead of requiring syscall.ph
    • This simplifies user install that is now fully automated on supported platforms. Additional archs can be easily added by fixing BigDir.pm.
    • See discussion at http://www.nntp.perl.org/group/perl.cpan.testers.discuss/2017/02/msg3 993.html
  • Change: 26b6be00f611a5177241909d5bbf352f17372f9a Author: Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org> Date : 2017-02-05 13:17:03 +0000
    • Fixes for releasing Added install receipt Added more restrictions on dist.ini Fixed the failing test on pod-coverage.t
  • Change: e4438afaeafaa791d24274c83f44eb85e210ac07 Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br> Date : 2017-02-05 10:32:16 +0000
    • Fixing the markdown syntax
  • Change: efca41dbd625d03a8f3efcfc6b5e932ef35359e9 Author: Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org> Date : 2017-02-05 10:27:46 +0000
    • Changes for releasing on CPAN
  • Change: 8edb7dcdc0ea2b9df1377f83fb4a4dd7ad308b82 Author: Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org> Date : 2016-12-04 15:44:35 +0000
    • fixed markdown README
  • Change: fa3f73660931d7ac67de987977f7bb0f0130fba9 Author: Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org> Date : 2016-12-04 15:40:28 +0000
    • Initial release
  • Change: 1aed81625ace52b13ecd1e539b35ba6f0d19e9f1 Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br> Date : 2016-12-04 13:17:26 +0000
    • Initial commit
  • End of releases.

Modules

use Linux getdents syscall to read large directories over NFS
exports syscalls numbers defined during distribution setup