mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-28 19:58:18 +01:00
3fd820e5fa
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
162 lines
5.7 KiB
Python
162 lines
5.7 KiB
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# greps.py file is part of slpkg.
|
|
|
|
# Copyright 2014-2020 Dimitris Zlatanidis <d.zlatanidis@gmail.com>
|
|
# All rights reserved.
|
|
|
|
# Slpkg is a user-friendly package manager for Slackware installations
|
|
|
|
# https://gitlab.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/>.
|
|
|
|
|
|
from slpkg.utils import Utils
|
|
from slpkg.__metadata__ import MetaData as _meta_
|
|
|
|
|
|
class SBoGrep:
|
|
"""Grab data from SLACKBUILDS.TXT file
|
|
"""
|
|
def __init__(self, name):
|
|
self.name = name
|
|
self.meta = _meta_
|
|
arch64 = "x86_64"
|
|
self.line_name = "SLACKBUILD NAME: "
|
|
self.line_files = "SLACKBUILD FILES: "
|
|
self.line_down = "SLACKBUILD DOWNLOAD: "
|
|
self.line_down_64 = f"SLACKBUILD DOWNLOAD_{arch64}: "
|
|
self.line_req = "SLACKBUILD REQUIRES: "
|
|
self.line_ver = "SLACKBUILD VERSION: "
|
|
self.line_md5 = "SLACKBUILD MD5SUM: "
|
|
self.line_md5_64 = f"SLACKBUILD MD5SUM_{arch64}: "
|
|
self.line_des = "SLACKBUILD SHORT DESCRIPTION: "
|
|
self.sbo_txt = self.meta.lib_path + "sbo_repo/SLACKBUILDS.TXT"
|
|
self.answer = ["y", "Y"]
|
|
self.unst = ["UNSUPPORTED", "UNTESTED"]
|
|
self.SLACKBUILDS_TXT = Utils().read_file(self.sbo_txt)
|
|
|
|
def _names_grabbing(self):
|
|
"""Generator that collecting all packages names
|
|
"""
|
|
for line in self.SLACKBUILDS_TXT.splitlines():
|
|
if line.startswith(self.line_name):
|
|
yield line[17:].strip()
|
|
|
|
def names(self):
|
|
"""Alias method convert generator and return
|
|
a list
|
|
"""
|
|
return list(self._names_grabbing())
|
|
|
|
def source(self):
|
|
"""Grab sources downloads links
|
|
"""
|
|
source, source64, = "", ""
|
|
for line in self.SLACKBUILDS_TXT.splitlines():
|
|
if line.startswith(self.line_name):
|
|
sbo_name = line[17:].strip()
|
|
if line.startswith(self.line_down):
|
|
if sbo_name == self.name and line[21:].strip():
|
|
source = line[21:]
|
|
if line.startswith(self.line_down_64):
|
|
if sbo_name == self.name and line[28:].strip():
|
|
source64 = line[28:]
|
|
return self._select_source_arch(source, source64)
|
|
|
|
def _select_source_arch(self, source, source64):
|
|
"""Return sources by arch
|
|
"""
|
|
src = ""
|
|
if self.meta.arch == "x86_64":
|
|
if source64:
|
|
src = source64
|
|
else:
|
|
src = source
|
|
if self.meta.skip_unst in self.answer and source64 in self.unst:
|
|
src = source
|
|
else:
|
|
if source:
|
|
src = source
|
|
if self.meta.skip_unst in self.answer and source in self.unst:
|
|
src = source64
|
|
return src
|
|
|
|
def requires(self):
|
|
"""Grab package requirements
|
|
"""
|
|
for line in self.SLACKBUILDS_TXT.splitlines():
|
|
if line.startswith(self.line_name):
|
|
sbo_name = line[17:].strip()
|
|
if line.startswith(self.line_req):
|
|
if sbo_name == self.name:
|
|
return line[21:].strip().split()
|
|
|
|
def version(self):
|
|
"""Grab package version
|
|
"""
|
|
for line in self.SLACKBUILDS_TXT.splitlines():
|
|
if line.startswith(self.line_name):
|
|
sbo_name = line[17:].strip()
|
|
if line.startswith(self.line_ver):
|
|
if sbo_name == self.name:
|
|
return line[20:].strip()
|
|
|
|
def checksum(self):
|
|
"""Grab checksum string
|
|
"""
|
|
md5sum, md5sum64, = [], []
|
|
for line in self.SLACKBUILDS_TXT.splitlines():
|
|
if line.startswith(self.line_name):
|
|
sbo_name = line[17:].strip()
|
|
if line.startswith(self.line_md5_64):
|
|
if sbo_name == self.name and line[26:].strip():
|
|
md5sum64 = line[26:].strip().split()
|
|
if line.startswith(self.line_md5):
|
|
if sbo_name == self.name and line[19:].strip():
|
|
md5sum = line[19:].strip().split()
|
|
return self._select_md5sum_arch(md5sum, md5sum64)
|
|
|
|
def _select_md5sum_arch(self, md5sum, md5sum64):
|
|
"""Return checksums by arch
|
|
"""
|
|
if md5sum and md5sum64:
|
|
if self.meta.arch == "x86_64":
|
|
return md5sum64
|
|
else:
|
|
return md5sum
|
|
if md5sum:
|
|
return md5sum
|
|
else:
|
|
return md5sum64
|
|
|
|
def description(self):
|
|
"""Grab package version
|
|
"""
|
|
for line in self.SLACKBUILDS_TXT.splitlines():
|
|
if line.startswith(self.line_name):
|
|
sbo_name = line[17:].strip()
|
|
if line.startswith(self.line_des):
|
|
if sbo_name == self.name:
|
|
return line[31:].strip()
|
|
|
|
def files(self):
|
|
"""Grab files
|
|
"""
|
|
for line in self.SLACKBUILDS_TXT.splitlines():
|
|
if line.startswith(self.line_name):
|
|
sbo_name = line[17:].strip()
|
|
if line.startswith(self.line_files):
|
|
if sbo_name == self.name:
|
|
return line[18:].strip()
|