Ticket 47599 - Reduce lock scope in retro changelog plug-in Ticket 47596 - attrcrypt fails to find unlocked key Ticket 47598 - Convert ldbm_back_seq code to be transaction aware Ticket 47597 - Convert retro changelog plug-in to betxn Ticket 47585 - Replication Failures related to skipped entries due to cleaned rids Ticket 47588 - Compiler warnings building on F19 Ticket 47581 - Winsync plugin segfault during incremental backoff (phase 2) Ticket 47581 - Winsync plugin segfault during incremental backoff Ticket 47577 - crash when removing entries from cache 6b16d30 Revert "Ticket #47559 hung server - related to sasl and initialize"
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.3.2.4
|
|
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
|