diff options
author | Johannes Winkelmann <jw@smts.ch> | 2006-04-04 20:25:18 +0000 |
---|---|---|
committer | Johannes Winkelmann <jw@smts.ch> | 2006-04-04 20:25:18 +0000 |
commit | ec36dcd199752b66013fe8530006e08aee9a76ed (patch) | |
tree | 0e1dca59ea84744f39529b259fb36620310bb197 | |
parent | 5c03d74720d53e93e1f2221d9014e62c189dcded (diff) | |
download | prt-get-ec36dcd199752b66013fe8530006e08aee9a76ed.tar.gz prt-get-ec36dcd199752b66013fe8530006e08aee9a76ed.tar.xz |
prt-get: 0.5.12pre1
git-svn-id: https://crux.nu/svn/tools/prt-get/trunk@1143 0b5ae1c7-2405-0410-a7fc-ba219f786e1e
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | src/prtget.h | 3 |
4 files changed, 3 insertions, 5 deletions
@@ -8,6 +8,7 @@ - print update summary right before running the addcommand - print full add command and PACKAGE_DIR info when using install/update -v - Make 'cat' and 'readme' use $PAGER if set +- update default prt-get.conf to reflect new port hierarchy (core/opt/contrib) * 0.5.11 29.05.2005 Johannes Winkelmann - add --path to 'ls' @@ -1,7 +1,5 @@ - use `eval $(fgrep -h 'PKGMK_PACKAGE_DIR=' $(which pkgmk) /etc/pkgmk.conf) && echo $PKGMK_PACKAGE_DIR` to determine PACKAGE_DIR -- store former information version first, and print before pkgadd: - "updating X from /usr/ports/Y: n -> n+m" - add update-footprint, update-md5sum commands (patch in trac) - allow dependency injection for sysup, with previews - prefer toolchain (patch in trac) diff --git a/configure.in b/configure.in index 7bedb2d..49bf314 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ # Process this file with autoconf to produce a configure script. AC_INIT AC_CONFIG_SRCDIR([src/prtget.cpp]) -AM_INIT_AUTOMAKE(prt-get,0.5.12pre) +AM_INIT_AUTOMAKE(prt-get,0.5.12pre1) dnl Determine default prefix diff --git a/src/prtget.h b/src/prtget.h index 2a27c21..c5ad4db 100644 --- a/src/prtget.h +++ b/src/prtget.h @@ -89,8 +89,6 @@ public: void dumpConfig(); - bool greaterThan( const string& v1, const string& v2 ); - int returnValue() const; SignalHandler::HandlerResult handleSignal( int signal ); @@ -143,6 +141,7 @@ protected: void assertExactArgCount(int count); void argCountFailure(int count, const string& specifier); + bool greaterThan( const string& v1, const string& v2 ); static bool printFile(const string& file); }; |