42597f7f72
- Bug 1299417 - worker threads do not detect abnormally closed connections (DS 48412) - Ticket 47788 - Supplier can skip a failing update, although it should retry - Ticket 48341 - deadlock on connection mutex - Ticket 48406 - Avoid self deadlock by PR_Lock(conn->c_mutex) - Revert "Ticket #48338 - SimplePagedResults -- abandon could happen between the abandon check and sending results"
17 lines
366 B
Bash
17 lines
366 B
Bash
#!/bin/bash
|
|
|
|
DATE=`date +%Y%m%d`
|
|
# use a real tag name here
|
|
VERSION=1.3.3.7
|
|
PKGNAME=389-ds-base
|
|
TAG=${TAG:-$PKGNAME-$VERSION}
|
|
URL="https://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
|