Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 1087 Details for
Bug 1523
[IDEA] Offload work by distributing trivial ebuild maintenance to users, introduce a simple stability voting system and have a core team approve them to the Portage tree.
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
patch to portage.py to make use of estatus.py
portage.py.diff-2002521 (text/plain), 790 bytes, created by
George Shapovalov (RETIRED)
on 2002-05-21 18:43:47 UTC
(
hide
)
Description:
patch to portage.py to make use of estatus.py
Filename:
MIME Type:
Creator:
George Shapovalov (RETIRED)
Created:
2002-05-21 18:43:47 UTC
Size:
790 bytes
patch
obsolete
>--- portage.py-2002520 Mon May 20 21:53:44 2002 >+++ portage.py Tue May 21 16:31:01 2002 >@@ -62,6 +62,7 @@ > import signal > import time > import missingos >+import estatus > > try: > import fchksum >@@ -2511,6 +2512,20 @@ > matches=self.dep_nomatch(x) > for y in matches: > self.zap(y) >+ #now mask leftover ebuilds in the tree according to their status >+ StabLevel=settings["STABILITY_LEVEL"] >+ if not StabLevel:StabLevel="approved" >+ for pkgKey in self.tree.keys(): >+ pkgStatus=estatus.pkgStatus(self.portroot+'/'+pkgKey) >+ for x in self.tree[pkgKey]: >+ if x[1][3]=="r0": >+ PVR=x[1][2] >+ else: >+ PVR=x[1][2]+"-"+x[1][3] >+ >+ if not pkgStatus[PVR].isAllowed(StabLevel): >+ self.zap(x[0]) >+ > > def getdeps(self,pf): > "returns list of dependencies, if any"
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1523
:
1086
| 1087 |
1088
|
1134