From cdc73ac802a1af7a5e797e2789db591b244787be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Sun, 18 Nov 2012 21:11:10 -0300 Subject: Upgrade - noticed --bibliography isn't working It looks like it's like this since 1.9.4 --- ~fauno/pandoc/PKGBUILD | 71 +++++++++++++++++++++++++------------------------- ~fauno/pandoc/SRCBUILD | 15 ++++++----- 2 files changed, 45 insertions(+), 41 deletions(-) (limited to '~fauno') diff --git a/~fauno/pandoc/PKGBUILD b/~fauno/pandoc/PKGBUILD index 3d7d1fa9f..d3b88d3a0 100755 --- a/~fauno/pandoc/PKGBUILD +++ b/~fauno/pandoc/PKGBUILD @@ -4,8 +4,8 @@ # Run `makepkg -srp SRCBUILD` if you want to update the source tarball pkgname=pandoc -pkgver=1.9.4.2 -pkgrel=2 +pkgver=1.9.4.5 +pkgrel=3 pkgdesc='Conversion between markup formats (no Haskell libs)' url='http://johnmacfarlane.net/pandoc/' license=('GPL') @@ -15,53 +15,54 @@ options=(strip !makeflags !distcc) source=(https://repo.parabolagnulinux.org/other/${pkgname}-${pkgver}-$pkgrel-any.src.tar.xz{,.sig} SRCBUILD) conflicts=('haskell-pandoc') optdepends=('texlive-most: for pdf creation') -md5sums=('15f522c6bd0e26c709579b0a0fcfdcea' - 'e86da5aad2a7dfc6d53d2a2a0c562baa' - '415bbf263863c5cbc7c672ec1f497893') # PKGBUILD functions build() { mkdir -p ${srcdir}/{build,${pkgname}-${pkgver}} cd ${srcdir}/${pkgname}-${pkgver} - for _hkpkg in $(grep -v ${pkgname}-${pkgver} BUILDORDER); do - pushd ${srcdir}/${pkgname}-${pkgver}/${_hkpkg} - - HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal install --flags="embed_data_files" --prefix=${srcdir}/build/usr - - popd - done - - cd ${srcdir}/${pkgname}-${pkgver}/${pkgname}-${pkgver} - - HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal configure --prefix=/usr --libdir=${srcdir}/build/usr/lib --flags="-library embed_data_files" - HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal build + while read _hkpkg; do + pushd ${srcdir}/${pkgname}-${pkgver}/${_hkpkg} >/dev/null + + extra="--prefix=${srcdir}/build/usr" + case $_hkpkg in + $pkgname-$pkgver) + extra="--flags=\"executable -library\" --prefix=/usr --libdir=${srcdir}/build/usr/lib -v" ;; + citeproc-hs-*) + extra="--flags=\"embed_data_files\" --prefix=${srcdir}/build/usr -v" ;; + esac + + msg2 "Configuring $_hkpkg with $extra" + if [ "$_hkpkg" != "$pkgname-$pkgver" ]; then + HOME=${srcdir}/${pkgname}-${pkgver} \ + cabal install $extra + else + HOME=${srcdir}/${pkgname}-${pkgver} \ + cabal configure $extra + HOME=${srcdir}/${pkgname}-${pkgver} \ + cabal build + fi + + popd >/dev/null + done > BUILDORDER + cabal install --dry-run file-embed citeproc-hs-${_citeproc} ${pkgname}-${pkgver} | grep "\-[0-9]\+" >>BUILDORDER } package() { export PKGEXT=.src.tar.xz - export PKGDEST=${startdir} + export PKGDEST=${SRCDEST} mkdir -p ${pkgdir}/${pkgname}-${pkgver} cd ${pkgdir}/${pkgname}-${pkgver} - find ${srcdir} -iname '*.tar.?z' -a \! -iname '00-index.tar.gz' -exec \ + find ${srcdir}/${pkgname}-${pkgver} -iname '*.tar.?z' -a \! -iname '00-index.tar.gz' -exec \ bsdtar xvf '{}' \; cp ${srcdir}/${pkgname}-${pkgver}/BUILDORDER . -- cgit v1.2.3-2-g168b From adc549e8519824da803230cee62bfd7d808df989 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Thu, 22 Nov 2012 13:01:26 -0300 Subject: Notmuch was moved to [community] --- ~fauno/notmuch/PKGBUILD | 76 ------------------------------------------------- ~fauno/notmuch/SRCBUILD | 39 ------------------------- 2 files changed, 115 deletions(-) delete mode 100755 ~fauno/notmuch/PKGBUILD delete mode 100755 ~fauno/notmuch/SRCBUILD (limited to '~fauno') diff --git a/~fauno/notmuch/PKGBUILD b/~fauno/notmuch/PKGBUILD deleted file mode 100755 index 58599073c..000000000 --- a/~fauno/notmuch/PKGBUILD +++ /dev/null @@ -1,76 +0,0 @@ -# Maintainer: fauno -# Maintainer: Olivier Ramonat -# Maintainer: Richard Murri - -pkgname=notmuch -pkgver=0.14 -pkgrel=2 -pkgdesc="Notmuch is not much of an email program" -arch=(i686 x86_64 mips64el) -url="http://notmuchmail.org/" -license=('GPL3') -depends=('xapian-core' 'gmime' 'talloc') -makedepends=('python2' 'python' 'emacs' 'gnupg' 'ruby' 'pkgconfig') -optdepends=('emacs: for using the emacs interface' - 'vim: for using the vim interface' - 'python2: for using the python bindings' - 'ruby: for using the ruby bindings' - 'gnupg: for email encryption') -options=(!distcc !makeflags) - -source=("http://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.gz") - -build() { - cd "$srcdir/${pkgname}-${pkgver}" - - ./configure --prefix=/usr --sysconfdir=/etc - make - - cd bindings/ruby - ruby extconf.rb - make - - cp -r $srcdir/${pkgname}-${pkgver}/bindings/python{,2} - - cd $srcdir/${pkgname}-${pkgver}/bindings/python - env LD_LIBRARY_PATH="." python setup.py build - - cd $srcdir/${pkgname}-${pkgver}/bindings/python2 - find "." -name '*.py' -print0 |xargs -0 \ - sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \ - -e 's,^#!/usr/bin/python$,#!/usr/bin/python2,' - env LD_LIBRARY_PATH="." python2 setup.py build -} - -check() { - cd "$srcdir/${pkgname}-${pkgver}" - make test -} - -package(){ - cd "$srcdir/${pkgname}-${pkgver}" - make DESTDIR="$pkgdir/" LIBDIR_IN_LDCONFIG=0 install - - install -D notmuch $pkgdir/usr/sbin/notmuch - - mkdir -p $pkgdir/usr/share/vim/vimfiles/{plugin,syntax} - - cd vim && make PREFIX="$pkgdir/usr/share/vim/vimfiles" install - - # Install python bindings - - cd $srcdir/${pkgname}-${pkgver}/bindings/python2 - env LD_LIBRARY_PATH="." python2 setup.py install --prefix=/usr --root=$pkgdir - - cd $srcdir/${pkgname}-${pkgver}/bindings/python - env LD_LIBRARY_PATH="." python setup.py install --prefix=/usr --root=$pkgdir - -# Install ruby bindings - cd $srcdir/${pkgname}-${pkgver}/bindings/ruby - sed -i -e 's,/site_ruby,,g' Makefile - make prefix=${pkgdir}/usr install - -# Remove conflicting zsh completion - rm -r ${pkgdir}/usr/share/zsh -} -md5sums=('5eb3f225d3eb37862932f6baa5780d15') diff --git a/~fauno/notmuch/SRCBUILD b/~fauno/notmuch/SRCBUILD deleted file mode 100755 index 29a3a945f..000000000 --- a/~fauno/notmuch/SRCBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# Maintainer: Nicolás Reynolds - -pkgname=notmuch -pkgver=0.11.1 -pkgrel=1 -pkgdesc="Notmuch is not much of an email program" -arch=('any') -url="http://notmuchmail.org/" -license=('GPL3') -makedepends=('git') - -_gitroot="git://notmuchmail.org/git/notmuch" -_gitname="${pkgname}" - -build() { - cd "$srcdir" - msg 'Connecting to GIT server...' - - if [ -d $_gitname ] ; then - cd $_gitname; git pull origin - msg 'The local files are updated.' - else - git clone $_gitroot $_gitname - fi - - msg "GIT checkout done or server timeout" - -} - -package() { - cd ${pkgdir} - export PKGDEST=${SRCDEST} - export PKGEXT=.src.tar.xz - - git clone ${srcdir}/${pkgname} ${pkgname}-${pkgver} - -} - -# vim:set ts=2 sw=2 et: -- cgit v1.2.3-2-g168b From 47ad4c8c4b6754ad871b204c48f590be09f623dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Tue, 27 Nov 2012 15:20:08 -0300 Subject: At last! cabal didn't take the flags if they were passed as part of a variable --- ~fauno/pandoc/PKGBUILD | 36 +++++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 15 deletions(-) (limited to '~fauno') diff --git a/~fauno/pandoc/PKGBUILD b/~fauno/pandoc/PKGBUILD index d3b88d3a0..18e249a47 100755 --- a/~fauno/pandoc/PKGBUILD +++ b/~fauno/pandoc/PKGBUILD @@ -15,6 +15,9 @@ options=(strip !makeflags !distcc) source=(https://repo.parabolagnulinux.org/other/${pkgname}-${pkgver}-$pkgrel-any.src.tar.xz{,.sig} SRCBUILD) conflicts=('haskell-pandoc') optdepends=('texlive-most: for pdf creation') +md5sums=('912abc4574aea3c5203eff1b02ceafa9' + '7ac798d62f253535a2e194af5aa1c3c3' + 'e632f8c06be8284e17329a5d1c459e3b') # PKGBUILD functions build() { @@ -24,24 +27,30 @@ build() { while read _hkpkg; do pushd ${srcdir}/${pkgname}-${pkgver}/${_hkpkg} >/dev/null - extra="--prefix=${srcdir}/build/usr" + msg2 "Building $_hkpkg" + case $_hkpkg in $pkgname-$pkgver) - extra="--flags=\"executable -library\" --prefix=/usr --libdir=${srcdir}/build/usr/lib -v" ;; - citeproc-hs-*) - extra="--flags=\"embed_data_files\" --prefix=${srcdir}/build/usr -v" ;; - esac + HOME=${srcdir}/${pkgname}-${pkgver} \ + cabal configure --flags='-library' \ + --prefix=/usr \ + --libdir=${srcdir}/build/usr/lib -v - msg2 "Configuring $_hkpkg with $extra" - if [ "$_hkpkg" != "$pkgname-$pkgver" ]; then HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal install $extra - else + cabal build + ;; + + citeproc-hs-*) HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal configure $extra + cabal install --flags='embed_data_files' \ + --prefix=${srcdir}/build/usr -v + ;; + + *) HOME=${srcdir}/${pkgname}-${pkgver} \ - cabal build - fi + cabal install --prefix=${srcdir}/build/usr + ;; + esac popd >/dev/null done Date: Wed, 26 Dec 2012 22:14:47 -0500 Subject: (scripted) fix file permission breakage introduced in commit d62bd1 I did this with this command: git diff d62bd1^..d62bd1 | egrep '^old mode ' -C1 \ | tr '\n' ' ' | sed 's/diff --git/\n&/g' \ | sed -r 's|^diff --git a/([^ ]*) b/([^ ]*) old mode 100([0-9]*) new mode 100([0-9]*)|chmod \3 ./\1|' \ | bash The first line finds all of the file-permission changes in the commit. The second line squashes some newlines to get one line per file. This line is in the format: diff --git a/FILE b/FILE old mode OLDMODE new mode NEWMODE The third line extracts the values from those lines and transforms the line into: chmod FILE ./OLDMODE The fourth line (obviously) just executes the output. --- ~fauno/afew/LICENSE | 0 ~fauno/afew/PKGBUILD | 0 ~fauno/afew/SRCBUILD | 0 ~fauno/bibutils-dynamic/PKGBUILD | 0 ~fauno/dbacl/PKGBUILD | 0 ~fauno/distccd-zeroconf/PKGBUILD | 0 ~fauno/distccd-zeroconf/distccd.conf.d | 0 ~fauno/emerillon/PKGBUILD | 0 ~fauno/emerillon/emerillon.install | 0 ~fauno/ethos/PKGBUILD | 0 ~fauno/geoclue/PKGBUILD | 0 ~fauno/haskell-base64-bytestring/PKGBUILD | 0 ~fauno/haskell-base64-bytestring/haskell-base64-bytestring.install | 0 ~fauno/haskell-citeproc-hs/PKGBUILD | 0 ~fauno/haskell-citeproc-hs/haskell-citeproc-hs.install | 0 ~fauno/haskell-digest/PKGBUILD | 0 ~fauno/haskell-digest/haskell-digest.install | 0 ~fauno/haskell-dlist/PKGBUILD | 0 ~fauno/haskell-dlist/haskell-dlist.install | 0 ~fauno/haskell-hs-bibutils/PKGBUILD | 0 ~fauno/haskell-hs-bibutils/haskell-hs-bibutils.install | 0 ~fauno/haskell-json/PKGBUILD | 0 ~fauno/haskell-json/haskell-json.install | 0 ~fauno/haskell-pandoc-types/PKGBUILD | 0 ~fauno/haskell-pandoc-types/haskell-pandoc-types.install | 0 ~fauno/haskell-tagsoup/PKGBUILD | 0 ~fauno/haskell-tagsoup/haskell-tagsoup.install | 0 ~fauno/haskell-texmath/PKGBUILD | 0 ~fauno/haskell-texmath/haskell-texmath.install | 0 ~fauno/haskell-xml/PKGBUILD | 0 ~fauno/haskell-xml/haskell-xml.install | 0 ~fauno/haskell-zip-archive/PKGBUILD | 0 ~fauno/haskell-zip-archive/haskell-zip-archive.install | 0 ~fauno/ldapscripts/PKGBUILD | 0 ~fauno/librest/PKGBUILD | 0 ~fauno/localepurge/PKGBUILD | 0 ~fauno/mips64el-unknown-linux-gnu-binutils/PKGBUILD | 0 ~fauno/mips64el-unknown-linux-gnu-gcc-base/PKGBUILD | 0 ~fauno/pandoc/PKGBUILD | 0 ~fauno/pandoc/SRCBUILD | 0 ~fauno/ruby-mustache/PKGBUILD | 0 ~fauno/transmission-remote-cli/PKGBUILD | 0 ~fauno/transmission-remote-cli/python2.patch | 0 ~fauno/vala-notmuch/PKGBUILD | 0 ~fauno/vala-notmuch/SRCBUILD | 0 ~fauno/vala-notmuch/vala-notmuch.install | 0 46 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 ~fauno/afew/LICENSE mode change 100755 => 100644 ~fauno/afew/PKGBUILD mode change 100755 => 100644 ~fauno/afew/SRCBUILD mode change 100755 => 100644 ~fauno/bibutils-dynamic/PKGBUILD mode change 100755 => 100644 ~fauno/dbacl/PKGBUILD mode change 100755 => 100644 ~fauno/distccd-zeroconf/PKGBUILD mode change 100755 => 100644 ~fauno/distccd-zeroconf/distccd.conf.d mode change 100755 => 100644 ~fauno/emerillon/PKGBUILD mode change 100755 => 100644 ~fauno/emerillon/emerillon.install mode change 100755 => 100644 ~fauno/ethos/PKGBUILD mode change 100755 => 100644 ~fauno/geoclue/PKGBUILD mode change 100755 => 100644 ~fauno/haskell-base64-bytestring/PKGBUILD mode change 100755 => 100644 ~fauno/haskell-base64-bytestring/haskell-base64-bytestring.install mode change 100755 => 100644 ~fauno/haskell-citeproc-hs/PKGBUILD mode change 100755 => 100644 ~fauno/haskell-citeproc-hs/haskell-citeproc-hs.install mode change 100755 => 100644 ~fauno/haskell-digest/PKGBUILD mode change 100755 => 100644 ~fauno/haskell-digest/haskell-digest.install mode change 100755 => 100644 ~fauno/haskell-dlist/PKGBUILD mode change 100755 => 100644 ~fauno/haskell-dlist/haskell-dlist.install mode change 100755 => 100644 ~fauno/haskell-hs-bibutils/PKGBUILD mode change 100755 => 100644 ~fauno/haskell-hs-bibutils/haskell-hs-bibutils.install mode change 100755 => 100644 ~fauno/haskell-json/PKGBUILD mode change 100755 => 100644 ~fauno/haskell-json/haskell-json.install mode change 100755 => 100644 ~fauno/haskell-pandoc-types/PKGBUILD mode change 100755 => 100644 ~fauno/haskell-pandoc-types/haskell-pandoc-types.install mode change 100755 => 100644 ~fauno/haskell-tagsoup/PKGBUILD mode change 100755 => 100644 ~fauno/haskell-tagsoup/haskell-tagsoup.install mode change 100755 => 100644 ~fauno/haskell-texmath/PKGBUILD mode change 100755 => 100644 ~fauno/haskell-texmath/haskell-texmath.install mode change 100755 => 100644 ~fauno/haskell-xml/PKGBUILD mode change 100755 => 100644 ~fauno/haskell-xml/haskell-xml.install mode change 100755 => 100644 ~fauno/haskell-zip-archive/PKGBUILD mode change 100755 => 100644 ~fauno/haskell-zip-archive/haskell-zip-archive.install mode change 100755 => 100644 ~fauno/ldapscripts/PKGBUILD mode change 100755 => 100644 ~fauno/librest/PKGBUILD mode change 100755 => 100644 ~fauno/localepurge/PKGBUILD mode change 100755 => 100644 ~fauno/mips64el-unknown-linux-gnu-binutils/PKGBUILD mode change 100755 => 100644 ~fauno/mips64el-unknown-linux-gnu-gcc-base/PKGBUILD mode change 100755 => 100644 ~fauno/pandoc/PKGBUILD mode change 100755 => 100644 ~fauno/pandoc/SRCBUILD mode change 100755 => 100644 ~fauno/ruby-mustache/PKGBUILD mode change 100755 => 100644 ~fauno/transmission-remote-cli/PKGBUILD mode change 100755 => 100644 ~fauno/transmission-remote-cli/python2.patch mode change 100755 => 100644 ~fauno/vala-notmuch/PKGBUILD mode change 100755 => 100644 ~fauno/vala-notmuch/SRCBUILD mode change 100755 => 100644 ~fauno/vala-notmuch/vala-notmuch.install (limited to '~fauno') diff --git a/~fauno/afew/LICENSE b/~fauno/afew/LICENSE old mode 100755 new mode 100644 diff --git a/~fauno/afew/PKGBUILD b/~fauno/afew/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/afew/SRCBUILD b/~fauno/afew/SRCBUILD old mode 100755 new mode 100644 diff --git a/~fauno/bibutils-dynamic/PKGBUILD b/~fauno/bibutils-dynamic/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/dbacl/PKGBUILD b/~fauno/dbacl/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/distccd-zeroconf/PKGBUILD b/~fauno/distccd-zeroconf/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/distccd-zeroconf/distccd.conf.d b/~fauno/distccd-zeroconf/distccd.conf.d old mode 100755 new mode 100644 diff --git a/~fauno/emerillon/PKGBUILD b/~fauno/emerillon/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/emerillon/emerillon.install b/~fauno/emerillon/emerillon.install old mode 100755 new mode 100644 diff --git a/~fauno/ethos/PKGBUILD b/~fauno/ethos/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/geoclue/PKGBUILD b/~fauno/geoclue/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/haskell-base64-bytestring/PKGBUILD b/~fauno/haskell-base64-bytestring/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/haskell-base64-bytestring/haskell-base64-bytestring.install b/~fauno/haskell-base64-bytestring/haskell-base64-bytestring.install old mode 100755 new mode 100644 diff --git a/~fauno/haskell-citeproc-hs/PKGBUILD b/~fauno/haskell-citeproc-hs/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/haskell-citeproc-hs/haskell-citeproc-hs.install b/~fauno/haskell-citeproc-hs/haskell-citeproc-hs.install old mode 100755 new mode 100644 diff --git a/~fauno/haskell-digest/PKGBUILD b/~fauno/haskell-digest/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/haskell-digest/haskell-digest.install b/~fauno/haskell-digest/haskell-digest.install old mode 100755 new mode 100644 diff --git a/~fauno/haskell-dlist/PKGBUILD b/~fauno/haskell-dlist/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/haskell-dlist/haskell-dlist.install b/~fauno/haskell-dlist/haskell-dlist.install old mode 100755 new mode 100644 diff --git a/~fauno/haskell-hs-bibutils/PKGBUILD b/~fauno/haskell-hs-bibutils/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/haskell-hs-bibutils/haskell-hs-bibutils.install b/~fauno/haskell-hs-bibutils/haskell-hs-bibutils.install old mode 100755 new mode 100644 diff --git a/~fauno/haskell-json/PKGBUILD b/~fauno/haskell-json/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/haskell-json/haskell-json.install b/~fauno/haskell-json/haskell-json.install old mode 100755 new mode 100644 diff --git a/~fauno/haskell-pandoc-types/PKGBUILD b/~fauno/haskell-pandoc-types/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/haskell-pandoc-types/haskell-pandoc-types.install b/~fauno/haskell-pandoc-types/haskell-pandoc-types.install old mode 100755 new mode 100644 diff --git a/~fauno/haskell-tagsoup/PKGBUILD b/~fauno/haskell-tagsoup/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/haskell-tagsoup/haskell-tagsoup.install b/~fauno/haskell-tagsoup/haskell-tagsoup.install old mode 100755 new mode 100644 diff --git a/~fauno/haskell-texmath/PKGBUILD b/~fauno/haskell-texmath/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/haskell-texmath/haskell-texmath.install b/~fauno/haskell-texmath/haskell-texmath.install old mode 100755 new mode 100644 diff --git a/~fauno/haskell-xml/PKGBUILD b/~fauno/haskell-xml/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/haskell-xml/haskell-xml.install b/~fauno/haskell-xml/haskell-xml.install old mode 100755 new mode 100644 diff --git a/~fauno/haskell-zip-archive/PKGBUILD b/~fauno/haskell-zip-archive/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/haskell-zip-archive/haskell-zip-archive.install b/~fauno/haskell-zip-archive/haskell-zip-archive.install old mode 100755 new mode 100644 diff --git a/~fauno/ldapscripts/PKGBUILD b/~fauno/ldapscripts/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/librest/PKGBUILD b/~fauno/librest/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/localepurge/PKGBUILD b/~fauno/localepurge/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/mips64el-unknown-linux-gnu-binutils/PKGBUILD b/~fauno/mips64el-unknown-linux-gnu-binutils/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/mips64el-unknown-linux-gnu-gcc-base/PKGBUILD b/~fauno/mips64el-unknown-linux-gnu-gcc-base/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/pandoc/PKGBUILD b/~fauno/pandoc/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/pandoc/SRCBUILD b/~fauno/pandoc/SRCBUILD old mode 100755 new mode 100644 diff --git a/~fauno/ruby-mustache/PKGBUILD b/~fauno/ruby-mustache/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/transmission-remote-cli/PKGBUILD b/~fauno/transmission-remote-cli/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/transmission-remote-cli/python2.patch b/~fauno/transmission-remote-cli/python2.patch old mode 100755 new mode 100644 diff --git a/~fauno/vala-notmuch/PKGBUILD b/~fauno/vala-notmuch/PKGBUILD old mode 100755 new mode 100644 diff --git a/~fauno/vala-notmuch/SRCBUILD b/~fauno/vala-notmuch/SRCBUILD old mode 100755 new mode 100644 diff --git a/~fauno/vala-notmuch/vala-notmuch.install b/~fauno/vala-notmuch/vala-notmuch.install old mode 100755 new mode 100644 -- cgit v1.2.3-2-g168b