summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose V Beneyto <sepen@crux.nu>2013-08-20 13:00:26 +0200
committerJose V Beneyto <sepen@crux.nu>2013-08-20 13:00:26 +0200
commit68fffba1126b5bad99e9c708090754c4f852163e (patch)
treecf2c46e4f14d854e4766cb97d457689ba3a6ac8f
parent0607d6de232f0b1b67939225b9a5b11444501a28 (diff)
downloadpkg-get-68fffba1126b5bad99e9c708090754c4f852163e.tar.gz
pkg-get-68fffba1126b5bad99e9c708090754c4f852163e.tar.xz
Prepared 0.4.6 release
- Updated copyright and version - Updated TODO and Changelog files
-rw-r--r--ChangeLog39
-rw-r--r--TODO7
-rwxr-xr-xscripts/pkg-get.pl5
3 files changed, 28 insertions, 23 deletions
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 <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" ;

Generated by cgit