From owner-freebsd-questions@freebsd.org Tue Aug 18 13:59:46 2015 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 646719BC220 for ; Tue, 18 Aug 2015 13:59:46 +0000 (UTC) (envelope-from francis@aspl.es) Received: from tarsonis.aspl.es (mail.aspl.es [213.96.140.9]) by mx1.freebsd.org (Postfix) with ESMTP id 0C5081C0F for ; Tue, 18 Aug 2015 13:59:43 +0000 (UTC) (envelope-from francis@aspl.es) Received: from localhost (localhost [127.0.0.1]) by tarsonis.aspl.es (Postfix) with ESMTP id 924B111C1961; Tue, 18 Aug 2015 15:54:25 +0200 (CEST) X-Virus-Scanned: amavisd-new at tarsonis.aspl.es Received: from tarsonis.aspl.es ([127.0.0.1]) by localhost (tarsonis.aspl.es [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GGTIT_diWyAV; Tue, 18 Aug 2015 15:54:17 +0200 (CEST) Received: from [192.168.0.132] (unknown [192.168.0.132]) (using SSLv3 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tarsonis.aspl.es (Postfix) with ESMTPS id A3E7511C1969; Tue, 18 Aug 2015 15:54:15 +0200 (CEST) Subject: Format for deps in +MANIFEST -- setting a dependency without any particular version From: Francis Brosnan =?ISO-8859-1?Q?Bl=E1zquez?= Reply-To: francis@aspl.es To: freebsd-questions@freebsd.org Cc: francis@aspl.es Organization: ASPL - Advanced Software Production Line, S.L. Date: Tue, 18 Aug 2015 15:54:14 +0200 Message-ID: <1439906054.15779.101.camel@vulcan.aspl.local> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 Content-Type: text/plain; charset="ISO-8859-15" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Aug 2015 13:59:46 -0000 Hello, I've been trying to find this around the web without success. If you want to place a "deps" to "python27" package but without setting a particular version, how do you do it? I just want the package to depend on python27 when it is asked to be installed. I'm trying something like this but is not working, "deps" : "python27":{"origin":"lang/python27"} ...it says: pkg: Skipping malformed dependency python27 It works if I use the following but I would to like to avoid placing a particular version: "deps" : "python27":{"origin":"lang/python27","version":"2.7.10"} Best Regards, Complete +MANIFEST is: | { | "name":"python-axl", | "origin":"textproc/python-axl", | "version":"0.7.0.b5340.g5351", | "comment":"Fast and efficient XML 1.0 implementation", | "maintainer":"info@aspl.es", | "www":"http://www.aspl.es/xml/", | "abi":"FreeBSD:9:amd64", | "arch":"freebsd:9:x86:64", | "prefix":"/usr/local", | "flatsize":473959, | "licenselogic":"single", | "licenses":["LGPL21"], | "desc":"Fast and efficient XML 1.0 implementation", | "deps" : {"libaxl1" : {"origin" : "textproc/libaxl1", "version" : "0.7.0.b5340.g5351"}, "python27":{"origin":"lang/python27"}}, | "categories":["textproc"], | "shlibs_provided":[libpy_axl.so.0.0.0,libpy_axl.so.0], | "files":{ | "/usr/local/lib/python2.7/site-packages/axl/libpy_axl.so.0.0.0": "4f7d01f0ea72c300de09dc86edee71557463ad1f6752012310ee6126d4d49f60", | "/usr/local/lib/python2.7/site-packages/axl/libpy_axl.so.0": "-", | "/usr/local/lib/python2.7/site-packages/axl/libpy_axl.so": "-", | "/usr/local/lib/python2.7/site-packages/axl/libpy_axl.la": "acf43bf5dec23c01af2cca24f6a84cfc88b8c57db252db904e883939ad8b2cc2", | "/usr/local/lib/python2.7/site-packages/axl/libpy_axl.a": "fd4f6762548e7a4d5b9b489d3b6a5eeff6eb9beb6089b6503ffab1f352139972", | "/usr/local/lib/python2.7/site-packages/axl/__init__.py": "ebffc48ea76e2eb179b83407258c81b6d64f3177c493962d7a22726464d54666" | }, | "scripts": | { | "post-install":"/sbin/ldconfig -m /usr/local/lib", | "post-deinstall":"/sbin/ldconfig -R" | } | },