summaryrefslogtreecommitdiffstats
path: root/abs/mv-core/func/pacman.py
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-10-23 18:17:40 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-10-23 18:19:39 (GMT)
commitadbcf19958300e9b6598990184c8815b945ba0ee (patch)
treef4283c850ac0ac202c17e78a637ee7ca8147621b /abs/mv-core/func/pacman.py
parent61a68250df10d29b624650948484898334ff22d0 (diff)
downloadlinhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/mv-core/func/pacman.py')
-rw-r--r--abs/mv-core/func/pacman.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/abs/mv-core/func/pacman.py b/abs/mv-core/func/pacman.py
deleted file mode 100644
index c8f2e13..0000000
--- a/abs/mv-core/func/pacman.py
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/usr/bin/python
-
-
-# other modules
-import sub_process
-
-# our modules
-import func_module
-
-# =================================
-
-class pacman(func_module.FuncModule):
- version = "0.0.1"
- api_version = "0.0.1"
- description = "update the server"
-
-
- def update_system(self,flags):
- flags.replace(";","") # prevent stupidity
- cmd = sub_process.Popen("/usr/bin/update_system %s" % flags,stdout=sub_process.PIPE,shell=True)
- data = cmd.communicate()[0]
- results = []
- for x in data.split("\n"):
- results.append(x)
- return (cmd.returncode, results)
-
- def pkgversion(self,flags):
- flags.replace(";","") # prevent stupidity
- cmd = sub_process.Popen("/usr/bin/pacman -Q %s | grep -v error" % flags,stdout=sub_process.PIPE,shell=True)
- data = cmd.communicate()[0]
- results = []
- for x in data.split("\n"):
- results.append(x)
- return (cmd.returncode, results)
-
-