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 6485ADC00AB 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 309422085A for ; Fri, 5 Jul 2013 00:21:40 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute6.internal (MEProxy); Fri, 05 Jul 2013 00:21:41 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id; s= smtpout; bh=VXp08aOkKuJlmOzPIMRDfrXvOMg=; b=X66NrBehAAVDN+mcQaQZ 979Df5h5bPxg6pDf6xQmfzWKohVh6Qh/3JSrmbepDYoFbj9M0+QRVsbePuH/P0mv 7Y7ccauIZ1h+SuYLF4ohZF+FqRWZVWEtY9MV50J42uhoWATnIjEIIiSlfBIivjOE wG+8Yvw/sYJFIU+SDBi374Y= X-Sasl-enc: VZTgNYeHXEwDohrTZgohIe3Zpjuz961vDZX65VLm3oAW 1372998100 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id AAAE068027D for ; Fri, 5 Jul 2013 00:21:40 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 00/31] patch series for abuild repo Date: Fri, 5 Jul 2013 00:21:09 -0400 Message-Id: X-Mailer: git-send-email 1.8.3.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Sorry for so many patches. I tried hard to rebase them into natural-sized chunks for reviewing. I'll rebase them further if you like. But I thought it was time to hand them over to other eyes. These hardly touch abuild itself, nor newapkbuild, buildrepo, or buildlab. I've got some notes for the first two of these, that I'll come back to another day. Most of the changes here are internal. The main externally-visible changes are: long options, some tweaked error messages, permitting environment variable overrides to settings from abuild.conf files, and hopefully some more robust behavior in places. Dubiousjim (31): remove unused files abuild-sudo, abuild-tar: cosmetic changes various: add descriptions, attribution, license various: tweak opening comments, whitespace abuild-keygen: refactor abuild-sign: refactor various: move conf-loading and i/o to functions Makefile: add missing files to dist Makefile: remove dist various: use long options, rework usages abuild_keygen: several tweaks abuild-sign: reformat error output abuild-sign: make vars local abuild-sign: wrap cd in a subshell, use set -e abuild-sign: fix a race condition abump: move loop inside do_bump, refine locals abump: introduce subshell, rc abump: make abuild also clean abump: tweak upgrade/cvelist abump, functions: refactor (and verify) calculation of APKBUILD path abump: refactor verification of APKBUILD abump: verify APKBUILD's version abump: verify that we're in git tree apkgrel: --clean-git enhancements apkgrel: show_plain, show_pretty apkgrel: tweaks to loops, add quotes apkgrel: handle missing pkgrel in do_add various: s/echo/msg/, s/echo/error/, tweak error messages apkgrel, functions: refactor calculation of APKBUILD's path various: fancier readconfig, permit env overrides functions: also honor .abuild file at gitbase APKBUILD-svn.proto | 46 -------- Makefile | 14 +-- abuild-keygen.in | 190 +++++++++++++++++---------------- abuild-sign.in | 132 ++++++++++++----------- abuild-sudo.c | 13 ++- abuild-tar.c | 2 +- abuild.in | 4 +- abump.in | 155 +++++++++++++++++---------- alpine.mk | 302 ----------------------------------------------------- alpine.packages | 124 ---------------------- apkgrel.in | 126 +++++++++++++++------- checkapk.in | 52 +++++---- functions.sh | 34 ------ functions.sh.in | 150 ++++++++++++++++++++++++++ mkinitram | 88 ---------------- mkmodloop | 37 ------- newapkbuild.in | 60 +++++------ 17 files changed, 585 insertions(+), 944 deletions(-) delete mode 100644 APKBUILD-svn.proto delete mode 100755 alpine.mk delete mode 100644 alpine.packages delete mode 100644 functions.sh create mode 100644 functions.sh.in delete mode 100644 mkinitram delete mode 100644 mkmodloop -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---