extras-buildsys/server Makefile, 1.7, 1.8 Repo.py, 1.12, 1.13 UserInterface.py, 1.45, 1.46

Daniel Williams (dcbw) fedora-extras-commits at redhat.com
Mon Aug 15 12:05:21 UTC 2005


Author: dcbw

Update of /cvs/fedora/extras-buildsys/server
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv17112/server

Modified Files:
	Makefile Repo.py UserInterface.py 
Log Message:
Fix some stuff that got broken in the config changes


Index: Makefile
===================================================================
RCS file: /cvs/fedora/extras-buildsys/server/Makefile,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- Makefile	15 Aug 2005 03:18:20 -0000	1.7
+++ Makefile	15 Aug 2005 12:05:01 -0000	1.8
@@ -30,7 +30,5 @@
 	$(MKDIR) -p $(OTHERINSTDIR)
 	for file in $(FILES); do $(INSTALL) -m 644 $$file $(OTHERINSTDIR)/$$file; done
 	$(MKDIR) -p $(CONFIGDIR)
-	$(MKDIR) -p $(CONFIGDIR)/addl_pkg_arches
-	$(INSTALL) -m 755 addl_pkg_arches/devel-addl-arches $(CONFIGDIR)/addl_pkg_arches/devel-addl-arches
 	$(MKDIR) -p $(CONFIGDIR)/certs
 


Index: Repo.py
===================================================================
RCS file: /cvs/fedora/extras-buildsys/server/Repo.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- Repo.py	15 Aug 2005 03:18:20 -0000	1.12
+++ Repo.py	15 Aug 2005 12:05:02 -0000	1.13
@@ -170,7 +170,6 @@
 
             prepping_builders = self._builder_manager.any_prepping_builders()
 
-            print "repo %s, count %d" % (self._target, self._lock_count)
             self._lock.acquire()
 
             # Level 2: update the repo


Index: UserInterface.py
===================================================================
RCS file: /cvs/fedora/extras-buildsys/server/UserInterface.py,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- UserInterface.py	15 Aug 2005 03:18:20 -0000	1.45
+++ UserInterface.py	15 Aug 2005 12:05:02 -0000	1.46
@@ -514,14 +514,14 @@
     def enqueue(self, package, cvs_tag, target, buildreq=None):
         user = AuthedXMLRPCServer.get_authinfo()
         if not user or not user.own_jobs:
-            return (-1, "Insufficient privileges.")
+            return (-1, "Insufficient privileges.", -1)
         return UserInterface.enqueue(self, user.email, package, cvs_tag, target, buildreq)
 
 
     def enqueue_srpm(self, package, srpm_file, target, buildreq=None):
         user = AuthedXMLRPCServer.get_authinfo()
         if not user or not user.own_jobs:
-            return (-1, "Insufficient privileges.")
+            return (-1, "Insufficient privileges.", -1)
         return UserInterface.enqueue_srpm(self, user.email, package, srpm_file, target, buildreq)
 
     def requeue(self, uid):




More information about the scm-commits mailing list