Skip to content

Commit dbec998

Browse files
author
Mike Jerris
committed
[build/docs] point all old stash references in docs and makefiles to new github repository
1 parent 3407517 commit dbec998

12 files changed

+20
-20
lines changed

Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ is-scm:
684684
echo ; echo ; \
685685
echo "*****************************************************************************************************" ; \
686686
echo "You cannot update a release tarball without a git tree. Please clone FreeSWITCH as so: " ; \
687-
echo " git clone https://freeswitch.org/stash/scm/fs/freeswitch.git " ; \
687+
echo " git clone https://github.com/signalwire/freeswitch.git " ; \
688688
echo "*****************************************************************************************************" ; \
689689
echo ; echo ; \
690690
exit 1; \

build/Makefile.centos5

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ freeswitch.git/configure: freeswitch.git/bootstrap.sh
2929
cd freeswitch.git && sh bootstrap.sh
3030

3131
freeswitch.git/bootstrap.sh: has-git
32-
test -d freeswitch.git || git clone https://freeswitch.org/stash/scm/fs/freeswitch.git freeswitch.git
32+
test -d freeswitch.git || git clone https://github.com/signalwire/freeswitch.git freeswitch.git
3333

3434
install: freeswitch
3535
cd freeswitch.git && make install cd-sounds-install cd-moh-install

build/Makefile.centos6

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ freeswitch.git/configure: freeswitch.git/bootstrap.sh
1919
cd freeswitch.git && sh bootstrap.sh
2020

2121
freeswitch.git/bootstrap.sh: has-git
22-
test -d freeswitch.git || git clone https://freeswitch.org/stash/scm/fs/freeswitch.git freeswitch.git
22+
test -d freeswitch.git || git clone https://github.com/signalwire/freeswitch.git freeswitch.git
2323

2424
rpmforge:
2525
(which rpm && rpm -i http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm) || true

build/Makefile.openbsd

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ freeswitch.git/configure: freeswitch.git/bootstrap.sh
2424
cd freeswitch.git && AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.14 LIBTOOL=/usr/local/bin/libtoolize sh bootstrap.sh
2525

2626
freeswitch.git/bootstrap.sh: has-git
27-
test -d freeswitch.git || git clone https://freeswitch.org/stash/scm/fs/freeswitch.git freeswitch.git
27+
test -d freeswitch.git || git clone https://github.com/signalwire/freeswitch.git freeswitch.git
2828

2929
install:
3030
cd freeswitch.git && AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.14 LIBTOOL=/usr/local/bin/libtoolize gmake install cd-sounds-install cd-moh-install

build/Makefile.solaris11

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ freeswitch.git/configure: freeswitch.git/bootstrap.sh
3131
cd freeswitch.git && sh bootstrap.sh
3232

3333
freeswitch.git/bootstrap.sh: has-git
34-
test -d freeswitch.git || git clone https://freeswitch.org/stash/scm/fs/freeswitch.git freeswitch.git
34+
test -d freeswitch.git || git clone https://github.com/signalwire/freeswitch.git freeswitch.git
3535

3636
install: freeswitch
3737
cd freeswitch.git && gmake install cd-sounds-install cd-moh-install

debian/README.source

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ of a FreeSWITCH git repository. You can achieve this with:
1818

1919
aptitude update && aptitude install -y git
2020
mkdir -p /usr/src/freeswitch
21-
git clone https://freeswitch.org/stash/scm/fs/freeswitch.git /usr/src/freeswitch/src
21+
git clone https://github.com/signalwire/freeswitch.git /usr/src/freeswitch/src
2222
cd /usr/src/freeswitch/src
2323

2424
Ensuring you have a clean build directory

debian/bootstrap.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -338,8 +338,8 @@ Build-Depends:
338338
$(debian_wrap "${mod_build_depends}")
339339
Standards-Version: 3.9.3
340340
Homepage: https://freeswitch.org/
341-
Vcs-Git: https://freeswitch.org/stash/scm/fs/freeswitch.git
342-
Vcs-Browser: https://freeswitch.org/stash/projects/FS/repos/freeswitch/browse
341+
Vcs-Git: https://github.com/signalwire/freeswitch.git
342+
Vcs-Browser: https://github.com/signalwire/freeswitch
343343
344344
EOF
345345
}

