author | drw <drw> | 2004-04-07 23:23:04 (UTC) |
---|---|---|
committer | drw <drw> | 2004-04-07 23:23:04 (UTC) |
commit | 0a21abab4eed64d17c4b1475569194117dab709c (patch) (side-by-side diff) | |
tree | b4f7cdf929202dd18db86916906e957658b8e1e9 /noncore | |
parent | 52ccc71e2859ae9d738629249baeef3e3df992a2 (diff) | |
download | opie-0a21abab4eed64d17c4b1475569194117dab709c.zip opie-0a21abab4eed64d17c4b1475569194117dab709c.tar.gz opie-0a21abab4eed64d17c4b1475569194117dab709c.tar.bz2 |
Added TODO doc and a couple minor updates
-rw-r--r-- | noncore/settings/packagemanager/README | 2 | ||||
-rw-r--r-- | noncore/settings/packagemanager/TODO | 28 | ||||
-rw-r--r-- | noncore/settings/packagemanager/oipkg.cpp | 7 |
3 files changed, 31 insertions, 6 deletions
diff --git a/noncore/settings/packagemanager/README b/noncore/settings/packagemanager/README index 7b6305a..9324f9c 100644 --- a/noncore/settings/packagemanager/README +++ b/noncore/settings/packagemanager/README @@ -1,13 +1,13 @@ /************************************************************************ /* /* Opie - Package Manager /* ======================== -/* Version 0.2.0 +/* Version 0.3.0 /* /* A package management client for Opie /* /************************************************************************ ------------------------------------------------------- Release Notes for Opie-PackageManager - January, 2004 ------------------------------------------------------- diff --git a/noncore/settings/packagemanager/TODO b/noncore/settings/packagemanager/TODO new file mode 100644 index 0000000..448ade3 --- a/dev/null +++ b/noncore/settings/packagemanager/TODO @@ -0,0 +1,28 @@ +/************************************************************************ +/* +/* Opie - Package Manager +/* ======================== +/* Version 0.3.0 +/* +/* A package management client for Opie +/* +/************************************************************************ + +--------------------------------------------- + To-do for Opie-PackageManager - April, 2004 +--------------------------------------------- + +====================== += Current release = +====================== + +1. Save configuration information (i.e. /etc/ipkg.conf) +2. Link non-root destination apps +3. Implement QCOP interface for installing, removing, etc. +4. Redesign configuration dialog + +====================== += Future releases = +====================== + +1. ???
\ No newline at end of file diff --git a/noncore/settings/packagemanager/oipkg.cpp b/noncore/settings/packagemanager/oipkg.cpp index 1dc23a4..5c79ba9 100644 --- a/noncore/settings/packagemanager/oipkg.cpp +++ b/noncore/settings/packagemanager/oipkg.cpp @@ -31,17 +31,16 @@ #include "oipkg.h" #include <stdlib.h> #include <string.h> #include <qdir.h> #include <qfile.h> -#include <qmessagebox.h> #include <qtextstream.h> const QString IPKG_CONF = "/etc/ipkg.conf"; // Fully-qualified name of Ipkg primary configuration file const QString IPKG_CONF_DIR = "/etc/ipkg"; // Directory of secondary Ipkg configuration files const QString IPKG_PKG_PATH = "/usr/lib/ipkg/lists"; // Directory containing server package lists const QString IPKG_STATUS_PATH = "usr/lib/ipkg/status"; // Destination status file location OIpkg *oipkg; @@ -77,33 +76,31 @@ OIpkg::OIpkg( Config *config, QObject *parent, const char *name ) , m_config( config ) , m_confInfo( NULL ) , m_ipkgExecOptions( 0 ) , m_ipkgExecVerbosity( 1 ) { oipkg = this; // Initialize libipkg - if ( ipkg_init( &fsignalIpkgMessage, &fIpkgResponse, &m_ipkgArgs ) ) - QMessageBox::critical( 0, tr( "OIpkg" ), tr( "Error initialing libipkg" ) ); + ipkg_init( &fsignalIpkgMessage, &fIpkgResponse, &m_ipkgArgs ); // Default ipkg run-time arguments m_ipkgArgs.noaction = false; m_ipkgArgs.force_defaults = true; } OIpkg::~OIpkg() { // Upon destruction, ensure that items in config list are deleted with list if ( m_confInfo ) m_confInfo->setAutoDelete( true ); // Free up libipkg resources - if ( ipkg_deinit( &m_ipkgArgs ) ) - QMessageBox::critical( 0, tr( "OIpkg" ), tr( "Error freeing libipkg" ) ); + ipkg_deinit( &m_ipkgArgs ); } OConfItemList *OIpkg::configItems() { // Retrieve all configuration items return filterConfItems(); } |