The debian-private mailing list leak, part 1. Volunteers have complained about Blackmail. Lynchings. Character assassination. Defamation. Cyberbullying. Volunteers who gave many years of their lives are picked out at random for cruel social experiments. The former DPL's girlfriend Molly de Blanc is given volunteers to experiment on for her crazy talks. These volunteers never consented to be used like lab rats. We don't either. debian-private can no longer be a safe space for the cabal. Let these monsters have nowhere to hide. Volunteers are not disposable. We stand with the victims.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Package names for utility pakcages




On Wed, 24 Apr 1996, Erick Branderhorst wrote:

> The next proposal should be taken seriously if a facility is added to
> the packages database structure for removing obsolete (not in use, out
> of date, whatever) package names from the packages database
> (/var/lib/dpkg/{available,status}). If this facility isn't added
> changing package names will increase the number of unused entries in
> the dselect select list.
> 

I personally filter the file /var/lib/dpkg/status using the following script:

#!/usr/bin/perl

while(<>) {
        if(/^Package:/) {
                if( @package>0 && $status==1 ) {
                        for $line (@package) { print $line; }
                        }
                $status=0;
                undef @package;
                }
        elsif(/^Status:/) {
                if(/purge ok not\-installed/) { $status=0; }
                else { $status=1; }
                }
        push(@package,$_);
        }




It works for me, but I can not guarantee that it'll work for you. I 
dedicated only a couple of minutes to it.

Fernando.