[Pkg-voip-commits] r6016 - /tools/checkunreleased.bash

the-me-guest at alioth.debian.org the-me-guest at alioth.debian.org
Wed Aug 6 20:17:16 UTC 2008


Author: the-me-guest
Date: Wed Aug  6 20:17:15 2008
New Revision: 6016

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=6016
Log:
Add a little script, which shows all packages, which have UNRELEASED changes.

Added:
    tools/checkunreleased.bash

Added: tools/checkunreleased.bash
URL: http://svn.debian.org/wsvn/pkg-voip/tools/checkunreleased.bash?rev=6016&op=file
==============================================================================
--- tools/checkunreleased.bash (added)
+++ tools/checkunreleased.bash Wed Aug  6 20:17:15 2008
@@ -1,0 +1,15 @@
+#!/bin/bash
+
+for i in *; do
+	if [ ! -d $i ]; then
+		continue
+	fi
+	if [ ! -f "${i}/trunk/debian/changelog" ]; then
+		continue
+	fi
+	if `grep -q UNRELEASED "${i}/trunk/debian/changelog"`; then
+		echo "UNRELEASED CHANGES: ${i}"
+	fi
+done
+
+exit




More information about the Pkg-voip-commits mailing list