
This reverts commit 97ff611b0ebe821cf8240057d94ffba548ddeb23. We inadverdently merged jammy into master and we don't want to pollute master with any specific branch content. Revert it out. Change-Id: I6038c9fefead0169e7d92b1b16b0216ceff80c68
25 lines
1019 B
Bash
Executable File
25 lines
1019 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Build stamp Thu 12 May 2022 09:38:41 AEST
|
|
|
|
# NOTE(ianw) : If you are (re)building a version that is already
|
|
# in Ubuntu, you have to use the ubuntu orig file that is already
|
|
# present in the primary archive (if you try to recreate it, gzip
|
|
# timestamps etc will be wrong). If you are building a version
|
|
# that isn't in Ubuntu, then we can build directly from upstream
|
|
# sources. If bumping the vesion here, look in the script below
|
|
# to switch between downloading or creating.
|
|
|
|
VERSION=1.8.8.1
|
|
|
|
echo "${VERSION}" > version
|
|
|
|
wget https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/openafs/${VERSION}-1/openafs_${VERSION}.orig.tar.xz
|
|
|
|
# wget https://www.openafs.org/dl/openafs/${VERSION}/openafs-${VERSION}-src.tar.bz2
|
|
# wget https://www.openafs.org/dl/openafs/${VERSION}/openafs-${VERSION}-doc.tar.bz2
|
|
# tar xf openafs-${VERSION}-src.tar.bz2
|
|
# tar xf openafs-${VERSION}-doc.tar.bz2
|
|
# mv openafs-${VERSION} openafs_${VERSION}.orig
|
|
# tar cfJ openafs_${VERSION}.orig.tar.xz openafs_${VERSION}.orig
|