Merge pull request #28 from signalwire/fixup-stash-url

[build/docs] point all old stash references in docs and makefiles to new github repository
This commit is contained in:
Andrey Volk 2019-10-13 01:38:02 +04:00 committed by GitHub
commit f6c10f8622
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 20 additions and 20 deletions

View File

@ -684,7 +684,7 @@ is-scm:
echo ; echo ; \ echo ; echo ; \
echo "*****************************************************************************************************" ; \ echo "*****************************************************************************************************" ; \
echo "You cannot update a release tarball without a git tree. Please clone FreeSWITCH as so: " ; \ echo "You cannot update a release tarball without a git tree. Please clone FreeSWITCH as so: " ; \
echo " git clone https://freeswitch.org/stash/scm/fs/freeswitch.git " ; \ echo " git clone https://github.com/signalwire/freeswitch.git " ; \
echo "*****************************************************************************************************" ; \ echo "*****************************************************************************************************" ; \
echo ; echo ; \ echo ; echo ; \
exit 1; \ exit 1; \

View File

@ -29,7 +29,7 @@ freeswitch.git/configure: freeswitch.git/bootstrap.sh
cd freeswitch.git && sh bootstrap.sh cd freeswitch.git && sh bootstrap.sh
freeswitch.git/bootstrap.sh: has-git freeswitch.git/bootstrap.sh: has-git
test -d freeswitch.git || git clone https://freeswitch.org/stash/scm/fs/freeswitch.git freeswitch.git test -d freeswitch.git || git clone https://github.com/signalwire/freeswitch.git freeswitch.git
install: freeswitch install: freeswitch
cd freeswitch.git && make install cd-sounds-install cd-moh-install cd freeswitch.git && make install cd-sounds-install cd-moh-install

View File

@ -19,7 +19,7 @@ freeswitch.git/configure: freeswitch.git/bootstrap.sh
cd freeswitch.git && sh bootstrap.sh cd freeswitch.git && sh bootstrap.sh
freeswitch.git/bootstrap.sh: has-git freeswitch.git/bootstrap.sh: has-git
test -d freeswitch.git || git clone https://freeswitch.org/stash/scm/fs/freeswitch.git freeswitch.git test -d freeswitch.git || git clone https://github.com/signalwire/freeswitch.git freeswitch.git
rpmforge: rpmforge:
(which rpm && rpm -i http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm) || true (which rpm && rpm -i http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm) || true

View File

@ -24,7 +24,7 @@ freeswitch.git/configure: freeswitch.git/bootstrap.sh
cd freeswitch.git && AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.14 LIBTOOL=/usr/local/bin/libtoolize sh bootstrap.sh cd freeswitch.git && AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.14 LIBTOOL=/usr/local/bin/libtoolize sh bootstrap.sh
freeswitch.git/bootstrap.sh: has-git freeswitch.git/bootstrap.sh: has-git
test -d freeswitch.git || git clone https://freeswitch.org/stash/scm/fs/freeswitch.git freeswitch.git test -d freeswitch.git || git clone https://github.com/signalwire/freeswitch.git freeswitch.git
install: install:
cd freeswitch.git && AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.14 LIBTOOL=/usr/local/bin/libtoolize gmake install cd-sounds-install cd-moh-install cd freeswitch.git && AUTOCONF_VERSION=2.69 AUTOMAKE_VERSION=1.14 LIBTOOL=/usr/local/bin/libtoolize gmake install cd-sounds-install cd-moh-install

View File

@ -31,7 +31,7 @@ freeswitch.git/configure: freeswitch.git/bootstrap.sh
cd freeswitch.git && sh bootstrap.sh cd freeswitch.git && sh bootstrap.sh
freeswitch.git/bootstrap.sh: has-git freeswitch.git/bootstrap.sh: has-git
test -d freeswitch.git || git clone https://freeswitch.org/stash/scm/fs/freeswitch.git freeswitch.git test -d freeswitch.git || git clone https://github.com/signalwire/freeswitch.git freeswitch.git
install: freeswitch install: freeswitch
cd freeswitch.git && gmake install cd-sounds-install cd-moh-install cd freeswitch.git && gmake install cd-sounds-install cd-moh-install

View File

@ -18,7 +18,7 @@ of a FreeSWITCH git repository. You can achieve this with:
aptitude update && aptitude install -y git aptitude update && aptitude install -y git
mkdir -p /usr/src/freeswitch mkdir -p /usr/src/freeswitch
git clone https://freeswitch.org/stash/scm/fs/freeswitch.git /usr/src/freeswitch/src git clone https://github.com/signalwire/freeswitch.git /usr/src/freeswitch/src
cd /usr/src/freeswitch/src cd /usr/src/freeswitch/src
Ensuring you have a clean build directory Ensuring you have a clean build directory

4
debian/bootstrap.sh vendored
View File

