[23713] trunk

source_changes at macosforge.org source_changes at macosforge.org
Sat Apr 7 07:04:34 PDT 2007


Revision: 23713
          http://trac.macosforge.org/projects/macports/changeset/23713
Author:   dluke at macports.org
Date:     2007-04-07 07:04:33 -0700 (Sat, 07 Apr 2007)

Log Message:
-----------
Some minor bind9 updates:
 - Make the inverse of blair's r23705 change (because the zone is for a /24 not a /32) although I was too lame to respond when he emailed me
 - update the db.cache file with the latest version
 - Update the 0.0.127.in-addr.arpa zone to be more readable

Modified Paths:
--------------
    trunk/dports/net/bind9/Portfile
    trunk/dports/net/bind9/files/db.cache
    trunk/dports/net/bind9/files/named.conf

Added Paths:
-----------
    trunk/dports/net/bind9/files/db.127.0.0

Removed Paths:
-------------
    trunk/dports/net/bind9/files/db.127.0.0.1

Property Changed:
----------------
    trunk/


Property changes on: trunk
___________________________________________________________________
Name: svk:merge
   - 023a8b07-a327-4f20-9012-67c915bb7b7c:/local/branches/updates:21118
023a8b07-a327-4f20-9012-67c915bb7b7c:/local/trunk:21326
40426cdb-d25d-4106-b89a-567fc1e9311f:/local/trunk:22799
a2b01108-8822-4c85-91cd-1541804339d8:/local/macports:20632
b1dfe3f6-5eec-4605-9368-528ffc7f2357:/local/branches/libdnet-maintainer:20898
b1dfe3f6-5eec-4605-9368-528ffc7f2357:/local/branches/p5-app-cli:20923
b1dfe3f6-5eec-4605-9368-528ffc7f2357:/local/branches/p5-list-moreutils:20919
b1dfe3f6-5eec-4605-9368-528ffc7f2357:/local/branches/p5-path-class:20929
b1dfe3f6-5eec-4605-9368-528ffc7f2357:/local/branches/updates:20946
b1dfe3f6-5eec-4605-9368-528ffc7f2357:/local/trunk:20947
d9146071-5dc1-4620-afc7-8ba4e23d31df:/local/trunk:21690
f2dd1c64-7982-4318-98ce-263798263e0a:/local:23558
fd7794eb-1723-4a49-8be4-c69b2a184b6d:/local/trunk:23630
   + 023a8b07-a327-4f20-9012-67c915bb7b7c:/local/branches/updates:21118
023a8b07-a327-4f20-9012-67c915bb7b7c:/local/trunk:21326
40426cdb-d25d-4106-b89a-567fc1e9311f:/local/trunk:22799
a2b01108-8822-4c85-91cd-1541804339d8:/local/macports:20632
b1dfe3f6-5eec-4605-9368-528ffc7f2357:/local/branches/libdnet-maintainer:20898
b1dfe3f6-5eec-4605-9368-528ffc7f2357:/local/branches/p5-app-cli:20923
b1dfe3f6-5eec-4605-9368-528ffc7f2357:/local/branches/p5-list-moreutils:20919
b1dfe3f6-5eec-4605-9368-528ffc7f2357:/local/branches/p5-path-class:20929
b1dfe3f6-5eec-4605-9368-528ffc7f2357:/local/branches/updates:20946
b1dfe3f6-5eec-4605-9368-528ffc7f2357:/local/trunk:20947
d9146071-5dc1-4620-afc7-8ba4e23d31df:/local/trunk:21690
f2dd1c64-7982-4318-98ce-263798263e0a:/local:23893
fd7794eb-1723-4a49-8be4-c69b2a184b6d:/local/trunk:23630

Modified: trunk/dports/net/bind9/Portfile
===================================================================
--- trunk/dports/net/bind9/Portfile	2007-04-07 11:01:05 UTC (rev 23712)
+++ trunk/dports/net/bind9/Portfile	2007-04-07 14:04:33 UTC (rev 23713)
@@ -4,6 +4,7 @@
 
 name			bind9
 version			9.4.0
+revision		1
 
 categories		net
 maintainers		dluke at geeklair.net
