diff --git a/TODO b/TODO index cdfa0304a..e283e1693 100644 --- a/TODO +++ b/TODO @@ -1,15 +1,14 @@ TODO list: + - split RDEPEND and PDEPEND - improve dependencies order resolution - migrate server code to ServerInterface [] write a tool that helps keeping packages updated (also supporting injected ones) + [] complete reagent spm interface - packages.sabayonlinux.org interactivity (comments + images upload + connection to phpbb user db) - Community repositories - - split RDEPEND and PDEPEND - - find a way to better handle real smartapps deps (need split PDEPEND?) - separate packages by license restrictions - - handle multiuser on entropy server using equo interface - - complete reagent spm interface - GLSAs for overlays? + - find a way to better handle real smartapps deps (need split PDEPEND?) Spritz: - handle config files updates interface (*) diff --git a/libraries/databaseTools.py b/libraries/databaseTools.py index 69471ffea..ca26972e7 100644 --- a/libraries/databaseTools.py +++ b/libraries/databaseTools.py @@ -3498,13 +3498,11 @@ class etpDatabase(TextInterface): # def createTreeupdatesTable(self): - self.checkReadOnly() self.cursor.execute('DROP TABLE IF EXISTS treeupdates;') self.cursor.execute('CREATE TABLE treeupdates ( repository VARCHAR PRIMARY KEY, digest VARCHAR );') self.commitChanges() def createTreeupdatesactionsTable(self): - self.checkReadOnly() self.cursor.execute('DROP TABLE IF EXISTS treeupdatesactions;') self.cursor.execute('CREATE TABLE treeupdatesactions ( idupdate INTEGER PRIMARY KEY, repository VARCHAR, command VARCHAR, branch VARCHAR );') self.commitChanges()