389-ds-base-1.2.8.3 Bug 700145 - userpasswd not replicating Bug 700557 - Linked attrs callbacks access free'd pointers after close Bug 694336 - Group sync hangs Windows initial Sync Bug 700215 - ldclt core dumps Bug 695779 - windows sync can lose old values when a new value is added Bug 697027 - 12 - minor memory leaks found by Valgrind + TET
17 lines
365 B
Bash
17 lines
365 B
Bash
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
# use a real tag name here
|
|
VERSION=1.2.8.3
|
|
PKGNAME=389-ds-base
|
|
TAG=${TAG:-$PKGNAME-$VERSION}
|
|
URL="http://git.fedorahosted.org/git/?p=389/ds.git;a=snapshot;h=$TAG;sf=tgz"
|
|
SRCNAME=$PKGNAME-$VERSION
|
|
|
|
wget -O $SRCNAME.tar.gz "$URL"
|
|
|
|
echo convert tgz format to tar.bz2 format
|
|
|
|
gunzip $PKGNAME-$VERSION.tar.gz
|
|
bzip2 $PKGNAME-$VERSION.tar
|