From owner-freebsd-pkg@FreeBSD.ORG Tue Feb 25 02:23:06 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0FBB2947 for ; Tue, 25 Feb 2014 02:23:06 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E1F2112D6 for ; Tue, 25 Feb 2014 02:23:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s1P2N4Oc036250 for ; Tue, 25 Feb 2014 02:23:04 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1P2N4f5036249 for freebsd-pkg@freebsd.org; Tue, 25 Feb 2014 02:23:04 GMT (envelope-from bdrewery) Received: (qmail 27716 invoked from network); 24 Feb 2014 20:23:02 -0600 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 24 Feb 2014 20:23:02 -0600 Message-ID: <530BFE7A.6010302@FreeBSD.org> Date: Mon, 24 Feb 2014 20:22:50 -0600 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Kai Gallasch , freebsd-pkg@freebsd.org Subject: Re: pkg snapshot and pkg rollback functionality References: <95F734F1-21C5-4DAC-ADC2-AF730B115237@free.de> In-Reply-To: <95F734F1-21C5-4DAC-ADC2-AF730B115237@free.de> X-Enigmail-Version: 1.6 OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bHw0o7xBhD0q3O7geHETsbp3L34j29ODS" X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Feb 2014 02:23:06 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --bHw0o7xBhD0q3O7geHETsbp3L34j29ODS Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 1/31/2014 4:52 AM, Kai Gallasch wrote: > Hi. >=20 > I am using pkg in combination with my own poudriere repos to install an= d maintain a lot of FreeBSD servers and jails. >=20 > When upgrading FreeBSD installations I often run into the following pro= blem: >=20 > After I did a "pkg upgrade" I find out the hard way, that upgraded appl= ications are broken (software bug, config changed, incompatible dependenc= ies, etc.) and I need to go back to the state, before the pkg upgrade. > I normally get around this bis doing a "zfs snapshot" and a rollback af= ter I broke something with pkg upgrade.. >=20 > What is your preferred method of rolling back a troublesome pkg upgrade= ? >=20 > Wouldn't it be nice to have a "pkg snapshot" and "pkg rollback" functio= nality in pkg itself? >=20 > The upgrade cycle would then be: >=20 > a) pkg snapshot --create --comment "before upgrade to php 5.3.38" > b) pkg upgrade > c) bang!! php trouble.. > d) pkg snapshot --rollback --last >=20 > This could be implemented in a way to lock all packages in the local pa= ckage cache of the upgraded system, that are connected to a certain exist= ing pkg snapshot. >=20 > -- example -- >=20 > # pkg clean > The following package files will be deleted from the cache directory > /var/cache/pkg: >=20 > Package: Origin: Reason: > All/bash-4.2.45.txz shells/bash Superseded by bash-= 4.2.45_1 > All/pkg-1.2.1.txz ports-mgmt/pkg Superseded by pkg-1= =2E2.5 > All/openssl-1.0.1_8.txz security/openssl Superseded by opens= sl-1.0.1_9 > All/sqlite3-3.8.0.2.txz databases/sqlite3 Superseded by sqlit= e3-3.8.2 > All/p5-Socket6-0.25.txz net/p5-Socket6 Superseded by p5-So= cket6-0.25_1 >=20 > The following package files are locked and cannot be deleted from the c= ache > directory, because they belong to an existing snapshot. Please delete s= napshot first! >=20 > All/python27-2.7.6.txz lang/python27 needed by snapshot = $snapshot_uuid > All/p5-DateTime-1.04.txz devel/p5-DateTime needed by snapshot = $snapshot_uuid >=20 > -- example -- >=20 > Other functions: >=20 > - pkg snapshot --list > - pkg snapshot --delete --$snapshot_uuid >=20 >=20 > I think such a snapshot/rollback option for pkg would be very beneficia= l, because it would give you the option to "roll back" your pkg to every = former frozen state in an orderly manner. Even after you find out a week = later that doing an upgrade was not such a splendig idea. >=20 > What do you think? >=20 > K. >=20 >=20 > -- > GPG-Key: A593 E38B E968 4DBE 14D6 2115 7065 4D7C 4FB1 F588 > Key available from hkps://hkps.pool.sks-keyservers.net >=20 I like the concept. You can do this with ZFS plugin currently. https://github.com/freebsd/pkg-plugins/blob/master/zfssnap/README.md Also, poudriere 3.1 (not yet released) has a feature that will allow you to rollback to your previous set. It will keep N builds around for you. So if an upgrade goes bad you can change your repo to point to one of the older ones and run pkg upgrade -f to rollback. I was just thinking the other day of having pkg keep backups of upgraded packages. That would allow you to downgrade to a previous working set as well. --=20 Regards, Bryan Drewery --bHw0o7xBhD0q3O7geHETsbp3L34j29ODS Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQEcBAEBAgAGBQJTC/56AAoJEDXXcbtuRpfPkNAIANwC7xsOimi8N1lhAc9Jjr0N s+VDBH6F3Q7SuT1oE13i1x4f0bTDiMUQQ7CHyFYprGDASnvlHA4ZTGe50uHjI/Ky GdIZ6FIlnEWI5KiiWx81QnWcj9BGAuTvmgbJUxI8k8WlYTPIcdqvSPN3cY7P/s/r ehD+bgzBfFb0qJUi1VDNDgbuQjm861ID+UwrABcrERGDq9mb2Qx0FNlR1a8+JtHT IjMhWp/HrBQtJdDYeZEn8sWveysWEKBMsSBfvrSaa2rGVl4FSpCOmXOlEldMh28N qLQmKdaw25DUxlWQhlgz6UGRSR4qVLQtKim5WILjFEgB8dtR0jwCvbIt6YJAys0= =MlVh -----END PGP SIGNATURE----- --bHw0o7xBhD0q3O7geHETsbp3L34j29ODS-- From owner-freebsd-pkg@FreeBSD.ORG Thu Feb 27 01:19:05 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2132438E for ; Thu, 27 Feb 2014 01:19:05 +0000 (UTC) Received: from nm26-vm7.access.bullet.mail.gq1.yahoo.com (nm26-vm7.access.bullet.mail.gq1.yahoo.com [216.39.63.204]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B7DFD12A5 for ; Thu, 27 Feb 2014 01:19:04 +0000 (UTC) Received: from [216.39.60.175] by nm26.access.bullet.mail.gq1.yahoo.com with NNFMP; 27 Feb 2014 01:16:52 -0000 Received: from [67.195.23.147] by tm11.access.bullet.mail.gq1.yahoo.com with NNFMP; 27 Feb 2014 01:16:52 -0000 Received: from [127.0.0.1] by smtp119.sbc.mail.gq1.yahoo.com with NNFMP; 27 Feb 2014 01:16:52 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=att.net; s=s1024; t=1393463812; bh=J23WXpwsFISKZJK7Jvs4aPy1Stb/pJdvSzsWjNoVwi0=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:X-Rocket-Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:Content-Type:Content-Transfer-Encoding; b=YzW0UXpQ9xv18W+UK6GbkIzr+trOqeybr54kFez9jNqkrIUynGoyKW6ywwTeloPyE8rVv4ar09te8v/cGM8aDeixZ/hyRfL32yDH2X/AslOgJNXJzMuCVq9qDTW1GJEEpnF6qpypxU8OR+hLhnaKNFOCN3nDbsC2nl/hY/EaLow= X-Yahoo-Newman-Id: 148718.69721.bm@smtp119.sbc.mail.gq1.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: IDwPi6QVM1kdAnU3SH.AnV7lpV5dur2B8pGqdApvJywQ.YU ON_M8m5NPfY_3.vhpv2INKZF3ZYYGUDrkri8iF_ngQXubgR7XSltkLwGwhqw af4tns8KGqUyJ8aaMP9wsC06N7AN9llGZ2C7WLNAcwMB8nm8jUjJ_7F3Mh2m K.senZ24mRVb.DgKLbelGKufsaZPBLjq6OuhPt81MapwUpDLiuPTHb37RpjQ s5xZVa7FoKZ9Veb0Y9mOz7aTMWNjCMBWvE6TewJY4y546XBjGJ3KyjHp4JhJ NXtoUpl8xhSPeLqrrSQ.cD_TiuZip2v8YQLwqHqqn_dk8Br5HV30rN1Xtfy9 5UgqJyo4ztb0w5HZ0K55N0G8PPwGIKAqCldWhigW6m4GK4gDWllDDTzTshKr GTfFBBWQzBambVjw4Y2ix96jrxm.JVwVDl0dwLo5DlhsOQHV7eAVQoIabDR4 EFWKlrZlsEZDNy1uvaBBkQ6fYluCpvz.mgV0uSUSMDPUXR4.MbtIxMjNuH0f XENHInc_gaX6nkRLEsX1YtuzfvoyzDUU27.cjUeLQJuFjNFM.DPhnHSSimhT CJjEuGTTwH7CAS3JmCBhx X-Yahoo-SMTP: dQDeuIqswBBZlqxPL_idatjeqZFsZlQC4MQ5I3DYpsI- X-Rocket-Received: from [135.207.38.77] (k.oikonomou@67.84.197.59 with plain [67.195.15.66]) by smtp119.sbc.mail.gq1.yahoo.com with SMTP; 27 Feb 2014 01:16:51 +0000 UTC Message-ID: <530E9247.8090207@att.net> Date: Wed, 26 Feb 2014 20:17:59 -0500 From: Kostas Oikonomou User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: how to remove a "bogus" package? Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 01:19:05 -0000 I built /usr/ports/math/py-numpy with Python 3.2 on FreeBSD 10.0. The port was installed as package [ko@wiley ~]$ pkg info py32-numpy py32-numpy-1.8.0,1 Name : py32-numpy Version : 1.8.0,1 Installed on : Wed Feb 26 19:37:09 EST 2014 Origin : math/py-numpy Architecture : freebsd:10:x86:64 Prefix : /usr/local Categories : python math Licenses : BSD3CLAUSE Maintainer : python@FreeBSD.org WWW : http://www.numpy.org/ Comment : The New Numeric Extension to Python Options ... However, some "parts" of pkg seem to think that there is also py27-numpy installed: [ko@wiley ~]$ pkg info py27-numpy pkg: No package(s) matching py27-numpy [ko@wiley ~]$ [ko@wiley ~]$ pkg search py27-numpy py27-numpy-1.7.0_2,1 [ko@wiley ~]$ [ko@wiley ~]$ sudo pkg delete py27-numpy Package(s) not found! [ko@wiley ~]$ How do I clean this up? Thanks. Kostas From owner-freebsd-pkg@FreeBSD.ORG Thu Feb 27 07:19:19 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3AA2023A for ; Thu, 27 Feb 2014 07:19:19 +0000 (UTC) Received: from mail-wg0-x22b.google.com (mail-wg0-x22b.google.com [IPv6:2a00:1450:400c:c00::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B40C31141 for ; Thu, 27 Feb 2014 07:19:18 +0000 (UTC) Received: by mail-wg0-f43.google.com with SMTP id k14so2503880wgh.26 for ; Wed, 26 Feb 2014 23:19:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=KqDr5zGHJ7Pm6vQXyof5rqUSJHWL6mraygbu0EqwHPA=; b=P1PhGQD2/nN2ni0Rz3/Tx9Q7rzTDeXd4RdW1rZYHhCjWI2CLpJE1Bwoj//tQQK3tXX aIJS8vGOsp7uH3Jb8exIk5oCB5yo7f847iA/6iIbA/+ebu255TOWXgiaOIx92wFDxEO0 txGjHOLYt2ptFChpE0rKidK//jPxEaO+6oHRXwcbnMGkjtWTCuevVBgK8H2SGtY+PdSx ZkqZ0It9GYt+mvPQMmZKjTGvyU+G4n0EsgnI/SZPX1qQHv0XLoB6/7E2yltaSdx5hAPw 27hjXNBp0/Re1QT5FBPu1gPi7kPPAZAWij2y68NFWye3bDUqnMfz3oFf6CiSwbYN9i3e DjvA== X-Received: by 10.180.98.35 with SMTP id ef3mr8079444wib.39.1393485557175; Wed, 26 Feb 2014 23:19:17 -0800 (PST) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPSA id h13sm8749425wjr.22.2014.02.26.23.19.15 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 26 Feb 2014 23:19:15 -0800 (PST) Sender: Baptiste Daroussin Date: Thu, 27 Feb 2014 08:19:13 +0100 From: Baptiste Daroussin To: Kostas Oikonomou Subject: Re: how to remove a "bogus" package? Message-ID: <20140227071913.GC30250@ithaqua.etoilebsd.net> References: <530E9247.8090207@att.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mvpLiMfbWzRoNl4x" Content-Disposition: inline In-Reply-To: <530E9247.8090207@att.net> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 07:19:19 -0000 --mvpLiMfbWzRoNl4x Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Feb 26, 2014 at 08:17:59PM -0500, Kostas Oikonomou wrote: > I built /usr/ports/math/py-numpy with Python 3.2 on FreeBSD 10.0. The > port was installed as package >=20 > [ko@wiley ~]$ pkg info py32-numpy > py32-numpy-1.8.0,1 > Name : py32-numpy > Version : 1.8.0,1 > Installed on : Wed Feb 26 19:37:09 EST 2014 > Origin : math/py-numpy > Architecture : freebsd:10:x86:64 > Prefix : /usr/local > Categories : python math > Licenses : BSD3CLAUSE > Maintainer : python@FreeBSD.org > WWW : http://www.numpy.org/ > Comment : The New Numeric Extension to Python > Options =20 >=20 > ... >=20 > However, some "parts" of pkg seem to think that there is also py27-numpy > installed: >=20 > [ko@wiley ~]$ pkg info py27-numpy > pkg: No package(s) matching py27-numpy > [ko@wiley ~]$ > [ko@wiley ~]$ pkg search py27-numpy > py27-numpy-1.7.0_2,1 > [ko@wiley ~]$ > [ko@wiley ~]$ sudo pkg delete py27-numpy > Package(s) not found! > [ko@wiley ~]$ >=20 > How do I clean this up? Thanks. pkg search =3D=3D remote packages !=3D installed. regards, Bapt --mvpLiMfbWzRoNl4x Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (FreeBSD) iEYEARECAAYFAlMO5vEACgkQ8kTtMUmk6EwGtACguk6+OEubc4hKmNoxTiudRMrA d8QAoLUe4ZUmlJydDN3kDz3efIdk3/Cg =LTrd -----END PGP SIGNATURE----- --mvpLiMfbWzRoNl4x-- From owner-freebsd-pkg@FreeBSD.ORG Thu Feb 27 12:49:22 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D107AE46 for ; Thu, 27 Feb 2014 12:49:22 +0000 (UTC) Received: from nm4-vm1.access.bullet.mail.gq1.yahoo.com (nm4-vm1.access.bullet.mail.gq1.yahoo.com [216.39.63.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9B67613C2 for ; Thu, 27 Feb 2014 12:49:22 +0000 (UTC) Received: from [216.39.60.172] by nm4.access.bullet.mail.gq1.yahoo.com with NNFMP; 27 Feb 2014 12:44:11 -0000 Received: from [67.195.23.148] by tm8.access.bullet.mail.gq1.yahoo.com with NNFMP; 27 Feb 2014 12:44:11 -0000 Received: from [127.0.0.1] by smtp120.sbc.mail.gq1.yahoo.com with NNFMP; 27 Feb 2014 12:44:11 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=att.net; s=s1024; t=1393505051; bh=qx/uK2H+mv7sFxwpHyIRjKgYvMEq1m4F5D8rkXrgkdU=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:X-Rocket-Received:Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject:References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=yB0w1XCaQSybHBdMNV8A0/seUBGSDXMvwauirrPXHSo8qOCX3Sv4mwWe432Jgn+zx7AhiPsi8zh0nyUInPZfdVgcloV4J7JmZ2Lo+KrpVsdnqLfPJOvoqPKItQPJ8gQvH0waltkwq7PjX2z5IRwyagCKQDG/oElv3q5ufZ8YrN8= X-Yahoo-Newman-Id: 862487.70050.bm@smtp120.sbc.mail.gq1.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: 55st4dQVM1k.4AnJaDchWbSQPIbWGq6UJoITkGuhb1OA6hq huSetfWV7lFB2uwr7WK17EM_pQ4Xt2RuwEHIuDVB7IHm_XpPiwBVTnsc6yym kCyBb4uhqXC6mx1.hf3h3H78HcGkNSIIA_qMV3ZjY_ig9VCe5CeWkhOsLSMC hvYD5OtF2jrda9YH_7DPGZnjguC60PSajYyWD5cXcXhPMbBuPn5HxGkv53FA dA1Hj7cM7QtrUAJliGmSt4sLBBS8phtXd7sUavZ2YgMZdTCrR.yJHkQPnuHx ZZpIRSpH5BRBqefVe0DFaA6eMxY0trD90wj91hOqf3Ih8qSciRu3ce8m2JSo Khe7qMxzzuJH5qpidlq5KEM.GnnQtqRQpwitOiW0D4M3SyjadAZP3UPMDJDC wnDG9akUq9Ysn6e86hcIEGLSLRTjbZthqSD9dSvisk9c2k4jDMkpMibpubpR pqyrpzv31oal.qGVI_3S3e0we4hqjphrXaBoBFWph9AEf1.dzO4o2Zn.zZ3S qKzNA2f9uoZ_fBBoQHlLg2jD7cp9cdoE5s.ekOfa3sk23R.P8Cr3a0mf_Nyi AkRTFxyJjsBLFNwLa3SG6didQY6U- X-Yahoo-SMTP: dQDeuIqswBBZlqxPL_idatjeqZFsZlQC4MQ5I3DYpsI- X-Rocket-Received: from [135.207.38.77] (k.oikonomou@67.84.197.59 with plain [67.195.15.66]) by smtp120.sbc.mail.gq1.yahoo.com with SMTP; 27 Feb 2014 12:44:11 +0000 UTC Message-ID: <530F3360.4090902@att.net> Date: Thu, 27 Feb 2014 07:45:20 -0500 From: Kostas Oikonomou User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Baptiste Daroussin Subject: Re: how to remove a "bogus" package? References: <530E9247.8090207@att.net> <20140227071913.GC30250@ithaqua.etoilebsd.net> In-Reply-To: <20140227071913.GC30250@ithaqua.etoilebsd.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 12:49:23 -0000 Yes, thanks for the clarification/reminder. Nevertheless, I forgot to mention in my original post that the problem appears to be genuine: [ko@wiley ~]$ pkg install -n py27-numpy py27-numpy-1.7.0_2,1 already installed [ko@wiley ~]$ Kostas On 02/27/2014 02:19, Baptiste Daroussin wrote: > On Wed, Feb 26, 2014 at 08:17:59PM -0500, Kostas Oikonomou wrote: >> I built /usr/ports/math/py-numpy with Python 3.2 on FreeBSD 10.0. The >> port was installed as package >> >> [ko@wiley ~]$ pkg info py32-numpy >> py32-numpy-1.8.0,1 >> Name : py32-numpy >> Version : 1.8.0,1 >> Installed on : Wed Feb 26 19:37:09 EST 2014 >> Origin : math/py-numpy >> Architecture : freebsd:10:x86:64 >> Prefix : /usr/local >> Categories : python math >> Licenses : BSD3CLAUSE >> Maintainer : python@FreeBSD.org >> WWW : http://www.numpy.org/ >> Comment : The New Numeric Extension to Python >> Options >> >> ... >> >> However, some "parts" of pkg seem to think that there is also py27-numpy >> installed: >> >> [ko@wiley ~]$ pkg info py27-numpy >> pkg: No package(s) matching py27-numpy >> [ko@wiley ~]$ >> [ko@wiley ~]$ pkg search py27-numpy >> py27-numpy-1.7.0_2,1 >> [ko@wiley ~]$ >> [ko@wiley ~]$ sudo pkg delete py27-numpy >> Package(s) not found! >> [ko@wiley ~]$ >> >> How do I clean this up? Thanks. > pkg search == remote packages != installed. > > regards, > Bapt From owner-freebsd-pkg@FreeBSD.ORG Fri Feb 28 08:19:55 2014 Return-Path: Delivered-To: freebsd-pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CDBD0415 for ; Fri, 28 Feb 2014 08:19:55 +0000 (UTC) Received: from forward8l.mail.yandex.net (forward8l.mail.yandex.net [IPv6:2a02:6b8:0:1819::8]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8753C1D79 for ; Fri, 28 Feb 2014 08:19:55 +0000 (UTC) Received: from smtp19.mail.yandex.net (smtp19.mail.yandex.net [95.108.252.19]) by forward8l.mail.yandex.net (Yandex) with ESMTP id A10281A40D32 for ; Fri, 28 Feb 2014 12:19:51 +0400 (MSK) Received: from smtp19.mail.yandex.net (localhost [127.0.0.1]) by smtp19.mail.yandex.net (Yandex) with ESMTP id 622B7BE001F for ; Fri, 28 Feb 2014 12:19:51 +0400 (MSK) Received: from 84.201.166.137-vpn.dhcp.yndx.net (84.201.166.137-vpn.dhcp.yndx.net [84.201.166.137]) by smtp19.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id hxE0KR6A6F-JpvCEdod; Fri, 28 Feb 2014 12:19:51 +0400 (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (Client certificate not present) X-Yandex-Uniq: f2f8e528-2786-4ec2-a607-77e36eb47e4d DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1393575591; bh=eQHFNTUHGn1bGmPOaTC190hfgb5Evmqf38UJbk3ROoo=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: X-Enigmail-Version:Content-Type:Content-Transfer-Encoding; b=IZVn+zv3M/hsOEbVg7+xPNVNdg8b5f+UCPiQwYS0xyuuI51CziEX+V3Yhr82QKiPs VLSbtUcCXNBfth7ZZCbMjjQc+xhG43v0Fa8rbS0r2B79iLyzNRuJjnJ7Zvg3qHBxAW /nJzWnF00++RWBax74v5zCot8SqBX8kzup4HuBb8= Authentication-Results: smtp19.mail.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <5310468F.3090806@yandex.ru> Date: Fri, 28 Feb 2014 12:19:27 +0400 From: "Andrey V. Elsukov" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: freebsd-pkg@FreeBSD.org Subject: [patch] typo in jail's arguments X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Feb 2014 08:19:55 -0000 Hi, it seems poudriere/common.sh has a typo: --- poudriere.orig/common.sh 2014-02-26 18:47:40.000000000 +0400 +++ poudriere/common.sh 2014-02-28 12:18:42.582936918 +0400 @@ -3064,7 +3064,7 @@ case $IPS in 01) localipargs="ip6.addr=::1" - ipargs="ip6.addr=inherit" + ipargs="ip6=inherit" ;; 10) localipargs="ip4.addr=127.0.0.1" -- WBR, Andrey V. Elsukov From owner-freebsd-pkg@FreeBSD.ORG Fri Feb 28 13:53:30 2014 Return-Path: Delivered-To: freebsd-pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CA4B0DD9 for ; Fri, 28 Feb 2014 13:53:30 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 922861D6C for ; Fri, 28 Feb 2014 13:53:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s1SDrTAT056036 for ; Fri, 28 Feb 2014 13:53:29 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1SDrTAM056035 for freebsd-pkg@FreeBSD.org; Fri, 28 Feb 2014 13:53:29 GMT (envelope-from bdrewery) Received: (qmail 80570 invoked from network); 28 Feb 2014 07:53:27 -0600 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 28 Feb 2014 07:53:27 -0600 Message-ID: <531094AB.5010804@FreeBSD.org> Date: Fri, 28 Feb 2014 07:52:43 -0600 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: "Andrey V. Elsukov" , freebsd-pkg@FreeBSD.org Subject: Re: [patch] typo in jail's arguments References: <5310468F.3090806@yandex.ru> In-Reply-To: <5310468F.3090806@yandex.ru> X-Enigmail-Version: 1.6 OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="I02uVAfKWkGwTgfhdNvkmtatODLNOoN9b" X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Feb 2014 13:53:30 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --I02uVAfKWkGwTgfhdNvkmtatODLNOoN9b Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 2/28/2014 2:19 AM, Andrey V. Elsukov wrote: > Hi, >=20 > it seems poudriere/common.sh has a typo: >=20 > --- poudriere.orig/common.sh 2014-02-26 18:47:40.000000000 +0400 > +++ poudriere/common.sh 2014-02-28 12:18:42.582936918 +0400 > @@ -3064,7 +3064,7 @@ > case $IPS in > 01) > localipargs=3D"ip6.addr=3D::1" > - ipargs=3D"ip6.addr=3Dinherit" > + ipargs=3D"ip6=3Dinherit" > ;; > 10) > localipargs=3D"ip4.addr=3D127.0.0.1" >=20 >=20 It's been fixed upstream for a while. Just need to do a release with the fix. --=20 Regards, Bryan Drewery --I02uVAfKWkGwTgfhdNvkmtatODLNOoN9b Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQEcBAEBAgAGBQJTEJSsAAoJEDXXcbtuRpfPhgMIALPYbx0Pec4iCtZEo99uRHYa mF2Cg/2RvWwkR9kR6bbBhUL2Ynw6kXJGL146SZv/OmW/WbHd8bz/uEjc0+bTWLna a+BMwOQyx+SUZxqbuDCvTzl489whsK6k+m/6snTNVgKkfj95OkC14hI259LidPnA I9vfBSw6DrgeHBEGbTVPXe3lz8Qfaartf/w7+fsPCaDpiAaINDdERvo2Dosofni4 9f+lYLBo1Z0dmipXoCRusX6OrM8jNkuxtCIBy2S9bTnBlrawUO/UahnmgQE0R/D8 jF/v2s3hZNYHM5DKwH4HSjxa2a4ZECYNr92rGouByG6mycVJqfrF0DpGDfYMjrc= =Kj0o -----END PGP SIGNATURE----- --I02uVAfKWkGwTgfhdNvkmtatODLNOoN9b-- From owner-freebsd-pkg@FreeBSD.ORG Fri Feb 28 13:57:08 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49882E7A for ; Fri, 28 Feb 2014 13:57:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0F5241D99 for ; Fri, 28 Feb 2014 13:57:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s1SDv74n056163 for ; Fri, 28 Feb 2014 13:57:07 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1SDv7WI056162 for freebsd-pkg@freebsd.org; Fri, 28 Feb 2014 13:57:07 GMT (envelope-from bdrewery) Received: (qmail 23845 invoked from network); 28 Feb 2014 07:57:05 -0600 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 28 Feb 2014 07:57:05 -0600 Message-ID: <53109589.5050502@FreeBSD.org> Date: Fri, 28 Feb 2014 07:56:25 -0600 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Kostas Oikonomou Subject: Re: how to remove a "bogus" package? References: <530E9247.8090207@att.net> <20140227071913.GC30250@ithaqua.etoilebsd.net> <530F3360.4090902@att.net> In-Reply-To: <530F3360.4090902@att.net> X-Enigmail-Version: 1.6 OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mhKN39UEO4daXAU8Xd4q8MeTloWRviD3B" Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Feb 2014 13:57:08 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --mhKN39UEO4daXAU8Xd4q8MeTloWRviD3B Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 2/27/2014 6:45 AM, Kostas Oikonomou wrote: > Yes, thanks for the clarification/reminder.=20 >=20 > Nevertheless, I forgot to mention in my original post that the problem > appears to be genuine: >=20 > [ko@wiley ~]$ pkg install -n py27-numpy > py27-numpy-1.7.0_2,1 already installed > [ko@wiley ~]$ >=20 This is still valid. They both come from the same origin (math/py-numpy). It's currently not supported to have multiple packages/versions of the same origin installed. --=20 Regards, Bryan Drewery --mhKN39UEO4daXAU8Xd4q8MeTloWRviD3B Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQEcBAEBAgAGBQJTEJWJAAoJEDXXcbtuRpfPWmkIAMK5vlNPx+XKc+5P0kurnytv VKk/uVUTIKffzM/gbqnAiXErsSjy67O81pSDAGQlDD0Qw1uLNrEZ26CAWZJHFiTh ooqx2fYEot9g55z4N4sgoQj9IUpI67l0RsFPM9r20byUgwYQhTT/WUq4T9IhihhX ZUwGGGooMLSs9jUlKatkHugb5HAYH7my0SdecBqvpuHNRyUHHRw1ANSOYPymdcF0 ZE8scu2et36cRCSYe+YVDTraCql7nIOHFRJYOUUVRM3de8++fPzvum8l8SYtHnw5 dF0bTS/ml4frF77ABvjfIOsIlE3C/FG/bllRfGLe+cybo5aqZfNLOg8D5gfTQ4Q= =5ePq -----END PGP SIGNATURE----- --mhKN39UEO4daXAU8Xd4q8MeTloWRviD3B-- From owner-freebsd-pkg@FreeBSD.ORG Fri Feb 28 15:14:02 2014 Return-Path: Delivered-To: freebsd-pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7D3BAAF for ; Fri, 28 Feb 2014 15:14:02 +0000 (UTC) Received: from forward2l.mail.yandex.net (forward2l.mail.yandex.net [IPv6:2a02:6b8:0:1819::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 71DCD1623 for ; Fri, 28 Feb 2014 15:14:02 +0000 (UTC) Received: from smtp17.mail.yandex.net (smtp17.mail.yandex.net [95.108.252.17]) by forward2l.mail.yandex.net (Yandex) with ESMTP id DC63B1AC0D99 for ; Fri, 28 Feb 2014 19:13:50 +0400 (MSK) Received: from smtp17.mail.yandex.net (localhost [127.0.0.1]) by smtp17.mail.yandex.net (Yandex) with ESMTP id 9C8E3190060E for ; Fri, 28 Feb 2014 19:13:50 +0400 (MSK) Received: from 84.201.166.137-vpn.dhcp.yndx.net (84.201.166.137-vpn.dhcp.yndx.net [84.201.166.137]) by smtp17.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id qNMMlDcJn3-Do18Xr9I; Fri, 28 Feb 2014 19:13:50 +0400 (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (Client certificate not present) X-Yandex-Uniq: eb818d6c-fa92-4d5e-a228-371a1ca9b46e DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1393600430; bh=93MyZakIfWdBWDhDwzKTGS/gyZOKY2/jl8XDuUO2PvU=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: X-Enigmail-Version:Content-Type; b=ax3uLYX48m5/+u84wng50emYNtsSM5aLpQrTV9Uw2aj5Y5O/oGuvQTyMnOIENGc3j xpsAUaXV9hDLhjJYYK3xZiF+iijKgrLEtUwbKZO60a2l0d+fgC+0lgG+MiptGmo3pR 6B6W+mnXvzTx5Ne1dK+yi0GDL1X9TNUNRnegtZwM= Authentication-Results: smtp17.mail.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <5310A795.2050309@yandex.ru> Date: Fri, 28 Feb 2014 19:13:25 +0400 From: "Andrey V. Elsukov" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: freebsd-pkg@FreeBSD.org Subject: [patch] use custom git repo X-Enigmail-Version: 1.6 Content-Type: multipart/mixed; boundary="------------030608060200030500050009" X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Feb 2014 15:14:02 -0000 This is a multi-part message in MIME format. --------------030608060200030500050009 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi, I use this patch to be able clone and pull sources and ports from our own repos. For example: # poudriere jail -c -j test -v 10.0-STABLE -m git -g "git://github.com/freebsd/freebsd.git -b stable/10" -- WBR, Andrey V. Elsukov --------------030608060200030500050009 Content-Type: text/x-patch; name="poudriere.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="poudriere.diff" --- poudriere.orig/common.sh 2014-02-26 18:47:40.000000000 +0400 +++ poudriere/common.sh 2014-02-28 19:06:25.629837798 +0400 @@ -2965,7 +2965,6 @@ fi : ${SVN_HOST="svn.FreeBSD.org"} -: ${GIT_URL="git://github.com/freebsd/freebsd-ports.git"} : ${FREEBSD_HOST="http://ftp.FreeBSD.org"} if [ -z "${NO_ZFS}" ]; then : ${ZROOTFS="/poudriere"} --- poudriere.orig/jail.sh 2014-02-26 18:47:40.000000000 +0400 +++ poudriere/jail.sh 2014-02-28 19:05:18.000000000 +0400 @@ -48,13 +48,14 @@ -M mountpoint -- mountpoint -m method -- When used with -c, overrides the method to use by default. Could also be \"http\", \"svn\", \"svn+http\", - \"svn+https\", \"svn+file\", \"svn+ssh\", \"csup\". + \"svn+https\", \"svn+file\", \"svn+ssh\", \"csup\", \"git\". Please note that with svn and csup the world will be built. Note that building from sources can use src.conf and jail-src.conf from /usr/local/etc/poudriere.d/. Other possible method are: \"allbsd\" retrieve a snapshot from allbsd.org's website or \"ftp-archive\" for old releases that're no longer available on \"ftp\". + -g args -- git arguments for cloning. -p tree -- Specify which ports tree the jail to start/stop with -P patch -- Specify a patch file to apply to the source before committing. -t version -- version to upgrade to @@ -162,6 +163,15 @@ yes | make -C ${JAILMNT}/usr/src delete-old delete-old-libs DESTDIR=${JAILMNT} markfs clean ${JAILMNT} ;; + git) + install_from_git + eval `grep "^[RB][A-Z]*=" ${JAILMNT}/usr/src/sys/conf/newvers.sh ` + RELEASE=${REVISION}-${BRANCH} + jset ${JAILNAME} version ${RELEASE} + update_version ${RELEASE} + yes | make -C ${JAILMNT}/usr/src delete-old delete-old-libs DESTDIR=${JAILMNT} + markfs clean ${JAILMNT} + ;; allbsd|gjb) err 1 "Upgrade is not supported with allbsd, to upgrade, please delete and recreate the jail" ;; @@ -249,6 +259,31 @@ build_and_install_world } +install_from_git() { + local UPDATE=0 + local proto + [ -d ${JAILMNT}/usr/src ] && UPDATE=1 + mkdir -p ${JAILMNT}/usr/src + GIT_URL=$(jget ${JAILNAME} url) + + if [ ${UPDATE} -eq 0 ]; then + test -z "${GIT_URL}" && err 1 "git repo isn't specified" + msg_n "Cloning the sources from git..." + git clone ${GIT_URL} ${JAILMNT}/usr/src || err 1 " fail" + echo " done" + if [ -n "${SRCPATCHFILE}" ]; then + msg_n "Patching the sources with ${SRCPATCHFILE}" + patch -d ${JAILMNT}/usr/src < ${SRCPATCHFILE} || err 1 " fail" + echo done + fi + else + msg_n "Pulling the sources from git..." + cd ${JAILMNT}/usr/src && git pull + echo " done" + fi + build_and_install_world +} + install_from_csup() { local UPDATE=0 [ -d ${JAILMNT}/usr/src ] && UPDATE=1 @@ -422,6 +457,9 @@ esac FCT=install_from_svn ;; + git) + FCT=install_from_git + ;; csup) case ${VERSION} in .) @@ -450,6 +488,9 @@ jset ${JAILNAME} version ${VERSION} jset ${JAILNAME} arch ${ARCH} jset ${JAILNAME} mnt ${JAILMNT} + if [ "${METHOD}" = "git" ]; then + jset ${JAILNAME} url ${GIT_URL} + fi # Wrap the jail creation in a special cleanup hook that will remove the jail # if any error is encountered @@ -509,7 +550,7 @@ TMPFS_ALL=0 -while getopts "J:j:v:a:z:m:n:f:M:sdklqcip:ut:z:P:" FLAG; do +while getopts "J:j:g:v:a:z:m:n:f:M:sdklqcip:ut:z:P:" FLAG; do case "${FLAG}" in j) JAILNAME=${OPTARG} @@ -528,6 +569,9 @@ m) METHOD=${OPTARG} ;; + g) + GIT_URL="${OPTARG}" + ;; f) JAILFS=${OPTARG} ;; --- poudriere.orig/ports.sh 2014-02-26 18:47:40.000000000 +0400 +++ poudriere/ports.sh 2014-02-28 19:05:15.000000000 +0400 @@ -54,12 +54,15 @@ tree by default it is portsnap, possible usage are \"portsnap\", \"svn\", \"svn+http\", \"svn+https\", \"svn+file\", \"svn+ssh\", \"git\" + -g args -- git arguments for cloning. -B branch -- Which branch to use for SVN method (default: head) " exit 1 } +: ${GIT_URL="git://github.com/freebsd/freebsd-ports.git"} + CREATE=0 FAKE=0 UPDATE=0 @@ -68,7 +71,7 @@ QUIET=0 VERBOSE=0 BRANCH=head -while getopts "B:cFudlp:qf:M:m:v" FLAG; do +while getopts "B:g:cFudlp:qf:M:m:v" FLAG; do case "${FLAG}" in B) BRANCH="${OPTARG}" @@ -76,6 +79,9 @@ c) CREATE=1 ;; + g) + GIT_URL="${OPTARG}" + ;; F) FAKE=1 ;; @@ -184,6 +190,7 @@ git) msg "Cloning the ports tree" git clone ${GIT_URL} ${PTMNT} || err 1 " fail" + pset ${PTNAME} url ${GIT_URL} echo " done" ;; esac --- /usr/local/bin/poudriere 2014-02-26 18:47:40.615354000 +0400 +++ poudriere 2014-02-28 19:04:58.229839491 +0400 @@ -74,7 +74,7 @@ shift case ${CMD} in jail|jails) - exec env -i PATH=${PATH} POUDRIERE_VERSION="${POUDRIERE_VERSION}" /bin/sh ${SETX} ${POUDRIEREPREFIX}/jail.sh $@ + exec env -i PATH=${PATH} POUDRIERE_VERSION="${POUDRIERE_VERSION}" /bin/sh ${SETX} ${POUDRIEREPREFIX}/jail.sh "$@" ;; testport) exec env -i PATH=${PATH} POUDRIERE_VERSION="${POUDRIERE_VERSION}" SAVED_TERM=${SAVED_TERM} /bin/sh ${SETX} ${POUDRIEREPREFIX}/testport.sh $@ @@ -86,7 +86,7 @@ case ${CMD} in exec env -i PATH=${PATH} POUDRIERE_VERSION="${POUDRIERE_VERSION}" /bin/sh ${SETX} ${POUDRIEREPREFIX}/distclean.sh $@ ;; ports) - exec env -i PATH=${PATH} POUDRIERE_VERSION="${POUDRIERE_VERSION}" /bin/sh ${SETX} ${POUDRIEREPREFIX}/ports.sh $@ + exec env -i PATH=${PATH} POUDRIERE_VERSION="${POUDRIERE_VERSION}" /bin/sh ${SETX} ${POUDRIEREPREFIX}/ports.sh "$@" ;; queue) exec env -i PATH=${PATH} POUDRIERE_VERSION="${POUDRIERE_VERSION}" /bin/sh ${SETX} ${POUDRIEREPREFIX}/queue.sh $@ --------------030608060200030500050009-- From owner-freebsd-pkg@FreeBSD.ORG Sun Mar 2 15:35:44 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2EA42250; Sun, 2 Mar 2014 15:35:44 +0000 (UTC) Received: from mail-qa0-x235.google.com (mail-qa0-x235.google.com [IPv6:2607:f8b0:400d:c00::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B6AAD1BA0; Sun, 2 Mar 2014 15:35:43 +0000 (UTC) Received: by mail-qa0-f53.google.com with SMTP id w8so1097684qac.26 for ; Sun, 02 Mar 2014 07:35:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=PBoUbOIaXNXB0b8nBzSePj2IcOgsVXBGn9E3F2UJbsU=; b=x6rtUt7Ptt5Jt3poSYmJy9OoLRlbtZxzrlrWbOY9MhZGAztwd0WWEyfKFtaW+092WO gnii4v0GmF8v1rNhYCaTpA8LOOwLb8p+DIrSJSpC2JFG+7/H/rHwxqiDJR53tL0VSu4U o8emLXkNxM+7Fyr02KwjsFu0xvkt0zc3JkW24UtrZX+RrCvoL7UGhj40qKMmAFt8Ip0J a6DBCpE4rrEO328UY98IpneCL7N4e+JnpYjWpHIMoyCidofowV8xtaSYd00BVk8hAI0s 3NELSy1lyIDwy0AJmHdLhRP+Y4uSWQPBl3rTBA328s7/caRW/bmqc9xpszQMvQUdK9OW 0o3A== MIME-Version: 1.0 X-Received: by 10.140.101.162 with SMTP id u31mr1318361qge.107.1393774542793; Sun, 02 Mar 2014 07:35:42 -0800 (PST) Sender: tomek.cedro@gmail.com Received: by 10.229.209.69 with HTTP; Sun, 2 Mar 2014 07:35:42 -0800 (PST) Date: Sun, 2 Mar 2014 16:35:42 +0100 X-Google-Sender-Auth: mg2XVR5elehcXH_jDy3sB8LhDdo Message-ID: Subject: pkg upgrade fails too often From: CeDeROM To: freebsd-ports , freebsd-pkg@freebsd.org, FreeBSD Stable Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Mar 2014 15:35:44 -0000 this gets annoying.. :-( please add mechanism for direct dependency change to pkg, so pkg upgrade goes smooth and require no manual user intervention.. # uname -a FreeBSD mercury 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 # pkg -v 1.2.6 # pkg upgrade Updating repository catalogue Upgrades have been requested for the following 41 packages: Upgrading chromium: 32.0.1700.107 -> 33.0.1750.117 Installing sdocbook-xml: 1.1_1,2 Installing docbook-sgml: 4.5_1 Upgrading docbook-xml: 4.2_3 -> 5.0_1 Upgrading giflib-nox11: 4.2.3 -> 4.2.3_1 Upgrading git: 1.8.5.4 -> 1.8.5.4_1 Upgrading iso-codes: 3.49 -> 3.51 Installing grantlee: 0.4.0 Upgrading libfm: 1.1.2.2_1 -> 1.2.0 Reinstalling libiodbc-3.52.8 (options changed) Upgrading liblqr-1: 0.4.1_5 -> 0.4.1_6 Installing libetonyek: 0.0.3_1 Installing libmwaw: 0.1.11_1 Reinstalling open-motif-2.3.4 (options changed) Upgrading p5-IO-Socket-IP: 0.28 -> 0.29 Upgrading p5-Module-Runtime: 0.013 -> 0.014 Upgrading pciids: 20140206 -> 20140222 Upgrading pcmanfm: 1.1.2_1 -> 1.2.0 Upgrading policykit: 0.9_6 -> 0.9_7 Upgrading polkit: 0.105_1 -> 0.105_2 Reinstalling polkit-qt-0.103.0_1 (direct dependency changed) Upgrading poppler: 0.24.4 -> 0.24.5 Upgrading poppler-glib: 0.24.4 -> 0.24.5 Upgrading postgresql90-client: 9.0.15 -> 9.0.16 Upgrading rarian: 0.8.1 -> 0.8.1_1 Reinstalling ruby19-gems-1.8.29 (options changed) Upgrading rubygem-activesupport: 3.2.16 -> 3.2.17 Reinstalling swfdec-0.8.4_4 (direct dependency changed) Upgrading upower: 0.9.7_2 -> 0.9.7_3 Upgrading vim: 7.4.182 -> 7.4.192 Reinstalling virtualbox-ose-4.3.6 (direct dependency changed) Upgrading xfce4-tumbler: 0.1.29_2 -> 0.1.30 Upgrading Thunar: 1.6.3 -> 1.6.3_1 Upgrading docbook: 1.4_2 -> 1.5 Upgrading gnome-doc-utils: 0.20.10 -> 0.20.10_1 Upgrading kdelibs: 4.10.5_2 -> 4.12.2 Upgrading libkcddb: 4.10.5 -> 4.12.2 Installing libodfgen: 0.0.4_1 Upgrading rubygem-activemodel: 3.2.16 -> 3.2.17 Upgrading rubygem-activerecord: 3.2.16_1 -> 3.2.17 Upgrading libreoffice: 4.0.6_3 -> 4.1.5 The upgrade will require 42 MB more space 197 MB to be downloaded Proceed with upgrading packages [y/N]: y chromium-33.0.1750.117.txz 100% 29MB 2.4MB/s 4.1MB/s 00:12 sdocbook-xml-1.1_1,2.txz 100% 15KB 14.8KB/s 14.8KB/s 00:00 docbook-sgml-4.5_1.txz 100% 137KB 136.9KB/s 136.9KB/s 00:00 docbook-xml-5.0_1.txz 100% 542KB 541.8KB/s 541.8KB/s 00:01 giflib-nox11-4.2.3_1.txz 100% 82KB 81.6KB/s 81.6KB/s 00:00 git-1.8.5.4_1.txz 100% 2981KB 1.5MB/s 2.8MB/s 00:02 iso-codes-3.51.txz 100% 2020KB 2.0MB/s 1.7MB/s 00:01 grantlee-0.4.0.txz 100% 303KB 302.6KB/s 302.6KB/s 00:00 libfm-1.2.0.txz 100% 628KB 628.4KB/s 628.4KB/s 00:00 pkg: cached package libiodbc-3.52.8: checksum mismatch, fetching from remote libiodbc-3.52.8.txz 100% 248KB 247.7KB/s 247.7KB/s 00:01 liblqr-1-0.4.1_6.txz 100% 40KB 39.7KB/s 39.7KB/s 00:00 libetonyek-0.0.3_1.txz 100% 515KB 514.6KB/s 514.6KB/s 00:01 libmwaw-0.1.11_1.txz 100% 2479KB 1.2MB/s 2.2MB/s 00:02 open-motif-2.3.4.txz 100% 7566KB 2.5MB/s 1.2MB/s 00:03 p5-IO-Socket-IP-0.29.txz 100% 27KB 26.6KB/s 26.6KB/s 00:00 p5-Module-Runtime-0.014.txz 100% 20KB 20.4KB/s 20.4KB/s 00:00 pciids-20140222.txz 100% 179KB 178.5KB/s 178.5KB/s 00:01 pcmanfm-1.2.0.txz 100% 242KB 242.1KB/s 242.1KB/s 00:00 policykit-0.9_7.txz 100% 147KB 146.8KB/s 146.8KB/s 00:01 polkit-0.105_2.txz 100% 177KB 176.9KB/s 176.9KB/s 00:00 polkit-qt-0.103.0_1.txz 100% 70KB 69.6KB/s 69.6KB/s 00:00 poppler-0.24.5.txz 100% 1068KB 1.0MB/s 1.0MB/s 00:00 poppler-glib-0.24.5.txz 100% 208KB 207.5KB/s 207.5KB/s 00:00 postgresql90-client-9.0.16.txz 100% 1778KB 1.7MB/s 1.5MB/s 00:01 rarian-0.8.1_1.txz 100% 128KB 127.8KB/s 127.8KB/s 00:01 pkg: cached package ruby19-gems-1.8.29: checksum mismatch, fetching from remote ruby19-gems-1.8.29.txz 100% 453KB 452.9KB/s 452.9KB/s 00:00 rubygem-activesupport-3.2.17.txz 100% 421KB 420.9KB/s 420.9KB/s 00:01 pkg: cached package swfdec-0.8.4_4: checksum mismatch, fetching from remote swfdec-0.8.4_4.txz 100% 684KB 683.6KB/s 683.6KB/s 00:01 upower-0.9.7_3.txz 100% 108KB 107.6KB/s 107.6KB/s 00:00 vim-7.4.192.txz 100% 5966KB 1.9MB/s 4.3MB/s 00:03 virtualbox-ose-4.3.6.txz 100% 40MB 4.0MB/s 6.7MB/s 00:10 xfce4-tumbler-0.1.30.txz 100% 143KB 143.3KB/s 143.3KB/s 00:01 Thunar-1.6.3_1.txz 100% 959KB 958.6KB/s 958.6KB/s 00:01 docbook-1.5.txz 100% 544 0.5KB/s 0.5KB/s 00:00 gnome-doc-utils-0.20.10_1.txz 100% 312KB 312.4KB/s 312.4KB/s 00:00 kdelibs-4.12.2.txz 100% 14MB 2.8MB/s 5.6MB/s 00:05 libkcddb-4.12.2.txz 100% 230KB 230.3KB/s 230.3KB/s 00:00 libodfgen-0.0.4_1.txz 100% 176KB 175.8KB/s 175.8KB/s 00:00 rubygem-activemodel-3.2.17.txz 100% 160KB 160.0KB/s 160.0KB/s 00:00 rubygem-activerecord-3.2.17.txz 100% 748KB 747.8KB/s 747.8KB/s 00:00 libreoffice-4.1.5.txz 100% 83MB 2.6MB/s 1.0MB/s 00:32 Checking integrity...pkg: WARNING: locally installed lxshortcut-0.1.2_1 conflicts on /usr/local/bin/lxshortcut with: - libfm-1.2.0 pkg: WARNING: locally installed docbook500-5.0_4 conflicts on /usr/local/share/xml/docbook/5.0/catalog.xml with: - docbook-xml-5.0_1 pkg: WARNING: locally installed docbook500-5.0_4 conflicts on /usr/local/share/xml/docbook/5.0/dtd/docbook.dtd with: - docbook-xml-5.0_1 pkg: WARNING: locally installed docbook500-5.0_4 conflicts on /usr/local/share/xml/docbook/5.0/rng/docbook.rnc with: - docbook-xml-5.0_1 pkg: WARNING: locally installed docbook500-5.0_4 conflicts on /usr/local/share/xml/docbook/5.0/rng/docbook.rng with: - docbook-xml-5.0_1 pkg: WARNING: locally installed docbook500-5.0_4 conflicts on /usr/local/share/xml/docbook/5.0/rng/docbookxi.rnc with: - docbook-xml-5.0_1 pkg: WARNING: locally installed docbook500-5.0_4 conflicts on /usr/local/share/xml/docbook/5.0/rng/docbookxi.rng with: - docbook-xml-5.0_1 pkg: WARNING: locally installed docbook500-5.0_4 conflicts on /usr/local/share/xml/docbook/5.0/sch/docbook.sch with: - docbook-xml-5.0_1 pkg: WARNING: locally installed docbook500-5.0_4 conflicts on /usr/local/share/xml/docbook/5.0/tools/db4-entities.pl with: - docbook-xml-5.0_1 pkg: WARNING: locally installed docbook500-5.0_4 conflicts on /usr/local/share/xml/docbook/5.0/tools/db4-upgrade.xsl with: - docbook-xml-5.0_1 pkg: WARNING: locally installed docbook500-5.0_4 conflicts on /usr/local/share/xml/docbook/5.0/xsd/docbook.xsd with: - docbook-xml-5.0_1 pkg: WARNING: locally installed docbook500-5.0_4 conflicts on /usr/local/share/xml/docbook/5.0/xsd/xlink.xsd with: - docbook-xml-5.0_1 pkg: WARNING: locally installed docbook500-5.0_4 conflicts on /usr/local/share/xml/docbook/5.0/xsd/xml.xsd with: - docbook-xml-5.0_1 -- CeDeROM, SQ7MHZ, http://www.tomek.cedro.info From owner-freebsd-pkg@FreeBSD.ORG Sun Mar 2 23:50:32 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6FD9FDFE for ; Sun, 2 Mar 2014 23:50:32 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 35D1D176C for ; Sun, 2 Mar 2014 23:50:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s22NoUBZ077454 for ; Sun, 2 Mar 2014 23:50:30 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s22NoUw5077449 for freebsd-pkg@freebsd.org; Sun, 2 Mar 2014 23:50:30 GMT (envelope-from bdrewery) Received: (qmail 53756 invoked from network); 2 Mar 2014 17:50:28 -0600 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 2 Mar 2014 17:50:28 -0600 Message-ID: <5313C3C2.6050007@FreeBSD.org> Date: Sun, 02 Mar 2014 17:50:26 -0600 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: CeDeROM , freebsd-ports , freebsd-pkg@freebsd.org, FreeBSD Stable Subject: Re: pkg upgrade fails too often References: In-Reply-To: X-Enigmail-Version: 1.6 OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nqWDQnWtSDv8ExAfR7a3DO0eAeeARKdFf" X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Mar 2014 23:50:32 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --nqWDQnWtSDv8ExAfR7a3DO0eAeeARKdFf Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 3/2/2014 9:35 AM, CeDeROM wrote: > this gets annoying.. :-( >=20 > please add mechanism for direct dependency change to pkg, so pkg > upgrade goes smooth and require no manual user intervention.. >=20 This is planned for the future. Yes it is very annoying and hurts automation. > pkg: WARNING: locally installed docbook500-5.0_4 conflicts on > /usr/local/share/xml/docbook/5.0/dtd/docbook.dtd with: > - docbook-xml-5.0_1 Do this before pkg upgrade for this time: pkg delete -f docbook-xml\* docbook-sk\* docbook\[2345\]\?\?-\* docbook-4= \* --=20 Regards, Bryan Drewery --nqWDQnWtSDv8ExAfR7a3DO0eAeeARKdFf Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQEcBAEBAgAGBQJTE8PCAAoJEDXXcbtuRpfPcGkIAJQS+RrafloutxYZsXionbpz EhvWNfAd1oQlG2EsPDrhSnT/SGwUWDkkGwxe36v0MdvlhlwDd/zExU4B/D8cRfYM 1dJdm/bROnoOQDo+ZH9efPkqkg7H67tZip9sx0VTdE/Sqw3fOo+6W71C1Cmggzh2 Oxk7jPqqGnfNQBEb0qXXIfbg/gCjMw6AI4UeRJuKsn6dQLTs3ZOfEdEfMlsjkkHP /mL4Fg4+y0On39hBCIjVS9aS+Jkf/hk4+hzo+6hZ7TS9+Od6/2Z7qgGQViTE83Bu UADdXzJv6tZSydSojupFI4ys5JtzHpIJHZy+GeVGqNwbExMBu3dl6T78j6Vd2rY= =670t -----END PGP SIGNATURE----- --nqWDQnWtSDv8ExAfR7a3DO0eAeeARKdFf-- From owner-freebsd-pkg@FreeBSD.ORG Sun Mar 2 23:54:23 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 896EA32F; Sun, 2 Mar 2014 23:54:23 +0000 (UTC) Received: from mail-qa0-x236.google.com (mail-qa0-x236.google.com [IPv6:2607:f8b0:400d:c00::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 12EAD182D; Sun, 2 Mar 2014 23:54:23 +0000 (UTC) Received: by mail-qa0-f54.google.com with SMTP id w8so2861321qac.13 for ; Sun, 02 Mar 2014 15:54:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=+rikIAfYk8IWH549sDkBR7199fXwtkA4FHMN8YM+3YY=; b=iaKEIfPKoLG6P3Zjo/kv2wgKjcVyBF7ENG6c7jPyl20qMVGfPfNcbCM8N9SrlIY134 QDXWtuYUAMN7FiINDtJN2TTe0GHme0ZZMhAG38Snv8I988FRWaK9Kj9DUBCoeYm95btC MzWRuXzLTuL0AwAWpV/g98dxxZOyG3CB7mKwLyUKeBLtjxcLb7mofslsmBrpf8MQV9C2 yGLp+1J6A/GUSmd2OWD9A3ClWAyRZjH7f4P2YePdDk0Xjcz5/e0crxhr89J1ZDucRLjY bkayHPp4pHXrYQkvzP06ntAch1OPb5HKzErQFko46ZY20Sm63798XH/sA4UkaMWHK46o HnFA== MIME-Version: 1.0 X-Received: by 10.229.119.73 with SMTP id y9mr19724646qcq.18.1393804462174; Sun, 02 Mar 2014 15:54:22 -0800 (PST) Sender: tomek.cedro@gmail.com Received: by 10.229.209.69 with HTTP; Sun, 2 Mar 2014 15:54:22 -0800 (PST) In-Reply-To: <5313C3C2.6050007@FreeBSD.org> References: <5313C3C2.6050007@FreeBSD.org> Date: Mon, 3 Mar 2014 00:54:22 +0100 X-Google-Sender-Auth: 6aNk49EneU5INQDi_FP7LAVXR3s Message-ID: Subject: Re: pkg upgrade fails too often From: CeDeROM To: Bryan Drewery Content-Type: text/plain; charset=UTF-8 Cc: FreeBSD Stable , freebsd-pkg@freebsd.org, freebsd-ports X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Mar 2014 23:54:23 -0000 On Mon, Mar 3, 2014 at 12:50 AM, Bryan Drewery wrote: > On 3/2/2014 9:35 AM, CeDeROM wrote: >> this gets annoying.. :-( >> please add mechanism for direct dependency change to pkg, so pkg >> upgrade goes smooth and require no manual user intervention.. > This is planned for the future. Yes it is very annoying and hurts > automation. Good news! Thanks! :-) >> pkg: WARNING: locally installed docbook500-5.0_4 conflicts on >> /usr/local/share/xml/docbook/5.0/dtd/docbook.dtd with: >> - docbook-xml-5.0_1 > Do this before pkg upgrade for this time: > pkg delete -f docbook-xml\* docbook-sk\* docbook\[2345\]\?\?-\* docbook-4\* Yes, already did that, and some other deletes, and the packages are now upgraded, thanks Bryan! :-) -- CeDeROM, SQ7MHZ, http://www.tomek.cedro.info From owner-freebsd-pkg@FreeBSD.ORG Tue Mar 4 00:01:46 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 881135D9 for ; Tue, 4 Mar 2014 00:01:46 +0000 (UTC) Received: from shell0.rawbw.com (shell0.rawbw.com [198.144.192.45]) by mx1.freebsd.org (Postfix) with ESMTP id 58EF9298 for ; Tue, 4 Mar 2014 00:01:46 +0000 (UTC) Received: from eagle.yuri.org (stunnel@localhost [127.0.0.1]) (authenticated bits=0) by shell0.rawbw.com (8.14.4/8.14.4) with ESMTP id s23NwM9o085498 for ; Mon, 3 Mar 2014 15:58:22 -0800 (PST) (envelope-from yuri@rawbw.com) Message-ID: <5315171E.3070105@rawbw.com> Date: Mon, 03 Mar 2014 15:58:22 -0800 From: Yuri User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: 'pkg upgrade' complains about the missing dependencies, but 'pkg check -d' doesn't fix anything Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Mar 2014 00:01:46 -0000 This looks like the inconsistent behavior: # pkg upgrade Updating repository catalogue pkg: Missing dependency matching 'graphics/imlib2' pkg: Missing dependency matching 'graphics/imlib2' pkg: Missing dependency matching 'graphics/libcaca' pkg: Missing dependency matching 'graphics/imlib2' pkg: Error while trying to install/upgrade packages, as there are unresolved dependencies: graphics/giblib: graphics/imlib2 graphics/gstreamer-plugins-libcaca: graphics/libcaca graphics/libcaca: graphics/imlib2 graphics/scrot: graphics/giblib # pkg check -d pkg-1.2.6 Natural question is why doesn't 'pkg check -d' find and correct the same dependency problems? Yuri From owner-freebsd-pkg@FreeBSD.ORG Tue Mar 4 13:37:30 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52EE8FD3 for ; Tue, 4 Mar 2014 13:37:30 +0000 (UTC) Received: from mail-ea0-x22c.google.com (mail-ea0-x22c.google.com [IPv6:2a00:1450:4013:c01::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E01BD6E9 for ; Tue, 4 Mar 2014 13:37:29 +0000 (UTC) Received: by mail-ea0-f172.google.com with SMTP id l9so363297eaj.3 for ; Tue, 04 Mar 2014 05:37:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:content-type:content-transfer-encoding:subject:message-id:date :to:mime-version; bh=HaNibotyrU6kZgjwX/RVcKm7CWTYssgBMp8Yu+qyRGQ=; b=xUBRQLp01Q2gTIZZfY8beEpfRI+DMkL0aO+rC8QRo5aXdbymXgtkZhsU8E/CbYFT8u 7KE4vRgWuaVu4d9BVWKyDcL3mU6BaNwgWVzNqf3OYcUdPczEFshZmrXdB8nrZsLjulvL obnbW5/jgNmxxcAkJKiMsrqgmQlX3qdI7D87M7GSOeo0UAUOeoB2OaWEC/+CHwOG7FEd e+QIm+Xy6Os9He3iYeSJoCNu8ln4HvzZckqW3+yxDF35+Jax/tDIMvYVC+rt+Ajs0Lyw q230Z5r8rbXuH/ClofH74EJlABduOJ54szLr3gn27iNr3h09/ehO4LkKW2LS9apif8Gd L7Ew== X-Received: by 10.14.47.133 with SMTP id t5mr12425800eeb.96.1393940248203; Tue, 04 Mar 2014 05:37:28 -0800 (PST) Received: from dynamic.wline.6rd.res.cust.swisscom.ch ([2a02:120b:2c03:ef10:90eb:58cd:523:dcc5]) by mx.google.com with ESMTPSA id f45sm63113865eeg.5.2014.03.04.05.37.26 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 04 Mar 2014 05:37:27 -0800 (PST) From: =?utf-8?Q?=22=28=E3=83=84=29=22?= Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: pkg upgrade conflict Message-Id: <5943C298-6620-433E-A14D-9D1A5BB03B44@gmail.com> Date: Tue, 4 Mar 2014 14:37:25 +0100 To: freebsd-pkg@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) X-Mailer: Apple Mail (2.1874) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Mar 2014 13:37:30 -0000 I'm facing this : Conflict found on path /usr/local/bin/php between php5-5.4.25(lang/php5) = and php53-5.3.28(lang/php53) I already ran=20 pkg set -o lang/php5:lang/php53=20 and even pkg set -a -o lang/php5:lang/php53=20 But the conflict is still there, can anyone help ? I can provide any = command output if needed I'm running my own repos since several weeks with no issue, til today : # pkg -vv Version : 1.2.6 PACKAGESITE :=20 PKG_DBDIR : /var/db/pkg PKG_CACHEDIR : /var/cache/pkg PORTSDIR : /usr/ports PUBKEY :=20 HANDLE_RC_SCRIPTS : yes ASSUME_ALWAYS_YES : no REPOS_DIR : [ /etc/pkg/, /usr/local/etc/pkg/repos/, ] PLIST_KEYWORDS_DIR :=20 SYSLOG : yes AUTODEPS : yes ABI : freebsd:9:x86:64 DEVELOPER_MODE : no PORTAUDIT_SITE : http://portaudit.FreeBSD.org/auditfile.tbz VULNXML_SITE : http://www.vuxml.org/freebsd/vuln.xml.bz2 MIRROR_TYPE : SRV FETCH_RETRY : 3 PKG_PLUGINS_DIR : /usr/local/lib/pkg/ PKG_ENABLE_PLUGINS : yes PLUGINS : [ ] DEBUG_SCRIPTS : no PLUGINS_CONF_DIR : /usr/local/etc/pkg/ PERMISSIVE : no REPO_AUTOUPDATE : yes NAMESERVER :=20 EVENT_PIPE :=20 FETCH_TIMEOUT : 30 UNSET_TIMESTAMP : no SSH_RESTRICT_DIR :=20 PKG_SSH_ARGS :=20 PKG_ENV : { } DISABLE_MTREE : no DEBUG_LEVEL : 0 ALIAS : { all-depends: query %dn-%dv, annotations: info -A, build-depends: info -qd, download: fetch, iinfo: info -i -g -x, isearch: search -i -g -x, leaf: query -e "%a =3D=3D 0" "%n-%v", list: info -ql, origin: info -qo, provided-depends: info -qb, raw: info -R, required-depends: info -qr, shared-depends: info -qB, show: info -f -k, size: info -sq, } Repositories: poudriere: {=20 url : = "pkg+http://xyz.invalid/poudriere/freebsd:9:x86:64", enabled : yes, mirror_type : "SRV" } Thanks ! From owner-freebsd-pkg@FreeBSD.ORG Tue Mar 4 19:48:26 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 92858506 for ; Tue, 4 Mar 2014 19:48:26 +0000 (UTC) Received: from mail-ea0-x22d.google.com (mail-ea0-x22d.google.com [IPv6:2a00:1450:4013:c01::22d]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2B917F33 for ; Tue, 4 Mar 2014 19:48:26 +0000 (UTC) Received: by mail-ea0-f173.google.com with SMTP id r15so570348ead.32 for ; Tue, 04 Mar 2014 11:48:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:mime-version:content-type :content-transfer-encoding; bh=kMV+IL+3100dG+dcGQ4zSB+h9SNC+riQyNG5sMQ6CNQ=; b=cev8NkQrwGkqo2UNUHwchSH/v2qdvPHNPcMMOy+ieBUQOSgugHn9hxMLjOJQq9RWpq 2VAr22sx4zGcEc7VGX0cSUDbOx+Natf4aiL5P6YyOgf76oWL20d3NWymxrM5GeyJIdSw 27VCi/XTIQXYAJRO8ZGxjwXXapIeVYwWqQW4b+P85m5Nm7wxOKDQBjzTlzLwMEGikLm6 KELpRSrlfRJqr+AT8aeywPR+jSwQ9ZBIG53o/iQ+B51WJoZ22ayh4348yO544Zph6vgh PlzSnhY43z5W+AZ/6eTCLXiYVfJh187xEBp1Dliy8Fxj0JEt/6y3KjTQPmNfVEXs6uA2 RKhw== X-Received: by 10.14.93.199 with SMTP id l47mr1355938eef.58.1393962503587; Tue, 04 Mar 2014 11:48:23 -0800 (PST) Received: from laptop.minsk.domain ([178.125.222.252]) by mx.google.com with ESMTPSA id x45sm41108307eef.15.2014.03.04.11.48.21 for (version=SSLv3 cipher=RC4-SHA bits=128/128); Tue, 04 Mar 2014 11:48:22 -0800 (PST) Date: Tue, 4 Mar 2014 22:48:13 +0300 From: "Sergey V. Dyatko" To: pkg@freebsd.org Subject: pkg0.bme.freebsd.org:80 doen't respond Message-ID: <20140304224813.448e5ae9@laptop.minsk.domain> X-Mailer: Claws Mail 3.9.3 (GTK+ 2.24.22; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Mar 2014 19:48:26 -0000 Hello, sender# pkg install dovecot2 DBG(1)> pkg initialized DBG(1)> PkgConfig: loading repositories in /etc/pkg/ DBG(1)> PKgConfig: loading /etc/pkg/FreeBSD.conf DBG(1)> PkgConfig: parsing key 'FreeBSD' DBG(1)> PkgConfig: parsing repository object FreeBSD Updating repository catalogue DBG(1)> PkgRepo: verifying update for repo-FreeBSD DBG(1)> Pkgrepo, begin incremental update of '/var/db/pkg/repo-FreeBSD.sqlite' DBG(1)> Fetch: fetching from: http://pkg0.bme.freebsd.org/freebsd:10:x86:64/latest/digests.txz [long pause.. ] DBG(1)> Fetch: fetching from: http://pkg0.nyi.freebsd.org/freebsd:10:x86:64/latest/digests.txz The following 1 packages will be installed: Installing dovecot2: 2.2.10 The installation will require 14 MB more space 3 MB to be downloaded Proceed with installing packages [y/N]: y DBG(1)> Fetch: fetching from: http://pkg0.bme.freebsd.org/freebsd:10:x86:64/latest/All/dovecot2-2.2.10.txz [long pause.. ] DBG(1)> Fetch: fetching from: http://pkg0.nyi.freebsd.org/freebsd:10:x86:64/latest/All/dovecot2-2.2.10.txz dovecot2-2.2.10.txz 100% 2705KB 540.9KB/s 774.5KB/s 00:05 Checking integrity... done [1/1] Installing dovecot2-2.2.10...===> Creating users and/or groups. Creating group 'dovecot' with gid '143'. Creating group 'dovenull' with gid '144'. Creating user 'dovecot' with uid '143'. Creating user 'dovenull' with uid '144'. done I see that on boxes in Germany and in Belarus. This servers have only ipv4, just in case -- wbr, tiger From owner-freebsd-pkg@FreeBSD.ORG Tue Mar 4 19:55:43 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8DCE186E for ; Tue, 4 Mar 2014 19:55:43 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5233C12 for ; Tue, 4 Mar 2014 19:55:43 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id E0C54BDC2E; Tue, 4 Mar 2014 20:55:41 +0100 (CET) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id C0827BDC24; Tue, 4 Mar 2014 20:55:41 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 99CC8D07BA3F; Tue, 4 Mar 2014 20:55:40 +0100 (CET) Date: Tue, 04 Mar 2014 20:55:36 +0100 From: Mathieu Arnold To: "Sergey V. Dyatko" , pkg@freebsd.org Subject: Re: pkg0.bme.freebsd.org:80 doen't respond Message-ID: In-Reply-To: <20140304224813.448e5ae9@laptop.minsk.domain> References: <20140304224813.448e5ae9@laptop.minsk.domain> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Mar 2014 19:55:43 -0000 +--On 4 mars 2014 22:48:13 +0300 "Sergey V. Dyatko" wrote: | Hello, | | I see that on boxes in Germany and in Belarus. | This servers have only ipv4, just in case Ah, yes, seems like it's gone, poked the right persons, thanks for noticing. -- Mathieu Arnold From owner-freebsd-pkg@FreeBSD.ORG Wed Mar 5 17:19:58 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C8CB0A0E for ; Wed, 5 Mar 2014 17:19:58 +0000 (UTC) Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 825D92EC for ; Wed, 5 Mar 2014 17:19:58 +0000 (UTC) Received: from compute5.internal (compute5.nyi.mail.srv.osa [10.202.2.45]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id EF0D42070F for ; Wed, 5 Mar 2014 12:19:56 -0500 (EST) Received: from web6 ([10.202.2.216]) by compute5.internal (MEProxy); Wed, 05 Mar 2014 12:19:56 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=message-id:from:to:mime-version :content-transfer-encoding:content-type:in-reply-to:references :subject:date; s=smtpout; bh=7JTpQALzCJSC5jDD8giwTc3qQio=; b=lag 3iP/BtMZrszd4x/KVCJIQYvZzobbQjA++S5OihrDMkZwUIJmIOygHjldDKG0im7y frCz4CnEqXmzzVJ5ewEcEBxN2dT431th7gOGzjYe6ay9JFIppf6Ggkq6zcFfqxRz AT8RnDsBTj3wp/Y9vNZznax3bH0RRcQ/ae41jDlw= Received: by web6.nyi.mail.srv.osa (Postfix, from userid 99) id D6C1129C69D; Wed, 5 Mar 2014 12:19:56 -0500 (EST) Message-Id: <1394039996.26987.90950985.3D7B5FE0@webmail.messagingengine.com> X-Sasl-Enc: xH+2tUC3L7f8Tsmj2YcVT0FfRK1AnIZmwr+m9NmGeruz 1394039996 From: Mark Felder To: freebsd-pkg@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-4527a23f In-Reply-To: <5943C298-6620-433E-A14D-9D1A5BB03B44@gmail.com> References: <5943C298-6620-433E-A14D-9D1A5BB03B44@gmail.com> Subject: Re: pkg upgrade conflict Date: Wed, 05 Mar 2014 11:19:56 -0600 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2014 17:19:58 -0000 On Tue, Mar 4, 2014, at 7:37, (=E3=83=84) wrote: > I'm facing this : >=20 > Conflict found on path /usr/local/bin/php between php5-5.4.25(lang/php5) > and php53-5.3.28(lang/php53) >=20 > I already ran=20 >=20 > pkg set -o lang/php5:lang/php53=20 >=20 > and even >=20 > pkg set -a -o lang/php5:lang/php53=20 >=20 > But the conflict is still there, can anyone help ? I can provide any > command output if needed >=20 > I'm running my own repos since several weeks with no issue, til today : >=20 > # pkg -vv > Version : 1.2.6 > PACKAGESITE :=20 > PKG_DBDIR : /var/db/pkg > PKG_CACHEDIR : /var/cache/pkg > PORTSDIR : /usr/ports > PUBKEY :=20 > HANDLE_RC_SCRIPTS : yes > ASSUME_ALWAYS_YES : no > REPOS_DIR : [ > /etc/pkg/, > /usr/local/etc/pkg/repos/, > ] > PLIST_KEYWORDS_DIR :=20 > SYSLOG : yes > AUTODEPS : yes > ABI : freebsd:9:x86:64 > DEVELOPER_MODE : no > PORTAUDIT_SITE : http://portaudit.FreeBSD.org/auditfile.tbz > VULNXML_SITE : http://www.vuxml.org/freebsd/vuln.xml.bz2 > MIRROR_TYPE : SRV > FETCH_RETRY : 3 > PKG_PLUGINS_DIR : /usr/local/lib/pkg/ > PKG_ENABLE_PLUGINS : yes > PLUGINS : [ > ] > DEBUG_SCRIPTS : no > PLUGINS_CONF_DIR : /usr/local/etc/pkg/ > PERMISSIVE : no > REPO_AUTOUPDATE : yes > NAMESERVER :=20 > EVENT_PIPE :=20 > FETCH_TIMEOUT : 30 > UNSET_TIMESTAMP : no > SSH_RESTRICT_DIR :=20 > PKG_SSH_ARGS :=20 > PKG_ENV : { > } > DISABLE_MTREE : no > DEBUG_LEVEL : 0 > ALIAS : { > all-depends: query %dn-%dv, > annotations: info -A, > build-depends: info -qd, > download: fetch, > iinfo: info -i -g -x, > isearch: search -i -g -x, > leaf: query -e "%a =3D=3D 0" "%n-%v", > list: info -ql, > origin: info -qo, > provided-depends: info -qb, > raw: info -R, > required-depends: info -qr, > shared-depends: info -qB, > show: info -f -k, > size: info -sq, > } >=20 > Repositories: > poudriere: {=20 > url : > "pkg+http://xyz.invalid/poudriere/freebsd:9:x86:64", > enabled : yes, > mirror_type : "SRV" > } >=20 >=20 Are you trying to make php 5.3 the default version for everything in your repository? If so, you need to override PHP in your poudriere make.conf DEFAULT_VERSIONS=3D php=3D5.3 From owner-freebsd-pkg@FreeBSD.ORG Thu Mar 6 08:20:13 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6EDCE273; Thu, 6 Mar 2014 08:20:13 +0000 (UTC) Received: from mail-ee0-x22e.google.com (mail-ee0-x22e.google.com [IPv6:2a00:1450:4013:c00::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D50CDDDB; Thu, 6 Mar 2014 08:20:12 +0000 (UTC) Received: by mail-ee0-f46.google.com with SMTP id t10so927772eei.5 for ; Thu, 06 Mar 2014 00:20:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=ytJsx8EBt7juF5XsOXJeiwlLIhbyVURpj4Ao7j3ZFI0=; b=sJ4K4PFpurznS2raGLMVZ/LltNvSLeVN/wkjuBdwkn84zrAzSCXT2bpYalLJ59OYvQ +zKhyrF8BmbG7E5hBVpbY4C3sJgVYNxEH2HH1EhjPVOE+RQsxamoiJLQY0QUQFHj1PzX DBMXPa5Ck6mcHHBRbjd9/5vBgp+XgYqIQcWDInThWe4/c6W0GbhLi5mZtRPGJZrW2UYf 3cD8wdO6Uxn5W0IMS6ieu6YvkgJ1v5Rd1GN+T/TeCSIx+r7N5Gsamx6GEByHRRfzML74 vlKKDZqumr0pWfPdXsuZozhDPRiS/PtTspPIGNGshu/e6tbzeGpVl9Sg6zIGjROFJg2c Ybyg== X-Received: by 10.14.5.77 with SMTP id 53mr8497640eek.10.1394094011038; Thu, 06 Mar 2014 00:20:11 -0800 (PST) Received: from dynamic.wline.6rd.res.cust.swisscom.ch ([2a02:120b:2c03:ef10:9d29:d747:af3f:4ece]) by mx.google.com with ESMTPSA id m1sm19104144een.7.2014.03.06.00.20.08 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 06 Mar 2014 00:20:10 -0800 (PST) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) Subject: Re: pkg upgrade conflict From: =?utf-8?Q?=22=28=E3=83=84=29=22?= In-Reply-To: <1394039996.26987.90950985.3D7B5FE0@webmail.messagingengine.com> Date: Thu, 6 Mar 2014 09:20:07 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: <2D9C227C-7C23-4199-A1FE-114EFAF59C04@gmail.com> References: <5943C298-6620-433E-A14D-9D1A5BB03B44@gmail.com> <1394039996.26987.90950985.3D7B5FE0@webmail.messagingengine.com> To: Mark Felder X-Mailer: Apple Mail (2.1874) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Mar 2014 08:20:13 -0000 Le 5 mars 2014 =C3=A0 18:19, Mark Felder a =C3=A9crit = : > On Tue, Mar 4, 2014, at 7:37, (=E3=83=84) wrote: >> I'm facing this : >>=20 >> Conflict found on path /usr/local/bin/php between = php5-5.4.25(lang/php5) >> and php53-5.3.28(lang/php53) >>=20 >>=20 >=20 > Are you trying to make php 5.3 the default version for everything in > your repository? If so, you need to override PHP in your poudriere > make.conf >=20 > DEFAULT_VERSIONS=3D php=3D5.3 I have 40+ boxes, some are still running 5.3 and other are running 5.4, = thus I was looking for a way to use a single repository.=20 Unfortunately and as far as I understand - I'm just beginning with pkgng = - it seem not possible because pkg set only affect installed pkg and not = new pkg, right ? As a consequence new pkg installation is trying to = install dependencies as well, in my case pecl-memcache want php5 and not = php53... I can't understand why such an annoying limitation already - it was not = the case when using ports directly - but anyway the fast fix seem to = build 2 separate repositories. I'm welcome to any other idea of = course... Beside this and since I need to build a repository for each box = specifics, i guess I'll soon need to build a repository per box... so I = wonder if it is possible to use a generic repository pkg definition that = include the hostname, i mean : today my repository definition contains=20 poudriere: {=20 url : "pkg+http://xyz.invalid/poudriere/${ABI}", enabled : yes, mirror_type : "SRV" } is there a way to have something like this (already tried it, doesn't = work because ${HOST} env var is not expanded) poudriere: {=20 url : "pkg+http://xyz.invalid/poudriere/${ABI}/${HOST}", enabled : yes, mirror_type : "SRV" } Again as a fast way I'm currently rewriting the actual repository files = directory using a rewrite rule in the http server conf, depending on = client IP, but this is not very clean... any suggestion ? Thanks From owner-freebsd-pkg@FreeBSD.ORG Thu Mar 6 12:42:56 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D54B712 for ; Thu, 6 Mar 2014 12:42:56 +0000 (UTC) Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CC743D01 for ; Thu, 6 Mar 2014 12:42:55 +0000 (UTC) Received: from compute1.internal (compute1.nyi.mail.srv.osa [10.202.2.41]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 5694B20E9E; Thu, 6 Mar 2014 07:42:54 -0500 (EST) Received: from web3 ([10.202.2.213]) by compute1.internal (MEProxy); Thu, 06 Mar 2014 07:42:54 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=message-id:from:to:cc:mime-version :content-transfer-encoding:content-type:subject:date:in-reply-to :references; s=smtpout; bh=aIQSAikm/zCXGtIlWymGoGaJWnk=; b=luzWb sW6Y+RQhMTMEAE0A1xuB3X+uNk2iflSJLCvJXye2sD1zN2uJ0xixiN5w6+xnkG+/ u+ZMcEIHDm7C9ULUdwZHy86UGbxxznJD7JZLkHQrzxRWT/WJU5lCkY49055ZBBH3 0FZZBk2GqDhhD9hj7q8Of1WzKyhfPe05ZYWlA8= Received: by web3.nyi.mail.srv.osa (Postfix, from userid 99) id 3254D11740E; Thu, 6 Mar 2014 07:42:54 -0500 (EST) Message-Id: <1394109774.16193.91292069.5503DEE2@webmail.messagingengine.com> X-Sasl-Enc: Z1jCYoEqVfNX0Tc4v3zY2gKl9/J3Mo28wjfysVp8UIsL 1394109774 From: Mark Felder To: endzed@gmail.com (=?utf-8?Q?=E3=83=84?=) MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-4527a23f Subject: Re: pkg upgrade conflict Date: Thu, 06 Mar 2014 06:42:54 -0600 In-Reply-To: <2D9C227C-7C23-4199-A1FE-114EFAF59C04@gmail.com> References: <5943C298-6620-433E-A14D-9D1A5BB03B44@gmail.com> <1394039996.26987.90950985.3D7B5FE0@webmail.messagingengine.com> <2D9C227C-7C23-4199-A1FE-114EFAF59C04@gmail.com> Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Mar 2014 12:42:56 -0000 On Thu, Mar 6, 2014, at 2:20, (=E3=83=84) wrote: >=20 > Le 5 mars 2014 =C3=A0 18:19, Mark Felder a =C3=A9crit : >=20 > > On Tue, Mar 4, 2014, at 7:37, (=E3=83=84) wrote: > >> I'm facing this : > >>=20 > >> Conflict found on path /usr/local/bin/php between php5-5.4.25(lang/php= 5) > >> and php53-5.3.28(lang/php53) > >>=20 > >>=20 > >=20 > > Are you trying to make php 5.3 the default version for everything in > > your repository? If so, you need to override PHP in your poudriere > > make.conf > >=20 > > DEFAULT_VERSIONS=3D php=3D5.3 >=20 > I have 40+ boxes, some are still running 5.3 and other are running 5.4, > thus I was looking for a way to use a single repository.=20 >=20 > Unfortunately and as far as I understand - I'm just beginning with pkgng > - it seem not possible because pkg set only affect installed pkg and not > new pkg, right ? As a consequence new pkg installation is trying to > install dependencies as well, in my case pecl-memcache want php5 and not > php53... > I can't understand why such an annoying limitation already - it was not > the case when using ports directly - but anyway the fast fix seem to > build 2 separate repositories. I'm welcome to any other idea of course... >=20 You're right, you used to be able to trick pkg_tools into doing what you want. But then you'd have an inconsistent set of packages with broken dependencies and all sorts of fun things which eventually leads to endless mailing list posts when things really go pear shaped. Consistency and correctness are among the goals of pkgng. There is no option for you at this time but to run multiple repositories. I feel your pain -- I have to run about 8 repositories at work... But there is a light at the end of the tunnel! Bapt & co have plans to introduce a PROVIDES framework so either php 5.3 *or* php 5.4 could _PROVIDE_ "php". This would allow you to run one repository. The ports framework and pkg_tools were stagnant for a very long time. The core ports team are doing their best to introduce modern package management practices as quickly as possible. It's very difficult when we have 20,000+ ports to herd into order. The ride may be a bit bumpy for now, but the payoff will be big. :-) > Beside this and since I need to build a repository for each box > specifics, i guess I'll soon need to build a repository per box... so I > wonder if it is possible to use a generic repository pkg definition that > include the hostname, i mean : >=20 > today my repository definition contains=20 >=20 > poudriere: {=20 > url : > "pkg+http://xyz.invalid/poudriere/${ABI}", > enabled : yes, > mirror_type : "SRV" > } >=20 > is there a way to have something like this (already tried it, doesn't > work because ${HOST} env var is not expanded) >=20 > poudriere: {=20 > url : > "pkg+http://xyz.invalid/poudriere/${ABI}/${HOST}", > enabled : yes, > mirror_type : "SRV" > } >=20 Well, the way I do it is have my main poudriere.d/make.conf and then poudriere.d/php53-make.conf. In this config file: # override php version from regular make.conf .undef DEFAULT_VERSIONS DEFAULT_VERSIONS=3Dmysql=3D55 pgsql=3D92 apache=3D2.2 php=3D5.3 Now I can build a php53 flavor: pouriere bulk -j 92amd64 -z php53 -f /path/to/ports.txt On my clients using the php53 repository: "pkg+http://xyz.invalid/poudriere/${ABI}-php53", Hope that helps! From owner-freebsd-pkg@FreeBSD.ORG Fri Mar 7 09:45:21 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F1440C0; Fri, 7 Mar 2014 09:45:21 +0000 (UTC) Received: from mail-ee0-x230.google.com (mail-ee0-x230.google.com [IPv6:2a00:1450:4013:c00::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 58F0F77B; Fri, 7 Mar 2014 09:45:21 +0000 (UTC) Received: by mail-ee0-f48.google.com with SMTP id e51so1624543eek.7 for ; Fri, 07 Mar 2014 01:45:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=GgVk+CwcsCr3xayoAKE/+Aq+wu1E+C3IRxpimxknIWI=; b=s8gFi3sc9C8SxgFqmM+S9KJYcbz6hK6pRKid3jE8v9/KHYtQJpVjuYXP91D6vWcFCA PpvgVXmuIgRw0hq7cmSA8PpxfOAVXUlKqlFzeyRlBtTmvjlB7OE4hq6HqptFRoTiku1E SQKDOsJ7/XTyt3HGpb5fm7qACPsr2OKyc3LjRaexQFLFq/AARQ4Hj10264FdskGjDJlY 5haZ8r4NFEJEWeeIys607FMJT6WFRit4xOP/eWK0lxYQ89qkuEMVWZpMUgBNl1sUvwpx Xj1RxLC/oJJLHccsOHF7L1eWOKQtGmnJlNK6MURPQ+yDijcCOMrOhAnvZ8tpM+xDg+7W oQsg== X-Received: by 10.14.202.136 with SMTP id d8mr17909924eeo.46.1394185519665; Fri, 07 Mar 2014 01:45:19 -0800 (PST) Received: from dynamic.wline.6rd.res.cust.swisscom.ch ([2a02:120b:2c3b:a650:ed79:a663:e2bd:c38d]) by mx.google.com with ESMTPSA id q44sm4633408eez.1.2014.03.07.01.45.18 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 07 Mar 2014 01:45:18 -0800 (PST) Content-Type: text/plain; charset=iso-8859-1 Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) Subject: Re: pkg upgrade conflict From: =?utf-8?Q?=22=28=E3=83=84=29=22?= In-Reply-To: <1394109774.16193.91292069.5503DEE2@webmail.messagingengine.com> Date: Fri, 7 Mar 2014 10:45:16 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: <2251E05E-C3C7-48C7-A0BA-60281CD8169B@gmail.com> References: <5943C298-6620-433E-A14D-9D1A5BB03B44@gmail.com> <1394039996.26987.90950985.3D7B5FE0@webmail.messagingengine.com> <2D9C227C-7C23-4199-A1FE-114EFAF59C04@gmail.com> <1394109774.16193.91292069.5503DEE2@webmail.messagingengine.com> To: Mark Felder X-Mailer: Apple Mail (2.1874) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Mar 2014 09:45:22 -0000 Le 6 mars 2014 =E0 13:42, Mark Felder a =E9crit : >> Beside this and since I need to build a repository for each box >> specifics, i guess I'll soon need to build a repository per box... so = I >> wonder if it is possible to use a generic repository pkg definition = that >> include the hostname, i mean : >>=20 >> today my repository definition contains=20 >>=20 >> poudriere: {=20 >> url : >> "pkg+http://xyz.invalid/poudriere/${ABI}", >> enabled : yes, >> mirror_type : "SRV" >> } >>=20 >> is there a way to have something like this (already tried it, doesn't >> work because ${HOST} env var is not expanded) >>=20 >> poudriere: {=20 >> url : >> "pkg+http://xyz.invalid/poudriere/${ABI}/${HOST}", >> enabled : yes, >> mirror_type : "SRV" >> } >>=20 >=20 > Well, the way I do it is have my main poudriere.d/make.conf and then > poudriere.d/php53-make.conf. In this config file: >=20 > # override php version from regular make.conf > .undef DEFAULT_VERSIONS > DEFAULT_VERSIONS=3Dmysql=3D55 pgsql=3D92 apache=3D2.2 php=3D5.3 >=20 > Now I can build a php53 flavor: >=20 > pouriere bulk -j 92amd64 -z php53 -f /path/to/ports.txt >=20 > On my clients using the php53 repository: >=20 > "pkg+http://xyz.invalid/poudriere/${ABI}-php53", >=20 >=20 > Hope that helps! That helps ! I even go deeper and use some sets (-z option) to solve = this, one set for php53 and one for php54 Many thanks :-) From owner-freebsd-pkg@FreeBSD.ORG Sat Mar 8 06:00:55 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF6E53C1 for ; Sat, 8 Mar 2014 06:00:55 +0000 (UTC) Received: from mail-qg0-x22c.google.com (mail-qg0-x22c.google.com [IPv6:2607:f8b0:400d:c04::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 819CED67 for ; Sat, 8 Mar 2014 06:00:55 +0000 (UTC) Received: by mail-qg0-f44.google.com with SMTP id a108so14321952qge.3 for ; Fri, 07 Mar 2014 22:00:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=xwwBWdVLuSs+K0YHrTlKHxqfXgbbWkdm2IjxeRExoEE=; b=TzTXAbiT9OCxhykp8AtRZTX/vqo0Nc/v12YFf6l6C7QA8XA8STifCqRsSDwBQo+n8k w82a4laSbeAWApwmC0j+5oywWsQCNgzMaTD51bFGGKZiBNNi12G40G4/t58ucyu63ooi /PBn3+Rllw4iWhENCv06JF7rCGZQsrwC4lvfxJ1VD650A12UJbJp+LqoVLfvCw7F+YJC gRRiubRnLoYj1NMj6lnv1NNCHgjZSAjoJmQQ0vbMbTzHbbP5hgwNO8dsjQ7CanTCf3E4 CjihlBDnbs/KbaoxvRyLazWrXUNFRkdPrzSC7Fy3QreqMCLN3nHZEl82LyOkEqefTa5o keyg== MIME-Version: 1.0 X-Received: by 10.224.60.71 with SMTP id o7mr26276108qah.38.1394258454776; Fri, 07 Mar 2014 22:00:54 -0800 (PST) Received: by 10.229.199.71 with HTTP; Fri, 7 Mar 2014 22:00:54 -0800 (PST) Date: Fri, 7 Mar 2014 20:00:54 -1000 Message-ID: Subject: pkg create hello world From: John Daley To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Mar 2014 06:00:55 -0000 Hi, I need to move a package from bsd9 to bsd10. Since pkg-create went away, I am trying to build the tarball with 'pkg create', using 'pkg help create' as my guide. I've tried plists, +MTREE_DIRS and specifying 'dir' 'file', 'dirs' and 'files' in the +MANIFEST file. Whatever I do, when I run my pkg command, e.g.: pkg create -o /tmp/xx -f tar -m $PWD/mani it creates a tar file in /tmp/xx with just the +MANIFEST and +MTREE_DIRS in it, but no content and no hints what might be the problem. Can someone post a very simple set of metadata files and pkg create command that work? That would be extremely useful, like a 'hello world' of package creation ;) I'm under a deadline so any pointers would be appreciated. btw, I'm using: FreeBSD 10.0-RELEASE #0 r260789 and pkg -v 1.2.6, if that matters. thanks, -johnd From owner-freebsd-pkg@FreeBSD.ORG Sun Mar 9 14:20:25 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73FC7DAB; Sun, 9 Mar 2014 14:20:25 +0000 (UTC) Received: from smtp2-g21.free.fr (smtp2-g21.free.fr [IPv6:2a01:e0c:1:1599::11]) by mx1.freebsd.org (Postfix) with ESMTP id 6B6B4CF8; Sun, 9 Mar 2014 14:20:22 +0000 (UTC) Received: from LNBoX (unknown [88.164.179.61]) by smtp2-g21.free.fr (Postfix) with ESMTPS id C2C2C4B0015; Sun, 9 Mar 2014 15:20:15 +0100 (CET) Date: Sun, 9 Mar 2014 15:20:14 +0100 From: Albat0r To: freebsd-pkg@freebsd.org Subject: pkg: Missing dependency matching 'graphics/imlib2' Message-ID: <20140309152014.5d12952e@LNBoX> X-Mailer: Claws Mail 3.9.3 (GTK+ 2.24.22; amd64-portbld-freebsd10.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: bf@FreeBSD.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Mar 2014 14:20:25 -0000 Hi, Since the 16th of February, the package imlib2 has been missing in the repository.That day, the source file could not be fetched: http://downloads.sourceforge.net/project/enlightenment/imlib2-src/1.4.6/imlib2_loaders-1.4.6.tar.bz2: Operation timed out Here is the complete message : http://docs.freebsd.org/cgi/getmsg.cgi?fetch=42284065+0+archive/2014/freebsd-pkg-fallout/20140216.freebsd-pkg-fallout This prevents many other packages to be installed through pkg: http://www.freebsd.org/cgi/ports.cgi?query=imlib2&stype=requires and this prevents to upgrade packages if some of them requiring imlib2 had already been installed. The file has been available since last time I checked (more than ten days ago): % fetch http://downloads.sourceforge.net/project/enlightenment/imlib2-src/1.4.6/imlib2_loaders-1.4.6.tar.bz2 imlib2_loaders-1.4.6.tar.bz2 100% of 275 kB 912 kBps 00m01s Does anyone know why imlib2 was not back to the repository last time it got updated (a few days ago) as the source file was available and the port could build ? Many thanks FF From owner-freebsd-pkg@FreeBSD.ORG Mon Mar 10 18:34:51 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F9574CA for ; Mon, 10 Mar 2014 18:34:51 +0000 (UTC) Received: from mail-oa0-x231.google.com (mail-oa0-x231.google.com [IPv6:2607:f8b0:4003:c02::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5C57FDAC for ; Mon, 10 Mar 2014 18:34:51 +0000 (UTC) Received: by mail-oa0-f49.google.com with SMTP id g12so7337915oah.22 for ; Mon, 10 Mar 2014 11:34:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=Qc9gqTsn4QRFzTR5XgLkKHh2GNmOEKIu6eZQD5k0XsY=; b=rRFsharqw7dmXSZtKSwrjPhjwnmbvCrWxX/aIT2llT/LXySlS/2S5UQ3gB3uOvRWVK XrQGEYVLGVEQS6k4vMmSgrW3bAOt+i/Yg/TC6IZ8uSY5vs68noCP27RgCADRIeLBS+Hv MxGgUugEoKt+8DmN5dEc0wgIidg9P9Xj9asP7P9gLK9+7xYH0wU+fm4vVcOwRIng2sPJ QuVUtm5+HvQGqri0kDbDNFrJuv1pkB38Cp6ItiLIf/CP41bX/fhY7BTBh4i0bEy7alO+ dm361jxbNL1uzf3ullqs3apUbJW4LFMetVfj3V6z+4WRuZvJWOHvjkOv4HzZ7xqtLNL1 crdw== MIME-Version: 1.0 X-Received: by 10.60.37.99 with SMTP id x3mr2073061oej.61.1394476490531; Mon, 10 Mar 2014 11:34:50 -0700 (PDT) Received: by 10.76.85.42 with HTTP; Mon, 10 Mar 2014 11:34:50 -0700 (PDT) Date: Mon, 10 Mar 2014 12:34:50 -0600 Message-ID: Subject: GUI for pkg now released. From: Edscott Wilson To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Mar 2014 18:34:51 -0000 Rodent-5.2.7 now includes a package management GUI for FreeBSD, set up as a plugin for rodent-fm (Rodent Filemanager). This is called rodent-pkg. Not all pkg commands are available by default ---only those I've tested to satisfaction--- but all may be enabled very easily if you want to test 'em. They'll probably work, since the code is the same as that for tested function. Tested functions include "delete", "install", "fetch", "search" and others. Future versions of rodent-pkg will have all commands enabled. Support for rpm/zypper/yum and dpkg/apt-get combinations are in the roadmap to provide a cross platform coherent package management tool which is not exclusive to a particular OS distro. Rodent-pkg requires rodent-fm 5.2.7 (which has full readline library support and other improvements). Also required is librfm-5.2.8, which fixes a condition where a false request for sudo would be triggered on mv/ln/cp operations, and some other mv/cp/ln issues on FreeBSD. Both rodent-fm and rodent-pkg are available in the Rodent aplications meta package rodent-5.2.7. More information is available at http://xffm.org . Comments and suggestions are welcome, either on this list (if that is OK with all) or directly at http://sf.net/projects/xffm/ Enjoy. -- ------------------------------------------------------------------------------------ Dr. Edscott Wilson Garcia Reservoir Engineering Mexican Petroleum Institute From owner-freebsd-pkg@FreeBSD.ORG Wed Mar 12 07:27:43 2014 Return-Path: Delivered-To: freebsd-pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B0D4233 for ; Wed, 12 Mar 2014 07:27:43 +0000 (UTC) Received: from mail.ru.ac.za (mail.ru.ac.za [IPv6:2001:4200:1010:0:250:56ff:fe8d:5]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D97481C6 for ; Wed, 12 Mar 2014 07:27:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ru.ac.za; s=ru-msa; h=X-Authenticated-User:Content-Type:MIME-Version:Message-ID:Subject:To:From:Date; bh=EHgXUX9u/Sxye5QL/mzPNyrKQQEWNs/GBG7hs4ArlQE=; b=N4eWCdXe97WQSKdZ1dt0IbyForkzpo6INS0oVxTIdyO0TYkKUfT0U0crbC14iyy50kwy3zk8B3X4X0VVD/HKKc6MqLV3jG649rrv8TE+Mpregt8NpxqicgT+/RQk8hc9; Received: from walrus.ru.ac.za ([146.231.89.2]:40935 helo=ru.ac.za) by mail.ru.ac.za with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.76 (FreeBSD)) (envelope-from ) id 1WNdZg-000Prh-6s for freebsd-pkg@FreeBSD.org; Wed, 12 Mar 2014 09:27:36 +0200 Date: Wed, 12 Mar 2014 09:27:35 +0200 From: Guy Antony Halse To: freebsd-pkg@FreeBSD.org Subject: patch to add portshaker support to poudriere ports Message-ID: <20140312072735.GA11823@ru.ac.za> MIME-Version: 1.0 User-Agent: Mutt/1.5.21 (2010-09-15) X-Virus-Scanned: mail.ru.ac.za (146.231.128.20) X-Authenticated-User: mapu026 from walrus.ru.ac.za (146.231.89.2) using auth_plaintext Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Mar 2014 07:27:43 -0000 Hi We use poudriere to maintain a local package repository, and use portshaker to merge some local ports into the standard portsnap ports tree. At the moment, using poudriere ports -u produces an error, and we have to remember to use portshaker first. The attached patch to ports.sh introduces a "portshaker" method, and calls portshaker to update poudriere's ports tree(s) when relevant. When a user tries to create the tree, it produces a message reminding them to configure portshaker(8) as well. Unless there's a good reason not to, please consider including this in the default distribution of poudriere. Thanks, - Guy -- Manager: Systems, IT Division, Rhodes University, Grahamstown, South Africa Email: G.Halse@ru.ac.za Web: http://mombe.org/ IRC: rm-rf@irc.atrum.org *** ANSI Standard Disclaimer *** J.A.P.H From owner-freebsd-pkg@FreeBSD.ORG Thu Mar 13 07:37:47 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2DFF3549 for ; Thu, 13 Mar 2014 07:37:47 +0000 (UTC) Received: from mail-we0-x229.google.com (mail-we0-x229.google.com [IPv6:2a00:1450:400c:c03::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BF0E995 for ; Thu, 13 Mar 2014 07:37:46 +0000 (UTC) Received: by mail-we0-f169.google.com with SMTP id w62so485265wes.28 for ; Thu, 13 Mar 2014 00:37:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=oxV572az+RqZIrMkTVp+gHDNAkZdDLPR3xDcCqbwCS4=; b=bDB0bDNArt8jOF5lwIgIB4bTWrFKFRyJyqBjshoOCAWRfoXKqwRKyfDQCwoymGfNmx j1KfjSgxmyBSrNjdf1gv7kpcNUPQqpUBFAtnWTmfDrgDFijI2pPvAxA7Lm5tqElkwEyE jWhd2nTmTR72BcjnA729oS4QkpPh8GrTIVukcpVwwCTEOr2eIOYBgqOWpHWS/i46EFSK tzkj6+MES2u7qxNcSU1d1HNbBV5w3wUTBxJ5QUJ04VEDloChGKqD+3m/zful3Xe5h6mg OPZhFn2s6JdIHxeP0hPbjwUaDf2cmonZ1dzlxOOX861RCMp7E27MppwesvWFLP7iqGw9 ebqA== MIME-Version: 1.0 X-Received: by 10.180.13.197 with SMTP id j5mr365430wic.14.1394696265037; Thu, 13 Mar 2014 00:37:45 -0700 (PDT) Received: by 10.194.71.205 with HTTP; Thu, 13 Mar 2014 00:37:45 -0700 (PDT) Date: Thu, 13 Mar 2014 15:37:45 +0800 Message-ID: Subject: how to rsync from pkg.freebsd.org From: Jason To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 07:37:47 -0000 hi all: I'm from china.we have thousands of machines running on FreeBSD. Because the link between china and usa is poor,the pkg instal is very slow and often failed... so we want to build our own pkgng mirror. Does the pkg.freebsd.org offer any rsync interface so we can access? From owner-freebsd-pkg@FreeBSD.ORG Thu Mar 13 08:07:36 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9DF25A56 for ; Thu, 13 Mar 2014 08:07:36 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4928E2F1 for ; Thu, 13 Mar 2014 08:07:36 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.2.117.99]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s2D87Mf0021592 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Thu, 13 Mar 2014 08:07:30 GMT (envelope-from matthew@FreeBSD.org) DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s2D87Mf0021592 Authentication-Results: smtp.infracaninophile.co.uk/s2D87Mf0021592; dkim=none reason="no signature"; dkim-adsp=none Message-ID: <5321672C.7040901@FreeBSD.org> Date: Thu, 13 Mar 2014 08:07:08 +0000 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: how to rsync from pkg.freebsd.org References: In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="OcmWwaHcnwcm65oOSD9AKnpw6RobeoAEs" X-Virus-Scanned: clamav-milter 0.98.1 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-3.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 08:07:36 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --OcmWwaHcnwcm65oOSD9AKnpw6RobeoAEs Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 13/03/2014 07:37, Jason wrote: > I'm from china.we have thousands of machines running on FreeBSD= =2E > Because the link between china and usa is poor,the pkg instal i= s > very slow and often failed... > so we want to build our own pkgng mirror. > Does the pkg.freebsd.org offer any rsync interface so we can ac= cess? I do not believe there are any provisions to mirror pkg.freebsd.org -- partly this is because of security concerns, and partly because pkg(8) and the pkg.freebsd.org repository is still pretty new and there hasn't been much demand up to now. There are three current sites for pkg.freebsd.org -- US East, US West and UK -- which leaves Asia[*]without any sort of local service. If there are any well-connected FreeBSD users in India, China, Japan, S. Korea, Singapore, Eastern Russia etc. who would be prepared to donate the bandwidth and datacentre space and possibly some hardware, then I'm sure the project would be very interested in adding some more locations. Probably the thing to do would be to approach the FreeBSD Foundation, who will be able to give some information about how much storage space and bandwidth would be required. Cheers, Matthew [*] Not to mention Australasia or S. America[+] [+] Or Antarctica, but I don't think there are too many FreeBSD users on that continent. --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --OcmWwaHcnwcm65oOSD9AKnpw6RobeoAEs Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTIWc6XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATbWIP/iCgnPeCe4+n8WmwHENku/bq GzW+9xxpzkNth+8f5g0+IL6hZdb7CfaT5Wxt0epm3oKxG6ybNVkqzYarx5zDyIxH tW9alJzw6pzgkAHfGmspkJgmZzEPU5y1OLmfeAi6UDx29Mc1LLEMJMdeUbgjm0HP jdj27MDL1Odi/I0INZGTOFcxTunNTWfa6YQk+yTXb28UVfkhaOv9M+sl4nUk5xia pPwycTqp5EfHcezP83K5mzb2/k6mTbvrTQiIp1nal5t7D7UcokzkS280gcNPYBnh Ab2AU1KlZ4V0+RovTmTWl0bHZXmXpqwjNDJz0LF1a+L+0LwdqA3vo2STZNF/p6zV 6CijCMFFOSmJ5BRLV1FdWlM8adJfhBt3YovW7K2H/n4Kl6GsIAK1vvGvToujC8g4 Fv1DJ0qu25j+8glXg5F+hGFj6HcKtCEBJMoIXNRLjfRWmnUciIirqnmdKM6nz7/N uUICzFsvaA3bH+7z9OZYhcJleMIl9QT4ibOpQ1PPFvHsEoK/4e3jlXCmvuqszdzD n9NvCapRki0SffVe9lUWnSZbJ5BmLCzgqFidOBO+nR2WFBUBrPILaeYF8gn2PUs1 CIOeNEd/PnIXL3ak1nlHuGfpSjrwyvYgFBsPlRvwOMgN8e2jgIZ7naJl/1I/FDVB 29cVjxe04/qrZ07E4/lZ =qDMQ -----END PGP SIGNATURE----- --OcmWwaHcnwcm65oOSD9AKnpw6RobeoAEs-- From owner-freebsd-pkg@FreeBSD.ORG Thu Mar 13 08:13:24 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC9FDD87 for ; Thu, 13 Mar 2014 08:13:24 +0000 (UTC) Received: from mail-ea0-x22a.google.com (mail-ea0-x22a.google.com [IPv6:2a00:1450:4013:c01::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 736FB39F for ; Thu, 13 Mar 2014 08:13:24 +0000 (UTC) Received: by mail-ea0-f170.google.com with SMTP id q10so169770ead.1 for ; Thu, 13 Mar 2014 01:13:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; bh=yek3jtXeoLfd6apuuZVOuDBkXBK8AZAH7kYG4UuLulg=; b=AhbmcDcyDXk4g1ZDLgdl7ydgOQfQOYI8+DuhtrabcG4YGKoLgFrcJ1RkubKBHxVJGU kQAtBw7fB41SNsJdK+m2uWJQOa9D84V2NyMu6/SnSto4xn6yqLFcgzNVAqPFsNhMso7l WapXIDxV6f8bjnQ5at6j+6b4asjZVRFckiioe0XErhLYocgiALoo8w4H4+eFG8Q8T5/p lrSLhdGmKTY5xVbLqK1iWY2mWvRcFwK0ike4RTlfrsP+roBNnLMt2r9TsjazgF+yymlU QvIbVRkXcT3sFUL/LnII93VoGS2ZrAb9Wu2JLI0M5Db4lLZ6G1Oe9A7yY3pwEhw4QJh+ 2vrQ== X-Received: by 10.15.76.9 with SMTP id m9mr625391eey.96.1394698402912; Thu, 13 Mar 2014 01:13:22 -0700 (PDT) Received: from laptop.minsk.domain (m-s.agava.net. [195.222.84.203]) by mx.google.com with ESMTPSA id o5sm5557100eeg.8.2014.03.13.01.13.21 for (version=SSLv3 cipher=RC4-SHA bits=128/128); Thu, 13 Mar 2014 01:13:22 -0700 (PDT) Date: Thu, 13 Mar 2014 11:13:14 +0300 From: "Sergey V. Dyatko" To: freebsd-pkg@freebsd.org Subject: Re: how to rsync from pkg.freebsd.org Message-ID: <20140313111314.77170a43@laptop.minsk.domain> In-Reply-To: <5321672C.7040901@FreeBSD.org> References: <5321672C.7040901@FreeBSD.org> X-Mailer: Claws Mail 3.9.3 (GTK+ 2.24.22; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 08:13:24 -0000 ÷ Thu, 13 Mar 2014 08:07:08 +0000 Matthew Seaman ÐÉÛÅÔ: > On 13/03/2014 07:37, Jason wrote: > > I'm from china.we have thousands of machines running on > > FreeBSD. Because the link between china and usa is poor,the pkg > > instal is very slow and often failed... > > so we want to build our own pkgng mirror. > > Does the pkg.freebsd.org offer any rsync interface so we > > can access? > > I do not believe there are any provisions to mirror pkg.freebsd.org -- > partly this is because of security concerns, and partly because pkg(8) > and the pkg.freebsd.org repository is still pretty new and there > hasn't been much demand up to now. > > There are three current sites for pkg.freebsd.org -- US East, US West > and UK -- which leaves Asia[*]without any sort of local service. If > there are any well-connected FreeBSD users in India, China, Japan, S. > Korea, Singapore, Eastern Russia etc. who would be prepared to donate > the bandwidth and datacentre space and possibly some hardware, then > I'm sure the project would be very interested in adding some more > locations. Probably the thing to do would be to approach the FreeBSD > Foundation, who will be able to give some information about how much > storage space and bandwidth would be required. > you forget Russia ;-) pkg.ydx.f.o > Cheers, > > Matthew > > [*] Not to mention Australasia or S. America[+] > > [+] Or Antarctica, but I don't think there are too many FreeBSD users > on that continent. > -- wbr, tiger From owner-freebsd-pkg@FreeBSD.ORG Thu Mar 13 09:27:37 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8AB79B51 for ; Thu, 13 Mar 2014 09:27:37 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 32CBAC27 for ; Thu, 13 Mar 2014 09:27:37 +0000 (UTC) Received: from ox-dell39.ox.adestra.com (no-reverse-dns.metronet-uk.com [85.199.232.226] (may be forged)) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s2D9RRhh023253 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Thu, 13 Mar 2014 09:27:32 GMT (envelope-from m.seaman@infracaninophile.co.uk) DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s2D9RRhh023253 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1394702852; bh=aHR/dH49Ol/WSXUWdW4LJ/Nro/QBBvxG9yxdpRRSVA8=; h=Date:From:To:Subject:References:In-Reply-To; z=Date:=20Thu,=2013=20Mar=202014=2009:27:18=20+0000|From:=20Matthew =20Seaman=20|To:=20freebsd-pkg@fr eebsd.org|Subject:=20Re:=20how=20to=20rsync=20from=20pkg.freebsd.o rg|References:=20=20<5321672C.7040901@FreeBSD.org>=20<201403 13111314.77170a43@laptop.minsk.domain>|In-Reply-To:=20<20140313111 314.77170a43@laptop.minsk.domain>; b=Xx5n19w72IoxP6NA1QWy5QtW1Qt4S7qPzVZfZ8mGsK04ujqsUNsNloquQmoNQ+pTO exJgKYDiHcb/kA7JkaXkFX3Lc4u1nw7S/keD4yE4VPhrwEUWZlqyAk5ZuyjzyQSnkO qEh1PA3XI3NNujdW2TF8hb1NyS5C0scUzn8RlFbQ= X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host no-reverse-dns.metronet-uk.com [85.199.232.226] (may be forged) claimed to be ox-dell39.ox.adestra.com Message-ID: <532179F6.6060605@infracaninophile.co.uk> Date: Thu, 13 Mar 2014 09:27:18 +0000 From: Matthew Seaman User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: how to rsync from pkg.freebsd.org References: <5321672C.7040901@FreeBSD.org> <20140313111314.77170a43@laptop.minsk.domain> In-Reply-To: <20140313111314.77170a43@laptop.minsk.domain> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="VxTGsxm49INP7bRd9IEDbDtNFJMeU7q4D" X-Virus-Scanned: clamav-milter 0.98.1 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-1.6 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,RDNS_NONE autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 09:27:37 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --VxTGsxm49INP7bRd9IEDbDtNFJMeU7q4D Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 03/13/14 08:13, Sergey V. Dyatko wrote: > you forget Russia ;-) > pkg.ydx.f.o I stand corrected. Indeed I wasn't aware that a Russian mirror had been added. Cheers, Matthew --VxTGsxm49INP7bRd9IEDbDtNFJMeU7q4D Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTIXn/XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQxOUYxNTRFQ0JGMTEyRTUwNTQ0RTNGMzAw MDUxM0YxMEUwQTlFNEU3AAoJEABRPxDgqeTnRqcP/0s2Sg5eeZyeYalY7v8jIUXJ JTkatmEVK4dalezj+EdXIWMl8WcKHVBTddUc/5KphX3Y/Z6M7z0k9e7ZIOovrnJp avJyO5GkdOe6oYDTJfNXYJTmSBpWBu9qpUEOhsWxHPTMUjODvrQQXs9/CTPKWDRC 3/FjI+woEiLNkTViYOsmzz51jYbx4B5OLrso2id/KIfw/xZBeSl3oZa8oIX45XNx kZxWohGrhAn1v8I04TIjtICgDQ9ROtPxErOdS9eqk5kXgJ0Kj7QR2C8DI/rqKo1i hvo3F0ilDfXV7EMxNGxRbJeLjOo89ycRucnUsEs58DfZ6zk9EyHh0Coix2VgC4Tj Vlk4XBqqFBZe0k5KwcLLNq1D/Yn5r6OXtW6euvZm8m7Du/KimrPIqR47/mCDNKNY zRvjnw48iaVck5iShFxWelDyNn/XVX51XmOZvEDPeStNi2VfprjfHcm+5f6JQ1Si tVKpGdVwbEms4ItYhbsVirxP/XzkCagwtkhlbaO0CfJQpBeUyOXQs+qxEtPNg49F Vzxv2MlZPQzogGjLFBRGSMvdEtghZ3SzA93CosAElhLpMe8ck2+VDt2Jp0O+gbOt WzxTo1mFoyT0pk9kmI06gITekjndclqwNCYR42qIYlDVt+id79fUtkrShkKZVa4t bwCEjyVERYO5QWz9EvG8 =ps4h -----END PGP SIGNATURE----- --VxTGsxm49INP7bRd9IEDbDtNFJMeU7q4D-- From owner-freebsd-pkg@FreeBSD.ORG Thu Mar 13 10:27:18 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3739D9F8 for ; Thu, 13 Mar 2014 10:27:18 +0000 (UTC) Received: from mail-wg0-x22b.google.com (mail-wg0-x22b.google.com [IPv6:2a00:1450:400c:c00::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BDA58332 for ; Thu, 13 Mar 2014 10:27:17 +0000 (UTC) Received: by mail-wg0-f43.google.com with SMTP id x13so658035wgg.14 for ; Thu, 13 Mar 2014 03:27:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=nkKOP7+i6rNbN+FZg6v2uQOGmH5mxbWuEGyYCAKheWo=; b=Im0klSUmMJb5SvoZqs87Lmke/csF5V8jr5tPzCqx6r7WgtohJCvUe3BPlNzqh4QZM2 G1NzO0Bvt6Nsj/gNyodsut+/+JUAXLU+d03MHnxQeRte0/sBEXyLk4Y6sp9FXl+5pA8/ V675iG2GDB8AiyXQRFSLYO5AqMn+Dgf2jSeXCxGLtE/vLclrRmPHMkjsJT4d+2wQfllQ sAJXw1IqvMd+sQVdIkBLBR6zdugeIBcoo1FrWc5l7VBgzwOKIWgMvr1R95/rTQ2Ouf7e FUwKo3IFUsoS+8+T2vGNjBTo07bDyKZft2AG68dgh3Exg0H/oPsAC6oRq2ujch2gloBk lEXg== X-Received: by 10.180.7.130 with SMTP id j2mr907061wia.25.1394706436196; Thu, 13 Mar 2014 03:27:16 -0700 (PDT) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPSA id ci4sm4458207wjc.21.2014.03.13.03.27.14 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 13 Mar 2014 03:27:15 -0700 (PDT) Sender: Baptiste Daroussin Date: Thu, 13 Mar 2014 11:27:12 +0100 From: Baptiste Daroussin To: Matthew Seaman Subject: Re: how to rsync from pkg.freebsd.org Message-ID: <20140313102712.GD90364@ithaqua.etoilebsd.net> References: <5321672C.7040901@FreeBSD.org> <20140313111314.77170a43@laptop.minsk.domain> <532179F6.6060605@infracaninophile.co.uk> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HWvPVVuAAfuRc6SZ" Content-Disposition: inline In-Reply-To: <532179F6.6060605@infracaninophile.co.uk> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 10:27:18 -0000 --HWvPVVuAAfuRc6SZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Mar 13, 2014 at 09:27:18AM +0000, Matthew Seaman wrote: > On 03/13/14 08:13, Sergey V. Dyatko wrote: > > you forget Russia ;-) > > pkg.ydx.f.o >=20 > I stand corrected. Indeed I wasn't aware that a Russian mirror had been > added. It is very fresh and has not been announced yet :) regards, Bapt --HWvPVVuAAfuRc6SZ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlMhiAAACgkQ8kTtMUmk6EyP3gCdEiOuyE8QRWhhGJ7bTtDIQv47 7ZkAn1PdZnNcTgOB1PugnQMuUtSnUxSw =uhly -----END PGP SIGNATURE----- --HWvPVVuAAfuRc6SZ-- From owner-freebsd-pkg@FreeBSD.ORG Thu Mar 13 10:29:53 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 27B46A36 for ; Thu, 13 Mar 2014 10:29:53 +0000 (UTC) Received: from mail-wi0-x230.google.com (mail-wi0-x230.google.com [IPv6:2a00:1450:400c:c05::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B0C6D344 for ; Thu, 13 Mar 2014 10:29:52 +0000 (UTC) Received: by mail-wi0-f176.google.com with SMTP id hr14so3649825wib.3 for ; Thu, 13 Mar 2014 03:29:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=hq7Tm2fpM9cB9NKwNX7J7kkwIoh+vScD4UA+x52qGww=; b=fknQ/9zY/6/cE+1VazLP6o/LectRYOn8idRX8ZxY8niwGUwUYxYV2sWwtWJDE0qcj/ maEe9kFjgFPBh1OfZ0faovF2yur2FG+ipPoXOkaR0cR0KakMi8lVGZHmc1qKJLhAF6Hc R8TOIAtBMNRDt6vQTbOjo9UeH0FgM5UIEVsu1XSgnLwTjJk7UhmFt21zBEh6CRrvvywT v45LBRVcWAf20Ea4M7Gtm08BUTa7+2Ok9cXW8gCMpi+/eywGLr7Q7+WMo2bOJT0zqPzU WB2bLrntqM6sRpot8/zCxvQL3J89+DnS0w/mbtOtOETWlX2ZxA29xl/QSc+Wc9G0lxGS Bhnw== X-Received: by 10.194.174.100 with SMTP id br4mr553067wjc.83.1394706591159; Thu, 13 Mar 2014 03:29:51 -0700 (PDT) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPSA id 19sm4487672wjy.17.2014.03.13.03.29.49 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 13 Mar 2014 03:29:49 -0700 (PDT) Sender: Baptiste Daroussin Date: Thu, 13 Mar 2014 11:29:47 +0100 From: Baptiste Daroussin To: Jason Subject: Re: how to rsync from pkg.freebsd.org Message-ID: <20140313102947.GE90364@ithaqua.etoilebsd.net> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WBsA/oQW3eTA3LlM" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 10:29:53 -0000 --WBsA/oQW3eTA3LlM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Mar 13, 2014 at 03:37:45PM +0800, Jason wrote: > hi all: >=20 > I'm from china.we have thousands of machines running on FreeBSD. > Because the link between china and usa is poor,the pkg instal is > very slow and often failed... > so we want to build our own pkgng mirror. > Does the pkg.freebsd.org offer any rsync interface so we can acce= ss? This is being worked on, we are experimenting a couple of different ways and will soon communicate on a viable way to do it. Stay tuned :) regards, Bapt --WBsA/oQW3eTA3LlM Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlMhiJoACgkQ8kTtMUmk6ExVvgCeJH9Zr8bwlBZOmN3IyOXprpe9 7f4An0NCafeM2j/Yx6SjCmZX2zE1lhxB =Dikn -----END PGP SIGNATURE----- --WBsA/oQW3eTA3LlM-- From owner-freebsd-pkg@FreeBSD.ORG Thu Mar 13 10:31:06 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA4FBA6B for ; Thu, 13 Mar 2014 10:31:06 +0000 (UTC) Received: from mail-we0-x235.google.com (mail-we0-x235.google.com [IPv6:2a00:1450:400c:c03::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 816D83D2 for ; Thu, 13 Mar 2014 10:31:06 +0000 (UTC) Received: by mail-we0-f181.google.com with SMTP id q58so660568wes.12 for ; Thu, 13 Mar 2014 03:31:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; bh=GfXeRXcOFJf66ZegDJrY4DXrJoMZGV5DOjbnPyAMRr0=; b=OW4r2voxHO6ozUX693Iofx8HM5VZV2mAiXKPzYaLvlENwO4AmZ4z7Ob5Xs6zAoyxER PH5q4mLJ/X1kSHa2HPGPbQUZlwtHKdmwC3RfYKEmIlqqOM3h1fs3LhcYw87U199ET38z lhvSmJjlT2Hz8j7OU4gilFsofSfwIdoR+4+hNEGOw3DIqP/tyGv7D8yfmEF5pfD3fDms KKNPZBddA9iyET6jbnHfbE88hyDX6I5M1MiJVnF1A5xWfI6sQ/CaJyN3GhEHUgAqGZCt yIQmLlecABTMty5fHpfYnU/pCZ1ttj9fC5iMb6krCiPFRu0TgMt3ARKzqdynWADsdL8l 7Pfw== X-Received: by 10.180.189.43 with SMTP id gf11mr975579wic.32.1394706664975; Thu, 13 Mar 2014 03:31:04 -0700 (PDT) Received: from laptop.minsk.domain (m-s.agava.net. [195.222.84.203]) by mx.google.com with ESMTPSA id lz3sm6255424wic.1.2014.03.13.03.31.03 for (version=SSLv3 cipher=RC4-SHA bits=128/128); Thu, 13 Mar 2014 03:31:03 -0700 (PDT) Date: Thu, 13 Mar 2014 13:30:57 +0300 From: "Sergey V. Dyatko" To: freebsd-pkg@freebsd.org Subject: Re: how to rsync from pkg.freebsd.org Message-ID: <20140313133057.38805189@laptop.minsk.domain> In-Reply-To: <20140313102712.GD90364@ithaqua.etoilebsd.net> References: <5321672C.7040901@FreeBSD.org> <20140313111314.77170a43@laptop.minsk.domain> <532179F6.6060605@infracaninophile.co.uk> <20140313102712.GD90364@ithaqua.etoilebsd.net> X-Mailer: Claws Mail 3.9.3 (GTK+ 2.24.22; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 10:31:07 -0000 ÷ Thu, 13 Mar 2014 11:27:12 +0100 Baptiste Daroussin ÐÉÛÅÔ: > On Thu, Mar 13, 2014 at 09:27:18AM +0000, Matthew Seaman wrote: > > On 03/13/14 08:13, Sergey V. Dyatko wrote: > > > you forget Russia ;-) > > > pkg.ydx.f.o > > > > I stand corrected. Indeed I wasn't aware that a Russian mirror had > > been added. > > It is very fresh and has not been announced yet :) > > regards, > Bapt "oops !' :) -- wbr, tiger From owner-freebsd-pkg@FreeBSD.ORG Thu Mar 13 13:29:56 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3ADB2C2 for ; Thu, 13 Mar 2014 13:29:56 +0000 (UTC) Received: from mail-wi0-x232.google.com (mail-wi0-x232.google.com [IPv6:2a00:1450:400c:c05::232]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C2AA8817 for ; Thu, 13 Mar 2014 13:29:55 +0000 (UTC) Received: by mail-wi0-f178.google.com with SMTP id n15so1113308wiw.17 for ; Thu, 13 Mar 2014 06:29:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=cvRXX88G8BgBoe3Q+dourmyFk+p35MzVeCbpI6MT8S4=; b=sU++yc38Q/hSwHqEEvTe1Wf1b6QuyqXZqxdOXwbIX5NVoJmApzrmrGeh3NMcx0dBmV ZesCnXXb++7ByR+ghIKhKFJEUMl+xKf/uMZhHLUIy2uz52CQfn6TsolbJtPVUzzc2FRM 1Y/MJaNNSchGHHCY3AV5mgpTYgcSIlvzT9eaxwnSORFpizej3LmLUDFJ2NDJnqSzJZWh AdWu01wBjOERJ5Nbpa4ib2VrSAT7tiLehOpXEDvxVTQkBZvR41DIz1URoiOsF8ocXHG1 tN+QQdDaWE6JuxIDcaJ3cBFmKdgpbogEDzq2fw+DaFw4Dt4f6Wz535t5zVhDAebSi9tq uRLQ== X-Received: by 10.180.24.134 with SMTP id u6mr1629249wif.41.1394717394178; Thu, 13 Mar 2014 06:29:54 -0700 (PDT) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPSA id f1sm25546052wik.1.2014.03.13.06.29.51 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 13 Mar 2014 06:29:52 -0700 (PDT) Sender: Baptiste Daroussin Date: Thu, 13 Mar 2014 14:29:49 +0100 From: Baptiste Daroussin To: "Sergey V. Dyatko" Subject: Re: how to rsync from pkg.freebsd.org Message-ID: <20140313132948.GF90364@ithaqua.etoilebsd.net> References: <5321672C.7040901@FreeBSD.org> <20140313111314.77170a43@laptop.minsk.domain> <532179F6.6060605@infracaninophile.co.uk> <20140313102712.GD90364@ithaqua.etoilebsd.net> <20140313133057.38805189@laptop.minsk.domain> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="65ImJOski3p8EhYV" Content-Disposition: inline In-Reply-To: <20140313133057.38805189@laptop.minsk.domain> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 13:29:56 -0000 --65ImJOski3p8EhYV Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Mar 13, 2014 at 01:30:57PM +0300, Sergey V. Dyatko wrote: > =D0=92 Thu, 13 Mar 2014 11:27:12 +0100 > Baptiste Daroussin =D0=BF=D0=B8=D1=88=D0=B5=D1=82: >=20 > > On Thu, Mar 13, 2014 at 09:27:18AM +0000, Matthew Seaman wrote: > > > On 03/13/14 08:13, Sergey V. Dyatko wrote: > > > > you forget Russia ;-) > > > > pkg.ydx.f.o > > >=20 > > > I stand corrected. Indeed I wasn't aware that a Russian mirror had > > > been added. > >=20 > > It is very fresh and has not been announced yet :) > >=20 > > regards, > > Bapt >=20 > "oops !' :) It is not secret either :) regards, Bapt --65ImJOski3p8EhYV Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlMhsswACgkQ8kTtMUmk6EyyHwCeOQ6uduO0qq7BA/+pCMGByq9y 7bQAmgLa46KgN+oYL2J8QhbDe9kBlXrA =RzYJ -----END PGP SIGNATURE----- --65ImJOski3p8EhYV-- From owner-freebsd-pkg@FreeBSD.ORG Mon Mar 17 13:06:18 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3D92ADBB for ; Mon, 17 Mar 2014 13:06:18 +0000 (UTC) Received: from mail-wg0-x229.google.com (mail-wg0-x229.google.com [IPv6:2a00:1450:400c:c00::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CE5CF110 for ; Mon, 17 Mar 2014 13:06:17 +0000 (UTC) Received: by mail-wg0-f41.google.com with SMTP id n12so4611703wgh.12 for ; Mon, 17 Mar 2014 06:06:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=WORfD3fzitC70RrZLKLe7E52OuyA51AlNkgeEl4VQtk=; b=Or09fYPqQ57g6EQFwZYzdokGjgzWt3H9zjhI6FNZYFY0zNPxuvah96vNLCq5kf53QX JjeLjbcTVyKuI7gUJm4fLxO3gvZsxgywGada/ovusJEd6tvJ40fr2Ywsuh+7mityKEaY MiDPnGM1dq8vvxjWunw0UXjd3WRaHbOeX8Aqram3E7TQMTJr1KA+OYvkzxBJ5xPWwkCP t8DzSch1T2/evoOTRHI7ha7PC9xfrjcfXZDvO8V1KPTdRYg8H/AcZlu6tVcToAYGg3/F tXTXAuGuBhpi3BxT/XZQNQ9P2Evdx5TcUdo+us0cj4Lbep19/qByPV0hwjRxCZnePADx /tXg== MIME-Version: 1.0 X-Received: by 10.194.81.164 with SMTP id b4mr18647214wjy.2.1395061576126; Mon, 17 Mar 2014 06:06:16 -0700 (PDT) Received: by 10.194.71.205 with HTTP; Mon, 17 Mar 2014 06:06:16 -0700 (PDT) Date: Mon, 17 Mar 2014 21:06:16 +0800 Message-ID: Subject: Re: how to rsync from pkg.freebsd.org From: Jason To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Mar 2014 13:06:18 -0000 Thank you for your response! That's a very good news. we'll wait for the official announcement. Thanks again for your hard work. 2014-03-13 18:29 GMT+08:00 Baptiste Daroussin : > On Thu, Mar 13, 2014 at 03:37:45PM +0800, Jason wrote: > > hi all: > > > > I'm from china.we have thousands of machines running on FreeBSD. > > Because the link between china and usa is poor,the pkg instal is > > very slow and often failed... > > so we want to build our own pkgng mirror. > > Does the pkg.freebsd.org offer any rsync interface so we can > access? > > This is being worked on, we are experimenting a couple of different ways > and > will soon communicate on a viable way to do it. > > Stay tuned :) > > > regards, > Bapt > From owner-freebsd-pkg@FreeBSD.ORG Wed Mar 26 11:45:36 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6DAB7F5A for ; Wed, 26 Mar 2014 11:45:36 +0000 (UTC) Received: from mail.gramadosite.com.br (mail.gramadosite.com.br [187.61.1.163]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 234B1CC2 for ; Wed, 26 Mar 2014 11:45:35 +0000 (UTC) Received: from webmail.gramadosite.com.br (localhost [127.0.0.1]) (Authenticated sender: fms@gramadosite.com.br) by mail.gramadosite.com.br (Postfix) with ESMTPA id 4E895A109DA for ; Wed, 26 Mar 2014 08:40:12 -0300 (BRT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gramadosite.com.br; s=default; t=1395834012; bh=rSw38z9TI+CFJyCpl7m07N6yJrNTk4/ajaNIyalHM5k=; h=MIME-Version:Content-Type:Date:From:To:Subject:Message-ID; b=r7pTOpg9jJwSW94wUNYqk0LssW6yZfGUk4rhL/B/I2lq6Fm0kTAdq1ToRFmbCdR4X lFyojDMub+mAOHLA+bVFUeyJ9au4XpTt1eUiuwTWnAdaKeXDktT8QNjDkHVuYySSid 3t7FwZIasEUnrPdNFn4AaK2G6n8EUzrp6Pyo4JXw= Received: from webmail.gramadosite.com.br ([192.168.8.163] helo=webmail.gramadosite.com.br) by mail.gramadosite.com.br with ESMTP (2.0.2); 26 Mar 2014 08:40:11 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 26 Mar 2014 08:40:11 -0300 From: Francisco Miralha da Silveira To: Subject: Pkgng - No valid repository found. Organization: HighCompany.com Message-ID: X-Sender: fms@gramadosite.com.br User-Agent: Webmail-0.3-beta X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 11:45:36 -0000 Hi. I'm in trouble for two days with pkg on 9.2 with no success #uname -a FreeBSD 9.2-PRERELEASE #0: Fri Jul 12 23:07:12 BRT 2013 me@server:/usr/src/sys/amd64/compile/myeditedkernel amd64 -------------------------------------------- Recently I installed pkgng with theese commands: # portsnap fetch update # cd /usr/ports/ports-mgmt/pkg # make install clean # pkg2ng # mkdir /etc/pkg # mkdir /usr/local/etc/pkg # mkdir /usr/local/etc/pkg/repos # ee /usr/local/etc/pkg.conf ====================================== /usr/local/etc/pkg.conf ====================================== ALIAS : { all-depends: query %dn-%dv, annotations: info -A, build-depends: info -qd, download: fetch, iinfo: info -i -g -x, isearch: search -i -g -x, leaf: query -e "%a == 0" "%n-%v", leaf: query -e "%a == 0" "%n-%v", list: info -ql, origin: info -qo, provided-depends: info -qb, raw: info -R, required-depends: info -qr, shared-depends: info -qB, show: info -f -k, size: info -sq, } pkg_dbdir: "/var/db/pkg" pkg_cachedir: "/var/cache/pkg" portsdir: "/usr/ports" handle_rc_cripts: false assume_always_yes: false repos_dir: [ "/etc/pkg", "/usr/local/etc/pkg/repos", ] syslog: true autodeps: true developer_mode: false pkg_env: { http_proxy: "http://myproxy:3128", } alias: { origin: "info -qo", nonauto: "query -e '%a == 0' '%n-%v'" } ====================================== # pkg info : ok, I can see a list of installed packages But # pkg install xxx or # pkg upgrade give allways the same error: Updating repository catalogue No valid repository found. I tried: # pkg repo /usr/local/etc/pkg/repos Generating repository catalog in /usr/local/etc/pkg/repos: done! # ls /usr/local/etc/pkg/repos/ digests.txz packagesite.txz #pkg upgrade Updating repository catalogue No valid repository found. What am I doing wrong? Thanks in advance for any help! Francisco From owner-freebsd-pkg@FreeBSD.ORG Wed Mar 26 16:00:52 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7BB8EB06 for ; Wed, 26 Mar 2014 16:00:52 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1D7CAF9 for ; Wed, 26 Mar 2014 16:00:51 +0000 (UTC) Received: from ox-dell39.ox.adestra.com (no-reverse-dns.metronet-uk.com [85.199.232.226] (may be forged)) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s2QG0RuA010497 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Wed, 26 Mar 2014 16:00:43 GMT (envelope-from m.seaman@infracaninophile.co.uk) DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s2QG0RuA010497 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1395849646; bh=b/ZydpqGJZhvHoEQ5S9sTiHAEpmZB0phQx9XiH7iLzY=; h=Date:From:To:Subject:References:In-Reply-To; z=Date:=20Wed,=2026=20Mar=202014=2016:00:11=20+0000|From:=20Matthew =20Seaman=20|To:=20freebsd-pkg@fr eebsd.org|Subject:=20Re:=20Pkgng=20-=20No=20valid=20repository=20f ound.|References:=20|In-Reply-To:=20; b=xMZmmC/E41XoBjQBIRnOv6qEiTwoI2wkwDKELNlMl8z4OANTRsO4ehveV7eyLry3/ nw1piYQ/621F/hz7Wi3y7mL8rvPiB9z/hfCmuV1dMKGN0RpQqcL7hGe2dHs1RIu2KB myvgwPZZnA+mIx5mPAdIRKPQSyJWDGb8CN8tl8qg= X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host no-reverse-dns.metronet-uk.com [85.199.232.226] (may be forged) claimed to be ox-dell39.ox.adestra.com Message-ID: <5332F98B.1090504@infracaninophile.co.uk> Date: Wed, 26 Mar 2014 16:00:11 +0000 From: Matthew Seaman User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: Pkgng - No valid repository found. References: In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="cfJxGTkW60r9JNFbEESXQhxnCNjkTB4a9" X-Virus-Scanned: clamav-milter 0.98.1 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-1.1 required=5.0 tests=BAYES_00,RDNS_NONE autolearn=no autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 16:00:52 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --cfJxGTkW60r9JNFbEESXQhxnCNjkTB4a9 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 03/26/14 11:40, Francisco Miralha da Silveira wrote: > Hi. >=20 > I'm in trouble for two days with pkg on 9.2 with no success >=20 > #uname -a > FreeBSD 9.2-PRERELEASE #0: Fri Jul 12 23:07:12 BRT 2013 > me@server:/usr/src/sys/amd64/compile/myeditedkernel amd64 >=20 > -------------------------------------------- >=20 > Recently I installed pkgng with theese commands: >=20 > # portsnap fetch update > # cd /usr/ports/ports-mgmt/pkg > # make install clean >=20 > # pkg2ng >=20 > # mkdir /etc/pkg > # mkdir /usr/local/etc/pkg > # mkdir /usr/local/etc/pkg/repos > # ee /usr/local/etc/pkg.conf >=20 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > /usr/local/etc/pkg.conf > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > ALIAS : { > all-depends: query %dn-%dv, > annotations: info -A, > build-depends: info -qd, > download: fetch, > iinfo: info -i -g -x, > isearch: search -i -g -x, > leaf: query -e "%a =3D=3D 0" "%n-%v", > leaf: query -e "%a =3D=3D 0" "%n-%v", > list: info -ql, > origin: info -qo, > provided-depends: info -qb, > raw: info -R, > required-depends: info -qr, > shared-depends: info -qB, > show: info -f -k, > size: info -sq, > } >=20 > pkg_dbdir: "/var/db/pkg" > pkg_cachedir: "/var/cache/pkg" > portsdir: "/usr/ports" > handle_rc_cripts: false > assume_always_yes: false > repos_dir: [ > "/etc/pkg", > "/usr/local/etc/pkg/repos", > ] > syslog: true > autodeps: true > developer_mode: false > pkg_env: { > http_proxy: "http://myproxy:3128", > } > alias: { > origin: "info -qo", > nonauto: "query -e '%a =3D=3D 0' '%n-%v'" > } > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >=20 > # pkg info : ok, I can see a list of installed packages >=20 > But # pkg install xxx or # pkg upgrade give allways the same error: >=20 > Updating repository catalogue > No valid repository found. >=20 > I tried: > # pkg repo /usr/local/etc/pkg/repos > Generating repository catalog in /usr/local/etc/pkg/repos: done! This is incorrect -- 'pkg repo' is a tool for maintaining a package repository. You only use it on the server side, not on the client. > # ls /usr/local/etc/pkg/repos/ > digests.txz packagesite.txz These will basically say "this repository contains no packages." As they are pointless there, just remove those two .txz files. > #pkg upgrade > Updating repository catalogue > No valid repository found. >=20 > What am I doing wrong? You are missing the repository.conf file -- you can have as many of these as you like, and they can be called pretty much anything so long as the filename ends in .conf and the file is placed in /usr/local/etc/pkg/repos/. Try this out: save the following as /usr/local/etc/pkg/repos/FreeBSD.conf= : FreeBSD: { url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest", mirror_type: "srv", signature_type: "fingerprints", fingerprints: "/usr/share/keys/pkg", enabled: yes } You'll also need to save this as /usr/share/keys/pkg/trusted/pkg.freebsd.org.2013102301 function: "sha256" fingerprint: "b0170035af3acc5f3f3ae1859dc717101b4e6c1d0a794ad554928ca0cbb2f438" Cheers, Matthew --cfJxGTkW60r9JNFbEESXQhxnCNjkTB4a9 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTMvmVXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQxOUYxNTRFQ0JGMTEyRTUwNTQ0RTNGMzAw MDUxM0YxMEUwQTlFNEU3AAoJEABRPxDgqeTnwFsP+wRnBzo4LJTIk1zOBkmL2BDB zBAcOx1Fpk0hgGKSdWwJXf3Jz+1IxET5mYMjVdxx8ILUM6Pd/AI1+r8UIWg06oB7 HXqCdLRvHF2tfO65QSomERjXf+y1SKWskJ8eyDZMLF3WMs/xA9dLFI4TVzzwvfQN Cr025ifbLsDu6HS4wF69hSldhuFsd6SbEW3NXhO0EzS/zT3wZSkdWLxe4JAywEAy 6UDzbwEzOEZKCN3W6Bieci6wIYDI+MbqPl4sY++8v7w9sO2/UzGTbAeTEJLiMgkN KinMlEhe1ky2idmlemjO2lKK5yuD3avSKSS9Tw0/mnp1PwVNOWQMmzyrVksiH5ay 1tvntAmA1NojMBDg/H8KeM+wcq1E/N6nlnn/dxJfai1/6LmVpl90zOyGo8Trj/aZ +HKUgTK1YGr4PPJBKn1k+2fIuUqh6jU7bhkUlSNp0D4zG5FwllgJ+QtOnMsX7pZo 8lUfvqASPwK4e3sANZGcUlTqCUkRlHzU5k1CgEINUnAupvTx0s+fZyC+KEVHpJgz V3k0DMjLRKOy0P3QH6fEQVVGye1XEi+1U+ZbZIy2tqyuoiwGjzbNog6GN7RvsTpM FtLNb+cY/RzIU+v5ft66OLpLJn+7vHX3xsu5Fiv7ThD7yAagE6lPIRRPN3r9IVW4 m8cMbccvSn+wNbQ6+pFn =wVQJ -----END PGP SIGNATURE----- --cfJxGTkW60r9JNFbEESXQhxnCNjkTB4a9-- From owner-freebsd-pkg@FreeBSD.ORG Wed Mar 26 18:12:18 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 50E93566 for ; Wed, 26 Mar 2014 18:12:18 +0000 (UTC) Received: from mail.gramadosite.com.br (mail.gramadosite.com.br [187.61.1.163]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 948457CF for ; Wed, 26 Mar 2014 18:12:17 +0000 (UTC) Received: from webmail.gramadosite.com.br (localhost [127.0.0.1]) (Authenticated sender: fms@gramadosite.com.br) by mail.gramadosite.com.br (Postfix) with ESMTPA id 487CCA10959 for ; Wed, 26 Mar 2014 15:12:12 -0300 (BRT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gramadosite.com.br; s=default; t=1395857532; bh=4WHH97uG0qQHWg9oNEQ2HbQ4cOKgB0ljA1l7nUlKUM4=; h=MIME-Version:Content-Type:Date:From:To:Subject:Message-ID; b=EUPyI9+z9cTlARIh7NRr5RxjnG2pYKHNTkGL/COHf0ffOORYvukYLAqyzxaSaefWO 7/h90H21dpwfLPxJl+XoI8LilgZfr9G/Em6u/q5YzENSN29IztvgPak8jdP+Vfer6b uJK01m5oYFJVTA4g1syR19k7eLDkPyxy9f3YmJ7g= Received: from webmail.gramadosite.com.br ([192.168.8.163] helo=webmail.gramadosite.com.br) by mail.gramadosite.com.br with ESMTP (2.0.2); 26 Mar 2014 15:12:11 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 26 Mar 2014 15:12:11 -0300 From: Francisco Miralha da Silveira To: Subject: Re: Pkgng - No valid repository found. (Solved!) Organization: HighCompany.com In-Reply-To: <5332F98B.1090504@infracaninophile.co.uk> References: <5332F98B.1090504@infracaninophile.co.uk> Message-ID: X-Sender: fms@gramadosite.com.br User-Agent: Webmail-0.3-beta X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Mar 2014 18:12:18 -0000 [Solved!] Hi Mathew, thank you very much for your instructions. 1) After performing your suggested modifications, I received another error: # pkg update Updating repository catalogue pkg: http://pkg0.isc.freebsd.org/freebsd:9:x86:64/latest/digests.txz: No address record pkg: Unable to find catalogs So, I found that in my /usr/local/etc/pkg.conf there was a "proxy" config. So I tooked it out from pkg.conf and it gone ahead to another error: # pkg update Updating repository catalogue digests.txz 100% 1091KB 545.4KB/s 300.9KB/s 00:02 pkg: Error loading revoked certificates pkg: Unable to find catalogs So, I did this: # cd /usr/src/share/keys && make && make install; And this: # mkdir -p /usr/share/keys/pkg/trusted /usr/share/keys/pkg/revoked; And this: # rm /usr/share/keys/pkg/trusted/pkg.freebsd.org.2013102301 And this: # svn export https://svn0.us-west.FreeBSD.org/base/head/share/keys/pkg/trusted/pkg.freebsd.org.2013102301 /usr/share/keys/pkg/trusted/ And it finally worked! :D # pkg update Updating repository catalogue digests.txz 100% 1091KB 363.6KB/s 430.9KB/s 00:03 packagesite.txz 100% 5067KB 633.4KB/s 1.0MB/s 00:08 Incremental update completed, 23338 packages processed: 0 packages updated, 0 removed and 23338 added. Thanks again! Best reards Francisco ------------------------------------------------------ ###################################################### ------------------------------------------------------ On 03/26/14 11:40, Francisco Miralha da Silveira wrote: ------------------------------------------------------- Hi. I'm in trouble for two days with pkg on 9.2 with no success #uname -a FreeBSD 9.2-PRERELEASE #0: Fri Jul 12 23:07:12 BRT 2013 me@server:/usr/src/sys/amd64/compile/myeditedkernel amd64 -------------------------------------------- Recently I installed pkgng with theese commands: # portsnap fetch update # cd /usr/ports/ports-mgmt/pkg # make install clean # pkg2ng # mkdir /etc/pkg # mkdir /usr/local/etc/pkg # mkdir /usr/local/etc/pkg/repos # ee /usr/local/etc/pkg.conf ====================================== /usr/local/etc/pkg.conf ====================================== ALIAS : { all-depends: query %dn-%dv, annotations: info -A, build-depends: info -qd, download: fetch, iinfo: info -i -g -x, isearch: search -i -g -x, leaf: query -e "%a == 0" "%n-%v", leaf: query -e "%a == 0" "%n-%v", list: info -ql, origin: info -qo, provided-depends: info -qb, raw: info -R, required-depends: info -qr, shared-depends: info -qB, show: info -f -k, size: info -sq, } pkg_dbdir: "/var/db/pkg" pkg_cachedir: "/var/cache/pkg" portsdir: "/usr/ports" handle_rc_cripts: false assume_always_yes: false repos_dir: [ "/etc/pkg", "/usr/local/etc/pkg/repos", ] syslog: true autodeps: true developer_mode: false pkg_env: { # this was myerror: I do not have proxy here http_proxy: "http://myproxy:3128", } alias: { origin: "info -qo", nonauto: "query -e '%a == 0' '%n-%v'" } ====================================== # pkg info : ok, I can see a list of installed packages But # pkg install xxx or # pkg upgrade give allways the same error: Updating repository catalogue No valid repository found. I tried: # pkg repo /usr/local/etc/pkg/repos Generating repository catalog in /usr/local/etc/pkg/repos: done! # ls /usr/local/etc/pkg/repos/ digests.txz packagesite.txz #pkg upgrade Updating repository catalogue No valid repository found. What am I doing wrong? Thanks in advance for any help! Francisco ------------------------------------------------------ This is incorrect -- 'pkg repo' is a tool for maintaining a package repository. You only use it on the server side, not on the client. # ls /usr/local/etc/pkg/repos/ digests.txz packagesite.txz These will basically say "this repository contains no packages." As they are pointless there, just remove those two .txz files. ### Ok, I removed them. #pkg upgrade Updating repository catalogue No valid repository found. What am I doing wrong? You are missing the repository.conf file -- you can have as many of these as you like, and they can be called pretty much anything so long as the filename ends in .conf and the file is placed in /usr/local/etc/pkg/repos/. Try this out: save the following as /usr/local/etc/pkg/repos/FreeBSD.conf: ------------------------------ FreeBSD: { url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest", mirror_type: "srv", signature_type: "fingerprints", fingerprints: "/usr/share/keys/pkg", enabled: yes } ------------------------------ You'll also need to save this as /usr/share/keys/pkg/trusted/pkg.freebsd.org.2013102301 ------------------------------ function: "sha256" fingerprint: "b0170035af3acc5f3f3ae1859dc717101b4e6c1d0a794ad554928ca0cbb2f438" ------------------------------ Cheers, Matthew From owner-freebsd-pkg@FreeBSD.ORG Sun Mar 30 13:39:33 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCC1448C for ; Sun, 30 Mar 2014 13:39:33 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 84D7ED42 for ; Sun, 30 Mar 2014 13:39:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2UDdXKa032269 for ; Sun, 30 Mar 2014 13:39:33 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2UDdW0B032268 for pkg@freebsd.org; Sun, 30 Mar 2014 13:39:32 GMT (envelope-from bdrewery) Received: (qmail 23835 invoked from network); 30 Mar 2014 08:39:31 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 30 Mar 2014 08:39:31 -0500 Message-ID: <53381E6D.3020907@FreeBSD.org> Date: Sun, 30 Mar 2014 08:38:53 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: "Richard M. Timoney" , pkg@freebsd.org Subject: Re: pkg 1.2.7 issue witth repos References: <20140329221357.GA43934@maths.tcd.ie> In-Reply-To: <20140329221357.GA43934@maths.tcd.ie> X-Enigmail-Version: 1.6 OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="G4sNCKX7U7aDBFnHXDTcHRQIqOr9f93sC" X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2014 13:39:33 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --G4sNCKX7U7aDBFnHXDTcHRQIqOr9f93sC Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 3/29/2014 5:13 PM, Richard M. Timoney wrote: > I have been using pkg for a while and more recently poudriere as well. >=20 > I updated to pkg 1.2.7 from 1.2.7 and the new version seems not to find= > my repo. It is specified in /usr/local/etc/pkg/repos/ >=20 > I can work around by reintroducing a=20 > PACKAGESITE : pkg+http:// > line in my pkg.conf but every time I use pkg it chatters about that > being deprecated. >=20 > I don't see any message about changes in the config or anything in > pkg.conf.sample to enlighten me. >=20 > Yours, >=20 > Richard >=20 You need a repository in the following format: /usr/local/etc/pkg/repos/NAME.conf (.conf is significant) NAME: { URL: "URL", ENABLED: true } See pkg.conf(5) MULTIPLE REPOSITORIES section. --=20 Regards, Bryan Drewery --G4sNCKX7U7aDBFnHXDTcHRQIqOr9f93sC Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQEcBAEBAgAGBQJTOB5tAAoJEDXXcbtuRpfPHXgH/1bWiQzA6zqaX+NVsyhLh2F4 A5atVhuhIIYKqu5sXKQGh+Rgrfse2zacRoXnL6zXaqdDhVM2gU0FFByRlzyxI0rL XUPdZEMzZzEOYrDdthi7qhLiyAF2w88S5RQs7f2Q1XBNWY235jchSQJs1Jjw0ekN 3RMz5iu2ZD0Cg7XlSEpT1EIG45AxfCTtUDOS/Tqp/3rsxuX3BFLhCwANIW2AMN+Q rzXhehZkOL8agvmEGtUCoplWt8NSeveIY6jagHVeOWamnnaC3+61WiGph7/gAp31 dbgdlKDKVptVRPE8j/qLVpvqd3AmG30kRKrJvNSohsL0orEMCiEMhoUxZ0SzFXI= =yK/o -----END PGP SIGNATURE----- --G4sNCKX7U7aDBFnHXDTcHRQIqOr9f93sC-- From owner-freebsd-pkg@FreeBSD.ORG Thu Apr 3 01:11:16 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1BBC3D66 for ; Thu, 3 Apr 2014 01:11:16 +0000 (UTC) Received: from mail-pa0-f48.google.com (mail-pa0-f48.google.com [209.85.220.48]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E6946204 for ; Thu, 3 Apr 2014 01:11:15 +0000 (UTC) Received: by mail-pa0-f48.google.com with SMTP id hz1so1011522pad.35 for ; Wed, 02 Apr 2014 18:11:09 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:content-type:content-transfer-encoding :subject:message-id:date:to:mime-version; bh=DOnqcPd+vqe+v/1pexXLv0fKEz5SvRnqzEthkDhxDoU=; b=nH9hqXopsT8Xu19ctOgClIgqHkq0OUFcr1kqCh5jmR/ftwo6mCix3H8J7Qb2HRqqGR 13jkhoqGoZZI0jRInx8oa9ouZZotJLEgc/CD9K+us8LCxJOWiaFi6X5G09A12y2svJNR V776XutcisHQ5N1iYxVLaEZRYw6SDZYqS0hCrV6XDPBETflwEg5oV4/vvPB8pBeZ3bg7 j4avbq5qurvjysN4IqJ4FXyX3twUovP9mh5waSnVj2liNRZ6o++shAVQc/JOOq/MG8MZ Ey8J+b0ZERMmGKqw4DNWZIxgAjSFw5VyxtKXgvxlsJsbwrZiNgjEUpIwdbzTNk5fKmAz VDcg== X-Gm-Message-State: ALoCoQkyVUpf3xQI8C0chjrDqXQ12j4P8SBVWZygOCA+Nbn3H3dYdJphmcdmgdHKgI1gW+mR4hE/ X-Received: by 10.66.141.231 with SMTP id rr7mr3603997pab.41.1396487469665; Wed, 02 Apr 2014 18:11:09 -0700 (PDT) Received: from [172.20.10.2] (230.sub-70-197-6.myvzw.com. [70.197.6.230]) by mx.google.com with ESMTPSA id oa3sm7243638pbb.15.2014.04.02.18.11.08 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 02 Apr 2014 18:11:08 -0700 (PDT) From: Steven Schlansker Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Subject: Installing bacula-server with PostgreSQL 9.2 Message-Id: <413DCEA9-DE6D-4834-B9F1-6C08C7BE5F2C@likeness.com> Date: Wed, 2 Apr 2014 18:11:06 -0700 To: freebsd-pkg@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) X-Mailer: Apple Mail (2.1874) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 01:11:16 -0000 I have a FreeBSD system I recently upgraded to FreeBSD 10-RELEASE with = pkgng. The system is a backup server. It runs bacula-server on top of = PostgreSQL 9.2. I can no longer start the bacula director: Starting bacula_dir. Shared object "libstdc++.so.6" not found, required by "bacula-dir" /usr/local/etc/rc.d/bacula-dir: WARNING: failed to start bacula_dir I figured that I need to reinstall Bacula from the new pkg repository so that it doesn=92t have stale library dependencies: [steven@d0028:~]% sudo pkg install -f bacula-server Updating repository catalogue The following 2 packages will be installed: Installing postgresql90-client: 9.0.17 Installing bacula-server: 5.2.12_3 The installation will require 11 MB more space Oh no! I=92m running postgresql92-client! [steven@d0028:~]% sudo pkg info | grep postgres postgresql92-client-9.2.8 PostgreSQL database (client) postgresql92-contrib-9.2.8 The contrib utilities from the PostgreSQL = distribution postgresql92-server-9.2.8 The most advanced open-source database = available anywhere So of course this cannot install, there are conflicting files, and I = don=92t want it anyway. I tried updating the origin as I=92ve seen some people recommend, but it = seems to have no effect. [steven@d0028:~]% sudo pkg set -o = db/postgresql90-client:db/postgresql92-client Change origin from db/postgresql90-client to db/postgresql92-client for = all dependencies? [y/N]: y How do I get my backups back? Thanks, Steven From owner-freebsd-pkg@FreeBSD.ORG Thu Apr 3 06:00:35 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40F56481 for ; Thu, 3 Apr 2014 06:00:35 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id DF0B6C1C for ; Thu, 3 Apr 2014 06:00:34 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.2.117.99]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s3360LrB020030 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Thu, 3 Apr 2014 07:00:27 +0100 (BST) (envelope-from matthew@FreeBSD.org) DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s3360LrB020030 Authentication-Results: smtp.infracaninophile.co.uk/s3360LrB020030; dkim=none reason="no signature"; dkim-adsp=none Message-ID: <533CF8EB.7090403@FreeBSD.org> Date: Thu, 03 Apr 2014 07:00:11 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: Installing bacula-server with PostgreSQL 9.2 References: <413DCEA9-DE6D-4834-B9F1-6C08C7BE5F2C@likeness.com> In-Reply-To: <413DCEA9-DE6D-4834-B9F1-6C08C7BE5F2C@likeness.com> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="W9n38u3h9sePOhgoxEScMblumGJiKQuC8" X-Virus-Scanned: clamav-milter 0.98.1 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 06:00:35 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --W9n38u3h9sePOhgoxEScMblumGJiKQuC8 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 03/04/2014 02:11, Steven Schlansker wrote: > [steven@d0028:~]% sudo pkg install -f bacula-server > Updating repository catalogue > The following 2 packages will be installed: >=20 > Installing postgresql90-client: 9.0.17 > Installing bacula-server: 5.2.12_3 >=20 > The installation will require 11 MB more space >=20 > Oh no! I=92m running postgresql92-client! The dependency on postgresql90 is "baked into" the compiled package, and it is not possible to use that package with a different version of postgresql. Apart from anything else, any binaries are linked against the specific ABI versions of shlibs provided by the postgresql client package. 'pkg set -o' is not an answer in this case, If you want to use a different version of postgresql, then you're going to have to compile anything that links against the postgresql shlibs yourself (ie. that depends on postgresql90-client). It is possible to run your own repo with just stuff that depends on postgresql and pull down anything else from pkg.FreeBSD.org, but you will find your local repo ends up containing more than locally built pkgs than is strictly necessary -- ie. everything that those postgresql consuming pkgs depend upon, even if those dependencies are themselves completely independent of postgresql. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --W9n38u3h9sePOhgoxEScMblumGJiKQuC8 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTPPj0XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATLPoQAK6daVlG0O9gpRLOrXOz+DXh AFF3l7gQT2MjzRWEAjlbtxaM76izu8xqemvVleA/Tw+6EyRKsayv2wFN0CL4g1/p 6zVS1MO6Lz486f/1F43//Sxbm8TmatgLzoq/3WXGMiWbu8LAUxyX3xRCERCNelOJ UAobdUL93VToLOCqfoo/+/f0tYiu9P9HqCgsGQx8PyXddLrQI/fj13S0xem6fFgo 0I5hr5ojJ+ieGGzYIi/jShypqq6dWjLlJhsH196Xn8BbY+g5RdBXQX8ISp3A8/fW o0Slg1OtMDY7j6PYpu0MhlyAnTiRIMaNIsrzmcNrEMGnUvXazyQ0JQwKO3xfIYp5 pylh5kxYbQ2pTav+oQh6P9Xooc2PCcIxBnMeCSYThZxJMLPap7DQshB9xkpbonKc CH+9FEpsuP/Q4b3IbB/Zg6YgzYlEHRFF4hEzUZ+QadRPv8kz1VL4cP8CXPwKjDd1 jmWP584TbS+fmri2gOM7mWY/xmsXUmHi4TK629lQKoQIu/PJVcfZAtW+GoOMcW0Q 7yrqSO00LoIyIkB7ksb+SEDsAPI0upc1CGTtmDY1GH7e3oUch2XdVB5ATxsoQ7bQ pG9QjB5AkaH8yx65zvNUZoDAFxEFtdLOOoQP3gy3NPkK6Lxs0db/G+ziyaJ9rABE XbesxdwCryvO4J7b0+a9 =pwqO -----END PGP SIGNATURE----- --W9n38u3h9sePOhgoxEScMblumGJiKQuC8-- From owner-freebsd-pkg@FreeBSD.ORG Thu Apr 3 13:47:50 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 048DEB64 for ; Thu, 3 Apr 2014 13:47:50 +0000 (UTC) Received: from gw.zefyris.com (sabik.zefyris.com [IPv6:2001:7a8:3c67:2::254]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 85D3DE49 for ; Thu, 3 Apr 2014 13:47:49 +0000 (UTC) Received: from sekishi.zefyris.com (sekishi.zefyris.com [IPv6:2001:7a8:3c67:2::12]) by gw.zefyris.com (8.14.5/8.14.5) with ESMTP id s33Dlane026860; Thu, 3 Apr 2014 15:47:39 +0200 (CEST) Date: Thu, 3 Apr 2014 15:47:36 +0200 From: Francois Tigeot To: freebsd-pkg@freebsd.org Subject: Re: Installing bacula-server with PostgreSQL 9.2 Message-ID: <20140403134726.GA78108@sekishi.zefyris.com> References: <413DCEA9-DE6D-4834-B9F1-6C08C7BE5F2C@likeness.com> <533CF8EB.7090403@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <533CF8EB.7090403@FreeBSD.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (gw.zefyris.com [IPv6:2001:7a8:3c67:2::254]); Thu, 03 Apr 2014 15:47:39 +0200 (CEST) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 13:47:50 -0000 On Thu, Apr 03, 2014 at 07:00:11AM +0100, Matthew Seaman wrote: > On 03/04/2014 02:11, Steven Schlansker wrote: > > [steven@d0028:~]% sudo pkg install -f bacula-server > > Updating repository catalogue > > The following 2 packages will be installed: > > > > Installing postgresql90-client: 9.0.17 > > Installing bacula-server: 5.2.12_3 > > > > The installation will require 11 MB more space > > > > Oh no! I’m running postgresql92-client! I have opened a PR last month to change the default PostgreSQL version to the latest stable branch at the time (9.3): http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/187286 I believe someone else asked for PostgreSQL to be bumped to 9.2 before that; it would be nice if some port committer could finally push the necessary changes. -- Francois Tigeot From owner-freebsd-pkg@FreeBSD.ORG Thu Apr 3 16:35:09 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0EB4DF79; Thu, 3 Apr 2014 16:35:09 +0000 (UTC) Received: from mail-pa0-x231.google.com (mail-pa0-x231.google.com [IPv6:2607:f8b0:400e:c03::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D1F271EA; Thu, 3 Apr 2014 16:35:08 +0000 (UTC) Received: by mail-pa0-f49.google.com with SMTP id lj1so2098843pab.22 for ; Thu, 03 Apr 2014 09:35:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=fT0HEQZEUHbDKo4GJOVk0rYwxt+Ufj0lmQNznRED3Ts=; b=aFRAo6hmX1JuespIbzhlU6m4T3EDjnQUYX2fqk11qdFzzGHxRUpDhoREytePJSgJ0Z ziUjKodQTCYp7TUTy+mBtj7qs9BwhAzEupeKujw/xxJFPPgk6On4XHGCgT+USMo7Jq0D YCUT/qBigQ6D8oIMPkN+DV0k4t7AibSFTWMBnQ4FnqSyfXEz0Xk57e3iWyda1tg/+qz2 VsPC2TbGh4YdA0gcpCANeGoQtoJLBbpW9Y2kuk8IRU3Fpk04ALuzSkI8zDyfWPSrWjuf 8bLbgPgc777dMVw9hw/XdHLrH3DUaWJRhOCpCK/QFua+dfXzvVcmrEOtdbsEeHd8Xavs ZQMA== X-Received: by 10.66.119.172 with SMTP id kv12mr8845534pab.34.1396542907942; Thu, 03 Apr 2014 09:35:07 -0700 (PDT) Received: from [10.10.21.169] (otra.opentable.com. [199.16.144.7]) by mx.google.com with ESMTPSA id bz4sm12212447pbb.12.2014.04.03.09.35.04 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 03 Apr 2014 09:35:04 -0700 (PDT) Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) Subject: Re: Installing bacula-server with PostgreSQL 9.2 From: Steven Schlansker In-Reply-To: <533CF8EB.7090403@FreeBSD.org> Date: Thu, 3 Apr 2014 09:35:03 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <6534BBBF-4D98-4FCB-A9AC-4564B0373E08@gmail.com> References: <413DCEA9-DE6D-4834-B9F1-6C08C7BE5F2C@likeness.com> <533CF8EB.7090403@FreeBSD.org> To: Matthew Seaman X-Mailer: Apple Mail (2.1874) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 16:35:09 -0000 On Apr 2, 2014, at 11:00 PM, Matthew Seaman wrote: > On 03/04/2014 02:11, Steven Schlansker wrote: >> [steven@d0028:~]% sudo pkg install -f bacula-server >> Updating repository catalogue >> The following 2 packages will be installed: >>=20 >> Installing postgresql90-client: 9.0.17 >> Installing bacula-server: 5.2.12_3 >>=20 >> The installation will require 11 MB more space >>=20 >> Oh no! I=92m running postgresql92-client! >=20 > The dependency on postgresql90 is "baked into" the compiled package, = and > it is not possible to use that package with a different version of > postgresql. Apart from anything else, any binaries are linked against > the specific ABI versions of shlibs provided by the postgresql client > package. 'pkg set -o' is not an answer in this case, That=92s very unfortunate! I would expect a binary built against libpq = 9.0 to work fine when linked with libpq 9.3, but can=92t say that I know = exactly how good PostgreSQL is about binary compatibility. >=20 > If you want to use a different version of postgresql, then you're = going > to have to compile anything that links against the postgresql shlibs > yourself (ie. that depends on postgresql90-client). That would be okay if a little unfortunate, except the port seems broken = in 10.0-R as well :( make[3]: don't know how to make /usr/include/openssl/pq_compat.h. Stop make[3]: stopped in = /usr/ports/sysutils/bacula-server/work/bacula-5.2.12/src/cats *** Error code 1 Stop. make: stopped in /usr/ports/sysutils/bacula-server > It is possible to > run your own repo with just stuff that depends on postgresql and pull > down anything else from pkg.FreeBSD.org, but you will find your local > repo ends up containing more than locally built pkgs than is strictly > necessary -- ie. everything that those postgresql consuming pkgs = depend > upon, even if those dependencies are themselves completely independent > of postgresql. From owner-freebsd-pkg@FreeBSD.ORG Thu Apr 10 23:25:47 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6948A3E8; Thu, 10 Apr 2014 23:25:47 +0000 (UTC) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D533A11DA; Thu, 10 Apr 2014 23:25:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.14.5/8.14.5) with ESMTP id s3ANMc9O030759; Fri, 11 Apr 2014 03:22:38 +0400 (MSK) (envelope-from marck@rinet.ru) Date: Fri, 11 Apr 2014 03:22:38 +0400 (MSK) From: Dmitry Morozovsky To: Steven Schlansker Subject: Re: Installing bacula-server with PostgreSQL 9.2 In-Reply-To: <6534BBBF-4D98-4FCB-A9AC-4564B0373E08@gmail.com> Message-ID: References: <413DCEA9-DE6D-4834-B9F1-6C08C7BE5F2C@likeness.com> <533CF8EB.7090403@FreeBSD.org> <6534BBBF-4D98-4FCB-A9AC-4564B0373E08@gmail.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) X-NCC-RegID: ru.rinet X-OpenPGP-Key-ID: 6B691B03 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (woozle.rinet.ru [0.0.0.0]); Fri, 11 Apr 2014 03:22:39 +0400 (MSK) Cc: Matthew Seaman , freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Apr 2014 23:25:47 -0000 On Thu, 3 Apr 2014, Steven Schlansker wrote: > > The dependency on postgresql90 is "baked into" the compiled package, and > > it is not possible to use that package with a different version of > > postgresql. Apart from anything else, any binaries are linked against > > the specific ABI versions of shlibs provided by the postgresql client > > package. 'pkg set -o' is not an answer in this case, > > That?s very unfortunate! I would expect a binary built against libpq 9.0 > to work fine when linked with libpq 9.3, but can?t say that I know exactly > how good PostgreSQL is about binary compatibility. The PostgreSQL team is quite straight about it: there's no promises regarding binary compatibility when you're changing important (in PgSQL case, second number) version part; hence, whenever you're drifting from N.M to N.M+1 you're basically forced to to dump/resore or replication. There were some exceptions, but usually you should be ready to set up new server and then migrate your database one way or another... -- Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] [ FreeBSD committer: marck@FreeBSD.org ] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ From owner-freebsd-pkg@FreeBSD.ORG Fri Apr 11 06:14:29 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5B16D4DD for ; Fri, 11 Apr 2014 06:14:29 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id DCF251900 for ; Fri, 11 Apr 2014 06:14:28 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.2.117.99]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s3B6EL8H073573 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Fri, 11 Apr 2014 07:14:22 +0100 (BST) (envelope-from matthew@FreeBSD.org) DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s3B6EL8H073573 Authentication-Results: smtp.infracaninophile.co.uk/s3B6EL8H073573; dkim=none reason="no signature"; dkim-adsp=none Message-ID: <5347883A.5060805@FreeBSD.org> Date: Fri, 11 Apr 2014 07:14:18 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: Dmitry Morozovsky , Steven Schlansker Subject: Re: Installing bacula-server with PostgreSQL 9.2 References: <413DCEA9-DE6D-4834-B9F1-6C08C7BE5F2C@likeness.com> <533CF8EB.7090403@FreeBSD.org> <6534BBBF-4D98-4FCB-A9AC-4564B0373E08@gmail.com> In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="xeQJb2bbPoLtGEUA0l0mmK2veRjJe74qp" X-Virus-Scanned: clamav-milter 0.98.1 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Apr 2014 06:14:29 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --xeQJb2bbPoLtGEUA0l0mmK2veRjJe74qp Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 11/04/2014 00:22, Dmitry Morozovsky wrote: > On Thu, 3 Apr 2014, Steven Schlansker wrote: >=20 >>> The dependency on postgresql90 is "baked into" the compiled package, = and >>> it is not possible to use that package with a different version of >>> postgresql. Apart from anything else, any binaries are linked against= >>> the specific ABI versions of shlibs provided by the postgresql client= >>> package. 'pkg set -o' is not an answer in this case, >> >> That?s very unfortunate! I would expect a binary built against libpq = 9.0 >> to work fine when linked with libpq 9.3, but can?t say that I know exa= ctly >> how good PostgreSQL is about binary compatibility. >=20 > The PostgreSQL team is quite straight about it: there's no promises reg= arding=20 > binary compatibility when you're changing important (in PgSQL case, sec= ond=20 > number) version part; hence, whenever you're drifting from N.M to N.M+1= you're=20 > basically forced to to dump/resore or replication. There were some exc= eptions,=20 > but usually you should be ready to set up new server and then migrate y= our=20 > database one way or another... In fact, the Postgresql project has now declared that point releases incrementing the minor (ie. second part) version number will not need a dump/restore any more. So long as you're using PostgreSQL 9.3 or above. Using replication for upgrades means you have to use trigger based replication ie. Slony -- that's the only replication style that allows different versions either end. Unless you're running at least 9.3, where you can upgrade a streaming replication setup without having to stop, upgrade both ends and restart. Even so, this does not affect the library dependencies for the postgresql binaries. The requirement there is minimally that the library ABI version should not change. I don't know what their policy is -- either forwards + backwards ABI compatibility, or (like the FreeBSD project) forwards compatibility, so a program compiled on FreeBSD 9.0 will work on 9.1, 9.2 etc. but one compiled on 9.2 will not necessarily run on 9.0. The pkg(8) system takes a conservative approach and forces you to install exactly the same versions as used for compilation. The new solver in 1.3 may allow some lattitude in this, but we don't have support for dependencies on ranges of version numbers yet. There's a GSoC proposal to implement that which we're waiting on a decision about. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --xeQJb2bbPoLtGEUA0l0mmK2veRjJe74qp Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTR4g8XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATf6cQAJbAQqfbypCTylvUq6AtRPGP uUS64CnblaR1+n4EcBcwpPHCWSQAxeZvxHOOQeni4IoRsLUwZKVGK+hiJGvrzZ7R F8eIyZvljQIfesaUjsn4WijBjSnAXnYSyFdMUlcIcuCK23pIIEPnbGBId0kNSHex PNIKAHOC6CduV8ESaTW5PiyRBLB0tCGbrvIwrYFdl2lZfEDSxoFlw/eLKBj15hwv MERTuuObJkLPjTyuIVkHoQkZeVnrFnPVzYkMn/kJwt62ye5Nw+6RcuwvdPuMybq+ qGxPop96CQz4PcD9k7lNo1dOPYDEFOut4k/w3bCIo1SLomqEh4si1rLlcXNkTHAW mej+veAZNyegm9EEH4RRC644mIDQmIhuK0AhvEuC9+VR1kO99r6hJelE8Jq07vbl PlraXHxywcJVxic7Jlre0EKhqoIjYFmjpxJCCHc3UPyNXj3lMDMJRptl3XXJuB5l Yv2lruIRug1JDtpqWy5FHLm7mjF7HblRaw31v1ARXs8H+i9TVrD/f6HW5GoBARI0 wSG0bjWt99dbWoM1VZ5PbbhkEc3i/z+PB76EskyKKjt23SoeJk3I6eSsAxHXxhpZ qNDDO20wHzeH5yDvEmN4N0KtJ7EooTie+cXthYVAEY7prQOHwfZ8n+2YOaIBb8ye VBnVmc3dYNIUpaeRhFNy =XIZl -----END PGP SIGNATURE----- --xeQJb2bbPoLtGEUA0l0mmK2veRjJe74qp-- From owner-freebsd-pkg@FreeBSD.ORG Fri Apr 11 10:47:30 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6F6AC8C9 for ; Fri, 11 Apr 2014 10:47:30 +0000 (UTC) Received: from smtp2-g21.free.fr (smtp2-g21.free.fr [IPv6:2a01:e0c:1:1599::11]) by mx1.freebsd.org (Postfix) with ESMTP id EACFD1692 for ; Fri, 11 Apr 2014 10:47:28 +0000 (UTC) Received: from yggdrasil.alkumuna.eu (unknown [IPv6:2a01:e35:8a74:6e70:232:36ff:fe5c:3a87]) by smtp2-g21.free.fr (Postfix) with ESMTP id 1C4B24B000F for ; Fri, 11 Apr 2014 12:47:21 +0200 (CEST) Received: from yggdrasil.alkumuna.eu (localhost [IPv6:::1]) by yggdrasil.alkumuna.eu (8.14.7/8.14.7) with ESMTP id s3BAlJvF018682 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Fri, 11 Apr 2014 12:47:19 +0200 (CEST) (envelope-from troyax@yggdrasil.alkumuna.eu) Received: (from troyax@localhost) by yggdrasil.alkumuna.eu (8.14.7/8.14.7/Submit) id s3BAlJdj018681 for freebsd-pkg@freebsd.org; Fri, 11 Apr 2014 12:47:19 +0200 (CEST) (envelope-from troyax) Date: Fri, 11 Apr 2014 12:47:19 +0200 From: Troyax To: freebsd-pkg@freebsd.org Subject: 9.2 binary package repository with new Xorg. Message-ID: <20140411104719.GA18672@yggdrasil.alkumuna.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Apr 2014 10:47:30 -0000 Hi, I have FreeBSD 9.2 with pkgng running on my laptop and I would like to move to new Xorg to have the Intel driver for my IvyBridge graphics. Is there a binary package repository for the 9.2 branch with the new Xorg in it? I cannot move to FreeBSD 10 for the moment (see PR 187488) and if an easy solution exists I would like to avoid using poudriere. Thanks, Troyax. From owner-freebsd-pkg@FreeBSD.ORG Fri Apr 11 16:49:07 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3567FCE7; Fri, 11 Apr 2014 16:49:07 +0000 (UTC) Received: from mail-pd0-x231.google.com (mail-pd0-x231.google.com [IPv6:2607:f8b0:400e:c02::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 037DA128C; Fri, 11 Apr 2014 16:49:06 +0000 (UTC) Received: by mail-pd0-f177.google.com with SMTP id y10so5432965pdj.8 for ; Fri, 11 Apr 2014 09:49:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=s0c5XXg4jDzAQYjp4BizeeOD04EgVUJVl7r4HhDIimY=; b=JaRa7OE65RZEHFgXr3hBKhwNy+zC7WAEEh2E6GKG638UhS2060yuOg43Str349Tpaz USNa4cz85uov/WBWMPspGiWQwBNOiigceneLJxssQD8XhjpCiS+UmaYzNF2trf7xu37n hrhMLgR5gGpupkx/CqoXSFgMEI4zThm67SUvVfivcfEbEOJf99PdUg0se9+IbTMutG9K L/jEBGc6+m1EWDYn91cQ4RMkwvs+MH9/AL5Nqj5NfhBDaieOpa/SacBrtT27Bj55p/W9 l3DhKYQsX8Lz5FF5WZLi3JcRe9NCvft7ISLEDhg0O39mixHFojqiPQib2beF0C8In3Em MrwQ== X-Received: by 10.68.229.68 with SMTP id so4mr28434643pbc.110.1397234946589; Fri, 11 Apr 2014 09:49:06 -0700 (PDT) Received: from [10.10.21.90] (otra.opentable.com. [199.16.144.7]) by mx.google.com with ESMTPSA id vb7sm16761828pbc.13.2014.04.11.09.49.03 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 11 Apr 2014 09:49:03 -0700 (PDT) Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) Subject: Re: Installing bacula-server with PostgreSQL 9.2 From: Steven Schlansker In-Reply-To: Date: Fri, 11 Apr 2014 09:49:01 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <1676FF51-DC56-4F8B-917E-CBB625C981FC@gmail.com> References: <413DCEA9-DE6D-4834-B9F1-6C08C7BE5F2C@likeness.com> <533CF8EB.7090403@FreeBSD.org> <6534BBBF-4D98-4FCB-A9AC-4564B0373E08@gmail.com> To: Dmitry Morozovsky X-Mailer: Apple Mail (2.1874) Cc: Matthew Seaman , freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Apr 2014 16:49:07 -0000 On Apr 10, 2014, at 4:22 PM, Dmitry Morozovsky wrote: > On Thu, 3 Apr 2014, Steven Schlansker wrote: >=20 >>> The dependency on postgresql90 is "baked into" the compiled package, = and >>> it is not possible to use that package with a different version of >>> postgresql. Apart from anything else, any binaries are linked = against >>> the specific ABI versions of shlibs provided by the postgresql = client >>> package. 'pkg set -o' is not an answer in this case, >>=20 >> That?s very unfortunate! I would expect a binary built against libpq = 9.0 >> to work fine when linked with libpq 9.3, but can?t say that I know = exactly >> how good PostgreSQL is about binary compatibility. >=20 > The PostgreSQL team is quite straight about it: there's no promises = regarding=20 > binary compatibility when you're changing important (in PgSQL case, = second=20 > number) version part; hence, whenever you're drifting from N.M to = N.M+1 you're=20 > basically forced to to dump/resore or replication. There were some = exceptions,=20 > but usually you should be ready to set up new server and then migrate = your=20 > database one way or another=85 Hi Dmitry, You are totally correct for the binary representation of the *database = on disk*. This is something I know and already had to deal with when we upgraded = 9.1 -> 9.2. However this thread is entirely about a end-user program that *links* = against libpq which is totally different. And the replies from Heikki and Tom = in this thread: = http://postgresql.1045698.n5.nabble.com/Details-about-libpq-cross-version-= compatibility-td5723830.html make it sound like it should certainly be source-compatible and = almost-certainly binary compatible. Which means this sounds like a deficiency in =91pkg=92= itself. Thanks, Steven From owner-freebsd-pkg@FreeBSD.ORG Fri Apr 11 16:50:18 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 88847E2F; Fri, 11 Apr 2014 16:50:18 +0000 (UTC) Received: from mail-pb0-x22d.google.com (mail-pb0-x22d.google.com [IPv6:2607:f8b0:400e:c01::22d]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5632C12A0; Fri, 11 Apr 2014 16:50:18 +0000 (UTC) Received: by mail-pb0-f45.google.com with SMTP id uo5so5616529pbc.18 for ; Fri, 11 Apr 2014 09:50:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=PBwg2SCHY2p4KAOkadtCr+tQfW4xt4xu4QEUqX39Knc=; b=KWhVBqlpTNFgypsIPEjakejFa2jQ5AoUFvGF2zPFkIIQLd40jOiFjuyaswwG2ULxK/ aOh6RL8fXD7P9gwXFXU5abiyxFna9adX+J+RZsNbNUOzH/Ya7lbf4dEVMkapwcXOerOJ //ucxLZMCKwKoXgDVsgDdDrmmCPNqBFVVBKxmVYD5FTA1GCfU2FVmhAiiAunj6R/vqbk blXmgXXhFbl/GIE5D28VMkCXsbbp5CgE5H4Qw3fqnsSSxFI4ji7jHVllUo7uPbeWBKd1 nAokqCDHop4khc1pN8hzdDlEQY8mSGa7Nf4uH2tJPF5GASUoPkzFmjcYsojoIEGZ6Iys 4m6Q== X-Received: by 10.66.185.39 with SMTP id ez7mr28564829pac.134.1397235017973; Fri, 11 Apr 2014 09:50:17 -0700 (PDT) Received: from [10.10.21.90] (otra.opentable.com. [199.16.144.7]) by mx.google.com with ESMTPSA id my6sm16736143pbc.36.2014.04.11.09.50.13 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 11 Apr 2014 09:50:13 -0700 (PDT) Content-Type: text/plain; charset=iso-8859-1 Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) Subject: Re: Installing bacula-server with PostgreSQL 9.2 From: Steven Schlansker In-Reply-To: <5347883A.5060805@FreeBSD.org> Date: Fri, 11 Apr 2014 09:50:12 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: References: <413DCEA9-DE6D-4834-B9F1-6C08C7BE5F2C@likeness.com> <533CF8EB.7090403@FreeBSD.org> <6534BBBF-4D98-4FCB-A9AC-4564B0373E08@gmail.com> <5347883A.5060805@FreeBSD.org> To: Matthew Seaman X-Mailer: Apple Mail (2.1874) Cc: Dmitry Morozovsky , freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Apr 2014 16:50:18 -0000 On Apr 10, 2014, at 11:14 PM, Matthew Seaman = wrote: > On 11/04/2014 00:22, Dmitry Morozovsky wrote: >> On Thu, 3 Apr 2014, Steven Schlansker wrote: >>=20 >>>> The dependency on postgresql90 is "baked into" the compiled = package, and >>>> it is not possible to use that package with a different version of >>>> postgresql. Apart from anything else, any binaries are linked = against >>>> the specific ABI versions of shlibs provided by the postgresql = client >>>> package. 'pkg set -o' is not an answer in this case, >>>=20 >>> That?s very unfortunate! I would expect a binary built against = libpq 9.0 >>> to work fine when linked with libpq 9.3, but can?t say that I know = exactly >>> how good PostgreSQL is about binary compatibility. >>=20 >> The PostgreSQL team is quite straight about it: there's no promises = regarding=20 >> binary compatibility when you're changing important (in PgSQL case, = second=20 >> number) version part; hence, whenever you're drifting from N.M to = N.M+1 you're=20 >> basically forced to to dump/resore or replication. There were some = exceptions,=20 >> but usually you should be ready to set up new server and then migrate = your=20 >> database one way or another... >=20 > In fact, the Postgresql project has now declared that point releases > incrementing the minor (ie. second part) version number will not need = a > dump/restore any more. So long as you're using PostgreSQL 9.3 or = above. Fantastic! >=20 > Even so, this does not affect the library dependencies for the > postgresql binaries. The requirement there is minimally that the > library ABI version should not change. I don't know what their = policy > is -- either forwards + backwards ABI compatibility, or (like the > FreeBSD project) forwards compatibility, so a program compiled on > FreeBSD 9.0 will work on 9.1, 9.2 etc. but one compiled on 9.2 will = not > necessarily run on 9.0. =20 Replied earlier in the thread accidentally, but=20 = http://postgresql.1045698.n5.nabble.com/Details-about-libpq-cross-version-= compatibility-td5723830.html leads me to believe they are compatible both ways. > The pkg(8) system takes a conservative approach > and forces you to install exactly the same versions as used for > compilation. The new solver in 1.3 may allow some lattitude in this, > but we don't have support for dependencies on ranges of version = numbers > yet. There's a GSoC proposal to implement that which we're waiting on = a > decision about. That would be an extremely welcome feature :)=20 From owner-freebsd-pkg@FreeBSD.ORG Tue Apr 15 01:26:49 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A64BC6E for ; Tue, 15 Apr 2014 01:26:49 +0000 (UTC) Received: from mail-la0-x232.google.com (mail-la0-x232.google.com [IPv6:2a00:1450:4010:c03::232]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DA7FD14E8 for ; Tue, 15 Apr 2014 01:26:48 +0000 (UTC) Received: by mail-la0-f50.google.com with SMTP id pv20so6221041lab.23 for ; Mon, 14 Apr 2014 18:26:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=H3AND3eyLWr0NABH4zyDvlFTPbGKeSTp6VqJaPll+VQ=; b=sSKVOD5mwyNcqSLjATEOfc3l1pTget56KFKhO646usJI0Regybt2cyahekNic6BhA3 227nyQZ4VBiDkq6wyBtZHSOixPFcu0mj8R555HIFIEg6Trvd/ztGlQodQCeOYiPSrsG6 8uq0cFqZMjV2kVbuOfRbzHrk9+6lcTH9JYhEnHqD8t0eyoOBnGmVxRe0YipKKKC9l/UC 0YS0yGkePQP7GsNHJ/oeEr4K0rlHDNSOztR4+EErENBjzHXwm9JFzMfYUcRdQjGZKjEk mgzFBx0Mt9T7R7EjO9joQNYHelCrDuGGG20ECZuK3voDlMAPyg0Xhf1md08AgpOXIc21 zI4A== MIME-Version: 1.0 X-Received: by 10.112.205.35 with SMTP id ld3mr30125448lbc.1.1397525206813; Mon, 14 Apr 2014 18:26:46 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.169.68 with HTTP; Mon, 14 Apr 2014 18:26:46 -0700 (PDT) Date: Mon, 14 Apr 2014 18:26:46 -0700 X-Google-Sender-Auth: iJn7vGLQz6FZAI7ZMLHGXpFFXzw Message-ID: Subject: Read-only nullfs mounts should become read-write? From: Craig Rodrigues To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 01:26:49 -0000 Hi, I have been experimenting with converting the FreeNAS build to use poudriere for building ports. This is my poudriere.conf: ============================================================ NO_ZFS=yes RESOLV_CONF=/etc/resolv.conf BASEFS=/usr/home/rodrigc/freenas/freenas/os-base/amd64/poudriere DISTFILES_CACHE=/usr/home/rodrigc/freenas/freenas/os-base/amd64/ports/distfiles POUDRIERE_DATA=/usr/home/rodrigc/freenas/freenas/os-base/amd64/d USE_PORTLINT=no USE_TMPFS=yes GIT_URL=git@gitserver.ixsystems.com:/git/repos/freenas-build/ports.git GIT_BRANCH=freenas/9-stable ============================================================ When doing a build, I encountered errors like this during every ports build: ===> Fetching all distfiles required by rcs-5.8.2 for building ===> Extracting for rcs-5.8.2 => SHA256 Checksum OK for rcs-5.8.2.tar.gz. mkdir: /usr/ports/devel/rcs/work: Read-only file system *** [do-extract] Error code 1 Any idea what the cause of the problem could be? -- Craig From owner-freebsd-pkg@FreeBSD.ORG Tue Apr 15 01:39:13 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9523AF14; Tue, 15 Apr 2014 01:39:13 +0000 (UTC) Received: from mail.ignoranthack.me (ujvl.x.rootbsd.net [199.102.79.106]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7091615E8; Tue, 15 Apr 2014 01:39:13 +0000 (UTC) Received: from [192.168.1.103] (c-24-23-223-253.hsd1.ca.comcast.net [24.23.223.253]) (using SSLv3 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: sbruno@ignoranthack.me) by mail.ignoranthack.me (Postfix) with ESMTPSA id 362791929A9; Tue, 15 Apr 2014 01:39:12 +0000 (UTC) Subject: Re: Read-only nullfs mounts should become read-write? From: Sean Bruno To: Craig Rodrigues In-Reply-To: References: Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-ZSysc6KQK45f2zOgz4J+" Date: Mon, 14 Apr 2014 18:39:10 -0700 Message-ID: <1397525950.1293.4.camel@powernoodle.corp.yahoo.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: sbruno@freebsd.org List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 01:39:13 -0000 --=-ZSysc6KQK45f2zOgz4J+ Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Mon, 2014-04-14 at 18:26 -0700, Craig Rodrigues wrote: > Hi, >=20 > I have been experimenting with converting the FreeNAS > build to use poudriere for building ports. >=20 > This is my poudriere.conf: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > NO_ZFS=3Dyes > RESOLV_CONF=3D/etc/resolv.conf > BASEFS=3D/usr/home/rodrigc/freenas/freenas/os-base/amd64/poudriere > DISTFILES_CACHE=3D/usr/home/rodrigc/freenas/freenas/os-base/amd64/ports/d= istfiles > POUDRIERE_DATA=3D/usr/home/rodrigc/freenas/freenas/os-base/amd64/d > USE_PORTLINT=3Dno > USE_TMPFS=3Dyes > GIT_URL=3Dgit@gitserver.ixsystems.com:/git/repos/freenas-build/ports.git > GIT_BRANCH=3Dfreenas/9-stable > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >=20 > When doing a build, I encountered errors like this during every ports bui= ld: >=20 > =3D=3D=3D> Fetching all distfiles required by rcs-5.8.2 for building > =3D=3D=3D> Extracting for rcs-5.8.2 > =3D> SHA256 Checksum OK for rcs-5.8.2.tar.gz. > mkdir: /usr/ports/devel/rcs/work: Read-only file system > *** [do-extract] Error code 1 >=20 >=20 > Any idea what the cause of the problem could be? >=20 >=20 > -- > Craig Maybe set PORTSDIR=3D in make.conf or whatever to point at where your ports are? I think I ran into this too. e.g. make.conf: PORTSDIR=3D/usr/local/poudriere/ports/default Maybe spam the entire build log from poudriere somewhere we can look at too. sean --=-ZSysc6KQK45f2zOgz4J+ Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJTTI2zAAoJEBkJRdwI6BaHYYoH/A1NIfmd3g4eohPWn7q0dPzf vBR2Y8Sn1MQ9d9oZSzie3OO61lqXFYwU4hiJF6n5oZu0AEFaIJqwkU82IIKoP6mH bwMmXlPbub9G9Io444EJSbLy553Gv3TXqVrf6KrEi3KKOW/10BM3fjc4OmbHsiez C2RAzPjFrTvFqiSXd6MI9MEkYo0PBgV4Y/tWqKYE0sWfQqnNi6GxGDiRKPj96Z9F hYVh5s7sYk75lhYAaORQKtNe5W3TA/gWAYIDqcHsJ+4sC3LRv608VHrQ4JHxBalc iYA9RPl368SWTjNDHKAhH7dOBjs/3klGMMcUY03seVxR7T54Tsj+UXyTPHlyD1U= =i0p7 -----END PGP SIGNATURE----- --=-ZSysc6KQK45f2zOgz4J+-- From owner-freebsd-pkg@FreeBSD.ORG Tue Apr 15 01:54:18 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8E8A32D7; Tue, 15 Apr 2014 01:54:18 +0000 (UTC) Received: from mail-lb0-x233.google.com (mail-lb0-x233.google.com [IPv6:2a00:1450:4010:c04::233]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E24081748; Tue, 15 Apr 2014 01:54:17 +0000 (UTC) Received: by mail-lb0-f179.google.com with SMTP id p9so6273314lbv.38 for ; Mon, 14 Apr 2014 18:54:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=AwsJu5aULFv3RfZIu5jO9Oh5EugkMcB+ZZBXJj/b0V0=; b=auMdcEUmrkB+AmpxjB2Dt7bd1FDgTHe8XXB+9tcHbkDCCOEquJQ2k63ssi1Nhmd/GY ESzPoPVjfiX+mHa1UJXgw34bmlAQP4ATtTIuSOwEbKe82iQvyeWO427XCaX8Kn0buk7s 193YzSYWzDE1vgvkJV4Sek8uJaGdCMxg5O0uApJTdiKmoGB/REo6J8jwfM7j7wV6wVXH IfaQM0tZh++b9jD3nWN63bGGSYAh7ShCyguahrml8CkinWGsu4KcXTqGJLiU3SqX21G2 7nqxHA+nyxBXJVO+qQ5L79qSWwuvLgiGN2wb088NTyUdg/h9WEJyJlSrgdBwUDZe+mYS //7w== MIME-Version: 1.0 X-Received: by 10.152.184.66 with SMTP id es2mr32293641lac.22.1397526855666; Mon, 14 Apr 2014 18:54:15 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.169.68 with HTTP; Mon, 14 Apr 2014 18:54:15 -0700 (PDT) In-Reply-To: <1397525950.1293.4.camel@powernoodle.corp.yahoo.com> References: <1397525950.1293.4.camel@powernoodle.corp.yahoo.com> Date: Mon, 14 Apr 2014 18:54:15 -0700 X-Google-Sender-Auth: FCPHJg0ILYNYXItZUnixGJv8aRU Message-ID: Subject: Re: Read-only nullfs mounts should become read-write? From: Craig Rodrigues To: Sean Bruno Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 01:54:18 -0000 On Mon, Apr 14, 2014 at 6:39 PM, Sean Bruno wrote: > > > Maybe set PORTSDIR= in make.conf or whatever to point at where your > ports are? I think I ran into this too. > > e.g. > make.conf: > PORTSDIR=/usr/local/poudriere/ports/default I don't think PORTSDIR is necessary. I have the following in the following files /etc/poudriere.d/ports/p/method contains: git and /etc/poudriere.d/ports/p/method contains: /usr/home/rodrigc/freenas/freenas//FreeBSD/ports That's where my ports tree is, and it is being accessed properly. It is just that something is trying to write to a read-only mount. > Maybe spam the entire build log from poudriere somewhere we can look at > too. I put the build logs here: http://people.freebsd.org/~rodrigc/d/logs/ Here is one example failure due to a read-only mount: http://people.freebsd.org/~rodrigc/d/logs/bulk/j-p/2014-04-15_01h52m30s/logs/errors/m4-1.4.17,1.log -- Craig From owner-freebsd-pkg@FreeBSD.ORG Tue Apr 15 12:20:04 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 973B8356 for ; Tue, 15 Apr 2014 12:20:04 +0000 (UTC) Received: from mail-lb0-x22a.google.com (mail-lb0-x22a.google.com [IPv6:2a00:1450:4010:c04::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 21E0C132F for ; Tue, 15 Apr 2014 12:20:03 +0000 (UTC) Received: by mail-lb0-f170.google.com with SMTP id s7so6919996lbd.29 for ; Tue, 15 Apr 2014 05:20:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:content-type; bh=j1395HWPxX9SICQgWbLlKNFm+upG6FIyAD3jEjjgLww=; b=d/5PEF251Qg8VnBlWS78iGbotbu2oNKJkqiyFQAJ/iFitKC2oTlVKm+Z1tYXTo25xf XI1xv3vMgf5SIPoqwDJfEDB0kBSIlZEfQgXLwVY1ozlYvuEjr0SINaUny/AkGBFoSwxg HiJspRvGAI2kbvekv4DVocqvHA70Mkl/0FIwmdrrPCC/9BHjAGYe0JPP+GrYbRguUB0v BaZjr5fcX+menfLx+x8J/MdwympNeqCTOr2XXgdBG5UgJ9btmiYNVja/5sGBKI9sDxbB TKgR8ykQmJvCM9z4ssrNTuCOrzCLCIqwLZDkLvqrwn93sWwJZhmWjm516if5c2z/lDtj B9yQ== MIME-Version: 1.0 X-Received: by 10.112.100.195 with SMTP id fa3mr85018lbb.81.1397564402076; Tue, 15 Apr 2014 05:20:02 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.169.68 with HTTP; Tue, 15 Apr 2014 05:20:02 -0700 (PDT) In-Reply-To: References: Date: Tue, 15 Apr 2014 05:20:02 -0700 X-Google-Sender-Auth: KmTLQlnI37fTjRyD8BnXqGYupdY Message-ID: Subject: Re: Read-only nullfs mounts should become read-write? From: Craig Rodrigues To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 12:20:04 -0000 On Mon, Apr 14, 2014 at 6:26 PM, Craig Rodrigues wrote: > > When doing a build, I encountered errors like this during every ports build: > > ===> Fetching all distfiles required by rcs-5.8.2 for building > ===> Extracting for rcs-5.8.2 > => SHA256 Checksum OK for rcs-5.8.2.tar.gz. > mkdir: /usr/ports/devel/rcs/work: Read-only file system > *** [do-extract] Error code 1 > OK, I figured out what the problem was. Since I am creating the ports building jail outside of poudriere, I did not do all the steps necessary to prepare a jail for poudriere to build ports with it. I "borrowed" some logic from poudriere's jail.sh script and put it in my own script: https://github.com/freenas/freenas/commit/708c9c70d9e67feb8c908dc902b65f18d1295016 and that fixed the problem. Specifically: (1) jail must have a /wrkdirs directory (2) WRKDIRPREFIX=/wrkdirs must be set inside the /etc/make.conf of the jail -- Craig From owner-freebsd-pkg@FreeBSD.ORG Tue Apr 15 12:32:02 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 826C26F8; Tue, 15 Apr 2014 12:32:02 +0000 (UTC) Received: from mail-we0-x22f.google.com (mail-we0-x22f.google.com [IPv6:2a00:1450:400c:c03::22f]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E6301150E; Tue, 15 Apr 2014 12:32:01 +0000 (UTC) Received: by mail-we0-f175.google.com with SMTP id q58so9523581wes.34 for ; Tue, 15 Apr 2014 05:32:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=3iO7CdxwYAc3iZ2x2hVBwsWmEls1kPA40TzmTYNo4jk=; b=GcWKXuM4kbKpONI2XQgeBco69CEq/0pl+FoczKdNT4E96JiX8fz5vcOfAENnR62ZZR n27pRla6RgcR81nJVrenN7pHoKnD3xZfvT8Uj4q50UnBVSqsv2VXM8EfQjDX0lT6IB34 8QZCtEfEzXpM2sBPou1te0TwC/OtDBTLlZcBfjl5FaTS5P4MQtiMrtmVxzucHBDIEV6d S8O1mKB7Z4EtslTqTqoOZZDkPV37smbtk8dB+CgXfV6DOCZpTHGMZGQNlm6xIQw/NNUZ 2w9cdAi9Y9HTgX/RmCSG//iIsNMsunjEuLnUCI2ewgKERthGsmcmjwSDX2y7WofBqX2f 6aGw== X-Received: by 10.194.81.98 with SMTP id z2mr1535198wjx.12.1397565120034; Tue, 15 Apr 2014 05:32:00 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by mx.google.com with ESMTPSA id ph8sm29541195wjb.32.2014.04.15.05.31.55 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 15 Apr 2014 05:31:56 -0700 (PDT) Sender: Baptiste Daroussin Date: Tue, 15 Apr 2014 14:31:54 +0200 From: Baptiste Daroussin To: Craig Rodrigues Subject: Re: Read-only nullfs mounts should become read-write? Message-ID: <20140415123154.GF37560@ivaldir.etoilebsd.net> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mrJd9p1Ce66CJMxE" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 12:32:02 -0000 --mrJd9p1Ce66CJMxE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 14, 2014 at 06:26:46PM -0700, Craig Rodrigues wrote: > Hi, >=20 > I have been experimenting with converting the FreeNAS > build to use poudriere for building ports. >=20 > This is my poudriere.conf: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > NO_ZFS=3Dyes > RESOLV_CONF=3D/etc/resolv.conf > BASEFS=3D/usr/home/rodrigc/freenas/freenas/os-base/amd64/poudriere > DISTFILES_CACHE=3D/usr/home/rodrigc/freenas/freenas/os-base/amd64/ports/d= istfiles > POUDRIERE_DATA=3D/usr/home/rodrigc/freenas/freenas/os-base/amd64/d > USE_PORTLINT=3Dno > USE_TMPFS=3Dyes > GIT_URL=3Dgit@gitserver.ixsystems.com:/git/repos/freenas-build/ports.git > GIT_BRANCH=3Dfreenas/9-stable > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >=20 What do you have in your jails make.conf? in /usr/local/etc/poudriere.d/* WRKDIR is defined and set automatically by poudriere, you do not have to tw= eak it, like the PORTSDIR var any any variable related to the port framework directly (where the packages are etc.) regards, Bapt --mrJd9p1Ce66CJMxE Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlNNJroACgkQ8kTtMUmk6Ez+5gCeMG7n9rIR2+RnIBbxYcwoZZCJ a4MAn2yaoNqIghdmXWk1NP9EKzurnMop =1qj7 -----END PGP SIGNATURE----- --mrJd9p1Ce66CJMxE-- From owner-freebsd-pkg@FreeBSD.ORG Tue Apr 15 17:54:13 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 88F78233; Tue, 15 Apr 2014 17:54:13 +0000 (UTC) Received: from mail-la0-x22c.google.com (mail-la0-x22c.google.com [IPv6:2a00:1450:4010:c03::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D94CA188E; Tue, 15 Apr 2014 17:54:12 +0000 (UTC) Received: by mail-la0-f44.google.com with SMTP id c6so7169118lan.17 for ; Tue, 15 Apr 2014 10:54:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=/JQUcv3crf8BwwafWumb6By/93OCIPTmemAEwKYYSPI=; b=m0N/ZwitC4fbsDIt+J5+LszGuJanY/kquD4a0jQ1ZJQyQVFXQxtdYjuyDM7nimbUo/ LmMWPrFnDgxsDcKObuhbC0RjvRmvx7BHPRiesFJFX+3m2ogJrNF1FuTys5ltveP/+T4l Q2qjcJiFWRlolQRoPEcx1hInaGiOshTixmBYOjiHB8G7JXp8Fhzgww+F2tyaPxQhD8N4 5FLp9ZBmpnR3sWQTaVd6JLeIuH7jp+H9dX9zzlxCu4XlrggaDN8JnlbQnR5gMuuyhNFH ZPku4MLSjWdycfj9WWWEtDHxKCQiGD860nytVaKloZMIrBTtZIeIPUDpN5TUIfI2+ii8 jIzA== MIME-Version: 1.0 X-Received: by 10.112.56.148 with SMTP id a20mr2058092lbq.44.1397584450755; Tue, 15 Apr 2014 10:54:10 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.169.68 with HTTP; Tue, 15 Apr 2014 10:54:10 -0700 (PDT) In-Reply-To: <20140415123154.GF37560@ivaldir.etoilebsd.net> References: <20140415123154.GF37560@ivaldir.etoilebsd.net> Date: Tue, 15 Apr 2014 10:54:10 -0700 X-Google-Sender-Auth: zOPB16rJNuWxM8hirDpfvDn_Ifc Message-ID: Subject: Re: Read-only nullfs mounts should become read-write? From: Craig Rodrigues To: Baptiste Daroussin Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 17:54:13 -0000 On Tue, Apr 15, 2014 at 5:31 AM, Baptiste Daroussin wrote: >> > What do you have in your jails make.conf? In my jail, my make.conf was empty. This is because I built the jail myself instead of using "poudriere jail -c" to create it. I fixed the problem by generating the things that "poudriere jail -c" writes into the /etc/make.conf: http://lists.freebsd.org/pipermail/freebsd-pkg/2014-April/000273.html -- Craig From owner-freebsd-pkg@FreeBSD.ORG Tue Apr 15 19:19:39 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4F13D6B6 for ; Tue, 15 Apr 2014 19:19:39 +0000 (UTC) Received: from mail-la0-x233.google.com (mail-la0-x233.google.com [IPv6:2a00:1450:4010:c03::233]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D12EB124C for ; Tue, 15 Apr 2014 19:19:38 +0000 (UTC) Received: by mail-la0-f51.google.com with SMTP id pv20so7162656lab.24 for ; Tue, 15 Apr 2014 12:19:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=EWoN0cLUhi8p1cgaplZYgJR6giyKTzM/AOm7z1EoCpA=; b=QEPa3631GfL+D1Hzyv2uih4lsxqBkIVvh9iK1tezi/6auk1jH7VipcH1bLvV8YL1Ok ip53eRW9XWbIjF2H+anjI4LcLknL+zDo7ySiov5H2253/f1Qpit0P4aPt0ZkixhRzdIy LNTG8y//iIwdOgqLqyuau/drfO4NZsQlUPniIxBeWHmmz4Qxeg72vYXGOORJIVCTr6WA x6xVadyPbpBY+ouu+Vq/jxe/Y7Eg2C9V70xIpzaoM1q604q9KExgdMpHNt8B7X6AfKyq g8Cf4vdp5WNGoIKswUrK4ilyg3LZh6sw7rpc4UeeLpurWj5AVFqKhYZogIJDZJXMO9xC HOYg== MIME-Version: 1.0 X-Received: by 10.152.3.72 with SMTP id a8mr2366457laa.33.1397589576310; Tue, 15 Apr 2014 12:19:36 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.169.68 with HTTP; Tue, 15 Apr 2014 12:19:36 -0700 (PDT) Date: Tue, 15 Apr 2014 12:19:36 -0700 X-Google-Sender-Auth: oQOHXWB2pNSJhMs_lLu2OMwnSsY Message-ID: Subject: How to set per-port options using poudriere? From: Craig Rodrigues To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 19:19:39 -0000 Hi, If you look at this file: https://github.com/freenas/freenas/blob/poudriere/nanobsd/os-ports You will see how we specify the list of ports to build for inclusion in FreeNAS. I have managed to take that and generate a list which can be used as input to "poudriere bulk -f". How can I take the list of per-port options in that file and translate that to per-port options which can be used as input to poudriere? Here is one example: add_port_debug net/samba41 \ OPTIONS_FILE_SET+=ACL_SUPPORT \ OPTIONS_FILE_SET+=ADS \ OPTIONS_FILE_SET+=AIO_SUPPORT \ OPTIONS_FILE_UNSET+=AVAHI \ OPTIONS_FILE_UNSET+=CUPS \ OPTIONS_FILE_SET+=DEBUG \ OPTIONS_FILE_UNSET+=DEVELOPER \ OPTIONS_FILE_SET+=DNSUPDATE \ OPTIONS_FILE_SET+=EXP_MODULES \ OPTIONS_FILE_SET+=FAM_SUPPORT \ OPTIONS_FILE_SET+=LDAP \ OPTIONS_FILE_SET+=MANPAGES \ OPTIONS_FILE_SET+=MDNSRESPONDER \ OPTIONS_FILE_SET+=PAM_SMBPASS \ OPTIONS_FILE_SET+=PTHREADPOOL \ OPTIONS_FILE_SET+=QUOTAS \ OPTIONS_FILE_UNSET+=SWAT \ OPTIONS_FILE_SET+=SYSLOG \ OPTIONS_FILE_SET+=UTMP \ OPTIONS_FILE_SET+=WINBIND \ OPTIONS_FILE_SET+=NSUPDATE \ OPTIONS_FILE_UNSET+=BIND98 \ OPTIONS_FILE_UNSET+=BIND99 Thanks. -- Craig From owner-freebsd-pkg@FreeBSD.ORG Tue Apr 15 22:47:27 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7136992F for ; Tue, 15 Apr 2014 22:47:27 +0000 (UTC) Received: from mail-la0-x22c.google.com (mail-la0-x22c.google.com [IPv6:2a00:1450:4010:c03::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F0D0C16D1 for ; Tue, 15 Apr 2014 22:47:26 +0000 (UTC) Received: by mail-la0-f44.google.com with SMTP id c6so7582513lan.3 for ; Tue, 15 Apr 2014 15:47:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:content-type; bh=VeX1pDoVMGgodjY8LeLlLUtDumcqFfmh4MjX0Ks/ycc=; b=bA2YN/EhEApPAVXZvboUXimR8LrCFlYCgNS60IaWVW00QAIVwnRSTFwPpNiBPjsdRL NlP6iG88oS3KRohCAtYOFqohwOIvk7DynN+n4z69AY7tISlBBUTCgZ/G0oRGzVS6Vz5M OnYwDzRYfkeIb+oB6fYb7qzVp3KUOI3kvbw4Qx1g9mFEwSkMRO+wXKTWa1PbjuJwEPj2 3m2YqeE/WAZC9DQvdoYvJ0CaBtK+wRJso48SYJxbnAVTxqVEneOgvIyN/TtbhNlyRRjQ cCooQiAjfBGkOG2JmlPIqm0BzwBEl0zTSt4/NBRBbjkjQTdvNrhQqdyZRKXptyHMopZy AHGA== MIME-Version: 1.0 X-Received: by 10.112.41.227 with SMTP id i3mr533640lbl.41.1397602045001; Tue, 15 Apr 2014 15:47:25 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.169.68 with HTTP; Tue, 15 Apr 2014 15:47:24 -0700 (PDT) In-Reply-To: References: Date: Tue, 15 Apr 2014 15:47:24 -0700 X-Google-Sender-Auth: GeSfXjuxci5Mv6t3hCgpU-xEaFU Message-ID: Subject: Re: How to set per-port options using poudriere? From: Craig Rodrigues To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2014 22:47:27 -0000 On Tue, Apr 15, 2014 at 12:19 PM, Craig Rodrigues wrote: > > How can I take the list of per-port options in that file > and translate that to per-port options which can be used > as input to poudriere? > OK, I think I figured it out by reading: https://fossil.etoilebsd.net/poudriere/doc/trunk/doc/poudriere.8.wiki#x435553544f4d49534154494f4e and creaeted etc/poudriere.d/options//options files for each port with options. I committed my fix here: https://github.com/freenas/freenas/commit/fda8bc354c55b6f1a37bbe4208c9e22b1c8e6510 -- Craig From owner-freebsd-pkg@FreeBSD.ORG Wed Apr 16 00:44:12 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5D553B7C; Wed, 16 Apr 2014 00:44:12 +0000 (UTC) Received: from mail.feld.me (mail.feld.me [66.170.3.6]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "mail.feld.me", Issuer "Gandi Standard SSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 093F81244; Wed, 16 Apr 2014 00:44:11 +0000 (UTC) Received: from mail.feld.me (mail.feld.me [66.170.3.6]); by mail.feld.me (OpenSMTPD) with ESMTP id bd84c2cc; Tue, 15 Apr 2014 19:37:28 -0500 (CDT) Received: from feld@feld.me by mail.feld.me (Archiveopteryx 3.2.0) with esmtpsa id 1397608647-32718-6041/5/35; Wed, 16 Apr 2014 00:37:27 +0000 Content-Type: text/plain Mime-Version: 1.0 Subject: Re: How to set per-port options using poudriere? From: Mark Felder In-Reply-To: Date: Tue, 15 Apr 2014 19:37:23 -0500 Content-Transfer-Encoding: quoted-printable Message-Id: <2451045F-88DB-4ED3-BDE2-15E977C1A235@FreeBSD.org> References: To: Craig Rodrigues X-Mailer: Apple Mail (2.1874) Sender: feld@feld.me Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Apr 2014 00:44:12 -0000 On Apr 15, 2014, at 17:47, Craig Rodrigues wrote: > On Tue, Apr 15, 2014 at 12:19 PM, Craig Rodrigues = wrote: >>=20 >> How can I take the list of per-port options in that file >> and translate that to per-port options which can be used >> as input to poudriere? >>=20 >=20 > OK, I think I figured it out by reading: >=20 > https://fossil.etoilebsd.net/poudriere/doc/trunk/doc/poudriere.8.wiki#x= 435553544f4d49534154494f4e >=20 > and creaeted etc/poudriere.d/options//options > files for each port with options. >=20 > I committed my fix here: >=20 > https://github.com/freenas/freenas/commit/fda8bc354c55b6f1a37bbe4208c9e= 22b1c8e6510 >=20 I personally do not recommend doing it this way: etc/poudriere.d/options/= portname/options The main reason is that it is both difficult to track what options you = intended to change, and the fact that those options will never get = updated. If a port maintainer adds a new option and turns it on by = default or perhaps disables an option by default, your options file will = not be updated to reflect this. It will make it painful to troubleshoot = your ports/packages. I prefer to enter the changes in etc/poudriere.d/make.conf (or one of = the other make.conf's available here for your build flavor, etc) The format in make.conf is as follows: lang_php5_SET=3D DTRACE lang_php5_UNSET =3D FPM This will make it much easier to track over time exactly which port = options you intend to change. From owner-freebsd-pkg@FreeBSD.ORG Wed Apr 16 01:58:07 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 343CBB08 for ; Wed, 16 Apr 2014 01:58:07 +0000 (UTC) Received: from mail-lb0-x234.google.com (mail-lb0-x234.google.com [IPv6:2a00:1450:4010:c04::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B40F61945 for ; Wed, 16 Apr 2014 01:58:06 +0000 (UTC) Received: by mail-lb0-f180.google.com with SMTP id 10so7642115lbg.11 for ; Tue, 15 Apr 2014 18:58:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=DAKxhTEzKpbJk5hctzC/JJweyDvJWZ5Sih5uSf7Dnrc=; b=DqSlDiJeUhIT/Fpx/AcaEFbt6ChvsuVlsUzSV1odtZDa/g6rpO1xOzxZV1jZGMBdSv 29cq6PqW8BZ85rmTTHlzG8HNeh61bmXKKdZ75tAJ71yRHA8O33WQz2YjlwBYLWZGN177 p+6irRvu1QhCJuBtljUpHpS1TApzR6EZ+0qmMBAKKHGEZhE9OVV0VwQIi/i1mYvOVYqt OrUd7THU1nZtAzwo2ZwPQGdxhjryugYIT7E0iE03uj/1k2dJEJdCHvs6sEV8ks3sRVpA CXbV9zt8YNmvPnOzgHkWKX+LgmlwVbyA1eyEHv9PdE/vPvE/7mYBB0lN+wX9+b1tUzKa oeBw== MIME-Version: 1.0 X-Received: by 10.152.26.66 with SMTP id j2mr3318863lag.25.1397613484690; Tue, 15 Apr 2014 18:58:04 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.169.68 with HTTP; Tue, 15 Apr 2014 18:58:04 -0700 (PDT) Date: Tue, 15 Apr 2014 18:58:04 -0700 X-Google-Sender-Auth: huBL3nMQnHETvwEJ6KqB_g5ebyo Message-ID: Subject: poudirere bulk, any hook to add a nullfs nullfs mount? From: Craig Rodrigues To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Apr 2014 01:58:07 -0000 Hi, I am continuing to integrate poudriere into the FreeNAS build. I am building my own jail, instead of using "poudriere jail -c". (1) In my FreeNAS tree, I have my jail is at: JAILMNT = somepath/obj/_.w/ (2) My FreeBSD source tree which I used to build the jail is at: SRCBASE = somepath/extra-src/FreeBSD/src (3) When I run "poudriere bulk" to build all of my ports, before any commands are run in the jail, I would like to mount -o ro -t nullfs $SRCBASE $JAILMNT/usr/src I need this so that any ports which compile kernel modules can build properly. (4) If "poudriere bulk" terminates for any reason, I want the nullfs mount to cleanly unmount. Is there any way I can write a hook which plugs into poudriere to do this? Thanks. -- Craig From owner-freebsd-pkg@FreeBSD.ORG Wed Apr 16 07:45:10 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63614DD5 for ; Wed, 16 Apr 2014 07:45:10 +0000 (UTC) Received: from eu1sys200aog101.obsmtp.com (eu1sys200aog101.obsmtp.com [207.126.144.111]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B49B519D7 for ; Wed, 16 Apr 2014 07:45:08 +0000 (UTC) Received: from mail-wg0-f47.google.com ([74.125.82.47]) (using TLSv1) by eu1sys200aob101.postini.com ([207.126.147.11]) with SMTP ID DSNKU0406bOZAHIOoSUdNB5aGP6EBiDfOJWP@postini.com; Wed, 16 Apr 2014 07:45:09 UTC Received: by mail-wg0-f47.google.com with SMTP id x12so10462404wgg.6 for ; Wed, 16 Apr 2014 00:44:41 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:date:from:message-id:to:subject:cc :reply-to:in-reply-to; bh=ie/pqnDHlpmXR1t5Q5VIvFxdqUblnBLgSoFI0UvHQJ0=; b=MXJO9cTdg7PmmN2X2k7FeTv+HvZMhRo3s4wil15lesSPwW0J++MgE1TWBSj4A5fZ6o VIzJFf/FclriBpQXkXnwimzmqb0AOZc0lUcOH0wH0wH0uzXLjaVKVfT4IEZbWNKlOb4Q Uals5hSe7mrRstlsDqy6zBALVokD9ruLRIDtXuJoT96JyEHozE3VNsUv8Z2CSh8Vknp1 qG28on41+iG7sWHoy6QgJfVKMYtyOPlTmM4AXbk28EB5XZtPN2Q+1CF4/3I0Ks48srQa m3asROtymnP/K9uFEuzVabm3eUUmctGdjPT5tikhCmaTURVRozyD41CqrlgNCddJELDV j6xA== X-Gm-Message-State: ALoCoQmM/3bHO9OKDgVN2+VqSjZGfNjNDCe4d5fLy+20wpcuG53KHNeDbp6K/G4TdQjHcLlUp+1N9O3SuCyv7+BM2+W0K/ailEWHcEPEJNrQG2/0SXIFALNMkhinL7cwm8JGcos+YwZ5 X-Received: by 10.180.98.1 with SMTP id ee1mr18307659wib.10.1397634281526; Wed, 16 Apr 2014 00:44:41 -0700 (PDT) X-Received: by 10.180.98.1 with SMTP id ee1mr18307646wib.10.1397634281434; Wed, 16 Apr 2014 00:44:41 -0700 (PDT) Received: from mech-cluster241.men.bris.ac.uk (mech-cluster241.men.bris.ac.uk. [137.222.187.241]) by mx.google.com with ESMTPSA id be3sm33160940wjc.5.2014.04.16.00.44.40 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 16 Apr 2014 00:44:40 -0700 (PDT) Sender: Anton Shterenlikht Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.8/8.14.8) with ESMTP id s3G7idJN018585 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 16 Apr 2014 08:44:39 +0100 (BST) (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.8/8.14.8/Submit) id s3G7id5I018584; Wed, 16 Apr 2014 08:44:39 +0100 (BST) (envelope-from mexas) Date: Wed, 16 Apr 2014 08:44:39 +0100 (BST) From: Anton Shterenlikht Message-Id: <201404160744.s3G7id5I018584@mech-cluster241.men.bris.ac.uk> To: rodrigc@FreeBSD.org, sbruno@freebsd.org Subject: Re: Read-only nullfs mounts should become read-write? In-Reply-To: Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: mexas@bris.ac.uk List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Apr 2014 07:45:10 -0000 I had this error for a long time. Gave up debugging, deleted the jail, reinstalled it, and the error was gone. I concluded that something went wrong when the jail was setup first time round. My pdr config: http://eis.bris.ac.uk/~mexas/freebsd/ia64/rx2600/UZI/poudriere.conf Anton From owner-freebsd-pkg@FreeBSD.ORG Wed Apr 16 10:42:24 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB5376B8 for ; Wed, 16 Apr 2014 10:42:24 +0000 (UTC) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.17.13]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6DEBF1B23 for ; Wed, 16 Apr 2014 10:42:24 +0000 (UTC) Received: from lghh23.zuhause.de (p548F283B.dip0.t-ipconnect.de [84.143.40.59]) by mrelayeu.kundenserver.de (node=mreue102) with ESMTP (Nemesis) id 0MBke7-1WhpQF0Avn-00Aqsf; Wed, 16 Apr 2014 12:42:16 +0200 Message-ID: <534E5E86.7030900@online.de> Date: Wed, 16 Apr 2014 12:42:14 +0200 From: Dieter Lange User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121014 Thunderbird/16.0.1 MIME-Version: 1.0 To: pkg@freebsd.org Subject: Typo in pkg.conf manpage, examples section Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Provags-ID: V02:K0:ZnpoPF2/8ypC4arWFM0QUgqe1akUyNP7GYFyvEWWZJA wsP4M8LJwllsFr7/krMSYIZI/XL8Gs099bIdDtbAV3KPjDGl2a IZLN7yEOc0AmubVPGGw79CN9XKrncaIIzqlPGsrl1GDlWV/SAa +mJV5WcQhDs6szLqKSVNMPufn22gUIQ39bwE3pImw75Vyfcx7b CJ4JSB0OJzKC7zbAGlxWbMNb73QVAlGR/TvNfyZed8LyJ6O3vz OuNVWuKdxAKb6iKdFp2VeSc09teEcQK1qSixh+T1i72LSMExVU I4HtMO1jfGyATt26SNjt6iyaPruM+5PxLdb794K+jnCU71GqcD YDe8cDhIdj8WdGIuQljc= X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Apr 2014 10:42:25 -0000 Hi, "handle_rc_cripts" should be "handle_rc_scripts" Regards DL From owner-freebsd-pkg@FreeBSD.ORG Sat Apr 19 06:32:59 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 21F3B82C for ; Sat, 19 Apr 2014 06:32:59 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 04A4912B2 for ; Sat, 19 Apr 2014 06:32:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3J6Wwxp080376 for ; Sat, 19 Apr 2014 06:32:58 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3J6WwqA080375 for pkg@freebsd.org; Sat, 19 Apr 2014 06:32:58 GMT (envelope-from bdrewery) Received: (qmail 49051 invoked from network); 19 Apr 2014 01:32:50 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 19 Apr 2014 01:32:50 -0500 Message-ID: <5352188D.2020206@FreeBSD.org> Date: Sat, 19 Apr 2014 01:32:45 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: Dieter Lange , pkg@freebsd.org Subject: Re: Typo in pkg.conf manpage, examples section References: <534E5E86.7030900@online.de> In-Reply-To: <534E5E86.7030900@online.de> X-Enigmail-Version: 1.6 OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bePplQXc2xM06wHGmSRAmK5Mm3FCtomp6" X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Apr 2014 06:32:59 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --bePplQXc2xM06wHGmSRAmK5Mm3FCtomp6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 4/16/2014 5:42 AM, Dieter Lange wrote: > Hi, >=20 > "handle_rc_cripts" should be "handle_rc_scripts" >=20 > Regards > DL Thanks. It was fixed some time ago for upcoming 1.3 --=20 Regards, Bryan Drewery --bePplQXc2xM06wHGmSRAmK5Mm3FCtomp6 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQEcBAEBAgAGBQJTUhiOAAoJEDXXcbtuRpfPBWAIANsyKs7RKqwAgkfLPZGqitch 9SQnbrGHyDnzbiA6IIsJ7ZVyXJaLR6vpaImgaiNzSJw3RvG2WRF2B6tff/9p6vVp wgWbXCoP+5jgIfgPDC8PmVbLpgcJiKsPFVA6gBTxozvCw9P6HTiNK0qbKBtlsAyO J1ULcKBnrUZtsBMwV3pf3nDn58EV7FKwjSNxDpYtEeiZl5v3U0V8VucY7HeRUYIC kXKxUXTvqpp01y3/pgqpXjm2zIlfGBabXaGfmGSvvGTs+FmUHDfDZ0xskq8UNpZW DIsI6r/HSrjiKWRiZqygqgdZfKfU4rac0LU1LAY5nsgX/o9Jn6TCKlGVhwoYbDw= =jm3a -----END PGP SIGNATURE----- --bePplQXc2xM06wHGmSRAmK5Mm3FCtomp6-- From owner-freebsd-pkg@FreeBSD.ORG Fri May 2 15:47:53 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08AD2BA0 for ; Fri, 2 May 2014 15:47:53 +0000 (UTC) Received: from mx2.paymentallianceintl.com (mx2.paymentallianceintl.com [216.26.158.171]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx2.paymentallianceintl.com", Issuer "Go Daddy Secure Certification Authority" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B2F916F8 for ; Fri, 2 May 2014 15:47:51 +0000 (UTC) Received: from firewall.mikej.com (162-238-140-44.lightspeed.lsvlky.sbcglobal.net [162.238.140.44]) by mx2.paymentallianceintl.com (8.14.5/8.13.8) with ESMTP id s42FfQHI051286 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Fri, 2 May 2014 11:41:26 -0400 (EDT) (envelope-from mikej@mikej.com) Received: from firewall.mikej.com (localhost.mikej.com [127.0.0.1]) by firewall.mikej.com (8.14.8/8.14.8) with ESMTP id s42Fejsn077902 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Fri, 2 May 2014 11:41:25 -0400 (EDT) (envelope-from mikej@mikej.com) Received: (from www@localhost) by firewall.mikej.com (8.14.8/8.14.8/Submit) id s42FeiiA077901; Fri, 2 May 2014 11:40:45 -0400 (EDT) (envelope-from mikej@mikej.com) X-Authentication-Warning: firewall.mikej.com: www set sender to mikej@mikej.com using -f To: Subject: make: cannot open /usr/ports/Mk/bsd.port.mk. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 02 May 2014 11:40:14 -0400 From: mikej Message-ID: X-Sender: mikej@mikej.com User-Agent: Roundcube Webmail/0.6-beta X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 May 2014 15:47:53 -0000 Anyone run into this before? Shouldn't "jail -k 10stable" unmount the jails directories? Regards, --mikej poudriere.conf ZPOOL=tank FREEBSD_HOST=ftp://ftp.freebsd.org RESOLV_CONF=/etc/resolv.conf BASEFS=/usr/local/poudriere USE_PORTLINT=no USE_TMPFS=wrkdir DISTFILES_CACHE=/usr/ports/distfiles CHECK_CHANGED_OPTIONS=no CCACHE_DIR=/var/cache/ccache ALLOW_MAKE_JOBS=yes FreeBSD bsd11 11.0-CURRENT FreeBSD 11.0-CURRENT #1 r264318M: Thu Apr 10 12:32:03 EDT 2014 mikej@bsd11:/usr/obj/usr/src/sys/GENERIC amd64 root@bsd11:/usr/home/mikej # poudriere status ====>> No running builds root@bsd11:/usr/home/mikej # poudriere jail -k -j 10stable ====>> Jail 10stable-default not running, but cleaning up anyway ====>> Umounting file systems root@bsd11:/usr/home/mikej # mount /dev/da0p2 on / (ufs, local, journaled soft-updates) devfs on /dev (devfs, local, multilabel) tank on /tank (zfs, local, nfsv4acls) tank/distfiles on /tank/distfiles (zfs, local, nfsv4acls) tank/poudriere on /tank/poudriere (zfs, local, nfsv4acls) tank/poudriere/jails on /tank/poudriere/jails (zfs, local, nfsv4acls) tank/poudriere/ports on /tank/poudriere/ports (zfs, local, nfsv4acls) tank/poudriere/data on /usr/local/poudriere/data (zfs, local, nfsv4acls) tank/poudriere/jails/10stable on /usr/local/poudriere/jails/10stable (zfs, local, nfsv4acls) tank/poudriere/jails/9stable on /usr/local/poudriere/jails/9stable (zfs, local, nfsv4acls) tank/poudriere/jails/head on /usr/local/poudriere/jails/head (zfs, local, nfsv4acls) tank/poudriere/ports/default on /usr/local/poudriere/ports/default (zfs, local, nfsv4acls) root@bsd11:/usr/home/mikej # poudriere statu root@bsd11:/usr/home/mikej # root@bsd11:/usr/home/mikej # poudriere bulk -j 10stable -v -f /usr/local/etc/poudriere.list ====>> Creating the reference jail... done ====>> Mounting system devices for 10stable-default ====>> Mounting ports/packages/distfiles ====>> Mounting ccache from: /var/cache/ccache ====>> Mounting packages from: /usr/local/poudriere/data/packages/10stable-default ====>> Logs: /usr/local/poudriere/data/logs/bulk/10stable-default/2014-05-02_11h17m35s ====>> Appending to make.conf: /usr/local/etc/poudriere.d/10stable-make.conf /etc/resolv.conf -> /usr/local/poudriere/data/build/10stable-default/ref/etc/resolv.conf ====>> Starting jail 10stable-default make: cannot open /usr/ports/Mk/bsd.port.mk. <------------------------------- ====>> Cleaning up ====>> Umounting file systems root@bsd11:/usr/home/mikej # ls -la /usr/ports/Mk/bsd.port.mk -rw-r--r-- 1 root wheel 225899 Apr 28 11:47 /usr/ports/Mk/bsd.port.mk root@bsd11:/usr/home/mikej # From owner-freebsd-pkg@FreeBSD.ORG Tue May 6 01:18:01 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 979A5342 for ; Tue, 6 May 2014 01:18:01 +0000 (UTC) Received: from mail-lb0-x233.google.com (mail-lb0-x233.google.com [IPv6:2a00:1450:4010:c04::233]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 24B6BB1C for ; Tue, 6 May 2014 01:18:00 +0000 (UTC) Received: by mail-lb0-f179.google.com with SMTP id c11so3788825lbj.24 for ; Mon, 05 May 2014 18:17:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=ZJJMzGsdnhAXrzdCg+ji1jBhubtVBYFSAqTqGdWQ7f0=; b=IjrJaTvG7NpRESIDVWFWhUvWRiwzQ8zQow7Gsf0sed3gti/1AeOz1P3RrdwgIOPIRX Lu8579uy0oZLFjprt8gK4RXIaqS5bBFnP65TvoyKmCTz4KPCcSCMO5qVqXQTZQsnPJxL lrxltd3KVps+ryW5SuU0X8is2JCyoUYsWAsnnyYvVhfUVPrHNgauVGFQIaGIzZI8pAoQ xhS8Cr4SX8QjD6VBI5LmUhV/Uc8cESNYNjaIU/vZ3Sgxk5VVBQx8NBTQ6IKduiN9D2Mt P0bSVrx/F1pCbZOKCwnJqDo8jefVxYX9XjLT3TgEwtpkSwYzWJ5d2g6vIFFwfO6aVsFk 8cyQ== MIME-Version: 1.0 X-Received: by 10.152.6.131 with SMTP id b3mr10542539laa.9.1399339079119; Mon, 05 May 2014 18:17:59 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.67.73 with HTTP; Mon, 5 May 2014 18:17:59 -0700 (PDT) Date: Mon, 5 May 2014 18:17:59 -0700 X-Google-Sender-Auth: fMzn3ynFZygXxX9lKyyK6knfq8I Message-ID: Subject: How to overlay "local ports" directories onto ports tree, build with poudriere? From: Craig Rodrigues To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2014 01:18:01 -0000 Hi, In /usr/src/Makefile.inc1, there is a variable: LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list" By appending to LOCAL_DIRS, you can add your own directories to the list of things that "make buildworld" will build. Is there an equivalent trick in the ports tree? The reason why I am asking is as follows. I am migrating the FreeNAS build to use poudriere. In FreeNAS we have: (1) Our own copy of the FreeBSD ports tree, which is branched from the main FreeBSD ports tree (2) A list of our own local ports In order to get poudriere to build all of these ports, I found that it was necessary to: (1) Take our FreeBSD ports tree (2) Copy directories from our own local ports tree, into the FreeBSD ports tree (3) Take the combined tree created in (2), and pass that as an argument to poudriere I would like to eliminate step (2). Instead of copying, I tried to nullfs mount our local ports into the FreeBSD ports tree, and then pass that as an argument to poudriere. However, when poudriere created the jails, the local ports didn't seem to be visible in the ports tree used by the jails. Is there a better way to overlay a list of local ports onto the main FreeBSD ports tree, without copying files? Thanks. -- Craig From owner-freebsd-pkg@FreeBSD.ORG Wed May 7 14:07:24 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 44C198CC for ; Wed, 7 May 2014 14:07:24 +0000 (UTC) Received: from relay.mailchannels.net (ar-005-i202.relay.mailchannels.net [162.253.144.84]) by mx1.freebsd.org (Postfix) with ESMTP id 80CE1C88 for ; Wed, 7 May 2014 14:07:22 +0000 (UTC) X-Sender-Id: _forwarded-from|107.201.34.133 Received: from mail-24.name-services.com (ip-10-204-11-22.us-west-2.compute.internal [10.204.11.22]) by relay.mailchannels.net (Postfix) with ESMTPA id 55C7161E9E for ; Wed, 7 May 2014 14:07:21 +0000 (UTC) X-Sender-Id: _forwarded-from|107.201.34.133 Received: from mail-24.name-services.com (mail-24.name-services.com [10.248.1.153]) (using TLSv1 with cipher AES128-SHA) by 0.0.0.0:2500 (trex/5.1.2); Wed, 07 May 2014 14:07:21 GMT X-MC-Relay: Forwarding X-MailChannels-SenderId: _forwarded-from%7C107.201.34.133 X-MailChannels-Auth-Id: demandmedia Received: from [10.0.10.1] (107-201-34-133.lightspeed.bcvloh.sbcglobal.net [107.201.34.133]) by mail-24.name-services.com with SMTP; Wed, 7 May 2014 07:07:14 -0700 Message-ID: <536A3E10.4030902@a1poweruser.com> Date: Wed, 07 May 2014 10:07:12 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: pkg@freebsd.org Subject: Re: bootstrapping /usr/sbin/pkg inside a jail References: <5369407E.9060008@a1poweruser.com> <53694241.6050207@my.hennepintech.edu> In-Reply-To: <53694241.6050207@my.hennepintech.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2014 14:07:24 -0000 Andrew Berg wrote: > On 2014.05.06 15:05, Fbsd8 wrote: >> But after starting a jail and issuing the same command I get this >> >> >> jexec dir23 tcsh >> dir23 /root >/usr/sbin/pkg >> The package management tool is not yet installed on your system. >> Do you want to fetch and install it now? [y/N]: y >> Bootstrapping pkg from >> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-current/Latest/, >> please wait... >> pkg: Error fetching >> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-current/Latest//Latest/pkg.txz: >> File unavailable (e.g., file not found, no access) >> A pre-built version of pkg could not be found for your system. >> Consider changing PACKAGESITE or installing it from ports >> >> Why 2 different URL's? >> From inside of a jail how do I install pkg? > > > Does your jail have working internet connectivity and DNS resolution? Yes of course It's not a question of getting to the internet which ping shows works. Its that going to ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-current/Latest/ using a browser or ftp shows that directory path does not exist. So it all boils down to, where is pkg program getting the url from and why is there difference between host and jail? This is more a pkgng question then a jail question. From owner-freebsd-pkg@FreeBSD.ORG Wed May 7 14:27:59 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF04718E for ; Wed, 7 May 2014 14:27:59 +0000 (UTC) Received: from mail.freebsd.systems (unknown [IPv6:2001:6a0:1cb::b]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A5EDAE7A for ; Wed, 7 May 2014 14:27:59 +0000 (UTC) Received: from mail.freebsd.systems (mail.freebsd.systems [IPv6:2001:6a0:1cb::b]) by mail.freebsd.systems (Postfix) with ESMTP id 48A951C0; Wed, 7 May 2014 16:27:54 +0200 (CEST) X-Virus-Scanned: amavisd-new at freebsd.systems Received: from mail.freebsd.systems ([IPv6:2001:6a0:1cb::b]) by mail.freebsd.systems (scan.freebsd.systems [IPv6:2001:6a0:1cb::b]) (amavisd-new, port 10026) with ESMTP id dbgr0cmEim7v; Wed, 7 May 2014 16:27:54 +0200 (CEST) Received: from [192.168.138.100] (83-144-115-210.static.chello.pl [83.144.115.210]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.freebsd.systems (Postfix) with ESMTPSA id A39EE1BB; Wed, 7 May 2014 16:27:53 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=wasikowski.net; s=default; t=1399472873; bh=HWG5dBSZ7rKyNi0saKxab1aa74d5aE3DnnAG/cyRCaY=; h=Date:From:To:References:In-Reply-To; b=HHrK9aL2+/QHxaqQvn4uBR3wGlyhADkjYgL+7dtkjm2L+sGocLog4KDNIlLdqVsa8 eR36IZIo1/8rVbLiGDxvi/AwIeuaEN7CkXH0Ap3kQ860ZvjbU+Dv6WWh2nEWEkjHUF 5Gyy/jhjufCvPyluG1Twas1dciLJyzH6cGB9t/rNz262UVec+Dm8ECH6T5j7c9RZEf cc908N9+EWMnY7dsE4qwA4Jx8i9B3Z+aIUdDQ9aorb0X34xctXiBwM/RxckfK1MuLu zxj12ZX7CcuOceq0vz+LRCG4xrp9wlNxGLevZO+JEO+Moem9Ruf24IP7H9z0HiuHIq W5JlmbImbxBgw== Message-ID: <536A42E5.4070608@wasikowski.net> Date: Wed, 07 May 2014 16:27:49 +0200 From: =?UTF-8?B?xYF1a2FzeiBXxIVzaWtvd3NraQ==?= User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Fbsd8 , pkg@freebsd.org Subject: Re: bootstrapping /usr/sbin/pkg inside a jail References: <5369407E.9060008@a1poweruser.com> <53694241.6050207@my.hennepintech.edu> <536A3E10.4030902@a1poweruser.com> In-Reply-To: <536A3E10.4030902@a1poweruser.com> X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2014 14:28:00 -0000 W dniu 2014-05-07 16:07, Fbsd8 pisze: > It's not a question of getting to the internet which ping shows works. > Its that going to > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-current/Latest/ > using a browser or ftp shows that directory path does not exist. > > So it all boils down to, where is pkg program getting the url from and > why is there difference between host and jail? > > This is more a pkgng question then a jail question. pkg(8) use location from /usr/local/etc/pkg.conf (before 1.2.x IIRC) and from /usr/local/etc/pkg/repos/ directory in 1.2.x and newer. -- best regards, Lukasz Wasikowski From owner-freebsd-pkg@FreeBSD.ORG Wed May 7 14:56:52 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5E1DBBE1 for ; Wed, 7 May 2014 14:56:52 +0000 (UTC) Received: from relay.mailchannels.net (ar-005-i201.relay.mailchannels.net [162.253.144.83]) by mx1.freebsd.org (Postfix) with ESMTP id 9603619B for ; Wed, 7 May 2014 14:56:50 +0000 (UTC) X-Sender-Id: _forwarded-from|107.201.34.133 Received: from mail-24.name-services.com (unknown [10.218.133.212]) by relay.mailchannels.net (Postfix) with ESMTPA id 6893612240B; Wed, 7 May 2014 14:56:41 +0000 (UTC) X-Sender-Id: _forwarded-from|107.201.34.133 Received: from mail-24.name-services.com (mail-24.name-services.com [10.244.170.26]) (using TLSv1 with cipher AES128-SHA) by 0.0.0.0:2500 (trex/5.1.2); Wed, 07 May 2014 14:56:42 GMT X-MC-Relay: Forwarding X-MailChannels-SenderId: _forwarded-from%7C107.201.34.133 X-MailChannels-Auth-Id: demandmedia Received: from [10.0.10.1] (107-201-34-133.lightspeed.bcvloh.sbcglobal.net [107.201.34.133]) by mail-24.name-services.com with SMTP; Wed, 7 May 2014 07:56:35 -0700 Message-ID: <536A49A1.8070000@a1poweruser.com> Date: Wed, 07 May 2014 10:56:33 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: =?UTF-8?B?xYF1a2FzeiBXxIVzaWtvd3NraQ==?= Subject: Re: bootstrapping /usr/sbin/pkg inside a jail References: <5369407E.9060008@a1poweruser.com> <53694241.6050207@my.hennepintech.edu> <536A3E10.4030902@a1poweruser.com> <536A42E5.4070608@wasikowski.net> In-Reply-To: <536A42E5.4070608@wasikowski.net> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Cc: pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2014 14:56:52 -0000 =C5=81ukasz W=C4=85sikowski wrote: > W dniu 2014-05-07 16:07, Fbsd8 pisze: >=20 >> It's not a question of getting to the internet which ping shows works. >> Its that going to >> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-current/Latest/ >> using a browser or ftp shows that directory path does not exist. >> >> So it all boils down to, where is pkg program getting the url from and >> why is there difference between host and jail? >> >> This is more a pkgng question then a jail question. >=20 > pkg(8) use location from /usr/local/etc/pkg.conf (before 1.2.x IIRC) an= d > from /usr/local/etc/pkg/repos/ directory in 1.2.x and newer. >=20 This is a fresh virgin install of 10.0. /etc only contains /etc/pkg=20 directory with out any pkg.conf file or other sub-directories until=20 after you exec on the host the first pkg command to bootstrap the=20 downloading and install of pkg itself after which /etc/pkg.conf.sample=20 shows up. Inside of the jail is just like the host was before bootstrap=20 of pkg program. From owner-freebsd-pkg@FreeBSD.ORG Wed May 7 14:58:55 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC060E82 for ; Wed, 7 May 2014 14:58:55 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 8452D1CA for ; Wed, 7 May 2014 14:58:55 +0000 (UTC) Received: from ox-dell39.ox.adestra.com (no-reverse-dns.metronet-uk.com [85.199.232.226] (may be forged)) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s47EwoRp024918 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Wed, 7 May 2014 15:58:51 +0100 (BST) (envelope-from matthew@freebsd.org) Authentication-Results: lucid-nonsense.infracaninophile.co.uk; dmarc=none header.from=freebsd.org DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s47EwoRp024918 Authentication-Results: smtp.infracaninophile.co.uk/s47EwoRp024918; dkim=none reason="no signature"; dkim-adsp=none X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host no-reverse-dns.metronet-uk.com [85.199.232.226] (may be forged) claimed to be ox-dell39.ox.adestra.com Message-ID: <536A4A1D.8020204@freebsd.org> Date: Wed, 07 May 2014 15:58:37 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: bootstrapping /usr/sbin/pkg inside a jail References: <5369407E.9060008@a1poweruser.com> <53694241.6050207@my.hennepintech.edu> <536A3E10.4030902@a1poweruser.com> <536A42E5.4070608@wasikowski.net> In-Reply-To: <536A42E5.4070608@wasikowski.net> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="rlFRuOVn7C6R5UUvdkfWL1sa5eXcfJOS8" X-Virus-Scanned: clamav-milter 0.98.1 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-0.4 required=5.0 tests=BAYES_00,RDNS_NONE, SPF_SOFTFAIL autolearn=no autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2014 14:58:55 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --rlFRuOVn7C6R5UUvdkfWL1sa5eXcfJOS8 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 05/07/14 15:27, =C5=81ukasz W=C4=85sikowski wrote: > W dniu 2014-05-07 16:07, Fbsd8 pisze: >=20 >> It's not a question of getting to the internet which ping shows works.= >> Its that going to >> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-current/Latest/ >> using a browser or ftp shows that directory path does not exist. >> >> So it all boils down to, where is pkg program getting the url from and= >> why is there difference between host and jail? >> >> This is more a pkgng question then a jail question. >=20 > pkg(8) use location from /usr/local/etc/pkg.conf (before 1.2.x IIRC) an= d > from /usr/local/etc/pkg/repos/ directory in 1.2.x and newer. >=20 That's true of the actual pkg(8) program. The /usr/sbin/pkg bootstrapping thinger works a bit differently. It depends on what version of FreeBSD you're bootstrapping on. Certainly on 10.x or above it uses the same URL as in /etc/pkg/FreeBSD.conf: http://pkg.FreeBSD.org/${ABI}/latest. /usr/sbin/pkg had a different default in older versions of the OS, and you'ld either have to write a /usr/local/etc/pkg.conf or set PACKAGESITE in the environment -- irrespective of whether the actual pkg(8) you were installing would take any notice of PACKAGESITE itself. Basically: set PACKAGESITE in the environment to tell /usr/sbin/pkg where to get the real pkg fron on 9.x or earlier; otherwise just use the built-in default on 10.x or above. Once you've got pkg(8) installed you can write your own repo.conf setup for everything else should you want to use a custom repo. Don't create a /usr/local/etc/pkg.conf unless you specifically want to override any of the default global settings. Cheers, Matthew --rlFRuOVn7C6R5UUvdkfWL1sa5eXcfJOS8 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTakoqXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQxOUYxNTRFQ0JGMTEyRTUwNTQ0RTNGMzAw MDUxM0YxMEUwQTlFNEU3AAoJEABRPxDgqeTn9cwP/3/cM/N6Xaq2BY2cU+mpCiHw pQ5Vq+YAinw0a6jcBBtjkhOxXXxw4d/loTxX1G/MbawFHXN6S++taHmmrJkeIY6K TPzFXtXbsulJjYs9VA8Todl2GAP+G2JS0xh+/uKqcv5PwIPFuQvciQnMrHE4vRLn uED4EYnpVtRV3Nk5PX7VBo/T51/lU6stCULgEJiQQPCuqByy9vSH9qE6B22AfgQT r2bKgXLqU6Y2Oai4/I20XChnvN42I0QMzZl0zBSuVFzoourqnWYFlr9AYnwpvYFw upyqcC2gsXKv2rLc1RlkxrQq3O3c4IlamvMWHASJMa6V+fP/1xbx0jgjphqUQ9bA c6pAsHa+GoNjrRro+Q0a5fGnkZxoFlu+9KWP0ZiXvGWy7j4L8UUmRi+f5BTrlevI K386OCVdLBXN3nJHLExT8v4aMkPw68AC7NDEGDFBzxQn9dF29ga1HoZaD4uKxFBV Aefgn8Ym8ZT5Ccllzgha/rXt7HjFhtvQAvc6hZ7cZfn10VK3Q9iQutwB3+TbXHN4 AaLxkfdpfxu2EbF9R272FiDhctAHmw+bIWk+sZZsRcKZj4fcK77werYz2NZZiiKD HQWt2RuWJQHBnywV3DV7kpL0LZw6aYCzWdjm+p3yg1siSIP6hcT+CDdGcdhJ9mH8 uskSOHi1fjgxq+yDTCZO =bbze -----END PGP SIGNATURE----- --rlFRuOVn7C6R5UUvdkfWL1sa5eXcfJOS8-- From owner-freebsd-pkg@FreeBSD.ORG Wed May 7 19:56:57 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49AB85A0 for ; Wed, 7 May 2014 19:56:57 +0000 (UTC) Received: from mail-lb0-x231.google.com (mail-lb0-x231.google.com [IPv6:2a00:1450:4010:c04::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C8923759 for ; Wed, 7 May 2014 19:56:56 +0000 (UTC) Received: by mail-lb0-f177.google.com with SMTP id s7so2090385lbd.22 for ; Wed, 07 May 2014 12:56:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=UCBKwc6Kkr4DfbyJZ389T6mQEE/EhKWG4bfSFzfb0bc=; b=cdW4J+lsLV9zpDUwrAZ3kQ8cPcMogVhMOw8a6a/AuEvQPROmX/ZiXz0C7H5TPfMr9d hBFHdVSWFgMQuwL9RyC2R3WfzVEpHsqLcEP6jpSyXJpVl3c8hbGo9Q7GrJK8xoJvX1q3 GE40JROVm/i6EbGxQ8bcDZSvGsSpaEUl+IZHOL9QNlCAQbfgbu9008T+sU0nSt5F7KY3 z45bir6Ge73mRLKqU3Y5la5KJxp5PjOFgEZpZpBUH0Ea/DG10HnHKo7GVA5o+E022O32 9KJUAAFnctO20fTe4XnI4fmoiRtqrb8ZTzgB1mjK5HLt8IRND+iGyugoeFgtP8HFUM66 lrZA== MIME-Version: 1.0 X-Received: by 10.112.67.35 with SMTP id k3mr11204947lbt.17.1399492614617; Wed, 07 May 2014 12:56:54 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.67.73 with HTTP; Wed, 7 May 2014 12:56:54 -0700 (PDT) In-Reply-To: <536A3E10.4030902@a1poweruser.com> References: <5369407E.9060008@a1poweruser.com> <53694241.6050207@my.hennepintech.edu> <536A3E10.4030902@a1poweruser.com> Date: Wed, 7 May 2014 12:56:54 -0700 X-Google-Sender-Auth: cpG4hGbB7nv2igMBOHGCHxS7bf4 Message-ID: Subject: Re: bootstrapping /usr/sbin/pkg inside a jail From: Craig Rodrigues To: Fbsd8 Content-Type: text/plain; charset=ISO-8859-1 Cc: pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2014 19:56:57 -0000 On Wed, May 7, 2014 at 7:07 AM, Fbsd8 wrote: > jexec dir23 tcsh > dir23 /root >/usr/sbin/pkg > The package management tool is not yet installed on your system. > Do you want to fetch and install it now? [y/N]: y > Bootstrapping pkg from > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-current/Latest/, > please wait... > pkg: Error fetching > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-current/Latest//Latest/pkg.txz: > File unavailable (e.g., file not found, no access) > A pre-built version of pkg could not be found for your system. > Consider changing PACKAGESITE or installing it from ports Hi, I encountered similar problems when moving the build system of FreeNAS to use poudriere for building ports. You might want to check out: https://github.com/freenas/freenas/blob/master/build/ports/install-ports.sh#L29 If you play with the PACKAGESITE environment variable, and create the following files inside your jail: /usr/local/etc/pkg/repos/FreeBSD.conf /usr/local/etc/pkg/repos/local.conf with entries like how I did in the install-ports.sh script, you can suppress that error message from /usr/sbin/pkg. -- Craig From owner-freebsd-pkg@FreeBSD.ORG Wed May 7 20:47:05 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3BEDB9C5; Wed, 7 May 2014 20:47:05 +0000 (UTC) Received: from relay.mailchannels.net (si-002-i156.relay.mailchannels.net [108.178.49.168]) by mx1.freebsd.org (Postfix) with ESMTP id 51C54C85; Wed, 7 May 2014 20:47:03 +0000 (UTC) X-Sender-Id: _forwarded-from|107.201.34.133 Received: from mail-24.name-services.com (unknown [10.237.3.9]) by relay.mailchannels.net (Postfix) with ESMTPA id 3466460973; Wed, 7 May 2014 20:46:56 +0000 (UTC) X-Sender-Id: _forwarded-from|107.201.34.133 Received: from mail-24.name-services.com (mail-24.name-services.com [10.235.16.137]) (using TLSv1 with cipher AES128-SHA) by 0.0.0.0:2500 (trex/5.1.2); Wed, 07 May 2014 20:46:56 GMT X-MC-Relay: Forwarding X-MailChannels-SenderId: _forwarded-from%7C107.201.34.133 X-MailChannels-Auth-Id: demandmedia Received: from [10.0.10.1] (107-201-34-133.lightspeed.bcvloh.sbcglobal.net [107.201.34.133]) by mail-24.name-services.com with SMTP; Wed, 7 May 2014 13:46:48 -0700 Message-ID: <536A9BB5.9080905@a1poweruser.com> Date: Wed, 07 May 2014 16:46:45 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Craig Rodrigues Subject: Re: bootstrapping /usr/sbin/pkg inside a jail References: <5369407E.9060008@a1poweruser.com> <53694241.6050207@my.hennepintech.edu> <536A3E10.4030902@a1poweruser.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2014 20:47:05 -0000 Craig Rodrigues wrote: > On Wed, May 7, 2014 at 7:07 AM, Fbsd8 wrote: >> jexec dir23 tcsh >> dir23 /root >/usr/sbin/pkg >> The package management tool is not yet installed on your system. >> Do you want to fetch and install it now? [y/N]: y >> Bootstrapping pkg from >> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-current/Latest/, >> please wait... >> pkg: Error fetching >> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-current/Latest//Latest/pkg.txz: >> File unavailable (e.g., file not found, no access) >> A pre-built version of pkg could not be found for your system. >> Consider changing PACKAGESITE or installing it from ports > > Hi, > > I encountered similar problems when moving the build system of FreeNAS to use > poudriere for building ports. > You might want to check out: > > https://github.com/freenas/freenas/blob/master/build/ports/install-ports.sh#L29 > > If you play with the PACKAGESITE environment variable, > and create the following files inside your jail: > /usr/local/etc/pkg/repos/FreeBSD.conf > /usr/local/etc/pkg/repos/local.conf > > with entries like how I did in the install-ports.sh script, you can > suppress that > error message from /usr/sbin/pkg. > > -- > Craig > Thank you Craig for your work around. But the fact is the bootstrap pkg program should work from within a jail. This looks like a bug that needs a PR. My work around was to move my host's ports tree to the jail, then "jexec dir23 tcsh" into the jail and do "a "make install clean" on pkg. This did install pkg in the jail. here is the log. From the host / >echo $PACKAGESITE PACKAGESITE: Undefined variable. From the jail, pkg not installed yet dir23 /root >echo $PACKAGESITE ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-current/Latest/ From with in the jail here is the ending of the pkg make install of the port. ====> Compressing man pages (compress-man) ===> Installing for pkg-1.2.7_2 ===> Checking if ports-mgmt/pkg already installed pkg-static: PACKAGESITE in pkg.conf is deprecated. Please create a repository configuration file ===> Registering installation for pkg-1.2.7_2 pkg-static: PACKAGESITE in pkg.conf is deprecated. Please create a repository configuration file Installing pkg-1.2.7_2... done If you are upgrading from the old package format, first run: # pkg2ng dir23 /etc >pkg install ytree pkg: PACKAGESITE in pkg.conf is deprecated. Please create a repository configura tion file Updating repository catalogue pkg: Warning: use of ftp:// URL scheme with SRV records is deprecated: switch to pkg+ftp:// pkg: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-current/Latest//diges ts.txz: File unavailable (e.g., file not found, no access) pkg: Unable to find catalogs Here I exited the jail, stopped it and restarted it and re-issued the same pkg command and this time it worked dir23 /etc >pkg install ytree pkg: PACKAGESITE in pkg.conf is deprecated. Please create a repository configuration file Updating repository catalogue digests.txz 100% 1074KB 357.9KB/s 493.6KB/s 00:03 packagesite.txz 100% 4936KB 448.7KB/s 646.0KB/s 00:11 Incremental update completed, 22978 packages processed: 0 packages updated, 0 removed and 22978 added. digests.txz 100% 1074KB 536.8KB/s 253.6KB/s 00:02 packagesite.txz 100% 4936KB 448.7KB/s 466.0KB/s 00:11 Incremental update completed, 22978 packages processed: 0 packages updated, 0 removed and 22978 added. The following 1 packages will be installed: Installing ytree: 1.97 [FreeBSD] The installation will require 223 KB more space 68 KB to be downloaded Proceed with installing packages [y/N]: y ytree-1.97.txz 100% 68KB 68.0KB/s 68.0KB/s 00:00 Checking integrity... done [1/1] Installing ytree-1.97... done In another jail that I had not compiled the pkg port in I tried a different method. After starting the jail, from the host I issued this pkg -j dir20 install pkg it processed like it was installing pkg in the jail, but after entering the jail and doing pkg install ytree I get this message pkg: PACKAGESITE in pkg.conf is deprecated. Please create a repository configuration file and it tries to download the package from a invalid ftp site url. From owner-freebsd-pkg@FreeBSD.ORG Wed May 7 21:07:10 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4F7C58B for ; Wed, 7 May 2014 21:07:10 +0000 (UTC) Received: from mail-lb0-x22f.google.com (mail-lb0-x22f.google.com [IPv6:2a00:1450:4010:c04::22f]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4EE2CE55 for ; Wed, 7 May 2014 21:07:10 +0000 (UTC) Received: by mail-lb0-f175.google.com with SMTP id l4so2220694lbv.6 for ; Wed, 07 May 2014 14:07:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=6nyM/BnxCvrQnaxTO3SeyuFklZxtwpWpRyCyXYXJSFY=; b=tk2O2u84Drk20W8LAvDAA7RqVuDfXA5bcZtSSS4tfw0a3g/KEDXBMUvcO6jsv78rEH omuWddTuj8ZZDeYA3XKRZ0pTwZZ2sMQTA9gmGvXU1z3md6G/haqLn5FwUsNrOT+v8oBH Zynah969FG2ZDz2lhwkdwWAAOpIWDbZXsVKBfSkWdiYgdHU5cSEyMDQnCylmPu/4YD+4 5I6Eml40bZNk3tfcw6XNFj7E5xAG45J4hmdIQNN1PFsT+5qDy62tB5hy71hyQP637iGi RYlE5f7L++OdjDKozuamjppVMsyhEUTPIXOZoAMz1N/YhS/FH3Dy3FV+feMNzk555I6b SdvA== MIME-Version: 1.0 X-Received: by 10.112.141.130 with SMTP id ro2mr6984809lbb.42.1399496827875; Wed, 07 May 2014 14:07:07 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.67.73 with HTTP; Wed, 7 May 2014 14:07:07 -0700 (PDT) In-Reply-To: <536A9BB5.9080905@a1poweruser.com> References: <5369407E.9060008@a1poweruser.com> <53694241.6050207@my.hennepintech.edu> <536A3E10.4030902@a1poweruser.com> <536A9BB5.9080905@a1poweruser.com> Date: Wed, 7 May 2014 14:07:07 -0700 X-Google-Sender-Auth: 9umQWHeluligLMc0ZbbYcCRsskk Message-ID: Subject: Re: bootstrapping /usr/sbin/pkg inside a jail From: Craig Rodrigues To: Fbsd8 Content-Type: text/plain; charset=ISO-8859-1 Cc: pkg X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2014 21:07:10 -0000 On Wed, May 7, 2014 at 1:46 PM, Fbsd8 wrote: > Craig Rodrigues wrote: > Thank you Craig for your work around. But the fact is the bootstrap pkg > program should work from within a jail. This looks like a bug that needs a > PR. /usr/sbin/pkg behaves differently on FreeBSD 9 vs. FreeBSD 10. You can see the source code in /usr/src/usr.bin/pkg/ to see how it works. Before you run /usr/sbin/pkg for the first time, you need to check if any of the following are true in your jail: (1) Is something setting PACKAGESITE in your environment? (2) Do you have any files: /usr/local/etc/pkg.conf /usr/local/etc/pkg/repos/* If any of those things are true, they will affect the behavior of /usr/sbin/pkg. You will need to delete those files and unset the variable, and then apply the workaround at: https://github.com/freenas/freenas/blob/master/build/ports/install-ports.sh#L29 You can try filing a bug against pkg, but the pkg developers might tell you that this is a bootstrapping problem which is fixed in newer versions of FreeBSD. -- Craig From owner-freebsd-pkg@FreeBSD.ORG Wed May 7 22:42:02 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ACF603E3; Wed, 7 May 2014 22:42:02 +0000 (UTC) Received: from relay.mailchannels.net (ar-005-i201.relay.mailchannels.net [162.253.144.83]) by mx1.freebsd.org (Postfix) with ESMTP id 9C9539A1; Wed, 7 May 2014 22:42:01 +0000 (UTC) X-Sender-Id: _forwarded-from|107.201.34.133 Received: from mail-24.name-services.com (ip-10-237-3-9.us-west-2.compute.internal [10.237.3.9]) by relay.mailchannels.net (Postfix) with ESMTPA id 6E5FD60CA2; Wed, 7 May 2014 22:41:59 +0000 (UTC) X-Sender-Id: _forwarded-from|107.201.34.133 Received: from mail-24.name-services.com (mail-24.name-services.com [10.235.16.137]) (using TLSv1 with cipher AES128-SHA) by 0.0.0.0:2500 (trex/5.1.2); Wed, 07 May 2014 22:41:59 GMT X-MC-Relay: Forwarding X-MailChannels-SenderId: _forwarded-from%7C107.201.34.133 X-MailChannels-Auth-Id: demandmedia Received: from [10.0.10.1] (107-201-34-133.lightspeed.bcvloh.sbcglobal.net [107.201.34.133]) by mail-24.name-services.com with SMTP; Wed, 7 May 2014 15:41:52 -0700 Message-ID: <536AB6AE.4000009@a1poweruser.com> Date: Wed, 07 May 2014 18:41:50 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Craig Rodrigues Subject: Re: bootstrapping /usr/sbin/pkg inside a jail References: <5369407E.9060008@a1poweruser.com> <53694241.6050207@my.hennepintech.edu> <536A3E10.4030902@a1poweruser.com> <536A9BB5.9080905@a1poweruser.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: pkg , questions X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2014 22:42:02 -0000 Craig Rodrigues wrote: > On Wed, May 7, 2014 at 1:46 PM, Fbsd8 wrote: >> Craig Rodrigues wrote: > >> Thank you Craig for your work around. But the fact is the bootstrap pkg >> program should work from within a jail. This looks like a bug that needs a >> PR. > > /usr/sbin/pkg behaves differently on FreeBSD 9 > vs. FreeBSD 10. You can see the source code in /usr/src/usr.bin/pkg/ > to see how it works. > > Before you run /usr/sbin/pkg for the first time, you need to check if > any of the following are true in your jail: > > (1) Is something setting PACKAGESITE in your environment? > (2) Do you have any files: > /usr/local/etc/pkg.conf > /usr/local/etc/pkg/repos/* > > If any of those things are true, they will affect the behavior of /usr/sbin/pkg. > You will need to delete those files and unset the variable, and then > apply the workaround > at: https://github.com/freenas/freenas/blob/master/build/ports/install-ports.sh#L29 > > You can try filing a bug against pkg, but the pkg developers might > tell you that this > is a bootstrapping problem which is fixed in newer versions of FreeBSD. > > -- > Craig > Figured out the problem. To create my jail filesystem I download and uncompress the base.txz file just like bsdinstall does. This base filesystem has a environment variable PACKAGESITE populated with the content needed by the old pkg_add -r command which is no longer part of the 10.0 base. bsdinstall must do an unsetenv PACKAGESITE on that environment variable during the install process to prepare the system for pkgng. The solution for me is after creating my jail filesystem from the base.txz file, I start the jail and then jexec jailname tcsh to open a console to the jail. From inside of the jail I issue "unsetenv PACKAGESITE" to disable that environment variable. Then issue pkg and the pkg bootstrap works as expected. Now global system environment variables must be saved in some file that gets read during the system boot process. Does anyone know where that file is located and what its called? From owner-freebsd-pkg@FreeBSD.ORG Wed May 7 23:35:20 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16A91CF4; Wed, 7 May 2014 23:35:20 +0000 (UTC) Received: from mail-lb0-x231.google.com (mail-lb0-x231.google.com [IPv6:2a00:1450:4010:c04::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6713BD3B; Wed, 7 May 2014 23:35:19 +0000 (UTC) Received: by mail-lb0-f177.google.com with SMTP id s7so2402980lbd.36 for ; Wed, 07 May 2014 16:35:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=OxAvf9fsHMfEYRosw1FE7BGTrrQDEn6Lx49Pt4J4Lwg=; b=OJ1x3yZ2Q036nPteEOW3AbVdiPiHnLclEyIFdpWi/1Yaa7T4mHftvLyDplTLEFPk8l QB+5XkosOckD4a4Yo5XLRxp4qrENs8tCYmCb3qBbAJgJ48YUqqu6deBpxd1LdQ15hWjS hPg8OXS4LMkO2DXJssI1Sgb3F5Xn5sVScfiQdCigZl+8yVGWkBsnlilWe4tTd7ZHJhcv UT0JT4K3RPfzv1qxjGCwdiRCOTTW7kvmgX7Q0AB/pcCKLfe+8SUHa1nBqKwLFAI8eo8P WR/WMefrTPM+dPPRmN6z0YztB0MYVao02wyqvYWSRIierbRLpuh7O40TaZGtVH2+4PJH 7a9g== MIME-Version: 1.0 X-Received: by 10.112.135.198 with SMTP id pu6mr110701lbb.58.1399505716140; Wed, 07 May 2014 16:35:16 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.67.73 with HTTP; Wed, 7 May 2014 16:35:16 -0700 (PDT) In-Reply-To: <536AB6AE.4000009@a1poweruser.com> References: <5369407E.9060008@a1poweruser.com> <53694241.6050207@my.hennepintech.edu> <536A3E10.4030902@a1poweruser.com> <536A9BB5.9080905@a1poweruser.com> <536AB6AE.4000009@a1poweruser.com> Date: Wed, 7 May 2014 16:35:16 -0700 X-Google-Sender-Auth: 6pRLqqvOwRzQGYcEj083ecoPkH8 Message-ID: Subject: Re: bootstrapping /usr/sbin/pkg inside a jail From: Craig Rodrigues To: Fbsd8 Content-Type: text/plain; charset=ISO-8859-1 Cc: pkg , questions X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2014 23:35:20 -0000 On Wed, May 7, 2014 at 3:41 PM, Fbsd8 wrote: > Craig Rodrigues wrote: > Figured out the problem. > To create my jail filesystem I download and uncompress the base.txz file > just like bsdinstall does. This base filesystem has a environment variable > PACKAGESITE populated with the content needed by the old pkg_add -r command > which is no longer part of the 10.0 base. bsdinstall must do an unsetenv > PACKAGESITE on that environment variable during the install process to > prepare the system for pkgng. > > The solution for me is after creating my jail filesystem from the base.txz > file, I start the jail and then jexec jailname tcsh to open a console to the > jail. From inside of the jail I issue "unsetenv PACKAGESITE" to disable that > environment variable. Then issue pkg and the pkg bootstrap works as > expected. > > Now global system environment variables must be saved in some file that gets > read during the system boot process. Does anyone know where that file is > located and what its called? Hi, Very good analysis. Thanks for doing it. Inside your jail, can you do the following as root: find /etc /var | xargs grep -l PACKAGESITE -- Craig From owner-freebsd-pkg@FreeBSD.ORG Thu May 8 06:07:24 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CDFE87B1 for ; Thu, 8 May 2014 06:07:24 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 600CFF7A for ; Thu, 8 May 2014 06:07:24 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.2.117.99]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s4867CWE048574 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Thu, 8 May 2014 07:07:13 +0100 (BST) (envelope-from matthew@FreeBSD.org) Authentication-Results: lucid-nonsense.infracaninophile.co.uk; dmarc=none header.from=FreeBSD.org DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s4867CWE048574 Authentication-Results: smtp.infracaninophile.co.uk/s4867CWE048574; dkim=none reason="no signature"; dkim-adsp=none Message-ID: <536B1F07.8010508@FreeBSD.org> Date: Thu, 08 May 2014 07:07:03 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: bootstrapping /usr/sbin/pkg inside a jail References: <5369407E.9060008@a1poweruser.com> <53694241.6050207@my.hennepintech.edu> <536A3E10.4030902@a1poweruser.com> <536A9BB5.9080905@a1poweruser.com> <536AB6AE.4000009@a1poweruser.com> In-Reply-To: <536AB6AE.4000009@a1poweruser.com> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="a8pGRlroPUuQPvv8lFwv5V0lCLFrOca7G" X-Virus-Scanned: clamav-milter 0.98.1 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 May 2014 06:07:25 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --a8pGRlroPUuQPvv8lFwv5V0lCLFrOca7G Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 07/05/2014 23:41, Fbsd8 wrote: > Now global system environment variables must be saved in some file that= > gets read during the system boot process. Does anyone know where that > file is located and what its called? /etc/login.conf Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --a8pGRlroPUuQPvv8lFwv5V0lCLFrOca7G Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTax8PXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATErsP/36OM0zhbPDuHZPc9Iw+fRs+ 5BR0rC5D1wW93r0qGF5vNqkdHKW6CaeuP+39GoRd85y7oOHVotIE7+rpqadjcXnZ e8ACfpYwgZcqX/mJ9/BSJv7svyXzZCoYL1YerlGyS8E6N2GdP2u0z1qgEIBPZ0ou WbvVa1nrPXWHEkg2k/1h2Rgj1yJ4hyRxREjGMqPrG+pDaV5llxdnwL9t9/JwSm/8 Nhhj/JbV3IdCLMh8WIxVVgwA8vfsmEBtwXBsgcizd87K0rseGh6Qpr4PEcrgtWJ7 L0zTvzivop35UOf/QTSJB4/QITnIEc0ZP1BqR4XJUjnK/muE24dLFQMlNUVP1isg r72arNAK12bxYGsgalwX0aOH2IjpZQV/CtS1oK8dbKFDEsjo1wLbtnMnlywxAt25 VBuA61JHtBEdaIudhEltD+G2RxoqAnv2mqwh8+ePQrw5ne5komUXjXiX7pTYbm0R teEUppmU+1Rl5oDlrEThruUjbGP1geGqkN0LO4aKMY34w+k9vtk65fLEb+QeuI8x q2HQ9ZF5+KLYidgQB2L5SujlGdyIyfUBQ+z16Kx2v2BdVKuZ4JuMcyZ5G9Iwyec0 GPiDsMaHD6giw3qHtgAgnNDp9m5QVFV7dV5hn7SRnfJzNoFsjufP4b1QnQMCHn/O 2QQWeUwfSvXgtfn6CYIW =54Te -----END PGP SIGNATURE----- --a8pGRlroPUuQPvv8lFwv5V0lCLFrOca7G-- From owner-freebsd-pkg@FreeBSD.ORG Fri May 9 09:59:46 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DE90C248 for ; Fri, 9 May 2014 09:59:46 +0000 (UTC) Received: from mx2.paymentallianceintl.com (mx2.paymentallianceintl.com [216.26.158.171]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx2.paymentallianceintl.com", Issuer "Go Daddy Secure Certification Authority" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8B0F897 for ; Fri, 9 May 2014 09:59:46 +0000 (UTC) Received: from firewall.mikej.com (162-238-140-44.lightspeed.lsvlky.sbcglobal.net [162.238.140.44]) by mx2.paymentallianceintl.com (8.14.5/8.13.8) with ESMTP id s499xcIF090293 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Fri, 9 May 2014 05:59:39 -0400 (EDT) (envelope-from mikej@mikej.com) Received: from firewall.mikej.com (localhost.mikej.com [127.0.0.1]) by firewall.mikej.com (8.14.8/8.14.8) with ESMTP id s499wv3K065870 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Fri, 9 May 2014 05:59:38 -0400 (EDT) (envelope-from mikej@mikej.com) Received: (from www@localhost) by firewall.mikej.com (8.14.8/8.14.8/Submit) id s499wu9d065869; Fri, 9 May 2014 05:58:56 -0400 (EDT) (envelope-from mikej@mikej.com) X-Authentication-Warning: firewall.mikej.com: www set sender to mikej@mikej.com using -f To: Subject: digests.txz and packagesite.txz not being built MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 09 May 2014 05:58:26 -0400 From: mikej Message-ID: X-Sender: mikej@mikej.com User-Agent: Roundcube Webmail/0.6-beta X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 May 2014 09:59:46 -0000 root@bsd11:/usr/home/mikej # poudriere version 3.0.15 Copyright (c) 1992-2014 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 11.0-CURRENT #1 r264318M: Thu Apr 10 12:32:03 EDT 2014 mikej@bsd11:/usr/obj/usr/src/sys/GENERIC amd64 FreeBSD clang version 3.4 (tags/RELEASE_34/final 197956) 20140216 WARNING: WITNESS option enabled, expect reduced performance. CPU: Intel(R) Xeon(R) CPU E7- 4850 @ 2.00GHz (1995.00-MHz K8-class CPU) Origin="GenuineIntel" Id=0x10676 Family=0x6 Model=0x17 Stepping=6 Features=0xfa3fbff Features2=0x80282201 AMD Features=0x20100800 AMD Features2=0x1 TSC: P-state invariant real memory = 68719476736 (65536 MB) avail memory = 66707644416 (63617 MB) Event timer "LAPIC" quality 600 ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 8 CPUs FreeBSD/SMP: 8 package(s) x 1 core(s) poudriere.conf ZPOOL=tank FREEBSD_HOST=ftp://ftp.freebsd.org RESOLV_CONF=/etc/resolv.conf BASEFS=/usr/local/poudriere USE_PORTLINT=no USE_TMPFS=all DISTFILES_CACHE=/usr/ports/distfiles CHECK_CHANGED_OPTIONS=no CCACHE_DIR=/var/cache/ccache I build head, 10stable, 9stable (amd64) and 9stable i386 nightly. For a reason I can not figure out why digests.txz and packagesite.txz do not get build for i386 only. I've googled but have not found the answer. Anyone? Regards, --mikej From owner-freebsd-pkg@FreeBSD.ORG Fri May 9 20:50:34 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7EC1A75A for ; Fri, 9 May 2014 20:50:34 +0000 (UTC) Received: from mx2.paymentallianceintl.com (mx2.paymentallianceintl.com [216.26.158.171]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx2.paymentallianceintl.com", Issuer "Go Daddy Secure Certification Authority" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C23C11ED for ; Fri, 9 May 2014 20:50:33 +0000 (UTC) Received: from firewall.mikej.com (162-238-140-44.lightspeed.lsvlky.sbcglobal.net [162.238.140.44]) by mx2.paymentallianceintl.com (8.14.5/8.13.8) with ESMTP id s49KoTtT055438 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Fri, 9 May 2014 16:50:31 -0400 (EDT) (envelope-from mikej@mikej.com) Received: from firewall.mikej.com (localhost.mikej.com [127.0.0.1]) by firewall.mikej.com (8.14.8/8.14.8) with ESMTP id s49KnmkY026286 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Fri, 9 May 2014 16:50:29 -0400 (EDT) (envelope-from mikej@mikej.com) Received: (from www@localhost) by firewall.mikej.com (8.14.8/8.14.8/Submit) id s49KniNP026282; Fri, 9 May 2014 16:49:44 -0400 (EDT) (envelope-from mikej@mikej.com) X-Authentication-Warning: firewall.mikej.com: www set sender to mikej@mikej.com using -f To: Subject: Re: digests.txz and packagesite.txz not being built MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 09 May 2014 16:49:14 -0400 From: mikej In-Reply-To: References: Message-ID: <0fdc815d7291583b0c12f95135de9fc4@mail.mikej.com> X-Sender: mikej@mikej.com User-Agent: Roundcube Webmail/0.6-beta X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 May 2014 20:50:34 -0000 On 2014-05-09 5:58, mikej wrote: > root@bsd11:/usr/home/mikej # poudriere version > 3.0.15 > > Copyright (c) 1992-2014 The FreeBSD Project. > Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, > 1994 > The Regents of the University of California. All rights > reserved. > FreeBSD is a registered trademark of The FreeBSD Foundation. > FreeBSD 11.0-CURRENT #1 r264318M: Thu Apr 10 12:32:03 EDT 2014 > mikej@bsd11:/usr/obj/usr/src/sys/GENERIC amd64 > FreeBSD clang version 3.4 (tags/RELEASE_34/final 197956) 20140216 > WARNING: WITNESS option enabled, expect reduced performance. > CPU: Intel(R) Xeon(R) CPU E7- 4850 @ 2.00GHz (1995.00-MHz K8-class > CPU) > Origin="GenuineIntel" Id=0x10676 Family=0x6 Model=0x17 > Stepping=6 > > > Features=0xfa3fbff > Features2=0x80282201 > AMD Features=0x20100800 > AMD Features2=0x1 > TSC: P-state invariant > real memory = 68719476736 (65536 MB) > avail memory = 66707644416 (63617 MB) > Event timer "LAPIC" quality 600 > ACPI APIC Table: > FreeBSD/SMP: Multiprocessor System Detected: 8 CPUs > FreeBSD/SMP: 8 package(s) x 1 core(s) > > > poudriere.conf > > ZPOOL=tank > FREEBSD_HOST=ftp://ftp.freebsd.org > RESOLV_CONF=/etc/resolv.conf > BASEFS=/usr/local/poudriere > USE_PORTLINT=no > USE_TMPFS=all > DISTFILES_CACHE=/usr/ports/distfiles > CHECK_CHANGED_OPTIONS=no > CCACHE_DIR=/var/cache/ccache > > > > > > I build head, 10stable, 9stable (amd64) and 9stable i386 nightly. > For a reason I > can not figure out why digests.txz and packagesite.txz do not get > build for > i386 only. I've googled but have not found the answer. > > Anyone? > > Regards, > > --mikej This seems to have fallen on deaf ears - I'm not scared to hear RTFM if someone could simply tell me which one that is or if I should I be posting to a different list? Many thanks. Regards, --mikej From owner-freebsd-pkg@FreeBSD.ORG Fri May 9 21:12:21 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8CD26262 for ; Fri, 9 May 2014 21:12:21 +0000 (UTC) Received: from mail-we0-x229.google.com (mail-we0-x229.google.com [IPv6:2a00:1450:400c:c03::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1E8A66B9 for ; Fri, 9 May 2014 21:12:20 +0000 (UTC) Received: by mail-we0-f169.google.com with SMTP id u56so4548525wes.28 for ; Fri, 09 May 2014 14:12:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=pnEDhM3aIAOEUa7TkUaMJSRuUO3IIygCMlYnzlBqEOY=; b=ZbJrXOZKazxgVRdFIytKzVxEtChJ2ud4PWGr5Guf8Tp6WgqPchLiyeXwcg3GM9l0HA AT+onDYotizWXfnQsiys5E6nAIXp3pr/7VZy6DtFI/Glps+ytN8T7BtDUkkaGv8P3gqV OyG16nLFB1KsTEJl2I5PaJEj+Ji5D6AkDHYIVy1owMKTtfXnx57Yf6VzRU95xwTb9Uel m8H9+sJ8+UcoW3d1H9ahM9Ndf3dJ9pQGFVx318gFP7cFc9fKOj2xXtzuPHftNUNmW/uW 8YILAMvE2ILy9Fd+B988LQWsqDsRkvz+L4Fv7QsGH0NZW/bE/B8XgkpLd1FAmQqJ607h vW+w== X-Received: by 10.195.18.8 with SMTP id gi8mr119842wjd.75.1399669939313; Fri, 09 May 2014 14:12:19 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by mx.google.com with ESMTPSA id fu10sm1071314wib.11.2014.05.09.14.12.17 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 09 May 2014 14:12:18 -0700 (PDT) Sender: Baptiste Daroussin Date: Fri, 9 May 2014 23:12:16 +0200 From: Baptiste Daroussin To: mikej Subject: Re: digests.txz and packagesite.txz not being built Message-ID: <20140509211215.GB33897@ivaldir.etoilebsd.net> References: <0fdc815d7291583b0c12f95135de9fc4@mail.mikej.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2B/JsCI69OhZNC5r" Content-Disposition: inline In-Reply-To: <0fdc815d7291583b0c12f95135de9fc4@mail.mikej.com> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 May 2014 21:12:21 -0000 --2B/JsCI69OhZNC5r Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, May 09, 2014 at 04:49:14PM -0400, mikej wrote: > On 2014-05-09 5:58, mikej wrote: > > root@bsd11:/usr/home/mikej # poudriere version > > 3.0.15 > > > > Copyright (c) 1992-2014 The FreeBSD Project. > > Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993,=20 > > 1994 > > The Regents of the University of California. All rights=20 > > reserved. > > FreeBSD is a registered trademark of The FreeBSD Foundation. > > FreeBSD 11.0-CURRENT #1 r264318M: Thu Apr 10 12:32:03 EDT 2014 > > mikej@bsd11:/usr/obj/usr/src/sys/GENERIC amd64 > > FreeBSD clang version 3.4 (tags/RELEASE_34/final 197956) 20140216 > > WARNING: WITNESS option enabled, expect reduced performance. > > CPU: Intel(R) Xeon(R) CPU E7- 4850 @ 2.00GHz (1995.00-MHz K8-class=20 > > CPU) > > Origin=3D"GenuineIntel" Id=3D0x10676 Family=3D0x6 Model=3D0x17 =20 > > Stepping=3D6 > > > >=20 > > Features=3D0xfa3fbff > > Features2=3D0x80282201 > > AMD Features=3D0x20100800 > > AMD Features2=3D0x1 > > TSC: P-state invariant > > real memory =3D 68719476736 (65536 MB) > > avail memory =3D 66707644416 (63617 MB) > > Event timer "LAPIC" quality 600 > > ACPI APIC Table: > > FreeBSD/SMP: Multiprocessor System Detected: 8 CPUs > > FreeBSD/SMP: 8 package(s) x 1 core(s) > > > > > > poudriere.conf > > > > ZPOOL=3Dtank > > FREEBSD_HOST=3Dftp://ftp.freebsd.org > > RESOLV_CONF=3D/etc/resolv.conf > > BASEFS=3D/usr/local/poudriere > > USE_PORTLINT=3Dno > > USE_TMPFS=3Dall > > DISTFILES_CACHE=3D/usr/ports/distfiles > > CHECK_CHANGED_OPTIONS=3Dno > > CCACHE_DIR=3D/var/cache/ccache > > > > > > > > > > > > I build head, 10stable, 9stable (amd64) and 9stable i386 nightly. > > For a reason I > > can not figure out why digests.txz and packagesite.txz do not get=20 > > build for > > i386 only. I've googled but have not found the answer. > > > > Anyone? > > > > Regards, > > > > --mikej >=20 >=20 > This seems to have fallen on deaf ears - I'm not scared to hear RTFM if= =20 > someone > could simply tell me which one that is or if I should I be posting to a= =20 > different list? >=20 > Many thanks. >=20 > Regards, >=20 No you are not :) Just we are all very busy so it may take time for us to reply. You might have forgotten WITH_PKGNG=3Dyes in the poudriere.d/make.conf for = 9stable i386 I guess? If not can you provide the log of any of the package your are building (at = the top of the logs it provides enough informations for us to be able to see yo= ur setting. (an i386 log that is :)) regards, Bapt --2B/JsCI69OhZNC5r Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iEYEARECAAYFAlNtRK8ACgkQ8kTtMUmk6Ezi5QCgtYp5DGkHt3dRNAb7zogHe4Sy 8awAoKZiXegmcvUgnrt0svZSlcXhm0m7 =72Jn -----END PGP SIGNATURE----- --2B/JsCI69OhZNC5r-- From owner-freebsd-pkg@FreeBSD.ORG Fri May 9 23:56:07 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 65D5ED1C; Fri, 9 May 2014 23:56:07 +0000 (UTC) Received: from mx2.paymentallianceintl.com (mx2.paymentallianceintl.com [216.26.158.171]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx2.paymentallianceintl.com", Issuer "Go Daddy Secure Certification Authority" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 398D43CC; Fri, 9 May 2014 23:56:06 +0000 (UTC) Received: from firewall.mikej.com (162-238-140-44.lightspeed.lsvlky.sbcglobal.net [162.238.140.44]) by mx2.paymentallianceintl.com (8.14.5/8.13.8) with ESMTP id s49Nu4Fk067320 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Fri, 9 May 2014 19:56:05 -0400 (EDT) (envelope-from mikej@mikej.com) Received: from firewall.mikej.com (localhost.mikej.com [127.0.0.1]) by firewall.mikej.com (8.14.8/8.14.8) with ESMTP id s49NtNd6039758 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 9 May 2014 19:56:03 -0400 (EDT) (envelope-from mikej@mikej.com) Received: (from www@localhost) by firewall.mikej.com (8.14.8/8.14.8/Submit) id s49NtMZW039754; Fri, 9 May 2014 19:55:22 -0400 (EDT) (envelope-from mikej@mikej.com) X-Authentication-Warning: firewall.mikej.com: www set sender to mikej@mikej.com using -f To: Baptiste Daroussin Subject: Re: digests.txz and packagesite.txz not being built MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 09 May 2014 19:54:52 -0400 From: mikej In-Reply-To: <20140509211215.GB33897@ivaldir.etoilebsd.net> References: <0fdc815d7291583b0c12f95135de9fc4@mail.mikej.com> <20140509211215.GB33897@ivaldir.etoilebsd.net> Message-ID: X-Sender: mikej@mikej.com User-Agent: Roundcube Webmail/0.6-beta Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 May 2014 23:56:07 -0000 On 2014-05-09 17:12, Baptiste Daroussin wrote: > On Fri, May 09, 2014 at 04:49:14PM -0400, mikej wrote: >> On 2014-05-09 5:58, mikej wrote: >> > root@bsd11:/usr/home/mikej # poudriere version >> > 3.0.15 >> > >> > Copyright (c) 1992-2014 The FreeBSD Project. >> > Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, >> 1993, >> > 1994 >> > The Regents of the University of California. All rights >> > reserved. >> > FreeBSD is a registered trademark of The FreeBSD Foundation. >> > FreeBSD 11.0-CURRENT #1 r264318M: Thu Apr 10 12:32:03 EDT 2014 >> > mikej@bsd11:/usr/obj/usr/src/sys/GENERIC amd64 >> > FreeBSD clang version 3.4 (tags/RELEASE_34/final 197956) 20140216 >> > WARNING: WITNESS option enabled, expect reduced performance. >> > CPU: Intel(R) Xeon(R) CPU E7- 4850 @ 2.00GHz (1995.00-MHz >> K8-class >> > CPU) >> > Origin="GenuineIntel" Id=0x10676 Family=0x6 Model=0x17 >> > Stepping=6 >> > >> > >> > >> Features=0xfa3fbff >> > Features2=0x80282201 >> > AMD Features=0x20100800 >> > AMD Features2=0x1 >> > TSC: P-state invariant >> > real memory = 68719476736 (65536 MB) >> > avail memory = 66707644416 (63617 MB) >> > Event timer "LAPIC" quality 600 >> > ACPI APIC Table: >> > FreeBSD/SMP: Multiprocessor System Detected: 8 CPUs >> > FreeBSD/SMP: 8 package(s) x 1 core(s) >> > >> > >> > poudriere.conf >> > >> > ZPOOL=tank >> > FREEBSD_HOST=ftp://ftp.freebsd.org >> > RESOLV_CONF=/etc/resolv.conf >> > BASEFS=/usr/local/poudriere >> > USE_PORTLINT=no >> > USE_TMPFS=all >> > DISTFILES_CACHE=/usr/ports/distfiles >> > CHECK_CHANGED_OPTIONS=no >> > CCACHE_DIR=/var/cache/ccache >> > >> > >> > >> > >> > >> > I build head, 10stable, 9stable (amd64) and 9stable i386 nightly. >> > For a reason I >> > can not figure out why digests.txz and packagesite.txz do not get >> > build for >> > i386 only. I've googled but have not found the answer. >> > >> > Anyone? >> > >> > Regards, >> > >> > --mikej >> >> >> This seems to have fallen on deaf ears - I'm not scared to hear RTFM >> if >> someone >> could simply tell me which one that is or if I should I be posting >> to a >> different list? >> >> Many thanks. >> >> Regards, >> > No you are not :) > > Just we are all very busy so it may take time for us to reply. > > You might have forgotten WITH_PKGNG=yes in the poudriere.d/make.conf > for 9stable > i386 I guess? > > If not can you provide the log of any of the package your are > building (at the > top of the logs it provides enough informations for us to be able to > see your > setting. (an i386 log that is :)) > > regards, > Bapt Baptiste: Thanks for you reply, you were right on my not defining/creating the make file /usr/local/etc/poudriere.d/-make.conf and defining "WITH_PKGNG=yes" As documented in http://blog.etoilebsd.net/post/Home_made_pkgng_repo Sorry for the noise but thank you for the help. As a user from 2.x there have been many great technical contributions to *BSD but pkg in my opinion alone will help move *BSD to the next level of user adoption Kind regards, --mikej From owner-freebsd-pkg@FreeBSD.ORG Tue May 13 03:21:21 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 642986DE for ; Tue, 13 May 2014 03:21:21 +0000 (UTC) Received: from muon.cran.org.uk (muon.cran.org.uk [IPv6:2a01:348:0:15:5d59:5c40:0:1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2565A239A for ; Tue, 13 May 2014 03:21:21 +0000 (UTC) Received: from muon.cran.org.uk (localhost [127.0.0.1]) by muon.cran.org.uk (Postfix) with ESMTP id EFD54E74DC for ; Tue, 13 May 2014 04:21:10 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=cran.org.uk; h=message-id :date:from:mime-version:to:subject:content-type :content-transfer-encoding; s=mail; bh=VzEI9d1HlTbmACjyndc4f1VwV q0=; b=Xggvo/DrxKUkiFVXFW4WqESY5JuCLEPFgli+9uYRXFP82ccVbFtRppftP g/dfN/pj0gxOixbjwkApv/v6H7kVhAPoqyYYQSGDHvlwsOVWuf3qX3CD/vbo89DB SEZPaFcJH1pPgEuC47vHa8f1Ilp+9lYIkwdCVezb6Krp+jDB/Q= DomainKey-Signature: a=rsa-sha1; c=nofws; d=cran.org.uk; h=message-id :date:from:mime-version:to:subject:content-type :content-transfer-encoding; q=dns; s=mail; b=a3NKuJiqaXbthJb2FS9 jlSYWtnvKUuddxvp/wW4G8sY6/EZt+TpCT5MptvEhtkDxyP/6fzQU82YCMy0rb42 8u5xtWdNXK5wO3S69fD4qaK8GDFS1+I6Q2jMkER9M3pJYC/D46isW/bDKBoXrceu ojkGmo/g7AKeXFpirVbhLQ7k= Received: from [10.0.10.15] (c-67-182-239-81.hsd1.ut.comcast.net [67.182.239.81]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by muon.cran.org.uk (Postfix) with ESMTPSA id 8A2C8E7496 for ; Tue, 13 May 2014 04:21:10 +0100 (BST) Message-ID: <53718FB3.5080808@cran.org.uk> Date: Mon, 12 May 2014 21:21:23 -0600 From: Bruce Cran User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Package building schedule and postfix-tls Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2014 03:21:21 -0000 I've just installed a new server with 10.0 and am setting it up (which is _so_ much easier with pkgng!) - but I realised the default version of postfix doesn't have TLS support, and I need postfix-tls instead (which is in ports, but not available as a package yet). I think I read that packages get built weekly, but is there anywhere I can go to check when the next set will be built, or are they always built on a certain day? If possible I'd like to know when I'll be able to install the new package. -- Bruce From owner-freebsd-pkg@FreeBSD.ORG Tue May 13 03:30:46 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D551797 for ; Tue, 13 May 2014 03:30:46 +0000 (UTC) Received: from muon.cran.org.uk (muon.cran.org.uk [93.89.92.64]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3D5DA245B for ; Tue, 13 May 2014 03:30:45 +0000 (UTC) Received: from muon.cran.org.uk (localhost [127.0.0.1]) by muon.cran.org.uk (Postfix) with ESMTP id D7A55E74DC for ; Tue, 13 May 2014 04:30:43 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=cran.org.uk; h=message-id :date:from:mime-version:to:subject:references:in-reply-to :content-type:content-transfer-encoding; s=mail; bh=pUGO0+tsdmC2 Eo0PuspPgcefdPs=; b=tfQC1XQN/lqzqQFxgyjZgfcuzLcBB7uDNJCgnCiitCmk c9eBnkxax4tRX6Mzy1wcvy6VPw6+pX5vyPoz1PrQtH3ID1lVRt9sSrXHmN1HicLu MO+9A0yAc4lFdUKuXBX87RyrJi4wy3tg8HDOnVilXS2GUqj7/s4JLjfxwb2fy3A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=cran.org.uk; h=message-id :date:from:mime-version:to:subject:references:in-reply-to :content-type:content-transfer-encoding; q=dns; s=mail; b=aKjTLC nC7AuvyTZlKNEDdLCgKTmBfZ9L1jROaTUR7bocd7mR+BKl0gXIu+PCKBiQM7VLH5 N9AmCmU7NrW8/JN4ozbJARs8Ep6iP/mFQF4m+C1kDrvfC0sz2rlk+CLwrOQg0OBV yLZaBYSL2t4r/WkYP0dR0eHG1TzqdC9YiGpA8= Received: from [10.0.10.15] (c-67-182-239-81.hsd1.ut.comcast.net [67.182.239.81]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by muon.cran.org.uk (Postfix) with ESMTPSA id 83160E7496 for ; Tue, 13 May 2014 04:30:43 +0100 (BST) Message-ID: <537191F0.70906@cran.org.uk> Date: Mon, 12 May 2014 21:30:56 -0600 From: Bruce Cran User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: Package building schedule and postfix-tls References: <53718FB3.5080808@cran.org.uk> In-Reply-To: <53718FB3.5080808@cran.org.uk> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2014 03:30:46 -0000 On 5/12/2014 9:21 PM, Bruce Cran wrote: > I've just installed a new server with 10.0 and am setting it up (which > is _so_ much easier with pkgng!) - but I realised the default version > of postfix doesn't have TLS support, and I need postfix-tls instead > (which is in ports, but not available as a package yet). I think I > read that packages get built weekly, but is there anywhere I can go to > check when the next set will be built, or are they always built on a > certain day? If possible I'd like to know when I'll be able to > install the new package. > Just found the answer in the original announcement (http://lists.freebsd.org/pipermail/freebsd-pkg/2013-October/000107.html): "Packages are built weekly from a snapshot of the Ports Collection every Wednesday morning 01:00 UTC. They typically will be available in the repository after a few days." -- Bruce From owner-freebsd-pkg@FreeBSD.ORG Tue May 13 07:55:58 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 482B81D5 for ; Tue, 13 May 2014 07:55:58 +0000 (UTC) Received: from mail-ig0-x22c.google.com (mail-ig0-x22c.google.com [IPv6:2607:f8b0:4001:c05::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 19F8B28BC for ; Tue, 13 May 2014 07:55:58 +0000 (UTC) Received: by mail-ig0-f172.google.com with SMTP id uy17so4877909igb.11 for ; Tue, 13 May 2014 00:55:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:from:date:message-id:subject:to:content-type; bh=VIIHq0F0FGY4e7FtzsgLBSAC7vrkSNtLiPORftBK/QY=; b=TWzqVS9ymWlZly2dADJsypIkRsf6j3keJ1ZNFMWRD4Nfx5i0mTGfE2vNKVGh+eUKOW aL/bJpC6W/QNu68SyPANc/RMow/7Jhtj4hakghfqR02l8HtrHm2HE5aw5YK9BYX0nFgr U6/ym/N2Gx3XKvkZ9t0X5Gym7zgGUaWGa4Z/02M12/IOXJr61TgiJDphRpk7dpJsMeOO LoWjsik8vu1TtX0F/6bXNHXCpRFHAMCRsqtDbUyfhW59pypLiX0Hr5n3fVJp6PvqqZ+e tfYUond4QkE0swHxoFRV3CgQCpqN4WBF5uiQ/1ua/WYBmWSmRklwka0SeJoGEAXA3QFD 16ag== X-Received: by 10.50.128.83 with SMTP id nm19mr52468044igb.28.1399967757312; Tue, 13 May 2014 00:55:57 -0700 (PDT) MIME-Version: 1.0 Received: by 10.42.250.147 with HTTP; Tue, 13 May 2014 00:55:17 -0700 (PDT) Reply-To: hamza.abdelkebir@gmail.com From: Hamza Abdelkebir Date: Tue, 13 May 2014 09:55:17 +0200 Message-ID: Subject: Mysql server dependency To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2014 07:55:58 -0000 Hi all, I'm having trouble with the packaging of a port which should depend on mysql56-server (requirement). I use this in my Makefile : .... BUILD_DEPENDS+= ${LOCALBASE}/apache-tomcat-7.0:${PORTSDIR}/www/tomcat7 BUILD_DEPENDS+= ${LOCALBASE}/apache-tomcat-7.0/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7 BUILD_DEPENDS+= ${LOCALBASE}/bin/mysql:${PORTSDIR}/databases/mysql56-server BUILD_DEPENDS+= ${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql56-server RUN_DEPENDS+= ${LOCALBASE}/bin/mysql:${PORTSDIR}/databases/mysql56-server RUN_DEPENDS+= ${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql56-server RUN_DEPENDS+= ${JAVAJARDIR}/servlet-api.jar:${PORTSDIR}/www/servlet-api RUN_DEPENDS+= ${LOCALBASE}/apache-tomcat-7.0/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7 USE_MYSQL= server WITH_MYSQL_VER= 56 .... Then, I create the package using *make package*. Thank you for your help. Hamza From owner-freebsd-pkg@FreeBSD.ORG Tue May 13 09:53:46 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 863C59A for ; Tue, 13 May 2014 09:53:46 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 12D0F23A5 for ; Tue, 13 May 2014 09:53:45 +0000 (UTC) Received: from seedling.local (31-221-87-81.cust-31.exponential-e.net [31.221.87.81] (may be forged)) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s4D9ra7j074873 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Tue, 13 May 2014 10:53:38 +0100 (BST) (envelope-from matthew@FreeBSD.org) Authentication-Results: lucid-nonsense.infracaninophile.co.uk; dmarc=none header.from=FreeBSD.org DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s4D9ra7j074873 Authentication-Results: smtp.infracaninophile.co.uk/s4D9ra7j074873; dkim=none reason="no signature"; dkim-adsp=none X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host 31-221-87-81.cust-31.exponential-e.net [31.221.87.81] (may be forged) claimed to be seedling.local Message-ID: <5371EB62.9090805@FreeBSD.org> Date: Tue, 13 May 2014 10:52:34 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: Mysql server dependency References: In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="Rbu2Fl9ppTOCJrBxuScsDmCG4SF3e5JjM" X-Virus-Scanned: clamav-milter 0.98.1 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-0.4 required=5.0 tests=BAYES_00,RDNS_NONE, SPF_SOFTFAIL autolearn=no autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2014 09:53:46 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --Rbu2Fl9ppTOCJrBxuScsDmCG4SF3e5JjM Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 13/05/2014 08:55, Hamza Abdelkebir wrote: > Hi all, >=20 > I'm having trouble with the packaging of a port which should depend on > mysql56-server (requirement). >=20 > I use this in my Makefile : >=20 > .... >=20 > BUILD_DEPENDS+=3D ${LOCALBASE}/apache-tomcat-7.0:${PORTSDIR}/www/tom= cat7 > BUILD_DEPENDS+=3D > ${LOCALBASE}/apache-tomcat-7.0/bin/bootstrap.jar:${PORTSDIR}/www/tomcat= 7 No point in having two build dependencies on the same port. Also, you need a file rather than a directory in dependency lines, so choose the 2nd line above. > BUILD_DEPENDS+=3D > ${LOCALBASE}/bin/mysql:${PORTSDIR}/databases/mysql56-server > BUILD_DEPENDS+=3D > ${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql56-server In this case, you've already covered this by 'USE_MYSQL' below. No need to add any more dependencies. > RUN_DEPENDS+=3D ${LOCALBASE}/bin/mysql:${PORTSDIR}/databases/mysql56= -server > RUN_DEPENDS+=3D > ${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql56-server Same: the RUN_DEPENDS on mysql56-server is supplied via 'USE_MYSQL' > RUN_DEPENDS+=3D ${JAVAJARDIR}/servlet-api.jar:${PORTSDIR}/www/servle= t-api > RUN_DEPENDS+=3D > ${LOCALBASE}/apache-tomcat-7.0/bin/bootstrap.jar:${PORTSDIR}/www/tomcat= 7 Everything else there looks OK. > USE_MYSQL=3D server > WITH_MYSQL_VER=3D 56 >=20 If this is your own port, then you should be using WANT_MYSQL_VER=3D 56 inside the port's Makefile. WITH_MYSQL_VER is what you used to put in /etc/make.conf to set a system wide preference, but that has largely beed superceeded by the new "DEFAULT_VERSIONS+=3D mysql=3D5.6" style nowa= days. >=20 > Then, I create the package using *make package*. Try fixing the duplicates in your RUN_ and BUILD_DEPENDS first, and use WANT_MYSQL_VER rather than WITH_MYSQL_VER. Then if you're still having problems please do ask again -- although this is really a question for freebsd-ports@... It will help if you explain exactly which port you're dealing with -- if it's a new port not yet in the tree then please show us the code by putting it up on a pasteboard site. Also show us the output when you try and build a package. > Thank you for your help. Service is our only joy, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --Rbu2Fl9ppTOCJrBxuScsDmCG4SF3e5JjM Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTcetqXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATXDwP/RPB4wuXmo8PV7JiwicPmrXo D+W/HiJ6zNC/hI1NAQFsZ/CnDFMStSOhjyK3QnsIwmYfAAHRRdYvP648aLGZ1ciV 5E9XPfCE9WZO/wPe9fu1yJA64Z+xTrDmLouXs9H+dVwwGrdYD7D4fTtRUneXju50 /GRbgXgT5B/px2eOkztSl0Lmj8lTwhX6eqvEEE1Z7rKlE5aLS39vkV+sLeki7szc j0MK+zVoTQLkAiUNvNl9sWQbNn1IhBjGgjDXlGtWG/BSpkKYUa5IUptz8Sz14876 GDgwUDS/5BsccdxT6gPt2wlyEaRCYO6gMCHZodpQGvjVigDepZJYXhYaDBRwAjt5 wArCJzMePeoMy9ZmkFaeu91sZLkWWXosfNmOCp7FLl2wgzcVOV4CAaz0Bf6eSd0g UP8fTHdbRDtXx92XTyD2IEDnzWgv3Lrv5sDBsbHWv0DE6+qLTX+5E5Am/uqqaALq cQtInEp1kjsN8hjWnZL/ZDdPUjH2Q49c6kCqGA3JqKE3tF3KqmV36CyKrS0Pl4BM OV7hivs+nDKMsvPBZYAoaOBevWNVh1py/usg9vdbtuMFRUvhfUQqSGmkCan2pyLa EqWma1eewKks+xlKY+hiAM/+XUYrc9DqfshonVrLeYiWYP4rpjZfXPhxPcQI3WE5 bwuQVCM4u8nfIOPOuUFO =zSSQ -----END PGP SIGNATURE----- --Rbu2Fl9ppTOCJrBxuScsDmCG4SF3e5JjM-- From owner-freebsd-pkg@FreeBSD.ORG Tue May 13 12:37:27 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 61448A1C; Tue, 13 May 2014 12:37:27 +0000 (UTC) Received: from mail-ie0-x22a.google.com (mail-ie0-x22a.google.com [IPv6:2607:f8b0:4001:c03::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2628821D7; Tue, 13 May 2014 12:37:27 +0000 (UTC) Received: by mail-ie0-f170.google.com with SMTP id ar20so228114iec.29 for ; Tue, 13 May 2014 05:37:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=rThmXYSlXya26lyDukSpkaUhtrcfRIJFCD7Wt9h8aiI=; b=foZy644I/n/ia5Uf5zAkQCe86lQOfANCGIY6BmE4VTRBeTptl/xJ8v+BgBUP5RwtK5 TgVJuLUwgeMZfd20ydvxn8ALCN+9ObHstSIh1lKNynwhw8O3So6VYI7P2OEDhSgtB4LT 54Q/RLkfrhUqPFb9RvhruHbHuTPSwE42Patx9Wsd/TY9D7drXoTMDixGgkiWA8yCZ8Ws yc3J9vUa7zvrxLstSYXR4KizmwzpMBGDItfLsGwxb3eC+n9hBAXRbabWaDAAUSnwktvq gCyNT++AonE9pVOLZqzad+yBrl5HxboOVsum9FuadX4RdqWFgUnZke9OKv8CoSCB9xEO zkPg== X-Received: by 10.50.119.132 with SMTP id ku4mr54689905igb.35.1399984646564; Tue, 13 May 2014 05:37:26 -0700 (PDT) MIME-Version: 1.0 Received: by 10.42.250.147 with HTTP; Tue, 13 May 2014 05:36:45 -0700 (PDT) Reply-To: hamza.abdelkebir@gmail.com In-Reply-To: <5371EB62.9090805@FreeBSD.org> References: <5371EB62.9090805@FreeBSD.org> From: Hamza Abdelkebir Date: Tue, 13 May 2014 14:36:45 +0200 Message-ID: Subject: Re: Mysql server dependency To: Matthew Seaman Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2014 12:37:27 -0000 Hello Matthew, Thank you for your help. I'm packaging an internal app for the company I'm working for. It's a webapp which runs on tomcat, mysql server on a FreeBSD 9.2. The app should be delivered to production using a pkgng formatted archive and not in a form of a port. i.e. the user will install it using *pkg add appname-version.txz* (all packages that this app depends on are also given to the user). I made the changes you recommended but it does not seem to work. Mysql56-server dependency is not in the produced package. # make build-depends-list /usr/ports/archivers/unzip /usr/ports/ports-mgmt/pkg /usr/ports/www/tomcat7 # make actual-package-depends servlet-api: {origin: www/servlet-api, version: "2.5_3"} tomcat7: {origin: www/tomcat7, version: "7.0.50"} openjdk: {origin: java/openjdk7, version: "7.51.13_1,1"} --> mysql-server does not show in the dependencies Here's a chunk of the current Makefile: http://pastebin.com/5rWcFXR5 Here's the make log: http://pastebin.com/kqr0Yepv My pkg.conf : PKG_CACHEDIR: /usr/local/tmp repos_dir: [ "/usr/local/etc/pkg/repos" ] Thanks, Hamza On Tue, May 13, 2014 at 11:52 AM, Matthew Seaman wrote: > On 13/05/2014 08:55, Hamza Abdelkebir wrote: > > Hi all, > > > > I'm having trouble with the packaging of a port which should depend on > > mysql56-server (requirement). > > > > I use this in my Makefile : > > > > .... > > > > BUILD_DEPENDS+= ${LOCALBASE}/apache-tomcat-7.0:${PORTSDIR}/www/tomcat7 > > BUILD_DEPENDS+= > > ${LOCALBASE}/apache-tomcat-7.0/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7 > > No point in having two build dependencies on the same port. Also, you > need a file rather than a directory in dependency lines, so choose the > 2nd line above. > > > BUILD_DEPENDS+= > > ${LOCALBASE}/bin/mysql:${PORTSDIR}/databases/mysql56-server > > BUILD_DEPENDS+= > > ${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql56-server > > In this case, you've already covered this by 'USE_MYSQL' below. No need > to add any more dependencies. > > > RUN_DEPENDS+= > ${LOCALBASE}/bin/mysql:${PORTSDIR}/databases/mysql56-server > > RUN_DEPENDS+= > > ${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql56-server > > Same: the RUN_DEPENDS on mysql56-server is supplied via 'USE_MYSQL' > > > RUN_DEPENDS+= > ${JAVAJARDIR}/servlet-api.jar:${PORTSDIR}/www/servlet-api > > RUN_DEPENDS+= > > ${LOCALBASE}/apache-tomcat-7.0/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7 > > Everything else there looks OK. > > > USE_MYSQL= server > > WITH_MYSQL_VER= 56 > > > > If this is your own port, then you should be using > > WANT_MYSQL_VER= 56 > > inside the port's Makefile. WITH_MYSQL_VER is what you used to put in > /etc/make.conf to set a system wide preference, but that has largely > beed superceeded by the new "DEFAULT_VERSIONS+= mysql=5.6" style nowadays. > > > > > Then, I create the package using *make package*. > > Try fixing the duplicates in your RUN_ and BUILD_DEPENDS first, and use > WANT_MYSQL_VER rather than WITH_MYSQL_VER. Then if you're still having > problems please do ask again -- although this is really a question for > freebsd-ports@... It will help if you explain exactly which port you're > dealing with -- if it's a new port not yet in the tree then please show > us the code by putting it up on a pasteboard site. Also show us the > output when you try and build a package. > > > Thank you for your help. > > Service is our only joy, > > Matthew > > -- > Dr Matthew J Seaman MA, D.Phil. > PGP: http://www.infracaninophile.co.uk/pgpkey > > > From owner-freebsd-pkg@FreeBSD.ORG Tue May 13 20:21:31 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A5DF0CA0 for ; Tue, 13 May 2014 20:21:31 +0000 (UTC) Received: from mail.iXsystems.com (newknight.ixsystems.com [206.40.55.70]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 85D852B18 for ; Tue, 13 May 2014 20:21:31 +0000 (UTC) Received: from localhost (mail.ixsystems.com [10.2.55.1]) by mail.iXsystems.com (Postfix) with ESMTP id 0339D74A9D for ; Tue, 13 May 2014 13:21:31 -0700 (PDT) Received: from mail.iXsystems.com ([10.2.55.1]) by localhost (mail.ixsystems.com [10.2.55.1]) (maiad, port 10024) with ESMTP id 42606-01-8 for ; Tue, 13 May 2014 13:21:30 -0700 (PDT) Received: from kruse-242.1.ixsystems.com (kruse-242.1.ixsystems.com [10.2.1.242]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mail.iXsystems.com (Postfix) with ESMTPSA id C3B4374A61 for ; Tue, 13 May 2014 13:21:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ixsystems.com; s=newknight0; t=1400012465; bh=q8eQASQZ7qXPCYHt9QG90C/hB/jMBSQkq6wgpo+PsqU=; h=From:Subject:Date:To; b=gwmSi8rzLrXYLPuW3o4YbGrUcunYdFTSyHSPDR0VMOoxVe+2pFond+UYrNHdyC9DU RvhzfHLVWzpYQZJFxnTYZIhEaNWi5dYK0jcqTGti0VbreCCKSxSFgPLhcvoUZUxNoD jcbRNxIlvctgg0HyNnBRjXkwVOFji+ORsb6rp/nQ= From: Sean Fagan Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: Delta packages Message-Id: Date: Tue, 13 May 2014 13:21:04 -0700 To: freebsd-pkg@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) X-Mailer: Apple Mail (2.1874) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2014 20:21:31 -0000 We have a strong desire to make delta packages -- that is, given version = A and version B of a package, to be able to download a package that has = only the changes between A and B. I've written a little program to create this (it currently only has the = files that have changed, not binary diffs, although that would I suppose = be possible; just harder). I can, I'm sure, come up with a way to manually extract and update the = packages databases; however, I'd prefer to do a lot of that in the = package code. (Among other things, being able to specify what the delta = is from would be good; I couldn't see a way to add random key/value = pairs to the manifest using the pkg* routines, and while I can add it to = the +MANIFEST file I create, that doesn't actually do a whole lot.) First question: is anyone working on something like this already? Second question: Any objections to it in principal? Merci beaucoup, Sean. From owner-freebsd-pkg@FreeBSD.ORG Wed May 14 02:36:17 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 38F36BD2 for ; Wed, 14 May 2014 02:36:17 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id CF1272A54 for ; Wed, 14 May 2014 02:36:16 +0000 (UTC) Received: from seedling.local (CPE74ea3aa160af-CM78cd8ec60c2d.cpe.net.cable.rogers.com [99.241.210.3]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s4E2ZNkY098025 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Wed, 14 May 2014 03:35:43 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: lucid-nonsense.infracaninophile.co.uk; dmarc=none header.from=infracaninophile.co.uk DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s4E2ZNkY098025 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1400034948; bh=dFnmoct4e0Hq5E/Xbv0Xm53evPYV9wA7J/o9sGOdICk=; h=Date:From:To:Subject:References:In-Reply-To; z=Date:=20Tue,=2013=20May=202014=2022:35:10=20-0400|From:=20Matthew =20Seaman=20|To:=20freebsd-pkg@fr eebsd.org|Subject:=20Re:=20Mysql=20server=20dependency|References: =20=20<5371EB62.9090805@FreeBSD.org>=20|In-Reply-To:=20; b=inj+Od890OGUd94m6Un9DsZkDLLQNxJIKPApesRpBn6t/RWpFUG36AmgyTOjkYV7J +NcREnvIukdxCad+pJM5eXp1tMjpchjbkiTvM19Mrq5/SAztTWLuUkX8dPbuk4iGR4 IRLoWSG+OhFhJIdPl3ac2pLqqOMh4MZzlwymasZ4= X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host CPE74ea3aa160af-CM78cd8ec60c2d.cpe.net.cable.rogers.com [99.241.210.3] claimed to be seedling.local Message-ID: <5372D65E.4050108@infracaninophile.co.uk> Date: Tue, 13 May 2014 22:35:10 -0400 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: Mysql server dependency References: <5371EB62.9090805@FreeBSD.org> In-Reply-To: X-Enigmail-Version: 1.6 OpenPGP: id=E7F39EBF Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="pbjm9Bj8KKlVR6m0axVwu0TXUIeAw36El" X-Virus-Scanned: clamav-milter 0.98.1 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=0.7 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,RCVD_IN_PBL,RCVD_IN_RP_RNBL,RDNS_DYNAMIC,SPF_FAIL autolearn=no autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 May 2014 02:36:17 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --pbjm9Bj8KKlVR6m0axVwu0TXUIeAw36El Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 13/05/2014 08:36, Hamza Abdelkebir wrote: > I made the changes you recommended but it does not seem to work. > Mysql56-server dependency is not in the produced package. Hmmm... one thing that strikes me. You have: USE_MYSQL=3D server Are you sure about that? Most web apps will want: USE_MYSQL=3D yes which pulls in mysql-client including libmysqlclient.so.X -- that is, your application needs the ability to log into the database and do queries, rather than needing just the mysql daemon installed. Not sure why there's nothing about MySQL in your pkg -- given that it's definitely looking for mysqld at build time: > =3D=3D=3D> appname-version depends on file: /usr/local/libexec/mysqld= - found Is mysql only in there as a BUILD_DEPENDS ? That would explain the absence from the package, as pkg only deals in RUN_DEPENDS. Try running make -C /path/to/your/appname/port -V BUILD_DEPENDS make -C /path/to/your/appname/port -V RUN_DEPENDS and compare the output of those two, MySQL-ish things will need to appear in the second one before you can see them in the pkg dependencies.= Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey JID: matthew@infracaninophile.co.uk --pbjm9Bj8KKlVR6m0axVwu0TXUIeAw36El Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTctZoXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATQTIP/jUUi5Uo/rC1InTadlXQungf wiUakmnRJLhylGD9iREBOUB328VghXj9fcXGAp/CUmGWNARoNzEcnP9e2sH0yfaF nqkcSkI/O1UZ0PfpAQBfrDaSXvgLCW+/6sUMtF5GeyMmX1ZYMhlmjRt6g+NggTZs x8JuLiIfiqO2IJY4k+3eJfqQXrSGX6d1hEEZRfUKYClYCKMg9KJNWEoy6gfDfMUP 3L/rWSbc5WfsP+mJstUIxNK64OvxfAbyzf8F4w4THXOkmoSLa8Nlu8sMylki/E4A kecrhFNryxfxueNFB8IAM6E9USHklFEmm2GvJ96FqTZ4/rHAOIYCaQ6NtTm9jGWe PBQpiF52Pdeupk6eipbC606GfJShCc3toevmPUm+UQs7um2mo1jcDTvdLYixXFTZ 7h4pu2wbqsZOhNtCEvPnx0ySvaHguLTmORMaN5i9AcEuBnwKthKJznONrHeO3yi6 E1stePWcuyKihqc6mllgLnKOB+O+ZRDn0i5w7vDp/O+djazDy1juJvisb+JcvgD6 QgO4NWhiwY55fmIOq/GXkzb6aDiEiYLPt395Yln0M3Bv2ENfD7INd2NLnv1v/8g+ FtN2Osnfk2ZIqu1tKM8ei3dcZ7PvzrtVpVniNwjxqA/tRlB5WERljizVgpa3dytD RWzA8wrBY6sL3zkegVUi =+aJY -----END PGP SIGNATURE----- --pbjm9Bj8KKlVR6m0axVwu0TXUIeAw36El-- From owner-freebsd-pkg@FreeBSD.ORG Wed May 14 09:43:35 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96FE4F34 for ; Wed, 14 May 2014 09:43:35 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 2482C2DE3 for ; Wed, 14 May 2014 09:43:35 +0000 (UTC) Received: from seedling.local (CPE74ea3aa160af-CM78cd8ec60c2d.cpe.net.cable.rogers.com [99.241.210.3]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s4E9hQCR007685 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Wed, 14 May 2014 10:43:29 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: lucid-nonsense.infracaninophile.co.uk; dmarc=none header.from=infracaninophile.co.uk DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s4E9hQCR007685 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1400060609; bh=1fnlYEyL4irxW9mFLpNGfu75SSRSjeHyDjIEPzrdRGo=; h=Date:From:To:Subject:References:In-Reply-To; z=Date:=20Wed,=2014=20May=202014=2005:43:14=20-0400|From:=20Matthew =20Seaman=20|To:=20freebsd-pkg@fr eebsd.org|Subject:=20Re:=20Delta=20packages|References:=20|In-Reply-To:=20; b=cewofr1+GeT4QJFT4IozcY29f15bp+IdjNi4Y9DFa5YKlougx8OffqzRn5+LUqjyS F4Ee4EfPDsMmznObSS4E2Db2A8ZJq5K8X+QECq5uGODjevMRTmHcvRy/Zm0S3m2OOA SxvVexN3kQkxSANOG1z5Ld+R3a5ko2uduZX007Ss= X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host CPE74ea3aa160af-CM78cd8ec60c2d.cpe.net.cable.rogers.com [99.241.210.3] claimed to be seedling.local Message-ID: <53733AB2.6060003@infracaninophile.co.uk> Date: Wed, 14 May 2014 05:43:14 -0400 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: Delta packages References: In-Reply-To: X-Enigmail-Version: 1.6 OpenPGP: id=E7F39EBF Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="cvaXOkqclsMF3heVP8Ejb5hmows4hpE9F" X-Virus-Scanned: clamav-milter 0.98.1 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=0.7 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,RCVD_IN_PBL,RCVD_IN_RP_RNBL,RDNS_DYNAMIC,SPF_FAIL autolearn=no autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 May 2014 09:43:35 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --cvaXOkqclsMF3heVP8Ejb5hmows4hpE9F Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 13/05/2014 16:21, Sean Fagan wrote: > We have a strong desire to make delta packages -- that is, given > version A and version B of a package, to be able to download a > package that has only the changes between A and B. >=20 > I've written a little program to create this (it currently only has > the files that have changed, not binary diffs, although that would I > suppose be possible; just harder). >=20 > I can, I'm sure, come up with a way to manually extract and update > the packages databases; however, I'd prefer to do a lot of that in > the package code. (Among other things, being able to specify what > the delta is from would be good; I couldn't see a way to add random > key/value pairs to the manifest using the pkg* routines, and while I > can add it to the +MANIFEST file I create, that doesn't actually do a > whole lot.) Uhh... doesn't 'pkg annotate' provide what you need? Although for a fully-fledged delta package we'd probably be thinking in terms of generating some sort of diff between old and new manifests. > First question: is anyone working on something like this already? There has been some talk about it, but as far as I know no code has been produced in public. Delta packages would be good for lots of reasons, but one really cool scenario is -- * upgrade package foo-1.0.0 to foo-1.0.1 * automatically produces delta/foo-1.0.1-1.0.0.txz * should there be problems with foo-1.0.1 can then rollback by applying the delta package. (of course, it's not going to be as easy as that -- dependencies will need simultaneous up/down- grade simultaneously > Second question: Any objections to it in principal? On the contrary. This would make a really great addition. Please do send patches / pull requests. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey JID: matthew@infracaninophile.co.uk --cvaXOkqclsMF3heVP8Ejb5hmows4hpE9F Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTczq9XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATEX4P/1TsPrHpBc+5rJ3EX89kVoYX poaOhGXp3XuSdJqz3c+PqTYPJxGSPWz/YdTWsIQ3kxCyzCm1g3kKaQavjw+yjEkn 71bOomMi8TeeBw/GOwevZzIsQ83DafH+/se8y5NdWuLwllDefyZGXQEL/sKAd0hV oZquyzRrqR2PYWSFLeQQYUlsJGbqLKvB6ydNGxq/sllwQbhWj/JYuO28E3a6vdxl TRhSvddoPbdqU2MMeFekYH+r47l5O8/eJC+yD6yGbbjEjj5q7y7mGiwnb6vxlM8l x7CnDNyaP0+9Fs77rxgDRlXq8FOfoibMh6bSkIZFHYWyWWOFrf1hWewNvU6DSV2N 7zkJtFGOTm5t9Y2zcVtE6lv5fkUBC04wuDWsrIeGDb4/Lpgfwh98pzijFzR2IE1m U0uT8BMJ7yuZhw/xgk9YN5P+akv41gImS30gL3EIY7Hy9rDhyB4YkEUzzZvHttcj uIFTgb/HK1yJe0VqjrRzGLGyxOHGFJ9QRj4Y+dgEIdoOGodLeSW3AM1sg9qXYyjd 9RgNnoLqup1Xkhu+dgVxDa8Rg84lpMAJi6wKe2l+HQp2GTl2VgJj84O17HU7VJn4 aCyq+KBsdHEl6mIUfuLAWS5ifYdAMQpOj+RCt9Yelgn+keKPEaFbND3ZpJtSplpQ L2Kkc4qmFbJFFcup3r6V =sSaf -----END PGP SIGNATURE----- --cvaXOkqclsMF3heVP8Ejb5hmows4hpE9F-- From owner-freebsd-pkg@FreeBSD.ORG Wed May 14 12:55:30 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5D0E764; Wed, 14 May 2014 12:55:30 +0000 (UTC) Received: from mx2.paymentallianceintl.com (mx2.paymentallianceintl.com [216.26.158.171]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx2.paymentallianceintl.com", Issuer "Go Daddy Secure Certification Authority" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AD00E2CE0; Wed, 14 May 2014 12:55:30 +0000 (UTC) Received: from firewall.mikej.com (162-238-140-44.lightspeed.lsvlky.sbcglobal.net [162.238.140.44]) by mx2.paymentallianceintl.com (8.14.5/8.13.8) with ESMTP id s4ECtJa2070440 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Wed, 14 May 2014 08:55:21 -0400 (EDT) (envelope-from mikej@mikej.com) Received: from mail.mikej.com (firewall [192.168.6.63]) by firewall.mikej.com (8.14.8/8.14.7) with ESMTP id s4ECswZt038601; Wed, 14 May 2014 08:55:19 -0400 (EDT) (envelope-from mikej@mikej.com) X-Authentication-Warning: firewall.mikej.com: Host firewall [192.168.6.63] claimed to be mail.mikej.com MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 14 May 2014 08:54:58 -0400 From: Michael Jung To: Bruce Cran Subject: Re: Package building schedule and postfix-tls In-Reply-To: <53718FB3.5080808@cran.org.uk> References: <53718FB3.5080808@cran.org.uk> Message-ID: <39c38a18d88f63da0055929db063d0f6@mail.mikej.com> X-Sender: mikej@mikej.com User-Agent: Roundcube Webmail/1.0.0 Cc: owner-freebsd-pkg@freebsd.org, freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 May 2014 12:55:31 -0000 On , Bruce Cran wrote: > I've just installed a new server with 10.0 and am setting it up (which > is _so_ much easier with pkgng!) - but I realised the default version > of postfix doesn't have TLS support, and I need postfix-tls instead > (which is in ports, but not available as a package yet). I think I > read that packages get built weekly, but is there anywhere I can go to > check when the next set will be built, or are they always built on a > certain day? If possible I'd like to know when I'll be able to > install the new package. Bruce, Not all ports get built. I think your two options are: Build your own repository with poudriere, or simply lock the package and build postfix-tls from ports manually. root@firewall:~ # pkg lock mail\postfix-tls will prevent pkg from overwriting your locally built package. Note, you can have multiple repositories with pkg - I have a local one for custom packages and use the main freebsd pkg site for other packages. --mikej From owner-freebsd-pkg@FreeBSD.ORG Wed May 14 16:18:01 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC342719; Wed, 14 May 2014 16:18:01 +0000 (UTC) Received: from mail-we0-x229.google.com (mail-we0-x229.google.com [IPv6:2a00:1450:400c:c03::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3DE6F2F8C; Wed, 14 May 2014 16:18:01 +0000 (UTC) Received: by mail-we0-f169.google.com with SMTP id u56so2205315wes.28 for ; Wed, 14 May 2014 09:17:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=ZhrYamr3eP9r8WYzRkGiZKmQGHDITZPtmqRBRTOdYQY=; b=kyMcefNgVZVU4byPUxZt9SVL3Sj5TF0hKNjCBxUVxE9U/G4jtb7faXJA41GHAk3w3A MxmCuh7etwt7oNk6pQjNBsnC1kKL19UeU29JNMc6xEEY0LUCtGJVY7WpfjBtZctlUBtI lGk3DOD+XoPQ7QJjnTmG5hEsvHJKxgUkxJxIcRl9Pp03PzmKYtj4eozW1Np+39LW83Cm 2o4jBdn1g7U4hyOAwsyroSg75CMSsztQp2UyTpwHXTS6HE+k4Do9u4OXhm7Y7HrptoIX O8FrpEAvOxC/j7V2uEjVozwLSKOyqobAcJTXtSFecbslqDyNfo5H+QDW6ACvANWKTFY5 4ctg== X-Received: by 10.180.105.72 with SMTP id gk8mr26846529wib.32.1400084279579; Wed, 14 May 2014 09:17:59 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by mx.google.com with ESMTPSA id b1sm3071270wjb.37.2014.05.14.09.17.58 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 14 May 2014 09:17:58 -0700 (PDT) Sender: Baptiste Daroussin Date: Wed, 14 May 2014 18:17:56 +0200 From: Baptiste Daroussin To: Matthew Seaman Subject: Re: Delta packages Message-ID: <20140514161756.GB16089@ivaldir.etoilebsd.net> References: <53733AB2.6060003@infracaninophile.co.uk> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="xgyAXRrhYN0wYx8y" Content-Disposition: inline In-Reply-To: <53733AB2.6060003@infracaninophile.co.uk> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: cperciva@freebsd.org, freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 May 2014 16:18:02 -0000 --xgyAXRrhYN0wYx8y Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable CCing colin because he has interest to that subject On Wed, May 14, 2014 at 05:43:14AM -0400, Matthew Seaman wrote: > On 13/05/2014 16:21, Sean Fagan wrote: > > We have a strong desire to make delta packages -- that is, given > > version A and version B of a package, to be able to download a > > package that has only the changes between A and B. > >=20 > > I've written a little program to create this (it currently only has > > the files that have changed, not binary diffs, although that would I > > suppose be possible; just harder). > >=20 > > I can, I'm sure, come up with a way to manually extract and update > > the packages databases; however, I'd prefer to do a lot of that in > > the package code. (Among other things, being able to specify what > > the delta is from would be good; I couldn't see a way to add random > > key/value pairs to the manifest using the pkg* routines, and while I > > can add it to the +MANIFEST file I create, that doesn't actually do a > > whole lot.) >=20 > Uhh... doesn't 'pkg annotate' provide what you need? Although for a > fully-fledged delta package we'd probably be thinking in terms of > generating some sort of diff between old and new manifests. >=20 > > First question: is anyone working on something like this already? >=20 > There has been some talk about it, but as far as I know no code has been > produced in public. >=20 > Delta packages would be good for lots of reasons, but one really cool > scenario is -- >=20 > * upgrade package foo-1.0.0 to foo-1.0.1 > * automatically produces delta/foo-1.0.1-1.0.0.txz > * should there be problems with foo-1.0.1 can then rollback by > applying the delta package. >=20 > (of course, it's not going to be as easy as that -- dependencies will > need simultaneous up/down- grade simultaneously >=20 > > Second question: Any objections to it in principal? >=20 > On the contrary. This would make a really great addition. Please do > send patches / pull requests. >=20 > Cheers, >=20 > Matthew >=20 > --=20 > Dr Matthew J Seaman MA, D.Phil. >=20 > PGP: http://www.infracaninophile.co.uk/pgpkey > JID: matthew@infracaninophile.co.uk >=20 regards, Bapt --xgyAXRrhYN0wYx8y Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iEYEARECAAYFAlNzlzQACgkQ8kTtMUmk6Ey/3ACgqoJ9SDbIVap4cPKHDXfa4DkY 0dMAnjigbvO0HGyuG+FCHMbTuCiwlyZz =btMd -----END PGP SIGNATURE----- --xgyAXRrhYN0wYx8y-- From owner-freebsd-pkg@FreeBSD.ORG Wed May 14 16:21:22 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B42FB0E for ; Wed, 14 May 2014 16:21:22 +0000 (UTC) Received: from kithrup.com (Kithrup.COM [64.142.31.202]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F21892FBC for ; Wed, 14 May 2014 16:21:21 +0000 (UTC) Received: from kithrup.com (localhost [127.0.0.1]) by kithrup.com (8.14.4/8.14.4) with ESMTP id s4EGCKug000645 for ; Wed, 14 May 2014 09:12:20 -0700 (PDT) (envelope-from sef@kithrup.com) Received: (from sef@localhost) by kithrup.com (8.14.4/8.14.4/Submit) id s4EGCKwU000644; Wed, 14 May 2014 09:12:20 -0700 (PDT) (envelope-from sef) Date: Wed, 14 May 2014 09:12:20 -0700 (PDT) From: Sean Eric Fagan Message-Id: <201405141612.s4EGCKwU000644@kithrup.com> To: freebsd-pkg@freebsd.org Subject: Re: Delta packages X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 May 2014 16:21:22 -0000 Matthew Seaman wrote: >full-fledged delta package we'd probably be thinking in terms of >generating some sort of diff between old and new manifests. I've already got a tool to do that. (What it actually does is copy all the bits I can from the new manifest, and copy all the new or modified files and directories from the new one, and generate a list of rm/rmdir's for the deleted files and directories. The intent is that, afterwards, it should look just as if you'd installed the new version. As an example, however: the txz file for python27 had the new version at 4.4mbytes; the delta file just about half that.) > * upgrade package foo-1.0.0 to foo-1.0.1 > * automatically produces delta/foo-1.0.1-1.0.0.txz > * should there be problems with foo-1.0.1 can then rollback by > applying the delta package. Hah. I hadn't thought about making the reverse, but the code doesn't care, doesn't it? >> Second question: Any objections to it in principal? > >On the contrary. This would make a really great addition. Please do >send patches / pull requests. I'd hoped for some assistance with it, as the pkg code is pretty ... large :). As I said, I've got something to create the delta files, so I guess I'll start looking at modifying the package code. The things I know it needs to do are: * The manifest needs a key/value indicating what the old version is. * It needs to extract the files, replacing any that are modified (and updating their checksum/owner/group/mode as necessary). * Then it needs to update the package version with the new version. (If I can't get the pkg code to do it, I can do all of that manually with a large hammer. I'd prefer not to, obviously.) From owner-freebsd-pkg@FreeBSD.ORG Wed May 14 21:53:02 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 670616FA for ; Wed, 14 May 2014 21:53:02 +0000 (UTC) Received: from kithrup.com (Kithrup.COM [64.142.31.202]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 34A4C2E9F for ; Wed, 14 May 2014 21:53:02 +0000 (UTC) Received: from kithrup.com (localhost [127.0.0.1]) by kithrup.com (8.14.4/8.14.4) with ESMTP id s4ELr0x0038937 for ; Wed, 14 May 2014 14:53:00 -0700 (PDT) (envelope-from sef@kithrup.com) Received: (from sef@localhost) by kithrup.com (8.14.4/8.14.4/Submit) id s4ELr0Ym038936; Wed, 14 May 2014 14:53:00 -0700 (PDT) (envelope-from sef) Date: Wed, 14 May 2014 14:53:00 -0700 (PDT) From: Sean Eric Fagan Message-Id: <201405142153.s4ELr0Ym038936@kithrup.com> To: freebsd-pkg@freebsd.org Subject: Re: Delta packages X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 May 2014 21:53:02 -0000 So, while I'm discussing this: why aren't symlinks checksummed in the manifest? (My current tool works on pkg files, and so it determines what is different by comparing the entries. Symlinks have "" as a hash, which means that it's not possible to tell if it's changed between the two versions.) From owner-freebsd-pkg@FreeBSD.ORG Wed May 14 22:25:43 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4A7CDA5 for ; Wed, 14 May 2014 22:25:43 +0000 (UTC) Received: from mail.soaustin.net (pancho.soaustin.net [76.74.250.40]) by mx1.freebsd.org (Postfix) with ESMTP id A73A22129 for ; Wed, 14 May 2014 22:25:43 +0000 (UTC) Received: by mail.soaustin.net (Postfix, from userid 502) id D1BCE5607F; Wed, 14 May 2014 17:25:42 -0500 (CDT) Date: Wed, 14 May 2014 17:25:42 -0500 From: Mark Linimon To: Sean Fagan Subject: Re: Delta packages Message-ID: <20140514222542.GA32016@lonesome.com> References: 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) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 May 2014 22:25:43 -0000 On Tue, May 13, 2014 at 01:21:04PM -0700, Sean Fagan wrote: > First question: is anyone working on something like this already? Is anything from the following usable: https://wiki.freebsd.org/IvanVoras/pkg_patch mcl From owner-freebsd-pkg@FreeBSD.ORG Wed May 14 23:45:17 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49488CCA for ; Wed, 14 May 2014 23:45:17 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id E59F1271D for ; Wed, 14 May 2014 23:45:16 +0000 (UTC) Received: from seedling.local ([137.122.64.21]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s4ENj9YM079090 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Thu, 15 May 2014 00:45:11 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: lucid-nonsense.infracaninophile.co.uk; dmarc=none header.from=infracaninophile.co.uk DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s4ENj9YM079090 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1400111112; bh=L5W6uAwlB//2eazjrbpo30dhG0qIGwGTtPjg8uKBYtg=; h=Date:From:To:Subject:References:In-Reply-To; z=Date:=20Wed,=2014=20May=202014=2019:45:02=20-0400|From:=20Matthew =20Seaman=20|To:=20freebsd-pkg@fr eebsd.org|Subject:=20Re:=20Delta=20packages|References:=20<2014051 42153.s4ELr0Ym038936@kithrup.com>|In-Reply-To:=20<201405142153.s4E Lr0Ym038936@kithrup.com>; b=A9dRqxClzgFaR2lbfAqbGrgJGyAeIH+Wu1H5YdBMDWFtiB2bcQDm7Vc5Rg4iEMb3D vAhPNxR5sFuhY64/4PvIHxmIs0dI0IMqZxCsgVo4/1BDWYMFVB8lrmXna3vYNzE1/Q epNuYua9O4cU8B+Amhvmg0wLkiUSOKCfyj1O8GWI= X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host [137.122.64.21] claimed to be seedling.local Message-ID: <5373FFFE.5060604@infracaninophile.co.uk> Date: Wed, 14 May 2014 19:45:02 -0400 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: Delta packages References: <201405142153.s4ELr0Ym038936@kithrup.com> In-Reply-To: <201405142153.s4ELr0Ym038936@kithrup.com> X-Enigmail-Version: 1.6 OpenPGP: id=E7F39EBF Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="cjl01sdjB9paDwA68dl69G2IU8qhdKPiJ" X-Virus-Scanned: clamav-milter 0.98.1 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-0.0 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,RCVD_IN_PBL,RDNS_NONE,SPF_FAIL autolearn=no autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 May 2014 23:45:17 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --cjl01sdjB9paDwA68dl69G2IU8qhdKPiJ Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 14/05/2014 17:53, Sean Eric Fagan wrote: > So, while I'm discussing this: why aren't symlinks checksummed in the > manifest? >=20 > (My current tool works on pkg files, and so it determines what is diffe= rent by > comparing the entries. Symlinks have "" as a hash, which means that it= 's not > possible to tell if it's changed between the two versions.) A symlink is entirely defined by the name of the link and what it points at. Calculating 160 bytes of sha512 on top of that would be overkill. So, why doesn't pkg record symlink name and target in the pkg metadata, instead adding the symlink as a separate file in the tar archive? Hmmm.... good question. We need to fix that. Issue #804 created. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey JID: matthew@infracaninophile.co.uk --cjl01sdjB9paDwA68dl69G2IU8qhdKPiJ Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTdAAFXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATbg8P/iTutyDxC/0j9kK83TBm7uKA G+X+cru+kjU7xEFlMOPVjCKk0Mi4wfENkocwxCGRQGuf/MvUsxB5R44d35bVm27c /VbhcpP1p02bYWxjwoHGSJfiJ97Y9WFJug69JluaeKQLrV30iKEdHVCkITrBb2Za KPCpcEMoMMLo7vJc/TvSDp2lxXPiKdHggTPyiaDR3Ck8fYvvg2UbI8KV1Ov8c/Tl 3Y4uvPWaQ7RZ2kbUy7nCbqb/sfgMN5vEjaNxmaXlXWKKVs/RBe44JtFa6C441EvV 7sCjBQhyx28/RKiteN/T3FHGFyCBDyPg5Gcjy5uLblcC3AVhP5GF6wzswGxV+CUF bGHmpzDqelDqdq8pK1wkIGl3chMrL9QEhP3Tu8YwtIbfNdSRpvFA6PUTZjJ1bqoL ZJyL+WOVcgPIynY4T5jw5ZQE9W7u/nKKhkXCdHj5tMbUfh8lCMN0TE0590qORGmS +Yf4kbrmKLOV1HX4Nw28g+OTWFO1QODv7qA2mIA44K9GqQcghsA5AduqcdUx/JE4 ZolJZta8VEq5h++thyfZJFQj1DlfaTYgtbYRJKz9UHGT+uVDHDvxunvw1ci8te/c 4PY/PPFzwx/t0vaY/NPmxM47LMDhkRKYVf+oN/yOpRLnOeOroroxd11Mhs2SBnqv w4etiSovUv6EmrklfBsM =xF3Q -----END PGP SIGNATURE----- --cjl01sdjB9paDwA68dl69G2IU8qhdKPiJ-- From owner-freebsd-pkg@FreeBSD.ORG Thu May 15 07:29:06 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F8EAEFE for ; Thu, 15 May 2014 07:29:06 +0000 (UTC) Received: from mail.rlwinm.de (mail.rlwinm.de [IPv6:2a01:4f8:140:72e1::ac16:e45e]) by mx1.freebsd.org (Postfix) with ESMTP id 020DC2AC3 for ; Thu, 15 May 2014 07:29:06 +0000 (UTC) Received: from hexe.rlwinm.de (p57A7CE24.dip0.t-ipconnect.de [87.167.206.36]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.rlwinm.de (Postfix) with ESMTPSA id EFCF6470FB for ; Thu, 15 May 2014 09:29:03 +0200 (CEST) Message-ID: <53746CBE.1040908@rlwinm.de> Date: Thu, 15 May 2014 09:29:02 +0200 From: Jan Bramkamp User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: Delta packages References: In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 May 2014 07:29:06 -0000 On 13.05.2014 22:21, Sean Fagan wrote: > We have a strong desire to make delta packages -- that is, given version A and version B of a package, to be able to download a package that has only the changes between A and B. > > I've written a little program to create this (it currently only has the files that have changed, not binary diffs, although that would I suppose be possible; just harder). > > I can, I'm sure, come up with a way to manually extract and update the packages databases; however, I'd prefer to do a lot of that in the package code. (Among other things, being able to specify what the delta is from would be good; I couldn't see a way to add random key/value pairs to the manifest using the pkg* routines, and while I can add it to the +MANIFEST file I create, that doesn't actually do a whole lot.) > > First question: is anyone working on something like this already? > > Second question: Any objections to it in principal? > > Merci beaucoup, > > Sean. It is my understanding that pkgng keeps the old packages in /var/cache/pkg. Wouldn't it be easier to implement delta packages as binpatches between the decompressed tar streams of the two package versions? From owner-freebsd-pkg@FreeBSD.ORG Thu May 15 16:38:59 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BEB717D6 for ; Thu, 15 May 2014 16:38:59 +0000 (UTC) Received: from kithrup.com (Kithrup.COM [64.142.31.202]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8BFF729C9 for ; Thu, 15 May 2014 16:38:59 +0000 (UTC) Received: from kithrup.com (localhost [127.0.0.1]) by kithrup.com (8.14.4/8.14.4) with ESMTP id s4FGcpUx075878 for ; Thu, 15 May 2014 09:38:51 -0700 (PDT) (envelope-from sef@kithrup.com) Received: (from sef@localhost) by kithrup.com (8.14.4/8.14.4/Submit) id s4FGcpk8075877; Thu, 15 May 2014 09:38:51 -0700 (PDT) (envelope-from sef) Date: Thu, 15 May 2014 09:38:51 -0700 (PDT) From: Sean Eric Fagan Message-Id: <201405151638.s4FGcpk8075877@kithrup.com> To: freebsd-pkg@freebsd.org Subject: Re: Delta packages X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 May 2014 16:38:59 -0000 >It is my understanding that pkgng keeps the old packages in >/var/cache/pkg. Wouldn't it be easier to implement delta packages as >binpatches between the decompressed tar streams of the two package versions? That is a cache only, and cannot be counted upon. And in our environment, we are not going to keep the package file around after it's been installed. From owner-freebsd-pkg@FreeBSD.ORG Thu May 15 17:47:50 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD39B1C4 for ; Thu, 15 May 2014 17:47:50 +0000 (UTC) Received: from o3.shared.sendgrid.net (o3.shared.sendgrid.net [208.117.48.85]) by mx1.freebsd.org (Postfix) with SMTP id 4F94320AC for ; Thu, 15 May 2014 17:47:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sendgrid.info; h=from:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; s=smtpapi; bh=4ynMO8BtGvClmpRsX57Xfbnc9AU=; b=W6jat8Pc39p5IOBdUU VDFSUkfFwlLpfsPQoM+abTe7P9bb+vY4nkTX8wO/Xg0BZyrtXqiq3WFjDmxnTj2D YtJHxsGmg8zKaSXSYr+puihCfNyAn/SWqlkthNssZOlOiMjDb/KJWmKZWQ069fLe 8Yxw4YoACWTrJxhc1+5sASjK0= Received: by mf261.sendgrid.net with SMTP id mf261.39575.5374FDC4E Thu, 15 May 2014 17:47:48 +0000 (UTC) Received: from mail.tarsnap.com (unknown [10.100.60.97]) by ismtpd-007 (SG) with ESMTP id 14600ff486c.767c.45d9a for ; Thu, 15 May 2014 17:47:48 +0000 (GMT) Received: (qmail 36104 invoked from network); 15 May 2014 17:47:47 -0000 Received: from unknown (HELO clamshell.daemonology.net) (127.0.0.1) by ec2-107-20-205-189.compute-1.amazonaws.com with ESMTP; 15 May 2014 17:47:47 -0000 Received: (qmail 8519 invoked from network); 15 May 2014 17:46:15 -0000 Received: from unknown (HELO clamshell.daemonology.net) (127.0.0.1) by clamshell.daemonology.net with SMTP; 15 May 2014 17:46:15 -0000 Message-ID: <5374FD67.10205@freebsd.org> Date: Thu, 15 May 2014 10:46:15 -0700 From: Colin Percival User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.0 MIME-Version: 1.0 To: Baptiste Daroussin , Matthew Seaman Subject: Re: Delta packages References: <53733AB2.6060003@infracaninophile.co.uk> <20140514161756.GB16089@ivaldir.etoilebsd.net> In-Reply-To: <20140514161756.GB16089@ivaldir.etoilebsd.net> X-Enigmail-Version: 1.5.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-SG-EID: Vb+Anvs0EfIvXbjCHlZrgeUkgnSdHe4yGUlfTdldXmBJpdneBBDWALG6FA3v6ccDf4nwl6VTgNcNGtfayQN1VQpX2T2FhgutI3/xD6k/9ZlTtdvEZGXbcFigLXT56ADhN+pw/Uk829h/JUMsadi9hcqVLNWTnhBDhqFSTXYup5E= Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 May 2014 17:47:50 -0000 Hi all, On 05/14/14 09:17, Baptiste Daroussin wrote: > On Wed, May 14, 2014 at 05:43:14AM -0400, Matthew Seaman wrote: >> On 13/05/2014 16:21, Sean Fagan wrote: >>> We have a strong desire to make delta packages -- that is, given >>> version A and version B of a package, to be able to download a package >>> that has only the changes between A and B. I have no opinion on delta packages except that they scare me and sound like a very easy way to screw things up horribly. What I'm interested in is package deltas -- given foo-1.0.0.txz and foo-1.0.0-to-1.0.1.bsdiff, generate foo-1.0.1.txz. In other words, a way to speed up "download new packages", not a change to the upgrade process (since having generated the new package, you would still be uninstalling the old package and installing the new one). -- Colin Percival Security Officer Emeritus, FreeBSD | The power to serve Founder, Tarsnap | www.tarsnap.com | Online backups for the truly paranoid From owner-freebsd-pkg@FreeBSD.ORG Mon May 19 20:31:02 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 12D8C8C1; Mon, 19 May 2014 20:31:02 +0000 (UTC) Received: from mail-la0-x22d.google.com (mail-la0-x22d.google.com [IPv6:2a00:1450:4010:c03::22d]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 35960246D; Mon, 19 May 2014 20:31:01 +0000 (UTC) Received: by mail-la0-f45.google.com with SMTP id gl10so4516505lab.4 for ; Mon, 19 May 2014 13:30:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:cc:content-type; bh=VD5GrtPZ/M0sUnkUDflTt+8vjL/oSnOZdItXfgcLqig=; b=mDXwJzNLHSAFS5OXbd7mZCX2XdZ/03sWXlXfYbh/stWF0O8TnMXzZGHI6CVCKp6pyI wXFc7Hc0AfoIJ1EyPzMd+YSgzjBQUTdUA1kJrlbYEuyLTYR2pcRPlBpvyKuYm3GqxGFM iumG/oyEHd6J3T1Kd57WxX4Nw04ZGRsRsHXm7G3ABdEcyH1UQvKbf1icgqx7UoJjCRbG FdyI+M0T4T7yfsxMXLoFHcCybKHwUZ0FkTGCrzl4b3a35VzrqP+hZJ/PfS9hPNJWTaoe /OQgKshWLSl0avCBAUpxqX5EhnslfTc9s5UtPNLomopthjQ/liMQid8uF4QoM9d+HZj7 UOsw== MIME-Version: 1.0 X-Received: by 10.152.23.42 with SMTP id j10mr28317274laf.19.1400531459202; Mon, 19 May 2014 13:30:59 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.67.73 with HTTP; Mon, 19 May 2014 13:30:59 -0700 (PDT) Date: Mon, 19 May 2014 13:30:59 -0700 X-Google-Sender-Auth: PkowkwbSjXSdQnqVMapONVYU5tY Message-ID: Subject: RFC: poudriere in FreeNAS build From: Craig Rodrigues To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: Brooks Davis , Warner Losh X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 May 2014 20:31:02 -0000 Hi, I have done a lot of work to change the FreeNAS build system to build packages using poudriere. I would be interested in having some folks try it out and provide feedback. If you are interested in trying it out, please try the following SETUP ====== Make sure you have the following ports installed: pkg install devel/git pkg install archivers/pxz pkg install lang/python pkg install emulators/virtualbox-ose pkg install ports-mgmt/poudriere-devel TESTING ON A FREEBSD 10 or FREEBSD CURRENT host ============================================= These steps will only work on a FREEBSD 10, or a FREEBSD-CURRENT host git clone -b freebsd10 https://github.com/freenas/freenas.git cd freenas make git-external make checkout make release TESTING ON A FREEBSD 9 host ============================================= These steps will only work on a FREEBSD 9 host: git clone https://github.com/freenas/freenas.git cd freenas make git-external make checkout make release Thanks for any feedback that you can provide. -- Craig From owner-freebsd-pkg@FreeBSD.ORG Mon May 19 20:57:07 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 789F2D67; Mon, 19 May 2014 20:57:07 +0000 (UTC) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 662802717; Mon, 19 May 2014 20:57:07 +0000 (UTC) Received: from AlfredMacbookAir.local (unknown [12.130.117.130]) by elvis.mu.org (Postfix) with ESMTPSA id 4C0C51A3CB8; Mon, 19 May 2014 13:56:56 -0700 (PDT) Message-ID: <537A700D.8080907@freebsd.org> Date: Mon, 19 May 2014 16:56:45 -0400 From: Alfred Perlstein Organization: FreeBSD User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Craig Rodrigues , freebsd-pkg@freebsd.org Subject: Re: RFC: poudriere in FreeNAS build References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Brooks Davis , Warner Losh X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 May 2014 20:57:07 -0000 Craig, this looks really great. Just wondering, does this preserve the these aspects of the build: 1) done in a chroot? 2) provides an override for local mirror of source tarballs? 3) provides comprehensive logs when a package build fails? -Alfred On 5/19/14, 4:30 PM, Craig Rodrigues wrote: > Hi, > > I have done a lot of work to change the FreeNAS build system > to build packages using poudriere. I would be interested in > having some folks try it out and provide feedback. > > If you are interested in trying it out, please try the following > > SETUP > ====== > Make sure you have the following ports installed: > > pkg install devel/git > pkg install archivers/pxz > pkg install lang/python > pkg install emulators/virtualbox-ose > pkg install ports-mgmt/poudriere-devel > > > TESTING ON A FREEBSD 10 or FREEBSD CURRENT host > ============================================= > > These steps will only work on a FREEBSD 10, or a FREEBSD-CURRENT host > > git clone -b freebsd10 https://github.com/freenas/freenas.git > cd freenas > make git-external > make checkout > make release > > > TESTING ON A FREEBSD 9 host > ============================================= > > These steps will only work on a FREEBSD 9 host: > > git clone https://github.com/freenas/freenas.git > cd freenas > make git-external > make checkout > make release > > > Thanks for any feedback that you can provide. > > -- > Craig > From owner-freebsd-pkg@FreeBSD.ORG Mon May 19 21:48:28 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 36DB613E; Mon, 19 May 2014 21:48:28 +0000 (UTC) Received: from mail-lb0-x231.google.com (mail-lb0-x231.google.com [IPv6:2a00:1450:4010:c04::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5DE162B82; Mon, 19 May 2014 21:48:27 +0000 (UTC) Received: by mail-lb0-f177.google.com with SMTP id s7so4453021lbd.8 for ; Mon, 19 May 2014 14:48:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=Mf2Z18RkdBXn03Ko8EFArArPYjM7FJeZURmeekz7fG0=; b=yq/3SNdTw0z81hLKaVppC4hohkGWQugQ9/cpSZzxBdzf+Vf5/uXHZLPb2rbt13m3kF 5Xkg3KLEuEe7x3QKPRqg0jPzBuQJkyVQmlrTu36lV3tN2HsrMBcVcBxz259AKTQIGpq7 0HHMVHbilOJJWMFX2n8WMZ6hupSWWySIogI0+zUE3ArKkCtQ3gXT/uk4K9VjlxXCKK40 sV0bPS2qb0vAuRu42VzpqKEd+L4VnsZd4J70DblrpLC18puIqG/YfmLNqy4QwHgVFk7J 66H2fMQrTbK0boyzxx6ZCe8oKpcwyutRNpLAc5lHxqo8i+9gh3XY8t1BMiI8duRjvkP5 o3zA== MIME-Version: 1.0 X-Received: by 10.112.35.202 with SMTP id k10mr27149684lbj.14.1400536105290; Mon, 19 May 2014 14:48:25 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.67.73 with HTTP; Mon, 19 May 2014 14:48:25 -0700 (PDT) In-Reply-To: <537A700D.8080907@freebsd.org> References: <537A700D.8080907@freebsd.org> Date: Mon, 19 May 2014 14:48:25 -0700 X-Google-Sender-Auth: KSENFn8IHfipnylwtx3QL-ig-yI Message-ID: Subject: Re: RFC: poudriere in FreeNAS build From: Craig Rodrigues To: Alfred Perlstein Content-Type: text/plain; charset=ISO-8859-1 Cc: Brooks Davis , Warner Losh , freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 May 2014 21:48:28 -0000 On Mon, May 19, 2014 at 1:56 PM, Alfred Perlstein wrote: > Craig, this looks really great. > > Just wondering, does this preserve the these aspects of the build: > > 1) done in a chroot? Poudriere builds things in a jail, which for our purposes is mostly similar to a chroot. The FreeNAS build system builds the jail first, before invoking poudriere to build the ports inside the jail. > 2) provides an override for local mirror of source tarballs? Yes, we have a variable PORTS_DISTFILES_CACHE which can be overridden to point to a directory which contains a local mirror of source tarballs. At iXsystems, that directory is an NFS mount which is accessible on all build servers. > 3) provides comprehensive logs when a package build fails? Poudriere has very extensive and easy to understand logging for each package which is built. -- Craig From owner-freebsd-pkg@FreeBSD.ORG Mon May 19 21:51:38 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3C01F1E1; Mon, 19 May 2014 21:51:38 +0000 (UTC) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 287662C12; Mon, 19 May 2014 21:51:37 +0000 (UTC) Received: from AlfredMacbookAir.local (unknown [12.130.117.130]) by elvis.mu.org (Postfix) with ESMTPSA id 8E3AB1A3C7F; Mon, 19 May 2014 14:51:35 -0700 (PDT) Message-ID: <537A7CD6.9080101@freebsd.org> Date: Mon, 19 May 2014 17:51:18 -0400 From: Alfred Perlstein Organization: FreeBSD User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Craig Rodrigues Subject: Re: RFC: poudriere in FreeNAS build References: <537A700D.8080907@freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Brooks Davis , Warner Losh , freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 May 2014 21:51:38 -0000 On 5/19/14, 5:48 PM, Craig Rodrigues wrote: > On Mon, May 19, 2014 at 1:56 PM, Alfred Perlstein wrote: >> Craig, this looks really great. >> >> Just wondering, does this preserve the these aspects of the build: >> >> 1) done in a chroot? > Poudriere builds things in a jail, which for our purposes is mostly > similar to a chroot. > The FreeNAS build system builds the jail first, before invoking > poudriere to build the ports > inside the jail. > > >> 2) provides an override for local mirror of source tarballs? > Yes, we have a variable PORTS_DISTFILES_CACHE which can be overridden > to point to a directory which contains a local mirror of source tarballs. > At iXsystems, that directory is an NFS mount which is accessible on > all build servers. > > >> 3) provides comprehensive logs when a package build fails? > Poudriere has very extensive and easy to understand logging for each > package which is built. > > -- > Craig I likely will not have time to test in the coming week or so, however we are bringing on another developer that may be able to do so in the next few weeks. That said having watched you put this code into the build AND knowing your talent and thoroughness I highly encourage you to commit it as soon as you find time. This will help nanobsd users quite a bit. -Alfred From owner-freebsd-pkg@FreeBSD.ORG Tue May 20 00:32:52 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0C516F1A; Tue, 20 May 2014 00:32:52 +0000 (UTC) Received: from mail.feld.me (mail.feld.me [66.170.3.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.feld.me", Issuer "Gandi Standard SSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9C85F287C; Tue, 20 May 2014 00:32:50 +0000 (UTC) Received: from mail.feld.me (mail.feld.me [66.170.3.6]); by mail.feld.me (OpenSMTPD) with ESMTP id fca5c060; Mon, 19 May 2014 19:32:39 -0500 (CDT) Received: from feld@feld.me by mail.feld.me (Archiveopteryx 3.2.0) with esmtpsa id 1400545958-73435-73432/5/2; Tue, 20 May 2014 00:32:38 +0000 Content-Type: text/plain Mime-Version: 1.0 Subject: Re: RFC: poudriere in FreeNAS build From: Mark Felder In-Reply-To: Date: Mon, 19 May 2014 19:32:37 -0500 Content-Transfer-Encoding: quoted-printable Message-Id: <143472D1-9DFA-45FD-BAD9-B6ED5E8B8312@FreeBSD.org> References: To: Craig Rodrigues X-Mailer: Apple Mail (2.1878.2) Sender: feld@feld.me Cc: Brooks Davis , Warner Losh , freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 May 2014 00:32:52 -0000 On May 19, 2014, at 15:30, Craig Rodrigues wrote: > Hi, >=20 > I have done a lot of work to change the FreeNAS build system > to build packages using poudriere. I would be interested in > having some folks try it out and provide feedback. >=20 > If you are interested in trying it out, please try the following >=20 > SETUP > =3D=3D=3D=3D=3D=3D > Make sure you have the following ports installed: >=20 > pkg install devel/git > pkg install archivers/pxz > pkg install lang/python > pkg install emulators/virtualbox-ose > pkg install ports-mgmt/poudriere-devel >=20 >=20 > TESTING ON A FREEBSD 10 or FREEBSD CURRENT host > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >=20 > These steps will only work on a FREEBSD 10, or a FREEBSD-CURRENT host >=20 > git clone -b freebsd10 https://github.com/freenas/freenas.git > cd freenas > make git-external > make checkout > make release >=20 >=20 > TESTING ON A FREEBSD 9 host > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >=20 > These steps will only work on a FREEBSD 9 host: >=20 > git clone https://github.com/freenas/freenas.git > cd freenas > make git-external > make checkout > make release >=20 >=20 >=20 I know nothing about building packages for FreeNAS, but as the multimedia= /plexmediaserver port maintainer I see users on the Plex forums begging = for new packages for FreeNAS -- they lag far behind my port updates. = Would this make it trivial to build a FreeNAS package and upload it to = AppCafe or whatever FreeNAS users require to find the software? From owner-freebsd-pkg@FreeBSD.ORG Tue May 20 00:40:57 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 74C4AFF8; Tue, 20 May 2014 00:40:57 +0000 (UTC) Received: from mail-la0-x22e.google.com (mail-la0-x22e.google.com [IPv6:2a00:1450:4010:c03::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 946952917; Tue, 20 May 2014 00:40:56 +0000 (UTC) Received: by mail-la0-f46.google.com with SMTP id ec20so4697067lab.19 for ; Mon, 19 May 2014 17:40:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=FW4IG0+eF0+UDLy8pKS5tIN0AICAVfcE7jXKQFmhuqs=; b=YsVpcDFf4idOyOuCREPCTuxfpK3P0X6C9XcSwqkncBxg0Sm7D7rm9iW5VBt73p0giU el+Asb5augQcPfxzngdRIvUBJrekhmYNxEXpNEq2hKq/+MydRrA5WRAimOJRcXr8JNgi BGKDsEPah2WrJBM8uI8wP/qfZw+EJvs1GU8ZlFU3fCHh6pWx5ewDuGzyTDkOym3mL8tG JLeDQbdcV9OsMO99dWsOX/TA4MM2azz5oPN0Biml+hOQ4Ir5CW014ot6HdgDYhae95sY bsQQatVAceluJyiAQQf5csIo9ZQmUV+oKWTbBEnknZ4dauVcvj3ER0kY5D8huCNWS2XS Z6ig== MIME-Version: 1.0 X-Received: by 10.152.6.228 with SMTP id e4mr4729657laa.57.1400546454545; Mon, 19 May 2014 17:40:54 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.67.73 with HTTP; Mon, 19 May 2014 17:40:54 -0700 (PDT) Received: by 10.112.67.73 with HTTP; Mon, 19 May 2014 17:40:54 -0700 (PDT) In-Reply-To: <143472D1-9DFA-45FD-BAD9-B6ED5E8B8312@FreeBSD.org> References: <143472D1-9DFA-45FD-BAD9-B6ED5E8B8312@FreeBSD.org> Date: Mon, 19 May 2014 17:40:54 -0700 X-Google-Sender-Auth: xjchwtH932SVczcBBXS59vJPb7w Message-ID: Subject: Re: RFC: poudriere in FreeNAS build From: Craig Rodrigues To: Mark Felder Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 Cc: Brooks Davis , freebsd-pkg@freebsd.org, Warner Losh X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 May 2014 00:40:57 -0000 On May 19, 2014 8:32 PM, "Mark Felder" wrote: > > > I know nothing about building packages for FreeNAS, but as the multimedia/plexmediaserver port maintainer I see users on the Plex forums begging for new packages for FreeNAS -- they lag far behind my port updates. Would this make it trivial to build a FreeNAS package and upload it to AppCafe or whatever FreeNAS users require to find the software? > I think it should become easier to build new plex packages. Please test the steps as I have outlined in my previous mail and provide feedback. -- Craig From owner-freebsd-pkg@FreeBSD.ORG Tue May 20 00:42:55 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 67D85C6; Tue, 20 May 2014 00:42:55 +0000 (UTC) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 535EF2927; Tue, 20 May 2014 00:42:54 +0000 (UTC) Received: from AlfredMacbookAir.local (unknown [12.130.117.130]) by elvis.mu.org (Postfix) with ESMTPSA id 250CE1A3C19; Mon, 19 May 2014 17:42:41 -0700 (PDT) Message-ID: <537AA4FC.3050408@freebsd.org> Date: Mon, 19 May 2014 20:42:36 -0400 From: Alfred Perlstein Organization: FreeBSD User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Mark Felder , Craig Rodrigues Subject: Re: RFC: poudriere in FreeNAS build References: <143472D1-9DFA-45FD-BAD9-B6ED5E8B8312@FreeBSD.org> In-Reply-To: <143472D1-9DFA-45FD-BAD9-B6ED5E8B8312@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Brooks Davis , freebsd-pkg@freebsd.org, Warner Losh X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 May 2014 00:42:55 -0000 On 5/19/14, 8:32 PM, Mark Felder wrote: > On May 19, 2014, at 15:30, Craig Rodrigues wrote: > >> Hi, >> >> I have done a lot of work to change the FreeNAS build system >> to build packages using poudriere. I would be interested in >> having some folks try it out and provide feedback. >> >> If you are interested in trying it out, please try the following >> >> SETUP >> ====== >> Make sure you have the following ports installed: >> >> pkg install devel/git >> pkg install archivers/pxz >> pkg install lang/python >> pkg install emulators/virtualbox-ose >> pkg install ports-mgmt/poudriere-devel >> >> >> TESTING ON A FREEBSD 10 or FREEBSD CURRENT host >> ============================================= >> >> These steps will only work on a FREEBSD 10, or a FREEBSD-CURRENT host >> >> git clone -b freebsd10 https://github.com/freenas/freenas.git >> cd freenas >> make git-external >> make checkout >> make release >> >> >> TESTING ON A FREEBSD 9 host >> ============================================= >> >> These steps will only work on a FREEBSD 9 host: >> >> git clone https://github.com/freenas/freenas.git >> cd freenas >> make git-external >> make checkout >> make release >> >> >> > I know nothing about building packages for FreeNAS, but as the multimedia/plexmediaserver port maintainer I see users on the Plex forums begging for new packages for FreeNAS -- they lag far behind my port updates. Would this make it trivial to build a FreeNAS package and upload it to AppCafe or whatever FreeNAS users require to find the software? Hmm, that's an interesting point. Craig, couldn't this be fixed by making a release of TrueOS available as a vmdk for this purpose? -Alfred > > _______________________________________________ > freebsd-pkg@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-pkg > To unsubscribe, send any mail to "freebsd-pkg-unsubscribe@freebsd.org" > From owner-freebsd-pkg@FreeBSD.ORG Wed May 21 04:35:19 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 72031D35 for ; Wed, 21 May 2014 04:35:19 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id D6F38271B for ; Wed, 21 May 2014 04:35:17 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35518092 for freebsd-pkg@freebsd.org; Wed, 21 May 2014 11:35:15 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s4L4ZEWi044294 for ; Wed, 21 May 2014 11:35:14 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s4L4ZE0G044291 for freebsd-pkg@freebsd.org; Wed, 21 May 2014 11:35:14 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Wed, 21 May 2014 11:35:14 +0700 From: Victor Sudakov Sender: owner-freebsd-questions@freebsd.org To: freebsd-pkg@freebsd.org Subject: "pkg upgrade" is trying to install phantom dependencies Message-ID: <20140521043514.GD41900@admin.sibptus.tomsk.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Organization: AO "Svyaztransneft", SibPTUS User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 May 2014 04:35:19 -0000 Dear Colleagues, Why is "pkg upgrade" trying to install all these packages without actually upgrading anything? Is there a way to debug the dependency solver? Pls see the output below. "pkg check -dn" shows nothing. Any help is greatly appreciated. I am ready to give any additional info in my setup. # pkg upgrade -n Updating repository catalogue Upgrades have been requested for the following 35 packages: Installing gettext: 0.18.3.1_1 [sibptus] Installing p5-Locale-gettext: 1.05_3 [FreeBSD] Installing xproto: 7.0.25 [FreeBSD] Installing libXdmcp: 1.1.1_2 [FreeBSD] Installing libXau: 1.0.8_2 [FreeBSD] Installing libxml2: 2.9.1_1 [sibptus] Installing libpthread-stubs: 0.3_4 [FreeBSD] Installing kbproto: 1.0.6 [FreeBSD] Installing fixesproto: 5.0 [FreeBSD] Installing xextproto: 7.3.0 [FreeBSD] Installing inputproto: 2.3 [FreeBSD] Installing libICE: 1.0.8_2,1 [FreeBSD] Installing xf86vidmodeproto: 2.3.1 [FreeBSD] Installing damageproto: 1.2.1 [FreeBSD] Installing dri2proto: 2.8 [FreeBSD] Installing pciids: 20140502 [FreeBSD] Installing randrproto: 1.4.0 [FreeBSD] Installing renderproto: 0.11.1 [FreeBSD] Installing libxcb: 1.10_2 [FreeBSD] Installing libSM: 1.2.2_2,1 [FreeBSD] Installing libpciaccess: 0.13.2_2 [FreeBSD] Installing libX11: 1.6.2_2,1 [FreeBSD] Installing libXext: 1.3.2_2,1 [FreeBSD] Installing libXt: 1.1.4_2,1 [FreeBSD] Installing libXxf86vm: 1.1.3_2 [FreeBSD] Installing libdrm: 2.4.17_1 [FreeBSD] Installing libXrender: 0.9.8_2 [FreeBSD] Installing libXfixes: 5.0.1_2 [FreeBSD] Installing libXmu: 1.1.2_2,1 [FreeBSD] Installing libXdamage: 1.1.4_2 [FreeBSD] Installing libXrandr: 1.4.2_2 [FreeBSD] Installing libXi: 1.7.2_2,1 [FreeBSD] Installing libGL: 7.6.1_4 [FreeBSD] Installing libGLU: 9.0.0 [FreeBSD] Installing freeglut: 2.8.1_2 [FreeBSD] The upgrade will require 33 MB more space 7 MB to be downloaded # -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Wed May 21 09:52:23 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1BE95D74 for ; Wed, 21 May 2014 09:52:23 +0000 (UTC) Received: from mail.foucry.net (mail.foucry.net [91.121.5.151]) by mx1.freebsd.org (Postfix) with ESMTP id DC96B2627 for ; Wed, 21 May 2014 09:52:22 +0000 (UTC) Received: from turing.ns42.fr (69-85-190-109.dsl.ovh.fr [109.190.85.69]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.foucry.net (Postfix) with ESMTPSA id F1967C0535 for ; Wed, 21 May 2014 11:45:33 +0200 (CEST) Message-ID: <537C75BD.4030307@foucry.net> Date: Wed, 21 May 2014 11:45:33 +0200 From: Jacques Foucry User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: pkg@freebsd.org Subject: error in installating postfix Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 May 2014 09:52:23 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Hello, I tried this morning to install postfix on my FreeBSD10. # pkg install postfix Updating repository catalogue The following 1 packages will be installed: Installing postfix: 2.11.0,1 The installation will require 14 MB more space 2 MB to be downloaded Proceed with installing packages [y/N]: y pkg: http://pkg.FreeBSD.org/freebsd:10:x86:64/latest/All/postfix-2.11.0,1.txz: Not Found Googling the error, I found: http://pkg.dicrurus.com/info?arch=freebsd:10:x86:64&pkg=postfix It seems the correct version is now 2.11.1,1 but, even after pkg update the pkg catalog still wrong. Some information about my OS # uname -a FreeBSD belisama.ns42.fr 10.0-RELEASE-p3 FreeBSD 10.0-RELEASE-p3 #0: Tue May 13 18:31:10 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 Thanks for all your job, Regards, Jacques Foucry -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.14 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iL4EAREKAGYFAlN8dbtfFIAAAAAALgAoaXNzdWVyLWZwckBub3RhdGlvbnMub3Bl bnBncC5maWZ0aGhvcnNlbWFuLm5ldDVEREJEMEJEQjM3M0VEM0EwMzQ4NUY2QjY0 NzFBNEZGRUMzNUY1NUYACgkQZHGk/+w19V92QQEAsTYP0ZKuEunPcolA0/ru8vmN cxGUoQVT19xerGutNrwA/0eNRH1YkzWbChQNEu7g7SW7I38uloALl35WrNq3BdB2 =bOUC -----END PGP SIGNATURE----- From owner-freebsd-pkg@FreeBSD.ORG Thu May 22 05:16:29 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D83A4B8A for ; Thu, 22 May 2014 05:16:29 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 020C5269B for ; Thu, 22 May 2014 05:16:27 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35519740 for freebsd-pkg@freebsd.org; Thu, 22 May 2014 12:16:26 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s4M5GPQ4081187 for ; Thu, 22 May 2014 12:16:25 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s4M5GPuK081186 for freebsd-pkg@freebsd.org; Thu, 22 May 2014 12:16:25 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Thu, 22 May 2014 12:16:25 +0700 From: Victor Sudakov To: freebsd-pkg@freebsd.org Subject: Re: "pkg upgrade" is trying to install phantom dependencies Message-ID: <20140522051625.GA80949@admin.sibptus.tomsk.ru> References: <20140521043514.GD41900@admin.sibptus.tomsk.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140521043514.GD41900@admin.sibptus.tomsk.ru> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2014 05:16:30 -0000 Victor Sudakov wrote: > > Why is "pkg upgrade" trying to install all these packages without > actually upgrading anything? Is there a way to debug the dependency > solver? Pls see the output below. "pkg check -dn" shows nothing. > > Any help is greatly appreciated. I am ready to give any additional > info in my setup. > > # pkg upgrade -n > Updating repository catalogue > Upgrades have been requested for the following 35 packages: > > Installing xproto: 7.0.25 [FreeBSD] All right, how do I at least figure out which exactly package is trying to install a partucular dependency? I have no X-Window on this box, not a single installed package requires anything X-related, so how do I view the dependency tree? Does pkg calculate dependencies taking into account /var/db/pkg/local.sqlite or on /var/db/pkg/repo-*.sqlite ? There is certainly nothing dependent on X in local.sqlite. > Installing libXdmcp: 1.1.1_2 [FreeBSD] > Installing libXau: 1.0.8_2 [FreeBSD] > Installing libxml2: 2.9.1_1 [sibptus] > Installing libpthread-stubs: 0.3_4 [FreeBSD] > Installing kbproto: 1.0.6 [FreeBSD] > Installing fixesproto: 5.0 [FreeBSD] > Installing xextproto: 7.3.0 [FreeBSD] > Installing inputproto: 2.3 [FreeBSD] > Installing libICE: 1.0.8_2,1 [FreeBSD] > Installing xf86vidmodeproto: 2.3.1 [FreeBSD] > Installing damageproto: 1.2.1 [FreeBSD] > Installing dri2proto: 2.8 [FreeBSD] > Installing pciids: 20140502 [FreeBSD] > Installing randrproto: 1.4.0 [FreeBSD] > Installing renderproto: 0.11.1 [FreeBSD] > Installing libxcb: 1.10_2 [FreeBSD] > Installing libSM: 1.2.2_2,1 [FreeBSD] > Installing libpciaccess: 0.13.2_2 [FreeBSD] > Installing libX11: 1.6.2_2,1 [FreeBSD] > Installing libXext: 1.3.2_2,1 [FreeBSD] > Installing libXt: 1.1.4_2,1 [FreeBSD] > Installing libXxf86vm: 1.1.3_2 [FreeBSD] > Installing libdrm: 2.4.17_1 [FreeBSD] > Installing libXrender: 0.9.8_2 [FreeBSD] > Installing libXfixes: 5.0.1_2 [FreeBSD] > Installing libXmu: 1.1.2_2,1 [FreeBSD] > Installing libXdamage: 1.1.4_2 [FreeBSD] > Installing libXrandr: 1.4.2_2 [FreeBSD] > Installing libXi: 1.7.2_2,1 [FreeBSD] > Installing libGL: 7.6.1_4 [FreeBSD] > Installing libGLU: 9.0.0 [FreeBSD] > Installing freeglut: 2.8.1_2 [FreeBSD] > > The upgrade will require 33 MB more space > > 7 MB to be downloaded > # > -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Thu May 22 05:47:33 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C1773A79 for ; Thu, 22 May 2014 05:47:33 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 2BBB028FA for ; Thu, 22 May 2014 05:47:32 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35519789 for freebsd-pkg@freebsd.org; Thu, 22 May 2014 12:47:30 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s4M5lUlJ082538 for ; Thu, 22 May 2014 12:47:30 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s4M5lU2d082537 for freebsd-pkg@freebsd.org; Thu, 22 May 2014 12:47:30 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Thu, 22 May 2014 12:47:30 +0700 From: Victor Sudakov To: freebsd-pkg@freebsd.org Subject: Re: "pkg upgrade" is trying to install phantom dependencies Message-ID: <20140522054730.GA82317@admin.sibptus.tomsk.ru> References: <20140521043514.GD41900@admin.sibptus.tomsk.ru> <20140522051625.GA80949@admin.sibptus.tomsk.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140522051625.GA80949@admin.sibptus.tomsk.ru> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2014 05:47:33 -0000 The same problem, a different view. Please see output below. Who installed gettext and why? It's not required by any package: [root@ftp ~] pkg upgrade -y Updating repository catalogue Upgrades have been requested for the following 5 packages: Installing gettext: 0.18.3.1_1 [sibptus] Upgrading py27-subversion: 1.8.8_2 -> 1.8.9 [sibptus] Upgrading sqlite3: 3.8.4.2 -> 3.8.4.3 [sibptus] Upgrading subversion: 1.8.8_2 -> 1.8.9 [sibptus] Upgrading vim-lite: 7.4.265 -> 7.4.281 [FreeBSD] The upgrade will require 9 MB more space 9 MB to be downloaded gettext-0.18.3.1_1.txz 100% 2066KB 2.0MB/s 2.0MB/s 00:00 py27-subversion-1.8.9.txz 100% 525KB 525.3KB/s 525.3KB/s 00:00 sqlite3-3.8.4.3.txz 100% 629KB 629.3KB/s 629.3KB/s 00:00 subversion-1.8.9.txz 100% 2138KB 2.1MB/s 2.1MB/s 00:00 vim-lite-7.4.281.txz 100% 4643KB 1.5MB/s 1.3MB/s 00:03 Checking integrity... done [1/5] Installing gettext-0.18.3.1_1... done [2/5] Upgrading py27-subversion from 1.8.8_2 to 1.8.9... done [3/5] Upgrading sqlite3 from 3.8.4.2 to 3.8.4.3... done [4/5] Upgrading subversion from 1.8.8_2 to 1.8.9... done [5/5] Upgrading vim-lite from 7.4.265 to 7.4.281... done [root@ftp ~] pkg info -r gettext gettext-0.18.3.1_1: [root@ftp ~] [root@ftp ~] pkg autoremove Deinstallation has been requested for the following 1 packages: gettext-0.18.3.1_1 The deinstallation will free 9 MB Proceed with deinstalling packages [y/N]: y [1/1] Deleting gettext-0.18.3.1_1... done [root@ftp ~] Why does pkg bother to install gettext at all? -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Thu May 22 07:02:16 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A1DD1BB7 for ; Thu, 22 May 2014 07:02:16 +0000 (UTC) Received: from mail-wg0-x22f.google.com (mail-wg0-x22f.google.com [IPv6:2a00:1450:400c:c00::22f]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 303AD2091 for ; Thu, 22 May 2014 07:02:16 +0000 (UTC) Received: by mail-wg0-f47.google.com with SMTP id x12so2910293wgg.18 for ; Thu, 22 May 2014 00:02:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=jpeobrWy0jey0xs9EVduxxVcROplnjOojd96BeXTYDs=; b=KzISH/4P0yYGBxQKjQneAal9OVQEWN91eW17DX9zVV5MXz+Y0VYqZ7UxPc3YIoGVC7 dnRTbIS6qOBFZA4FRDN5wEggaRiEhXzL6Cb909VgTpIFLpFbF15fx0Mmm5PAnqgJZ9aK hOiarrFiurUy1tvRaBQH84lhfQsIxACGOdGzgMEjFzgo5yr6vYc9uALEqrLS/eocHzq+ dv3zlgFL8p9C3q6RG0/fdV+4wd/hIaQdFKZ0DQa2wAzWXA5OBkFdpuS+IDj85g4skXur LHQc9ogCEuHuWUY4As+5M06k5LGPQIuqngn5/+ITKYpx4n3KVvYrKuUO0RBgO0bahDIU A3UA== X-Received: by 10.180.77.70 with SMTP id q6mr14757357wiw.28.1400742134332; Thu, 22 May 2014 00:02:14 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by mx.google.com with ESMTPSA id dz5sm6324662wib.22.2014.05.22.00.02.12 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 22 May 2014 00:02:13 -0700 (PDT) Sender: Baptiste Daroussin Date: Thu, 22 May 2014 09:02:10 +0200 From: Baptiste Daroussin To: Victor Sudakov Subject: Re: "pkg upgrade" is trying to install phantom dependencies Message-ID: <20140522070210.GB72340@ivaldir.etoilebsd.net> References: <20140521043514.GD41900@admin.sibptus.tomsk.ru> <20140522051625.GA80949@admin.sibptus.tomsk.ru> <20140522054730.GA82317@admin.sibptus.tomsk.ru> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PmA2V3Z32TCmWXqI" Content-Disposition: inline In-Reply-To: <20140522054730.GA82317@admin.sibptus.tomsk.ru> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2014 07:02:16 -0000 --PmA2V3Z32TCmWXqI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, May 22, 2014 at 12:47:30PM +0700, Victor Sudakov wrote: > The same problem, a different view. Please see output below. > Who installed gettext and why? It's not required by any package: >=20 > [root@ftp ~] pkg upgrade -y > Updating repository catalogue > Upgrades have been requested for the following 5 packages: >=20 > Installing gettext: 0.18.3.1_1 [sibptus] > Upgrading py27-subversion: 1.8.8_2 -> 1.8.9 [sibptus] > Upgrading sqlite3: 3.8.4.2 -> 3.8.4.3 [sibptus] > Upgrading subversion: 1.8.8_2 -> 1.8.9 [sibptus] > Upgrading vim-lite: 7.4.265 -> 7.4.281 [FreeBSD] >=20 > The upgrade will require 9 MB more space >=20 > 9 MB to be downloaded > gettext-0.18.3.1_1.txz 100% 2066KB 2.0MB/s 2.0MB/s 00:= 00 > py27-subversion-1.8.9.txz 100% 525KB 525.3KB/s 525.3KB/s 00:= 00 > sqlite3-3.8.4.3.txz 100% 629KB 629.3KB/s 629.3KB/s 00:= 00 > subversion-1.8.9.txz 100% 2138KB 2.1MB/s 2.1MB/s 00:= 00 > vim-lite-7.4.281.txz 100% 4643KB 1.5MB/s 1.3MB/s 00:= 03 > Checking integrity... done > [1/5] Installing gettext-0.18.3.1_1... done > [2/5] Upgrading py27-subversion from 1.8.8_2 to 1.8.9... done > [3/5] Upgrading sqlite3 from 3.8.4.2 to 3.8.4.3... done > [4/5] Upgrading subversion from 1.8.8_2 to 1.8.9... done > [5/5] Upgrading vim-lite from 7.4.265 to 7.4.281... done > [root@ftp ~] pkg info -r gettext > gettext-0.18.3.1_1: > [root@ftp ~] > [root@ftp ~] pkg autoremove > Deinstallation has been requested for the following 1 packages: >=20 > gettext-0.18.3.1_1 >=20 > The deinstallation will free 9 MB >=20 > Proceed with deinstalling packages [y/N]: y > [1/1] Deleting gettext-0.18.3.1_1... done > [root@ftp ~] >=20 > Why does pkg bother to install gettext at all? Because of a bug in the solver in pkg 1.2 with multirepo it has been solved= in pkg 1.3 regards, Bapt --PmA2V3Z32TCmWXqI Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iEYEARECAAYFAlN9oPIACgkQ8kTtMUmk6Ewb/gCgrecpIDGPYDYOLNI7WbbkgRGl 3y0AniAiK82Opcrs93lHKJJWdmhIaKQP =oQeT -----END PGP SIGNATURE----- --PmA2V3Z32TCmWXqI-- From owner-freebsd-pkg@FreeBSD.ORG Thu May 22 07:17:44 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3D362F7C; Thu, 22 May 2014 07:17:44 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id C417B21C6; Thu, 22 May 2014 07:17:42 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35519896; Thu, 22 May 2014 14:17:40 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s4M7Heur086251; Thu, 22 May 2014 14:17:40 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s4M7Hekk086250; Thu, 22 May 2014 14:17:40 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Thu, 22 May 2014 14:17:40 +0700 From: Victor Sudakov To: Baptiste Daroussin , freebsd-pkg@freebsd.org Subject: Re: "pkg upgrade" is trying to install phantom dependencies Message-ID: <20140522071740.GA83496@admin.sibptus.tomsk.ru> References: <20140521043514.GD41900@admin.sibptus.tomsk.ru> <20140522051625.GA80949@admin.sibptus.tomsk.ru> <20140522054730.GA82317@admin.sibptus.tomsk.ru> <20140522070210.GB72340@ivaldir.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140522070210.GB72340@ivaldir.etoilebsd.net> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2014 07:17:44 -0000 Baptiste Daroussin wrote: [dd] > > [root@ftp ~] pkg autoremove > > Deinstallation has been requested for the following 1 packages: > > > > gettext-0.18.3.1_1 > > > > The deinstallation will free 9 MB > > > > Proceed with deinstalling packages [y/N]: y > > [1/1] Deleting gettext-0.18.3.1_1... done > > [root@ftp ~] > > > > Why does pkg bother to install gettext at all? > > Because of a bug in the solver in pkg 1.2 with multirepo it has been > solved in pkg 1.3 > How do I switch to pkg 1.3 ? -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Thu May 22 07:32:51 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C0126C9 for ; Thu, 22 May 2014 07:32:51 +0000 (UTC) Received: from mail-wi0-x235.google.com (mail-wi0-x235.google.com [IPv6:2a00:1450:400c:c05::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 08CAE235B for ; Thu, 22 May 2014 07:32:50 +0000 (UTC) Received: by mail-wi0-f181.google.com with SMTP id n15so3892564wiw.8 for ; Thu, 22 May 2014 00:32:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=L6CxAd+o6N2VfVv9WuQ3OJSZh1bu36AwTVDcNiIZ4I8=; b=lmAtPY/wNcIjb3Pp9tW1qjNrnQJCDPCKhTek7pcbqP96V09q2tzn4v5RHJtzRs4HV9 NOM0RqgJNLPw317qSoGfkSjeWrd+WxLDM26jZtFDZ0WdgZsGO5Kf5kP6YTmzpodah7Vo zNrr4OvB0SBBrEAcKLnj0ppiCkQWs50Ad7QdZSvuFaAvEcTQyCpFqBENv2NKIv10joKE UIR+8q/6FDJVtbseNpdYe6y5D0hX5gyJENGCFzsptJ/RfWuF8rtUST5J7fYyhPqiB30y zKc7QSLhhfZqluJV5hov1jKdubcuSABYeyP1M/2GNJiCGU3l43X/gpSfIP52EW1JTrU3 nNgQ== X-Received: by 10.194.9.8 with SMTP id v8mr36504995wja.53.1400743969110; Thu, 22 May 2014 00:32:49 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by mx.google.com with ESMTPSA id lo18sm6475240wic.1.2014.05.22.00.32.47 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 22 May 2014 00:32:47 -0700 (PDT) Sender: Baptiste Daroussin Date: Thu, 22 May 2014 09:32:45 +0200 From: Baptiste Daroussin To: Victor Sudakov Subject: Re: "pkg upgrade" is trying to install phantom dependencies Message-ID: <20140522073245.GC72340@ivaldir.etoilebsd.net> References: <20140521043514.GD41900@admin.sibptus.tomsk.ru> <20140522051625.GA80949@admin.sibptus.tomsk.ru> <20140522054730.GA82317@admin.sibptus.tomsk.ru> <20140522070210.GB72340@ivaldir.etoilebsd.net> <20140522071740.GA83496@admin.sibptus.tomsk.ru> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nmemrqcdn5VTmUEE" Content-Disposition: inline In-Reply-To: <20140522071740.GA83496@admin.sibptus.tomsk.ru> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2014 07:32:51 -0000 --nmemrqcdn5VTmUEE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, May 22, 2014 at 02:17:40PM +0700, Victor Sudakov wrote: > Baptiste Daroussin wrote: >=20 > [dd] >=20 > > > [root@ftp ~] pkg autoremove > > > Deinstallation has been requested for the following 1 packages: > > >=20 > > > gettext-0.18.3.1_1 > > >=20 > > > The deinstallation will free 9 MB > > >=20 > > > Proceed with deinstalling packages [y/N]: y > > > [1/1] Deleting gettext-0.18.3.1_1... done > > > [root@ftp ~] > > >=20 > > > Why does pkg bother to install gettext at all? > >=20 > > Because of a bug in the solver in pkg 1.2 with multirepo it has been > > solved in pkg 1.3 > >=20 >=20 > How do I switch to pkg 1.3 ? >=20 it is in ports-mgmt/pkg-devel but it is still in beta state so just be care= ful when using it. WITH_PKGNG=3Ddevel in make.conf will make it the default pkg set -o ports-mgmt/pkg:ports-mgmt/pkg-devel Will make the above switch to pkg-devel has package manager regards, Bapt --nmemrqcdn5VTmUEE Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iEYEARECAAYFAlN9qB0ACgkQ8kTtMUmk6ExPIwCbBKvtIN+VnqBkFnsD36w/p7Hx zV0AnRMaV8E+s28HR6jmKlT16dKI2xLp =vgS9 -----END PGP SIGNATURE----- --nmemrqcdn5VTmUEE-- From owner-freebsd-pkg@FreeBSD.ORG Thu May 22 08:31:43 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1979AB3B; Thu, 22 May 2014 08:31:43 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 680CC280E; Thu, 22 May 2014 08:31:41 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35519986; Thu, 22 May 2014 15:31:39 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s4M8Vd03089322; Thu, 22 May 2014 15:31:39 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s4M8VdtW089321; Thu, 22 May 2014 15:31:39 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Thu, 22 May 2014 15:31:39 +0700 From: Victor Sudakov To: Baptiste Daroussin , freebsd-pkg@freebsd.org Subject: Re: "pkg upgrade" is trying to install phantom dependencies Message-ID: <20140522083139.GA88790@admin.sibptus.tomsk.ru> References: <20140521043514.GD41900@admin.sibptus.tomsk.ru> <20140522051625.GA80949@admin.sibptus.tomsk.ru> <20140522054730.GA82317@admin.sibptus.tomsk.ru> <20140522070210.GB72340@ivaldir.etoilebsd.net> <20140522071740.GA83496@admin.sibptus.tomsk.ru> <20140522073245.GC72340@ivaldir.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140522073245.GC72340@ivaldir.etoilebsd.net> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2014 08:31:43 -0000 Baptiste Daroussin wrote: > > How do I switch to pkg 1.3 ? > > > > it is in ports-mgmt/pkg-devel but it is still in beta state so just be careful > when using it. > WITH_PKGNG=devel in make.conf will make it the default > pkg set -o ports-mgmt/pkg:ports-mgmt/pkg-devel > Will make the above switch to pkg-devel has package manager After switching to pkg 1.3, it does not like the public key of my local repository. What could be wrong? It did work with 1.2 pkg: http://svn.sibptus.ru/packages/freebsd:9:x86:32/meta.txz: Not Found pkg: repository repo-sibptus has no meta file, use default settings digests.txz 100% 8556 8.6kB/s 00:00 pkg: -----BEGIN PUBLIC KEY----- MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyJRgYhiVFCz/xF3vPGmY 9tuvVRHSy4OO/bfNTeR5LgkovL2qBpKZJt9RQT2/DHiFZ++7g34DXRgo4KsfCtL5 fxTrRZnohcYnWVetp23g0Fk6HrXhCzN7hNH4X7SsB7A5K/ixBE1URNdi6fBF7aq2 /FHdVFPJWcdj6STLB7TZ+eitdrjQManSQjQYU9OV62Bhob5Iyz8u/Nca8g3CbyjB pCytz2+ci/WRBBQcblKL0bsqEiS/Y5YTxC6pxVt5rNgXsZr2/QjIXoBYzqO0Uv0e qS7+Eqne5/ujhsf6t7bAXFIYL4hOHCAVAg2khM6VSH8R+D3HeS9gN6EkqCopbSng sBsynxtM9R7IlvsCrVGCQjhJFCOjFqo4azdHwxzdlz5oWDIcD9msnf6t9CSXMraR K2iH3sXqzMatTPUPmnscGMTlD4OY0tuy7k6RUUEljcQz4A+2rjApDAGe4eduuMQf ZkNzu4C8qACniDYOrU+3Z9it+J0ZP6tSbp9OZe0mD+Li5POJf0r0/o44M0v9jJP2 X213UzmWb3lNtsK226pz+ii26NxglgW1WxS8tmIIr/5byrxyJL+A4mxL3YEgrMO7 DgQPMyZfLw+USXzRsjxP+0wQeL9JEpPk8lB8QMajNP1eZTYlB88KAqwTgWWZFGAP xSHALhNbgvOpU1REXPnZE/MCAwEAAQ== -----END PUBLIC KEY----- : error:04077068:rsa routines:RSA_verify:bad signature pkg: Invalid signature, removing repository. pkg: Unable to find catalogs # -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Thu May 22 09:36:54 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E07C2F9C for ; Thu, 22 May 2014 09:36:54 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 9CB912DA9 for ; Thu, 22 May 2014 09:36:52 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35520061 for freebsd-pkg@freebsd.org; Thu, 22 May 2014 16:36:50 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s4M9aoqh092278 for ; Thu, 22 May 2014 16:36:50 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s4M9ao7L092277 for freebsd-pkg@freebsd.org; Thu, 22 May 2014 16:36:50 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Thu, 22 May 2014 16:36:50 +0700 From: Victor Sudakov To: freebsd-pkg@freebsd.org Subject: Re: "pkg upgrade" is trying to install phantom dependencies Message-ID: <20140522093649.GA91340@admin.sibptus.tomsk.ru> References: <20140521043514.GD41900@admin.sibptus.tomsk.ru> <20140522051625.GA80949@admin.sibptus.tomsk.ru> <20140522054730.GA82317@admin.sibptus.tomsk.ru> <20140522070210.GB72340@ivaldir.etoilebsd.net> <20140522071740.GA83496@admin.sibptus.tomsk.ru> <20140522073245.GC72340@ivaldir.etoilebsd.net> <20140522083139.GA88790@admin.sibptus.tomsk.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140522083139.GA88790@admin.sibptus.tomsk.ru> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2014 09:36:55 -0000 Victor Sudakov wrote: > > Will make the above switch to pkg-devel has package manager > > After switching to pkg 1.3, it does not like the public key of my > local repository. Well, for testing purposes I have ditched the public key. Now I see a cyclic "pkg upgrade" which is never satisfied, reinstalling packages over and over again. Please have a look at the output: Script started on Thu May 22 22:45:05 2014 You have mail. root@pkgng:~ # pkg upgrade -y Updating repository catalogue pkg: http://pkg.FreeBSD.org/freebsd:9:x86:32/latest/meta.txz: Not Found pkg: repository repo-FreeBSD has no meta file, use default settings FreeBSD repository catalogue is up-to-date, no need to fetch fresh copy pkg: http://svn.sibptus.ru/packages/freebsd:9:x86:32/meta.txz: Not Found pkg: repository repo-sibptus has no meta file, use default settings sibptus repository catalogue is up-to-date, no need to fetch fresh copy The following 22 packages will be affected (of 187 checked): Installed packages to be REINSTALLED: gmake-3.82_1 [FreeBSD] (options changed) libgpg-error-1.13 [FreeBSD] (options changed) libxslt-1.1.28_3 [FreeBSD] (needed shared library changed) mc-light-4.1.40.p9_9 [sibptus] (options changed) gawk-4.1.1 [FreeBSD] (options changed) mercurial-3.0 [FreeBSD] (options changed) python27-2.7.6_4 [sibptus] (options changed) nginx-devel-1.7.0 [FreeBSD] (options changed) php5-5.4.28 [FreeBSD] (needed shared library changed) php5-curl-5.4.28 [FreeBSD] (needed shared library changed) curl-7.36.0 [sibptus] (options changed) php5-dom-5.4.28 [FreeBSD] (needed shared library changed) php5-extensions-1.7 [sibptus] (options changed) php5-xmlwriter-5.4.28 [FreeBSD] (needed shared library changed) php5-xmlreader-5.4.28 [FreeBSD] (needed shared library changed) php5-xml-5.4.28 [FreeBSD] (needed shared library changed) php5-simplexml-5.4.28 [FreeBSD] (needed shared library changed) php5-xsl-5.4.28 [FreeBSD] (needed shared library changed) php5-gd-5.4.28 [FreeBSD] (options changed) t1lib-5.1.2_2,1 [FreeBSD] (options changed) wget-1.15 [sibptus] (options changed) libidn-1.28_1 [sibptus] (options changed) The process will require 4 MB more space Checking integrity... done (0 conflicting) [1/22] Reinstalling libgpg-error-1.13... done [2/22] Reinstalling php5-5.4.28... done [3/22] Reinstalling t1lib-5.1.2_2,1... done [4/22] Reinstalling libidn-1.28_1... done [5/22] Reinstalling libxslt-1.1.28_3... done [6/22] Reinstalling python27-2.7.6_4...pkg: rmdir(/usr/local/lib/python2.7/site-packages/): Directory not empty pkg: rmdir(/usr/local/lib/python2.7/): Directory not empty done [7/22] Reinstalling curl-7.36.0... done [8/22] Reinstalling php5-dom-5.4.28... done [9/22] Reinstalling php5-xml-5.4.28... done [10/22] Reinstalling php5-gd-5.4.28... done [11/22] Reinstalling gawk-4.1.1... done [12/22] Reinstalling php5-curl-5.4.28... done [13/22] Reinstalling php5-xmlwriter-5.4.28... done [14/22] Reinstalling php5-xmlreader-5.4.28... done [15/22] Reinstalling php5-simplexml-5.4.28... done [16/22] Reinstalling php5-xsl-5.4.28... done [17/22] Reinstalling gmake-3.82_1... done [18/22] Reinstalling mc-light-4.1.40.p9_9... done [19/22] Reinstalling mercurial-3.0... done [20/22] Reinstalling nginx-devel-1.7.0...===> Creating users and/or groups. Using existing group 'www'. Using existing user 'www'. done [21/22] Reinstalling php5-extensions-1.7... done [22/22] Reinstalling wget-1.15... done root@pkgng:~ # root@pkgng:~ # pkg upgrade -y Updating repository catalogue pkg: http://pkg.FreeBSD.org/freebsd:9:x86:32/latest/meta.txz: Not Found pkg: repository repo-FreeBSD has no meta file, use default settings FreeBSD repository catalogue is up-to-date, no need to fetch fresh copy pkg: http://svn.sibptus.ru/packages/freebsd:9:x86:32/meta.txz: Not Found pkg: repository repo-sibptus has no meta file, use default settings sibptus repository catalogue is up-to-date, no need to fetch fresh copy The following 22 packages will be affected (of 187 checked): Installed packages to be REINSTALLED: gmake-3.82_1 [sibptus] (options changed) libidn-1.28_1 [FreeBSD] (options changed) mc-light-4.1.40.p9_9 [FreeBSD] (options changed) gawk-4.1.1 [sibptus] (options changed) mercurial-3.0 [sibptus] (options changed) python27-2.7.6_4 [FreeBSD] (options changed) nginx-devel-1.7.0 [sibptus] (options changed) php5-5.4.28 [sibptus] (needed shared library changed) php5-curl-5.4.28 [sibptus] (needed shared library changed) curl-7.36.0 [FreeBSD] (options changed) php5-extensions-1.7 [FreeBSD] (options changed) php5-xsl-5.4.28 [sibptus] (needed shared library changed) php5-xmlwriter-5.4.28 [sibptus] (needed shared library changed) php5-xmlreader-5.4.28 [sibptus] (needed shared library changed) php5-xml-5.4.28 [sibptus] (needed shared library changed) php5-simplexml-5.4.28 [sibptus] (needed shared library changed) php5-dom-5.4.28 [sibptus] (needed shared library changed) php5-gd-5.4.28 [sibptus] (options changed) wget-1.15 [FreeBSD] (options changed) libgpg-error-1.13 [sibptus] (options changed) libxslt-1.1.28_3 [sibptus] (needed shared library changed) t1lib-5.1.2_2,1 [sibptus] (options changed) The operation will free 4 MB Checking integrity... done (0 conflicting) [1/22] Reinstalling php5-5.4.28... done [2/22] Reinstalling libgpg-error-1.13... done [3/22] Reinstalling libidn-1.28_1... done [4/22] Reinstalling python27-2.7.6_4...pkg: rmdir(/usr/local/lib/python2.7/site-packages/): Directory not empty pkg: rmdir(/usr/local/lib/python2.7/): Directory not empty done [5/22] Reinstalling php5-dom-5.4.28... done [6/22] Reinstalling gawk-4.1.1... done [7/22] Reinstalling curl-7.36.0... done [8/22] Reinstalling php5-xmlwriter-5.4.28... done [9/22] Reinstalling php5-xmlreader-5.4.28... done [10/22] Reinstalling php5-xml-5.4.28... done [11/22] Reinstalling php5-simplexml-5.4.28... done [12/22] Reinstalling libxslt-1.1.28_3... done [13/22] Reinstalling t1lib-5.1.2_2,1... done [14/22] Reinstalling gmake-3.82_1... done [15/22] Reinstalling mc-light-4.1.40.p9_9... done [16/22] Reinstalling mercurial-3.0... done [17/22] Reinstalling nginx-devel-1.7.0...===> Creating users and/or groups. Using existing group 'www'. Using existing user 'www'. done [18/22] Reinstalling php5-curl-5.4.28... done [19/22] Reinstalling php5-extensions-1.7... done [20/22] Reinstalling php5-xsl-5.4.28... done [21/22] Reinstalling php5-gd-5.4.28... done [22/22] Reinstalling wget-1.15... done root@pkgng:~ # pkg upgrade -y Updating repository catalogue pkg: http://pkg.FreeBSD.org/freebsd:9:x86:32/latest/meta.txz: Not Found pkg: repository repo-FreeBSD has no meta file, use default settings FreeBSD repository catalogue is up-to-date, no need to fetch fresh copy pkg: http://svn.sibptus.ru/packages/freebsd:9:x86:32/meta.txz: Not Found pkg: repository repo-sibptus has no meta file, use default settings sibptus repository catalogue is up-to-date, no need to fetch fresh copy The following 22 packages will be affected (of 187 checked): Installed packages to be REINSTALLED: gmake-3.82_1 [FreeBSD] (options changed) libgpg-error-1.13 [FreeBSD] (options changed) libxslt-1.1.28_3 [FreeBSD] (needed shared library changed) mc-light-4.1.40.p9_9 [sibptus] (options changed) gawk-4.1.1 [FreeBSD] (options changed) mercurial-3.0 [FreeBSD] (options changed) python27-2.7.6_4 [sibptus] (options changed) nginx-devel-1.7.0 [FreeBSD] (options changed) php5-5.4.28 [FreeBSD] (needed shared library changed) php5-curl-5.4.28 [FreeBSD] (needed shared library changed) curl-7.36.0 [sibptus] (options changed) php5-dom-5.4.28 [FreeBSD] (needed shared library changed) php5-extensions-1.7 [sibptus] (options changed) php5-xmlwriter-5.4.28 [FreeBSD] (needed shared library changed) php5-xmlreader-5.4.28 [FreeBSD] (needed shared library changed) php5-xml-5.4.28 [FreeBSD] (needed shared library changed) php5-simplexml-5.4.28 [FreeBSD] (needed shared library changed) php5-xsl-5.4.28 [FreeBSD] (needed shared library changed) php5-gd-5.4.28 [FreeBSD] (options changed) t1lib-5.1.2_2,1 [FreeBSD] (options changed) wget-1.15 [sibptus] (options changed) libidn-1.28_1 [sibptus] (options changed) The process will require 4 MB more space Checking integrity... done (0 conflicting) [1/22] Reinstalling libgpg-error-1.13... done [2/22] Reinstalling php5-5.4.28... done [3/22] Reinstalling t1lib-5.1.2_2,1... done [4/22] Reinstalling libidn-1.28_1... done [5/22] Reinstalling libxslt-1.1.28_3... done [6/22] Reinstalling python27-2.7.6_4...pkg: rmdir(/usr/local/lib/python2.7/site-packages/): Directory not empty pkg: rmdir(/usr/local/lib/python2.7/): Directory not empty done [7/22] Reinstalling curl-7.36.0... done [8/22] Reinstalling php5-dom-5.4.28... done [9/22] Reinstalling php5-xml-5.4.28... done [10/22] Reinstalling php5-gd-5.4.28... done [11/22] Reinstalling gawk-4.1.1... done [12/22] Reinstalling php5-curl-5.4.28... done [13/22] Reinstalling php5-xmlwriter-5.4.28... done [14/22] Reinstalling php5-xmlreader-5.4.28... done [15/22] Reinstalling php5-simplexml-5.4.28... done [16/22] Reinstalling php5-xsl-5.4.28... done [17/22] Reinstalling gmake-3.82_1... done [18/22] Reinstalling mc-light-4.1.40.p9_9... done [19/22] Reinstalling mercurial-3.0... done [20/22] Reinstalling nginx-devel-1.7.0...===> Creating users and/or groups. Using existing group 'www'. Using existing user 'www'. done [21/22] Reinstalling php5-extensions-1.7... done [22/22] Reinstalling wget-1.15... done root@pkgng:~ # pkg upgrade -y Updating repository catalogue pkg: http://pkg.FreeBSD.org/freebsd:9:x86:32/latest/meta.txz: Not Found pkg: repository repo-FreeBSD has no meta file, use default settings FreeBSD repository catalogue is up-to-date, no need to fetch fresh copy pkg: http://svn.sibptus.ru/packages/freebsd:9:x86:32/meta.txz: Not Found pkg: repository repo-sibptus has no meta file, use default settings sibptus repository catalogue is up-to-date, no need to fetch fresh copy The following 22 packages will be affected (of 187 checked): Installed packages to be REINSTALLED: gmake-3.82_1 [sibptus] (options changed) libidn-1.28_1 [FreeBSD] (options changed) mc-light-4.1.40.p9_9 [FreeBSD] (options changed) gawk-4.1.1 [sibptus] (options changed) mercurial-3.0 [sibptus] (options changed) python27-2.7.6_4 [FreeBSD] (options changed) nginx-devel-1.7.0 [sibptus] (options changed) php5-5.4.28 [sibptus] (needed shared library changed) php5-curl-5.4.28 [sibptus] (needed shared library changed) curl-7.36.0 [FreeBSD] (options changed) php5-extensions-1.7 [FreeBSD] (options changed) php5-xsl-5.4.28 [sibptus] (needed shared library changed) php5-xmlwriter-5.4.28 [sibptus] (needed shared library changed) php5-xmlreader-5.4.28 [sibptus] (needed shared library changed) php5-xml-5.4.28 [sibptus] (needed shared library changed) php5-simplexml-5.4.28 [sibptus] (needed shared library changed) php5-dom-5.4.28 [sibptus] (needed shared library changed) php5-gd-5.4.28 [sibptus] (options changed) wget-1.15 [FreeBSD] (options changed) libgpg-error-1.13 [sibptus] (options changed) libxslt-1.1.28_3 [sibptus] (needed shared library changed) t1lib-5.1.2_2,1 [sibptus] (options changed) The operation will free 4 MB Checking integrity... done (0 conflicting) [1/22] Reinstalling php5-5.4.28... done [2/22] Reinstalling libgpg-error-1.13... done [3/22] Reinstalling libidn-1.28_1... done [4/22] Reinstalling python27-2.7.6_4...pkg: rmdir(/usr/local/lib/python2.7/site-packages/): Directory not empty pkg: rmdir(/usr/local/lib/python2.7/): Directory not empty done [5/22] Reinstalling php5-dom-5.4.28... done [6/22] Reinstalling gawk-4.1.1... done [7/22] Reinstalling curl-7.36.0... done [8/22] Reinstalling php5-xmlwriter-5.4.28... done [9/22] Reinstalling php5-xmlreader-5.4.28... done [10/22] Reinstalling php5-xml-5.4.28... done [11/22] Reinstalling php5-simplexml-5.4.28... done [12/22] Reinstalling libxslt-1.1.28_3... done [13/22] Reinstalling t1lib-5.1.2_2,1... done [14/22] Reinstalling gmake-3.82_1... done [15/22] Reinstalling mc-light-4.1.40.p9_9... done [16/22] Reinstalling mercurial-3.0... done [17/22] Reinstalling nginx-devel-1.7.0...===> Creating users and/or groups. Using existing group 'www'. Using existing user 'www'. done [18/22] Reinstalling php5-curl-5.4.28... done [19/22] Reinstalling php5-extensions-1.7... done [20/22] Reinstalling php5-xsl-5.4.28... done [21/22] Reinstalling php5-gd-5.4.28... done [22/22] Reinstalling wget-1.15... done root@pkgng:~ # exit Script done on Thu May 22 22:47:00 2014 -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Thu May 22 16:53:48 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52AAD72C for ; Thu, 22 May 2014 16:53:48 +0000 (UTC) Received: from mail-oa0-x234.google.com (mail-oa0-x234.google.com [IPv6:2607:f8b0:4003:c02::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1EFCE2591 for ; Thu, 22 May 2014 16:53:48 +0000 (UTC) Received: by mail-oa0-f52.google.com with SMTP id eb12so4304483oac.39 for ; Thu, 22 May 2014 09:53:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=T4VRxULLnlVpc+2yJBsRyJU79xUkM8z4S4Y/Q0Z6YnM=; b=ddpTKRPk823MzQ1z87sx59JcKqb0zpOh8bQjEjFtfHpNW0I/VOPtQVtDaleX7WHpQ6 g2RTlRYkDrBptII51o5mb9vIXD2/3fh2wpow1xXiVPohOS5pU3mYeprMQoVYccaaYY4Q yH9x0WvoDAMIOFPZ2JvED1JhmRp7pk3KcM2Hif2+b3JGdOJwuHGz824PCaa9KxIDCJli 9CfTdqUKw+P4FUcG2RGhvFlB8ou+ASMl8qcSskJvRE0vxp7AXsIEbqaJPE5VdFAru2pE 6yTHfeyNm7rnU75+txuwy5Aln6A+OJjP7PVwqObsnju0s3SNuw3YlSrLnOTsPqoEgyMg oUlA== X-Received: by 10.60.131.210 with SMTP id oo18mr28700024oeb.70.1400777627155; Thu, 22 May 2014 09:53:47 -0700 (PDT) MIME-Version: 1.0 Received: by 10.182.52.163 with HTTP; Thu, 22 May 2014 09:53:27 -0700 (PDT) From: Fervent Dissent Date: Fri, 23 May 2014 00:53:27 +0800 Message-ID: Subject: pkg hangs with no error To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2014 16:53:48 -0000 I'm in Taiwan and just now pkg breaks. I have used it before, and I think I was using pkg.tw.FreeBSD.org which responds to pings still. I've tried many modifications to the conf files and the only time I get anything is if I put packagesite: http://pkg.FreeBSD.org/${ABI}/latest or packagesite: pkg+http://pkg.FreeBSD.org/${ABI}/latest into /usr/local/etc/pkg.conf # pkg update Updating repository catalogue is all I see if I use any other form of config or repo file. If I leave the previously working repo file with the additional line in pkg.conf it downloads the 2 files then hangs again. I had to mv the FreeBSD.conf file to another dir because FreeBSD.conf.bck would still get read. Then I got the output at the end of this email. It does nothing but wait. # pkg update pkg: PACKAGESITE in pkg.conf is deprecated. Please create a repository configuration file Updating repository catalogue pkg: Warning: use of http:// URL scheme with SRV records is deprecated: switch to pkg+http:// digests.txz 100% 1094KB 218.7KB/s 313.6KB/s 00:05 pkg: Warning: use of http:// URL scheme with SRV records is deprecated: switch to pkg+http:// packagesite.txz 100% 4906KB 306.6KB/s 786.1KB/s 00:16 Incremental update completed, 22872 packages processed: 0 packages updated, 0 removed and 22872 added. pkg: http://pkg.tw.FreeBSD.org/freebsd:10:x86:64/latest/digests.txz: Operation timed out pkg: Unable to find catalogs # pkg update pkg: PACKAGESITE in pkg.conf is deprecated. Please create a repository configuration file Updating repository catalogue digests.txz 100% 1094KB 273.4KB/s 233.6KB/s 00:04 packagesite.txz 100% 4906KB 4.8MB/s 2.3MB/s 00:01 Incremental update completed, 22872 packages processed: 0 packages updated, 0 removed and 22872 added. pkg: http://pkg.tw.FreeBSD.org/freebsd:10:x86:64/latest/digests.txz: Operation timed out pkg: Unable to find catalogs From owner-freebsd-pkg@FreeBSD.ORG Thu May 22 16:58:58 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0DCD7EB for ; Thu, 22 May 2014 16:58:58 +0000 (UTC) Received: from mail-oa0-x234.google.com (mail-oa0-x234.google.com [IPv6:2607:f8b0:4003:c02::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6A52625C7 for ; Thu, 22 May 2014 16:58:58 +0000 (UTC) Received: by mail-oa0-f52.google.com with SMTP id eb12so4307019oac.11 for ; Thu, 22 May 2014 09:58:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=1mfXoHJxBtfqPKQZYp6BmWfx3XXKqqSZE/SHRbnP4ys=; b=dVcRuxLZX/GYz4w9osnSaLE67pKoKOv9vC4slBxRWqunZPA7Q8mgtt4O8atagxo7wh P1GdRKajU19oMj7K5d+2tFPMNn05kI2rHwatnDI+bg/pXVC0YMSdwc8jvoZrgPWONDYn UtXEvZdZdBiPebxtMy3kkli6lEK/EejPCHN8OEEkBLAvD8Zi5V8jK1KYJaN5d9hGLCt0 eOVdRpVV5idOtfaFjOROh5BRU9/kW3Eg1Dd0p6eUmKQH/SVzH2o3LILokaStVNM4sHO1 fFKsO1KVyJzuV8nIG7WyzRrloCeaE9wJLTwPahbIfNYqFHuTwCoA21d9b1ABf96QyJP6 +GYQ== X-Received: by 10.60.42.144 with SMTP id o16mr53754373oel.47.1400777937721; Thu, 22 May 2014 09:58:57 -0700 (PDT) MIME-Version: 1.0 Received: by 10.182.52.163 with HTTP; Thu, 22 May 2014 09:58:37 -0700 (PDT) In-Reply-To: References: From: Fervent Dissent Date: Fri, 23 May 2014 00:58:37 +0800 Message-ID: Subject: Re: pkg hangs with no error To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2014 16:58:58 -0000 pkg stats pkg: PACKAGESITE in pkg.conf is deprecated. Please create a repository configuration file Local package database: Installed packages: 303 Disk space occupied: 1 GB Remote package database(s): Number of repositories: 2 Packages available: 45622 Unique packages: 23006 Total size of packages: 220 GB FreeBSD satellite 10.0-STABLE FreeBSD 10.0-STABLE #0 r263468M: Fri Mar 21 20:41:11 CST 2014 sara@satellite:/usr/obj/usr/src/sys/NEW amd64 On Fri, May 23, 2014 at 12:53 AM, Fervent Dissent < walkerindarkness@gmail.com> wrote: > I'm in Taiwan and just now pkg breaks. I have used it before, and I think > I was using pkg.tw.FreeBSD.org which responds to pings still. I've tried > many modifications to the conf files and the only time I get anything is if > I put > > packagesite: http://pkg.FreeBSD.org/${ABI}/latest > or packagesite: pkg+http://pkg.FreeBSD.org/${ABI}/latest > into /usr/local/etc/pkg.conf > > # pkg update > Updating repository catalogue > > is all I see if I use any other form of config or repo file. If I leave > the previously working repo file with the additional line in pkg.conf it > downloads the 2 files then hangs again. I had to mv the FreeBSD.conf file > to another dir because FreeBSD.conf.bck would still get read. Then I got > the output at the end of this email. It does nothing but wait. > > > # pkg update > pkg: PACKAGESITE in pkg.conf is deprecated. Please create a repository > configuration file > Updating repository catalogue > pkg: Warning: use of http:// URL scheme with SRV records is deprecated: > switch to pkg+http:// > digests.txz 100% 1094KB 218.7KB/s 313.6KB/s > 00:05 > pkg: Warning: use of http:// URL scheme with SRV records is deprecated: > switch to pkg+http:// > packagesite.txz 100% 4906KB 306.6KB/s 786.1KB/s > 00:16 > Incremental update completed, 22872 packages processed: > 0 packages updated, 0 removed and 22872 added. > pkg: http://pkg.tw.FreeBSD.org/freebsd:10:x86:64/latest/digests.txz: > Operation timed out > pkg: Unable to find catalogs > > > # pkg update > pkg: PACKAGESITE in pkg.conf is deprecated. Please create a repository > configuration file > Updating repository catalogue > digests.txz 100% 1094KB 273.4KB/s 233.6KB/s > 00:04 > packagesite.txz 100% 4906KB 4.8MB/s 2.3MB/s > 00:01 > Incremental update completed, 22872 packages processed: > 0 packages updated, 0 removed and 22872 added. > pkg: http://pkg.tw.FreeBSD.org/freebsd:10:x86:64/latest/digests.txz: > Operation timed out > pkg: Unable to find catalogs > From owner-freebsd-pkg@FreeBSD.ORG Thu May 22 17:03:10 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9FB984E for ; Thu, 22 May 2014 17:03:10 +0000 (UTC) Received: from mail-ob0-x231.google.com (mail-ob0-x231.google.com [IPv6:2607:f8b0:4003:c01::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 929442659 for ; Thu, 22 May 2014 17:03:10 +0000 (UTC) Received: by mail-ob0-f177.google.com with SMTP id wp4so4022948obc.36 for ; Thu, 22 May 2014 10:03:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=eFamo7jvkvzvvOcGUjP4SIEjJoZ7bKOKR9e39mufesc=; b=Py8AheWjaFq3jNNiGMiKcUzstLDlqu00crTOvb5BsZOb++JQpXbnqYnIP+N0cJCA89 +rXZCEuPDQ0zNpWWl4kdUVwuVdroQHATbMH2RhQY2Ibzorl9KPuY2L8wo8RhGogZH6QS QTmTyxgXJIJoKDH+DzWntLpdG+8Q0Aby7VbFfc8BX3Y/s8EZaK3caElq/aTxtg6d/j+Q PC0cioPisDycIP1TAHrBL/krokalhtxIg/vCui7tgNqSj+0fbr9Ttin3MT8C3RD/TvXH TjjtPhxvE8Oxe8NlwMFAZXksYMbip/6+d77qQ4dbxbtlH1dz+Jr4lQotAhZf/ud/xtrZ JJlw== X-Received: by 10.182.97.97 with SMTP id dz1mr60818116obb.13.1400778189955; Thu, 22 May 2014 10:03:09 -0700 (PDT) MIME-Version: 1.0 Received: by 10.182.52.163 with HTTP; Thu, 22 May 2014 10:02:49 -0700 (PDT) In-Reply-To: References: From: Fervent Dissent Date: Fri, 23 May 2014 01:02:49 +0800 Message-ID: Subject: Re: pkg hangs with no error To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2014 17:03:10 -0000 Solved, found I had a copy of Freebsd.conf in /etc/pkg/ On Fri, May 23, 2014 at 12:58 AM, Fervent Dissent < walkerindarkness@gmail.com> wrote: > pkg stats > pkg: PACKAGESITE in pkg.conf is deprecated. Please create a repository > configuration file > Local package database: > Installed packages: 303 > Disk space occupied: 1 GB > > Remote package database(s): > Number of repositories: 2 > Packages available: 45622 > Unique packages: 23006 > Total size of packages: 220 GB > > > FreeBSD satellite 10.0-STABLE FreeBSD 10.0-STABLE #0 r263468M: Fri Mar 21 > 20:41:11 CST 2014 sara@satellite:/usr/obj/usr/src/sys/NEW amd64 > > > On Fri, May 23, 2014 at 12:53 AM, Fervent Dissent < > walkerindarkness@gmail.com> wrote: > >> I'm in Taiwan and just now pkg breaks. I have used it before, and I think >> I was using pkg.tw.FreeBSD.org which responds to pings still. I've tried >> many modifications to the conf files and the only time I get anything is if >> I put >> >> packagesite: http://pkg.FreeBSD.org/${ABI}/latest >> or packagesite: pkg+http://pkg.FreeBSD.org/${ABI}/latest >> into /usr/local/etc/pkg.conf >> >> # pkg update >> Updating repository catalogue >> >> is all I see if I use any other form of config or repo file. If I leave >> the previously working repo file with the additional line in pkg.conf it >> downloads the 2 files then hangs again. I had to mv the FreeBSD.conf file >> to another dir because FreeBSD.conf.bck would still get read. Then I got >> the output at the end of this email. It does nothing but wait. >> >> >> # pkg update >> pkg: PACKAGESITE in pkg.conf is deprecated. Please create a repository >> configuration file >> Updating repository catalogue >> pkg: Warning: use of http:// URL scheme with SRV records is deprecated: >> switch to pkg+http:// >> digests.txz 100% 1094KB 218.7KB/s 313.6KB/s >> 00:05 >> pkg: Warning: use of http:// URL scheme with SRV records is deprecated: >> switch to pkg+http:// >> packagesite.txz 100% 4906KB 306.6KB/s 786.1KB/s >> 00:16 >> Incremental update completed, 22872 packages processed: >> 0 packages updated, 0 removed and 22872 added. >> pkg: http://pkg.tw.FreeBSD.org/freebsd:10:x86:64/latest/digests.txz: >> Operation timed out >> pkg: Unable to find catalogs >> >> >> # pkg update >> pkg: PACKAGESITE in pkg.conf is deprecated. Please create a repository >> configuration file >> Updating repository catalogue >> digests.txz 100% 1094KB 273.4KB/s 233.6KB/s >> 00:04 >> packagesite.txz 100% 4906KB 4.8MB/s 2.3MB/s >> 00:01 >> Incremental update completed, 22872 packages processed: >> 0 packages updated, 0 removed and 22872 added. >> pkg: http://pkg.tw.FreeBSD.org/freebsd:10:x86:64/latest/digests.txz: >> Operation timed out >> pkg: Unable to find catalogs >> > > From owner-freebsd-pkg@FreeBSD.ORG Fri May 23 03:34:19 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4099A92 for ; Fri, 23 May 2014 03:34:19 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 33BDF2AA7 for ; Fri, 23 May 2014 03:34:17 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35521040 for freebsd-pkg@freebsd.org; Fri, 23 May 2014 10:34:16 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s4N3YGkL024055 for ; Fri, 23 May 2014 10:34:16 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s4N3YGCV024054 for freebsd-pkg@freebsd.org; Fri, 23 May 2014 10:34:16 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Fri, 23 May 2014 10:34:16 +0700 From: Victor Sudakov To: freebsd-pkg@freebsd.org Subject: Re: "pkg upgrade" is trying to install phantom dependencies Message-ID: <20140523033416.GA23960@admin.sibptus.tomsk.ru> References: <20140521043514.GD41900@admin.sibptus.tomsk.ru> <20140522051625.GA80949@admin.sibptus.tomsk.ru> <20140522054730.GA82317@admin.sibptus.tomsk.ru> <20140522070210.GB72340@ivaldir.etoilebsd.net> <20140522071740.GA83496@admin.sibptus.tomsk.ru> <20140522073245.GC72340@ivaldir.etoilebsd.net> <20140522083139.GA88790@admin.sibptus.tomsk.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140522083139.GA88790@admin.sibptus.tomsk.ru> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 May 2014 03:34:19 -0000 Victor Sudakov wrote: > > After switching to pkg 1.3, it does not like the public key of my > local repository. What could be wrong? It did work with 1.2 [dd] > > : error:04077068:rsa routines:RSA_verify:bad signature > pkg: Invalid signature, removing repository. > pkg: Unable to find catalogs I have submitted a PR: ports/190129 http://www.freebsd.org/cgi/query-pr.cgi?pr=190129 -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Sat May 24 16:54:19 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1639AE52 for ; Sat, 24 May 2014 16:54:19 +0000 (UTC) Received: from h.highsecure.ru (h.highsecure.ru [144.76.31.167]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C39E22AB5 for ; Sat, 24 May 2014 16:54:18 +0000 (UTC) Received: from [172.24.172.195] (global-2-11.nat.csx.cam.ac.uk [131.111.185.11]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: vsevolod@highsecure.ru) by h.highsecure.ru (Postfix) with ESMTPSA id 53E82300222; Sat, 24 May 2014 18:53:33 +0200 (CEST) Message-ID: <5380CEAD.9040401@FreeBSD.org> Date: Sat, 24 May 2014 17:54:05 +0100 From: Vsevolod Stakhov User-Agent: Mutt/1.5.22 (2013-10-16) MIME-Version: 1.0 To: Victor Sudakov , freebsd-pkg@freebsd.org Subject: Re: "pkg upgrade" is trying to install phantom dependencies References: <20140521043514.GD41900@admin.sibptus.tomsk.ru> <20140522051625.GA80949@admin.sibptus.tomsk.ru> <20140522054730.GA82317@admin.sibptus.tomsk.ru> <20140522070210.GB72340@ivaldir.etoilebsd.net> <20140522071740.GA83496@admin.sibptus.tomsk.ru> <20140522073245.GC72340@ivaldir.etoilebsd.net> <20140522083139.GA88790@admin.sibptus.tomsk.ru> <20140523033416.GA23960@admin.sibptus.tomsk.ru> In-Reply-To: <20140523033416.GA23960@admin.sibptus.tomsk.ru> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 May 2014 16:54:19 -0000 On 23.05.2014 4:34, Victor Sudakov wrote: > Victor Sudakov wrote: >> >> After switching to pkg 1.3, it does not like the public key of my >> local repository. What could be wrong? It did work with 1.2 > > [dd] >> >> : error:04077068:rsa routines:RSA_verify:bad signature >> pkg: Invalid signature, removing repository. >> pkg: Unable to find catalogs > > I have submitted a PR: ports/190129 > http://www.freebsd.org/cgi/query-pr.cgi?pr=190129 > Could you please post the configuration of your repo to test? -- Vsevolod Stakhov From owner-freebsd-pkg@FreeBSD.ORG Sat May 24 16:55:34 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6C39AF1D for ; Sat, 24 May 2014 16:55:34 +0000 (UTC) Received: from h.highsecure.ru (mail6.highsecure.ru [IPv6:2a01:4f8:191:22a6::99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2BCFD2AD1 for ; Sat, 24 May 2014 16:55:34 +0000 (UTC) Received: from [172.24.172.195] (global-2-11.nat.csx.cam.ac.uk [131.111.185.11]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: vsevolod@highsecure.ru) by h.highsecure.ru (Postfix) with ESMTPSA id 04075300231; Sat, 24 May 2014 18:54:53 +0200 (CEST) Message-ID: <5380CEFF.6000701@FreeBSD.org> Date: Sat, 24 May 2014 17:55:27 +0100 From: Vsevolod Stakhov User-Agent: Mutt/1.5.22 (2013-10-16) MIME-Version: 1.0 To: Victor Sudakov , freebsd-pkg@freebsd.org Subject: Re: "pkg upgrade" is trying to install phantom dependencies References: <20140521043514.GD41900@admin.sibptus.tomsk.ru> <20140522051625.GA80949@admin.sibptus.tomsk.ru> <20140522054730.GA82317@admin.sibptus.tomsk.ru> <20140522070210.GB72340@ivaldir.etoilebsd.net> <20140522071740.GA83496@admin.sibptus.tomsk.ru> <20140522073245.GC72340@ivaldir.etoilebsd.net> <20140522083139.GA88790@admin.sibptus.tomsk.ru> <20140522093649.GA91340@admin.sibptus.tomsk.ru> In-Reply-To: <20140522093649.GA91340@admin.sibptus.tomsk.ru> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 May 2014 16:55:34 -0000 On 22.05.2014 10:36, Victor Sudakov wrote: > Victor Sudakov wrote: >>> Will make the above switch to pkg-devel has package manager >> >> After switching to pkg 1.3, it does not like the public key of my >> local repository. > > Well, for testing purposes I have ditched the public key. > > Now I see a cyclic "pkg upgrade" which is never satisfied, > reinstalling packages over and over again. Please have a look at the > output: > I have fixed this issue in the git release of pkg. I would appreciate if you can test this fix in your environment. -- Vsevolod Stakhov From owner-freebsd-pkg@FreeBSD.ORG Sat May 24 17:33:57 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 282EEC9A; Sat, 24 May 2014 17:33:57 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 4509C2D93; Sat, 24 May 2014 17:33:55 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35522782; Sun, 25 May 2014 00:33:52 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s4OHXpq7068784; Sun, 25 May 2014 00:33:52 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s4OHXp41068783; Sun, 25 May 2014 00:33:51 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Sun, 25 May 2014 00:33:51 +0700 From: Victor Sudakov To: Vsevolod Stakhov , freebsd-pkg@freebsd.org Subject: Re: "pkg upgrade" is trying to install phantom dependencies Message-ID: <20140524173350.GA68698@admin.sibptus.tomsk.ru> References: <20140521043514.GD41900@admin.sibptus.tomsk.ru> <20140522051625.GA80949@admin.sibptus.tomsk.ru> <20140522054730.GA82317@admin.sibptus.tomsk.ru> <20140522070210.GB72340@ivaldir.etoilebsd.net> <20140522071740.GA83496@admin.sibptus.tomsk.ru> <20140522073245.GC72340@ivaldir.etoilebsd.net> <20140522083139.GA88790@admin.sibptus.tomsk.ru> <20140523033416.GA23960@admin.sibptus.tomsk.ru> <5380CEAD.9040401@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5380CEAD.9040401@FreeBSD.org> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 May 2014 17:33:57 -0000 Vsevolod Stakhov wrote: > >> > >> After switching to pkg 1.3, it does not like the public key of my > >> local repository. What could be wrong? It did work with 1.2 > > > > [dd] > >> > >> : error:04077068:rsa routines:RSA_verify:bad signature > >> pkg: Invalid signature, removing repository. > >> pkg: Unable to find catalogs > > > > I have submitted a PR: ports/190129 > > http://www.freebsd.org/cgi/query-pr.cgi?pr=190129 > > > > Could you please post the configuration of your repo to test? It's located at http://svn.sibptus.ru/packages/ What kind of configuration should I post? Here is my poudriere config: NO_ZFS=yes FREEBSD_HOST=ftp://ftp.freebsd.org RESOLV_CONF=/etc/resolv.conf BASEFS=/var/poudriere USE_PORTLINT=no DISTFILES_CACHE=/var/poudriere/ports/default/distfiles PKG_REPO_SIGNING_KEY=/usr/local/etc/ssl/keys/pkg.key NOLINUX=yes export HTTP_PROXY=http://proxy.sibptus.ru:3128 export FTP_PROXY=http://proxy.sibptus.ru:3128 export HTTP_PROXY_AUTH='basic:*:XXXXXXX:XXXXXXXXX' -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Thu May 29 18:54:54 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B44A6640 for ; Thu, 29 May 2014 18:54:54 +0000 (UTC) Received: from mail-ie0-x229.google.com (mail-ie0-x229.google.com [IPv6:2607:f8b0:4001:c03::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 861902BF3 for ; Thu, 29 May 2014 18:54:54 +0000 (UTC) Received: by mail-ie0-f169.google.com with SMTP id at1so738162iec.28 for ; Thu, 29 May 2014 11:54:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=cmYzKfYq+LYCCpWQRomccMA0aTlnvXE3kVGoiyHagnw=; b=a2BtaGp2/052dFYbWWRq/eq+7n9p2rOcTgBEkJ2RyypDhrotTfuz4HtOMo0N1F5Ek4 Y90+AqepYY4YBTW586ru/v39EsJatXrAMQwUTl4/N0gqUwHbQ6q5/9BIegllr/esn5Iq NYz/Ji54Ude6R5wHtikSDK82qDrMAWYr/WSDK1x6UzG5be4C9Ps+2NpPidf5m9nqijaM dzR7t1J8N51oEfOKbF0f00IDZ2ewKwYZdwAevXQ8HBAT9uuEQiPgSs9IwiEd7WSwrc/p 5undOOihvVAkd+3DbSFnv8zp3c63PHUr0K3kACLjiN7DA7pY0Od1fJ/eZlaxO/7ge/WW ZISw== MIME-Version: 1.0 X-Received: by 10.42.207.203 with SMTP id fz11mr5128988icb.96.1401389693974; Thu, 29 May 2014 11:54:53 -0700 (PDT) Sender: vrwmiller@gmail.com Received: by 10.64.34.71 with HTTP; Thu, 29 May 2014 11:54:53 -0700 (PDT) Date: Thu, 29 May 2014 14:54:53 -0400 X-Google-Sender-Auth: Rp9pd9aeLAsrr8UD3_SgHVl93bE Message-ID: Subject: Mirroring pkg.freebsd.org? From: Rick Miller To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2014 18:54:54 -0000 Hi all, I found a message in the archives[1] from march 2014 that mentions options for mirroring pkg.freebsd.org were being experimented with. It goes on to say a communique would be issued "soon" on a viable way to accomplish this. I'm wondering how far off this might be? [1] http://lists.freebsd.org/pipermail/freebsd-pkg/2014-March/000253.html -- Take care Rick Miller From owner-freebsd-pkg@FreeBSD.ORG Fri May 30 09:25:48 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0F2DF78C for ; Fri, 30 May 2014 09:25:48 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id ADEE121E1 for ; Fri, 30 May 2014 09:25:47 +0000 (UTC) Received: from ox-dell39.ox.adestra.com (no-reverse-dns.metronet-uk.com [85.199.232.226] (may be forged)) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s4U9PY6X050321 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Fri, 30 May 2014 10:25:40 +0100 (BST) (envelope-from matthew@freebsd.org) Authentication-Results: lucid-nonsense.infracaninophile.co.uk; dmarc=none header.from=freebsd.org DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s4U9PY6X050321 Authentication-Results: smtp.infracaninophile.co.uk/s4U9PY6X050321; dkim=none reason="no signature"; dkim-adsp=none X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host no-reverse-dns.metronet-uk.com [85.199.232.226] (may be forged) claimed to be ox-dell39.ox.adestra.com Message-ID: <53884E85.2020206@freebsd.org> Date: Fri, 30 May 2014 10:25:25 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: Mirroring pkg.freebsd.org? References: In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="g6i2i9p7nsIjr9bwnJ8BkxulJGqc2Xd98" X-Virus-Scanned: clamav-milter 0.98.3 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-1.2 required=5.0 tests=AWL,BAYES_00,RDNS_NONE, SPF_SOFTFAIL autolearn=no autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2014 09:25:48 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --g6i2i9p7nsIjr9bwnJ8BkxulJGqc2Xd98 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 05/29/14 19:54, Rick Miller wrote: > I found a message in the archives[1] from march 2014 that mentions opti= ons > for mirroring pkg.freebsd.org were being experimented with. It goes on= to > say a communique would be issued "soon" on a viable way to accomplish t= his. > I'm wondering how far off this might be? >=20 > [1] http://lists.freebsd.org/pipermail/freebsd-pkg/2014-March/000253.ht= ml As far as I know, there are no official pkg mirrors in Asia. Currently there are 4: US East (NYI), US West (ISC), Europe (UK) and Russia. There is, in general, no provision for people to create private mirrors of package repositories. In fact, I believe the general policy is now against that sort of thing. Partly this is down to technological change -- computer hardware capability is so much greater today, and high-bandwidth connectivity with access to the whole world is that much more prevalent, so a smaller number of servers is sufficient. Mostly it's due to security concerns. It would be too easy for someone to trojan a package in a semi-official repository that the FreeBSD project has no real control over. Yes, there are measures including package signing to mitigate against this, but we can't enforce their use by end-users. On the other hand, pkg.freebsd.org just uses plain HTTP for network communications and it's quite friendly towards being accessed through a proxy-cache setup. Cheers, Matthew --g6i2i9p7nsIjr9bwnJ8BkxulJGqc2Xd98 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTiE6MXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQxOUYxNTRFQ0JGMTEyRTUwNTQ0RTNGMzAw MDUxM0YxMEUwQTlFNEU3AAoJEABRPxDgqeTnPowQAId92jjJACrfESIGIS9cviAK w5KFzpr9uC0WrpU0XANGvMksqmUVxe/w5HYkgeMl1+rRy2T6j8giDI5woxZP1BwY 2wr3hHXaxSXddc//lUL4aDQ9YniS/yZtN7K7jsRPS9AkVkvcsu2XOX5WVmnsRL34 Elqr9figOQyQI7uEJl0UolvzZY5ldyO9IIUJXlL6mEJ4PmCilOcsMZuf4I3BbsqD NTO+SwGNyGjUDLZoSJX6JAPQv7k/ZM3LF45gWd9lCVtIZIgEuN7IY3amp1ABM662 sdteRifZp/yvfhwV5wua1Y6JBK0SaeW9/wH9fZpTe3Gk6JkU3HGME9zaS7NonHwJ M/Yi6xfOG6VyPuznnyyn5uyvo1PqWk7mA4uE9m+THYrlpywcUR1qRDluf6O4EpTP bpc17FkNeaS05mmeJMM8o5fqDxd1cJfQBJIW4XTNYitj39OQbIQne9OVhIj6RM/G A9QjrNpLgCN1n1xKGuI0k3tVLDF4yw1Sp0JEV1Jyn2VzGkA//Km7S8B7KW85rzDy XC1Fx0tERbDyIMatOA2B6+meQP9FUaXOrAS1aUBZTapX3t8TY93dRWLLQQxV5YPf vwkI5Juy68izJOfDFF3ciHRvGzxv/z+lgLv9vIZ1cYNruxMqBqVXTCHoivWB3RIh XOMzw4fxPirz9NBqsvTl =v/AP -----END PGP SIGNATURE----- --g6i2i9p7nsIjr9bwnJ8BkxulJGqc2Xd98-- From owner-freebsd-pkg@FreeBSD.ORG Sat May 31 06:52:22 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E23B7E5D for ; Sat, 31 May 2014 06:52:22 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 4E2102CC1 for ; Sat, 31 May 2014 06:52:21 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35572371 for freebsd-pkg@freebsd.org; Sat, 31 May 2014 13:52:18 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s4V6qIZs000623 for ; Sat, 31 May 2014 13:52:18 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s4V6qIUb000622 for freebsd-pkg@freebsd.org; Sat, 31 May 2014 13:52:18 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Sat, 31 May 2014 13:52:18 +0700 From: Victor Sudakov To: freebsd-pkg@freebsd.org Subject: Dependency graph? Message-ID: <20140531065218.GB169@admin.sibptus.tomsk.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2014 06:52:23 -0000 Colleagues, Sometimes you attempt to "pkg install" a simple package and find out that it attempts to install a load of crap (like X libraries) because of some obscure dependency. Is there a tool that would analyze the repository metadata and display a dependency tree for a package? All the necessary dependency information is already in the repository in JSON (?) or sqlite format, perhaps someone has already come up with a script to display that? -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Sat May 31 08:25:33 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7918A92F for ; Sat, 31 May 2014 08:25:33 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 0C6732361 for ; Sat, 31 May 2014 08:25:32 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.2.117.99]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s4V8PFTS085868 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Sat, 31 May 2014 09:25:25 +0100 (BST) (envelope-from matthew@FreeBSD.org) Authentication-Results: lucid-nonsense.infracaninophile.co.uk; dmarc=none header.from=FreeBSD.org DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s4V8PFTS085868 Authentication-Results: smtp.infracaninophile.co.uk/s4V8PFTS085868; dkim=none reason="no signature"; dkim-adsp=none Message-ID: <538991E0.5000902@FreeBSD.org> Date: Sat, 31 May 2014 09:25:04 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: Dependency graph? References: <20140531065218.GB169@admin.sibptus.tomsk.ru> In-Reply-To: <20140531065218.GB169@admin.sibptus.tomsk.ru> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="g3jL5LO0pBILtTpvo9B60BjdCFW9ELQnq" X-Virus-Scanned: clamav-milter 0.98.3 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-3.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2014 08:25:33 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --g3jL5LO0pBILtTpvo9B60BjdCFW9ELQnq Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 31/05/2014 07:52, Victor Sudakov wrote: > Sometimes you attempt to "pkg install" a simple package and find out > that it attempts to install a load of crap (like X libraries) because o= f > some obscure dependency. >=20 > Is there a tool that would analyze the repository metadata and display > a dependency tree for a package? >=20 > All the necessary dependency information is already in the repository > in JSON (?) or sqlite format, perhaps someone has already come up with > a script to display that? Not to my knowledge. Generating output suitable for feeding into dot should be pretty easy, just based on processing the output of 'pkg query'= Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --g3jL5LO0pBILtTpvo9B60BjdCFW9ELQnq Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTiZHpXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATov4P/iRTyYPMs0Wiq+18SSQ4HAQE W8epR8jvG61Yf8f+1U4daTNRvCzyS1uc7kTQfJglpxzRyxfYw3OZdkrplrETxHlA AqDDtPngH2ku2M18Fz3Tp13paIdWYBo6VEmpj3QxF8ucIoSiFonSnIDgK0ZwiBt4 u7XLYLB3Z5oZvQagOADoE9PI0SkbSQVb7LbY8hhDUI6xNnFDkIW3t6djcLH3LgQf ZU3wSApywWq1nkm5Ghn8J9to65Cpxe2YX+qb5sYkfF/L9s11SGf1ckBzGt598bAy NmHypYeF85fewToGad6M73+iBjX7AQcgu8X0s0S9qkqrmeGP/YqB0mh5Dmur2l6m CsPuVDO9SStgrZouxsHh+pTNAmtzrHO5oCG9+9YPhnG5CqzON/NgoHWxXDys/qsg VxtAuyfAtwGxFVn+sQdcL0a2y5Ek7YVJ30TDZ8y+YIOd9BgciapBz5/49KYnFI3x yKMVmul3r4ov1DaaN7vS1RxjPWErATA7Whgg35+8cdXAifE5O7yZSrHLxTmr/vCX wGMd6oqCDI+mIAP8SywP8G43ehLrkPGaN8llwkluwuNiSiPGRn4YE9rCsR+64gYq ZgWTQq4hcu5+MJaa+TjoHK4QFXZGDqiVY8r8z33ZEN/loaJXL+PYLZ3ctHzjDE7l GASCrgUvkNSLCQY06XqM =xz2h -----END PGP SIGNATURE----- --g3jL5LO0pBILtTpvo9B60BjdCFW9ELQnq-- From owner-freebsd-pkg@FreeBSD.ORG Sat May 31 12:21:32 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EBF6BBFA for ; Sat, 31 May 2014 12:21:32 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 57C5524E8 for ; Sat, 31 May 2014 12:21:31 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35574417 for freebsd-pkg@freebsd.org; Sat, 31 May 2014 19:21:29 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s4VCLS9C004815 for ; Sat, 31 May 2014 19:21:28 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s4VCLSbI004814 for freebsd-pkg@freebsd.org; Sat, 31 May 2014 19:21:28 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Sat, 31 May 2014 19:21:28 +0700 From: Victor Sudakov To: freebsd-pkg@freebsd.org Subject: Re: Dependency graph? Message-ID: <20140531122127.GA4538@admin.sibptus.tomsk.ru> References: <20140531065218.GB169@admin.sibptus.tomsk.ru> <538991E0.5000902@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <538991E0.5000902@FreeBSD.org> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2014 12:21:33 -0000 Matthew Seaman wrote: > > Sometimes you attempt to "pkg install" a simple package and find out > > that it attempts to install a load of crap (like X libraries) because of > > some obscure dependency. > > > > Is there a tool that would analyze the repository metadata and display > > a dependency tree for a package? > > > > All the necessary dependency information is already in the repository > > in JSON (?) or sqlite format, perhaps someone has already come up with > > a script to display that? > > Not to my knowledge. Generating output suitable for feeding into dot > should be pretty easy, just based on processing the output of 'pkg query' To my knowledge, 'pkg query' works with the locally installed packages. Can it really query a remote repository, and if yes, could you please give an example query? When I issue 'pkg query %do some_package_not_installed_locally', it returns an empty result. -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Sat May 31 12:54:48 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 925F3177 for ; Sat, 31 May 2014 12:54:48 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 39334270C for ; Sat, 31 May 2014 12:54:47 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.2.117.99]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s4VCsf3S091655 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Sat, 31 May 2014 13:54:42 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: lucid-nonsense.infracaninophile.co.uk; dmarc=none header.from=infracaninophile.co.uk DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s4VCsf3S091655 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1401540882; bh=VDKC/slR1ozarfFanvRQ4FDQ3UpFHSx8AGrqckVqVWA=; h=Date:From:To:Subject:References:In-Reply-To; z=Date:=20Sat,=2031=20May=202014=2013:54:34=20+0100|From:=20Matthew =20Seaman=20|To:=20freebsd-pkg@fr eebsd.org|Subject:=20Re:=20Dependency=20graph?|References:=20<2014 0531065218.GB169@admin.sibptus.tomsk.ru>=20<538991E0.5000902@FreeB SD.org>=20<20140531122127.GA4538@admin.sibptus.tomsk.ru>|In-Reply- To:=20<20140531122127.GA4538@admin.sibptus.tomsk.ru>; b=XmWAKuAwc8gX3vjTYZRpoonyDh2DqKLc4hYS0tco3byimyCBqEpHh4lZRSnCwnyGz czUbSfm2oBydhtArJKsThokhihid7v02eDYvBcJD8f+GKsuEfNTjrUysMLHSBNHYw+ 0taFdW2ZKG+fNcmyIfIHDbNNc6jXbD0Eo+IaANNI= Message-ID: <5389D10A.9010608@infracaninophile.co.uk> Date: Sat, 31 May 2014 13:54:34 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: Dependency graph? References: <20140531065218.GB169@admin.sibptus.tomsk.ru> <538991E0.5000902@FreeBSD.org> <20140531122127.GA4538@admin.sibptus.tomsk.ru> In-Reply-To: <20140531122127.GA4538@admin.sibptus.tomsk.ru> X-Enigmail-Version: 1.6 OpenPGP: id=E7F39EBF Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="VPSMp5OCiTdEvb6wwehQ5QbpUHMwHp860" X-Virus-Scanned: clamav-milter 0.98.3 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU autolearn=ham autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2014 12:54:48 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --VPSMp5OCiTdEvb6wwehQ5QbpUHMwHp860 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 31/05/2014 13:21, Victor Sudakov wrote: > Matthew Seaman wrote: >>> Sometimes you attempt to "pkg install" a simple package and find out >>> that it attempts to install a load of crap (like X libraries) because= of >>> some obscure dependency. >>> >>> Is there a tool that would analyze the repository metadata and displa= y >>> a dependency tree for a package? >>> >>> All the necessary dependency information is already in the repository= >>> in JSON (?) or sqlite format, perhaps someone has already come up wit= h >>> a script to display that? >> >> Not to my knowledge. Generating output suitable for feeding into dot >> should be pretty easy, just based on processing the output of 'pkg que= ry' >=20 > To my knowledge, 'pkg query' works with the locally installed packages.= =20 > Can it really query a remote repository, and if yes, could you please g= ive an > example query? >=20 > When I issue 'pkg query %do some_package_not_installed_locally', it > returns an empty result. pkg rquery is what I should have said. Apologies, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey JID: matthew@infracaninophile.co.uk --VPSMp5OCiTdEvb6wwehQ5QbpUHMwHp860 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTidERXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATUFMP/13fZVGOwBYFuXe86BNKYSJ5 YVQQx04W1G3K4NlRr88i8qZ9NSDazvUxcNRDs3RHWqUx/F8W8AJGZjspLh8GYolt fy960yYXs8G3bhXcfFtdcwg6hyk6SIzZz0clkobEV6P5KSJVfWX2x+Wo+nFgufF5 a/MaeN+62EK0Z31OWMJbSziBlnrFvZ0DCvKKe1nvPxcxT5odzM1O9iQG5RGkPsch 1c1usew34RD5Cy1QiuDke9D+dgrY/sdu7Vrlv9RH5ZcKp8516Jee7Th/BqwMfJ1s q6Eh+nMgFfof52aAaIXOjmPsm0Igl75kuJNP7ur18/NAOpgaZcxHIbXsCcBh/mCJ BY+BsyJOv1+UFkavHvgZvUBbRUSqRhYeYc/T1W86l0vE1Fqqn/jd/lFBGFZsguPO L8LSg1biZ8VdCzF/vpe43IMrLe+4gsbHZGgnOhOE+AJHO5kI4WbOe1573nw6E/Wf Y7nOcIqxa2gnytCj2QHHtdrE0Njb5aJxSWFq7b6ZRskI6J0/LWMyiMBsc5+6bjnw kz6njVUcDlzI4v2S8s4tM1ETj6pp1l11ekOvwPoTkpyD+0WzjIqRgwyo3uu0HMaq mGnXIq3EVYjYXosvCNjhSBzMX2MV4S0oFff54tFF4CiAWXyzpMTRATt1skd89Fpl A7bquNDs57nSdGf93is9 =go1h -----END PGP SIGNATURE----- --VPSMp5OCiTdEvb6wwehQ5QbpUHMwHp860-- From owner-freebsd-pkg@FreeBSD.ORG Sat May 31 13:11:01 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C1F024B for ; Sat, 31 May 2014 13:11:01 +0000 (UTC) Received: from blue.qeng-ho.org (blue.qeng-ho.org [217.155.128.241]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F68127C8 for ; Sat, 31 May 2014 13:11:00 +0000 (UTC) Received: from fileserver.home.qeng-ho.org (localhost [127.0.0.1]) by fileserver.home.qeng-ho.org (8.14.7/8.14.5) with ESMTP id s4VDAmKQ025421; Sat, 31 May 2014 14:10:50 +0100 (BST) (envelope-from freebsd@qeng-ho.org) Message-ID: <5389D4D8.6060604@qeng-ho.org> Date: Sat, 31 May 2014 14:10:48 +0100 From: Arthur Chance User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Victor Sudakov , freebsd-pkg@freebsd.org Subject: Re: Dependency graph? References: <20140531065218.GB169@admin.sibptus.tomsk.ru> <538991E0.5000902@FreeBSD.org> <20140531122127.GA4538@admin.sibptus.tomsk.ru> In-Reply-To: <20140531122127.GA4538@admin.sibptus.tomsk.ru> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2014 13:11:01 -0000 On 31/05/2014 13:21, Victor Sudakov wrote: > Matthew Seaman wrote: >>> Sometimes you attempt to "pkg install" a simple package and find out >>> that it attempts to install a load of crap (like X libraries) because of >>> some obscure dependency. >>> >>> Is there a tool that would analyze the repository metadata and display >>> a dependency tree for a package? >>> >>> All the necessary dependency information is already in the repository >>> in JSON (?) or sqlite format, perhaps someone has already come up with >>> a script to display that? >> >> Not to my knowledge. Generating output suitable for feeding into dot >> should be pretty easy, just based on processing the output of 'pkg query' > > To my knowledge, 'pkg query' works with the locally installed packages. > Can it really query a remote repository, and if yes, could you please give an > example query? > > When I issue 'pkg query %do some_package_not_installed_locally', it > returns an empty result. pkg rquery From owner-freebsd-pkg@FreeBSD.ORG Sat May 31 14:03:07 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1CA71E8D for ; Sat, 31 May 2014 14:03:07 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 7C23F2BEB for ; Sat, 31 May 2014 14:03:05 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35575024; Sat, 31 May 2014 21:03:04 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s4VE34to006523; Sat, 31 May 2014 21:03:04 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s4VE34JU006522; Sat, 31 May 2014 21:03:04 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Sat, 31 May 2014 21:03:04 +0700 From: Victor Sudakov To: Arthur Chance Subject: Re: Dependency graph? Message-ID: <20140531140303.GA6286@admin.sibptus.tomsk.ru> References: <20140531065218.GB169@admin.sibptus.tomsk.ru> <538991E0.5000902@FreeBSD.org> <20140531122127.GA4538@admin.sibptus.tomsk.ru> <5389D4D8.6060604@qeng-ho.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5389D4D8.6060604@qeng-ho.org> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2014 14:03:07 -0000 Arthur Chance wrote: > > pkg rquery I see. If there are multiple repositories, whose dependencies will be shown? What is the choice determined by? See below for an example, when I specify a repository and when I don't: $ pkg rquery -r sibptus %do vim converters/libiconv $ pkg rquery -r FreeBSD %do vim x11/libXpm x11-toolkits/pango x11-toolkits/libXt x11-toolkits/gtk20 lang/tcl86 lang/ruby19 lang/python27 lang/perl5.16 lang/lua52 devel/pcre devel/glib20 devel/gettext devel/ctags devel/cscope converters/libiconv accessibility/atk $ pkg rquery %do vim x11/libXpm x11-toolkits/pango x11-toolkits/libXt x11-toolkits/gtk20 lang/tcl86 lang/ruby19 lang/python27 lang/perl5.16 lang/lua52 devel/pcre devel/glib20 devel/gettext devel/ctags devel/cscope converters/libiconv accessibility/atk converters/libiconv $ Why is "FreeBSD" chosen over "sibptus" when there is no "-r" ? -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Sat May 31 16:25:29 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 30B1EA44 for ; Sat, 31 May 2014 16:25:29 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 8F2DE25E7 for ; Sat, 31 May 2014 16:25:27 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35576000; Sat, 31 May 2014 23:25:25 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s4VGPOjn008214; Sat, 31 May 2014 23:25:24 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s4VGPO5G008213; Sat, 31 May 2014 23:25:24 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Sat, 31 May 2014 23:25:24 +0700 From: Victor Sudakov To: Arthur Chance , freebsd-pkg@freebsd.org Subject: Re: Dependency graph? Message-ID: <20140531162524.GA8098@admin.sibptus.tomsk.ru> References: <20140531065218.GB169@admin.sibptus.tomsk.ru> <538991E0.5000902@FreeBSD.org> <20140531122127.GA4538@admin.sibptus.tomsk.ru> <5389D4D8.6060604@qeng-ho.org> <20140531140303.GA6286@admin.sibptus.tomsk.ru> <5389F6D8.9010605@qeng-ho.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5389F6D8.9010605@qeng-ho.org> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2014 16:25:29 -0000 Arthur Chance wrote: > > > > If there are multiple repositories, whose dependencies will be shown? > > What is the choice determined by? > > > > See below for an example, when I specify a repository and when I don't: [dd] > > > > Why is "FreeBSD" chosen over "sibptus" when there is no "-r" ? > > > > No idea, but I'd guess it's because the default repo gets priority. Which repo is the default one and why? > I'm > not part of the pkgng team, just someone who uses it. You need to ask > that on the pkg mailing list and/or read the source code. Arthur, we ARE on the freebsd-pkg mailing list :-) -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Sat May 31 16:41:25 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F3E36F46 for ; Sat, 31 May 2014 16:41:24 +0000 (UTC) Received: from blue.qeng-ho.org (blue.qeng-ho.org [217.155.128.241]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 89068273A for ; Sat, 31 May 2014 16:41:23 +0000 (UTC) Received: from fileserver.home.qeng-ho.org (localhost [127.0.0.1]) by fileserver.home.qeng-ho.org (8.14.7/8.14.5) with ESMTP id s4VGfKZ0087593; Sat, 31 May 2014 17:41:20 +0100 (BST) (envelope-from freebsd@qeng-ho.org) Message-ID: <538A0630.5050608@qeng-ho.org> Date: Sat, 31 May 2014 17:41:20 +0100 From: Arthur Chance User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Victor Sudakov , freebsd-pkg@freebsd.org Subject: Re: Dependency graph? References: <20140531065218.GB169@admin.sibptus.tomsk.ru> <538991E0.5000902@FreeBSD.org> <20140531122127.GA4538@admin.sibptus.tomsk.ru> <5389D4D8.6060604@qeng-ho.org> <20140531140303.GA6286@admin.sibptus.tomsk.ru> <5389F6D8.9010605@qeng-ho.org> <20140531162524.GA8098@admin.sibptus.tomsk.ru> In-Reply-To: <20140531162524.GA8098@admin.sibptus.tomsk.ru> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2014 16:41:25 -0000 On 31/05/2014 17:25, Victor Sudakov wrote: > Arthur Chance wrote: >>> >>> If there are multiple repositories, whose dependencies will be shown? >>> What is the choice determined by? >>> >>> See below for an example, when I specify a repository and when I don't: > > [dd] > >>> >>> Why is "FreeBSD" chosen over "sibptus" when there is no "-r" ? >>> >> >> No idea, but I'd guess it's because the default repo gets priority. > > Which repo is the default one and why? Again, I'm not an expert but I'd guess it's either an ASCII sort, so FreeBSD comes before any lower case repo name, or whatever order the repo files appear in the directories. I don't have the bandwidth to read the code right now though. You could try renaming "sibptus" to "A" and see if it takes precedence. Repo names seem to be entirely arbitrary. >> I'm >> not part of the pkgng team, just someone who uses it. You need to ask >> that on the pkg mailing list and/or read the source code. > > Arthur, we ARE on the freebsd-pkg mailing list :-) > Missed the header. Busy day and not enough sleep. :-( From owner-freebsd-pkg@FreeBSD.ORG Sat May 31 17:11:47 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD9FF470 for ; Sat, 31 May 2014 17:11:47 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 26AAC294B for ; Sat, 31 May 2014 17:11:46 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35576361; Sun, 01 Jun 2014 00:11:45 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s4VHBi0B008816; Sun, 1 Jun 2014 00:11:44 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s4VHBiDh008815; Sun, 1 Jun 2014 00:11:44 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Sun, 1 Jun 2014 00:11:44 +0700 From: Victor Sudakov To: Arthur Chance Subject: Re: Dependency graph? Message-ID: <20140531171144.GA8738@admin.sibptus.tomsk.ru> References: <20140531065218.GB169@admin.sibptus.tomsk.ru> <538991E0.5000902@FreeBSD.org> <20140531122127.GA4538@admin.sibptus.tomsk.ru> <5389D4D8.6060604@qeng-ho.org> <20140531140303.GA6286@admin.sibptus.tomsk.ru> <5389F6D8.9010605@qeng-ho.org> <20140531162524.GA8098@admin.sibptus.tomsk.ru> <538A0630.5050608@qeng-ho.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <538A0630.5050608@qeng-ho.org> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2014 17:11:47 -0000 Arthur Chance wrote: > >>> > >>> If there are multiple repositories, whose dependencies will be shown? > >>> What is the choice determined by? > >>> > >>> See below for an example, when I specify a repository and when I don't: > > > > [dd] > > > >>> > >>> Why is "FreeBSD" chosen over "sibptus" when there is no "-r" ? > >>> > >> > >> No idea, but I'd guess it's because the default repo gets priority. > > > > Which repo is the default one and why? > > Again, I'm not an expert but I'd guess it's either an ASCII sort, so > FreeBSD comes before any lower case repo name, or whatever order the > repo files appear in the directories. I don't have the bandwidth to read > the code right now though. You could try renaming "sibptus" to "A" and > see if it takes precedence. Repo names seem to be entirely arbitrary. Such things should be documented. I think all the multirepo thing is very incomplete and rudimentary. -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Sun Jun 1 04:32:54 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73FE54D4 for ; Sun, 1 Jun 2014 04:32:54 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id CCD082CE5 for ; Sun, 1 Jun 2014 04:32:52 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35580629; Sun, 01 Jun 2014 11:32:49 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s514Wn3r022055; Sun, 1 Jun 2014 11:32:49 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s514Wmq1022054; Sun, 1 Jun 2014 11:32:48 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Sun, 1 Jun 2014 11:32:48 +0700 From: Victor Sudakov To: Arthur Chance Subject: Re: Dependency graph? Message-ID: <20140601043248.GA22026@admin.sibptus.tomsk.ru> References: <20140531065218.GB169@admin.sibptus.tomsk.ru> <538991E0.5000902@FreeBSD.org> <20140531122127.GA4538@admin.sibptus.tomsk.ru> <5389D4D8.6060604@qeng-ho.org> <20140531140303.GA6286@admin.sibptus.tomsk.ru> <5389F6D8.9010605@qeng-ho.org> <20140531162524.GA8098@admin.sibptus.tomsk.ru> <538A0630.5050608@qeng-ho.org> <20140531171144.GA8738@admin.sibptus.tomsk.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140531171144.GA8738@admin.sibptus.tomsk.ru> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jun 2014 04:32:54 -0000 Victor Sudakov wrote: > > > > > > Which repo is the default one and why? > > > > Again, I'm not an expert but I'd guess it's either an ASCII sort, so > > FreeBSD comes before any lower case repo name, or whatever order the > > repo files appear in the directories. I don't have the bandwidth to read > > the code right now though. You could try renaming "sibptus" to "A" and > > see if it takes precedence. Repo names seem to be entirely arbitrary. > > Such things should be documented. > > I think all the multirepo thing is very incomplete and rudimentary. It seems that the repo from /etc/pkg takes precedence over that in /usr/local/etc/pkg -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 2 12:02:34 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 390DEE48 for ; Mon, 2 Jun 2014 12:02:34 +0000 (UTC) Received: from kabab.cs.huji.ac.il (kabab.cs.huji.ac.il [132.65.116.12]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E1F942AF7 for ; Mon, 2 Jun 2014 12:02:33 +0000 (UTC) Received: from th-04.cs.huji.ac.il ([132.65.80.125]) by kabab.cs.huji.ac.il with esmtp id 1WrQwg-000H93-JB for pkg@freebsd.org; Mon, 02 Jun 2014 15:02:30 +0300 Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.2\)) Subject: pkg info failed for mortals? From: Daniel Braniss Resent-From: Daniel Braniss Date: Mon, 2 Jun 2014 14:57:19 +0300 Content-Transfer-Encoding: quoted-printable Resent-Date: Mon, 2 Jun 2014 15:02:30 +0300 Resent-To: pkg@freebsd.org Message-Id: To: ports@freebsd.org X-Mailer: Apple Mail (2.1878.2) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jun 2014 12:02:34 -0000 after my latest ports upgrade pkg info =85 failed unless one is root, it seems to be sqlite trying to lock the file = and failing, chmod 775 to /var/db/pkg does not help since the it complains about security being to lax can this be fixed? thanks, danny From owner-freebsd-pkg@FreeBSD.ORG Wed Jun 4 02:29:30 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D9F5EE7 for ; Wed, 4 Jun 2014 02:29:30 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 4172C250F for ; Wed, 4 Jun 2014 02:29:28 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35609416 for freebsd-pkg@freebsd.org; Wed, 04 Jun 2014 09:29:26 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s542TPdY014489 for ; Wed, 4 Jun 2014 09:29:26 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s542TPrL014488 for freebsd-pkg@freebsd.org; Wed, 4 Jun 2014 09:29:25 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Wed, 4 Jun 2014 09:29:25 +0700 From: Victor Sudakov To: freebsd-pkg@freebsd.org Subject: poudriere and list of ports to build Message-ID: <20140604022925.GA14411@admin.sibptus.tomsk.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jun 2014 02:29:30 -0000 Colleagues, I hope it's appropriate to ask about poudriere here. I build certain packages with "poudriere bulk -f pkglist". If I later delete some packages from pkglist, how do I make poudriere remove them and their dependencies from the repository, other than clean everything (bulk -c) and build from scratch? -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Wed Jun 4 09:46:57 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A3007E07 for ; Wed, 4 Jun 2014 09:46:57 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 627D12BF5 for ; Wed, 4 Jun 2014 09:46:57 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id CD83ABDCB8; Wed, 4 Jun 2014 11:46:54 +0200 (CEST) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id AA0FABDC81; Wed, 4 Jun 2014 11:46:54 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id 005BA6113; Wed, 4 Jun 2014 11:46:53 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 9C4696EBCB7D; Wed, 4 Jun 2014 11:46:56 +0200 (CEST) Date: Wed, 04 Jun 2014 11:46:56 +0200 From: Mathieu Arnold To: Victor Sudakov , freebsd-pkg@freebsd.org Subject: Re: poudriere and list of ports to build Message-ID: <3E8ED7006D99925B2C59CFFE@ogg.in.absolight.net> In-Reply-To: <20140604022925.GA14411@admin.sibptus.tomsk.ru> References: <20140604022925.GA14411@admin.sibptus.tomsk.ru> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jun 2014 09:46:57 -0000 +--On 4 juin 2014 09:29:25 +0700 Victor Sudakov wrote: | Colleagues, | | I hope it's appropriate to ask about poudriere here. | | I build certain packages with "poudriere bulk -f pkglist". If I later | delete some packages from pkglist, how do I make poudriere remove them | and their dependencies from the repository, other than clean | everything (bulk -c) and build from scratch? "poudriere pkgclean -f pkglist" will do that for you. -- Mathieu Arnold From owner-freebsd-pkg@FreeBSD.ORG Wed Jun 4 10:01:09 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 598C4367; Wed, 4 Jun 2014 10:01:09 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 7C3F82D14; Wed, 4 Jun 2014 10:01:07 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35612975; Wed, 04 Jun 2014 17:01:05 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s54A15Wq025397; Wed, 4 Jun 2014 17:01:05 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s54A15gk025396; Wed, 4 Jun 2014 17:01:05 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Wed, 4 Jun 2014 17:01:05 +0700 From: Victor Sudakov To: Mathieu Arnold Subject: Re: poudriere and list of ports to build Message-ID: <20140604100105.GA25116@admin.sibptus.tomsk.ru> References: <20140604022925.GA14411@admin.sibptus.tomsk.ru> <3E8ED7006D99925B2C59CFFE@ogg.in.absolight.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E8ED7006D99925B2C59CFFE@ogg.in.absolight.net> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jun 2014 10:01:09 -0000 Mathieu Arnold wrote: > | > | I hope it's appropriate to ask about poudriere here. > | > | I build certain packages with "poudriere bulk -f pkglist". If I later > | delete some packages from pkglist, how do I make poudriere remove them > | and their dependencies from the repository, other than clean > | everything (bulk -c) and build from scratch? > > "poudriere pkgclean -f pkglist" will do that for you. [root@svn ~] poudriere pkgclean Unknown command pkgclean [root@svn ~] poudriere version 3.0.16 Which version of poudriere do you have? -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Wed Jun 4 10:17:02 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 355C86CA for ; Wed, 4 Jun 2014 10:17:02 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id E938C2E98 for ; Wed, 4 Jun 2014 10:17:01 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 4919EBDCBD; Wed, 4 Jun 2014 12:17:00 +0200 (CEST) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 10A4DBDCBC; Wed, 4 Jun 2014 12:17:00 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id C26566113; Wed, 4 Jun 2014 12:16:58 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id A8CD56EBE492; Wed, 4 Jun 2014 12:17:01 +0200 (CEST) Date: Wed, 04 Jun 2014 12:17:01 +0200 From: Mathieu Arnold To: Victor Sudakov Subject: Re: poudriere and list of ports to build Message-ID: <565AB4FF5364387EA3A1A146@ogg.in.absolight.net> In-Reply-To: <20140604100105.GA25116@admin.sibptus.tomsk.ru> References: <20140604022925.GA14411@admin.sibptus.tomsk.ru> <3E8ED7006D99925B2C59CFFE@ogg.in.absolight.net> <20140604100105.GA25116@admin.sibptus.tomsk.ru> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jun 2014 10:17:02 -0000 +--On 4 juin 2014 17:01:05 +0700 Victor Sudakov wrote: | Mathieu Arnold wrote: |> | |> | I hope it's appropriate to ask about poudriere here. |> | |> | I build certain packages with "poudriere bulk -f pkglist". If I later |> | delete some packages from pkglist, how do I make poudriere remove them |> | and their dependencies from the repository, other than clean |> | everything (bulk -c) and build from scratch? |> |> "poudriere pkgclean -f pkglist" will do that for you. | | [root@svn ~] poudriere pkgclean | Unknown command pkgclean | [root@svn ~] poudriere version | 3.0.16 | | Which version of poudriere do you have? Ah, I've been using poudriere-devel for a long time, didn't know it wasn't in the released one. -- Mathieu Arnold From owner-freebsd-pkg@FreeBSD.ORG Wed Jun 4 10:39:23 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E16C5B0; Wed, 4 Jun 2014 10:39:23 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 8FF4420EB; Wed, 4 Jun 2014 10:39:21 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35613080; Wed, 04 Jun 2014 17:39:20 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s54AdJNm026287; Wed, 4 Jun 2014 17:39:19 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s54AdJAT026286; Wed, 4 Jun 2014 17:39:19 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Wed, 4 Jun 2014 17:39:19 +0700 From: Victor Sudakov To: Mathieu Arnold Subject: Re: poudriere and list of ports to build Message-ID: <20140604103919.GA26232@admin.sibptus.tomsk.ru> References: <20140604022925.GA14411@admin.sibptus.tomsk.ru> <3E8ED7006D99925B2C59CFFE@ogg.in.absolight.net> <20140604100105.GA25116@admin.sibptus.tomsk.ru> <565AB4FF5364387EA3A1A146@ogg.in.absolight.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <565AB4FF5364387EA3A1A146@ogg.in.absolight.net> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jun 2014 10:39:23 -0000 Mathieu Arnold wrote: > |> | > |> | I build certain packages with "poudriere bulk -f pkglist". If I later > |> | delete some packages from pkglist, how do I make poudriere remove them > |> | and their dependencies from the repository, other than clean > |> | everything (bulk -c) and build from scratch? > |> > |> "poudriere pkgclean -f pkglist" will do that for you. > | > | [root@svn ~] poudriere pkgclean > | Unknown command pkgclean > | [root@svn ~] poudriere version > | 3.0.16 > | > | Which version of poudriere do you have? > > Ah, I've been using poudriere-devel for a long time, didn't know it wasn't > in the released one. I'll switch to poudriere-devel too. Will it inherit old poudriere's configs, jails and data? -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Wed Jun 4 10:46:05 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0FAA19FC; Wed, 4 Jun 2014 10:46:05 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 31A5821CF; Wed, 4 Jun 2014 10:46:03 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35613369; Wed, 04 Jun 2014 17:46:02 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s54Ak2MB026479; Wed, 4 Jun 2014 17:46:02 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s54Ak2m4026478; Wed, 4 Jun 2014 17:46:02 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Wed, 4 Jun 2014 17:46:02 +0700 From: Victor Sudakov To: Mathieu Arnold Subject: Re: poudriere and list of ports to build Message-ID: <20140604104602.GA26448@admin.sibptus.tomsk.ru> References: <20140604022925.GA14411@admin.sibptus.tomsk.ru> <3E8ED7006D99925B2C59CFFE@ogg.in.absolight.net> <20140604100105.GA25116@admin.sibptus.tomsk.ru> <565AB4FF5364387EA3A1A146@ogg.in.absolight.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <565AB4FF5364387EA3A1A146@ogg.in.absolight.net> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jun 2014 10:46:05 -0000 Mathieu Arnold wrote: > |> > |> "poudriere pkgclean -f pkglist" will do that for you. Thank you, you made my day :) 00:03:22] ====>> Cleaning the build queue [00:03:46] ====>> Files to be deleted: /var/poudriere/data/packages/84i386-default/All/binutils-2.24.txz /var/poudriere/data/packages/84i386-default/All/boost-jam-1.55.0.txz /var/poudriere/data/packages/84i386-default/All/boost-libs-1.55.0_2.txz /var/poudriere/data/packages/84i386-default/All/cairo-1.10.2_10,2.txz /var/poudriere/data/packages/84i386-default/All/clang33-3.3_6.txz /var/poudriere/data/packages/84i386-default/All/fontconfig-2.11.0_3,1.txz /var/poudriere/data/packages/84i386-default/All/gmp-5.1.3_2.txz /var/poudriere/data/packages/84i386-default/All/icu-52.1.txz /var/poudriere/data/packages/84i386-default/All/libXau-1.0.8_2.txz /var/poudriere/data/packages/84i386-default/All/libXdmcp-1.1.1_2.txz -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Wed Jun 4 11:06:22 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B0CAA69A for ; Wed, 4 Jun 2014 11:06:22 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 6E26823F4 for ; Wed, 4 Jun 2014 11:06:22 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id BA196BDC30; Wed, 4 Jun 2014 13:06:20 +0200 (CEST) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 95516BDC1F; Wed, 4 Jun 2014 13:06:20 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id B25BC6113; Wed, 4 Jun 2014 13:06:19 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id C46C96EBEC14; Wed, 4 Jun 2014 13:06:21 +0200 (CEST) Date: Wed, 04 Jun 2014 13:06:21 +0200 From: Mathieu Arnold To: Victor Sudakov Subject: Re: poudriere and list of ports to build Message-ID: <29B95A5A646B02ECFE5001A3@ogg.in.absolight.net> In-Reply-To: <20140604103919.GA26232@admin.sibptus.tomsk.ru> References: <20140604022925.GA14411@admin.sibptus.tomsk.ru> <3E8ED7006D99925B2C59CFFE@ogg.in.absolight.net> <20140604100105.GA25116@admin.sibptus.tomsk.ru> <565AB4FF5364387EA3A1A146@ogg.in.absolight.net> <20140604103919.GA26232@admin.sibptus.tomsk.ru> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jun 2014 11:06:22 -0000 +--On 4 juin 2014 17:39:19 +0700 Victor Sudakov wrote: | Mathieu Arnold wrote: |> |> | |> |> | I build certain packages with "poudriere bulk -f pkglist". If I |> |> | later delete some packages from pkglist, how do I make poudriere |> |> | remove them and their dependencies from the repository, other than |> |> | clean everything (bulk -c) and build from scratch? |> |> |> |> "poudriere pkgclean -f pkglist" will do that for you. |> | |> | [root@svn ~] poudriere pkgclean |> | Unknown command pkgclean |> | [root@svn ~] poudriere version |> | 3.0.16 |> | |> | Which version of poudriere do you have? |> |> Ah, I've been using poudriere-devel for a long time, didn't know it |> wasn't in the released one. | | I'll switch to poudriere-devel too. Will it inherit old poudriere's | configs, jails and data? Yes, it will, you won't be able to go back to the non devel version though, because some bits and things will be upgraded in a non backward compatible way. -- Mathieu Arnold From owner-freebsd-pkg@FreeBSD.ORG Thu Jun 5 14:58:26 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 37FF6608; Thu, 5 Jun 2014 14:58:26 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 584AE26A8; Thu, 5 Jun 2014 14:58:24 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35625169; Thu, 05 Jun 2014 21:58:22 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s55EwLMp065829; Thu, 5 Jun 2014 21:58:21 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s55EwLk1065828; Thu, 5 Jun 2014 21:58:21 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Thu, 5 Jun 2014 21:58:21 +0700 From: Victor Sudakov To: Mathieu Arnold Subject: Re: poudriere and list of ports to build Message-ID: <20140605145821.GA65707@admin.sibptus.tomsk.ru> References: <20140604022925.GA14411@admin.sibptus.tomsk.ru> <3E8ED7006D99925B2C59CFFE@ogg.in.absolight.net> <20140604100105.GA25116@admin.sibptus.tomsk.ru> <565AB4FF5364387EA3A1A146@ogg.in.absolight.net> <20140604103919.GA26232@admin.sibptus.tomsk.ru> <29B95A5A646B02ECFE5001A3@ogg.in.absolight.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <29B95A5A646B02ECFE5001A3@ogg.in.absolight.net> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jun 2014 14:58:26 -0000 Mathieu Arnold wrote: > |> > |> Ah, I've been using poudriere-devel for a long time, didn't know it > |> wasn't in the released one. > | > | I'll switch to poudriere-devel too. Will it inherit old poudriere's > | configs, jails and data? > > Yes, it will, you won't be able to go back to the non devel version though, > because some bits and things will be upgraded in a non backward compatible > way. ports-mgmt/poudriere produced a very nice HTML log like the one you can see at http://svn.sibptus.ru/logs/bulk/92i386-default/2014-06-04_17h18m05s/ poudriere-devel does not create the nice HTML page, I think I am missing it. How do I enable it? -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Thu Jun 5 15:12:59 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B0172A52 for ; Thu, 5 Jun 2014 15:12:59 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 5C4C4287D for ; Thu, 5 Jun 2014 15:12:59 +0000 (UTC) Received: from ox-dell39.ox.adestra.com (no-reverse-dns.metronet-uk.com [85.199.232.226] (may be forged)) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s55FClUG015112 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Thu, 5 Jun 2014 16:12:52 +0100 (BST) (envelope-from matthew@freebsd.org) Authentication-Results: lucid-nonsense.infracaninophile.co.uk; dmarc=none header.from=freebsd.org DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s55FClUG015112 Authentication-Results: smtp.infracaninophile.co.uk/s55FClUG015112; dkim=none reason="no signature"; dkim-adsp=none X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host no-reverse-dns.metronet-uk.com [85.199.232.226] (may be forged) claimed to be ox-dell39.ox.adestra.com Message-ID: <539088E9.3080108@freebsd.org> Date: Thu, 05 Jun 2014 16:12:41 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: poudriere and list of ports to build References: <20140604022925.GA14411@admin.sibptus.tomsk.ru> <3E8ED7006D99925B2C59CFFE@ogg.in.absolight.net> <20140604100105.GA25116@admin.sibptus.tomsk.ru> <565AB4FF5364387EA3A1A146@ogg.in.absolight.net> <20140604103919.GA26232@admin.sibptus.tomsk.ru> <29B95A5A646B02ECFE5001A3@ogg.in.absolight.net> <20140605145821.GA65707@admin.sibptus.tomsk.ru> In-Reply-To: <20140605145821.GA65707@admin.sibptus.tomsk.ru> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="LkwFOEcEwMVXrOEsI1acEdllsWwJRos03" X-Virus-Scanned: clamav-milter 0.98.3 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-1.2 required=5.0 tests=AWL,BAYES_00,RDNS_NONE, SPF_SOFTFAIL autolearn=no autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jun 2014 15:12:59 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --LkwFOEcEwMVXrOEsI1acEdllsWwJRos03 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 06/05/14 15:58, Victor Sudakov wrote: > poudriere-devel does not create the nice HTML page, I think I am > missing it. How do I enable it? poudriere-devel puts its web root in a different location. There's an example nginx.conf in /usr/local/share/examples/poudriere Note that if you're using the poudriere output directly as a package repository, you'll need to tweak that a bit. Hint: everything pkg(8) wants from a pkgrepo is currently a .txz file. (I think the idea with the example is that your pkgrepo is either a separate vhost in your webserver config, or you copy the compiled packages and repo-metadata stuff to another server.) Cheers, Matthew --LkwFOEcEwMVXrOEsI1acEdllsWwJRos03 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTkIjvXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQxOUYxNTRFQ0JGMTEyRTUwNTQ0RTNGMzAw MDUxM0YxMEUwQTlFNEU3AAoJEABRPxDgqeTnjm4P/iBjC4ibvkCDSTFd+8cBZ8Az 4LOwH3gctbUzRswAwcC3vrUp4nZ7hslfrMv8uC3gdndB158wfV0icW2Dx2X9rN/Q 8ZNy8FpXaxUPGmatR6H/Ecn6AE2pujHXmAMfg4pkTTTY5PkfzdiohshePFx7Uyhn fUlk6x9ftT8Y7Bj7eYlxMBlTa197TGk40p4rUOxzZNDVXkdlRRP3OczATWHdRIyC 7qolt10Cnm6ce3VnFN4K36gmZq1BAT55pi6FUSCrZGFW0u2OR+akdjF/r02ygwrg wkTqzRNKlU0igrLN/f/2xaJqLBYJNNMigAhSkiG+KBNzvv54Hbome0Jbhq/O4SGp N/kVjy7vgKr/h2Vled6/0OVjRf0AGoNMlOSHnq/ZfxqxM8v+9sWGkmJjt2kE9HIF uV7Ltqt8ywf7FeFe7cRXS97LcuLoTseX1/H5t/HtwhwMtaWm4sCA2k5ExK2ptZTy skJ9Ryu00dBQ/7tNjrUi2yIL/mt65OWn1N4MDXk/Cpr/QAT9rVjaVf1sDmwXIbtr KZHYPAeAqAYmdZHjPoGM8wzqZDjovsYHBrcuvosdeNi18PU+YrbrJhSM49IAWsGs ggmMzG87YjFCX+U2nougAHhApK9ZvczKLvqoBFgKjahxeN2zMZ/UmTUgCGHlmGZF gkwQJ4O7KcVjSLcVffMS =jTyf -----END PGP SIGNATURE----- --LkwFOEcEwMVXrOEsI1acEdllsWwJRos03-- From owner-freebsd-pkg@FreeBSD.ORG Fri Jun 6 04:25:22 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 028319A2 for ; Fri, 6 Jun 2014 04:25:22 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 5F55E20B8 for ; Fri, 6 Jun 2014 04:25:19 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35630458 for freebsd-pkg@freebsd.org; Fri, 06 Jun 2014 11:25:16 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s564PG4o088889 for ; Fri, 6 Jun 2014 11:25:16 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s564PGJc088888 for freebsd-pkg@freebsd.org; Fri, 6 Jun 2014 11:25:16 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Fri, 6 Jun 2014 11:25:16 +0700 From: Victor Sudakov To: freebsd-pkg@freebsd.org Subject: Re: poudriere and list of ports to build Message-ID: <20140606042515.GA87880@admin.sibptus.tomsk.ru> References: <20140604022925.GA14411@admin.sibptus.tomsk.ru> <3E8ED7006D99925B2C59CFFE@ogg.in.absolight.net> <20140604100105.GA25116@admin.sibptus.tomsk.ru> <565AB4FF5364387EA3A1A146@ogg.in.absolight.net> <20140604103919.GA26232@admin.sibptus.tomsk.ru> <29B95A5A646B02ECFE5001A3@ogg.in.absolight.net> <20140605145821.GA65707@admin.sibptus.tomsk.ru> <539088E9.3080108@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <539088E9.3080108@freebsd.org> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jun 2014 04:25:22 -0000 Matthew Seaman wrote: > > poudriere-devel does not create the nice HTML page, I think I am > > missing it. How do I enable it? > > poudriere-devel puts its web root in a different location. There's an > example nginx.conf in /usr/local/share/examples/poudriere I dislike the new setup. Previously, I had the /logs location protected by a password while all the rest (including the repository) was world readable. Now I don't know how to achieve this. > Note that if you're using the poudriere output directly as a package > repository, you'll need to tweak that a bit. Hint: everything pkg(8) > wants from a pkgrepo is currently a .txz file. (I think the idea with > the example is that your pkgrepo is either a separate vhost in your > webserver config, or you copy the compiled packages and repo-metadata > stuff to another server.) I have placed the repository into a separate location: location /packages { alias /var/poudriere/data/packages ; autoindex on; } location /data { ... It works. But I still cannot figure out how to make the whole site password-protected except the packages repository. > > Cheers, > > Matthew > -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Fri Jun 6 12:42:36 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E1749D0A for ; Fri, 6 Jun 2014 12:42:36 +0000 (UTC) Received: from mail-ie0-x235.google.com (mail-ie0-x235.google.com [IPv6:2607:f8b0:4001:c03::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B23C72C0B for ; Fri, 6 Jun 2014 12:42:36 +0000 (UTC) Received: by mail-ie0-f181.google.com with SMTP id rp18so2302809iec.26 for ; Fri, 06 Jun 2014 05:42:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=O6dTv1QHLKIWIbYPowsfBs+fNKfuYLI33dhf0ALiQQA=; b=OhWBxN0Aq6AqWqEX2XDm5HpzHkG0nATA1H2o0OEDDPBh9y9uSVS0/resNMTfDxaiU6 /KGLFnW2x+szKQIB1fuFgnkhO+Bl0AI+N6jAZ29GwIFcuH3Tfb4Y6DWwW2wLEzbD0bpD fO8k6qfnQhQu6864ghw/ZqLso7fx/+RO5N1ndGY3vGpr8sScXJuDZLmKr5SgRsykoCL8 bRLQpGpT2h4sHJ9jHE/eIeByp/cB5Hgzjc4Yiaf0K3D2WGPSZLJhEVJ26VFSZwj7i7Kn L2YhHf/Uzg39Cwj9BLLRHHeaN5pAnX4RXDASL+txW4E1D+0aqXl0ck/QW8mYVE0U2cH4 Rhgg== MIME-Version: 1.0 X-Received: by 10.50.45.38 with SMTP id j6mr5604828igm.10.1402058556017; Fri, 06 Jun 2014 05:42:36 -0700 (PDT) Sender: vrwmiller@gmail.com Received: by 10.64.19.114 with HTTP; Fri, 6 Jun 2014 05:42:35 -0700 (PDT) Date: Fri, 6 Jun 2014 08:42:35 -0400 X-Google-Sender-Auth: rBa1DgDwAGCn_brtBn2nNWxrEJ8 Message-ID: Subject: private pkg repos w/ poudriere From: Rick Miller To: freebsd-pkg@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jun 2014 12:42:37 -0000 Hi all, I ran through the BSDNow tutorial "Making a binary package repository with poudriere" and created repos on a FreeBSD host and copied the resulting directory and contents to a Linux node which hosts a provisioning platform that also hosts binary software repos. I booted a VM to the 10.0-RELEASE bootonly ISO (which I am modifying to perform a custom OS installation) and set PACKAGESITE to the fully qualified URL to the Linux host above and, upon executing pkg, an error citing "Signature for pkg not available" is output. The web server logs on the Linux host show that pkg.txz was found, but not pkg.txz.sig[1]. The logs are accurate...the pkg.txz.sig file does not exist. I assumed Poudriere and/or pkg(8) would generate all files necessary for bootstrapping pkg(8) and using it to install packages to the disk, but this doesn't appear to be the case. I must have missed something. Can someone shed some light on what I did miss? I'm also concerned pkg will encounter issues installing into the bootonly environment as it is read-only. Are there options available for bootstrapping pkg in the bootonly ISO and perhaps installing it to the disk? == References [1] 192.168.x.xxx - - [06/Jun/2014:08:19:27 -0400] "GET /cobbler/repo_mirror/100x64-20140605/Latest/pkg.txz HTTP/1.1" 200 2073272 "-" "pkg libfetch/2.0" 192.168.x.xxx - - [06/Jun/2014:08:19:42 -0400] "GET /cobbler/repo_mirror/100x64-20140605/Latest/pkg.txz.sig HTTP/1.1" 404 354 "-" "pkg libfetch/2.0" 192.168.x.xxx - - [06/Jun/2014:08:19:43 -0400] "GET /cobbler/repo_mirror/100x64-20140605/Latest/pkg.txz.sig HTTP/1.1" 404 354 "-" "pkg libfetch/2.0" 192.168.x.x - - [06/Jun/2014:08:19:44 -0400] "GET /cobbler/repo_mirror/100x64-20140605/Latest/pkg.txz.sig HTTP/1.1" 404 354 "-" "pkg libfetch/2.0" -- Take care Rick Miller From owner-freebsd-pkg@FreeBSD.ORG Sat Jun 7 16:26:48 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CAD84A9; Sat, 7 Jun 2014 16:26:48 +0000 (UTC) Received: from smtprelay01.ispgateway.de (smtprelay01.ispgateway.de [80.67.31.35]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2E2C42BDD; Sat, 7 Jun 2014 16:26:44 +0000 (UTC) Received: from [89.182.86.32] (helo=localhost) by smtprelay01.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1WtJOR-0000qP-6d; Sat, 07 Jun 2014 18:22:55 +0200 Date: Sat, 7 Jun 2014 18:22:55 +0200 From: Marcus von Appen To: freebsd-ports@freebsd.org, freebsd-pkg@freebsd.org, ports-announce@freebsd.org Subject: [HEADS UP]: Conflict-free python packages for different python versions Message-ID: <20140607162255.GA862@medusa.sysfault.org> Reply-To: Marcus von Appen Mail-Followup-To: freebsd-ports@freebsd.org, freebsd-pkg@freebsd.org, ports-announce@freebsd.org, freebsd-python@freebsd.org MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="oyUTqETQ0mS9luUI" Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-Df-Sender: MTEyNTc0Mg== Cc: freebsd-python@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jun 2014 16:26:48 -0000 --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On behalf of the FreeBSD python team, I'd like to announce the availability of concurrent, conflict-free python package support in the ports tree. Why? FreeBSD supports different python versions and flavours to be installed at the same time, such as e.g. Python 2.7 and Python 3.3. Ports installing python modules however always assume that that they are installed for only one python version. To overcome the flaw in the ports tree that a single port, which is about to be installed for different python versions at the same time, will install conflicting files into the same directories, a change in how those ports are built and installed was necessary. What does that mean for port and pkg users? If you are using the ports tree to build your own ports from scratch, it won't have any impact as of now, since the underlying package installers, be it pkg or the pkg_* tools, can't install multiple packages from the same source port yet. If you are using pkg or the pkg_* tools to install binary packages, it won't have any impact as well, since they can't install multiple packages from the same source port yet. You should be aware of some directory and file name changes, though, that eventually will occur on updates. A python module may use the python version prefix for the doc and example directories and create scripts and binaries with a python version suffix. Right now, a port devel/py-foo might install * documentation into/usr/local/share/doc/foo, * examples into /usr/local/share/examples/foo, * a script /usr/local/bin/foo The announced change (along with an update to the port) will cause it to use a python version prefix for the directories and a version suffix for the scripts (and binaries). This means, that the port will install * documentation into /usr/local/share/doc/py27-foo (for lang/python27) * documentation into /usr/local/share/doc/py32-foo (for lang/python32) * documentation into /usr/local/share/doc/py33-foo (for lang/python33) ... * examples into /usr/local/share/examples/py27-foo (for lang/python27) * examples into /usr/local/share/examples/py32-foo (for lang/python32) * examples into /usr/local/share/examples/py33-foo (for lang/python33) ... * a script /usr/local/bin/foo-2.7 (for lang/python27) * a script /usr/local/bin/foo-3.2 (for lang/python32) * a script /usr/local/bin/foo-3.3 (for lang/python33) * a symlink /usr/local/bin/foo pointing to the script for the current default python version (e.g. foo-2.7 or foo-3.3) Please note that the current installation behaviour will not be changed automatically. Ports that shall support conflict-free packages, must receive an update first. If you are not a port maintainer, committer or developer, you can stop reading now. What about maintainers and port developers? Please read the CHANGES. The change makes use of USES=uniquefiles:dirs. Thus, if you are maintaining a port, which shall become conflict-free, set the new PYTHON_CONCURRENT_INSTALL knob to yes. The port must be stage-safe to use the knob. Please ensure that you do not set DATADIR, DOCSDIR, WWWDIR, EXAMPLESDIR or ETCDIR explicitly in the port Makefile, since the uniquefiles USES will try to prefix those. The change will also add a suffix to binaries and scripts that will be installed into ${PREFIX}/bin, ${PREFIX}/sbin, ${PREFIX}/libexec and create a symlink for the default python version on demand. If you are using a manually maintained pkg-plist, you may need to adjust it using the PYTHON_PKGNAMEPREFIX and PYTHON_VER variables to properly substitute plist entries. If you are using PYDISTUTILS_AUTOPLIST, you usually do not have take care of any plist modifications. The rule of thumb is that most end-user applications, service daemons and similar tools do not need to be installed concurrently for different python versions. Python modules however will gain an immediate benefit, since they can be provided for different python versions at the same time without forcing the user to install them manually from another location. We chose the knob to be an opt-in, rather than an opt-out solution, due to various constraints, such as a full package rebuild, the requirement to check all python-related ports prior to the commit and to keep the immediate impact for users as small as possible. If you have any specific questions about how to update your port, do not hesitate to ask the FreeBSD python team. Cheers Marcus --oyUTqETQ0mS9luUI Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEARECAAYFAlOTPF8ACgkQi68/ErJnpkdRsgCfRtNWS2X2oC9iu480f4NQ6DB7 +ssAn048LP3Ah5PcU5zXWTE9t9k5gc3b =ioXM -----END PGP SIGNATURE----- --oyUTqETQ0mS9luUI-- From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 05:46:09 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 51DE4E48 for ; Mon, 16 Jun 2014 05:46:09 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 39DB127DD for ; Mon, 16 Jun 2014 05:46:09 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5k9Kt057134 for ; Mon, 16 Jun 2014 06:46:09 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 189084] ports-mgmt/pkg: pkg check -B does not check indirect dependencies Date: Mon, 16 Jun 2014 05:46:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:46:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189084 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 05:46:46 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4A3B3E7B for ; Mon, 16 Jun 2014 05:46:46 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3209E27E8 for ; Mon, 16 Jun 2014 05:46:46 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5kk0Q057930 for ; Mon, 16 Jun 2014 06:46:46 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 187464] ports-mgmt/pkg: pkg-1.2.6 410.pkg-audit.in depends on periodic.conf vars from 9 and lower Date: Mon, 16 Jun 2014 05:46:45 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:46:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=187464 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 05:47:15 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7470AEAE for ; Mon, 16 Jun 2014 05:47:15 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5C7DA27EE for ; Mon, 16 Jun 2014 05:47:15 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5lF2q058595 for ; Mon, 16 Jun 2014 06:47:15 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 187299] ports-mgmt/pkg: pkg-1.2.6: some pkg query-format strings miss results Date: Mon, 16 Jun 2014 05:47:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:47:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=187299 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 05:51:18 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 87C2DF7F for ; Mon, 16 Jun 2014 05:51:18 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6F7572886 for ; Mon, 16 Jun 2014 05:51:18 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5pI1b068399 for ; Mon, 16 Jun 2014 06:51:18 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 186827] ports-mgmt/pkg pkg-repo(8) includes only oldest version of package Date: Mon, 16 Jun 2014 05:51:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:51:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=186827 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 05:51:42 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0C54AFB1 for ; Mon, 16 Jun 2014 05:51:42 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E89D62889 for ; Mon, 16 Jun 2014 05:51:41 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5pf04074641 for ; Mon, 16 Jun 2014 06:51:41 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 187780] ports-mgmt/pkg (and pkg mirrors): packagesite.yaml contains excessive escaping Date: Mon, 16 Jun 2014 05:51:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:51:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=187780 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 05:52:21 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F3DC8FE7 for ; Mon, 16 Jun 2014 05:52:20 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DB84D2891 for ; Mon, 16 Jun 2014 05:52:20 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5qKuv082795 for ; Mon, 16 Jun 2014 06:52:20 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 184582] ports-mgmt/pkg: update pkg-1.2.1 to pkg-1.2.2 via ports collection Date: Mon, 16 Jun 2014 05:52:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:52:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=184582 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 05:52:56 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A204AB for ; Mon, 16 Jun 2014 05:52:56 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4239C289B for ; Mon, 16 Jun 2014 05:52:56 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5quWn089914 for ; Mon, 16 Jun 2014 06:52:56 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 186671] ports-mgmt/pkg 1.2.6 pkg version ignores index argument Date: Mon, 16 Jun 2014 05:52:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:52:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=186671 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 05:54:23 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 78A26118 for ; Mon, 16 Jun 2014 05:54:23 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 609C928A6 for ; Mon, 16 Jun 2014 05:54:23 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5sNcZ093512 for ; Mon, 16 Jun 2014 06:54:23 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 186822] pkg(1): pkg bootstrap code fails when connecting to a server that provides a chunked response Date: Mon, 16 Jun 2014 05:54:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 1.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:54:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=186822 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 05:55:02 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AED6E14F for ; Mon, 16 Jun 2014 05:55:02 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9759A28AE for ; Mon, 16 Jun 2014 05:55:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5t2oB094525 for ; Mon, 16 Jun 2014 06:55:02 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 186497] ports-mgmt/pkg: local overrides for pkg audit Date: Mon, 16 Jun 2014 05:55:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:55:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=186497 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 05:55:34 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 131A1185 for ; Mon, 16 Jun 2014 05:55:34 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EF7F728B4 for ; Mon, 16 Jun 2014 05:55:33 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5tXkq095240 for ; Mon, 16 Jun 2014 06:55:33 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 185763] ports-mgmt/pkg should fail if no category is specified for the package Date: Mon, 16 Jun 2014 05:55:34 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:55:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=185763 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 05:57:37 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F10781C9 for ; Mon, 16 Jun 2014 05:57:37 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D93DA28C3 for ; Mon, 16 Jun 2014 05:57:37 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5vb7a097133 for ; Mon, 16 Jun 2014 06:57:37 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 185576] ports-mgmt/pkg can't bootstrap from VirtualBox in NAT network Date: Mon, 16 Jun 2014 05:57:37 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:57:38 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=185576 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org, | |pkg@FreeBSD.org Assignee|portmgr@FreeBSD.org |vbox@FreeBSD.org --- Comment #2 from Baptiste Daroussin --- This imho sounds more like a vbox defect than a pkg one -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 05:58:30 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6FDC6209 for ; Mon, 16 Jun 2014 05:58:30 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 57A5128D0 for ; Mon, 16 Jun 2014 05:58:30 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5wUFu097560 for ; Mon, 16 Jun 2014 06:58:30 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 184953] ports-mgmt/pkg: pkg updating misses ports/UPDATING entries containing wildcard Date: Mon, 16 Jun 2014 05:58:30 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:58:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=184953 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 05:59:10 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 039FE238 for ; Mon, 16 Jun 2014 05:59:10 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E054A28D5 for ; Mon, 16 Jun 2014 05:59:09 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5x9G8098157 for ; Mon, 16 Jun 2014 06:59:09 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 184645] ports-mgmt/pkg: "pkgng" corrupts package system Date: Mon, 16 Jun 2014 05:59:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:59:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=184645 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 05:59:45 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1EC40271 for ; Mon, 16 Jun 2014 05:59:45 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0648728DC for ; Mon, 16 Jun 2014 05:59:45 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G5xi7E098567 for ; Mon, 16 Jun 2014 06:59:44 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 182347] ports-mgmt/pkg: install target does nothing for pkgng + staging + NO_PKG_REGISTER case Date: Mon, 16 Jun 2014 05:59:45 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: staging X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 05:59:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=182347 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 06:00:20 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 67E672D9 for ; Mon, 16 Jun 2014 06:00:20 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5003428E8 for ; Mon, 16 Jun 2014 06:00:20 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G60KSU002361 for ; Mon, 16 Jun 2014 07:00:20 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 181978] ports-mgmt/pkg: Ports with PKGNG doesn't have a -X equivalent mechanism Date: Mon, 16 Jun 2014 06:00:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 06:00:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=181978 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 06:01:32 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49CEB318 for ; Mon, 16 Jun 2014 06:01:32 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 327652960 for ; Mon, 16 Jun 2014 06:01:32 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G61WvO027565 for ; Mon, 16 Jun 2014 07:01:32 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 178887] [pkgng] [request] Desired pkgng metadata Date: Mon, 16 Jun 2014 06:01:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 06:01:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=178887 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 06:01:59 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2F164348 for ; Mon, 16 Jun 2014 06:01:59 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1745A2965 for ; Mon, 16 Jun 2014 06:01:59 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G61wi8037101 for ; Mon, 16 Jun 2014 07:01:58 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 176889] ports-mgmt/pkg: pkg update doesn't fetch updated repo from private copy Date: Mon, 16 Jun 2014 06:01:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 06:01:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=176889 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 06:02:39 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A172236F for ; Mon, 16 Jun 2014 06:02:39 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 894BD296B for ; Mon, 16 Jun 2014 06:02:39 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G62dFH051152 for ; Mon, 16 Jun 2014 07:02:39 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 184582] ports-mgmt/pkg: update pkg-1.2.1 to pkg-1.2.2 via ports collection Date: Mon, 16 Jun 2014 06:02:39 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 06:02:39 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=184582 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved Resolution|--- |Overcome By Events --- Comment #3 from Baptiste Daroussin --- New releases fixed those -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 06:03:08 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96EBC3A1 for ; Mon, 16 Jun 2014 06:03:08 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7F35A2971 for ; Mon, 16 Jun 2014 06:03:08 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G6385S060520 for ; Mon, 16 Jun 2014 07:03:08 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 175843] ports-mgmt/pkg: dry run mode should work as non-root Date: Mon, 16 Jun 2014 06:03:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 06:03:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=175843 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 06:03:36 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 67E3C3D4 for ; Mon, 16 Jun 2014 06:03:36 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F7902976 for ; Mon, 16 Jun 2014 06:03:36 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G63aQ3069832 for ; Mon, 16 Jun 2014 07:03:36 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 175768] ports-mgmt/pkg sends terminal control codes (and duplicate output) even when not running in one Date: Mon, 16 Jun 2014 06:03:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 06:03:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=175768 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bapt@FreeBSD.org Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 06:04:10 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E97E404 for ; Mon, 16 Jun 2014 06:04:10 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 567B3297A for ; Mon, 16 Jun 2014 06:04:10 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G64APw082134 for ; Mon, 16 Jun 2014 07:04:10 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 175249] [pkgng] ports-mgmt/pkg: regression: registering packages can only be done as root Date: Mon, 16 Jun 2014 06:04:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 06:04:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=175249 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|portmgr@FreeBSD.org |pkg@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 06:08:26 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AE85E46A for ; Mon, 16 Jun 2014 06:08:26 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 96B692998 for ; Mon, 16 Jun 2014 06:08:26 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G68Qit026889 for ; Mon, 16 Jun 2014 07:08:26 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 176889] ports-mgmt/pkg: pkg update doesn't fetch updated repo from private copy Date: Mon, 16 Jun 2014 06:08:26 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 06:08:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=176889 --- Comment #2 from Baptiste Daroussin --- That may have been fixed in the meantime, can you confirm? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 14:32:28 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 18409ED4 for ; Mon, 16 Jun 2014 14:32:28 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 001C22752 for ; Mon, 16 Jun 2014 14:32:27 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5GEWRiB008670 for ; Mon, 16 Jun 2014 15:32:27 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 176889] ports-mgmt/pkg: pkg update doesn't fetch updated repo from private copy Date: Mon, 16 Jun 2014 14:32:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: vivek@khera.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 14:32:28 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=176889 --- Comment #3 from vivek@khera.org --- Yes, this appears to not be a problem anymore. The pkg command fetches the repo unconditionally on every command that needs it now. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 16 15:16:14 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B06A66EF for ; Mon, 16 Jun 2014 15:16:14 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 983A72B99 for ; Mon, 16 Jun 2014 15:16:14 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5GFGEl6056243 for ; Mon, 16 Jun 2014 16:16:14 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 176889] ports-mgmt/pkg: pkg update doesn't fetch updated repo from private copy Date: Mon, 16 Jun 2014 15:16:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 15:16:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=176889 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved Resolution|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Tue Jun 17 23:46:49 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 38AAB957 for ; Tue, 17 Jun 2014 23:46:49 +0000 (UTC) Received: from mail.iXsystems.com (newknight.ixsystems.com [206.40.55.70]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1A5572C4A for ; Tue, 17 Jun 2014 23:46:48 +0000 (UTC) Received: from localhost (mail.ixsystems.com [10.2.55.1]) by mail.iXsystems.com (Postfix) with ESMTP id 8568476B6B for ; Tue, 17 Jun 2014 16:46:48 -0700 (PDT) Received: from mail.iXsystems.com ([10.2.55.1]) by localhost (mail.ixsystems.com [10.2.55.1]) (maiad, port 10024) with ESMTP id 90248-03-4 for ; Tue, 17 Jun 2014 16:46:48 -0700 (PDT) Received: from kruse-242.1.ixsystems.com (kruse-242.1.ixsystems.com [10.2.1.242]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mail.iXsystems.com (Postfix) with ESMTPSA id 601E076B3A for ; Tue, 17 Jun 2014 16:46:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ixsystems.com; s=newknight0; t=1403048796; bh=wxsSJxGqhZS5fJRFeBxtCxuf4caIJVSMG1BUcRUNCq0=; h=From:Subject:Date:To; b=Dwpsd45emNeS3NJisd25hFst5crrb39kzo7KYuUD6AWcfqDyOg66JCfrPd31EmtQd HsjQMwkldJQ9rzX4N7c4JJGZcrKqqE51qDRLw0hSSflsavBhfgX+82So7Tyc85CHAU mlevQnnobv/XaIRRTnu7TEcQRlM3Ri0kjzvVH4/g= From: Sean Fagan Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: Directories aren't included? Message-Id: <44A7EDED-DA81-4C03-91F4-8BEF3241FE1F@ixsystems.com> Date: Tue, 17 Jun 2014 16:46:05 -0700 To: freebsd-pkg@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.2\)) X-Mailer: Apple Mail (2.1878.2) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jun 2014 23:46:49 -0000 Given this manifest file: { "name" : "mypkg", "version" : "1.0", "origin" : "system/test", "comment" : "foo", "maintainer" : "me", "prefix" : "/", "www" : "http://www.example.com/", "licenselogic" : "single", "desc" : "bar", "dirs" : { "./dir1", "./dir1/dir2", }, "files" : { "./dir1/test_file" : "-", }, } and this layout: dir1 ./dir1: dir2 test_file ./dir1/dir2: The tar file it creates does not have "dir2" in it: tar tvf badpkg-1.0.txz=20 -rw-r--r-- 0 root wheel 214 Dec 31 1969 +COMPACT_MANIFEST -rw-r--r-- 0 root wheel 310 Dec 31 1969 +MANIFEST -rw-r--r-- 0 sef sef 29 Jun 17 16:17 ./dir1/test_file In other words, it is not adding empty directories to the package. Am I creating it incorrectly? If I put "./dir2" in the "files" section, it puts it in the tarball, but = I'm not sure that is correct. This is pkg 1.2.7_2; I have't tried with a newer version yet, for which = I apologise. Sean. From owner-freebsd-pkg@FreeBSD.ORG Wed Jun 18 05:11:19 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6515A991 for ; Wed, 18 Jun 2014 05:11:19 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id E67D125CC for ; Wed, 18 Jun 2014 05:11:18 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.2.117.99]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.8/8.14.8) with ESMTP id s5I5AviO032607 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Wed, 18 Jun 2014 06:11:01 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: lucid-nonsense.infracaninophile.co.uk; dmarc=none header.from=infracaninophile.co.uk DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s5I5AviO032607 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1403068261; bh=rji7FgRn9dRDer6b12BwedP64oIwZN4OIjB1PHfjaQY=; h=Date:From:To:Subject:References:In-Reply-To; z=Date:=20Wed,=2018=20Jun=202014=2006:10:45=20+0100|From:=20Matthew =20Seaman=20|To:=20freebsd-pkg@fr eebsd.org|Subject:=20Re:=20Directories=20aren't=20included?|Refere nces:=20<44A7EDED-DA81-4C03-91F4-8BEF3241FE1F@ixsystems.com>|In-Re ply-To:=20<44A7EDED-DA81-4C03-91F4-8BEF3241FE1F@ixsystems.com>; b=byceerQ6aZp3ooiDmKSE+x+NFPr76sVkgeuNtY8hdFeIUOpLGOdQFK/40whiYREs5 TNq8j9Qyj+dS7ixxipl4NMcF4o58BcGnFJC0vX7ifuV2jKDT+NR/AYJandHLIL7qtH rxGEL3yNwFADbEts/Rftv1RT0pcThM9nOhih1N1E= Message-ID: <53A11F55.3090402@infracaninophile.co.uk> Date: Wed, 18 Jun 2014 06:10:45 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: Directories aren't included? References: <44A7EDED-DA81-4C03-91F4-8BEF3241FE1F@ixsystems.com> In-Reply-To: <44A7EDED-DA81-4C03-91F4-8BEF3241FE1F@ixsystems.com> X-Enigmail-Version: 1.6 OpenPGP: id=E7F39EBF Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="mqeHbMXOv6x9Li8L13PtCnhOeslaAjulU" X-Virus-Scanned: clamav-milter 0.98.3 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jun 2014 05:11:19 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --mqeHbMXOv6x9Li8L13PtCnhOeslaAjulU Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 18/06/2014 00:46, Sean Fagan wrote: > Given this manifest file: >=20 > { > "name" : "mypkg", > "version" : "1.0", > "origin" : "system/test", > "comment" : "foo", > "maintainer" : "me", > "prefix" : "/", > "www" : "http://www.example.com/", > "licenselogic" : "single", > "desc" : "bar", > "dirs" : { > "./dir1", > "./dir1/dir2", > }, > "files" : { > "./dir1/test_file" : "-", > }, > } >=20 > and this layout: >=20 > dir1 >=20 > ./dir1: > dir2 test_file >=20 > ./dir1/dir2: >=20 > The tar file it creates does not have "dir2" in it: >=20 > tar tvf badpkg-1.0.txz=20 > -rw-r--r-- 0 root wheel 214 Dec 31 1969 +COMPACT_MANIFEST > -rw-r--r-- 0 root wheel 310 Dec 31 1969 +MANIFEST > -rw-r--r-- 0 sef sef 29 Jun 17 16:17 ./dir1/test_file >=20 >=20 > In other words, it is not adding empty directories to the package. >=20 > Am I creating it incorrectly? >=20 > If I put "./dir2" in the "files" section, it puts it in the tarball, bu= t I'm not sure that is correct. >=20 > This is pkg 1.2.7_2; I have't tried with a newer version yet, for which= I apologise. I don't think pkg-1.2 is going to handle relative paths properly -- if you look at a sample package from the repos, you'll see all the paths are fully qualified from the root. In fact, I'd hope pkg would complain about wrongly specified paths, but I suspect it doesn't Directories may not appear as separate items in the tar archive part of the package. Hmmm... not sure if this is a hold-over from the old pkg_tools (which can't handle directories like that at all). pkg(8) certainly should be creating directories as first-class items, in the way you're expecting. However, this is different to the way ports has worked historically so this code path doesn't get much, if any, testing. What happens if you try and install your package? Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey JID: matthew@infracaninophile.co.uk --mqeHbMXOv6x9Li8L13PtCnhOeslaAjulU Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJToR9gXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATmlEP/jHQS5NLforQJnU0sK4k8rwb 0VmNZSG6H0JEt7SlgY48PNl+PvtRuwR1cGyEBbTI51fKU0n/sUuclYpdrGMbd+IQ e3A5dyNxWJRDwStlVvs2Xni8+IVu0zMAavBQ1loPmJ3jJ/VFM8JEM4mWM+29Cg8D vfSC3dXU8JbG+6SledSrTLYwyaGIRsoImt22zA41syKeyEf7IlQXjHs9dTljXebL ZuToyI4TXLTKPXfHlR8oTbu+BpLol7aknFinBHh8iIP3CrZrr8MR7Kzn3gVdzMDJ +WN8atUzbOuy0+PqlEq7+9iJxKDJ4HVapTnp/Q0eJXG/d55UpgElTwWvYpMq957A KGKaFETpgXY+gLQ1V+iSCnVt8OhfDkhlTo2TNDrxGu9Ep+5G0kPCZ5zhFe3rxgUP cpvy/W7rMuOkdNhcZKkDtwxpVC9i7lvdmeBtDfCc8miSW8Wo/KhH8OvUAfy/aTlC PsO8ccpYg2OZJomed1A1x27ytDi/UcnqfexsKmqlY229b4vBTmFp5qgsHnljEAbI 0Gwa1oZDPn17CbZ1wUqqpqcSIWGv5qmT4pyubHYJY2t4YoyZ1FiXt4qwU4Mrhnkw WCOw/1k9AK+Kpq7OPdFRIM/Sr0QtR0aHgdawjlRd8XAxngEzoIJx7eBNJGPl0La2 V8MVbKkVBWONe+lgNrhK =7+oo -----END PGP SIGNATURE----- --mqeHbMXOv6x9Li8L13PtCnhOeslaAjulU-- From owner-freebsd-pkg@FreeBSD.ORG Wed Jun 18 18:49:19 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 451FA8AC for ; Wed, 18 Jun 2014 18:49:19 +0000 (UTC) Received: from mail.iXsystems.com (newknight.ixsystems.com [206.40.55.70]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 22B932440 for ; Wed, 18 Jun 2014 18:49:18 +0000 (UTC) Received: from localhost (mail.ixsystems.com [10.2.55.1]) by mail.iXsystems.com (Postfix) with ESMTP id 3E10676D5A for ; Wed, 18 Jun 2014 11:49:18 -0700 (PDT) Received: from mail.iXsystems.com ([10.2.55.1]) by localhost (mail.ixsystems.com [10.2.55.1]) (maiad, port 10024) with ESMTP id 70935-07 for ; Wed, 18 Jun 2014 11:49:18 -0700 (PDT) Received: from kruse-177.4.ixsystems.com (kruse-177.4.ixsystems.com [10.2.4.177]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mail.iXsystems.com (Postfix) with ESMTPSA id BC13276D55 for ; Wed, 18 Jun 2014 11:49:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ixsystems.com; s=newknight0; t=1403117357; bh=kNXs/zd9WELD+P296cTR+TU1YxceA/T9b1xiC8eQ9QI=; h=Subject:From:In-Reply-To:Date:References:To; b=Kxn0VTKJeRBI1N8EFtnv2Zr0+5+KalRD+PaiOVnpe06SmzRPZEKSaWY+fGBDvXQpO VZTv5uWkvidGuD0RiEYOxrsEO6KFt8M7YH8sp66bWAQpVhqFMLoF5Pj8FhbnG6/MLp x209gLhyXTMo2aUIY2SL3D5UNyLiX40vcf8y1fm4= Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.2\)) Subject: Re: Directories aren't included? From: Sean Fagan In-Reply-To: <44A7EDED-DA81-4C03-91F4-8BEF3241FE1F@ixsystems.com> Date: Wed, 18 Jun 2014 11:49:17 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <49E2C777-9E53-4275-AA55-912514325043@ixsystems.com> References: <44A7EDED-DA81-4C03-91F4-8BEF3241FE1F@ixsystems.com> To: freebsd-pkg@freebsd.org X-Mailer: Apple Mail (2.1878.2) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jun 2014 18:49:19 -0000 After discussion with Matthew last night, I verified the same behaviour = with a freshly-cloned tree, and filed = https://github.com/freebsd/pkg/issues/839 Sean. From owner-freebsd-pkg@FreeBSD.ORG Wed Jun 18 21:43:57 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF8C0FEE for ; Wed, 18 Jun 2014 21:43:57 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B74B223B1 for ; Wed, 18 Jun 2014 21:43:57 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5ILhvl1096268 for ; Wed, 18 Jun 2014 22:43:57 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 191089] ports-mgmt/pkg: If the sshd process is killed before 'pkg ssh' quits pkg will not terminate and consume 100% CPU Date: Wed, 18 Jun 2014 21:43:57 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marino@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jun 2014 21:43:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191089 John Marino changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |marino@FreeBSD.org Assignee|freebsd-ports-bugs@FreeBSD. |pkg@FreeBSD.org |org | --- Comment #1 from John Marino --- over to maintainer -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Wed Jun 18 21:44:06 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 82ABBC8 for ; Wed, 18 Jun 2014 21:44:06 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 690EA23B6 for ; Wed, 18 Jun 2014 21:44:06 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5ILi6Sw096475 for ; Wed, 18 Jun 2014 22:44:06 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 191089] ports-mgmt/pkg: If the sshd process is killed before 'pkg ssh' quits pkg will not terminate and consume 100% CPU Date: Wed, 18 Jun 2014 21:44:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marino@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jun 2014 21:44:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191089 John Marino changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Open -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Sat Jun 21 10:18:34 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2F67A4A4 for ; Sat, 21 Jun 2014 10:18:34 +0000 (UTC) Received: from zibbi.meraka.csir.co.za (zibbi.meraka.csir.co.za [146.64.24.58]) by mx1.freebsd.org (Postfix) with ESMTP id BCF2A2562 for ; Sat, 21 Jun 2014 10:18:33 +0000 (UTC) Received: by zibbi.meraka.csir.co.za (Postfix, from userid 3973) id CE70FB843; Sat, 21 Jun 2014 12:18:25 +0200 (SAST) Date: Sat, 21 Jun 2014 12:18:25 +0200 From: John Hay To: pkg@freebsd.org Subject: pkg fail to install on AVILA/CAMBRIA arm boards Message-ID: <20140621101825.GA18399@zibbi.meraka.csir.co.za> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jun 2014 10:18:34 -0000 Hi Guys, I'm trying to build pkg from ports on a nfs booted CAMBRIA arm board using FreeBSD-head. I can build the whole pkg, but then when trying to install, I get pkg-static: failed to find the version elf note ############# root@:/usr/ports/ports-mgmt/pkg # make install ===> Installing for pkg-1.2.7_3 ===> Checking if ports-mgmt/pkg already installed pkg-static: failed to find the version elf note ===> Registering installation for pkg-1.2.7_3 pkg-static: failed to find the version elf note pkg-static: failed to find the version elf note Installing pkg-1.2.7_3...pkg-static: package field incomplete: architecture pkg-static: the package is not valid pkg-static: sqlite: cannot rollback - no transaction is active If you are upgrading from the old package format, first run: # pkg2ng *** Error code 70 Stop. make[1]: stopped in /export/ports/ports-mgmt/pkg *** Error code 1 Stop. make: stopped in /export/ports/ports-mgmt/pkg ############## root@:~ # uname -a FreeBSD 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r267633M: Thu Jun 19 14:32:34 SAST 2014 jhay@dolphin.meraka.csir.co.za:/usr/obj/arm.armeb/snaps/arm/11-tst/src/sys/CAMBRIA arm ############## Is there some bootstrapping that I need to do? My previous arm stuff used the old pkg system. Regards John -- John Hay -- jhay@meraka.csir.co.za / jhay@meraka.org.za / jhay@FreeBSD.org From owner-freebsd-pkg@FreeBSD.ORG Tue Jun 24 01:45:17 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CFD25975 for ; Tue, 24 Jun 2014 01:45:17 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 3C7142D54 for ; Tue, 24 Jun 2014 01:45:15 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35804740 for freebsd-pkg@freebsd.org; Tue, 24 Jun 2014 08:45:14 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s5O1jD4O003852 for ; Tue, 24 Jun 2014 08:45:14 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s5O1jDkp003851 for freebsd-pkg@freebsd.org; Tue, 24 Jun 2014 08:45:13 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Tue, 24 Jun 2014 08:45:13 +0700 From: Victor Sudakov To: freebsd-pkg@freebsd.org Subject: Cleanup of /var/db/pkg/ Message-ID: <20140624014513.GA3659@admin.sibptus.tomsk.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 01:45:17 -0000 Colleagues, Is it safe to remove all directories and files therein in /var/db/pkg/ after running pkg2ng? Is there anything of value there other than /var/db/pkg/*.sqlite databases? -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Tue Jun 24 05:33:22 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F349B2 for ; Tue, 24 Jun 2014 05:33:22 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 491E82ED2 for ; Tue, 24 Jun 2014 05:33:22 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.2.117.99]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.9/8.14.9) with ESMTP id s5O5XEVA024481 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Tue, 24 Jun 2014 06:33:14 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: lucid-nonsense.infracaninophile.co.uk; dmarc=none header.from=infracaninophile.co.uk DKIM-Filter: OpenDKIM Filter v2.9.2 smtp.infracaninophile.co.uk s5O5XEVA024481 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1403587994; bh=9F1owXbGYdqs/A5maMaCBdnxpQZ+Nn1nd8qG3cHS1Bg=; h=Date:From:To:Subject:References:In-Reply-To; z=Date:=20Tue,=2024=20Jun=202014=2006:33:13=20+0100|From:=20Matthew =20Seaman=20|To:=20freebsd-pkg@fr eebsd.org|Subject:=20Re:=20Cleanup=20of=20/var/db/pkg/|References: =20<20140624014513.GA3659@admin.sibptus.tomsk.ru>|In-Reply-To:=20< 20140624014513.GA3659@admin.sibptus.tomsk.ru>; b=QWZ+X18xnqH439Ezd+SC0D8onnHZ+BswJQ/ZdnvI18qjJvwkINOPRwOgTW+5LQvl4 a50GicrSM9QGe6GTEZ+UThuZuAF+0FCSkqT10Dfwax50HnRbAMrJmYiRwywlhLAKhH ebOeETFX7QkTupdVFBWDamSQotLZMKf/9UTDhmdU= Message-ID: <53A90D99.10009@infracaninophile.co.uk> Date: Tue, 24 Jun 2014 06:33:13 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: freebsd-pkg@freebsd.org Subject: Re: Cleanup of /var/db/pkg/ References: <20140624014513.GA3659@admin.sibptus.tomsk.ru> In-Reply-To: <20140624014513.GA3659@admin.sibptus.tomsk.ru> X-Enigmail-Version: 1.6 OpenPGP: id=E7F39EBF Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="W2mfI7EhqTBTtVq0T87GnOGTCOfChASIA" X-Virus-Scanned: clamav-milter 0.98.3 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 05:33:22 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --W2mfI7EhqTBTtVq0T87GnOGTCOfChASIA Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 24/06/2014 02:45, Victor Sudakov wrote: > Is it safe to remove all directories and files therein in /var/db/pkg/ > after running pkg2ng?=20 >=20 > Is there anything of value there other than /var/db/pkg/*.sqlite > databases? Generally, yes. Other than local.sqlite or repo*.sqlite pkg(8) also uses some other bits and pieces like vuln.xml -- but apart from local.sqlite all of those can be downloaded from the net. Note that if you use portmaster(8) it creates per-pkg directories under /var/db/pkg to stash some information about distfiles. Deleting these will cause nothing worse than portmaster being unable to remove outdated versions of distfiles. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey JID: matthew@infracaninophile.co.uk --W2mfI7EhqTBTtVq0T87GnOGTCOfChASIA Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTqQ2ZXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATFoIQAJo12lgicUWelk4RHg4JFi2t PaXwLuWv6ihtBOvsArjgKAGCN6wBDyfR4ak0UiXL9kxgMOkrSTFeOIA/qm3u//s3 LfazqpUWIiHGslB6Ah0lX3gcRs1e2ceSxx5zOE5iLUdsJiPxcSliHbJWDXCtncQF 5G8XXq7gyVhRbBQbiqwJ/WhUCb8aDpINNT0ugyKi+nwz+N0mhesccTVPUXVeWwTX tRnlIpr7QB4pFw+qY8PpGNubp0LLub6T//hiIOGFkSqcEu8Y+Wz06xH64KGJHI+O xyNwadWCKFrdhJY4uIrVozUTZF2JnBAm38t2A3eK8LaiiyUDYo3lZ9CqkFGJ4Roo uCDPeqJ3/Ew0SYvxk2yFU4OaEIRN5DR9k8pfB1KbfnIqbg+FgoREAu+GhuOu9TsF aTl2+Me3gyR8hlDffE4LcQ608B0VjcNf9UUk6jankjsWOeZlptT5n754ahuyci6z Jv/YIJ1X7LGAVZJmF4whW15fn5nWWkVPoywCzXljGrmd4Hg85txNck3y4/sylCrN tzxdlBJKA6BGvnABibrnzuuJXmwXCPl3n9QWjR5idrpik6lQZWmVQ6ywjlQMES2b Atw++DpUHeqeUnivlMqs3Cp28Q4pZtCvoKN14lvKKoIRxgkGHhbGOTzGGHXVr02z yEfq6tjUUTjgo+dKfMyE =TWm1 -----END PGP SIGNATURE----- --W2mfI7EhqTBTtVq0T87GnOGTCOfChASIA-- From owner-freebsd-pkg@FreeBSD.ORG Tue Jun 24 06:39:58 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4C57A80 for ; Tue, 24 Jun 2014 06:39:58 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 4152B241A for ; Tue, 24 Jun 2014 06:39:57 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35806766; Tue, 24 Jun 2014 13:39:55 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s5O6dsxi012942; Tue, 24 Jun 2014 13:39:54 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s5O6drp3012941; Tue, 24 Jun 2014 13:39:53 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Tue, 24 Jun 2014 13:39:53 +0700 From: Victor Sudakov To: Matthew Seaman Subject: Re: Cleanup of /var/db/pkg/ Message-ID: <20140624063953.GA12165@admin.sibptus.tomsk.ru> References: <20140624014513.GA3659@admin.sibptus.tomsk.ru> <53A90D99.10009@infracaninophile.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <53A90D99.10009@infracaninophile.co.uk> Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 06:39:58 -0000 Matthew Seaman wrote: > > > Is it safe to remove all directories and files therein in /var/db/pkg/ > > after running pkg2ng? > > > > Is there anything of value there other than /var/db/pkg/*.sqlite > > databases? > > Generally, yes. Other than local.sqlite or repo*.sqlite pkg(8) also > uses some other bits and pieces like vuln.xml -- but apart from > local.sqlite all of those can be downloaded from the net. > > Note that if you use portmaster(8) it creates per-pkg directories under > /var/db/pkg to stash some information about distfiles. Deleting these > will cause nothing worse than portmaster being unable to remove outdated > versions of distfiles. Yes, I use portmaster. Would it be wiser then to delete only the '+*' files, like find /var/db/pkg/ -type f -name '+*' -delete My ultimate goal is to disable the pkg_* tools. -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Tue Jun 24 07:51:56 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CCB9C23D for ; Tue, 24 Jun 2014 07:51:56 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "ca.infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 70C4E2A53 for ; Tue, 24 Jun 2014 07:51:56 +0000 (UTC) Received: from ox-dell39.ox.adestra.com (no-reverse-dns.metronet-uk.com [85.199.232.226] (may be forged)) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.9/8.14.9) with ESMTP id s5O7pe90027486 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Tue, 24 Jun 2014 08:51:49 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: lucid-nonsense.infracaninophile.co.uk; dmarc=none header.from=infracaninophile.co.uk DKIM-Filter: OpenDKIM Filter v2.9.2 smtp.infracaninophile.co.uk s5O7pe90027486 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1403596309; bh=1dLhYvwr1NyJLYievmPKwzJbUAuROO2rpnh7T0MQ83U=; h=Date:From:To:CC:Subject:References:In-Reply-To; z=Date:=20Tue,=2024=20Jun=202014=2008:51:34=20+0100|From:=20Matthew =20Seaman=20|To:=20Victor=20Sudak ov=20|CC:=20freebsd-pkg@freebsd.org|Subject:=2 0Re:=20Cleanup=20of=20/var/db/pkg/|References:=20<20140624014513.G A3659@admin.sibptus.tomsk.ru>=20<53A90D99.10009@infracaninophile.c o.uk>=20<20140624063953.GA12165@admin.sibptus.tomsk.ru>|In-Reply-T o:=20<20140624063953.GA12165@admin.sibptus.tomsk.ru>; b=BE6+wAA1rLfZOGj0c1XBSt1tVxttU55lU03o4emQgW0ZqEAFl89OYQvgn/PnCDBFT v1wJk/QC/CTlASvapQ9CdN8nGiElSBLAAZJXCyPQVI3Dm4FIRlQXNlSW+kcvGGl4P+ nK9qqb3j0W3h0sJNpGUCDl9epBjoS5uX9AEixmpE= X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host no-reverse-dns.metronet-uk.com [85.199.232.226] (may be forged) claimed to be ox-dell39.ox.adestra.com Message-ID: <53A92E06.6060007@infracaninophile.co.uk> Date: Tue, 24 Jun 2014 08:51:34 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: Victor Sudakov Subject: Re: Cleanup of /var/db/pkg/ References: <20140624014513.GA3659@admin.sibptus.tomsk.ru> <53A90D99.10009@infracaninophile.co.uk> <20140624063953.GA12165@admin.sibptus.tomsk.ru> In-Reply-To: <20140624063953.GA12165@admin.sibptus.tomsk.ru> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="cwBtVxWSv8eWVJqLPn2hTNCRoaFVfOvXa" X-Virus-Scanned: clamav-milter 0.98.3 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,RDNS_NONE,SPF_FAIL autolearn=no autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lucid-nonsense.infracaninophile.co.uk Cc: freebsd-pkg@freebsd.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 07:51:56 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --cwBtVxWSv8eWVJqLPn2hTNCRoaFVfOvXa Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 06/24/14 07:39, Victor Sudakov wrote: > Matthew Seaman wrote: >> >>> Is it safe to remove all directories and files therein in /var/db/pkg= / >>> after running pkg2ng?=20 >>> >>> Is there anything of value there other than /var/db/pkg/*.sqlite >>> databases? >> >> Generally, yes. Other than local.sqlite or repo*.sqlite pkg(8) also >> uses some other bits and pieces like vuln.xml -- but apart from >> local.sqlite all of those can be downloaded from the net. >> >> Note that if you use portmaster(8) it creates per-pkg directories unde= r >> /var/db/pkg to stash some information about distfiles. Deleting these= >> will cause nothing worse than portmaster being unable to remove outdat= ed >> versions of distfiles. >=20 > Yes, I use portmaster. Would it be wiser then to delete only the=20 > '+*' files, like >=20 > find /var/db/pkg/ -type f -name '+*' -delete >=20 > My ultimate goal is to disable the pkg_* tools. Yes -- IIRC that should work. Details of how pkg_tools laid out stuff in /var/db/pkg have grown a bit fuzzy in my memory... Cheers, Matthew --cwBtVxWSv8eWVJqLPn2hTNCRoaFVfOvXa Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJTqS4MXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQxOUYxNTRFQ0JGMTEyRTUwNTQ0RTNGMzAw MDUxM0YxMEUwQTlFNEU3AAoJEABRPxDgqeTnAg0P/2ImMPyijD982z7OiFVUaKmY 42eyQNYJNbKmifi6xUlfRfQkOuO50osMCnWygPExE6RxRDIHowR+NGz0uH2ArI0C K1bjV70zLkllmy2iayooqf34IQBgi8WLA+xAoGafSnwrEIqZLLXUgAyVcvTMgJR5 nY8bZJEIOc0t5xPihdlk0OXeraMNla3DzYVKITCJUFnbLFHWwCA4Hbpu4eJhd378 ufpZSQeCQTF18kDXYg5RM3rWhjPBCVbF0+jcQE4yxcZZCEMId2fhnrkw7ilUbI3z YSGJAKu54pYTYdueRD2fRx7KwRloO/dDAiv+ttw8xKtvX8vg9L3dVDK3VCxY/uLq sDAjUHNbuNiwDp4a+ebD8RVSUzDrx6ONUCIPRFoa6H+fI2T8XCrwaittFZq3AN2u q1pb7JccYtrr+GzWpdXsmM2E77Y+DvfP/Yx0o2lXgOxzczF9MjOi0H7628pidnU/ d+4+D2KCrR57HnNJLhPdwQm+DC68K+yvB88gJ8b6VEWmD6+LhlJsericOcbFGv2S atrjoPn9612AEQj/gLNiK4GYXii0J7RW+Jn5ZC2nmEw5U03ScgU73niwtZwY7Dsi ODA7FQXo2plKffvFlTgyEQNSprk0rQETprjHZg1rsjcj9qajm8CAeuDUXe1k1+Nw E3azED0sv4001bX8uXf3 =8e6e -----END PGP SIGNATURE----- --cwBtVxWSv8eWVJqLPn2hTNCRoaFVfOvXa-- From owner-freebsd-pkg@FreeBSD.ORG Wed Jun 25 02:01:08 2014 Return-Path: Delivered-To: freebsd-pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC5DC3A1 for ; Wed, 25 Jun 2014 02:01:08 +0000 (UTC) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id 433EA285F for ; Wed, 25 Jun 2014 02:01:07 +0000 (UTC) X-Virus-Scanned: by clamd daemon 0.98.1 for FreeBSD at relay2.tomsk.ru Received: from admin.sibptus.tomsk.ru (account sudakov@sibptus.tomsk.ru [212.73.125.240] verified) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPSA id 35815535 for freebsd-pkg@freebsd.org; Wed, 25 Jun 2014 09:01:04 +0700 Received: from admin.sibptus.tomsk.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.tomsk.ru (8.14.7/8.14.7) with ESMTP id s5P213GG005254 for ; Wed, 25 Jun 2014 09:01:04 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.tomsk.ru (8.14.7/8.14.7/Submit) id s5P213lq005253 for freebsd-pkg@freebsd.org; Wed, 25 Jun 2014 09:01:03 +0700 (NOVT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.tomsk.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Wed, 25 Jun 2014 09:01:03 +0700 From: Victor Sudakov To: freebsd-pkg@freebsd.org Subject: pkg does not honor the HTTP_PROXY_AUTH variable Message-ID: <20140625020103.GA4797@admin.sibptus.tomsk.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Jun 2014 02:01:08 -0000 Colleagues, It seems that pkg 1.2.7_3 does not honor the HTTP_PROXY_AUTH variable. Please look: [root@km ~] printenv | grep -i prox HTTP_PROXY=http://proxy.sibptus.ru:3128 HTTP_PROXY_AUTH=basic:*:XXXXXXX:YYYYYYYYYYYYY NO_PROXY=svn.sibptus.ru [root@km ~] pkg audit -F pkg: http://www.vuxml.org/freebsd/vuln.xml.bz2: Forbidden pkg: Cannot fetch vulnxml file! [root@km ~] From the squid logs at proxy.sibptus.ru I see that pkg does not try to authenticate itself with the proxy: 1403660801.249 0 217.29.84.104 TCP_DENIED/403 1371 GET http://www.vuxml.org/freebsd/vuln.xml.bz2 - NONE/- text/html https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191352 -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-pkg@FreeBSD.ORG Wed Jun 25 02:58:44 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF307662 for ; Wed, 25 Jun 2014 02:58:44 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D65DC2D78 for ; Wed, 25 Jun 2014 02:58:44 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5P2wiRd045633 for ; Wed, 25 Jun 2014 03:58:44 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 191352] ports-mgmt/pkg v 1.2.7_3 does not honor the HTTP_PROXY_AUTH variable. Date: Wed, 25 Jun 2014 02:58:45 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Jun 2014 02:58:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191352 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-ports-bugs@FreeBSD. |pkg@FreeBSD.org |org | Severity|Affects Only Me |Affects Some People --- Comment #1 from Mark Linimon --- Over to maintainers. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Wed Jun 25 03:01:21 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CE021977 for ; Wed, 25 Jun 2014 03:01:21 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B4B5F2E03 for ; Wed, 25 Jun 2014 03:01:21 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5P31Lql064350 for ; Wed, 25 Jun 2014 04:01:21 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 191202] ports-mgmt/pkg does not work properly on HEAD/armeb due to pkg-static failing Date: Wed, 25 Jun 2014 03:01:21 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Jun 2014 03:01:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191202 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-ports-bugs@FreeBSD. |pkg@FreeBSD.org |org | Summary|pkg does not work properly |ports-mgmt/pkg does not |on HEAD/armeb |work properly on HEAD/armeb | |due to pkg-static failing --- Comment #1 from Mark Linimon --- Over to maintainers. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Thu Jun 26 16:29:11 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0FD9EF7 for ; Thu, 26 Jun 2014 16:29:11 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A89CB2E01 for ; Thu, 26 Jun 2014 16:29:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s5QGTBv9062685 for ; Thu, 26 Jun 2014 16:29:11 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s5QGTBBZ062682 for pkg@FreeBSD.org; Thu, 26 Jun 2014 16:29:11 GMT (envelope-from bdrewery) Received: (qmail 92253 invoked from network); 26 Jun 2014 11:29:09 -0500 Received: from unknown (HELO blah) (freebsd@shatow.net@67.182.131.225) by sweb.xzibition.com with ESMTPA; 26 Jun 2014 11:29:09 -0500 Message-ID: <53AC4A52.8020502@FreeBSD.org> Date: Thu, 26 Jun 2014 11:29:06 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: Harry Schmalzbauer Subject: Re: pkg-install(8), url: "file://" and PKG_CACHEDIR References: <53A5C1D4.3050402@omnilan.de> In-Reply-To: <53A5C1D4.3050402@omnilan.de> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: pkg@FreeBSD.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jun 2014 16:29:11 -0000 Moving to pkg@FreeBSD.org On 6/21/14, 12:33 PM, Harry Schmalzbauer wrote: > Dear all, > > today I tried pkg(8) for the first time. > Thanks for all the great work! > > One thing I'm missing is a auto-matching-logic for PKG_CACHEDIR if 'url' > starts with "file://" (in ${PRREFIX}/pkg/repos/mylocalrepo.conf). > > Currently, local available packages will be copied to the local cache > dir by default (if not circumvented by 'env > PKG_CACHEDIR=/path/to/local-repo pkg install …' e.g.). > Such a PKG_CACHEDIR-matching-logic should be enabled by default IMHO. Warning, this will stop working in pkg 1.3 and cause many problems in your repo. The filenames are stored differently in the cachedir and now symlinks are used to point to the newly cached files - which will remove all of your existing packages. > > Maybe it's usefull to have a "pkg-install -K" option, (like -K,--keep > for old pkg_add), to disable the PKG_CACHEDIR-mathcing-logic (for > example if someone provides cd-repo and intentionally wants to keep > packages in PKG_CACHEDIR). > > Anyone else missing that feature? > > Thanks, > > -Harry > > This is somewhat an extension to the feature request in https://github.com/freebsd/pkg/issues/697 I will take a look before 1.3 release to see if disabling cache for file:// is straight forward. We're in a feature freeze right now so I don't want to introduce too much risk. -- Regards, Bryan Drewery From owner-freebsd-pkg@FreeBSD.ORG Thu Jun 26 22:28:49 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A0C21DB; Thu, 26 Jun 2014 22:28:49 +0000 (UTC) Received: from mail-wi0-x22a.google.com (mail-wi0-x22a.google.com [IPv6:2a00:1450:400c:c05::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BC1392F8B; Thu, 26 Jun 2014 22:28:48 +0000 (UTC) Received: by mail-wi0-f170.google.com with SMTP id cc10so1849067wib.1 for ; Thu, 26 Jun 2014 15:28:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=KFqEguvXbyNSVEpWrHTN+DFOxJTrdurch2sn1RElvqc=; b=u8tzpoKCFfW9t2stpwC7g0TFh79gQiNFGHtq0LOUK2lmw6+BoNsFP1xt84Nnq22725 GxQa6e+DO6tX0ZNIoV/IlKg5gL70KmM+G7krk2Wg6LdXYcW/xrScssu/eS6vw6y5lpHN NpIuhquXnS615kQT0d9YOoiTpf2cAwp/o1SKqCWsbx/KI4hlnjr6w/iJninEXiCD6Zd5 08T6Sfi6B80IfiqBqGlNwH1bLyZLa262ZhdrYYLfze7mPSkUT38gCh/QWnO4TPqSreMq McgM3LS4z8OwGwiLM3jjchkg3DlL19K3QP3BF2B+86l4j92+b9jd6RJtO2AIO+vM4k8A shmw== X-Received: by 10.180.82.228 with SMTP id l4mr7297480wiy.78.1403821726072; Thu, 26 Jun 2014 15:28:46 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by mx.google.com with ESMTPSA id fw4sm29128348wib.19.2014.06.26.15.28.44 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 26 Jun 2014 15:28:44 -0700 (PDT) Sender: Baptiste Daroussin Date: Fri, 27 Jun 2014 00:28:42 +0200 From: Baptiste Daroussin To: Bryan Drewery Subject: Re: pkg-install(8), url: "file://" and PKG_CACHEDIR Message-ID: <20140626222841.GH24440@ivaldir.etoilebsd.net> References: <53A5C1D4.3050402@omnilan.de> <53AC4A52.8020502@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ISKrrfpKsPiF35CV" Content-Disposition: inline In-Reply-To: <53AC4A52.8020502@FreeBSD.org> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: pkg@FreeBSD.org, Harry Schmalzbauer X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jun 2014 22:28:49 -0000 --ISKrrfpKsPiF35CV Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jun 26, 2014 at 11:29:06AM -0500, Bryan Drewery wrote: > Moving to pkg@FreeBSD.org >=20 > On 6/21/14, 12:33 PM, Harry Schmalzbauer wrote: > > Dear all, > > > > today I tried pkg(8) for the first time. > > Thanks for all the great work! > > > > One thing I'm missing is a auto-matching-logic for PKG_CACHEDIR if 'url' > > starts with "file://" (in ${PRREFIX}/pkg/repos/mylocalrepo.conf). > > > > Currently, local available packages will be copied to the local cache > > dir by default (if not circumvented by 'env > > PKG_CACHEDIR=3D/path/to/local-repo pkg install =E2=80=A6' e.g.). > > Such a PKG_CACHEDIR-matching-logic should be enabled by default IMHO. >=20 > Warning, this will stop working in pkg 1.3 and cause many problems in=20 > your repo. The filenames are stored differently in the cachedir and now= =20 > symlinks are used to point to the newly cached files - which will remove= =20 > all of your existing packages. >=20 > > > > Maybe it's usefull to have a "pkg-install -K" option, (like -K,--keep > > for old pkg_add), to disable the PKG_CACHEDIR-mathcing-logic (for > > example if someone provides cd-repo and intentionally wants to keep > > packages in PKG_CACHEDIR). > > > > Anyone else missing that feature? > > > > Thanks, > > > > -Harry > > > > > This is somewhat an extension to the feature request in=20 > https://github.com/freebsd/pkg/issues/697 >=20 > I will take a look before 1.3 release to see if disabling cache for=20 > file:// is straight forward. We're in a feature freeze right now so I=20 > don't want to introduce too much risk. IIRC I already disabled cache for file:// in pkg 1.3 regards, Bapt --ISKrrfpKsPiF35CV Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEARECAAYFAlOsnpkACgkQ8kTtMUmk6Ew+/QCfbMo9nPMt71gJ/13XXPnnXuIi DgQAn3gRl5Qz7MNKY7k6YBIMDcsg/ceP =9pOQ -----END PGP SIGNATURE----- --ISKrrfpKsPiF35CV-- From owner-freebsd-pkg@FreeBSD.ORG Thu Jun 26 22:46:46 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A021548 for ; Thu, 26 Jun 2014 22:46:46 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4782D212B for ; Thu, 26 Jun 2014 22:46:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s5QMkkPf093051 for ; Thu, 26 Jun 2014 22:46:46 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s5QMkkpw093047 for pkg@FreeBSD.org; Thu, 26 Jun 2014 22:46:46 GMT (envelope-from bdrewery) Received: (qmail 51040 invoked from network); 26 Jun 2014 17:46:43 -0500 Received: from unknown (HELO blah) (freebsd@shatow.net@67.182.131.225) by sweb.xzibition.com with ESMTPA; 26 Jun 2014 17:46:43 -0500 Message-ID: <53ACA2D1.7050304@FreeBSD.org> Date: Thu, 26 Jun 2014 17:46:41 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 Subject: Re: pkg-install(8), url: "file://" and PKG_CACHEDIR References: <53A5C1D4.3050402@omnilan.de> <53AC4A52.8020502@FreeBSD.org> <20140626222841.GH24440@ivaldir.etoilebsd.net> In-Reply-To: <20140626222841.GH24440@ivaldir.etoilebsd.net> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: pkg@FreeBSD.org, Harry Schmalzbauer X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jun 2014 22:46:46 -0000 On 6/26/14, 5:28 PM, Baptiste Daroussin wrote: > On Thu, Jun 26, 2014 at 11:29:06AM -0500, Bryan Drewery wrote: >> Moving to pkg@FreeBSD.org >> >> On 6/21/14, 12:33 PM, Harry Schmalzbauer wrote: >>> Dear all, >>> >>> today I tried pkg(8) for the first time. >>> Thanks for all the great work! >>> >>> One thing I'm missing is a auto-matching-logic for PKG_CACHEDIR if 'url' >>> starts with "file://" (in ${PRREFIX}/pkg/repos/mylocalrepo.conf). >>> >>> Currently, local available packages will be copied to the local cache >>> dir by default (if not circumvented by 'env >>> PKG_CACHEDIR=/path/to/local-repo pkg install …' e.g.). >>> Such a PKG_CACHEDIR-matching-logic should be enabled by default IMHO. >> >> Warning, this will stop working in pkg 1.3 and cause many problems in >> your repo. The filenames are stored differently in the cachedir and now >> symlinks are used to point to the newly cached files - which will remove >> all of your existing packages. >> >>> >>> Maybe it's usefull to have a "pkg-install -K" option, (like -K,--keep >>> for old pkg_add), to disable the PKG_CACHEDIR-mathcing-logic (for >>> example if someone provides cd-repo and intentionally wants to keep >>> packages in PKG_CACHEDIR). >>> >>> Anyone else missing that feature? >>> >>> Thanks, >>> >>> -Harry >>> >>> >> This is somewhat an extension to the feature request in >> https://github.com/freebsd/pkg/issues/697 >> >> I will take a look before 1.3 release to see if disabling cache for >> file:// is straight forward. We're in a feature freeze right now so I >> don't want to introduce too much risk. > > IIRC I already disabled cache for file:// in pkg 1.3 > > regards, > Bapt > Yup. -- Regards, Bryan Drewery From owner-freebsd-pkg@FreeBSD.ORG Fri Jun 27 18:33:03 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E18FE941; Fri, 27 Jun 2014 18:33:03 +0000 (UTC) Received: from mx0.gentlemail.de (mx0.gentlemail.de [IPv6:2a00:e10:2800::a130]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 55A742DEA; Fri, 27 Jun 2014 18:33:03 +0000 (UTC) Received: from mh0.gentlemail.de (ezra.dcm1.omnilan.net [IPv6:2a00:e10:2800::a135]) by mx0.gentlemail.de (8.14.5/8.14.5) with ESMTP id s5RIWxAQ002510; Fri, 27 Jun 2014 20:32:59 +0200 (CEST) (envelope-from freebsd@omnilan.de) Received: from titan.inop.mo1.omnilan.net (titan.inop.mo1.omnilan.net [IPv6:2001:a60:f0bb:1::3:1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mh0.gentlemail.de (Postfix) with ESMTPSA id 454BB3508; Fri, 27 Jun 2014 20:32:59 +0200 (CEST) Message-ID: <53ADB8DA.90308@omnilan.de> Date: Fri, 27 Jun 2014 20:32:58 +0200 From: Harry Schmalzbauer Organization: OmniLAN User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-DE; rv:1.9.2.8) Gecko/20100906 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 Subject: Re: pkg-install(8), url: "file://" and PKG_CACHEDIR References: <53A5C1D4.3050402@omnilan.de> <53AC4A52.8020502@FreeBSD.org> <20140626222841.GH24440@ivaldir.etoilebsd.net> <53ACA2D1.7050304@FreeBSD.org> In-Reply-To: <53ACA2D1.7050304@FreeBSD.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (mx0.gentlemail.de [IPv6:2a00:e10:2800::a130]); Fri, 27 Jun 2014 20:32:59 +0200 (CEST) X-Milter: Spamilter (Reciever: mx0.gentlemail.de; Sender-ip: ; Sender-helo: mh0.gentlemail.de; ) Cc: pkg@freebsd.org, FreeBSD Stable X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jun 2014 18:33:04 -0000 Bezüglich Bryan Drewery's Nachricht vom 27.06.2014 00:46 (localtime): > On 6/26/14, 5:28 PM, Baptiste Daroussin wrote: >> On Thu, Jun 26, 2014 at 11:29:06AM -0500, Bryan Drewery wrote: >>> Moving to pkg@FreeBSD.org … >>>> starts with "file://" (in ${PRREFIX}/pkg/repos/mylocalrepo.conf). >>>> >>>> Currently, local available packages will be copied to the local cache >>>> dir by default (if not circumvented by 'env >>>> PKG_CACHEDIR=/path/to/local-repo pkg install …' e.g.). >>>> Such a PKG_CACHEDIR-matching-logic should be enabled by default IMHO. >>> >>> Warning, this will stop working in pkg 1.3 and cause many problems in >>> your repo. The filenames are stored differently in the cachedir and now >>> symlinks are used to point to the newly cached files - which will remove >>> all of your existing packages. Thanks a lot for that warning! >>>> Maybe it's usefull to have a "pkg-install -K" option, (like -K,--keep >>>> for old pkg_add), to disable the PKG_CACHEDIR-mathcing-logic (for >>>> example if someone provides cd-repo and intentionally wants to keep >>>> packages in PKG_CACHEDIR). … >>> I will take a look before 1.3 release to see if disabling cache for >>> file:// is straight forward. We're in a feature freeze right now so I >>> don't want to introduce too much risk. >> >> IIRC I already disabled cache for file:// in pkg 1.3 >> >> regards, >> Bapt >> > > Yup. Very nice! Set WITH_PKGNG to devel in my make.conf(.ports) and try soon! Thanks a lot, posted to stable@ in case any one else was interested. -Harry From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 30 15:50:28 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76443F54 for ; Mon, 30 Jun 2014 15:50:28 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D5002592 for ; Mon, 30 Jun 2014 15:50:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s5UFoSKf055139 for ; Mon, 30 Jun 2014 15:50:28 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s5UFoRTa055136 for pkg@FreeBSD.org; Mon, 30 Jun 2014 15:50:27 GMT (envelope-from bdrewery) Received: (qmail 68963 invoked from network); 30 Jun 2014 10:50:26 -0500 Received: from unknown (HELO blah) (freebsd@shatow.net@67.182.131.225) by sweb.xzibition.com with ESMTPA; 30 Jun 2014 10:50:26 -0500 Message-ID: <53B1873F.80005@FreeBSD.org> Date: Mon, 30 Jun 2014 10:50:23 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: "O. Hartmann" , pkg@FreeBSD.org Subject: Re: pkg-static: sqlite: foreign key constraint failed References: <20140630174815.64924e56.ohartman@zedat.fu-berlin.de> In-Reply-To: <20140630174815.64924e56.ohartman@zedat.fu-berlin.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jun 2014 15:50:28 -0000 Moving to pkg@ On 6/30/14, 10:48 AM, O. Hartmann wrote: > On FreeBSD CURRENT > (FreeBSD 11.0-CURRENT #0 r268015: Sun Jun 29 11:44:42 CEST 2014 amd64) > with a most recent set of installed ports and ports tree, I receive this sticky problem > when updating one port: > > ===> Installing for windowmaker-0.95.5_4 > ===> Registering installation for windowmaker-0.95.5_4 > Installing windowmaker-0.95.5_4...pkg-static: sqlite: foreign key constraint failed > *** Error code 70 > > Is there a way to repair this problem? I tried to reinstall everything windowmaker > related and/or deinstall windowmaker completely and reinstall it but this error messages > remains. > > Thanks. > > Oliver What pkg version? -- Regards, Bryan Drewery From owner-freebsd-pkg@FreeBSD.ORG Mon Jun 30 16:00:46 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 991B066D; Mon, 30 Jun 2014 16:00:46 +0000 (UTC) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 54FC726BB; Mon, 30 Jun 2014 16:00:46 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.82) with esmtp (envelope-from ) id <1X1e0a-001sCl-F4>; Mon, 30 Jun 2014 18:00:44 +0200 Received: from g225105129.adsl.alicedsl.de ([92.225.105.129] helo=thor.walstatt.dynvpn.de) by inpost2.zedat.fu-berlin.de (Exim 4.82) with esmtpsa (envelope-from ) id <1X1e0a-001olH-Cu>; Mon, 30 Jun 2014 18:00:44 +0200 Date: Mon, 30 Jun 2014 18:00:38 +0200 From: "O. Hartmann" To: Bryan Drewery Subject: Re: pkg-static: sqlite: foreign key constraint failed Message-ID: <20140630180038.4d70129b.ohartman@zedat.fu-berlin.de> In-Reply-To: <53B1873F.80005@FreeBSD.org> References: <20140630174815.64924e56.ohartman@zedat.fu-berlin.de> <53B1873F.80005@FreeBSD.org> Organization: FU Berlin X-Mailer: Claws Mail 3.10.1 (GTK+ 2.24.22; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; boundary="Sig_/t2EEeOow3POghbPKCeUgxJ."; protocol="application/pgp-signature" X-Originating-IP: 92.225.105.129 X-ZEDAT-Hint: A Cc: pkg@FreeBSD.org X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jun 2014 16:00:46 -0000 --Sig_/t2EEeOow3POghbPKCeUgxJ. Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Am Mon, 30 Jun 2014 10:50:23 -0500 Bryan Drewery schrieb: > Moving to pkg@ >=20 > On 6/30/14, 10:48 AM, O. Hartmann wrote: > > On FreeBSD CURRENT > > (FreeBSD 11.0-CURRENT #0 r268015: Sun Jun 29 11:44:42 CEST 2014 amd64) > > with a most recent set of installed ports and ports tree, I receive thi= s sticky > > problem when updating one port: > > > > =3D=3D=3D> Installing for windowmaker-0.95.5_4 > > =3D=3D=3D> Registering installation for windowmaker-0.95.5_4 > > Installing windowmaker-0.95.5_4...pkg-static: sqlite: foreign key const= raint failed > > *** Error code 70 > > > > Is there a way to repair this problem? I tried to reinstall everything = windowmaker > > related and/or deinstall windowmaker completely and reinstall it but th= is error > > messages remains. > > > > Thanks. > > > > Oliver > What pkg version? >=20 ohartmann@thor: [~] pkg -v 1.2.7_3 --Sig_/t2EEeOow3POghbPKCeUgxJ. Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJTsYmrAAoJEOgBcD7A/5N8lbUIAL8Rjtma33jbhKjIe7dSaIB+ YC+uc0Y9C9aILI0CabVLiyDgMUJQALHTEs5XrpOa99lA8qJyuqeqJFjUmVyR9Tta QX4tP7vlVWaBxwKJHH10yyjkwv7sJz2IzkrPovbgnWT55c7wdnkwKd7N6jN3u7xU WfI3zuW3MQSe+bz45DC710aZX2lyXILDNzcChox8LaYa+WbhRQuxFtLTpNcPagZo fBoArlREZWHW32ofsBcXlru3xx/L4FSwkEdqIYL1WraIp7K/mzmDb+cAEO8ASkuH idIwzZpylXbz/dX8ffaWOUkBN0HOeh+xjG8bL21DHIpmZ+D0enVk7YIJ+WVbjv8= =kl4Z -----END PGP SIGNATURE----- --Sig_/t2EEeOow3POghbPKCeUgxJ.-- From owner-freebsd-pkg@FreeBSD.ORG Tue Jul 1 09:12:13 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BAA515E6 for ; Tue, 1 Jul 2014 09:12:13 +0000 (UTC) Received: from smtp.des.no (smtp.des.no [194.63.250.102]) by mx1.freebsd.org (Postfix) with ESMTP id 7F3BC285C for ; Tue, 1 Jul 2014 09:12:13 +0000 (UTC) Received: from nine.des.no (smtp.des.no [194.63.250.102]) by smtp-int.des.no (Postfix) with ESMTP id 4C65BA8BC for ; Tue, 1 Jul 2014 09:12:11 +0000 (UTC) Received: by nine.des.no (Postfix, from userid 1001) id 5C7A43483F; Tue, 1 Jul 2014 11:12:12 +0200 (CEST) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: pkg@freebsd.org Subject: "pkg upgrade" doesn't Date: Tue, 01 Jul 2014 11:12:11 +0200 Message-ID: <864mz1fno4.fsf@nine.des.no> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Jul 2014 09:12:13 -0000 I have two package repos, des-freebsd (freebsd ports tree) and des-local (home-made packages). Since poudriere is unable to build from a ports tree that has external dependencies, I have copies of pkg and pkg-devel in des-local. poudriere is set up to use pkg 1.2 (WITH_PKGNG=3Dyes, not devel) to build packages, but I assume it still uses whatever is installed locally to generate the repo. I am running: poudriere-devel-3.0.99.20140619_1 (from des-freebsd) pkg-devel-1.3.0.b8_2 (from des-local) des-freebsd has pkg-devel-1.3.0.b8_1, which is 1.3.0.b8 + the repopath patch (103236), while des-local has 1.3.0.b8_2, which is 1.3.0.b8 + a larger set of patches from git, equivalent to e230daa (which is essentially equivalent to 1.3.0.b9). After 1.3.0.b9 came out, I reverted my local changes, updated my ports tree and tried a partial bulk: # poudriere bulk -j 100amd64 ports-mgmt/{pkg,poudriere}{,-devel} which built poudriere-devel-3.0.99.20140626 and pkg-devel-1.3.0.b9 in the des-freebsd repository. However, pkg upgrade did not offer to upgrade pkg-devel. So: # pkg-update -f [...] # pkg rquery %n-%v pkg-devel pkg-devel-1.3.0.b8_2 pkg-devel-1.3.0.b8_1 (the first is des-local, the second is des-freebsd) Wait, what? I just built b9! # ls /poudriere/data/packages/100amd64-default/.latest/All/pkg-devel-1.3.0.= b* /poudriere/data/packages/100amd64-default/.latest/All/pkg-devel-1.3.0.b8_1.= txz /poudriere/data/packages/100amd64-default/.latest/All/pkg-devel-1.3.0.b9.txz Question 1: why did poudriere not remove b8_1 before building b9? Let's regenerate the repo, but to be on the safe side, use 1.2: # ./pkg-static-1.2 -v 1.2.7_3 # ./pkg-static-1.2 repo /poudriere/data/packages/100amd64-default/.latest/ Generating repository catalog in /poudriere/data/packages/100amd64-default/= .latest/: done! Now the repo looks good: # pkg update -f [...] # pkg rquery %n-%v pkg-devel=20=20=20=20=20=20 pkg-devel-1.3.0.b8_2 pkg-devel-1.3.0.b9 but still: # pkg upgrade Updating repository catalogue pkg: http://pkg.des.no/local/freebsd:10:x86:64/meta.txz: Not Found pkg: repository des-local has no meta file, using default settings des-local repository catalogue is up-to-date, no need to fetch fresh copy pkg: http://pkg.des.no/freebsd/freebsd:10:x86:64/meta.txz: Not Found pkg: repository des-freebsd has no meta file, using default settings des-freebsd repository catalogue is up-to-date, no need to fetch fresh copy Your packages are up to date Maybe it doesn't want to upgrade a package installed from des-local to a newer version from a different repo? Let's force it: # pkg install -r des-freebsd -f pkg-devel=20=20 Updating "des-freebsd" repository catalogue pkg: http://pkg.des.no/freebsd/freebsd:10:x86:64/meta.txz: Not Found pkg: repository des-freebsd has no meta file, using default settings des-freebsd repository catalogue is up-to-date, no need to fetch fresh copy The most recent version of packages are already installed BTW, it would be nice to have a) a query pattern that prints the repository a package was installed from and b) a "pkg set" option to change that. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-freebsd-pkg@FreeBSD.ORG Tue Jul 1 10:03:29 2014 Return-Path: Delivered-To: pkg@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CFAF47AF for ; Tue, 1 Jul 2014 10:03:29 +0000 (UTC) Received: from smtp.des.no (smtp.des.no [194.63.250.102]) by mx1.freebsd.org (Postfix) with ESMTP id 91B702CF1 for ; Tue, 1 Jul 2014 10:03:29 +0000 (UTC) Received: from nine.des.no (smtp.des.no [194.63.250.102]) by smtp-int.des.no (Postfix) with ESMTP id A3A36A973 for ; Tue, 1 Jul 2014 10:03:28 +0000 (UTC) Received: by nine.des.no (Postfix, from userid 1001) id B46B7348B2; Tue, 1 Jul 2014 12:03:29 +0200 (CEST) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: pkg@freebsd.org Subject: Re: "pkg upgrade" doesn't References: <864mz1fno4.fsf@nine.des.no> Date: Tue, 01 Jul 2014 12:03:29 +0200 In-Reply-To: <864mz1fno4.fsf@nine.des.no> ("Dag-Erling =?utf-8?Q?Sm=C3=B8r?= =?utf-8?Q?grav=22's?= message of "Tue, 01 Jul 2014 11:12:11 +0200") Message-ID: <86y4wde6q6.fsf@nine.des.no> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Jul 2014 10:03:29 -0000 Dag-Erling Sm=C3=B8rgrav writes: > BTW, it would be nice to have a) a query pattern that prints the > repository a package was installed from [...] So apparently, this is implemented but not available. If I add an entry for 'R' to accepted_query_flags[] in src/query.c, I can use %R, but it doesn't work: % ./src/pkg-static query %R pkg-devel (null) % pkg info pkg-devel | grep repos repository : des-local that's because %R is implemented as pkg_printf("%N") which returns PKG_REPONAME ("reponame"), which doesn't seem to exist at this point. >From reading pkg_jobs.c, I get the impression that PKG_REPONAME is only valid for the in-memory version of pkg constructed from the repo manifest during "pkg upgrade", is that correct? In that case, fixing %R should be a simple matter of fetching the "repository" annotation if PKG_REPONAME is not available. See pull request #855. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-freebsd-pkg@FreeBSD.ORG Wed Jul 2 09:41:22 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4D324882 for ; Wed, 2 Jul 2014 09:41:22 +0000 (UTC) Received: from mx0.gentlemail.de (mx0.gentlemail.de [IPv6:2a00:e10:2800::a130]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D6EAA2F27 for ; Wed, 2 Jul 2014 09:41:21 +0000 (UTC) Received: from mh0.gentlemail.de (mh0.gentlemail.de [IPv6:2a00:e10:2800::a135]) by mx0.gentlemail.de (8.14.5/8.14.5) with ESMTP id s629fIrI064742 for ; Wed, 2 Jul 2014 11:41:18 +0200 (CEST) (envelope-from freebsd@omnilan.de) Received: from titan.inop.mo1.omnilan.net (titan.inop.mo1.omnilan.net [IPv6:2001:a60:f0bb:1::3:1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mh0.gentlemail.de (Postfix) with ESMTPSA id A4E403128; Wed, 2 Jul 2014 11:41:18 +0200 (CEST) Message-ID: <53B3D3BE.5040007@omnilan.de> Date: Wed, 02 Jul 2014 11:41:18 +0200 From: Harry Schmalzbauer Organization: OmniLAN User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-DE; rv:1.9.2.8) Gecko/20100906 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 To: pkg@FreeBSD.org Subject: USE_PACKAGE_DEPENDS dependencies and ports fallback Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (mx0.gentlemail.de [IPv6:2a00:e10:2800::a130]); Wed, 02 Jul 2014 11:41:18 +0200 (CEST) X-Milter: Spamilter (Reciever: mx0.gentlemail.de; Sender-ip: ; Sender-helo: mh0.gentlemail.de; ) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 09:41:22 -0000 Hello, please set me CC, I'm not subscribed, thanks. I set USE_PACKAGE_DEPENDS together with PKGNG(=devel) on 9.2. Example: mail/roundcube 'make package': ===> Staging for roundcube-1.0.1,1 ===> roundcube-1.0.1,1 depends on file: /usr/local/include/php/main/php.h - found ===> roundcube-1.0.1,1 depends on file: /usr/local/lib/php/20100525/mbstring.so - not found ===> Verifying install for /usr/local/lib/php/20100525/mbstring.so in /usr/ports/converters/php5-mbstring ===> Installing existing package /mnt/OmniLAN/pkg/core2/freebsd:9:x86:64/All/php5-mbstring-5.4.29.txz pkg-static: Missing dependency matching Origin: 'devel/oniguruma4' Version: '4.7.1' Failed to install the following 1 package(s): /mnt/OmniLAN/pkg/core2/freebsd:9:x86:64/All/php5-mbstring-5.4.29.txz *** [run-depends] Error code 70 Stop in /usr/ports/mail/roundcube. *** [stage] Error code 1 In fact, there is no devel/oniguruma4 package in my local repository. Since I'm doing a port build, I expect that devel/oniguruma4 will be built, as long as USE_PACKAGE_DEPENDS_ONLY is _not_ set (which reflects my state). It seems to work so for 'first-level-dependencies', but seems to fail for dependencies of a dependency (my very first guess, haven't falsified yet). Is such an issue known? Thanks for any hints! -Harry P.S.: please set me CC, I'm not subscribed, thanks. From owner-freebsd-pkg@FreeBSD.ORG Wed Jul 2 10:56:28 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 03381C8F for ; Wed, 2 Jul 2014 10:56:28 +0000 (UTC) Received: from mx0.gentlemail.de (mx0.gentlemail.de [IPv6:2a00:e10:2800::a130]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 87C56271C for ; Wed, 2 Jul 2014 10:56:27 +0000 (UTC) Received: from mh0.gentlemail.de (mh0.gentlemail.de [IPv6:2a00:e10:2800::a135]) by mx0.gentlemail.de (8.14.5/8.14.5) with ESMTP id s62AuPj3065565 for ; Wed, 2 Jul 2014 12:56:25 +0200 (CEST) (envelope-from freebsd@omnilan.de) Received: from titan.inop.mo1.omnilan.net (titan.inop.mo1.omnilan.net [IPv6:2001:a60:f0bb:1::3:1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mh0.gentlemail.de (Postfix) with ESMTPSA id 6A13E315C; Wed, 2 Jul 2014 12:56:25 +0200 (CEST) Message-ID: <53B3E558.90607@omnilan.de> Date: Wed, 02 Jul 2014 12:56:24 +0200 From: Harry Schmalzbauer Organization: OmniLAN User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-DE; rv:1.9.2.8) Gecko/20100906 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 To: pkg@FreeBSD.org Subject: Re: USE_PACKAGE_DEPENDS dependencies and ports fallback References: <53B3D3BE.5040007@omnilan.de> In-Reply-To: <53B3D3BE.5040007@omnilan.de> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (mx0.gentlemail.de [IPv6:2a00:e10:2800::a130]); Wed, 02 Jul 2014 12:56:25 +0200 (CEST) X-Milter: Spamilter (Reciever: mx0.gentlemail.de; Sender-ip: ; Sender-helo: mh0.gentlemail.de; ) X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 10:56:28 -0000 Bezüglich Harry Schmalzbauer's Nachricht vom 02.07.2014 11:41 (localtime): > Hello, > > please set me CC, I'm not subscribed, thanks. > > I set USE_PACKAGE_DEPENDS together with PKGNG(=devel) on 9.2. … > Since I'm doing a port build, I expect that devel/oniguruma4 will be > built, as long as USE_PACKAGE_DEPENDS_ONLY is _not_ set (which reflects > my state). > It seems to work so for 'first-level-dependencies', but seems to fail > for dependencies of a dependency (my very first guess, haven't falsified > yet). Done so. It's true that as soon as USE_PACKAGE_DEPENDS is set, only the first dependency will be checked if it's going to be installed as package or build has to run. In bsd.port.mk: _INSTALL_DEPENDS= if [ -n "${USE_PACKAGE_DEPENDS}" -o -n "${USE_PACKAGE_DEPENDS_ONLY}" ]; then \ … if [ -r "$${subpkgfile}" -a "$$target" = "${DEPENDS_TARGET}" ]; then \ … if [ -n "${WITH_PKGNG}" -a $${subpkgname} = "pkg" ]; then \ … else \ if [ -n "${WITH_PKGNG}" ]; then \ _pkg_add_a="-A"; \ fi; \ ${PKG_ADD} $${_pkg_add_a} $${subpkgfile}; \ Now to solve this, I guess it was needed to do binary-depends-resolving at this place, right? Or is there a easier way (altering DEPENDS_TARGET eg., sorry, don't know bsd.port.mk well, so starting from scratch…) Is this issue hitting anybody else? Thanks, -Harry P.S.: please set me CC, I'm not subscribed, thanks. From owner-freebsd-pkg@FreeBSD.ORG Wed Jul 2 16:46:19 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 66AD727D for ; Wed, 2 Jul 2014 16:46:19 +0000 (UTC) Received: from mail.ignoranthack.me (ignoranthack.me [199.102.79.106]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48B252930 for ; Wed, 2 Jul 2014 16:46:19 +0000 (UTC) Received: from [192.168.200.204] (c-50-131-5-126.hsd1.ca.comcast.net [50.131.5.126]) (using SSLv3 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: sbruno@ignoranthack.me) by mail.ignoranthack.me (Postfix) with ESMTPSA id 582D119360B for ; Wed, 2 Jul 2014 16:46:17 +0000 (UTC) Subject: deleting poudriere logs From: Sean Bruno Reply-To: sbruno@freebsd.org To: pkg@FreeBSD.org Content-Type: text/plain; charset="us-ascii" Date: Wed, 02 Jul 2014 09:46:19 -0700 Message-ID: <1404319579.1059.38.camel@bruno> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 16:46:19 -0000 I'm using nginx+poudriere logs to monitor builds. I'd like to nuke old logs and such, but I'm not sure what the graceful way to do this. I see a .data.json file in /usr/local/poudirere/data/logs/bulk along with the dirs for my previous builds. drwxr-xr-x 3 root wheel 4 Jun 22 18:33 .. drwxr-xr-x 5 root wheel 7 Jun 24 15:04 11arm32-default drwxr-xr-x 30 root wheel 32 Jul 1 14:26 11mips32-default drwxr-xr-x 11 root wheel 13 Jul 1 19:52 11mips64-default drwxr-xr-x 11543 root wheel 11543 Jul 2 13:33 latest-per-pkg drwxr-xr-x 12 root wheel 14 Jul 2 16:45 11armv632-default -rw-r--r-- 1 root wheel 1689 Jul 2 16:45 .data.json drwxr-xr-x 7 root wheel 8 Jul 2 16:45 . I'd like to purge old logs, but I have a job running now. Is there a better/betterest way of claning things other than rm -rf? sean From owner-freebsd-pkg@FreeBSD.ORG Thu Jul 3 14:18:19 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7635172; Thu, 3 Jul 2014 14:18:19 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 805422DBC; Thu, 3 Jul 2014 14:18:19 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id B71A3BDC66; Thu, 3 Jul 2014 16:18:16 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=mat.cc; h=date:from:to :subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; s=plouf; bh=CkkceKxLJSF TaGyDcnSI1rGAgrk=; b=S5qWfFDekasnreK8z2fqPIsbRwSiGYbn+q6y4/LU4R1 iXIzWst0yGlH3fn9TnPk8JvWXwr3JjXC3jg/gG6M9evS2SdvrRcIIW4j6Or3wTyB nzoGixXPWttm2y76erXMcTVAPIYvZIOMq/wV2SEN77KGRz95WwK6nj2772NeIti4 = Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 841EABDC56; Thu, 3 Jul 2014 16:18:16 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id 3A3ED6137; Thu, 3 Jul 2014 16:18:14 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 6C6B0707B467; Thu, 3 Jul 2014 16:18:12 +0200 (CEST) Date: Thu, 03 Jul 2014 16:18:11 +0200 From: Mathieu Arnold To: sbruno@freebsd.org, pkg@FreeBSD.org Subject: Re: deleting poudriere logs Message-ID: <57EAC600B1C56AB16B64C7FF@ogg.in.absolight.net> In-Reply-To: <1404319579.1059.38.camel@bruno> References: <1404319579.1059.38.camel@bruno> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Jul 2014 14:18:19 -0000 +--On 2 juillet 2014 09:46:19 -0700 Sean Bruno wrote: | I'm using nginx+poudriere logs to monitor builds. I'd like to nuke old | logs and such, but I'm not sure what the graceful way to do this. I see | a .data.json file in /usr/local/poudirere/data/logs/bulk along with the | dirs for my previous builds. | | | drwxr-xr-x 3 root wheel 4 Jun 22 18:33 .. | drwxr-xr-x 5 root wheel 7 Jun 24 15:04 11arm32-default | drwxr-xr-x 30 root wheel 32 Jul 1 14:26 11mips32-default | drwxr-xr-x 11 root wheel 13 Jul 1 19:52 11mips64-default | drwxr-xr-x 11543 root wheel 11543 Jul 2 13:33 latest-per-pkg | drwxr-xr-x 12 root wheel 14 Jul 2 16:45 11armv632-default | -rw-r--r-- 1 root wheel 1689 Jul 2 16:45 .data.json | drwxr-xr-x 7 root wheel 8 Jul 2 16:45 . | | | I'd like to purge old logs, but I have a job running now. Is there a | better/betterest way of claning things other than rm -rf? I have this in my crontab: @daily /usr/bin/find -s /poudriere/data/logs/ /poudriere/data/wrkdirs/ -ctime +30d -delete -- Mathieu Arnold From owner-freebsd-pkg@FreeBSD.ORG Fri Jul 4 01:29:17 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1FA2E3C8 for ; Fri, 4 Jul 2014 01:29:17 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 07FC92B9C for ; Fri, 4 Jul 2014 01:29:17 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s641TG9C066552 for ; Fri, 4 Jul 2014 02:29:16 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 191480] pkg version locks database too long Date: Fri, 04 Jul 2014 01:29:17 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Infrastructure X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Jul 2014 01:29:17 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191480 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-ports-bugs@FreeBSD. |pkg@FreeBSD.org |org | --- Comment #1 from Mark Linimon --- Over to maintainers. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Sat Jul 12 15:23:06 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B29B26F6 for ; Sat, 12 Jul 2014 15:23:06 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9AB462B6F for ; Sat, 12 Jul 2014 15:23:06 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6CFN6NO069604 for ; Sat, 12 Jul 2014 15:23:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 189126] graphics/sane-backends silently installs pkgng and screws everything up Date: Sat, 12 Jul 2014 15:23:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marino@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Jul 2014 15:23:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189126 John Marino changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |marino@FreeBSD.org Assignee|freebsd-ports-bugs@FreeBSD. |pkg@FreeBSD.org |org | -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Sat Jul 12 15:27:41 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D25ED7BF for ; Sat, 12 Jul 2014 15:27:41 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BA6EE2B9F for ; Sat, 12 Jul 2014 15:27:41 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6CFRfUD075600 for ; Sat, 12 Jul 2014 15:27:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 189126] graphics/sane-backends silently installs pkgng and screws everything up Date: Sat, 12 Jul 2014 15:27:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: vsevolod@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: zi@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Jul 2014 15:27:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=189126 Vsevolod Stakhov changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |vsevolod@FreeBSD.org Assignee|pkg@FreeBSD.org |zi@FreeBSD.org --- Comment #1 from Vsevolod Stakhov --- This is not pkg bug. It is mostly likely related to netsnmp package that adds the following dependency: # pkg-1.2 cannot handle this dependency well. .if !defined(WITH_PKGNG) LIB_DEPENDS= libpkg.so:${PORTSDIR}/ports-mgmt/pkg .endif Therefore, I think it is the question to net-snmp maintainer. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-pkg@FreeBSD.ORG Sun Jul 13 08:23:05 2014 Return-Path: Delivered-To: pkg@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB5B9C9F for ; Sun, 13 Jul 2014 08:23:05 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C24B920A8 for ; Sun, 13 Jul 2014 08:23:05 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6D8N5Sj028264 for ; Sun, 13 Jul 2014 08:23:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: pkg@FreeBSD.org Subject: [Bug 187111] BSDPAN: doesn't support pkgng Date: Sun, 13 Jul 2014 08:23:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marino@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: pkg@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-pkg@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Binary package management and package tools discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jul 2014 08:23:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=187111 John Marino changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |marino@FreeBSD.org Assignee|freebsd-ports-bugs@FreeBSD. |pkg@FreeBSD.org |org | --- Comment #2 from John Marino --- I don't know where this goes, so I'll pass it to pkg@ so they can direct it to the person that needs to look at this. -- You are receiving this mail because: You are the assignee for the bug.