From owner-freebsd-stable@FreeBSD.ORG Sun Feb 24 03:15:10 2013 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 960D2101 for ; Sun, 24 Feb 2013 03:15:10 +0000 (UTC) (envelope-from jdc@koitsu.org) Received: from qmta10.emeryville.ca.mail.comcast.net (qmta10.emeryville.ca.mail.comcast.net [IPv6:2001:558:fe2d:43:76:96:30:17]) by mx1.freebsd.org (Postfix) with ESMTP id 650A01104 for ; Sun, 24 Feb 2013 03:15:10 +0000 (UTC) Received: from omta11.emeryville.ca.mail.comcast.net ([76.96.30.36]) by qmta10.emeryville.ca.mail.comcast.net with comcast id 43Er1l0070mlR8UAA3FAPF; Sun, 24 Feb 2013 03:15:10 +0000 Received: from koitsu.strangled.net ([67.180.84.87]) by omta11.emeryville.ca.mail.comcast.net with comcast id 43F91l00C1t3BNj8X3F9Kf; Sun, 24 Feb 2013 03:15:09 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id 3767173A31; Sat, 23 Feb 2013 19:15:09 -0800 (PST) Date: Sat, 23 Feb 2013 19:15:09 -0800 From: Jeremy Chadwick To: Michael Ross Subject: Re: svn - but smaller? Message-ID: <20130224031509.GA47838@icarus.home.lan> References: <20130123144050.GG51786@e-Gitt.NET> <20130125092723.GC79995@e-Gitt.NET> <1359320641-6493504.60501067.fr0RL3aYw027137@rs149.luxsci.com> <1359380582-6256705.77592125.fr0SDgrYH000991@rs149.luxsci.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1361675710; bh=Bh53QGZ7drduTjmr6ZFLjAdqK4fEiApRHiB1MsG6+AE=; h=Received:Received:Received:Date:From:To:Subject:Message-ID: MIME-Version:Content-Type; b=TgtgvZBZUDMOCpvDPB+qj7Ffu4tbvhlG6BuIvX7uU/ZFjrCry/wb+SynxQFe7lyvc LQpAInw2oUNRByroeZGDeC1muxvn9A5i5KF8rKlt4OwyJ7c3186VmIB+btPjluV1JL UFIhicViYAHz+cK2zQx8zQuzcCouHse3g651/1tCAZVt7LwkJmybqTPi1AUYKDmVl7 YnNFyF3KxOIw6mJCargYRnpRYhG7o+vCcAcAjMQaVtNyhQDSAuieAG0nXf+NT1ObTK fUlkEMGAIZD512tg+sywqbekXaHNaJeTMRAIZ5AnRxOw08zefGxHX8dc4w4PgnYZJb K4mlitzWJFC5w== Cc: John Mehr , freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Feb 2013 03:15:10 -0000 On Sun, Feb 24, 2013 at 03:45:57AM +0100, Michael Ross wrote: > On Sun, 24 Feb 2013 01:36:36 +0100, John Mehr wrote: > > > Hello all, > > I've believe I've made just about all of the progress optimizing svnup > > as I can and I've just submitted it as a new port. With my ~ 350kb/s > > DSL connection, it now takes just under 30 minutes to download a fresh > > base/releng/8.3 tree using svnup (Subversion's svn takes approximately > > 12 minutes). Incremental updates, such as tracking one of the stable > > branches takes only 2-3 minutes. > > For anyone that wants to preview the port before it gets added to the > > ports tree (assuming I got the send-pr correct), the tarball is > >located > > at: > > http://jcm.dsl.visi.com/freebsd/svnup/svnup-0.5.tar.xz > > Please let me know if you find any issues. > > > Maybe it's me, but: > > No Makefile. > So I try manually: > > gurder> cc svnup.c > /tmp//cconKEOv.o: In function `compare_md5': > svnup.c:(.text+0x175e): undefined reference to `MD5Init' > svnup.c:(.text+0x1774): undefined reference to `MD5Update' > svnup.c:(.text+0x1785): undefined reference to `MD5End' > /tmp//cconKEOv.o: In function `get_files': > svnup.c:(.text+0x1f20): undefined reference to `MD5Init' > svnup.c:(.text+0x1f4e): undefined reference to `MD5Update' > svnup.c:(.text+0x1f5f): undefined reference to `MD5End' > > > 9.0-STABLE FreeBSD 9.0-STABLE #17: Fri May 4 02:53:49 CEST 2012 Those are all defined in libmd (see MD5Init(3) man page). Thus: cc -o svnup svnup.c -lmd -- | Jeremy Chadwick jdc@koitsu.org | | UNIX Systems Administrator http://jdc.koitsu.org/ | | Mountain View, CA, US | | Making life hard for others since 1977. PGP 4BD6C0CB |