diff --git a/ChangeLog b/ChangeLog index b70b00f..31d0f35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,43 +1,42 @@ ChangeLog for pkg-get -X.X.X - Fixed warnings on output of diff command +0.4.6 - Fixed warnings on output of diff command + - Use compression-mode defined in pkgmk.conf + - pkg-repgen.pl: Improved prt-get commands and added --prtdir switch -0.4.5 - Added --all switch for diff command (also lists - locked packages) +0.4.5 - Added --all switch for diff command (also lists locked packages) -0.4.4 - Fixed: pkg-repgen produces well-formed entries for - packages not available in the port tree +0.4.4 - Fixed: pkg-repgen produces well-formed entries for packages not + available in the port tree - Added root option for install / update command - (thanks to Gunter Coell) + (thanks to Gunter Coell) 0.4.3 - Fixed: operation summary when using -do option - - pkg-repgen now also generates a html index file - for the repository + - pkg-repgen now also generates a html index file for the + repository 0.4.2 - Create lock file if it does not exist - - Fixed: locked packages were not ignored in diff - commands + - Fixed: locked packages were not ignored in diff commands 0.4.1 - Fixed parsing bug for uncommon 'version' strings 0.4.0 - Completely re-written in perl - - Added failover mechanism for unsuccessful syncronizations + - Added failover mechanism for unsuccessful syncronizations - Better standardization of task summary and option handling - Removed proxy options (now handled by wget) - - Improved general command / options / look and feel - compatibility with prt-get + - Improved general command / options / look and feel compatibility + with prt-get - "use_scrips" config option is now called "runscripts" - Added -im, --config=, --aargs= options - - The "current" command now prints the currently installed - version instead of the available version (uniformity - with prt-get) + - The "current" command now prints the currently installed version + instead of the available version (uniformity with prt-get) -0.3.4 - Fixed: removed check for REPO files before 'sync', - 'version' and 'help commands'. +0.3.4 - Fixed: removed check for REPO files before 'sync', 'version' and + 'help commands'. 0.3.3 - Added pre-post install success report, i.e.: [pre: ok] - - Fixed minor commandline parser bug (options were ignored - for 'sysup' command) + - Fixed minor commandline parser bug (options were ignored for + 'sysup' command) - Changed PKGREPO format (package name is now the 1st entry) - pkg-repgen is now written in perl diff --git a/TODO b/TODO index 64e83d8..fb2bc3d 100644 --- a/TODO +++ b/TODO @@ -1,6 +1,11 @@ TODO file for pkg-get - logging support (?) -- deptree command (?) + +- add more commands: + - deptree (?) + - lock/unlock/listlocked (?) - optimize the pkg-repgen script + +- improve pkg-get help information diff --git a/scripts/pkg-get.pl b/scripts/pkg-get.pl index cb5ee10..090f117 100755 --- a/scripts/pkg-get.pl +++ b/scripts/pkg-get.pl @@ -1,7 +1,8 @@ #!/usr/bin/env perl # # pkg-get - A binary package management utility for CRUX Linux -# Copyright (C) 2004-06 Simone Rota +# Copyright (C) 2004-2006 Simone Rota +# Copyright (c) 2006-2013 by CRUX team (http://crux.nu) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -12,7 +13,7 @@ use warnings; use strict; use Getopt::Long; -my $VERSION = "0.4.5"; +my $VERSION = "0.4.6"; my $CFGFILE = "/etc/pkg-get.conf"; my $LOCKFILE = "/var/lib/pkg/pkg-get.locker"; my $PKGDB = "/var/lib/pkg/db" ;