From owner-freebsd-ports@FreeBSD.ORG Thu Apr 12 15:30:36 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4AFE7106564A for ; Thu, 12 Apr 2012 15:30:36 +0000 (UTC) (envelope-from jhellenthal@dataix.net) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id F2D998FC0C for ; Thu, 12 Apr 2012 15:30:35 +0000 (UTC) Received: by iahk25 with SMTP id k25so3827609iah.13 for ; Thu, 12 Apr 2012 08:30:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=dataix.net; s=rsa; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition; bh=z7pXpX2HGs/tdvMcKLQPYeUR95ln2joRU/BNbTiKO+Y=; b=cIXKln1Xk7dxg3e4NUECAzcg6Hdgeeeb54KsdowlIG6V3qJesH77BUEpecPnlTQfGw Fplc/qVHgs5CtE15J/J2IdzXsDSLmjh2pebgyYfoEs9tNmzBvELLvN49kD++e3BcVfej izc8q2lGvUHE9b99AYSVYoinqgsrwsfx11lCA= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:x-gm-message-state; bh=z7pXpX2HGs/tdvMcKLQPYeUR95ln2joRU/BNbTiKO+Y=; b=lvi3c+xOo4fZ3D12aPljL3iAm6Xeju6i9+tPFD8QmrB1dnft42UoVRuUKAewubrjQt n3hjEd0l4XLorx+7R2ifo0FPCbLmhWv4YP2WNdZhWAzSJEApI3GjNSzkGUsODgDwhjzQ xVbO7K/ISutRr/Vv+CaJulJSeRnphCgCZpYNJ7Y1oif06HSFm0Dw7F+4cSR3r7EUmxoM LBKBqTLCfhvogOumUxzVL+TwrhzmJwJi8OTuCUDLdgA3qyy7NxtmZ8CWwWZ2ohnhmq8F OgdwRDC9N+zIAJKLLgNszQBBjoE28QDhWji1ONcmdlUC/m5xEsjMG8y5pmvSkGZjETpz E0xg== Received: by 10.50.89.168 with SMTP id bp8mr6647959igb.3.1334244635654; Thu, 12 Apr 2012 08:30:35 -0700 (PDT) Received: from DataIX.net (adsl-99-181-142-73.dsl.klmzmi.sbcglobal.net. [99.181.142.73]) by mx.google.com with ESMTPS id ls3sm7471381igc.12.2012.04.12.08.30.34 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 12 Apr 2012 08:30:35 -0700 (PDT) Received: from DataIX.net (localhost [127.0.0.1]) by DataIX.net (8.14.5/8.14.5) with ESMTP id q3CFUM2D048293 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 12 Apr 2012 11:30:22 -0400 (EDT) (envelope-from jhellenthal@DataIX.net) Received: (from jhellenthal@localhost) by DataIX.net (8.14.5/8.14.5/Submit) id q3CFUM9v048292; Thu, 12 Apr 2012 11:30:22 -0400 (EDT) (envelope-from jhellenthal@DataIX.net) Date: Thu, 12 Apr 2012 11:30:22 -0400 From: Jason Hellenthal To: ports@freebsd.org Message-ID: <20120412153021.GA23231@DataIX.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vkogqOf2sHV7VnPd" Content-Disposition: inline X-Gm-Message-State: ALoCoQk5rbTOLuV8z6j/TkY6bPxQ/NFPsy6BTK90hyy8VmYppXT5b2nMtBB2l1V6KO9OM09ZUlWU Cc: lev@freebsd.org Subject: devel/subversion 1.7.4_1 & svnversion errors "E200030: sqlite: callback requested query abort" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Apr 2012 15:30:36 -0000 --vkogqOf2sHV7VnPd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable After going through a few problem solving sessions with subversion and the errors it prints doing a svnversion on /usr/src/sys "E200030: sqlite: callback requested query abort" I came to the conclusion that either svnversion is broken in its path discovery or they are implying a new syntax on which svnversion should be used. newvers.sh calls svnversion on (.) while in /usr/src/sys which omits the error: E200030: sqlite: callback requested query abort. If svnversion is called on the root directory "/usr/src" there is no error so I believe either we need to adjust newvers.sh to work on (../) or create a patch for the current subversion to adjust svnversions path discovery. Keep in mind that I have already been through (svn cleanup) and other such methods of trying to fix this. Console# sqlite3 .svn/wc.db "pragma integrity_check"=20 ok Console# cd /usr/src/sys/ Console# svnversion=20 svn: E200030: sqlite: callback requested query abort svn: E200030: sqlite: callback requested query abort Console# svnversion ../ 234182M There have been reports that a checkout after the upgrade to the newer subversion and sqlite3 that it solves the problem but I have not verified that at all. Working changes are currently fairly busy. Thoughts ? Suggestions ? --=20 ;s =3D; --vkogqOf2sHV7VnPd Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- iQEcBAEBAgAGBQJPhvUNAAoJEJBXh4mJ2FR+pGMH/1UFzjTb44jlVPbRgcd/VqEV SSXi1IZ50T0+QMuGOGcUYsusUDZLWXZzwW6QdW1vK9VygcF/ZBiYhwxvD/s7Myno 8IZYTQOCLtLx72RpTQ2oHGkn0z9Lp1/WPl40Ue8//+zYM3Siw5aOiRLJ5n59pOoR X8eE8cYFcx8LcmLdSHOQrKr5uCCTMG6mr6iT8LZNMS0EF9sbkf7Xfi8MnKLXUMVg 1U6qCVDYzzpXby0o3ztok0uPLXbfJ9Z+Lb7y0LIjRX8mHV71F/Db9DBkfpZQ8CKG EM0KL9fJ9UtiiWBA74SCmgGld2ddheVq8IEBGTnpfp6fxL3pxHapfiOTmgVeA8s= =7KT+ -----END PGP SIGNATURE----- --vkogqOf2sHV7VnPd--