Quellcode durchsuchen

added python script

bmallred vor 11 Jahren
Ursprung
Commit
614d1888f5
2 geänderte Dateien mit 128 neuen und 0 gelöschten Zeilen
  1. 37 0
      README.md
  2. 91 0
      pac-ls

+ 37 - 0
README.md

@ -2,3 +2,40 @@ pac-ls
2 2
======
3 3
4 4
Python script to list the installed packages on your ArchLinux installation
5
6
Permissions
7
===========
8
9
```
10
chmod +x pac-ls
11
```
12
13
Executing
14
=========
15
16
To execute the program you may use the following option arguments:
17
 - **-xn**: Exclude native packages
18
 - **-xf**: Exclude foreign packages
19
 - **-xv**: Exclude versions
20
21
Example:
22
23
```
24
./pac-ls -xn
25
alsi 0.4.5-1 (foreign)
26
android-sdk r22.3-1 (foreign)
27
android-sdk-build-tools r19-1 (foreign)
28
android-sdk-platform-tools r19-1 (foreign)
29
android-studio 0.3.6-1 (foreign)
30
btsco 0.5-2 (foreign)
31
btsync 1.2.73-2 (foreign)
32
chromium-pepper-flash-stable 2:11.9.900.152-2 (foreign)
33
google-chrome 31.0.1650.63-1 (foreign)
34
google-talkplugin 4.9.1.0-1 (foreign)
35
jdk 7.45-1 (foreign)
36
lib32-llvm-amdgpu-lib-snapshot 20130403-2 (foreign)
37
llvm-amdgpu-lib-snapshot 20130403-3 (foreign)
38
pulseaudio-git v4.0.301.g12b7a60-1 (foreign)
39
sublime-text-dev 3.3047-1 (foreign)
40
virtualbox-ext-oracle 4.3.2-1 (foreign)
41
```

+ 91 - 0
pac-ls

@ -0,0 +1,91 @@
1
#!/usr/bin/python3
2
3
import sys
4
import subprocess
5
6
def runCommand(command):
7
    """
8
    Executes a command on the local operating system.
9
    """
10
11
    proc = subprocess.Popen(
12
        command, 
13
        stdout = subprocess.PIPE, 
14
        stderr = subprocess.STDOUT)
15
16
    return [x.decode("utf-8").strip() for x in iter(proc.stdout.readline, b'')]
17
18
def packageInfo(packages):
19
    """
20
    Rips the package name and version apart and places them within a dictionary.
21
    """
22
23
    info = {}
24
25
    for package in packages:
26
        name, version= package.split(' ', 2)
27
    
28
        if name:
29
            info[name] = version
30
31
    return info
32
33
def printPackages(includeNative = True, includeForeign = True, includeVersion = True):
34
    """
35
    Print both the native and foreign packages.
36
    """
37
38
    native = []
39
    foreign = []
40
41
    if includeForeign:
42
        foreign = runCommand(["pacman", "-Qm"])
43
    if includeNative:
44
        native = runCommand(["pacman", "-Qn"])
45
46
    # Combine all found packages.
47
    combined = native + foreign
48
49
    # Sort and output the package information.
50
    for name, version in sorted(packageInfo(combined).items()):
51
        output = "\033[1m\033[60m{0}".format(name)
52
53
        if includeVersion:
54
            output += " \033[92m{0}".format(version)
55
56
        output += "\033[0m"
57
58
        if "{0} {1}".format(name, version) in foreign:
59
            output += " \033[91m(foreign)\033[0m"
60
61
        print(output)
62
63
def printHelp():
64
    print("usage: paclist [-xn] [-xf] [-xv]")
65
    print("List the installed packages on your ArchLinux installation.")
66
    print()
67
    print("Optional arguments")
68
    print("{0:>4}: {1}".format("-xn", "Exclude native packages"))
69
    print("{0:>4}: {1}".format("-xf", "Exclude foreign packages"))
70
    print("{0:>4}: {1}".format("-xv", "Exclude versions"))
71
72
if __name__ == "__main__":
73
    args = sys.argv[1:]
74
    includeNative = True
75
    includeForeign = True
76
    includeVersion = True
77
78
    if args:
79
        for arg in args:
80
            arg = arg.lower()
81
            if arg == "-xn":
82
                includeNative = False
83
            elif arg == "-xf":
84
                includeForeign = False
85
            elif arg == "-xv":
86
                includeVersion = False
87
            else:
88
                printHelp()
89
                sys.exit()
90
91
    printPackages(includeNative, includeForeign, includeVersion)