Hi,
This patch makes make pkgsrc-create and pkgsrc-checkout use
pkgsrc-2010Q4 instead of pkgsrc-2010Q3. 2.8 is already changed, but
master is not.
There was some discussion on IRC about making master use pkgsrc-current
by default, but I don't think that is a good idea because of the
mismatch with the built binary packages, and I don't think bleeding edge
DragonFly should imply the same level of pkgsrc.
Any thoughts?
Max
>From 35ef6f06b1ee7a6882e4c4d224cdbfc2f2e7190b Mon Sep 17 00:00:00 2001
From: Max Herrgard <[email protected]>
Date: Fri, 4 Mar 2011 16:45:29 +0100
Subject: [PATCH] Makefile.usr - switch pkgsrc-create and pkgsrc-checkout to
pkgsrc-2010Q4.
---
etc/Makefile.usr | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/etc/Makefile.usr b/etc/Makefile.usr
index 8b7c43d..c00327c 100644
--- a/etc/Makefile.usr
+++ b/etc/Makefile.usr
@@ -56,12 +56,12 @@ pkgsrc-create:
git remote add origin git://${GITHOST}/pkgsrcv2.git
cd ${.CURDIR}/pkgsrc && git fetch origin
cd ${.CURDIR}/pkgsrc && git branch master origin/master
- cd ${.CURDIR}/pkgsrc && git branch pkgsrc-2010Q3 origin/pkgsrc-2010Q3
- cd ${.CURDIR}/pkgsrc && git checkout pkgsrc-2010Q3
+ cd ${.CURDIR}/pkgsrc && git branch pkgsrc-2010Q4 origin/pkgsrc-2010Q4
+ cd ${.CURDIR}/pkgsrc && git checkout pkgsrc-2010Q4
cd ${.CURDIR}/pkgsrc && git pull
pkgsrc-checkout:
- cd ${.CURDIR}/pkgsrc && git checkout pkgsrc-2010Q3
+ cd ${.CURDIR}/pkgsrc && git checkout pkgsrc-2010Q4
pkgsrc-update:
cd ${.CURDIR}/pkgsrc && git pull
--
1.7.3.5