public inbox for cygwin-apps@cygwin.com
 help / color / mirror / Atom feed
From: "Yaakov (Cygwin/X)" <yselkowitz@users.sourceforge.net>
To: cygwin-apps@cygwin.com
Subject: [PATCH] genini: support new tags
Date: Mon, 07 Oct 2013 19:28:00 -0000	[thread overview]
Message-ID: <52530B40.6050205@users.sourceforge.net> (raw)

[-- Attachment #1: Type: text/plain, Size: 101 bytes --]

The attached patch for genini allows it to recognize (and ignore) the 
new setup.hint tags.


Yaakov

[-- Attachment #2: genini-new-tags.patch --]
[-- Type: text/x-patch, Size: 622 bytes --]

2013-10-07  Yaakov Selkowitz  <yselkowitz@...>

	* genini (parse): Ignore arch:, release:, and skip: tags.

Index: genini
===================================================================
RCS file: /cvs/cygwin-apps/genini/genini,v
retrieving revision 1.14
diff -u -p -r1.14 genini
--- genini	17 Jul 2013 16:33:16 -0000	1.14
+++ genini	7 Oct 2013 19:24:32 -0000
@@ -139,6 +139,15 @@ sub parse {
 	    $main::setup_version = $_;
 	    next;
 	};
+	/^arch:/ and do {
+	    next;
+	};
+	/^release:/ and do {
+	    next;
+	};
+	/^skip:/ and do {
+	    next;
+	};
 	/^\@\s+(\S+)/ and do {
 	    $pname = $1;
 	    $what = '';

             reply	other threads:[~2013-10-07 19:28 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-07 19:28 Yaakov (Cygwin/X) [this message]
2013-10-07 19:46 ` Christopher Faylor
2013-10-07 19:59   ` Yaakov (Cygwin/X)
2013-10-07 20:04     ` Christopher Faylor
2013-10-11 20:31       ` Christopher Faylor

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=52530B40.6050205@users.sourceforge.net \
    --to=yselkowitz@users.sourceforge.net \
    --cc=cygwin-apps@cygwin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).