From: cajus Date: Tue, 2 Dec 2008 15:07:28 +0000 (+0000) Subject: More packaging updates X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=188b76bc609305773e4b1fdcd64f5526a14d9078;p=gosa.git More packaging updates git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13125 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/redhat/make-gosa-package b/gosa-core/redhat/make-gosa-package index 5bc5add5d..34c149a82 100755 --- a/gosa-core/redhat/make-gosa-package +++ b/gosa-core/redhat/make-gosa-package @@ -6,6 +6,7 @@ if [ $# -ne 1 ]; then fi what=$1 +NOT_RELEASED="heimdal dak dfs glpi opsi apache2 ssh" svn export https://oss.gonicus.de/repositories/gosa/$what/gosa-core svn export https://oss.gonicus.de/repositories/gosa/$what/gosa-plugins @@ -19,8 +20,13 @@ sed "s/^Version:.*$/Version: $VERSION/" gosa-$VERSION/redhat/gosa.spe rpmbuild -bb /usr/src/redhat/SPECS/gosa.spec +MAKE_PLUGINS=$(ls -1 gosa-plugins/*/plugin.dsc | sed 's/^.*\/\([^\/]*\)\/plugin.dsc$/\1/') +for i in $NOT_RELEASED; do + MAKE_PLUGINS=$(echo -n $MAKE_PLUGINS | sed "s/$i//") +done + cd gosa-plugins -for plugin in *; do +for plugin in $MAKE_PLUGINS; do ../gosa-core/redhat/rpm-make-gosa $plugin rpmbuild -bb /usr/src/redhat/SPECS/gosa-plugin-$plugin.spec done