This is the 1.1.9 release Added 389-admin-git-local.sh to construct a
source tarball from a local git repo and a tag - also grabs the correct
versions of mod_admserv and mod_restartd from CVS
This commit is contained in:
parent
ea32edc378
commit
c8b03e80f4
4 changed files with 25 additions and 4 deletions
|
|
@ -1 +1 @@
|
|||
389-admin-1.1.8.tar.bz2
|
||||
389-admin-1.1.9.tar.bz2
|
||||
|
|
|
|||
18
389-admin-git-local.sh
Executable file
18
389-admin-git-local.sh
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
#!/bin/bash
|
||||
|
||||
DATE=`date +%Y%m%d`
|
||||
TAG=389-admin-1.1.9
|
||||
CVSTAG=three89Admin_1_1_9
|
||||
VERSION=1.1.9
|
||||
PKGNAME=389-admin
|
||||
SRCNAME=${PKGNAME}-${VERSION}
|
||||
CVSROOT=:pserver:anonymous@cvs.fedoraproject.org:/cvs/dirsec
|
||||
echo you must be in the admin server git repo to use this
|
||||
git status > /dev/null || echo bye
|
||||
if [ -z "$1" ] ; then
|
||||
dir=.
|
||||
else
|
||||
dir="$1"
|
||||
fi
|
||||
git archive --format=tar --prefix=$SRCNAME/ $TAG | ( cd $dir ; tar xf - ; cd $SRCNAME ; cvs -d "$CVSROOT" -z3 export -r$CVSTAG mod_admserv mod_restartd ; cd .. ; tar cfj $dir/$SRCNAME.tar.bz2 $SRCNAME )
|
||||
rm -rf $dir/$SRCNAME
|
||||
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
Summary: 389 Administration Server (admin)
|
||||
Name: 389-admin
|
||||
Version: 1.1.8
|
||||
Release: 4%{?dist}
|
||||
Version: 1.1.9
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2 and ASL 2.0
|
||||
URL: http://port389.org/
|
||||
Group: System Environment/Daemons
|
||||
|
|
@ -151,6 +151,9 @@ end
|
|||
%{_mandir}/man8/*
|
||||
|
||||
%changelog
|
||||
* Mon Sep 14 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.9-1
|
||||
- the 1.1.9 release
|
||||
|
||||
* Tue Aug 25 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.8-4
|
||||
- resolves 518418 - Package rename shuts down server, results in unconfigured package
|
||||
- rewrite perm/owner preservation code to use lua
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
62d9c76e138e1421db7ca515e445f022 389-admin-1.1.8.tar.bz2
|
||||
1f84413babbcd29035b8707f2ee9cea1 389-admin-1.1.9.tar.bz2
|
||||
|
|
|
|||
Reference in a new issue