summaryrefslogtreecommitdiff
path: root/pcr
AgeCommit message (Collapse)Author
2019-02-10pcr/apertium-lex-tools: updated to 0.2.1Andreas Grapentin
2019-02-10pcr/apertium: updated to 3.5.2Andreas Grapentin
2019-02-10pcr/lttoolbox: updated to 3.5.0Andreas Grapentin
2019-02-10pcr/gqrx-xtrx: rebuiltAndreas Grapentin
2019-02-10pcr/libxtrx: adding missing dependenciesAndreas Grapentin
2019-02-10pcr/eclim: updated to 2.8.0Andreas Grapentin
2019-02-10pcr/filemq: not available for armv7hAndreas Grapentin
2019-02-10pcr/byaccj: reworked and rebuiltAndreas Grapentin
2019-02-10pcr/gradio: updated to 7.2Andreas Grapentin
2019-02-10pcr/gna-unrar: unbuilt and unloved. removedAndreas Grapentin
2019-02-10pcr/libxtrxdsp: fixing build for armv7hAndreas Grapentin
2019-02-10pcr/prboom: reworked and rebuiltAndreas Grapentin
2019-02-10pcr/ice*-firebug: unused. removedAndreas Grapentin
2019-02-10pcr/open-plc-utils: updated to r510.g32408520Andreas Grapentin
2019-02-09pcr/java-{asm2,asm3,bnd,cup,ow-util-ant-tasks}: unloved. removedAndreas Grapentin
2019-02-09pcr/junit-truth: unloved. removedAndreas Grapentin
2019-02-09pcr/plasma-applet-active-window-control: unused and unbuilt. removedAndreas Grapentin
2019-02-09pcr/scotch: not available for armv7hAndreas Grapentin
2019-02-09pcr/yafaray: removed armv7h from arch array (does not build)Andreas Grapentin
2019-02-09pcr/pythonqt: rebuiltAndreas Grapentin
2019-02-09pcr/reicast-git: ancient and unmaintained. removedAndreas Grapentin
2019-02-09pcr/reaver-wps-svn: ancient and unmaintained. removedAndreas Grapentin
2019-02-09pcr/scotch: updated to 6.0.6Andreas Grapentin
2019-02-09pcr/wallchange: reworked and rebuiltAndreas Grapentin
2019-02-09pcr/yafaray: reworked and rebuiltAndreas Grapentin
2019-02-09pcr/python2-ropemacs: unmaintained, unbuilt. removedAndreas Grapentin
2019-02-09pcr/qxmlrpc: unmaintained, unbuilt. removedAndreas Grapentin
2019-02-09pcr/renpy-python3: unmaintained, unbuilt. removedAndreas Grapentin
2019-02-09pcr/ros-hydro-rosserial-xbee: unmaintained, unbuilt. removedAndreas Grapentin
2019-02-09pcr/ruby-libnotify: unmaintained, unbuilt. removedAndreas Grapentin
2019-02-09pcr/seeks: unmaintained, unbuilt. removedAndreas Grapentin
2019-02-09pcr/sipwitch: unmaintained, unbuilt. removedAndreas Grapentin
2019-02-09pcr/sobby: unmaintained, unbuilt. removedAndreas Grapentin
2019-02-09pcr/spectrum: unmaintained, unbuilt. removedAndreas Grapentin
2019-02-09pcr/squirm: unmaintained, unbuilt. removedAndreas Grapentin
2019-02-09pcr/statusnet: unmaintained, unbuilt. removedAndreas Grapentin
2019-02-09pcr/tinc-pre: unmaintained, unbuilt. removedAndreas Grapentin
2019-02-09pcr/tokyotyrant: unmaintained, unbuilt. removedAndreas Grapentin
2019-02-09pcr/uci: unmaintained. removedAndreas Grapentin
2019-02-08pcr/alpm_octopi_utils: added as dependency of octopiAndreas Grapentin
2019-02-08pcr/bristol: added x86_64 to archAndreas Grapentin
2019-02-08pcr/video_entropyd: added x86_64 to archAndreas Grapentin
2019-02-08pcr/linphone: add i686 and armv7h to archAndreas Grapentin
2019-02-05pcr/linphone: rebuiltAndreas Grapentin
2019-02-04ice*-theme-gnome*: dead and removed.Andreas Grapentin
2019-01-29pcr: gnuradio-osmosdr-xtrx: rebuild against new bootDenis 'GNUtoo' Carikli
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2019-01-28[pacman2pacman]: update install notes for openrcbill-auger
2019-01-24pcr/xtrx: update git revisions and improve PKGBUILDsDenis 'GNUtoo' Carikli
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
2019-01-22Update [pcr/i2p] to the new versionFreemor
2019-01-08pcr/asterisk: update to 16.1.1 and fix most illegal instructionsDenis 'GNUtoo' Carikli
This is based on the PKGBUILD available on aur here: https://aur.archlinux.org/asterisk.git Before this package was built with -march=native, so if you build it 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. 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. Changes from the aur PKGBUILD: - Parabola's change to always depend on pjproject was kept - 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" Without that the build machine processor - Parabola's minimum system requirements states that: "Parabola GNU/Linux-libre should run on any i686 compatible machine [...]" - Wikipedia states that i686 has MMX and SSE[2] The package build was tested on x86_64, i686 and armv7h. 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>