@@ -48,7 +49,6 @@
 post-destroot	{
 	# Ensure needed directories
 	xinstall -m 755 -d \
-		${destroot}${prefix}/etc/rc.d \
 		${destroot}${prefix}/var/named \
 		${destroot}${prefix}/var/run
 	
@@ -59,7 +59,7 @@
 		${destroot}${prefix}/etc/named.conf.dist
 	
 	# Install the db files as samples
-	foreach f "db.127.0.0.1 db.cache db.localhost" {
+	foreach f "db.127.0.0 db.cache db.localhost" {
 		xinstall -o root -m 644 ${filespath}/${f} \
 			${destroot}${prefix}/var/named/${f}.dist
 	}

Copied: trunk/dports/net/bind9/files/db.127.0.0 (from rev 20831, trunk/dports/net/bind9/files/db.127.0.0.1)
===================================================================
--- trunk/dports/net/bind9/files/db.127.0.0	                        (rev 0)
+++ trunk/dports/net/bind9/files/db.127.0.0	2007-04-07 14:04:33 UTC (rev 23713)
@@ -0,0 +1,18 @@
+; 0.0.127.in-addr.arpa.
+;
+@               IN      SOA     creation-host mail-address (
+                        2000010200      ; Serial Number
+                        10800           ; Refresh
+                        3600            ; Retry
+                        604800          ; Expire
+                        86400        )  ; Minimum TTL
+
+;
+; Name Servers
+;
+0.0.127.in-addr.arpa.   IN  NS  localhost.
+
+;
+; Addresses point to canonical names
+;
+1               IN      PTR     localhost.

Deleted: trunk/dports/net/bind9/files/db.127.0.0.1
===================================================================
--- trunk/dports/net/bind9/files/db.127.0.0.1	2007-04-07 11:01:05 UTC (rev 23712)
+++ trunk/dports/net/bind9/files/db.127.0.0.1	2007-04-07 14:04:33 UTC (rev 23713)
@@ -1,10 +0,0 @@
-$TTL	86400
-@       IN      SOA     localhost. root.localhost.  (
-                                      1997022700 ; Serial
-                                      28800      ; Refresh
-                                      14400      ; Retry
-                                      3600000    ; Expire
-                                      86400 )    ; Minimum
-              IN      NS      localhost.
-
-1       IN      PTR     localhost.

Modified: trunk/dports/net/bind9/files/db.cache
===================================================================
--- trunk/dports/net/bind9/files/db.cache	2007-04-07 11:01:05 UTC (rev 23712)
+++ trunk/dports/net/bind9/files/db.cache	2007-04-07 14:04:33 UTC (rev 23713)
@@ -3,17 +3,14 @@
 ;       (e.g. reference this file in the "cache  .  <file>"
 ;       configuration file of BIND domain name servers).
 ;
-;       This file is made available by InterNIC registration services
+;       This file is made available by InterNIC 
 ;       under anonymous FTP as
 ;           file                /domain/named.root
-;           on server           FTP.RS.INTERNIC.NET
-;       -OR- under Gopher at    RS.INTERNIC.NET
-;           under menu          InterNIC Registration Services (NSI)
-;              submenu          InterNIC Registration Archives
-;           file                named.root
+;           on server           FTP.INTERNIC.NET
+;       -OR-                    RS.INTERNIC.NET
 ;
-;       last update:    Aug 22, 1997
-;       related version of root zone:   1997082200
+;       last update:    Jan 29, 2004
+;       related version of root zone:   2004012900
 ;
 ;
 ; formerly NS.INTERNIC.NET
@@ -24,7 +21,7 @@
 ; formerly NS1.ISI.EDU
 ;
 .                        3600000      NS    B.ROOT-SERVERS.NET.
-B.ROOT-SERVERS.NET.      3600000      A     128.9.0.107
+B.ROOT-SERVERS.NET.      3600000      A     192.228.79.201
 ;
 ; formerly C.PSI.NET
 ;
@@ -61,22 +58,22 @@
 .                        3600000      NS    I.ROOT-SERVERS.NET.
 I.ROOT-SERVERS.NET.      3600000      A     192.36.148.17
 ;
-; temporarily housed at NSI (InterNIC)
+; operated by VeriSign, Inc.
 ;
 .                        3600000      NS    J.ROOT-SERVERS.NET.
-J.ROOT-SERVERS.NET.      3600000      A     198.41.0.10
+J.ROOT-SERVERS.NET.      3600000      A     192.58.128.30
 ;
-; housed in LINX, operated by RIPE NCC
+; operated by RIPE NCC
 ;
 .                        3600000      NS    K.ROOT-SERVERS.NET.
 K.ROOT-SERVERS.NET.      3600000      A     193.0.14.129 
 ;
-; temporarily housed at ISI (IANA)
+; operated by ICANN
 ;
 .                        3600000      NS    L.ROOT-SERVERS.NET.
 L.ROOT-SERVERS.NET.      3600000      A     198.32.64.12
 ;
-; housed in Japan, operated by WIDE
+; operated by WIDE
 ;
 .                        3600000      NS    M.ROOT-SERVERS.NET.
 M.ROOT-SERVERS.NET.      3600000      A     202.12.27.33

Modified: trunk/dports/net/bind9/files/named.conf
===================================================================
--- trunk/dports/net/bind9/files/named.conf	2007-04-07 11:01:05 UTC (rev 23712)
+++ trunk/dports/net/bind9/files/named.conf	2007-04-07 14:04:33 UTC (rev 23713)
@@ -51,6 +51,6 @@
 
 zone "0.0.127.in-addr.arpa" IN {
 	type master;
-	file "db.127.0.0.1";
+	file "db.127.0.0";
 	allow-update { none; };
 };

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20070407/b6b0e6d9/attachment.html


More information about the macports-changes mailing list