Prepared 0.4.6 release
- Updated copyright and version - Updated TODO and Changelog files
This commit is contained in:
parent
0607d6de23
commit
68fffba112
39
ChangeLog
39
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
|
||||
|
||||
|
7
TODO
7
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
|
||||
|
@ -1,7 +1,8 @@
|
||||
#!/usr/bin/env perl
|
||||
#
|
||||
# pkg-get - A binary package management utility for CRUX Linux
|
||||
# Copyright (C) 2004-06 Simone Rota <sip@varlock.com>
|
||||
# Copyright (C) 2004-2006 Simone Rota <sip@varlock.com>
|
||||
# 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" ;
|
||||
|
Loading…
x
Reference in New Issue
Block a user