FREEBSD-upgrade (cfe30d02adda7c3b5c76156ac52d50d8cab325d9) | FREEBSD-upgrade (2b06b2013c82ee7f744ac5b6a413edede3eeb8cd) |
---|---|
1#!/bin/sh 2# $FreeBSD$ 3# 4# Usage: cd /usr/src/contrib/jemalloc 5# ./FREEBSD-upgrade <command> [args] 6# 7# At least the following ports are required when importing jemalloc: 8# - devel/autoconf --- 46 unchanged lines hidden (view full) --- 55workname="jemalloc.git" 56work="${src}/../${workname}" # merge-changes expects ${workname} in "..". 57changes="${src}/FREEBSD-changes" 58 59do_extract() { 60 local rev=$1 61 # Clone. 62 rm -rf ${work} | 1#!/bin/sh 2# $FreeBSD$ 3# 4# Usage: cd /usr/src/contrib/jemalloc 5# ./FREEBSD-upgrade <command> [args] 6# 7# At least the following ports are required when importing jemalloc: 8# - devel/autoconf --- 46 unchanged lines hidden (view full) --- 55workname="jemalloc.git" 56work="${src}/../${workname}" # merge-changes expects ${workname} in "..". 57changes="${src}/FREEBSD-changes" 58 59do_extract() { 60 local rev=$1 61 # Clone. 62 rm -rf ${work} |
63 git clone git://canonware.com/jemalloc.git ${work} | 63 git clone https://github.com/jemalloc/jemalloc.git ${work} |
64 ( 65 cd ${work} 66 if [ "x${rev}" != "x" ] ; then 67 # Use optional rev argument to check out a revision other than HEAD on 68 # master. 69 git checkout ${rev} 70 fi 71 # Apply diffs before generating files. --- 53 unchanged lines hidden --- | 64 ( 65 cd ${work} 66 if [ "x${rev}" != "x" ] ; then 67 # Use optional rev argument to check out a revision other than HEAD on 68 # master. 69 git checkout ${rev} 70 fi 71 # Apply diffs before generating files. --- 53 unchanged lines hidden --- |