summaryrefslogtreecommitdiff
path: root/pkg/alsa-lib/patch
AgeCommit message (Collapse)Author
2024-03-17alsa-lib: Minor tweaks to switch patchMichael Forney
Use local variable for get/put index. Remove unused variables. Add assert(0) to unreachable default case in switch.
2024-03-17alsa-lib: Update to 1.2.11Michael Forney
2021-06-27alsa-lib: Switch to upstream patch for static build fixMichael Forney
2021-06-27alsa-lib: Update to 1.2.5.1Michael Forney
2020-10-26alsa-lib: Update to 1.2.4Michael Forney
2020-07-09alsa-lib: Update to 1.2.3.2Michael Forney
2020-06-10alsa-lib: Update to 1.2.3Michael Forney
2020-02-20alsa-lib: Update to 1.2.2Michael Forney
2020-02-04alsa-lib: Remove unneeded patchMichael Forney
cproc now supports enumerators with value > INT_MAX.
2019-11-13alsa-lib: Update to 1.2.1Michael Forney
2019-07-07alsa-lib: Remove unnecessary patch for parameter qualifiersMichael Forney
I was mistaken about how type compatibility worked for function types.
2019-07-06alsa-lib: Fix a few more portability issuesMichael Forney
2019-07-03alsa-lib: Avoid out-of-range enum constantsMichael Forney
2019-06-04alsa-lib: Fix a few portability issuesMichael Forney
2017-11-14alsa-lib: Update to 1.1.5Michael Forney
2016-12-29alsa-lib: Update to 1.1.3Michael Forney
2016-12-13Move to flat package hierarchyMichael Forney
Note to self: never try to move submodules again To migrate your existing submodules (more or less): set -x set -e mkdir .git/modules/pkg for old in */*/src ; do new="pkg/${old#*/}" if ! [ -f "$old/.git" ] || [ "${old%%/*}" = pkg ] ; then continue fi git -C ".git/modules/$old" config core.worktree "../../../../../$new" rmdir "$new" mv "$old" "$new" sed -e "s,$old,$new," "$new/.git" > "$new/.git.tmp" mv "$new/.git.tmp" "$new/.git" mkdir ".git/modules/${new%/src}" mv ".git/modules/$old" ".git/modules/$new" rm "${old%/src}"/*.ninja mv "${old%/src}"/*.tar.{gz,xz,bz2} "${new%/src}/" rmdir "${old%/src}" || true done sed -e 's,^\[submodule "[^/]*/,[submodule "pkg/,' .git/config > .git/config.tmp mv .git/config.tmp .git/config