- update TODO
Entropy/Spritz:
- fix attribute call


git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@2155 cd1c1023-2f26-0410-ae45-c471fc1f0318
This commit is contained in:
lxnay
2008-06-16 19:13:56 +00:00
parent 314f180bb5
commit 32012d192f
3 changed files with 1 additions and 3 deletions
-1
View File
@@ -1,6 +1,5 @@
TODO list
- server-side: write a ncurses interface to manage entropy database + spm interface + GLSA
- split entropy.py
- community repos: add repository handling on dependencies to avoid library breakages
- External trigger: rewrite support and use bash
- EAPI=3 make client/server using SSL, make the repository server to listen on both
-1
View File
@@ -5924,7 +5924,6 @@ class RepoInterface:
return -1
def get_online_eapi3_lock(self, repo):
self.__validate_repository_id(repo)
url = etpRepositories[repo]['database']+"/"+etpConst['etpdatabaseeapi3lockfile']
data = self.entropyTools.get_remote_data(url)
+1 -1
View File
@@ -182,7 +182,7 @@ class SpritzQueue:
mydepends = set(self.Entropy.retrieveRemovalQueue([x.matched_atom[0] for x in pkgs]))
mydependencies = set()
for pkg in pkgs:
mydeps = self.Entropy.get_deep_dependency_list(self.Entropy.clientDbconn, pkg.matched_atom[0])
mydeps = self.Entropy._get_deep_dependency_list(self.Entropy.clientDbconn, pkg.matched_atom[0])
mydependencies |= set([x for x in mydeps if x in xlist])
# what are in queue?
mylist = set(xlist)