slpkg/slpkg/binary/search.py

46 lines
1.7 KiB
Python
Raw Normal View History

2014-11-12 11:52:00 +01:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
# search.py file is part of slpkg.
# Copyright 2014-2018 Dimitris Zlatanidis <d.zlatanidis@gmail.com>
2014-11-12 11:52:00 +01:00
# All rights reserved.
2014-12-19 05:57:56 +01:00
# Slpkg is a user-friendly package manager for Slackware installations
2014-11-12 11:52:00 +01:00
# https://github.com/dslackw/slpkg
# Slpkg 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 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2015-05-28 05:07:13 +02:00
2015-01-31 01:47:36 +01:00
from slpkg.utils import Utils
2015-01-21 19:59:03 +01:00
from slpkg.toolbar import status
2014-11-22 10:16:39 +01:00
from slpkg.blacklist import BlackList
from slpkg.splitting import split_package
2015-06-08 05:28:49 +02:00
from slpkg.__metadata__ import MetaData as _meta_
2014-11-12 11:52:00 +01:00
def search_pkg(name, repo):
2015-09-27 11:11:01 +02:00
"""Search if package exists in PACKAGES.TXT file
2014-11-12 11:52:00 +01:00
and return the name.
2015-06-05 13:42:52 +02:00
"""
2015-09-15 15:01:06 +02:00
PACKAGES_TXT = Utils().read_file(_meta_.lib_path + "{0}_repo/"
"PACKAGES.TXT".format(repo))
names = Utils().package_name(PACKAGES_TXT)
blacklist = BlackList().packages(pkgs=names, repo=repo)
for line in PACKAGES_TXT.splitlines():
status(0)
if line.startswith("PACKAGE NAME: ") and len(line) > 16:
pkg_name = split_package(line[15:])[0].strip()
if name == pkg_name and name not in blacklist:
return pkg_name