-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 | |||
@@ -2,7 +2,7 @@ | |||
2 | /* | 2 | /* |
3 | /* Opie - Package Manager | 3 | /* Opie - Package Manager |
4 | /* ======================== | 4 | /* ======================== |
5 | /* Version 0.2.0 | 5 | /* Version 0.3.0 |
6 | /* | 6 | /* |
7 | /* A package management client for Opie | 7 | /* A package management client for Opie |
8 | /* | 8 | /* |
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 @@ | |||
1 | /************************************************************************ | ||
2 | /* | ||
3 | /* Opie - Package Manager | ||
4 | /* ======================== | ||
5 | /* Version 0.3.0 | ||
6 | /* | ||
7 | /* A package management client for Opie | ||
8 | /* | ||
9 | /************************************************************************ | ||
10 | |||
11 | --------------------------------------------- | ||
12 | To-do for Opie-PackageManager - April, 2004 | ||
13 | --------------------------------------------- | ||
14 | |||
15 | ====================== | ||
16 | = Current release = | ||
17 | ====================== | ||
18 | |||
19 | 1. Save configuration information (i.e. /etc/ipkg.conf) | ||
20 | 2. Link non-root destination apps | ||
21 | 3. Implement QCOP interface for installing, removing, etc. | ||
22 | 4. Redesign configuration dialog | ||
23 | |||
24 | ====================== | ||
25 | = Future releases = | ||
26 | ====================== | ||
27 | |||
28 | 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 | |||
@@ -36,7 +36,6 @@ | |||
36 | 36 | ||
37 | #include <qdir.h> | 37 | #include <qdir.h> |
38 | #include <qfile.h> | 38 | #include <qfile.h> |
39 | #include <qmessagebox.h> | ||
40 | #include <qtextstream.h> | 39 | #include <qtextstream.h> |
41 | 40 | ||
42 | const QString IPKG_CONF = "/etc/ipkg.conf"; // Fully-qualified name of Ipkg primary configuration file | 41 | const QString IPKG_CONF = "/etc/ipkg.conf"; // Fully-qualified name of Ipkg primary configuration file |
@@ -82,8 +81,7 @@ OIpkg::OIpkg( Config *config, QObject *parent, const char *name ) | |||
82 | oipkg = this; | 81 | oipkg = this; |
83 | 82 | ||
84 | // Initialize libipkg | 83 | // Initialize libipkg |
85 | if ( ipkg_init( &fsignalIpkgMessage, &fIpkgResponse, &m_ipkgArgs ) ) | 84 | ipkg_init( &fsignalIpkgMessage, &fIpkgResponse, &m_ipkgArgs ); |
86 | QMessageBox::critical( 0, tr( "OIpkg" ), tr( "Error initialing libipkg" ) ); | ||
87 | 85 | ||
88 | // Default ipkg run-time arguments | 86 | // Default ipkg run-time arguments |
89 | m_ipkgArgs.noaction = false; | 87 | m_ipkgArgs.noaction = false; |
@@ -97,8 +95,7 @@ OIpkg::~OIpkg() | |||
97 | m_confInfo->setAutoDelete( true ); | 95 | m_confInfo->setAutoDelete( true ); |
98 | 96 | ||
99 | // Free up libipkg resources | 97 | // Free up libipkg resources |
100 | if ( ipkg_deinit( &m_ipkgArgs ) ) | 98 | ipkg_deinit( &m_ipkgArgs ); |
101 | QMessageBox::critical( 0, tr( "OIpkg" ), tr( "Error freeing libipkg" ) ); | ||
102 | } | 99 | } |
103 | 100 | ||
104 | OConfItemList *OIpkg::configItems() | 101 | OConfItemList *OIpkg::configItems() |