1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
From 82d7bb78d66a76749627c3a8779530358ff9c88e Mon Sep 17 00:00:00 2001
From: Jari Aalto <jari.aalto@cante.net>
Date: Sun, 11 Aug 2013 11:28:23 +0300
Subject: [PATCH] Add globals: PROGRAM, VERSION, LICENSE, AUTHOR
Organization: Private
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit
Signed-off-by: Jari Aalto <jari.aalto@cante.net>
---
splitpatch.rb | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/splitpatch.rb b/splitpatch.rb
index f23db86..06848dd 100755
--- a/splitpatch.rb
+++ b/splitpatch.rb
@@ -21,6 +21,11 @@
#
# Description
#
+PROGRAM = "splitpatch"
+VERSION = 1.0
+LICENSE = "GPL-2+" # See official acronyms: https://spdx.org/licenses/
+AUTHOR = "Peter Hutterer <peter@cs.unisa.edu.au>"
+
# Splitpatch is a simple script to split a patch up into
# multiple patch files. If the --hunks option is provided on the
# command line, each hunk gets its own patchfile.
--
1.9.2
|