Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Mar 2001 04:20:51 +0200 (CEST)
From:      Leif Neland <leifn@neland.dk>
To:        freebsd-ports@freebsd.org
Cc:        knu@idaemons.org
Subject:   Fixing missing origin, to help portupgrade
Message-ID:  <Pine.BSF.4.21.0103250407320.1899-100000@arnold.neland.dk>

next in thread | raw e-mail | index | archive | help
portupgrade needs a "@comment ORIGIN:x11/xfoo" in the +CONTENTS file
in /var/db/pkg to work.

While this line gets installed now, ports installed before a certain date
doesn't have this line.

I made this quick hack. I didn't bother to write it nicely, because it
should only be run once.

Save this as fixorigin.awk:
 - - - - 
{split($1,a,"/");n=split(a[1],b,"-");
name=b[1];
for (m=2;m<n;m++) {name=name"-"b[m]}
print "\$1: ",$1," name=",name;
p= "ls -d /usr/ports/*/"name | getline x
if (p) {
  origin=substr(x,12);
  printf ("@comment ORIGIN:%s\n",origin)>>$1
  }
}
 - - - - -
Do this:
cd /var/db/pkg
grep -L ORIGIN */+CONTENTS|awk -f fixorigin.awk

This will for every port not containing the ORIGIN line take the name of
the port, eg foo-bar-7.3, trow away from the last hyphen to the end,
giving foo-bar, and do a ls -d /usr/ports/*/foo-bar

If /usr/ports/xyzzy/foo-bar exists, "@comment ORIGIN:xyxxy/foo-bar" will
be appended to foo-bar-7.3/+CONTENTS.

Now portupgrade will be happy...

Afterwards do "grep -L ORIGIN */+CONTENTS" again to see which ports you
must fix manually.

Leif


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0103250407320.1899-100000>