diff --git a/ChangeLog b/ChangeLog index 3254f9d..b642676 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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' diff --git a/TODO b/TODO index af87e33..890830e 100644 --- a/TODO +++ b/TODO @@ -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); };