@ -338,8 +338,8 @@ Build-Depends:
$(debian_wrap "${mod_build_depends}") $(debian_wrap "${mod_build_depends}")
Standards-Version: 3.9.3 Standards-Version: 3.9.3
Homepage: https://freeswitch.org/ Homepage: https://freeswitch.org/
Vcs-Git: https://freeswitch.org/stash/scm/fs/freeswitch.git Vcs-Git: https://github.com/signalwire/freeswitch.git
Vcs-Browser: https://freeswitch.org/stash/projects/FS/repos/freeswitch/browse Vcs-Browser: https://github.com/signalwire/freeswitch
EOF EOF
} }

View File

@ -85,7 +85,7 @@ apt-get install freeswitch-conf-vanilla
``` ```
2) clone freeswitch repo 2) clone freeswitch repo
```sh ```sh
git clone https://freeswitch.org/stash/projects/FS/repos/freeswitch/browse git clone https://github.com/signalwire/freeswitch.git
``` ```
3) execute ```make_min_archive.sh``` script 3) execute ```make_min_archive.sh``` script
```sh ```sh
@ -100,4 +100,4 @@ docker build -t freeswitch_custom .
Read more Read more
--------- ---------
[Dockerfile of official FreeSwitch container](https://freeswitch.org/stash/projects/FS/repos/freeswitch/browse/docker/release) [Dockerfile of official FreeSwitch container](https://github.com/signalwire/freeswitch/tree/master/docker/release)

View File

@ -4,7 +4,7 @@ How to Contribute Patches to FreeSWITCH
Download the Source Code Download the Source Code
------------------------ ------------------------
git clone https://freeswitch.org/stash/scm/fs/freeswitch.git git clone https://github.com/signalwire/freeswitch.git
cd freeswitch cd freeswitch
Ensure Git is Setup Ensure Git is Setup
@ -42,18 +42,18 @@ Create a Pull Request
# create an account in JIRA and create a new issue # create an account in JIRA and create a new issue
# navigate to FreeSWITCH Stash # navigate to FreeSWITCH github
chromium https://freeswitch.org/stash chromium https://github.com/signalwire/freeswitch
# Using the same credentials as Jira, login to Stash; create a forked FS repository; read # Using your github credentials, login to github; create a forked FS repository; read
# the details here: # the details here:
chromium https://freeswitch.org/confluence/display/FREESWITCH/Pull+Requests chromium https://freeswitch.org/confluence/display/FREESWITCH/Pull+Requests
# add your repository as a remote (change to your username) # add your repository as a remote (change to your username)
git remote add stash ssh://git@freeswitch.org:7999/~johndoe/freeswitch.git git remote add fs git@github.com:signalwire/freeswitch.git
# push your changes to a branch # push your changes to a branch
git push stash +HEAD:myfeature git push fs +HEAD:myfeature
# create a pull request as described here: # create a pull request as described here:
chromium https://freeswitch.org/confluence/display/FREESWITCH/Pull+Requests chromium https://freeswitch.org/confluence/display/FREESWITCH/Pull+Requests

View File

@ -35,6 +35,6 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://freeswitch.org/stash/scm/fs/freeswitch.git" "url": "https://github.com/signalwire/freeswitch.git"
} }
} }

View File

@ -133,10 +133,10 @@ config_fs_repos() {
curl https://files.freeswitch.org/repo/deb/debian/freeswitch_archive_g0.pub | apt-key add - curl https://files.freeswitch.org/repo/deb/debian/freeswitch_archive_g0.pub | apt-key add -
if [ "$FS_REV" = "master" ]; then if [ "$FS_REV" = "master" ]; then
echo "deb http://files.freeswitch.org/repo/deb/debian-unstable/ jessie main" >/etc/apt/sources.list.d/freeswitch.list echo "deb http://files.freeswitch.org/repo/deb/debian-unstable/ jessie main" >/etc/apt/sources.list.d/freeswitch.list
REPO="https://freeswitch.org/stash/scm/fs/freeswitch.git" REPO="https://github.com/signalwire/freeswitch.git"
elif [ "$FS_REV" = "1.6" ]; then elif [ "$FS_REV" = "1.6" ]; then
echo "deb http://files.freeswitch.org/repo/deb/freeswitch-1.6/ jessie main" > /etc/apt/sources.list.d/freeswitch.list echo "deb http://files.freeswitch.org/repo/deb/freeswitch-1.6/ jessie main" > /etc/apt/sources.list.d/freeswitch.list
REPO="-b v1.6 https://silik0n@freeswitch.org/stash/scm/fs/freeswitch.git" REPO="-b v1.6 https://github.com/signalwire/freeswitch.git"
fi fi
apt-get update 2>&1 >/dev/null apt-get update 2>&1 >/dev/null
} }

View File

@ -12,7 +12,7 @@ apt-get update && apt-get install -y libtool libjpeg62-turbo-dev ntpdate libfree
cd /usr/src cd /usr/src
git clone https://freeswitch.org/stash/scm/fs/freeswitch.git freeswitch.git git clone https://github.com/signalwire/freeswitch.git freeswitch.git
cd freeswitch.git cd freeswitch.git