mirror of
https://github.com/getsolus/packages.git
synced 2025-05-06 10:54:54 +03:00
48 lines
1.4 KiB
Python
Executable file
48 lines
1.4 KiB
Python
Executable file
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# epcsearch.py - find pkg-config names
|
|
#
|
|
# Copyright 2015 Ikey Doherty <ikey@solus-project.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
import os
|
|
import sys
|
|
import pisi
|
|
|
|
def usage(ext=1):
|
|
print "Usage: %s [pkg-config names]" % sys.argv[0]
|
|
sys.exit(ext)
|
|
|
|
def main():
|
|
if len(sys.argv) < 2:
|
|
usage(0)
|
|
pcs = sys.argv[1:]
|
|
fdb = pisi.db.filesdb.FilesDB()
|
|
pdb = pisi.db.packagedb.PackageDB()
|
|
|
|
availPcs, availPcs32 = pdb.get_pkgconfig_providers()
|
|
|
|
for pkgconfig in pcs:
|
|
hit = False
|
|
if pkgconfig in availPcs:
|
|
print("pkgconfig(%s) found in: %s" % (pkgconfig, availPcs[pkgconfig]))
|
|
hit = True
|
|
if pkgconfig in availPcs32:
|
|
print("pkgconfig32(%s) found in: %s" % (pkgconfig, availPcs32[pkgconfig]))
|
|
hit = True
|
|
if hit:
|
|
continue
|
|
pc = fdb.get_pkgconfig_provider(pkgconfig)
|
|
if not pc:
|
|
print "Error: %s not found in repository or local install" % pkgconfig
|
|
continue
|
|
print "%s found in: %s" % (pkgconfig, pc.name)
|
|
print "Warning: Package does not appear in repository"
|
|
|
|
if __name__ == "__main__":
|
|
main()
|