Date: Thursday, July 17, 2014 @ 17:03:21 Author: arcanis Revision: 115824
upgpkg: zsh-completions 0.11.0-2 add MIT license (_phing completion) fix #41233 Added: zsh-completions/trunk/LICENSE-MIT Modified: zsh-completions/trunk/PKGBUILD -------------+ LICENSE-MIT | 19 +++++++++++++++++++ PKGBUILD | 12 ++++++++---- 2 files changed, 27 insertions(+), 4 deletions(-) Added: LICENSE-MIT =================================================================== --- LICENSE-MIT (rev 0) +++ LICENSE-MIT 2014-07-17 15:03:21 UTC (rev 115824) @@ -0,0 +1,19 @@ +Copyright (c) Igor M. Timoshenko <[email protected]> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-07-17 10:01:01 UTC (rev 115823) +++ PKGBUILD 2014-07-17 15:03:21 UTC (rev 115824) @@ -4,16 +4,18 @@ pkgname=zsh-completions pkgver=0.11.0 -pkgrel=1 +pkgrel=2 pkgdesc="Additional completion definitions for Zsh" arch=(any) url="https://github.com/zsh-users/zsh-completions" -license=('BSD' 'unknown') +license=('BSD' 'MIT' 'unknown') depends=('zsh') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/zsh-users/${pkgname}/tarball/${pkgver}" - "LICENSE-BSD") + "LICENSE-BSD" + "LICENSE-MIT") md5sums=('247c35aaca62df2f856e36ec34b8fe14' - '4f686c32a301905655f945fbbdd56880') + '4f686c32a301905655f945fbbdd56880' + '159dd6fa77daca30268c2438111becae') package() { install -dm755 "${pkgdir}/usr/share/zsh/site-functions" @@ -21,9 +23,11 @@ # remove completions which are provided by upstream rm "${pkgdir}/usr/share/zsh/site-functions/_mpv" + rm "${pkgdir}/usr/share/zsh/site-functions/_envoy" # license install -Dm644 "${srcdir}/LICENSE-BSD" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-BSD" + install -Dm644 "${srcdir}/LICENSE-MIT" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT" } # vim:set ts=2 sw=2 et:
