Slackware-SBoKeeper

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

    * sbokeeper now uses own format for storing SlackBuild data instead of JSON.
  Removed:
    * JSON dependency. Now installable on a stock Slackware system.
    * -j option.


0.03 (10/14/2024):
  Added:
    * SlackBuild.
    * Can now read multiline REQUIRES lines.
    * sbokeeper now uses getpwuid for home directory if HOME environment
      variable is unavailable.
    * 'pull' command: Adds installed SlackBuilds.org packages to your database.
    * 'diff' command: Show discrepancies between installed SlackBuild packages
      and packages present in your database.
    * 'missing' command: Show packages missing dependencies.
    * 'extradeps' command: Show packages with extraneous dependencies.
    * -p/--pkgtool-logs option: Specify path to pkgtool package log directory.
    * -j/--pretty-json option: Outputted JSON can now be formatted prettily.
    * PkgtoolLogs config option, same thing as -p option.
    * PrettyJSON config option, same thing as -j option.

lib/Slackware/SBoKeeper/Home.pm  view on Meta::CPAN

package Slackware::SBoKeeper::Home;
our $VERSION = '2.06';
use 5.016;
use strict;
use warnings;

use Exporter 'import';
our @EXPORT = qw($HOME);

our $HOME = $ENV{HOME} || (getpwuid($<))[7]
	or die "Could not find home directory\n";

1;

=head1 NAME

Slackware::SBoKeeper::Home - Find home

=head1 SYNOPSIS



( run in 0.354 second using v1.01-cache-2.11-cpan-8d75d55dd25 )