Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-10-20 | Updated to versoin 20.0.0 | Nigel Kukard | |
2022-09-28 | Updated to version 19.6.0 | Nigel Kukard | |
2022-07-06 | Updated to version 19.5.0 | Nigel Kukard | |
Move file and directory ownership to tmpfiles. Fix up directory permissions to match tmpfiles and prevent install/upgrade warnings. | |||
2022-06-12 | Updated to 19.4.1 | Nigel Kukard | |
Incorporated a suggestion regarding the build process from @loqs, ref https://bbs.archlinux.org/viewtopic.php?pid=2037946#p2037946. Specifying a group in sysusers is redundant. Fixed log file name, thanks @Astroturf! Use .tmpfiles to be slightly more consistent. | |||
2022-04-11 | Updated to version 19.3.1 | Nigel Kukard | |
2022-02-28 | Updated to 19.2.0 | Nigel Kukard | |
2021-12-24 | Overhaul backup handling for chroot builds | Caleb Maclennan | |
Signed-off-by: Caleb Maclennan <caleb@alerque.com> | |||
2021-12-21 | upgpkg: asterisk 19.1.0-1 | Caleb Maclennan | |
upstream release | |||
2021-11-16 | Added gsm as optdepend | Nigel Kukard | |
2021-11-09 | Updated to 19.0.0 | Nigel Kukard | |
2021-10-08 | upgpkg: asterisk 18.7.0-1 | Caleb Maclennan | |
upstream release | |||
2021-08-24 | upgpkg: asterisk 18.6.0-1 | Caleb Maclennan | |
upstream release | |||
2021-06-24 | Bumped to 18.4.0-2 | Nigel Kukard | |
2021-06-24 | Removed stray /tmp being included in the package | Nigel Kukard | |
2021-05-18 | Updated to 18.4.0 | Nigel Kukard | |
2021-03-26 | upgpkg: asterisk 18.3.0-1 | Caleb Maclennan | |
upstream release | |||
2021-03-09 | upgpkg: asterisk 18.2.2-1 | Caleb Maclennan | |
upstream release | |||
2021-02-20 | upgpkg: asterisk 18.2.1-1 | Caleb Maclennan | |
upstream release | |||
2021-01-22 | Updated to 18.2.0 | Nigel Kukard | |
2020-12-15 | Bumped to 18.1.0-2 | Nigel Kukard | |
2020-12-15 | Added support for app_voicemail_imap | Nigel Kukard | |
2020-12-15 | Use bundled pjproject | Nigel Kukard | |
ref https://wiki.asterisk.org/wiki/display/AST/PJSIP-pjproject Thanks @Astroturf | |||
2020-11-24 | upgpkg: asterisk 18.1.0-1 | Caleb Maclennan | |
upstream release | |||
2020-11-12 | upgpkg: asterisk 18.0.1-2 | Caleb Maclennan | |
Drop iksemel optdepends: dead, broken, and removed from AUR | |||
2020-11-10 | Updated to version 18.0.1 | Nigel Kukard | |
2020-10-24 | upgpkg: asterisk 18.0.0-1 | Caleb Maclennan | |
upstream release | |||
2020-09-09 | upgpkg: asterisk 17.7.0-1 | Caleb Maclennan | |
upstream release | |||
2020-07-30 | upgpkg: asterisk 17.6.0-1 | Caleb Maclennan | |
upstream release | |||
2020-06-27 | upgpkg: asterisk 17.5.1-1 | Caleb Maclennan | |
upstream release | |||
2020-06-12 | upgpkg: asterisk 17.5.0-1 | Caleb Maclennan | |
upstream release | |||
2020-05-29 | Link to HTTPS | Caleb Maclennan | |
2020-05-01 | upgpkg: asterisk 17.4.0-1 | Caleb Maclennan | |
upstream release | |||
2020-03-14 | Update to 17.3.0 | Caleb Maclennan | |
2020-02-27 | Simplify scripting | Caleb Maclennan | |
2020-02-27 | Add missing config backup declarations | Caleb Maclennan | |
Also, auto generate list to avoid future such oversights... | |||
2020-02-27 | Package headers, cleanup packaging | Caleb Maclennan | |
2020-02-26 | Oops, fix out of step meta data | Caleb Maclennan | |
2020-02-26 | Drop radiousclient-ng optdepends, removed from AUR in 2017 | Caleb Maclennan | |
2020-02-22 | Bumped to 17.2.0 and added Caleb as co-maintainer | Nigel Kukard | |
2019-12-27 | Updated to 17.1.0 | Nigel Kukard | |
2019-11-28 | Updated to 17.0.1 | Nigel Kukard | |
2019-11-21 | Updated to 17.0.0 | Nigel Kukard | |
2019-11-02 | Updated to 16.6.1 | Nigel Kukard | |
2019-11-02 | Cleaned up PKGBUILD | Nigel Kukard | |
2019-10-10 | Bumped to version 16.6.0 | Nigel Kukard | |
2019-10-05 | Bumped to version 16.5.1 | Nigel Kukard | |
2019-08-14 | Regenerated .SRCINFO and bumped pkgrel | Nigel Kukard | |
2019-08-14 | Fix most illegal instructions when shipping asterisk. | Denis 'GNUtoo' Carikli | |
While this works in AUR, because users are building the PKGBUILD, distributions wanting to use this PKGBUILD as-is and ship packages produced with it will result in illegal instructions at runtime. Without that fix, if you build this packages on a machine with a processor that supports avx (Advanced Vector Extensions), libpjsip.so.2 ended up with vpxor instructions that were also executed on machines with a processor that did not have such extension, which resulted in an illegal instruction at asterisk startup if the machine running it didn't have AVX. Though for some reason, with this patch, building asterisk on a machine with avx still results in res_pjsip_send_to_voicemail.so having one vpxor instruction. Hopefully even with that, asterisk can still start on machines that do not have AVX. To fix most illegal instructions: - Native builds were disabled by using the ChangeLog documentation: "Those who need different -march= values, please, go for ./configure make menuselect.makeopts or make menuselect ./menuselect/menuselect --disable BUILD_NATIVE" - The build configuration was changed to use an external pjproject library. The AUR PKGBUILD for pjproject also had several fixes to prevent it from causing illegal instructions. On x86_64 I verified that most asterisk ELF files did not have vpxor instructions anymore with: $ pacman -Q -l asterisk | \ awk '{print $2}' | xargs file | grep ELF | \ sed 's#:.*##' | xargs objdump -D | grep vpxor Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | |||
2019-07-25 | Updated to 16.5.0 | Nigel Kukard | |
2019-06-01 | 16.4.0 | DX37 | |