diffoscope 248 released 

2023-08-25 Thread Chris Lamb
Hi, The diffoscope maintainers are pleased to announce the release of version 248 of diffoscope. diffoscope tries to get to the bottom of what makes files or directories different. It will recursively unpack archives of many kinds and transform various binary formats into more human-readable

diffoci: diff for reproducible builds of Docker/OCI container images

2023-08-25 Thread Akihiro Suda
Let me introduce my new project: diffoci https://github.com/reproducible-containers/diffoci diffoci is a tool to compare Docker and OCI (Open Container Initiative) images to help reproducible builds of containers. The following example compares Docker's official `golang:1.21-alpine3.18` image

Re: Reproducible Arch Linux (August 2023)

2023-08-25 Thread Bernhard M. Wiedemann via rb-general
On 25/08/2023 06.56, kpcyrd wrote: It seems the order for this has an impact on the elf binary. ``` find . -type f -perm -u+w -print0 2>/dev/null | while IFS= read -rd '' binary ; do This should be trivial to fix with find . -type f -perm -u+w -print0 2>/dev/null | sort -z | while IFS=