From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 129419 invoked by alias); 22 May 2017 17:25:13 -0000 Mailing-List: contact cygwin-apps-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: cygwin-apps-cvs-owner@sourceware.org Received: (qmail 129390 invoked by uid 9795); 22 May 2017 17:25:13 -0000 Date: Mon, 22 May 2017 17:25:00 -0000 Message-ID: <20170522172513.129357.qmail@sourceware.org> From: jturney@sourceware.org To: cygwin-apps-cvs@sourceware.org Subject: [cygwin-apps htdocs - The cygwin-apps website files] branch master, updated. 3c21f60583271c36d6609c80478d9b4586ae7ee8 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: dcfd2e2b6047db98cf1074369d9f2090f6f9ab25 X-Git-Newrev: 3c21f60583271c36d6609c80478d9b4586ae7ee8 X-SW-Source: 2017-q2/txt/msg00035.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/apps-htdocs.git;h=3c21f60583271c36d6609c80478d9b4586ae7ee8 commit 3c21f60583271c36d6609c80478d9b4586ae7ee8 Author: Jon Turney Date: Mon May 22 18:24:30 2017 +0100 Mention that unrecognized lines are ignored https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/apps-htdocs.git;h=95f3ac8feb1f04f844c16d3f1efac8f7eae3d534 commit 95f3ac8feb1f04f844c16d3f1efac8f7eae3d534 Author: Jon Turney Date: Mon May 22 18:24:13 2017 +0100 Document that '=' for equality is also an acceptable comparison. Also drop mention of '<<' and '>>', which are equivalent to '<' and '>'. Diff: --- setup.ini.html | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/setup.ini.html b/setup.ini.html index 959e6f3..b43800b 100644 --- a/setup.ini.html +++ b/setup.ini.html @@ -33,6 +33,8 @@ sequence of package sections.

Lines that begin with the # character are ignored by setup, and can be used to add commentary to the file.

+

For forward compatibility, unrecognized lines should be ignored.

+

Headers

@@ -135,14 +137,14 @@ This entry should not be used in conjunction with the "source:" entry.

Note: The following directives are not fully implemented yet.

-

Depends: package [(<< | >> | <= | >= | < | - > version-identifier)] [, package ...]

+

Depends: package [(= | <= | >= | < | > + version-identifier)] [, package ...]

This is a more sophisticated version of the requires: keyword, allowing the specification of explicit version number relationships. Packages are separated by commas instead of spaces.

-

Build-Depends: package [(<< | >> | <= | >= | < - | > version-identifier)] [, package ...]

+

Build-Depends: package [(= | <= | >= | < | > + version-identifier)] [, package ...]

Indicates the binary packages required to build the current source package.