Exemplo n.º 1
0
 def _test(self, *args, **kwargs):
     po = PackageOpration()
     ret = po.test(self.config)
     if not ret:
         Log.fatal(Status["STAT_TEST_ERROR"] % self.config.name)
     else:
         Log.success(Status["STAT_TEST_SUCCESS"] % self.config.name)
Exemplo n.º 2
0
 def _test(self, *args, **kwargs):
     po = PackageOpration()
     ret = po.test(self.config)
     if not ret:
         Log.fatal(Status["STAT_TEST_ERROR"] % self.config.name)
     else:
         Log.success(Status["STAT_TEST_SUCCESS"] % self.config.name)
Exemplo n.º 3
0
    def _remove(self, *args, **kwargs):
        if not kwargs.get("yes"):
            if not confirm("Is remove %s ?" % args[0]):
                return

        po = PackageOpration()
        if args:
            conf, path = po.find(args[0])
        else:
            conf = self.config
            path = None

        po.remove(conf, path)
Exemplo n.º 4
0
    def _remove(self, *args, **kwargs):
        if not kwargs.get("yes"):
            if not confirm("Is remove %s ?" % args[0]):
                return

        po = PackageOpration()
        if args:
            conf, path = po.find(args[0])
        else:
            conf = self.config
            path = None

        po.remove(conf, path)
Exemplo n.º 5
0
    def _install(self, *args, **kwargs):
        if not kwargs.get("yes"):
            if not confirm("Is install %s ?" % self.config.name):
                return

        ret = PackageOpration().install(self.config)
        if not ret:
            Log.fatal(Status["STAT_INSTALL_ERROR"] % self.config.name)
        else:
            Log.success(Status["STAT_INSTALL_SUCCESS"] % self.config.name)
Exemplo n.º 6
0
 def _list(self, *args, **kwargs):
     po = PackageOpration()
     po.list()
Exemplo n.º 7
0
 def _find(self, *args, **kwargs):
     po = PackageOpration()
     if args:
         po.find(args[0], show=True)
     else:
         po.list()
Exemplo n.º 8
0
 def _find(self, *args, **kwargs):
     po = PackageOpration()
     if args:
         po.find(args[0], show=True)
     else:
         po.list()
Exemplo n.º 9
0
 def _publish(self, *args, **kwargs):
     po = PackageOpration(self.config)
     po.publish()
Exemplo n.º 10
0
 def _publish(self, *args, **kwargs):
     po = PackageOpration(self.config)
     po.publish()
Exemplo n.º 11
0
 def _dep(self, *args, **kwargs):
     po = PackageOpration(self.config)
     po.dep()
Exemplo n.º 12
0
 def _list(self, *args, **kwargs):
     po = PackageOpration()
     po.list()