docker/base_image/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ apt-get install freeswitch-conf-vanilla
8585
```
8686
2) clone freeswitch repo
8787
```sh
88-
git clone https://freeswitch.org/stash/projects/FS/repos/freeswitch/browse
88+
git clone https://github.com/signalwire/freeswitch.git
8989
```
9090
3) execute ```make_min_archive.sh``` script
9191
```sh
@@ -100,4 +100,4 @@ docker build -t freeswitch_custom .
100100
Read more
101101
---------
102102

103-
[Dockerfile of official FreeSwitch container](https://freeswitch.org/stash/projects/FS/repos/freeswitch/browse/docker/release)
103+
[Dockerfile of official FreeSwitch container](https://github.com/signalwire/freeswitch/tree/master/docker/release)

docs/SubmittingPatches

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ How to Contribute Patches to FreeSWITCH
44
Download the Source Code
55
------------------------
66

7-
git clone https://freeswitch.org/stash/scm/fs/freeswitch.git
7+
git clone https://github.com/signalwire/freeswitch.git
88
cd freeswitch
99

1010
Ensure Git is Setup
@@ -42,18 +42,18 @@ Create a Pull Request
4242

4343
# create an account in JIRA and create a new issue
4444

45-
# navigate to FreeSWITCH Stash
46-
chromium https://freeswitch.org/stash
45+
# navigate to FreeSWITCH github
46+
chromium https://github.com/signalwire/freeswitch
4747

48-
# Using the same credentials as Jira, login to Stash; create a forked FS repository; read
48+
# Using your github credentials, login to github; create a forked FS repository; read
4949
# the details here:
5050
chromium https://freeswitch.org/confluence/display/FREESWITCH/Pull+Requests
5151

5252
# add your repository as a remote (change to your username)
53-
git remote add stash ssh://git@freeswitch.org:7999/~johndoe/freeswitch.git
53+
git remote add fs git@github.com:signalwire/freeswitch.git
5454

5555
# push your changes to a branch
56-
git push stash +HEAD:myfeature
56+
git push fs +HEAD:myfeature
5757

5858
# create a pull request as described here:
5959
chromium https://freeswitch.org/confluence/display/FREESWITCH/Pull+Requests

html5/verto/verto_communicator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
},
3636
"repository": {
3737
"type": "git",
38-
"url": "https://freeswitch.org/stash/scm/fs/freeswitch.git"
38+
"url": "https://github.com/signalwire/freeswitch.git"
3939
}
4040
}

scripts/FreeSWITCH-debian-raspbian-installer.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ config_fs_repos() {
133133
curl https://files.freeswitch.org/repo/deb/debian/freeswitch_archive_g0.pub | apt-key add -
134134
if [ "$FS_REV" = "master" ]; then
135135
echo "deb http://files.freeswitch.org/repo/deb/debian-unstable/ jessie main" >/etc/apt/sources.list.d/freeswitch.list
136-
REPO="https://freeswitch.org/stash/scm/fs/freeswitch.git"
136+
REPO="https://github.com/signalwire/freeswitch.git"
137137
elif [ "$FS_REV" = "1.6" ]; then
138138
echo "deb http://files.freeswitch.org/repo/deb/freeswitch-1.6/ jessie main" > /etc/apt/sources.list.d/freeswitch.list
139-
REPO="-b v1.6 https://[email protected]/stash/scm/fs/freeswitch.git"
139+
REPO="-b v1.6 https://github.com/signalwire/freeswitch.git"
140140
fi
141141
apt-get update 2>&1 >/dev/null
142142
}

scripts/debian_min_build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ apt-get update && apt-get install -y libtool libjpeg62-turbo-dev ntpdate libfree
1212

1313
cd /usr/src
1414

15-
git clone https://freeswitch.org/stash/scm/fs/freeswitch.git freeswitch.git
15+
git clone https://github.com/signalwire/freeswitch.git freeswitch.git
1616

1717
cd freeswitch.git
1818

0 commit comments

Comments
 (0)