mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
core: Cleanup gerrit and JIRA references. (#57)
* Remove .gitreview and switch to pulling the main asterisk branch version from configure.ac instead. * Replace references to JIRA with GitHub. * Other minor cleanup found along the way. Resolves: #39
This commit is contained in:
10
.gitreview
10
.gitreview
@@ -1,10 +0,0 @@
|
|||||||
[gerrit]
|
|
||||||
defaultbranch=20
|
|
||||||
#
|
|
||||||
# Intentional padding to ensure it is possible to point a commit
|
|
||||||
# to an alternative gerrit server/repository without breaking
|
|
||||||
# cherry-pick between branches.
|
|
||||||
#
|
|
||||||
host=gerrit.asterisk.org
|
|
||||||
port=29418
|
|
||||||
project=asterisk.git
|
|
10
BUGS
10
BUGS
@@ -1,22 +1,22 @@
|
|||||||
Asterisk Bug Tracking Information
|
Asterisk Bug Tracking Information
|
||||||
=================================
|
=================================
|
||||||
|
|
||||||
To learn about and report Asterisk bugs, please visit
|
To learn about and report Asterisk bugs, please visit
|
||||||
the official Asterisk Bug Tracker at:
|
the official Asterisk Bug Tracker at:
|
||||||
|
|
||||||
https://issues.asterisk.org/jira
|
https://github.com/asterisk/asterisk/issues/
|
||||||
|
|
||||||
For more information on using the bug tracker, or to
|
For more information on using the bug tracker, or to
|
||||||
learn how you can contribute by acting as a bug marshal
|
learn how you can contribute by acting as a bug marshal
|
||||||
please see:
|
please see:
|
||||||
|
|
||||||
http://www.asterisk.org/developers/bug-guidelines
|
https://wiki.asterisk.org/wiki/x/RgAtAQ
|
||||||
|
|
||||||
If you would like to submit a feature request, please
|
If you would like to submit a feature request, please
|
||||||
resist the temptation to post it to the bug tracker.
|
resist the temptation to post it to the bug tracker.
|
||||||
Feature requests should be posted to the asterisk-dev
|
Feature requests should be posted to the asterisk-dev
|
||||||
mailing list, located at:
|
mailing list, located at:
|
||||||
|
|
||||||
http://lists.digium.com
|
http://lists.digium.com
|
||||||
|
|
||||||
Thank you!
|
Thank you!
|
||||||
|
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
GIT=${GIT:-git}
|
GIT=${GIT:-git}
|
||||||
SED=${SED:-sed}
|
SED=${SED:-sed}
|
||||||
|
AWK=${AWK:-awk}
|
||||||
|
|
||||||
if [ -f ${1}/.version ]; then
|
if [ -f ${1}/.version ]; then
|
||||||
cat ${1}/.version
|
cat ${1}/.version
|
||||||
@@ -48,9 +49,9 @@ if [ -z "${MAINLINE_BRANCH}" ] ; then
|
|||||||
MAINLINE_BRANCH=$(echo "${BRANCH}" | ${SED} -n -r -e "s@devel(opment)?/([0-9]+)/.+@\2@p")
|
MAINLINE_BRANCH=$(echo "${BRANCH}" | ${SED} -n -r -e "s@devel(opment)?/([0-9]+)/.+@\2@p")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If we didn't find it, get it from .gitreview defaultbranch.
|
# If we didn't find it, get it from configure.ac.
|
||||||
if [ "x${MAINLINE_BRANCH}" = "x" ] ; then
|
if [ "x${MAINLINE_BRANCH}" = "x" ] ; then
|
||||||
MAINLINE_BRANCH=$(${GIT} config -f .gitreview --get gerrit.defaultbranch)
|
MAINLINE_BRANCH=$(${AWK} '/AC_INIT/ { print substr($2, 2, length($2) - 3) }' configure.ac)
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@@ -61,8 +61,9 @@ writeprotect=no
|
|||||||
; this value to "yes" !!
|
; this value to "yes" !!
|
||||||
; Please, if you try this out, and are forced to return to the
|
; Please, if you try this out, and are forced to return to the
|
||||||
; old pattern matcher, please report your reasons in a bug report
|
; old pattern matcher, please report your reasons in a bug report
|
||||||
; on https://issues.asterisk.org. We have made good progress in providing
|
; on https://github.com/asterisk/asterisk/issues. We have made good
|
||||||
; something compatible with the old matcher; help us finish the job!
|
; progress in providing something compatible with the old matcher; help us
|
||||||
|
; finish the job!
|
||||||
;
|
;
|
||||||
; This value can be switched at runtime using the cli command "dialplan set extenpatternmatchnew true"
|
; This value can be switched at runtime using the cli command "dialplan set extenpatternmatchnew true"
|
||||||
; or "dialplan set extenpatternmatchnew false", so you can experiment to your hearts content.
|
; or "dialplan set extenpatternmatchnew false", so you can experiment to your hearts content.
|
||||||
|
36
configure
vendored
36
configure
vendored
@@ -1,8 +1,8 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.69 for asterisk trunk.
|
# Generated by GNU Autoconf 2.69 for asterisk 20.
|
||||||
#
|
#
|
||||||
# Report bugs to <https://issues.asterisk.org>.
|
# Report bugs to <https://github.com/asterisk/asterisk/issues>.
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
|
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
|
||||||
@@ -269,8 +269,8 @@ fi
|
|||||||
$as_echo "$0: be upgraded to zsh 4.3.4 or later."
|
$as_echo "$0: be upgraded to zsh 4.3.4 or later."
|
||||||
else
|
else
|
||||||
$as_echo "$0: Please tell bug-autoconf@gnu.org and
|
$as_echo "$0: Please tell bug-autoconf@gnu.org and
|
||||||
$0: https://issues.asterisk.org about your system,
|
$0: https://github.com/asterisk/asterisk/issues about your
|
||||||
$0: including any error possibly output before this
|
$0: system, including any error possibly output before this
|
||||||
$0: message. Then install a modern shell, or manually run
|
$0: message. Then install a modern shell, or manually run
|
||||||
$0: the script under such a shell if you do have one."
|
$0: the script under such a shell if you do have one."
|
||||||
fi
|
fi
|
||||||
@@ -582,9 +582,9 @@ MAKEFLAGS=
|
|||||||
# Identity of this package.
|
# Identity of this package.
|
||||||
PACKAGE_NAME='asterisk'
|
PACKAGE_NAME='asterisk'
|
||||||
PACKAGE_TARNAME='asterisk'
|
PACKAGE_TARNAME='asterisk'
|
||||||
PACKAGE_VERSION='trunk'
|
PACKAGE_VERSION='20'
|
||||||
PACKAGE_STRING='asterisk trunk'
|
PACKAGE_STRING='asterisk 20'
|
||||||
PACKAGE_BUGREPORT='https://issues.asterisk.org'
|
PACKAGE_BUGREPORT='https://github.com/asterisk/asterisk/issues'
|
||||||
PACKAGE_URL=''
|
PACKAGE_URL=''
|
||||||
|
|
||||||
ac_unique_file="main/asterisk.c"
|
ac_unique_file="main/asterisk.c"
|
||||||
@@ -2032,7 +2032,7 @@ if test "$ac_init_help" = "long"; then
|
|||||||
# Omit some internal or obsolete options to make the list less imposing.
|
# Omit some internal or obsolete options to make the list less imposing.
|
||||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||||
cat <<_ACEOF
|
cat <<_ACEOF
|
||||||
\`configure' configures asterisk trunk to adapt to many kinds of systems.
|
\`configure' configures asterisk 20 to adapt to many kinds of systems.
|
||||||
|
|
||||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
|
|
||||||
@@ -2098,7 +2098,7 @@ fi
|
|||||||
|
|
||||||
if test -n "$ac_init_help"; then
|
if test -n "$ac_init_help"; then
|
||||||
case $ac_init_help in
|
case $ac_init_help in
|
||||||
short | recursive ) echo "Configuration of asterisk trunk:";;
|
short | recursive ) echo "Configuration of asterisk 20:";;
|
||||||
esac
|
esac
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
|
|
||||||
@@ -2277,7 +2277,7 @@ Some influential environment variables:
|
|||||||
Use these variables to override the choices made by `configure' or to help
|
Use these variables to override the choices made by `configure' or to help
|
||||||
it to find libraries and programs with nonstandard names/locations.
|
it to find libraries and programs with nonstandard names/locations.
|
||||||
|
|
||||||
Report bugs to <https://issues.asterisk.org>.
|
Report bugs to <https://github.com/asterisk/asterisk/issues>.
|
||||||
_ACEOF
|
_ACEOF
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
fi
|
fi
|
||||||
@@ -2340,7 +2340,7 @@ fi
|
|||||||
test -n "$ac_init_help" && exit $ac_status
|
test -n "$ac_init_help" && exit $ac_status
|
||||||
if $ac_init_version; then
|
if $ac_init_version; then
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
asterisk configure trunk
|
asterisk configure 20
|
||||||
generated by GNU Autoconf 2.69
|
generated by GNU Autoconf 2.69
|
||||||
|
|
||||||
Copyright (C) 2012 Free Software Foundation, Inc.
|
Copyright (C) 2012 Free Software Foundation, Inc.
|
||||||
@@ -2501,9 +2501,9 @@ $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
|
|||||||
$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
|
$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
|
||||||
$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
|
$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
|
||||||
( $as_echo "## ------------------------------------------ ##
|
( $as_echo "## ---------------------------------------------------------- ##
|
||||||
## Report this to https://issues.asterisk.org ##
|
## Report this to https://github.com/asterisk/asterisk/issues ##
|
||||||
## ------------------------------------------ ##"
|
## ---------------------------------------------------------- ##"
|
||||||
) | sed "s/^/$as_me: WARNING: /" >&2
|
) | sed "s/^/$as_me: WARNING: /" >&2
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@@ -3126,7 +3126,7 @@ cat >config.log <<_ACEOF
|
|||||||
This file contains any messages produced by compilers while
|
This file contains any messages produced by compilers while
|
||||||
running configure, to aid debugging if configure makes a mistake.
|
running configure, to aid debugging if configure makes a mistake.
|
||||||
|
|
||||||
It was created by asterisk $as_me trunk, which was
|
It was created by asterisk $as_me 20, which was
|
||||||
generated by GNU Autoconf 2.69. Invocation command line was
|
generated by GNU Autoconf 2.69. Invocation command line was
|
||||||
|
|
||||||
$ $0 $@
|
$ $0 $@
|
||||||
@@ -35026,7 +35026,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|||||||
# report actual input values of CONFIG_FILES etc. instead of their
|
# report actual input values of CONFIG_FILES etc. instead of their
|
||||||
# values after options handling.
|
# values after options handling.
|
||||||
ac_log="
|
ac_log="
|
||||||
This file was extended by asterisk $as_me trunk, which was
|
This file was extended by asterisk $as_me 20, which was
|
||||||
generated by GNU Autoconf 2.69. Invocation command line was
|
generated by GNU Autoconf 2.69. Invocation command line was
|
||||||
|
|
||||||
CONFIG_FILES = $CONFIG_FILES
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
@@ -35082,13 +35082,13 @@ $config_files
|
|||||||
Configuration headers:
|
Configuration headers:
|
||||||
$config_headers
|
$config_headers
|
||||||
|
|
||||||
Report bugs to <https://issues.asterisk.org>."
|
Report bugs to <https://github.com/asterisk/asterisk/issues>."
|
||||||
|
|
||||||
_ACEOF
|
_ACEOF
|
||||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||||
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
||||||
ac_cs_version="\\
|
ac_cs_version="\\
|
||||||
asterisk config.status trunk
|
asterisk config.status 20
|
||||||
configured by $0, generated by GNU Autoconf 2.69,
|
configured by $0, generated by GNU Autoconf 2.69,
|
||||||
with options \\"\$ac_cs_config\\"
|
with options \\"\$ac_cs_config\\"
|
||||||
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
AC_PREREQ(2.60a)
|
AC_PREREQ(2.60a)
|
||||||
|
|
||||||
AC_INIT([asterisk], [trunk], [https://issues.asterisk.org])
|
AC_INIT([asterisk], [20], [https://github.com/asterisk/asterisk/issues])
|
||||||
|
|
||||||
# cross-compile macros
|
# cross-compile macros
|
||||||
AC_CANONICAL_BUILD
|
AC_CANONICAL_BUILD
|
||||||
|
2
contrib/scripts/ast_grab_core
Normal file → Executable file
2
contrib/scripts/ast_grab_core
Normal file → Executable file
@@ -67,4 +67,4 @@ echo Notifying admins of the core.
|
|||||||
echo Done.
|
echo Done.
|
||||||
echo
|
echo
|
||||||
echo Reproducible deadlocks should be posted with a full backtrace and instructions
|
echo Reproducible deadlocks should be posted with a full backtrace and instructions
|
||||||
echo to reproduce the issue at https://issues.asterisk.org/ Thanks!
|
echo to reproduce the issue at https://github.com/asterisk/asterisk/issues/ Thanks!
|
||||||
|
@@ -1321,7 +1321,7 @@ if __name__ == "__main__":
|
|||||||
# configuration parser for sip.conf
|
# configuration parser for sip.conf
|
||||||
sip = astconfigparser.MultiOrderedConfigParser()
|
sip = astconfigparser.MultiOrderedConfigParser()
|
||||||
info('Please, report any issue at:')
|
info('Please, report any issue at:')
|
||||||
info(' https://issues.asterisk.org/')
|
info(' https://github.com/asterisk/asterisk/issues/')
|
||||||
info('Reading ' + sip_filename)
|
info('Reading ' + sip_filename)
|
||||||
sip.read(sip_filename)
|
sip.read(sip_filename)
|
||||||
info('Converting to PJSIP...')
|
info('Converting to PJSIP...')
|
||||||
|
@@ -70,7 +70,7 @@ if __name__ == "__main__":
|
|||||||
sip_to_pjsip.sip = sip
|
sip_to_pjsip.sip = sip
|
||||||
sip.connect(user,password,host,port,database)
|
sip.connect(user,password,host,port,database)
|
||||||
print('Please, report any issue at:')
|
print('Please, report any issue at:')
|
||||||
print(' https://issues.asterisk.org/')
|
print(' https://github.com/asterisk/asterisk/issues/')
|
||||||
print('Reading ' + sip_filename)
|
print('Reading ' + sip_filename)
|
||||||
sip.read(sip_filename)
|
sip.read(sip_filename)
|
||||||
print('Converting to PJSIP realtime sql...')
|
print('Converting to PJSIP realtime sql...')
|
||||||
|
@@ -243,7 +243,7 @@ Enables executing of includes via \fB#exec\fR directive inside
|
|||||||
.PP
|
.PP
|
||||||
\fBasterisk \-rx "core show channels"\fR - Display channels on running server
|
\fBasterisk \-rx "core show channels"\fR - Display channels on running server
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
Bug reports and feature requests may be filed at https://issues.asterisk.org
|
Bug reports and feature requests may be filed at https://github.com/asterisk/asterisk/issues/
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
https://www.asterisk.org - The Asterisk Home Page
|
https://www.asterisk.org - The Asterisk Home Page
|
||||||
.PP
|
.PP
|
||||||
|
@@ -415,7 +415,7 @@
|
|||||||
<refsect1>
|
<refsect1>
|
||||||
<title>BUGS</title>
|
<title>BUGS</title>
|
||||||
<para>
|
<para>
|
||||||
Bug reports and feature requests may be filed at https://issues.asterisk.org
|
Bug reports and feature requests may be filed at https://github.com/asterisk/asterisk/issues/
|
||||||
</para>
|
</para>
|
||||||
</refsect1>
|
</refsect1>
|
||||||
<refsect1>
|
<refsect1>
|
||||||
|
@@ -54,7 +54,7 @@
|
|||||||
*
|
*
|
||||||
* \section weblinks Web sites
|
* \section weblinks Web sites
|
||||||
* \arg \b Main: Asterisk Developer's website https://www.asterisk.org/developers/
|
* \arg \b Main: Asterisk Developer's website https://www.asterisk.org/developers/
|
||||||
* \arg \b Bugs: The Issue Tracker https://issues.asterisk.org
|
* \arg \b Bugs: The Issue Tracker https://github.com/asterisk/asterisk/issues/
|
||||||
* \arg \b Lists: List Server http://lists.digium.com
|
* \arg \b Lists: List Server http://lists.digium.com
|
||||||
* \arg \b Wiki: The Asterisk Wiki https://wiki.asterisk..org
|
* \arg \b Wiki: The Asterisk Wiki https://wiki.asterisk..org
|
||||||
* \arg \b Docs: The Asterisk Documentation Project http://www.asteriskdocs.org
|
* \arg \b Docs: The Asterisk Documentation Project http://www.asteriskdocs.org
|
||||||
|
@@ -173,6 +173,6 @@ Conflicts:
|
|||||||
REPORTING BUGS
|
REPORTING BUGS
|
||||||
|
|
||||||
Any bug reports or feature enhancement submissions to menuselect should be
|
Any bug reports or feature enhancement submissions to menuselect should be
|
||||||
submitted at https://issues.asterisk.org/
|
submitted at https://github.com/asterisk/asterisk/issues/
|
||||||
|
|
||||||
Thank you!
|
Thank you!
|
||||||
|
Reference in New Issue
Block a user