Re: Curious problem with MASTER_SITE_GOOGLE_CODE

2008-09-01 Thread Peter Pentchev
On Mon, Sep 01, 2008 at 12:57:26PM -0700, Doug Barton wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: RIPEMD160
 
 I need to move one of my ports to the google code site, and ran into a
 problem where in spite of the fact that PROJECTHOST is not defined, it
 still tries to use it:
 
 = Net-DNS-Fingerprint-0.9.3.tar.gz doesn't seem to exist in
 /usr/local/distfiles/.
 = Attempting to fetch from http://.googlecode.com/files/.
 fetch: http://.googlecode.com/files/Net-DNS-Fingerprint-0.9.3.tar.gz:
 No address record
 = Attempting to fetch from http://fpdns.googlecode.com/files/.
 Net-DNS-Fingerprint-0.9.3.tar.gz  100% of   10 kB 1570 kBps
 
 echo x`make -V PROJECTHOST`x
 xx
 
 make -V MASTER_SITE_GOOGLE_CODE
 http://.googlecode.com/files/ http://fpdns.googlecode.com/files/
 
 Any ideas?

That's... kinda weird.  With what I see in bsd.sites.mk (rev. 1.455),
MASTER_SITE_GOOGLE_CODE should *never* have *both* forms defined -
unless you have somehow managed to include bsd.sites.mk twice, and
even then something is too weird.  Can you post the port's Makefile?

G'luck,
Peter

-- 
Peter Pentchev  [EMAIL PROTECTED][EMAIL PROTECTED][EMAIL PROTECTED]
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint FDBA FD79 C26F 3C51 C95E  DF9E ED18 B68D 1619 4553
The rest of this sentence is written in Thailand, on


pgpeThfLYK8yW.pgp
Description: PGP signature


Re: Curious problem with MASTER_SITE_GOOGLE_CODE

2008-09-01 Thread Doug Barton

On Tue, 2 Sep 2008, Peter Pentchev wrote:


That's... kinda weird.  With what I see in bsd.sites.mk (rev. 1.455),
MASTER_SITE_GOOGLE_CODE should *never* have *both* forms defined -
unless you have somehow managed to include bsd.sites.mk twice, and
even then something is too weird.


Agreed on all counts. :)


 Can you post the port's Makefile?


ports/dns/fpdns/Makefile

Doug

--

This .signature sanitized for your protection

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Curious problem with MASTER_SITE_GOOGLE_CODE

2008-09-01 Thread Peter Pentchev
On Mon, Sep 01, 2008 at 02:52:25PM -0700, Doug Barton wrote:
 On Tue, 2 Sep 2008, Peter Pentchev wrote:
 
  That's... kinda weird.  With what I see in bsd.sites.mk (rev. 1.455),
  MASTER_SITE_GOOGLE_CODE should *never* have *both* forms defined -
  unless you have somehow managed to include bsd.sites.mk twice, and
  even then something is too weird.
 
 Agreed on all counts. :)
 
   Can you post the port's Makefile?
 
 ports/dns/fpdns/Makefile

Okay then, with rev. 1.7 of ports/dns/fpdns/Makefile, both on my RELENG_6
machine (as of about 12 hours ago) and on the 7.0-STABLE from April
on freefall, make -V MASTER_SITES shows only the correct ones:

[EMAIL PROTECTED] ~/fbsd/ports/dns/fpdns] make -V MASTER_SITES
http://fpdns.googlecode.com/files/  http://dougbarton.us/Downloads/
[EMAIL PROTECTED] ~/fbsd/ports/dns/fpdns]

I'm starting to think you have something strange either in your
environment or in /etc/make.conf or something.  Could you post
the output of printenv and (the relevant parts of) /etc/make.conf?

G'luck,
Peter

-- 
Peter Pentchev  [EMAIL PROTECTED][EMAIL PROTECTED][EMAIL PROTECTED]
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint FDBA FD79 C26F 3C51 C95E  DF9E ED18 B68D 1619 4553
I am not the subject of this sentence.


pgpgmSQ6WgaYd.pgp
Description: PGP signature


Re: Curious problem with MASTER_SITE_GOOGLE_CODE

2008-09-01 Thread Doug Barton

On Tue, 2 Sep 2008, Peter Pentchev wrote:


On Mon, Sep 01, 2008 at 02:52:25PM -0700, Doug Barton wrote:

On Tue, 2 Sep 2008, Peter Pentchev wrote:


That's... kinda weird.  With what I see in bsd.sites.mk (rev. 1.455),
MASTER_SITE_GOOGLE_CODE should *never* have *both* forms defined -
unless you have somehow managed to include bsd.sites.mk twice, and
even then something is too weird.


Agreed on all counts. :)


 Can you post the port's Makefile?


ports/dns/fpdns/Makefile


Okay then, with rev. 1.7 of ports/dns/fpdns/Makefile, both on my RELENG_6
machine (as of about 12 hours ago) and on the 7.0-STABLE from April
on freefall, make -V MASTER_SITES shows only the correct ones:


I found the answer. :)  I forgot that I had used ports-mgmt/fastest_sites, 
and that had munged MASTER_SITE_GOOGLE_CODE down to 
http://.googlecode.com/files/. I'm cc'ing Wes with the good news.


Doug

--

This .signature sanitized for your protection

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Curious problem with MASTER_SITE_GOOGLE_CODE

2008-09-01 Thread Wesley Shields
On Mon, Sep 01, 2008 at 03:28:56PM -0700, Doug Barton wrote:
 On Tue, 2 Sep 2008, Peter Pentchev wrote:
 
  On Mon, Sep 01, 2008 at 02:52:25PM -0700, Doug Barton wrote:
  On Tue, 2 Sep 2008, Peter Pentchev wrote:
 
  That's... kinda weird.  With what I see in bsd.sites.mk (rev. 1.455),
  MASTER_SITE_GOOGLE_CODE should *never* have *both* forms defined -
  unless you have somehow managed to include bsd.sites.mk twice, and
  even then something is too weird.
 
  Agreed on all counts. :)
 
   Can you post the port's Makefile?
 
  ports/dns/fpdns/Makefile
 
  Okay then, with rev. 1.7 of ports/dns/fpdns/Makefile, both on my RELENG_6
  machine (as of about 12 hours ago) and on the 7.0-STABLE from April
  on freefall, make -V MASTER_SITES shows only the correct ones:
 
 I found the answer. :)  I forgot that I had used ports-mgmt/fastest_sites, 
 and that had munged MASTER_SITE_GOOGLE_CODE down to 
 http://.googlecode.com/files/. I'm cc'ing Wes with the good news.

Interesting.  I'll look into fixing it now.  I've also notified the
author (jls@) in case he beats me to the fix.  ;)

-- WXS
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]