X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 68E93DC046D for ; Fri, 5 Jul 2013 04:21:44 +0000 (UTC) Received: from compute6.internal (compute6.nyi.mail.srv.osa [10.202.2.46]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 45D702095F for ; Fri, 5 Jul 2013 00:21:42 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute6.internal (MEProxy); Fri, 05 Jul 2013 00:21:43 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id :in-reply-to:references; s=smtpout; bh=RnSLI/JkRhoDCwLffS+So41MV vA=; b=QZr7dDuhvcVdBVmnfWPY/MaoawjpC4Dx0RBag1J+6p6+9e0BTlc6IUhUE xqC5TQ1WG4eeAQ8lk17WhiPSkoS4QpssRv0VaNkABoSYdMdc/o0c0b4F7IGb5fIe MMTFTnKmfwqU0KnbeDQwkSLw5P1JI6mTEFnR9txw3uCeThWXgs= X-Sasl-enc: cJK9wiukU0Gepq1nyKIRi8Y2roS0Yrly+HoAphLQOZso 1372998102 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id 4CF326804C0 for ; Fri, 5 Jul 2013 00:21:42 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 03/31] various: add descriptions, attribution, license Date: Fri, 5 Jul 2013 00:21:12 -0400 Message-Id: <14cf3e262b8b78b19a8064b3f4397c0c19db896c.1372997335.git.dubiousjim@gmail.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: References: X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- abuild-sudo.c | 9 +++++++++ abump.in | 6 ++++++ apkgrel.in | 6 ++++++ checkapk.in | 6 ++++++ 4 files changed, 27 insertions(+) diff --git a/abuild-sudo.c b/abuild-sudo.c index 66f212a..2f34f3d 100644 --- a/abuild-sudo.c +++ b/abuild-sudo.c @@ -1,3 +1,12 @@ +/* abuild-sudo.c - limited root privileges for users in "abuild" group + * + * Copyright (C) 2012 Natanael Copa + * All rights reserved. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 as published + * by the Free Software Foundation. See http://www.gnu.org/ for details. + */ #include diff --git a/abump.in b/abump.in index 10ebb8b..897b50e 100755 --- a/abump.in +++ b/abump.in @@ -1,5 +1,11 @@ #!/bin/sh +# abump - bump pkgver in APKBUILDs +# Copyright (c) 2012 Natanael Copa +# +# Distributed under GPL-2 +# + program=${0##*/} die() { diff --git a/apkgrel.in b/apkgrel.in index f319a83..3feb4f3 100644 --- a/apkgrel.in +++ b/apkgrel.in @@ -1,5 +1,11 @@ #!/bin/sh +# apkgrel - display or bump pkgrel in APKBUILDs +# Copyright (c) 2012 Natanael Copa +# +# Distributed under GPL-2 +# + program=${0##*/} do_show() { diff --git a/checkapk.in b/checkapk.in index 76d63eb..9c1d9fd 100644 --- a/checkapk.in +++ b/checkapk.in @@ -1,5 +1,11 @@ #!/bin/sh +# checkapk - find ABI breakages in package upgrades +# Copyright (c) 2012 Natanael Copa +# +# Distributed under GPL-2 +# + die() { echo "$@" >&2 exit 1 -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---