- updated TODO
- added dependenciesTest after every reagent run - print sqlite error when triggering ImportError exception git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@1084 cd1c1023-2f26-0410-ae45-c471fc1f0318
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
TODO list:
|
||||
- check mail error (*)
|
||||
- update progress in calculating removal (*)
|
||||
- add deptest check for every reagent run (*)
|
||||
- change package naming format adding category
|
||||
- migrate server code to ServerInterface
|
||||
- Community repositories
|
||||
@@ -10,6 +9,8 @@ TODO list:
|
||||
- handle multiuser on entropy server using equo interface
|
||||
|
||||
Spritz:
|
||||
- handle config files updates interface
|
||||
- add masking interface
|
||||
- handle queue dependencies in the queue tab too
|
||||
- add branch switching menu+stuff
|
||||
- wrap root password request
|
||||
|
||||
@@ -30,8 +30,8 @@ try: # try with sqlite3 from python 2.5 - default one
|
||||
except ImportError: # fallback to embedded pysqlite
|
||||
try:
|
||||
from pysqlite2 import dbapi2
|
||||
except ImportError:
|
||||
raise exceptionTools.SystemError("Entropy needs sqlite+pysqlite or Python compiled with sqlite support. Cannot continue.")
|
||||
except ImportError, e:
|
||||
raise exceptionTools.SystemError("Entropy needs a working sqlite+pysqlite or Python compiled with sqlite support. Error: %s" % (str(e),))
|
||||
import dumpTools
|
||||
|
||||
|
||||
|
||||
@@ -296,6 +296,10 @@ def update(options):
|
||||
dbconn.commitChanges()
|
||||
# regen dependstable
|
||||
dependsTableInitialize(dbconn, False)
|
||||
dbconn.commitChanges()
|
||||
|
||||
# checking dependencies and print issues
|
||||
dependenciesTest()
|
||||
|
||||
dbconn.closeDB()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user