git: 9front

Download patch

ref: 9fd5748d31cc68522cad7ad3afcf5a51c7020705
parent: 1232aba56329ef87a449ff9b8c7ab8ead8ab61c1
author: stanley lieber <stanley.lieber@gmail.com>
date: Sat Apr 7 10:34:39 EDT 2012

pkg(1): change default $pkgpath to http://r-36.net/9front/pkg/$cputype

--- a/sys/man/1/pkg
+++ b/sys/man/1/pkg
@@ -98,7 +98,7 @@
 .br
 .B /sys/src/cmd/pkg/unpkg.c
 .SH REPOSITORIES
-.B http://pkg.violetti.org/386
+.B http://r-36.net/pkg/386
 .br
 .B http://plan9.stanleylieber.com/pkg/386
 .SH SEE ALSO
--- a/sys/src/cmd/pkg/install
+++ b/sys/src/cmd/pkg/install
@@ -1,7 +1,7 @@
 #!/bin/rc
 
 if(~ $#pkgpath 0)
-	pkgpath=http://plan9.stanleylieber.com/pkg/$cputype
+	pkgpath=http://r-36.net/9front/pkg/$cputype
 
 cd /
 mkdir -p /sys/lib/pkg
--- a/sys/src/cmd/pkg/list
+++ b/sys/src/cmd/pkg/list
@@ -1,7 +1,7 @@
 #!/bin/rc
 
 if(~ $#pkgpath 0)
-	pkgpath=http://plan9.stanleylieber.com/pkg/$cputype
+	pkgpath=http://r-36.net/9front/pkg/$cputype
 
 if(~ $pkgpath ftp* http*)
 	hget $pkgpath | htmlfmt | grep '\.tbz' | sed -e 's/\.tbz$//'
--