Tiny Core Base > Corepure64

List of broken packages

(1/1)

Vaguiner:
After today's fltk-dev incident, I decided to do a bulk check, here's the result.


--- Code: ---fltk-1.3-dev.tcz corrupt
python3.6-colorama.tcz corrupt
python3.6-evdev.tcz corrupt
simplesceenrecorder-doc.tcz corrupt
simplesceenrecorder.tcz corrupt

--- End code ---


--- Code: ---#!/bin/bash

base_url="http://distro.ibiblio.org/tinycorelinux/14.x/x86_64/tcz/"

md5_db_url="${base_url}md5.db.gz"
zcat <(wget -qO- "$md5_db_url") | while IFS= read -r line; do
    md5=$(echo "$line" | awk '{print $1}')
    filename=$(echo "$line" | awk '{print $2}')

    remote_file_url="${base_url}${filename}"
    local_md5=$(wget -qO- "$remote_file_url" | md5sum | awk '{print $1}')

    if [ "$md5" != "$local_md5" ]; then
        echo "$filename corrupt"
    fi
done

--- End code ---

Vaguiner:

--- Quote from: CardealRusso on August 20, 2023, 11:15:46 AM ---simplesceenrecorder.tcz corrupt

--- End quote ---
Heh...I remember as soon as I started using TinyCore I tried to install it and it failed without i being able to understand why, now I understand.

Rich:
Hi CardealRusso
The md5 files have been updated.

Next time redirect the results into a file so you can copy/paste
instead of introducing typos into the results.


--- Quote from: CardealRusso on August 20, 2023, 11:15:46 AM ---
--- Code: --- ----- Snip -----
simplesceenrecorder-doc.tcz corrupt
simplesceenrecorder.tcz corrupt
--- End code ---

--- End quote ---
Should be:

--- Code: ---simplescreenrecorder-doc.tcz corrupt
simplescreenrecorder.tcz corrupt
--- End code ---

Navigation

[0] Message Index

Go to full version