Project

General

Profile

Bug #1652

[parabolaweb] "Unknown" packager

bill-auger - about 6 years ago - . Updated over 5 years ago.

Status:
forwarded upstream
Priority:
bug
Assignee:
-
% Done:

0%


Description

this has bug been around for a long time - it does look unprofessional - it should probably be fixed someday


Files

find-unknown-packagers (616 Bytes) find-unknown-packagers bill-auger, 2018-09-23 06:15 AM

Related issues

Related to Packages - Bug #2001: Some packages imported from Arch Linux 32 have "Unknown Packager"forwarded upstream

Actions

History

#1

Updated by bill-auger about 6 years ago

  • Description updated (diff)
#3

Updated by bill-auger over 5 years ago

i was trying to make sense of this today and my results were pretty strange

i wrote a script to extract 'Unknown Packager' from the db caches in /var/lib/pacman/sync/ and i got very different counts then what is reported on the upstream bug - i ran the same script on both parabola i686 and again on arch32 - it did show that all of the packages by 'Unknown Packager' are in [extra], [community], and [core]

$ wc -l ./unknown-packagers-parabola 
1800 ./unknown-packagers-parabola

$ wc -l ./unknown-packagers-arch32   
2250 ./unknown-packagers-arch32

one thing i noted was that one of the packages that arch32 has by 'Unknown Packager' shows as packaged by Erich Eckner on parabola and the parabola package has a higher version number and later build date - maybe my mirrorlist is wonky on arch32 but it is the default one that was installed

arch32:
package:    4ti2-1.6.7-1
build date: 1497644502
packager:   Unknown Packager

parabola:
package:    4ti2-1.6.9-1.0
build date: 1536224793
packager:   Erich Eckner

anyways ive attached the script i used - i was not able to comment on the arch32 bug

#4

Updated by bill-auger over 5 years ago

  • Related to Bug #2001: Some packages imported from Arch Linux 32 have "Unknown Packager" added
#5

Updated by bill-auger over 5 years ago

  • Status changed from open to forwarded upstream
#6

Updated by lukeshu over 5 years ago

Note that on the upstream bug report I used /mnt/data/rsync/archlinux32/current/ on beefcake, which (1) includes packages that we blacklist, (2) includes packages built for i486 which we don't import, and (3) included all .pkg.tar.xz files, older versions of which might no longer be in the .db files.

#7

Updated by lukeshu over 5 years ago

I parsed the .pkg.tar.xz files with:

find -name '*.pkg.tar.xz' -print0 |
  while read -d '' -r file; do
      bsdtar xfO "$file" .PKGINFO |
        grep -e ^packager -e ^builddate |
        sed '1{N;s/\n/ /;}' |
        sed "s,$, filename = $file," 
  done > ~/listing.txt

Then I generated the report with:

cut -d= -f3 listing.txt | sed 's/ filename $//' | sort | uniq -c | sort -n

and:
wc -l listing.txt

I'd upload listing.txt, but Redmine is telling me it's too large.

#8

Updated by bill-auger over 5 years ago

good grief man - that sure is a lot of greek math - is that to say that the word 'Unknown' does not actually appear in those files?

using my method, 'Unknown Packager' actually is parseabale in the desc file - maybe they really are not reporting the same set

Also available in: Atom PDF