mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-10 20:01:54 +01:00
53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# grep_md5.py file is part of slpkg.
|
|
|
|
# Copyright 2014 Dimitris Zlatanidis <d.zlatanidis@gmail.com>
|
|
# All rights reserved.
|
|
|
|
# Utility for easy management packages in Slackware
|
|
|
|
# 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/>.
|
|
|
|
from slack.mirrors import mirrors
|
|
|
|
from url_read import URL
|
|
from __metadata__ import lib_path
|
|
|
|
|
|
def pkg_checksum(binary, repo):
|
|
'''
|
|
Return checksum from CHECKSUMS.md5 file by repository
|
|
'''
|
|
md5 = "None"
|
|
if repo == "slack_patches":
|
|
CHECKSUMS_md5 = URL(mirrors("CHECKSUMS.md5", "patches/")).reading()
|
|
else:
|
|
repos = {
|
|
'slack': 'slack_repo/CHECKSUMS.md5',
|
|
'rlw': 'rlw_repo/CHECKSUMS.md5',
|
|
'alien': 'alien_repo/CHECKSUMS.md5',
|
|
'slacky': 'slacky_repo/CHECKSUMS.md5',
|
|
'studio': 'studio_repo/CHECKSUMS.md5',
|
|
'slackr': 'slackr_repo/CHECKSUMS.md5'
|
|
}
|
|
lib = repos[repo]
|
|
f = open(lib_path + lib, "r")
|
|
CHECKSUMS_md5 = f.read()
|
|
f.close()
|
|
for line in CHECKSUMS_md5.splitlines():
|
|
if line.endswith(binary):
|
|
md5 = line.split()[0]
|
|
return md5
|