X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:from:date:message-id:subject:to :content-type; q=dns; s=default; b=ZU3TxFQqLooqVkuOtz66PQ4BcmPzh 3WXE8ljmrSCXJzRKjEhJ24EI6WXA+Pb2FTTwMa7l//GUk/FArbisU5/BYDcTc6HG LBv6VN2ctJpfvDHFROryLy+Uh6w6cE4AYOUlv8dDDhPsGxkOu6LPuwBLOdo9/ABO GS2DyGzkIslIjg= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:from:date:message-id:subject:to :content-type; s=default; bh=w4BWRaR3H470lx5uanBPKDQzjaQ=; b=wQ2 wXpH4bkgdktGM+ncOej2htpsHiW1k05tXAJPeWRKkiP3BLxVAqpXbLQ3di4G9VC0 BGFAHLGMr5dlD0yM+33JPvgP6xj2P6u2XHf4jWax3xK5Vr6WuI44CI9UrsrQqNI1 XLbX4VoFV25RBGkhJFmRuOJM6KBcrkwA9q9is/ns= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=1000000, ***************, Hx-languages-length:1727, noticing X-HELO: mail-it0-f47.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=kHYHKWq6ERZEewRyj6urzzQL0W0RVYQjK1H0PE4x+7I=; b=aCErTMKLIoKpF/h0T005F1cS56h2Sf//CI7DOy7KR5BSFX0UCm+7pT6d95YiDDa4OK MUSFnslrmeQH5Cn5zX2oD+wPM0LqN9rpciMsw+0BHlsXFKYpNe1PdKrUr2sKhcgozyki 7SCNk2+0ktAGjGN6Nw+sRAIRBDifnqz5D2ITA0slAZ2v4rjL5frDnH6LhXxM7DoCkNP5 IB1ts5OLdRXAkQPxp7VZKW6mds2UCRLropB/jV7TkV/CKPNO0k41k7w9zmXUNL/Rz6Kt K/rYDGy7+6KOgw7EICFD1y7JtGY9QvXscnnKM1SFGO6oQ00QwHAcgtH9n84PpqQXnKlb bdSg== X-Gm-Message-State: AEkooutkvTvChByJMOQTxUSi8FCTu1coVUa1PwojTWTdOshtOQ3jTrtXintSzxkEb5h5xErYvTNtEVmpPcmjZg== X-Received: by 10.107.167.206 with SMTP id q197mr8952249ioe.197.1472115191303; Thu, 25 Aug 2016 01:53:11 -0700 (PDT) MIME-Version: 1.0 From: Jan Nijtmans Date: Thu, 25 Aug 2016 10:53:10 +0200 Message-ID: Subject: mingw64-sqlite3 3.8.11.1 To: cygwin AT cygwin DOT com Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes Hi all, Noticing the packages mingw64-i686-sqlite3 and mingw64-x86_64-sqlite3 still being at version 3.8.11.1 (which is just more than 1 year old), is there any plan to upgrade that to 3.14.1? I just tried to compile it using the patch below (changing the version number and the year), and it still seems to work fine. I'm willing to take over those packages, if Yaakov Selkowitz lacks time to do it and agrees to it. Regards, Jan Nijtmans $ diff -c mingw64-i686-sqlite3.cygport.orig mingw64-i686-sqlite3.cygport *** mingw64-i686-sqlite3.cygport.orig 2016-08-24 10:55:01.045796600 +0200 --- mingw64-i686-sqlite3.cygport 2016-08-24 11:01:24.354720600 +0200 *************** *** 2,8 **** inherit cross NAME="mingw64-i686-sqlite3" ! VERSION=3.8.11.1 RELEASE=1 CATEGORY="Devel" SUMMARY="SQLite 3.x database library for Win32 toolchain" --- 2,8 ---- inherit cross NAME="mingw64-i686-sqlite3" ! VERSION=3.14.1 RELEASE=1 CATEGORY="Devel" SUMMARY="SQLite 3.x database library for Win32 toolchain" *************** *** 12,18 **** /usr/i686-w64-mingw32/sys-root/mingw/{lib,include} directories." HOMEPAGE="http://www.sqlite.org/" TARBALL_VERSION=$((PV[1] * 1000000 + PV[2] * 10000 + PV[3] * 100 + PV[4])) ! SRC_URI="http://www.sqlite.org/2015/sqlite-autoconf-${TARBALL_VERSION}.tar.gz" SRC_DIR="sqlite-autoconf-${TARBALL_VERSION}" DISTCLEANFILES="sqlite3.pc" --- 12,18 ---- /usr/i686-w64-mingw32/sys-root/mingw/{lib,include} directories." HOMEPAGE="http://www.sqlite.org/" TARBALL_VERSION=$((PV[1] * 1000000 + PV[2] * 10000 + PV[3] * 100 + PV[4])) ! SRC_URI="http://www.sqlite.org/2016/sqlite-autoconf-${TARBALL_VERSION}.tar.gz" SRC_DIR="sqlite-autoconf-${TARBALL_VERSION}" DISTCLEANFILES="sqlite3.pc" -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple