[arch-commits] Commit in python-docker/repos/community-any (PKGBUILD PKGBUILD)
Date: Wednesday, January 18, 2017 @ 07:58:30 Author: felixonmars Revision: 207858 archrelease: copy trunk to community-any Added: python-docker/repos/community-any/PKGBUILD (from rev 207857, python-docker/trunk/PKGBUILD) Deleted: python-docker/repos/community-any/PKGBUILD --+ PKGBUILD | 138 +++-- 1 file changed, 72 insertions(+), 66 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-18 07:58:01 UTC (rev 207857) +++ PKGBUILD2017-01-18 07:58:30 UTC (rev 207858) @@ -1,66 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Hideaki Takahashi -# Contributor: Vincent Demeester -# Contributor: Josh VanderLinden - -pkgname=(python-docker-py python2-docker-py) -pkgver=1.10.6 -pkgrel=2 -pkgdesc="Python client for Docker." -arch=('any') -url="https://github.com/dotcloud/docker-py"; -license=("Apache") -makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-requests' 'python2-requests' - 'python-six' 'python2-six' 'python-websocket-client' 'python2-websocket-client' - 'python2-backports.ssl_match_hostname' 'python2-ipaddress' 'python-docker-pycreds' - 'python2-docker-pycreds') -checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-mock' 'python2-mock' - 'flake8' 'python2-flake8') -checkdepends_x86_64=('docker') -source=("git+https://github.com/docker/docker-py.git#tag=$pkgver";) -sha256sums=('SKIP') - -prepare() { - sed -i 's/==.*$//' docker-py/{,test-}requirements.txt - - cp -a docker-py{,-py2} -} - -build() { - cd "$srcdir"/docker-py - python setup.py build - - cd "$srcdir"/docker-py-py2 - python2 setup.py build -} - -check() { - # Skipping integration tests as docker needs root to run: - # docker daemon -H fd:// -p "$srcdir/docker.pid" - - cd "$srcdir/docker-py" - py.test --cov=docker tests/unit - - cd "$srcdir/docker-py-py2" - py.test2 --cov=docker tests/unit - - # kill $(<"$srcdir/docker.pid") -} - -package_python-docker-py() { - depends=('python-requests' 'python-six' 'python-websocket-client' 'python-docker-pycreds') - - cd docker-py - python setup.py install -O1 --root="$pkgdir" - install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -} - -package_python2-docker-py() { - depends=('python2-requests' 'python2-six' 'python2-websocket-client' 'python2-docker-pycreds' - 'python2-backports.ssl_match_hostname' 'python2-ipaddress') - - cd docker-py-py2 - python2 setup.py install -O1 --root="$pkgdir" - install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -} Copied: python-docker/repos/community-any/PKGBUILD (from rev 207857, python-docker/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-18 07:58:30 UTC (rev 207858) @@ -0,0 +1,72 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Hideaki Takahashi +# Contributor: Vincent Demeester +# Contributor: Josh VanderLinden + +pkgname=(python-docker python2-docker) +pkgver=2.0.1 +pkgrel=1 +pkgdesc="A Python library for the Docker Engine API" +arch=('any') +url="https://github.com/docker/docker-py"; +license=("Apache") +makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-requests' 'python2-requests' + 'python-six' 'python2-six' 'python-websocket-client' 'python2-websocket-client' + 'python2-backports.ssl_match_hostname' 'python2-ipaddress' 'python-docker-pycreds' + 'python2-docker-pycreds') +checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-mock' 'python2-mock' + 'flake8' 'python2-flake8') +checkdepends_x86_64=('docker') +source=("git+https://github.com/docker/docker-py.git#tag=$pkgver";) +sha256sums=('SKIP') + +prepare() { + sed -i 's/==.*$//' docker-py/{,test-}requirements.txt + + cp -a docker-py{,-py2} +} + +build() { + cd "$srcdir"/docker-py + python setup.py build + + cd "$srcdir"/docker-py-py2 + python2 setup.py build +} + +check() { + # Skipping integration tests as docker needs root to run: + # docker daemon -H fd:// -p "$srcdir/docker.pid" + + cd "$srcdir/docker-py" + py.test --cov=docker tests/unit + + cd "$srcdir/docker-py-py2" + py.test2 --cov=docker tests/unit + + # kill $(<"$srcdir/docker.pid") +} + +package_python-docker() { + depends=('python-requests' 'python-six' 'python-websocket-client' 'python-docker-pycreds') + provides=('python-docker-py') + conflicts=('python-docker-py') + replaces=('python-docker-py') + + cd docker-py + python setup.py install -O1 --root="$pkgdir" + install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} + +package_python2-docker() { + depends=('python2-requests' 'python2-six' 'python2-websocket-client' 'python2-docker-pycreds' + 'python2-backports.ssl_match_hostname' 'python2-ipaddress') + provi
[arch-commits] Commit in (3 files)
Date: Wednesday, January 18, 2017 @ 07:58:01 Author: felixonmars Revision: 207857 upstream rename Added: python-docker/ Modified: python-docker/trunk/PKGBUILD Deleted: python-docker-py/ --+ PKGBUILD | 20 +--- 1 file changed, 13 insertions(+), 7 deletions(-) Modified: python-docker/trunk/PKGBUILD === --- python-docker-py/trunk/PKGBUILD 2017-01-18 07:27:38 UTC (rev 207856) +++ python-docker/trunk/PKGBUILD2017-01-18 07:58:01 UTC (rev 207857) @@ -4,12 +4,12 @@ # Contributor: Vincent Demeester # Contributor: Josh VanderLinden -pkgname=(python-docker-py python2-docker-py) -pkgver=1.10.6 -pkgrel=2 -pkgdesc="Python client for Docker." +pkgname=(python-docker python2-docker) +pkgver=2.0.1 +pkgrel=1 +pkgdesc="A Python library for the Docker Engine API" arch=('any') -url="https://github.com/dotcloud/docker-py"; +url="https://github.com/docker/docker-py"; license=("Apache") makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-requests' 'python2-requests' 'python-six' 'python2-six' 'python-websocket-client' 'python2-websocket-client' @@ -48,8 +48,11 @@ # kill $(<"$srcdir/docker.pid") } -package_python-docker-py() { +package_python-docker() { depends=('python-requests' 'python-six' 'python-websocket-client' 'python-docker-pycreds') + provides=('python-docker-py') + conflicts=('python-docker-py') + replaces=('python-docker-py') cd docker-py python setup.py install -O1 --root="$pkgdir" @@ -56,9 +59,12 @@ install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE } -package_python2-docker-py() { +package_python2-docker() { depends=('python2-requests' 'python2-six' 'python2-websocket-client' 'python2-docker-pycreds' 'python2-backports.ssl_match_hostname' 'python2-ipaddress') + provides=('python2-docker-py') + conflicts=('python2-docker-py') + replaces=('python2-docker-py') cd docker-py-py2 python2 setup.py install -O1 --root="$pkgdir"
[arch-commits] Commit in brltty (10 files)
Date: Wednesday, January 18, 2017 @ 07:25:04 Author: arojas Revision: 286907 archrelease: copy trunk to extra-i686, extra-x86_64 Added: brltty/repos/ brltty/repos/extra-i686/ brltty/repos/extra-i686/PKGBUILD (from rev 286906, brltty/trunk/PKGBUILD) brltty/repos/extra-i686/brltty.install (from rev 286906, brltty/trunk/brltty.install) brltty/repos/extra-i686/brltty.service (from rev 286906, brltty/trunk/brltty.service) brltty/repos/extra-x86_64/ brltty/repos/extra-x86_64/PKGBUILD (from rev 286906, brltty/trunk/PKGBUILD) brltty/repos/extra-x86_64/brltty.install (from rev 286906, brltty/trunk/brltty.install) brltty/repos/extra-x86_64/brltty.service (from rev 286906, brltty/trunk/brltty.service) Deleted: brltty/repos/ -+ extra-i686/PKGBUILD | 42 ++ extra-i686/brltty.install | 13 + extra-i686/brltty.service | 12 extra-x86_64/PKGBUILD | 42 ++ extra-x86_64/brltty.install | 13 + extra-x86_64/brltty.service | 12 6 files changed, 134 insertions(+) Copied: brltty/repos/extra-i686/PKGBUILD (from rev 286906, brltty/trunk/PKGBUILD) === --- repos/extra-i686/PKGBUILD (rev 0) +++ repos/extra-i686/PKGBUILD 2017-01-18 07:25:04 UTC (rev 286907) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer: Tom Gundersen +# Contributor: Jan de Groot +# Contributor: Giovanni Scafora + +pkgname=brltty +pkgver=5.4 +pkgrel=5 +pkgdesc="Braille display driver for Linux/Unix" +arch=(i686 x86_64) +url="http://mielke.cc/brltty"; +license=(GPL LGPL) +depends=(libxaw gpm icu tcl bluez-libs espeak) +makedepends=(at-spi2-core tcl speech-dispatcher cython) +optdepends=('at-spi2-core: X11/GNOME Apps accessibility' +'atk: ATK bridge for X11/GNOME accessibility') +backup=(etc/brltty.conf) +options=('!emptydirs') +install=brltty.install +source=(http://mielke.cc/brltty/archive/brltty-$pkgver.tar.xz +brltty.service) +sha256sums=('5d071bd6be9e7f3f85745088e00471c8dec6ebb77fd5b5c89e8f4cbc2d2c5d4f' +'a342a5e9d36f00a320e1d23d91c482bd5445af52588334307b7e9c09a8cc38ec') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ +--mandir=/usr/share/man \ +--with-tables-directory=/usr/share/brltty \ +--with-screen-driver=lx \ +--enable-gpm \ +--disable-java-bindings \ + + make +} + +package() { + cd $pkgname-$pkgver + make INSTALL_ROOT="$pkgdir" install + install -Dm644 Documents/brltty.conf "$pkgdir/etc/brltty.conf" + install -Dm644 ../brltty.service "$pkgdir/usr/lib/systemd/system/brltty.service" +} Copied: brltty/repos/extra-i686/brltty.install (from rev 286906, brltty/trunk/brltty.install) === --- repos/extra-i686/brltty.install (rev 0) +++ repos/extra-i686/brltty.install 2017-01-18 07:25:04 UTC (rev 286907) @@ -0,0 +1,13 @@ +post_install () { + getent group brlapi &>/dev/null || groupadd -r brlapi + if [ ! -e /etc/brlapi.key ]; then + mcookie >/etc/brlapi.key + chmod 0640 /etc/brlapi.key + chgrp brlapi /etc/brlapi.key + echo "Please add your user to the brlapi group." + fi +} + +post_upgrade () { +post_install +} Copied: brltty/repos/extra-i686/brltty.service (from rev 286906, brltty/trunk/brltty.service) === --- repos/extra-i686/brltty.service (rev 0) +++ repos/extra-i686/brltty.service 2017-01-18 07:25:04 UTC (rev 286907) @@ -0,0 +1,12 @@ +[Unit] +Description=Braille Console Driver +DefaultDependencies=no +Before=sysinit.target + +[Service] +ExecStart=/usr/bin/brltty --pid-file=/run/brltty.pid +Type=forking +PIDFile=/run/brltty.pid + +[Install] +WantedBy=sysinit.target Copied: brltty/repos/extra-x86_64/PKGBUILD (from rev 286906, brltty/trunk/PKGBUILD) === --- repos/extra-x86_64/PKGBUILD (rev 0) +++ repos/extra-x86_64/PKGBUILD 2017-01-18 07:25:04 UTC (rev 286907) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer: Tom Gundersen +# Contributor: Jan de Groot +# Contributor: Giovanni Scafora + +pkgname=brltty +pkgver=5.4 +pkgrel=5 +pkgdesc="Braille display driver for Linux/Unix" +arch=(i686 x86_64) +url="http://mielke.cc/brltty"; +license=(GPL LGPL) +depends=(libxaw gpm icu tcl bluez-libs espeak) +makedepends=(at-spi2-core tcl speech-dispatcher cython) +optdepends=('at-spi2-core: X11/GNOME Apps accessibility' +'atk: ATK bridge for X11/GNOME accessibility') +backup=(etc/brltty.conf) +options=('!emptydirs') +install=brltty.install +source=(http://mielke.cc/brltty/archive/brltty-$pkgver.tar.xz +br
[arch-commits] Commit in stack/repos (6 files)
Date: Wednesday, January 18, 2017 @ 07:23:35 Author: felixonmars Revision: 207854 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: stack/repos/community-staging-i686/ stack/repos/community-staging-i686/PKGBUILD (from rev 207853, stack/trunk/PKGBUILD) stack/repos/community-staging-i686/stack.install (from rev 207853, stack/trunk/stack.install) stack/repos/community-staging-x86_64/ stack/repos/community-staging-x86_64/PKGBUILD (from rev 207853, stack/trunk/PKGBUILD) stack/repos/community-staging-x86_64/stack.install (from rev 207853, stack/trunk/stack.install) + community-staging-i686/PKGBUILD| 83 +++ community-staging-i686/stack.install |4 + community-staging-x86_64/PKGBUILD | 83 +++ community-staging-x86_64/stack.install |4 + 4 files changed, 174 insertions(+) Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 207853, stack/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2017-01-18 07:23:35 UTC (rev 207854) @@ -0,0 +1,83 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +pkgbase=stack +pkgname=(stack haskell-stack) +pkgver=1.3.2 +pkgrel=13 +pkgdesc="The Haskell Tool Stack" +url="https://github.com/commercialhaskell/stack"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-annotated-wl-pprint" "haskell-ansi-terminal" + "haskell-async" "haskell-attoparsec" "haskell-base-compat" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-binary-tagged" "haskell-blaze-builder" + "haskell-byteable" "haskell-clock" "haskell-conduit" "haskell-conduit-extra" + "haskell-cryptohash" "haskell-cryptohash-conduit" "haskell-either" "haskell-errors" + "haskell-exceptions" "haskell-extra" "haskell-fast-logger" "haskell-file-embed" + "haskell-filelock" "haskell-fsnotify" "haskell-generic-deriving" "haskell-gitrev" + "haskell-hashable" "haskell-hastache" "haskell-hit" "haskell-http-client" + "haskell-http-client-tls" "haskell-http-conduit" "haskell-http-types" "haskell-hpack" + "haskell-lifted-async" "haskell-lifted-base" "haskell-microlens" + "haskell-monad-control" "haskell-monad-logger" "haskell-monad-unlift" "haskell-mtl" + "haskell-open-browser" "haskell-optparse-applicative" "haskell-optparse-simple" + "haskell-path" "haskell-path-io" "haskell-persistent" "haskell-persistent-sqlite" + "haskell-persistent-template" "haskell-pid1" "haskell-project-template" + "haskell-regex-applicative-text" "haskell-resourcet" "haskell-retry" "haskell-safe" + "haskell-safe-exceptions" "haskell-semigroups" "haskell-split" "haskell-stm" + "haskell-store" "haskell-streaming-commons" "haskell-tar" "haskell-temporary" + "haskell-text" "haskell-text-binary" "haskell-text-metrics" "haskell-tls" + "haskell-transformers-base" "haskell-unicode-transforms" "haskell-unix-compat" + "haskell-unordered-containers" "haskell-vector" "haskell-vector-binary-instances" + "haskell-yaml" "haskell-zip-archive" "haskell-zlib") +source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz";) +sha256sums=('488b9292ea605c92f6ebf79b233e8e374d857b21053051cb44b305dad8f0d3f7') + +prepare() { +sed -i 's/hpack >=0.14.0 && <0.16,/hpack >=0.14.0 \&\& <0.17,/' ${pkgbase}-${pkgver}/${pkgbase}.cabal +} + +build() { +cd "${srcdir}/${pkgbase}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-disable-git-info -f-integration-tests -f-static -f-hide-dependency-versions +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package_stack() { +depends=('gmp' 'libffi' 'zlib') +optdepends=('ghc') +install="stack.install" + +cd "${srcdir}/${pkgbase}-${pkgver}" +runhaskell Setup copy --destdir="${pkgdir}" +rm -r "$pkgdir"/usr/{lib,share/doc} +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + +"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > stack_completion_script +install -Dm644 stack_completion_script "${pkgdir}/usr/share/bash-com
[arch-commits] Commit in stack/trunk (PKGBUILD)
Date: Wednesday, January 18, 2017 @ 07:23:09 Author: felixonmars Revision: 207853 upgpkg: stack 1.3.2-13 rebuild with lifted-async,0.9.1 Modified: stack/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-18 07:09:52 UTC (rev 207852) +++ PKGBUILD2017-01-18 07:23:09 UTC (rev 207853) @@ -5,7 +5,7 @@ pkgbase=stack pkgname=(stack haskell-stack) pkgver=1.3.2 -pkgrel=12 +pkgrel=13 pkgdesc="The Haskell Tool Stack" url="https://github.com/commercialhaskell/stack"; license=("custom:BSD3")
[arch-commits] Commit in brltty/trunk (PKGBUILD)
Date: Wednesday, January 18, 2017 @ 07:21:23 Author: arojas Revision: 286906 Move cython to makedepends (FS#52603) Modified: brltty/trunk/PKGBUILD --+ PKGBUILD | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 23:15:18 UTC (rev 286905) +++ PKGBUILD2017-01-18 07:21:23 UTC (rev 286906) @@ -5,13 +5,13 @@ pkgname=brltty pkgver=5.4 -pkgrel=4 +pkgrel=5 pkgdesc="Braille display driver for Linux/Unix" arch=(i686 x86_64) url="http://mielke.cc/brltty"; license=(GPL LGPL) -depends=(libxaw gpm icu tcl cython bluez-libs espeak) -makedepends=(at-spi2-core tcl speech-dispatcher) +depends=(libxaw gpm icu tcl bluez-libs espeak) +makedepends=(at-spi2-core tcl speech-dispatcher cython) optdepends=('at-spi2-core: X11/GNOME Apps accessibility' 'atk: ATK bridge for X11/GNOME accessibility') backup=(etc/brltty.conf) @@ -19,8 +19,8 @@ install=brltty.install source=(http://mielke.cc/brltty/archive/brltty-$pkgver.tar.xz brltty.service) -md5sums=('cfedd365e6237d762ad8c35b4f6fb361' - '0cad54bb5470122535f5e3a11d5ca123') +sha256sums=('5d071bd6be9e7f3f85745088e00471c8dec6ebb77fd5b5c89e8f4cbc2d2c5d4f' +'a342a5e9d36f00a320e1d23d91c482bd5445af52588334307b7e9c09a8cc38ec') build() { cd $pkgname-$pkgver
[arch-commits] Commit in qtox/repos (4 files)
Date: Wednesday, January 18, 2017 @ 06:57:43 Author: farseerfc Revision: 207850 archrelease: copy trunk to community-testing-i686, community-testing-x86_64 Added: qtox/repos/community-testing-i686/ qtox/repos/community-testing-i686/PKGBUILD (from rev 207849, qtox/trunk/PKGBUILD) qtox/repos/community-testing-x86_64/ qtox/repos/community-testing-x86_64/PKGBUILD (from rev 207849, qtox/trunk/PKGBUILD) ---+ community-testing-i686/PKGBUILD | 56 community-testing-x86_64/PKGBUILD | 56 2 files changed, 112 insertions(+) Copied: qtox/repos/community-testing-i686/PKGBUILD (from rev 207849, qtox/trunk/PKGBUILD) === --- community-testing-i686/PKGBUILD (rev 0) +++ community-testing-i686/PKGBUILD 2017-01-18 06:57:43 UTC (rev 207850) @@ -0,0 +1,56 @@ +# Maintainer: Jiachen Yang +# AUR Maintainer: Vlad M. +# Contributor: Håvard Pettersson +# Contributor: Kevin MacMartin + +pkgname=qtox +_pkgname=qTox +pkgver=1.7.1 +pkgrel=4 +_gitver='6f155d4db806a664d76457d42a20246ffbd5d1ac' +pkgdesc='Powerful Tox client written in C++/Qt that follows the Tox design guidelines' +arch=('i686' 'x86_64') +url='https://github.com/tux3/qTox' +license=('GPL3') +depends=('libxss' + 'openal' + 'gtk2' + 'ffmpeg' + 'qrencode' + 'qt5-svg' + 'sqlcipher' + 'toxcore') +makedepends=('qt5-tools' 'git') + +#source=("git+https://github.com/qTox/qTox.git#commit=$_gitver";) +source=("https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/v$pkgver.tar.lz"; + "https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/v$pkgver.tar.lz.asc"; + "pr4053.patch::https://patch-diff.githubusercontent.com/raw/qTox/qTox/pull/4053.diff";) +sha512sums=('89149d712f342ef09596d376c35b8c5573e21ce74f6edf906d6eeadb8dfe1a6b0f2945221bafb7d7509a9c857d928deed86c0ffb1e2071edd6f899e048ea7122' +'SKIP' + 'b36eb38c50ede1decde5eb17eab447a62dd1d71e52106f4e73c02abf2af67e308deddb9c70d46e41c51ce3aa6463d012cc19b3207e2885c16cae09cd36040bfe') + +# GPG key fingerprints taken from https://github.com/qTox/qTox/blob/$_gitver/README.md +validpgpkeys=('DA262CC93C0E1E525AD21C8596775D454B8EBF44' # sudden6 + 'BA7883E22F9D35945BA3376053137C3033F09008' # Zetok Zalbavar + '1157616BBD860C539926F8139591A163FF9BE04C' # - antis81 + '31039166FA902CA50D05D6085AF9F2E29107C727' # - Diadlo + 'C7A2552D0B250F983827742C133203A3AC399151' # - initramfs + '2880C860D95C909D3DA45C687E086DD661263264' # - tux3 + ) +prepare() { + # apply PR https://github.com/qTox/qTox/issues/4053 + patch -p1 +# AUR Maintainer: Vlad M. +# Contributor: Håvard Pettersson +# Contributor: Kevin MacMartin + +pkgname=qtox +_pkgname=qTox +pkgver=1.7.1 +pkgrel=4 +_gitver='6f155d4db806a664d76457d42a20246ffbd5d1ac' +pkgdesc='Powerful Tox client written in C++/Qt that follows the Tox design guidelines' +arch=('i686' 'x86_64') +url='https://github.com/tux3/qTox' +license=('GPL3') +depends=('libxss' + 'openal' + 'gtk2' + 'ffmpeg' + 'qrencode' + 'qt5-svg' + 'sqlcipher' + 'toxcore') +makedepends=('qt5-tools' 'git') + +#source=("git+https://github.com/qTox/qTox.git#commit=$_gitver";) +source=("https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/v$pkgver.tar.lz"; + "https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/v$pkgver.tar.lz.asc"; + "pr4053.patch::https://patch-diff.githubusercontent.com/raw/qTox/qTox/pull/4053.diff";) +sha512sums=('89149d712f342ef09596d376c35b8c5573e21ce74f6edf906d6eeadb8dfe1a6b0f2945221bafb7d7509a9c857d928deed86c0ffb1e2071edd6f899e048ea7122' +'SKIP' + 'b36eb38c50ede1decde5eb17eab447a62dd1d71e52106f4e73c02abf2af67e308deddb9c70d46e41c51ce3aa6463d012cc19b3207e2885c16cae09cd36040bfe') + +# GPG key fingerprints taken from https://github.com/qTox/qTox/blob/$_gitver/README.md +validpgpkeys=('DA262CC93C0E1E525AD21C8596775D454B8EBF44' # sudden6 + 'BA7883E22F9D35945BA3376053137C3033F09008' # Zetok Zalbavar + '1157616BBD860C539926F8139591A163FF9BE04C' # - antis81 + '31039166FA902CA50D05D6085AF9F2E29107C727' # - Diadlo + 'C7A2552D0B250F983827742C133203A3AC399151' # - initramfs + '2880C860D95C909D3DA45C687E086DD661263264' # - tux3 + ) +prepare() { + # apply PR https://github.com/qTox/qTox/issues/4053 + patch -p1
[arch-commits] Commit in qtox/trunk (PKGBUILD)
Date: Wednesday, January 18, 2017 @ 06:56:26 Author: farseerfc Revision: 207849 upgpkg: qtox 1.7.1-4 qtox rebuild with toxcore 0.1.4 Modified: qtox/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-18 06:45:47 UTC (rev 207848) +++ PKGBUILD2017-01-18 06:56:26 UTC (rev 207849) @@ -6,7 +6,7 @@ pkgname=qtox _pkgname=qTox pkgver=1.7.1 -pkgrel=3 +pkgrel=4 _gitver='6f155d4db806a664d76457d42a20246ffbd5d1ac' pkgdesc='Powerful Tox client written in C++/Qt that follows the Tox design guidelines' arch=('i686' 'x86_64')
[arch-commits] Commit in python-openstackclient/repos/community-any (2 files)
Date: Wednesday, January 18, 2017 @ 06:45:47 Author: felixonmars Revision: 207848 archrelease: copy trunk to community-any Added: python-openstackclient/repos/community-any/PKGBUILD (from rev 207847, python-openstackclient/trunk/PKGBUILD) Deleted: python-openstackclient/repos/community-any/PKGBUILD --+ PKGBUILD | 130 ++--- 1 file changed, 65 insertions(+), 65 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-18 06:45:26 UTC (rev 207847) +++ PKGBUILD2017-01-18 06:45:47 UTC (rev 207848) @@ -1,65 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Daniel Wallace - -pkgbase=python-openstackclient -pkgname=(python-openstackclient python2-openstackclient) -pkgver=3.6.0 -pkgrel=2 -pkgdesc="OpenStack Command-line Client" -arch=('any') -url="http://docs.openstack.org/developer/python-openstackclient"; -license=('Apache') -makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 'python2-pbr' - 'python-babel' 'python2-babel' 'python-cliff' 'python2-cliff' - 'python-keystoneclient' 'python2-keystoneclient' 'python-keystoneauth1' - 'python2-keystoneauth1' 'python-osc-lib' 'python2-osc-lib' 'python-oslo-utils' - 'python2-oslo-utils' 'python-oslo-i18n' 'python2-oslo-i18n' 'python-openstacksdk' - 'python2-openstacksdk' 'python-glanceclient' 'python2-glanceclient' 'python-novaclient' - 'python2-novaclient' 'python-cinderclient' 'python2-cinderclient') -checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock' 'python2-requests-mock') -source=("git+https://git.openstack.org/openstack/python-openstackclient#tag=$pkgver";) -md5sums=('SKIP') - -prepare() { - cp -a python-openstackclient{,-py2} -} - -build() { - cd "$srcdir"/python-openstackclient - python setup.py build - - cd "$srcdir"/python-openstackclient-py2 - python2 setup.py build -} - -check() { - cd "$srcdir"/python-openstackclient - python setup.py testr || warning "Tests failed" - - cd "$srcdir"/python-openstackclient-py2 - PYTHON=python2 python2 setup.py testr -} - -package_python-openstackclient() { - depends=('python-six' 'python-pbr' 'python-babel' 'python-cliff' 'python-keystoneclient' - 'python-keystoneauth1' 'python-osc-lib' 'python-oslo-utils' 'python-oslo-i18n' - 'python-openstacksdk' 'python-glanceclient' 'python-novaclient' 'python-cinderclient') - - cd "$srcdir"/python-openstackclient - python setup.py install --root="$pkgdir/" --optimize=1 -} - -package_python2-openstackclient() { - depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-cliff' 'python2-keystoneclient' - 'python2-keystoneauth1' 'python-osc-lib' 'python2-oslo-utils' 'python2-oslo-i18n' - 'python2-openstacksdk' 'python2-glanceclient' 'python2-novaclient' - 'python2-cinderclient') - - cd "$srcdir"/python-openstackclient-py2 - python2 setup.py install --root="$pkgdir/" --optimize=1 - - mv "$pkgdir"/usr/bin/openstack{,2} -} - -# vim:set ts=2 sw=2 et: Copied: python-openstackclient/repos/community-any/PKGBUILD (from rev 207847, python-openstackclient/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-18 06:45:47 UTC (rev 207848) @@ -0,0 +1,65 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Daniel Wallace + +pkgbase=python-openstackclient +pkgname=(python-openstackclient python2-openstackclient) +pkgver=3.7.0 +pkgrel=1 +pkgdesc="OpenStack Command-line Client" +arch=('any') +url="http://docs.openstack.org/developer/python-openstackclient"; +license=('Apache') +makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 'python2-pbr' + 'python-babel' 'python2-babel' 'python-cliff' 'python2-cliff' + 'python-keystoneclient' 'python2-keystoneclient' 'python-keystoneauth1' + 'python2-keystoneauth1' 'python-osc-lib' 'python2-osc-lib' 'python-oslo-utils' + 'python2-oslo-utils' 'python-oslo-i18n' 'python2-oslo-i18n' 'python-openstacksdk' + 'python2-openstacksdk' 'python-glanceclient' 'python2-glanceclient' 'python-novaclient' + 'python2-novaclient' 'python-cinderclient' 'python2-cinderclient') +checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock' 'python2-requests-mock') +source=("git+https://git.openstack.org/openstack/python-openstackclient#tag=$pkgver";) +md5sums=('SKIP') + +prepare() { + cp -a python-openstackclient{,-py2} +} + +build() { + cd "$srcdir"/python-openstackclient + python setup.py build + + cd "$srcdir"/python-openstackclient-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/python-openstackclient + python setup.py testr || warning "Tests failed" + + cd "$srcdir"/python-openstackclient-py2 + PYTH
[arch-commits] Commit in python-openstackclient/trunk (PKGBUILD)
Date: Wednesday, January 18, 2017 @ 06:45:26 Author: felixonmars Revision: 207847 upgpkg: python-openstackclient 3.7.0-1 Modified: python-openstackclient/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-18 06:37:56 UTC (rev 207846) +++ PKGBUILD2017-01-18 06:45:26 UTC (rev 207847) @@ -4,8 +4,8 @@ pkgbase=python-openstackclient pkgname=(python-openstackclient python2-openstackclient) -pkgver=3.6.0 -pkgrel=2 +pkgver=3.7.0 +pkgrel=1 pkgdesc="OpenStack Command-line Client" arch=('any') url="http://docs.openstack.org/developer/python-openstackclient";
[arch-commits] Commit in deepin-notifications/repos (4 files)
Date: Wednesday, January 18, 2017 @ 06:37:56 Author: felixonmars Revision: 207846 archrelease: copy trunk to community-i686, community-x86_64 Added: deepin-notifications/repos/community-i686/PKGBUILD (from rev 207845, deepin-notifications/trunk/PKGBUILD) deepin-notifications/repos/community-x86_64/PKGBUILD (from rev 207845, deepin-notifications/trunk/PKGBUILD) Deleted: deepin-notifications/repos/community-i686/PKGBUILD deepin-notifications/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 58 community-i686/PKGBUILD | 29 -- community-x86_64/PKGBUILD | 29 -- 3 files changed, 58 insertions(+), 58 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2017-01-18 06:37:20 UTC (rev 207845) +++ community-i686/PKGBUILD 2017-01-18 06:37:56 UTC (rev 207846) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Josip Ponjavic -# Contributor: Xu Fasheng - -pkgname=deepin-notifications -pkgver=2.3.9 -pkgrel=1 -pkgdesc="System notifications for linuxdeepin desktop environment" -arch=('i686' 'x86_64') -url="https://gitcafe.com/Deepin/deepin-notifications"; -license=('GPL3') -depends=('deepin-tool-kit' 'gtk2' 'qt5-svg' 'qt5-declarative') -makedepends=('git') -provides=('notification-daemon') -groups=('deepin') -source=("git+https://github.com/linuxdeepin/deepin-notifications.git#tag=$pkgver";) -sha256sums=('SKIP') - -build() { - cd "${pkgname}" - qmake-qt5 PREFIX=/usr - make -} - -package() { - cd "${pkgname}" - make INSTALL_ROOT="${pkgdir}" install -} Copied: deepin-notifications/repos/community-i686/PKGBUILD (from rev 207845, deepin-notifications/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2017-01-18 06:37:56 UTC (rev 207846) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Josip Ponjavic +# Contributor: Xu Fasheng + +pkgname=deepin-notifications +pkgver=2.3.10 +pkgrel=1 +pkgdesc="System notifications for linuxdeepin desktop environment" +arch=('i686' 'x86_64') +url="https://gitcafe.com/Deepin/deepin-notifications"; +license=('GPL3') +depends=('deepin-tool-kit' 'gtk2' 'qt5-svg' 'qt5-declarative') +makedepends=('git') +provides=('notification-daemon') +groups=('deepin') +source=("git+https://github.com/linuxdeepin/deepin-notifications.git#tag=$pkgver";) +sha256sums=('SKIP') + +build() { + cd "${pkgname}" + qmake-qt5 PREFIX=/usr + make +} + +package() { + cd "${pkgname}" + make INSTALL_ROOT="${pkgdir}" install +} Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2017-01-18 06:37:20 UTC (rev 207845) +++ community-x86_64/PKGBUILD 2017-01-18 06:37:56 UTC (rev 207846) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Josip Ponjavic -# Contributor: Xu Fasheng - -pkgname=deepin-notifications -pkgver=2.3.9 -pkgrel=1 -pkgdesc="System notifications for linuxdeepin desktop environment" -arch=('i686' 'x86_64') -url="https://gitcafe.com/Deepin/deepin-notifications"; -license=('GPL3') -depends=('deepin-tool-kit' 'gtk2' 'qt5-svg' 'qt5-declarative') -makedepends=('git') -provides=('notification-daemon') -groups=('deepin') -source=("git+https://github.com/linuxdeepin/deepin-notifications.git#tag=$pkgver";) -sha256sums=('SKIP') - -build() { - cd "${pkgname}" - qmake-qt5 PREFIX=/usr - make -} - -package() { - cd "${pkgname}" - make INSTALL_ROOT="${pkgdir}" install -} Copied: deepin-notifications/repos/community-x86_64/PKGBUILD (from rev 207845, deepin-notifications/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2017-01-18 06:37:56 UTC (rev 207846) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Josip Ponjavic +# Contributor: Xu Fasheng + +pkgname=deepin-notifications +pkgver=2.3.10 +pkgrel=1 +pkgdesc="System notifications for linuxdeepin desktop environment" +arch=('i686' 'x86_64') +url="https://gitcafe.com/Deepin/deepin-notifications"; +license=('GPL3') +depends=('deepin-tool-kit' 'gtk2' 'qt5-svg' 'qt5-declarative') +makedepends=('git') +provides=('notification-daemon') +groups=('deepin') +source=("git+https://github.com/linuxdeepin/deepin-notifications.git#tag=$pkgver";) +sha256sums=('SKIP') + +build() { + cd "${pkgname}" + qmake-qt5 PREFIX=/usr + make +} + +package() { + cd "${pkgname}" + make INSTALL_ROOT="${pkgdir}" install +}
[arch-commits] Commit in deepin-notifications/trunk (PKGBUILD)
Date: Wednesday, January 18, 2017 @ 06:37:20 Author: felixonmars Revision: 207845 upgpkg: deepin-notifications 2.3.10-1 Modified: deepin-notifications/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-18 06:36:47 UTC (rev 207844) +++ PKGBUILD2017-01-18 06:37:20 UTC (rev 207845) @@ -4,7 +4,7 @@ # Contributor: Xu Fasheng pkgname=deepin-notifications -pkgver=2.3.9 +pkgver=2.3.10 pkgrel=1 pkgdesc="System notifications for linuxdeepin desktop environment" arch=('i686' 'x86_64')
[arch-commits] Commit in toxcore/repos (8 files)
Date: Wednesday, January 18, 2017 @ 06:36:47 Author: farseerfc Revision: 207844 archrelease: copy trunk to community-testing-i686, community-testing-x86_64 Added: toxcore/repos/community-testing-i686/ toxcore/repos/community-testing-i686/PKGBUILD (from rev 207843, toxcore/trunk/PKGBUILD) toxcore/repos/community-testing-i686/toxcore.conf (from rev 207843, toxcore/trunk/toxcore.conf) toxcore/repos/community-testing-i686/toxcore.install (from rev 207843, toxcore/trunk/toxcore.install) toxcore/repos/community-testing-x86_64/ toxcore/repos/community-testing-x86_64/PKGBUILD (from rev 207843, toxcore/trunk/PKGBUILD) toxcore/repos/community-testing-x86_64/toxcore.conf (from rev 207843, toxcore/trunk/toxcore.conf) toxcore/repos/community-testing-x86_64/toxcore.install (from rev 207843, toxcore/trunk/toxcore.install) --+ community-testing-i686/PKGBUILD | 68 + community-testing-i686/toxcore.conf |2 community-testing-i686/toxcore.install | 11 community-testing-x86_64/PKGBUILD| 68 + community-testing-x86_64/toxcore.conf|2 community-testing-x86_64/toxcore.install | 11 6 files changed, 162 insertions(+) Copied: toxcore/repos/community-testing-i686/PKGBUILD (from rev 207843, toxcore/trunk/PKGBUILD) === --- community-testing-i686/PKGBUILD (rev 0) +++ community-testing-i686/PKGBUILD 2017-01-18 06:36:47 UTC (rev 207844) @@ -0,0 +1,68 @@ +# Maintainer: Jiachen Yang +# $Id$ +# Maintainer: Felix Yan +# Contributor: Håvard Pettersson +# Contributor: naxuroqa +# Contributor: Boohbah +# Contributor: Kevin MacMartin + +pkgname=toxcore +_pkgname=c-toxcore +epoch=1 +pkgver=0.1.4 +pkgrel=1 +pkgdesc='Secure, configuration-free, P2P Skype replacement backend' +arch=('i686' 'x86_64') +url='https://tox.chat' +license=('GPL3') +depends=('systemd' 'libconfig' 'libsodium' 'libvpx' 'opus') +makedepends=('check') +conflicts=("tox") +provides=("tox") +backup=('etc/tox-bootstrapd.conf') +install=$pkgname.install +source=( + "${_pkgname}-v${pkgver}.tar.lz::https://github.com/TokTok/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-v${pkgver}.tar.lz"; + "${_pkgname}-v${pkgver}.tar.lz.asc::https://github.com/TokTok/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-v${pkgver}.tar.lz.asc"; +'toxcore.conf') +sha512sums=('8d094275cc56193d33f380eb3c8ba708ce7a94b01ba378d68707240efd1550dd0e4a0ffd0f97bedd96c5ce6145b27e14fdb5b570ed0e5247b01f5d4e15b4fe3a' +'SKIP' + '71885e69f7b84955f6bdbf27b9e8196349cdd254b02b510433851bd218374d9c47aa7d3946dcc6a5cff6c8e705bc98d8a09de27039f60b8b088784cf8fa9d719') +validpgpkeys=("15D3B9A6B3951DF9854FCA93E786548AE0A0B56B" # RobinLindén +# GPG key fingerprints taken from https://github.com/qTox/qTox/blob/$_gitver/README.md +'DA262CC93C0E1E525AD21C8596775D454B8EBF44' # sudden6 +'BA7883E22F9D35945BA3376053137C3033F09008' # Zetok Zalbavar +'1157616BBD860C539926F8139591A163FF9BE04C' # - antis81 +'31039166FA902CA50D05D6085AF9F2E29107C727' # - Diadlo +'C7A2552D0B250F983827742C133203A3AC399151' # - initramfs +'2880C860D95C909D3DA45C687E086DD661263264' # - tux3 +) + +prepare() { + #cd $_pkgname-$pkgver + sed -i "s|/usr/local|/usr|" other/bootstrap_daemon/tox-bootstrapd.service +} + +build() { + #cd $_pkgname-$pkgver + autoreconf -if + ./configure \ +--prefix=/usr \ +--enable-daemon \ +--disable-ntox \ +--enable-tests + make +} + +check() { + #cd $_pkgname-$pkgver + make check +} + +package() { + #cd $_pkgname-$pkgver + make DESTDIR="$pkgdir" install + install -Dm644 "$srcdir/toxcore.conf" "$pkgdir/usr/lib/sysusers.d/toxcore.conf" + install -Dm644 ./other/bootstrap_daemon/tox-bootstrapd.service "$pkgdir/usr/lib/systemd/system/tox-bootstrapd.service" + install -Dm644 ./other/bootstrap_daemon/tox-bootstrapd.conf "$pkgdir/etc/tox-bootstrapd.conf" +} Copied: toxcore/repos/community-testing-i686/toxcore.conf (from rev 207843, toxcore/trunk/toxcore.conf) === --- community-testing-i686/toxcore.conf (rev 0) +++ community-testing-i686/toxcore.conf 2017-01-18 06:36:47 UTC (rev 207844) @@ -0,0 +1,2 @@ +u tox-bootstrapd - "Tox bootstrapd" +g tox-bootstrapd - \ No newline at end of file Copied: toxcore/repos/community-testing-i686/toxcore.install (from rev 207843, toxcore/trunk/toxcore.install) === --- community-testing-i686/toxcore.install (rev 0) +++ community-testing-i686/toxcore.install 2017-01-18 06:36:47 UTC (rev 207844) @@ -0,0 +1,11 @@ +post_install() { + systemd-sysusers toxcore.conf + [[ -d var/lib/tox-bootstrapd ]] || install -dm 750 -o tox-bootstrapd
[arch-commits] Commit in toxcore/trunk (PKGBUILD toxcore.install)
Date: Wednesday, January 18, 2017 @ 06:35:32 Author: farseerfc Revision: 207843 upgpkg: toxcore 1:0.1.4-1 toxcore 0.1.4 and add back sysusers temporary Modified: toxcore/trunk/PKGBUILD toxcore/trunk/toxcore.install -+ PKGBUILD| 29 +++-- toxcore.install |2 ++ 2 files changed, 21 insertions(+), 10 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-18 06:34:15 UTC (rev 207842) +++ PKGBUILD2017-01-18 06:35:32 UTC (rev 207843) @@ -9,8 +9,8 @@ pkgname=toxcore _pkgname=c-toxcore epoch=1 -pkgver=0.1.3 -pkgrel=2 +pkgver=0.1.4 +pkgrel=1 pkgdesc='Secure, configuration-free, P2P Skype replacement backend' arch=('i686' 'x86_64') url='https://tox.chat' @@ -21,21 +21,30 @@ provides=("tox") backup=('etc/tox-bootstrapd.conf') install=$pkgname.install -source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/TokTok/${_pkgname}/archive/v${pkgver}.tar.gz"; - "${_pkgname}-${pkgver}.tar.gz.asc::https://github.com/TokTok/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-${pkgver}.tar.gz.robinlinden.asc"; +source=( + "${_pkgname}-v${pkgver}.tar.lz::https://github.com/TokTok/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-v${pkgver}.tar.lz"; + "${_pkgname}-v${pkgver}.tar.lz.asc::https://github.com/TokTok/${_pkgname}/releases/download/v${pkgver}/${_pkgname}-v${pkgver}.tar.lz.asc"; 'toxcore.conf') -sha512sums=('e736bf00713a5cad872e6a33bf9813529414e4f4b47f83519b5533608a945a8299b2b041253c9fdaa33730f2842d9e8a079a869277d8fbdfb47b2b6a56bc9696' +sha512sums=('8d094275cc56193d33f380eb3c8ba708ce7a94b01ba378d68707240efd1550dd0e4a0ffd0f97bedd96c5ce6145b27e14fdb5b570ed0e5247b01f5d4e15b4fe3a' 'SKIP' '71885e69f7b84955f6bdbf27b9e8196349cdd254b02b510433851bd218374d9c47aa7d3946dcc6a5cff6c8e705bc98d8a09de27039f60b8b088784cf8fa9d719') -validpgpkeys=("15D3B9A6B3951DF9854FCA93E786548AE0A0B56B") # RobinLindén +validpgpkeys=("15D3B9A6B3951DF9854FCA93E786548AE0A0B56B" # RobinLindén +# GPG key fingerprints taken from https://github.com/qTox/qTox/blob/$_gitver/README.md +'DA262CC93C0E1E525AD21C8596775D454B8EBF44' # sudden6 +'BA7883E22F9D35945BA3376053137C3033F09008' # Zetok Zalbavar +'1157616BBD860C539926F8139591A163FF9BE04C' # - antis81 +'31039166FA902CA50D05D6085AF9F2E29107C727' # - Diadlo +'C7A2552D0B250F983827742C133203A3AC399151' # - initramfs +'2880C860D95C909D3DA45C687E086DD661263264' # - tux3 +) prepare() { - cd $_pkgname-$pkgver + #cd $_pkgname-$pkgver sed -i "s|/usr/local|/usr|" other/bootstrap_daemon/tox-bootstrapd.service } build() { - cd $_pkgname-$pkgver + #cd $_pkgname-$pkgver autoreconf -if ./configure \ --prefix=/usr \ @@ -46,12 +55,12 @@ } check() { - cd $_pkgname-$pkgver + #cd $_pkgname-$pkgver make check } package() { - cd $_pkgname-$pkgver + #cd $_pkgname-$pkgver make DESTDIR="$pkgdir" install install -Dm644 "$srcdir/toxcore.conf" "$pkgdir/usr/lib/sysusers.d/toxcore.conf" install -Dm644 ./other/bootstrap_daemon/tox-bootstrapd.service "$pkgdir/usr/lib/systemd/system/tox-bootstrapd.service" Modified: toxcore.install === --- toxcore.install 2017-01-18 06:34:15 UTC (rev 207842) +++ toxcore.install 2017-01-18 06:35:32 UTC (rev 207843) @@ -1,9 +1,11 @@ post_install() { + systemd-sysusers toxcore.conf [[ -d var/lib/tox-bootstrapd ]] || install -dm 750 -o tox-bootstrapd -g tox-bootstrapd var/lib/tox-bootstrapd } post_upgrade() { (( $(vercmp $2 '3523-3') < 0 )) && ( +systemd-sysusers toxcore.conf [[ -d var/lib/tox-bootstrapd ]] || install -dm 750 -o tox-bootstrapd -g tox-bootstrapd var/lib/tox-bootstrapd ) || true }
[arch-commits] Commit in haskell-lifted-async/repos (4 files)
Date: Wednesday, January 18, 2017 @ 06:34:15 Author: felixonmars Revision: 207842 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-lifted-async/repos/community-staging-i686/ haskell-lifted-async/repos/community-staging-i686/PKGBUILD (from rev 207841, haskell-lifted-async/trunk/PKGBUILD) haskell-lifted-async/repos/community-staging-x86_64/ haskell-lifted-async/repos/community-staging-x86_64/PKGBUILD (from rev 207841, haskell-lifted-async/trunk/PKGBUILD) ---+ community-staging-i686/PKGBUILD | 42 community-staging-x86_64/PKGBUILD | 42 2 files changed, 84 insertions(+) Copied: haskell-lifted-async/repos/community-staging-i686/PKGBUILD (from rev 207841, haskell-lifted-async/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2017-01-18 06:34:15 UTC (rev 207842) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer: Felix Yan + +_hkgname=lifted-async +pkgname=haskell-lifted-async +pkgver=0.9.1 +pkgrel=1 +pkgdesc="Run lifted IO operations asynchronously and wait for their results" +url="https://github.com/maoe/lifted-async"; +license=('custom:BSD3') +arch=('i686' 'x86_64') +depends=('ghc=8.0.1' 'haskell-async' 'haskell-constraints' 'haskell-lifted-base' + 'haskell-transformers-base' 'haskell-transformers-base') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +md5sums=('15cb95897c95d7684cd8a0c576f6ac27') + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-fmonad-control-1 +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries" +ln -s "/usr/share/doc/${pkgname}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}" +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +} Copied: haskell-lifted-async/repos/community-staging-x86_64/PKGBUILD (from rev 207841, haskell-lifted-async/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2017-01-18 06:34:15 UTC (rev 207842) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer: Felix Yan + +_hkgname=lifted-async +pkgname=haskell-lifted-async +pkgver=0.9.1 +pkgrel=1 +pkgdesc="Run lifted IO operations asynchronously and wait for their results" +url="https://github.com/maoe/lifted-async"; +license=('custom:BSD3') +arch=('i686' 'x86_64') +depends=('ghc=8.0.1' 'haskell-async' 'haskell-constraints' 'haskell-lifted-base' + 'haskell-transformers-base' 'haskell-transformers-base') +source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) +md5sums=('15cb95897c95d7684cd8a0c576f6ac27') + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-fmonad-control-1 +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries" +ln -s "/usr/share/doc/${pkgname}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}" +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +r
[arch-commits] Commit in haskell-lifted-async/trunk (PKGBUILD)
Date: Wednesday, January 18, 2017 @ 06:33:40 Author: felixonmars Revision: 207838 upgpkg: haskell-lifted-async 0.9.1-1 rebuild with lifted-async,0.9.1 Modified: haskell-lifted-async/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-18 06:33:04 UTC (rev 207837) +++ PKGBUILD2017-01-18 06:33:40 UTC (rev 207838) @@ -3,8 +3,8 @@ _hkgname=lifted-async pkgname=haskell-lifted-async -pkgver=0.9.0 -pkgrel=3 +pkgver=0.9.1 +pkgrel=1 pkgdesc="Run lifted IO operations asynchronously and wait for their results" url="https://github.com/maoe/lifted-async"; license=('custom:BSD3') @@ -12,7 +12,7 @@ depends=('ghc=8.0.1' 'haskell-async' 'haskell-constraints' 'haskell-lifted-base' 'haskell-transformers-base' 'haskell-transformers-base') source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) -md5sums=('334e7056e62b87c4a22ed6d7a309d762') +md5sums=('15cb95897c95d7684cd8a0c576f6ac27') build() { cd "${srcdir}/${_hkgname}-${pkgver}"
[arch-commits] Commit in git-annex/repos (4 files)
Date: Wednesday, January 18, 2017 @ 06:33:04 Author: felixonmars Revision: 207837 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: git-annex/repos/community-staging-i686/ git-annex/repos/community-staging-i686/PKGBUILD (from rev 207836, git-annex/trunk/PKGBUILD) git-annex/repos/community-staging-x86_64/ git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 207836, git-annex/trunk/PKGBUILD) ---+ community-staging-i686/PKGBUILD | 54 community-staging-x86_64/PKGBUILD | 54 2 files changed, 108 insertions(+) Copied: git-annex/repos/community-staging-i686/PKGBUILD (from rev 207836, git-annex/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2017-01-18 06:33:04 UTC (rev 207837) @@ -0,0 +1,54 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +pkgname=git-annex +pkgver=6.20170101 +pkgrel=10 +pkgdesc="Manage files with git, without checking their contents into git" +url="http://git-annex.branchable.com/"; +license=("AGPL3") +arch=('i686' 'x86_64') +depends=('git' 'rsync' 'libxml2' 'gsasl' 'file') +makedepends=("ghc=8.0.1" "git" "haskell-aeson" "haskell-async" "haskell-aws" "haskell-blaze-builder" + "haskell-bloomfilter" "haskell-byteable" "haskell-case-insensitive" + "haskell-clientsession" "haskell-concurrent-output" "haskell-conduit" + "haskell-crypto-api" "haskell-cryptonite" "haskell-data-default" "haskell-dav" + "haskell-dbus" "haskell-disk-free-space" "haskell-dlist" "haskell-dns" + "haskell-edit-distance" "haskell-esqueleto" "haskell-exceptions" "haskell-fdo-notify" + "haskell-feed" "haskell-hinotify" "haskell-hslogger" "haskell-http-client" + "haskell-http-conduit" "haskell-http-types" "haskell-ifelse" "haskell-magic" + "haskell-missingh" "haskell-monad-control" "haskell-monad-logger" "haskell-mountpoints" + "haskell-mtl" "haskell-network" "haskell-network-info" "haskell-network-multicast" + "haskell-network-uri" "haskell-old-locale" "haskell-optparse-applicative" + "haskell-path-pieces" "haskell-persistent" "haskell-persistent-sqlite" + "haskell-persistent-template" "haskell-quickcheck" "haskell-random" + "haskell-regex-tdfa" "haskell-resourcet" "haskell-safesemaphore" "haskell-sandi" + "haskell-securemem" "haskell-shakespeare" "haskell-socks" "haskell-stm" + "haskell-stm-chans" "haskell-tasty" "haskell-tasty-hunit" "haskell-tasty-quickcheck" + "haskell-tasty-rerun" "haskell-text" "haskell-torrent" "haskell-unix-compat" + "haskell-unordered-containers" "haskell-utf8-string" "haskell-uuid" "haskell-wai" + "haskell-wai-extra" "haskell-warp" "haskell-warp-tls" "haskell-yesod" + "haskell-yesod-core" "haskell-yesod-default" "haskell-yesod-form" + "haskell-yesod-static") +source=("git+https://github.com/joeyh/git-annex.git#tag=$pkgver";) +sha256sums=('SKIP') + +build() { + cd git-annex + + runhaskell Setup configure -O --prefix=/usr --docdir="/usr/share/doc/$pkgname" \ +-fcryptonite -fnetwork-uri -fconcurrentoutput -ftorrentparser \ +-ftestsuite -f-androidsplice -f-android -fproduction -fpairing -fwebapp \ +-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime + runhaskell Setup build +} + +package() { + cd git-annex + runhaskell Setup copy --destdir="$pkgdir" + make DESTDIR="$pkgdir" install-misc + + rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT + rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc +} Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 207836, git-annex/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2017-01-18 06:33:04 UTC (rev 207837) @@ -0,0 +1,54 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +pkgname=git-annex +pkgver=6.20170101 +pkgrel=10 +pkgdesc="Manage files with git, without checking their contents into git" +url="http://git-annex.branchable.com/"; +license=("AGPL3") +arch=('i686' 'x86_64') +depends=('git' 'rsync' 'libxml2' 'gsasl' 'file') +makedepends=("ghc=8.0.1" "git" "haskell-aeson" "haskell-async" "haskell-aws" "haskell-blaze-builder" + "haskell-bloomfilter" "haskell-byteable" "haskell-case-insensitive" + "haskell-clientsession" "haskell-concurrent-output" "haskell-conduit" + "haskell-crypto-api" "haskell-cryptonite" "haskell-data-default" "haskell-dav" + "haskell-dbus" "haskell-disk-free-space" "haske
[arch-commits] Commit in git-annex/trunk (PKGBUILD)
Date: Wednesday, January 18, 2017 @ 06:32:27 Author: felixonmars Revision: 207836 upgpkg: git-annex 6.20170101-10 rebuild with xml-hamlet-0.4.1 Modified: git-annex/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-18 06:16:11 UTC (rev 207835) +++ PKGBUILD2017-01-18 06:32:27 UTC (rev 207836) @@ -4,7 +4,7 @@ pkgname=git-annex pkgver=6.20170101 -pkgrel=9 +pkgrel=10 pkgdesc="Manage files with git, without checking their contents into git" url="http://git-annex.branchable.com/"; license=("AGPL3")
[arch-commits] Commit in haskell-dav/repos (4 files)
Date: Wednesday, January 18, 2017 @ 06:16:11 Author: felixonmars Revision: 207835 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-dav/repos/community-staging-i686/ haskell-dav/repos/community-staging-i686/PKGBUILD (from rev 207834, haskell-dav/trunk/PKGBUILD) haskell-dav/repos/community-staging-x86_64/ haskell-dav/repos/community-staging-x86_64/PKGBUILD (from rev 207834, haskell-dav/trunk/PKGBUILD) ---+ community-staging-i686/PKGBUILD | 46 community-staging-x86_64/PKGBUILD | 46 2 files changed, 92 insertions(+) Copied: haskell-dav/repos/community-staging-i686/PKGBUILD (from rev 207834, haskell-dav/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2017-01-18 06:16:11 UTC (rev 207835) @@ -0,0 +1,46 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=DAV +pkgname=haskell-dav +pkgver=1.3.1 +pkgrel=43 +pkgdesc="RFC 4918 WebDAV support" +url="http://floss.scru.org/hDAV"; +license=("GPL3") +arch=('i686' 'x86_64') +depends=("ghc=8.0.1" "haskell-case-insensitive" "haskell-data-default" "haskell-exceptions" + "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" "haskell-http-types" + "haskell-lens" "haskell-mtl" "haskell-network" "haskell-network-uri" + "haskell-optparse-applicative" "haskell-transformers-base" "haskell-transformers-compat" + "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet") +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha256sums=('5c80faa58f8bbfb4bbdf7f3db6f23a3a4d26a199831ceb27dd5f69fef21bc009') + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-fnetwork-uri -f-mtl-compat +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries" +ln -s "/usr/share/doc/${pkgname}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}" +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +} Copied: haskell-dav/repos/community-staging-x86_64/PKGBUILD (from rev 207834, haskell-dav/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2017-01-18 06:16:11 UTC (rev 207835) @@ -0,0 +1,46 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=DAV +pkgname=haskell-dav +pkgver=1.3.1 +pkgrel=43 +pkgdesc="RFC 4918 WebDAV support" +url="http://floss.scru.org/hDAV"; +license=("GPL3") +arch=('i686' 'x86_64') +depends=("ghc=8.0.1" "haskell-case-insensitive" "haskell-data-default" "haskell-exceptions" + "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" "haskell-http-types" + "haskell-lens" "haskell-mtl" "haskell-network" "haskell-network-uri" + "haskell-optparse-applicative" "haskell-transformers-base" "haskell-transformers-compat" + "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet") +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha256sums=('5c80faa58f8bbfb4bbdf7f3db6f23a3a4d26a199831ceb27dd5f69fef21bc009') + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-fnetwork-uri -f-mtl-compat +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd "${srcdir
[arch-commits] Commit in haskell-dav/trunk (PKGBUILD)
Date: Wednesday, January 18, 2017 @ 06:15:48 Author: felixonmars Revision: 207834 upgpkg: haskell-dav 1.3.1-43 rebuild with xml-hamlet-0.4.1 Modified: haskell-dav/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-18 06:14:33 UTC (rev 207833) +++ PKGBUILD2017-01-18 06:15:48 UTC (rev 207834) @@ -5,7 +5,7 @@ _hkgname=DAV pkgname=haskell-dav pkgver=1.3.1 -pkgrel=42 +pkgrel=43 pkgdesc="RFC 4918 WebDAV support" url="http://floss.scru.org/hDAV"; license=("GPL3")
[arch-commits] Commit in hoogle/repos (4 files)
Date: Wednesday, January 18, 2017 @ 06:14:33 Author: felixonmars Revision: 207833 archrelease: copy trunk to community-i686, community-x86_64 Added: hoogle/repos/community-i686/PKGBUILD (from rev 207832, hoogle/trunk/PKGBUILD) hoogle/repos/community-x86_64/PKGBUILD (from rev 207832, hoogle/trunk/PKGBUILD) Deleted: hoogle/repos/community-i686/PKGBUILD hoogle/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 74 community-i686/PKGBUILD | 37 -- community-x86_64/PKGBUILD | 37 -- 3 files changed, 74 insertions(+), 74 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2017-01-18 06:14:05 UTC (rev 207832) +++ community-i686/PKGBUILD 2017-01-18 06:14:33 UTC (rev 207833) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Arch Haskell Team - -pkgname=hoogle -pkgver=5.0.8 -pkgrel=4 -pkgdesc="Haskell API Search" -url="http://www.haskell.org/hoogle/"; -license=("custom:BSD3") -arch=('i686' 'x86_64') -depends=('gmp' 'libffi' 'zlib') -makedepends=("ghc=8.0.1" "haskell-quickcheck" "haskell-aeson" "haskell-cmdargs" "haskell-conduit" - "haskell-conduit-extra" "haskell-connection" "haskell-extra" "haskell-src-exts" - "haskell-http-conduit" "haskell-http-types" "haskell-js-flot" "haskell-js-jquery" - "haskell-mmap" "haskell-network" "haskell-network-uri" "haskell-old-locale" - "haskell-process-extras" "haskell-resourcet" "haskell-tar" "haskell-text" - "haskell-uniplate" "haskell-utf8-string" "haskell-vector" "haskell-wai" - "haskell-wai-logger" "haskell-warp" "haskell-warp-tls" "haskell-zlib") -source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";) -sha256sums=('a5096f5a5786a654a7fd7eb8b019899056c70f51c3fe207df67ecd1c83400dd5') - -build() { -cd "${srcdir}/${pkgname}-${pkgver}" - -runhaskell Setup configure -O --prefix=/usr --docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \ --fnetwork-uri -runhaskell Setup build -} - -package() { -cd "${srcdir}/${pkgname}-${pkgver}" - -runhaskell Setup copy --destdir="${pkgdir}" -install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -rm -r "$pkgdir"/usr/{lib,share/doc} -} Copied: hoogle/repos/community-i686/PKGBUILD (from rev 207832, hoogle/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2017-01-18 06:14:33 UTC (rev 207833) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +pkgname=hoogle +pkgver=5.0.9 +pkgrel=1 +pkgdesc="Haskell API Search" +url="http://www.haskell.org/hoogle/"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=('gmp' 'libffi' 'zlib') +makedepends=("ghc=8.0.1" "haskell-quickcheck" "haskell-aeson" "haskell-cmdargs" "haskell-conduit" + "haskell-conduit-extra" "haskell-connection" "haskell-extra" "haskell-src-exts" + "haskell-http-conduit" "haskell-http-types" "haskell-js-flot" "haskell-js-jquery" + "haskell-mmap" "haskell-network" "haskell-network-uri" "haskell-old-locale" + "haskell-process-extras" "haskell-resourcet" "haskell-tar" "haskell-text" + "haskell-uniplate" "haskell-utf8-string" "haskell-vector" "haskell-wai" + "haskell-wai-logger" "haskell-warp" "haskell-warp-tls" "haskell-zlib") +source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";) +sha256sums=('93f584c5f7fc6a57ee50803ae8df5e6c41051a3177044b273cb7fbcd39d11874') + +build() { +cd "${srcdir}/${pkgname}-${pkgver}" + +runhaskell Setup configure -O --prefix=/usr --docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \ +-fnetwork-uri +runhaskell Setup build +} + +package() { +cd "${srcdir}/${pkgname}-${pkgver}" + +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +rm -r "$pkgdir"/usr/{lib,share/doc} +} Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2017-01-18 06:14:05 UTC (rev 207832) +++ community-x86_64/PKGBUILD 2017-01-18 06:14:33 UTC (rev 207833) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Arch Haskell Team - -pkgname=hoogle -pkgver=5.0.8 -pkgrel=4 -pkgdesc="Haskell API Search" -url="http://www.haskell.org/hoogle/"; -license=("custom:BSD3") -arch=('i686' 'x86_64') -depends=('gmp' 'libffi' 'zlib') -makedepends=("ghc=8.0.1" "haskell-quickcheck" "haskell-aeson" "haskell-cmdargs" "haskell-conduit" -
[arch-commits] Commit in hoogle/trunk (PKGBUILD)
Date: Wednesday, January 18, 2017 @ 06:14:05 Author: felixonmars Revision: 207832 upgpkg: hoogle 5.0.9-1 Modified: hoogle/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-18 06:12:43 UTC (rev 207831) +++ PKGBUILD2017-01-18 06:14:05 UTC (rev 207832) @@ -3,8 +3,8 @@ # Contributor: Arch Haskell Team pkgname=hoogle -pkgver=5.0.8 -pkgrel=4 +pkgver=5.0.9 +pkgrel=1 pkgdesc="Haskell API Search" url="http://www.haskell.org/hoogle/"; license=("custom:BSD3") @@ -18,7 +18,7 @@ "haskell-uniplate" "haskell-utf8-string" "haskell-vector" "haskell-wai" "haskell-wai-logger" "haskell-warp" "haskell-warp-tls" "haskell-zlib") source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";) -sha256sums=('a5096f5a5786a654a7fd7eb8b019899056c70f51c3fe207df67ecd1c83400dd5') +sha256sums=('93f584c5f7fc6a57ee50803ae8df5e6c41051a3177044b273cb7fbcd39d11874') build() { cd "${srcdir}/${pkgname}-${pkgver}"
[arch-commits] Commit in haskell-xml-hamlet/repos (4 files)
Date: Wednesday, January 18, 2017 @ 06:12:43 Author: felixonmars Revision: 207831 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-xml-hamlet/repos/community-staging-i686/ haskell-xml-hamlet/repos/community-staging-i686/PKGBUILD (from rev 207830, haskell-xml-hamlet/trunk/PKGBUILD) haskell-xml-hamlet/repos/community-staging-x86_64/ haskell-xml-hamlet/repos/community-staging-x86_64/PKGBUILD (from rev 207830, haskell-xml-hamlet/trunk/PKGBUILD) ---+ community-staging-i686/PKGBUILD | 42 community-staging-x86_64/PKGBUILD | 42 2 files changed, 84 insertions(+) Copied: haskell-xml-hamlet/repos/community-staging-i686/PKGBUILD (from rev 207830, haskell-xml-hamlet/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2017-01-18 06:12:43 UTC (rev 207831) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=xml-hamlet +pkgname=haskell-xml-hamlet +pkgver=0.4.1 +pkgrel=1 +pkgdesc="Hamlet-style quasiquoter for XML content" +url="http://www.yesodweb.com/"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=8.0.1" "haskell-parsec" "haskell-shakespeare" "haskell-text" + "haskell-xml-conduit") +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha256sums=('7df390f59599a0b16831c3f2cbb13ad0bebb92faa4a350fc6ae613bfba4ec2bb') + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries" +ln -s "/usr/share/doc/${pkgname}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}" +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +} Copied: haskell-xml-hamlet/repos/community-staging-x86_64/PKGBUILD (from rev 207830, haskell-xml-hamlet/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2017-01-18 06:12:43 UTC (rev 207831) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=xml-hamlet +pkgname=haskell-xml-hamlet +pkgver=0.4.1 +pkgrel=1 +pkgdesc="Hamlet-style quasiquoter for XML content" +url="http://www.yesodweb.com/"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=8.0.1" "haskell-parsec" "haskell-shakespeare" "haskell-text" + "haskell-xml-conduit") +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha256sums=('7df390f59599a0b16831c3f2cbb13ad0bebb92faa4a350fc6ae613bfba4ec2bb') + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries" +ln -s "/usr/share/doc/${pkgname}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}" +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in haskell-xml-hamlet/trunk (PKGBUILD)
Date: Wednesday, January 18, 2017 @ 06:12:19 Author: felixonmars Revision: 207830 upgpkg: haskell-xml-hamlet 0.4.1-1 rebuild with xml-hamlet-0.4.1 Modified: haskell-xml-hamlet/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-18 06:07:50 UTC (rev 207829) +++ PKGBUILD2017-01-18 06:12:19 UTC (rev 207830) @@ -4,8 +4,8 @@ _hkgname=xml-hamlet pkgname=haskell-xml-hamlet -pkgver=0.4.0.12 -pkgrel=17 +pkgver=0.4.1 +pkgrel=1 pkgdesc="Hamlet-style quasiquoter for XML content" url="http://www.yesodweb.com/"; license=("custom:BSD3") @@ -13,7 +13,7 @@ depends=("ghc=8.0.1" "haskell-parsec" "haskell-shakespeare" "haskell-text" "haskell-xml-conduit") source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) -sha256sums=('0ff43b778e9e497b468dd123ab81fa8cfc84dcd0a6c8ab06b8fc27cf3e0669d2') +sha256sums=('7df390f59599a0b16831c3f2cbb13ad0bebb92faa4a350fc6ae613bfba4ec2bb') build() { cd "${srcdir}/${_hkgname}-${pkgver}"
[arch-commits] Commit in (4 files)
Date: Wednesday, January 18, 2017 @ 06:07:14 Author: felixonmars Revision: 207828 addpkg: deepin-polkit-agent 0.0.2-1 Added: deepin-polkit-agent/ deepin-polkit-agent/repos/ deepin-polkit-agent/trunk/ deepin-polkit-agent/trunk/PKGBUILD --+ PKGBUILD | 28 1 file changed, 28 insertions(+) Added: deepin-polkit-agent/trunk/PKGBUILD === --- deepin-polkit-agent/trunk/PKGBUILD (rev 0) +++ deepin-polkit-agent/trunk/PKGBUILD 2017-01-18 06:07:14 UTC (rev 207828) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Josip Ponjavic +# Contributor: Xu Fasheng + +pkgname=deepin-polkit-agent +pkgver=0.0.2 +_commit=3b5a1892d5fc6288ef438052f08ba7a88c53f5b3 +pkgrel=1 +pkgdesc='Deepin Polkit Agent' +arch=('i686' 'x86_64') +url="https://github.com/linuxdeepin/dde-polkit-agent"; +license=('GPL3') +depends=('deepin-tool-kit' 'polkit-qt5') +makedepends=('qt5-tools' 'git') +source=("git+https://github.com/linuxdeepin/dde-polkit-agent.git#commit=$_commit";) +sha256sums=('SKIP') + +build() { + cd dde-polkit-agent + qmake-qt5 PREFIX=/usr + make +} + +package() { + cd dde-polkit-agent + make INSTALL_ROOT="$pkgdir" install +} Property changes on: deepin-polkit-agent/trunk/PKGBUILD ___ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
[arch-commits] Commit in deepin-polkit-agent/repos (4 files)
Date: Wednesday, January 18, 2017 @ 06:07:50 Author: felixonmars Revision: 207829 archrelease: copy trunk to community-i686, community-x86_64 Added: deepin-polkit-agent/repos/community-i686/ deepin-polkit-agent/repos/community-i686/PKGBUILD (from rev 207828, deepin-polkit-agent/trunk/PKGBUILD) deepin-polkit-agent/repos/community-x86_64/ deepin-polkit-agent/repos/community-x86_64/PKGBUILD (from rev 207828, deepin-polkit-agent/trunk/PKGBUILD) ---+ community-i686/PKGBUILD | 28 community-x86_64/PKGBUILD | 28 2 files changed, 56 insertions(+) Copied: deepin-polkit-agent/repos/community-i686/PKGBUILD (from rev 207828, deepin-polkit-agent/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2017-01-18 06:07:50 UTC (rev 207829) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Josip Ponjavic +# Contributor: Xu Fasheng + +pkgname=deepin-polkit-agent +pkgver=0.0.2 +_commit=3b5a1892d5fc6288ef438052f08ba7a88c53f5b3 +pkgrel=1 +pkgdesc='Deepin Polkit Agent' +arch=('i686' 'x86_64') +url="https://github.com/linuxdeepin/dde-polkit-agent"; +license=('GPL3') +depends=('deepin-tool-kit' 'polkit-qt5') +makedepends=('qt5-tools' 'git') +source=("git+https://github.com/linuxdeepin/dde-polkit-agent.git#commit=$_commit";) +sha256sums=('SKIP') + +build() { + cd dde-polkit-agent + qmake-qt5 PREFIX=/usr + make +} + +package() { + cd dde-polkit-agent + make INSTALL_ROOT="$pkgdir" install +} Copied: deepin-polkit-agent/repos/community-x86_64/PKGBUILD (from rev 207828, deepin-polkit-agent/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2017-01-18 06:07:50 UTC (rev 207829) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Josip Ponjavic +# Contributor: Xu Fasheng + +pkgname=deepin-polkit-agent +pkgver=0.0.2 +_commit=3b5a1892d5fc6288ef438052f08ba7a88c53f5b3 +pkgrel=1 +pkgdesc='Deepin Polkit Agent' +arch=('i686' 'x86_64') +url="https://github.com/linuxdeepin/dde-polkit-agent"; +license=('GPL3') +depends=('deepin-tool-kit' 'polkit-qt5') +makedepends=('qt5-tools' 'git') +source=("git+https://github.com/linuxdeepin/dde-polkit-agent.git#commit=$_commit";) +sha256sums=('SKIP') + +build() { + cd dde-polkit-agent + qmake-qt5 PREFIX=/usr + make +} + +package() { + cd dde-polkit-agent + make INSTALL_ROOT="$pkgdir" install +}
[arch-commits] Commit in docker-machine/repos (4 files)
Date: Wednesday, January 18, 2017 @ 05:57:11 Author: felixonmars Revision: 207827 archrelease: copy trunk to community-i686, community-x86_64 Added: docker-machine/repos/community-i686/PKGBUILD (from rev 207826, docker-machine/trunk/PKGBUILD) docker-machine/repos/community-x86_64/PKGBUILD (from rev 207826, docker-machine/trunk/PKGBUILD) Deleted: docker-machine/repos/community-i686/PKGBUILD docker-machine/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 76 community-i686/PKGBUILD | 38 -- community-x86_64/PKGBUILD | 38 -- 3 files changed, 76 insertions(+), 76 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2017-01-18 05:56:43 UTC (rev 207826) +++ community-i686/PKGBUILD 2017-01-18 05:57:11 UTC (rev 207827) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Dmitry Chusovitin - -pkgname=docker-machine -pkgver=0.8.2 -pkgrel=1 -pkgdesc='Machine management for a container-centric world' -arch=('i686' 'x86_64') -url='https://github.com/docker/machine' -license=('Apache') -depends=('gcc-libs') -optdepends=('net-tools: for VirtualBox support') -makedepends=('gcc-go' 'git') -optdepends=('net-tools: required for VirtualBox driver') -source=("git+https://github.com/docker/machine.git#tag=v$pkgver";) -sha256sums=('SKIP') - -prepare() { - export GOPATH="$srcdir/build" - mkdir -p build/src - mv machine/vendor/* build/src/ - mkdir -p build/src/github.com/docker - mv machine build/src/github.com/docker/machine -} - -build() { - cd build/src/github.com/docker/machine - go build -o bin/docker-machine -gccgoflags "$CFLAGS $LDFLAGS" cmd/machine.go -} - -package() { - cd build/src/github.com/docker/machine - install -Dm755 bin/docker-machine "$pkgdir"/usr/bin/docker-machine - install -Dm644 contrib/completion/bash/docker-machine.bash "$pkgdir"/usr/share/bash-completion/completions/docker-machine - install -Dm644 contrib/completion/zsh/_docker-machine "$pkgdir"/usr/share/zsh/site-functions/_docker-machine - install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -} Copied: docker-machine/repos/community-i686/PKGBUILD (from rev 207826, docker-machine/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2017-01-18 05:57:11 UTC (rev 207827) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Dmitry Chusovitin + +pkgname=docker-machine +pkgver=0.9.0 +pkgrel=1 +pkgdesc='Machine management for a container-centric world' +arch=('i686' 'x86_64') +url='https://github.com/docker/machine' +license=('Apache') +depends=('gcc-libs') +optdepends=('net-tools: for VirtualBox support') +makedepends=('gcc-go' 'git') +optdepends=('net-tools: required for VirtualBox driver') +source=("git+https://github.com/docker/machine.git#tag=v$pkgver";) +sha256sums=('SKIP') + +prepare() { + export GOPATH="$srcdir/build" + mkdir -p build/src + mv machine/vendor/* build/src/ + mkdir -p build/src/github.com/docker + mv machine build/src/github.com/docker/machine +} + +build() { + cd build/src/github.com/docker/machine + go build -o bin/docker-machine -gccgoflags "$CFLAGS $LDFLAGS" cmd/machine.go +} + +package() { + cd build/src/github.com/docker/machine + install -Dm755 bin/docker-machine "$pkgdir"/usr/bin/docker-machine + install -Dm644 contrib/completion/bash/docker-machine.bash "$pkgdir"/usr/share/bash-completion/completions/docker-machine + install -Dm644 contrib/completion/zsh/_docker-machine "$pkgdir"/usr/share/zsh/site-functions/_docker-machine + install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2017-01-18 05:56:43 UTC (rev 207826) +++ community-x86_64/PKGBUILD 2017-01-18 05:57:11 UTC (rev 207827) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Dmitry Chusovitin - -pkgname=docker-machine -pkgver=0.8.2 -pkgrel=1 -pkgdesc='Machine management for a container-centric world' -arch=('i686' 'x86_64') -url='https://github.com/docker/machine' -license=('Apache') -depends=('gcc-libs') -optdepends=('net-tools: for VirtualBox support') -makedepends=('gcc-go' 'git') -optdepends=('net-tools: required for VirtualBox driver') -source=("git+https://github.com/docker/machine.git#tag=v$pkgver";) -sha256sums=('SKIP') - -prepare() { - export GOPATH="$srcdir/build" - mkdir -p build/src - mv machine/vendor/* build/src/ - mkdir -p build/src/github.com/docker - mv machine build/src/github.com/docker/machine -} - -build() { - cd build/src/github.com/docker/machine - go build -o bin/docker-machine -gccgoflags "$CFLAGS $LDFLAGS" cmd/machine.go
[arch-commits] Commit in docker-machine/trunk (PKGBUILD)
Date: Wednesday, January 18, 2017 @ 05:56:43 Author: felixonmars Revision: 207826 upgpkg: docker-machine 0.9.0-1 Modified: docker-machine/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-18 01:52:44 UTC (rev 207825) +++ PKGBUILD2017-01-18 05:56:43 UTC (rev 207826) @@ -3,7 +3,7 @@ # Contributor: Dmitry Chusovitin pkgname=docker-machine -pkgver=0.8.2 +pkgver=0.9.0 pkgrel=1 pkgdesc='Machine management for a container-centric world' arch=('i686' 'x86_64')
[arch-commits] Commit in the_silver_searcher/repos (4 files)
Date: Tuesday, January 17, 2017 @ 23:19:07 Author: arodseth Revision: 207812 archrelease: copy trunk to community-x86_64, community-i686 Added: the_silver_searcher/repos/community-i686/PKGBUILD (from rev 207811, the_silver_searcher/trunk/PKGBUILD) the_silver_searcher/repos/community-x86_64/PKGBUILD (from rev 207811, the_silver_searcher/trunk/PKGBUILD) Deleted: the_silver_searcher/repos/community-i686/PKGBUILD the_silver_searcher/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 60 community-i686/PKGBUILD | 30 -- community-x86_64/PKGBUILD | 30 -- 3 files changed, 60 insertions(+), 60 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2017-01-17 23:18:54 UTC (rev 207811) +++ community-i686/PKGBUILD 2017-01-17 23:19:07 UTC (rev 207812) @@ -1,30 +0,0 @@ -# $Id$ -# Maintainer: Alexander F Rødseth -# Contributor: Jeff Horelick -# Contributor: skydrome - -pkgname=the_silver_searcher -pkgver=1.0.1 -pkgrel=1 -pkgdesc='Code searching tool similar to Ack, but faster' -arch=('x86_64' 'i686') -url='https://github.com/ggreer/the_silver_searcher' -license=('Apache') -depends=('pcre' 'xz') -makedepends=('git') -source=("git://github.com/ggreer/$pkgname.git#tag=$pkgver") -md5sums=('SKIP') - -prepare() { - sed -i 's:configure:configure --prefix=/usr:' "$pkgname/build.sh" -} - -build() { - "./$pkgname/build.sh" -} - -package() { - make -C "$pkgname" DESTDIR="$pkgdir" install -} - -# vim:set ts=2 sw=2 et: Copied: the_silver_searcher/repos/community-i686/PKGBUILD (from rev 207811, the_silver_searcher/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2017-01-17 23:19:07 UTC (rev 207812) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Alexander F Rødseth +# Contributor: Jeff Horelick +# Contributor: skydrome + +pkgname=the_silver_searcher +pkgver=1.0.2 +pkgrel=1 +pkgdesc='Code searching tool similar to Ack, but faster' +arch=('x86_64' 'i686') +url='https://github.com/ggreer/the_silver_searcher' +license=('Apache') +depends=('pcre' 'xz') +makedepends=('git') +source=("git://github.com/ggreer/$pkgname.git#tag=$pkgver") +md5sums=('SKIP') + +prepare() { + sed -i 's:configure:configure --prefix=/usr:' "$pkgname/build.sh" +} + +build() { + "./$pkgname/build.sh" +} + +package() { + make -C "$pkgname" DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2017-01-17 23:18:54 UTC (rev 207811) +++ community-x86_64/PKGBUILD 2017-01-17 23:19:07 UTC (rev 207812) @@ -1,30 +0,0 @@ -# $Id$ -# Maintainer: Alexander F Rødseth -# Contributor: Jeff Horelick -# Contributor: skydrome - -pkgname=the_silver_searcher -pkgver=1.0.1 -pkgrel=1 -pkgdesc='Code searching tool similar to Ack, but faster' -arch=('x86_64' 'i686') -url='https://github.com/ggreer/the_silver_searcher' -license=('Apache') -depends=('pcre' 'xz') -makedepends=('git') -source=("git://github.com/ggreer/$pkgname.git#tag=$pkgver") -md5sums=('SKIP') - -prepare() { - sed -i 's:configure:configure --prefix=/usr:' "$pkgname/build.sh" -} - -build() { - "./$pkgname/build.sh" -} - -package() { - make -C "$pkgname" DESTDIR="$pkgdir" install -} - -# vim:set ts=2 sw=2 et: Copied: the_silver_searcher/repos/community-x86_64/PKGBUILD (from rev 207811, the_silver_searcher/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2017-01-17 23:19:07 UTC (rev 207812) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Alexander F Rødseth +# Contributor: Jeff Horelick +# Contributor: skydrome + +pkgname=the_silver_searcher +pkgver=1.0.2 +pkgrel=1 +pkgdesc='Code searching tool similar to Ack, but faster' +arch=('x86_64' 'i686') +url='https://github.com/ggreer/the_silver_searcher' +license=('Apache') +depends=('pcre' 'xz') +makedepends=('git') +source=("git://github.com/ggreer/$pkgname.git#tag=$pkgver") +md5sums=('SKIP') + +prepare() { + sed -i 's:configure:configure --prefix=/usr:' "$pkgname/build.sh" +} + +build() { + "./$pkgname/build.sh" +} + +package() { + make -C "$pkgname" DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in the_silver_searcher/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 23:18:54 Author: arodseth Revision: 207811 upgpkg: the_silver_searcher 1.0.2-1 Modified: the_silver_searcher/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 22:33:34 UTC (rev 207810) +++ PKGBUILD2017-01-17 23:18:54 UTC (rev 207811) @@ -4,7 +4,7 @@ # Contributor: skydrome pkgname=the_silver_searcher -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc='Code searching tool similar to Ack, but faster' arch=('x86_64' 'i686')
[arch-commits] Commit in screen/repos (8 files)
Date: Tuesday, January 17, 2017 @ 23:15:18 Author: bisson Revision: 286905 archrelease: copy trunk to testing-i686, testing-x86_64 Added: screen/repos/testing-i686/ screen/repos/testing-i686/PKGBUILD (from rev 286904, screen/trunk/PKGBUILD) screen/repos/testing-i686/pam.d (from rev 286904, screen/trunk/pam.d) screen/repos/testing-i686/tmpfiles.d (from rev 286904, screen/trunk/tmpfiles.d) screen/repos/testing-x86_64/ screen/repos/testing-x86_64/PKGBUILD (from rev 286904, screen/trunk/PKGBUILD) screen/repos/testing-x86_64/pam.d (from rev 286904, screen/trunk/pam.d) screen/repos/testing-x86_64/tmpfiles.d (from rev 286904, screen/trunk/tmpfiles.d) ---+ testing-i686/PKGBUILD | 56 testing-i686/pam.d|1 testing-i686/tmpfiles.d |1 testing-x86_64/PKGBUILD | 56 testing-x86_64/pam.d |1 testing-x86_64/tmpfiles.d |1 6 files changed, 116 insertions(+) Copied: screen/repos/testing-i686/PKGBUILD (from rev 286904, screen/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2017-01-17 23:15:18 UTC (rev 286905) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Gaetan Bisson +# Contributor: Allan McRae +# Committer: dorphell + +pkgname=screen +pkgver=4.5.0 +pkgrel=1 +pkgdesc='Full-screen window manager that multiplexes a physical terminal' +url='https://www.gnu.org/software/screen/' +arch=('i686' 'x86_64') +license=('GPL') +depends=('ncurses' 'pam') +validpgpkeys=('2EE59A5D0C50167B5535BBF1B708A383C53EF3A4' + '71AA09D9E8870FDB0AA7B61E21F968DEF747ABD7') +source=("https://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"{,.sig} +'tmpfiles.d' +'pam.d') +sha1sums=('b329f538e7265405a5c14e13520e95ced9d2cb17' 'SKIP' + '76b9c70b77940eb1214fe65739f9f932dc57fb66' + '1ab4b512d2ac840d16db6986d7c98d7ce2f6383f') + +backup=('etc/screenrc' 'etc/pam.d/screen') +options=('!makeflags') + +_ptygroup=5 #the UID of our PTY/TTY group + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --enable-colors256 \ + --enable-pam \ + --enable-rxvt_osc \ + --enable-telnet \ + --with-pty-group=$_ptygroup \ + --with-socket-dir=/run/screens \ + --with-sys-screenrc=/etc/screenrc \ + + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + + install -Dm644 ../pam.d "${pkgdir}"/etc/pam.d/screen + install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/screen.conf + + install -Dm644 etc/completer.zsh "${pkgdir}"/usr/share/zsh/site-functions/_screen + install -Dm644 etc/etcscreenrc "${pkgdir}"/etc/screenrc + install -Dm644 etc/screenrc "${pkgdir}"/etc/skel/.screenrc +} Copied: screen/repos/testing-i686/pam.d (from rev 286904, screen/trunk/pam.d) === --- testing-i686/pam.d (rev 0) +++ testing-i686/pam.d 2017-01-17 23:15:18 UTC (rev 286905) @@ -0,0 +1 @@ +auth requiredpam_unix.so Copied: screen/repos/testing-i686/tmpfiles.d (from rev 286904, screen/trunk/tmpfiles.d) === --- testing-i686/tmpfiles.d (rev 0) +++ testing-i686/tmpfiles.d 2017-01-17 23:15:18 UTC (rev 286905) @@ -0,0 +1 @@ +d /run/screens 0755 root root - Copied: screen/repos/testing-x86_64/PKGBUILD (from rev 286904, screen/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2017-01-17 23:15:18 UTC (rev 286905) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Gaetan Bisson +# Contributor: Allan McRae +# Committer: dorphell + +pkgname=screen +pkgver=4.5.0 +pkgrel=1 +pkgdesc='Full-screen window manager that multiplexes a physical terminal' +url='https://www.gnu.org/software/screen/' +arch=('i686' 'x86_64') +license=('GPL') +depends=('ncurses' 'pam') +validpgpkeys=('2EE59A5D0C50167B5535BBF1B708A383C53EF3A4' + '71AA09D9E8870FDB0AA7B61E21F968DEF747ABD7') +source=("https://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"{,.sig} +'tmpfiles.d' +'pam.d') +sha1sums=('b329f538e7265405a5c14e13520e95ced9d2cb17' 'SKIP' + '76b9c70b77940eb1214fe65739f9f932dc57fb66' + '1ab4b512d2ac840d16db6986d7c98d7ce2f6383f') + +backup=('etc/screenrc' 'etc/pam.d/screen') +options=('!makeflags') + +_ptygroup=5 #the UID of our PTY/TTY group + +build() { + cd
[arch-commits] Commit in screen/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 23:14:36 Author: bisson Revision: 286904 upstream update Modified: screen/trunk/PKGBUILD --+ PKGBUILD |7 --- 1 file changed, 4 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 22:43:17 UTC (rev 286903) +++ PKGBUILD2017-01-17 23:14:36 UTC (rev 286904) @@ -4,7 +4,7 @@ # Committer: dorphell pkgname=screen -pkgver=4.4.0 +pkgver=4.5.0 pkgrel=1 pkgdesc='Full-screen window manager that multiplexes a physical terminal' url='https://www.gnu.org/software/screen/' @@ -11,11 +11,12 @@ arch=('i686' 'x86_64') license=('GPL') depends=('ncurses' 'pam') -validpgpkeys=('2EE59A5D0C50167B5535BBF1B708A383C53EF3A4') +validpgpkeys=('2EE59A5D0C50167B5535BBF1B708A383C53EF3A4' + '71AA09D9E8870FDB0AA7B61E21F968DEF747ABD7') source=("https://ftp.gnu.org/gnu/screen/screen-${pkgver}.tar.gz"{,.sig} 'tmpfiles.d' 'pam.d') -sha1sums=('f37f99ec57be1063c471c86511eab20a3afd39ff' 'SKIP' +sha1sums=('b329f538e7265405a5c14e13520e95ced9d2cb17' 'SKIP' '76b9c70b77940eb1214fe65739f9f932dc57fb66' '1ab4b512d2ac840d16db6986d7c98d7ce2f6383f')
[arch-commits] Commit in webkit2gtk/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 22:43:17 Author: heftig Revision: 286903 Verify signature Modified: webkit2gtk/trunk/PKGBUILD --+ PKGBUILD | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 22:39:43 UTC (rev 286902) +++ PKGBUILD2017-01-17 22:43:17 UTC (rev 286903) @@ -6,10 +6,10 @@ pkgrel=1 pkgdesc="GTK+ Web content engine library" arch=('i686' 'x86_64') -url="http://webkitgtk.org/"; +url="https://webkitgtk.org/"; license=('custom') depends=('libxt' 'libxslt' 'enchant' 'geoclue2' 'gst-plugins-base-libs' -'libsecret' 'libwebp' 'harfbuzz-icu' 'gtk3' 'libnotify' 'hyphen') + 'libsecret' 'libwebp' 'harfbuzz-icu' 'gtk3' 'libnotify' 'hyphen') makedepends=('gtk2' 'gperf' 'gobject-introspection' 'ruby' 'gtk-doc' 'cmake' 'python' 'python2') optdepends=('gtk2: Netscape plugin support' 'gst-plugins-base: free media decoding' @@ -16,11 +16,11 @@ 'gst-plugins-good: media decoding' 'gst-libav: nonfree media decoding') options=('!emptydirs') +source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc}) +sha256sums=('0bead450a4c92024f09008725bb3e8c3830a32c7e2983d566368c4fede9e106c' +'SKIP') +validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3') -# webkitgtk's signature scheme (sha1-file-as-pgp-message) is bananas and not supported -source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz) -sha1sums=('b4a8c0a0ca52cfff311cde56d0f029acc5eab036') - prepare() { mkdir build
[arch-commits] Commit in webkit2gtk/repos (4 files)
Date: Tuesday, January 17, 2017 @ 22:39:43 Author: heftig Revision: 286902 archrelease: copy trunk to extra-i686, extra-x86_64 Added: webkit2gtk/repos/extra-i686/PKGBUILD (from rev 286901, webkit2gtk/trunk/PKGBUILD) webkit2gtk/repos/extra-x86_64/PKGBUILD (from rev 286901, webkit2gtk/trunk/PKGBUILD) Deleted: webkit2gtk/repos/extra-i686/PKGBUILD webkit2gtk/repos/extra-x86_64/PKGBUILD ---+ /PKGBUILD | 106 extra-i686/PKGBUILD | 53 extra-x86_64/PKGBUILD | 53 3 files changed, 106 insertions(+), 106 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2017-01-17 22:35:34 UTC (rev 286901) +++ extra-i686/PKGBUILD 2017-01-17 22:39:43 UTC (rev 286902) @@ -1,53 +0,0 @@ -# $Id$ -# Maintainer: Eric Bélanger - -pkgname=webkit2gtk -pkgver=2.14.2 -pkgrel=2 -pkgdesc="GTK+ Web content engine library" -arch=('i686' 'x86_64') -url="http://webkitgtk.org/"; -license=('custom') -depends=('libxt' 'libxslt' 'enchant' 'geoclue2' 'gst-plugins-base-libs' -'libsecret' 'libwebp' 'harfbuzz-icu' 'gtk3' 'libnotify' 'hyphen') -makedepends=('gtk2' 'gperf' 'gobject-introspection' 'ruby' 'gtk-doc' 'cmake' 'python' 'python2') -optdepends=('gtk2: Netscape plugin support' -'gst-plugins-base: free media decoding' -'gst-plugins-good: media decoding' -'gst-libav: nonfree media decoding') -options=('!emptydirs') - -# webkitgtk's signature scheme (sha1-file-as-pgp-message) is bananas and not supported -source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz) -sha1sums=('857590669ed1c6278413dfbf0619e8473664537f') - -prepare() { - mkdir build - - cd webkitgtk-$pkgver - sed -i '1s/python$/&2/' Tools/gtk/generate-gtkdoc - rm -r Source/ThirdParty/gtest/ - rm -r Source/ThirdParty/qunit/ -} - -build() { - cd build - cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=Release \ --DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/usr \ --DLIB_INSTALL_DIR=/usr/lib -DLIBEXEC_INSTALL_DIR=/usr/lib/webkit2gtk-4.0 \ --DENABLE_GTKDOC=ON -DPYTHON_EXECUTABLE=/usr/bin/python2 ../webkitgtk-$pkgver - make -} - -package() { - cd build - make DESTDIR="$pkgdir" install - - install -m755 -d "$pkgdir/usr/share/licenses/webkit2gtk" - cd "$srcdir/webkitgtk-$pkgver/Source" - for f in $(find -name 'COPYING*' -or -name 'LICENSE*'); do -echo $f >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE" -cat $f >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE" -echo "" >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE" - done -} Copied: webkit2gtk/repos/extra-i686/PKGBUILD (from rev 286901, webkit2gtk/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2017-01-17 22:39:43 UTC (rev 286902) @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Eric Bélanger + +pkgname=webkit2gtk +pkgver=2.14.3 +pkgrel=1 +pkgdesc="GTK+ Web content engine library" +arch=('i686' 'x86_64') +url="http://webkitgtk.org/"; +license=('custom') +depends=('libxt' 'libxslt' 'enchant' 'geoclue2' 'gst-plugins-base-libs' +'libsecret' 'libwebp' 'harfbuzz-icu' 'gtk3' 'libnotify' 'hyphen') +makedepends=('gtk2' 'gperf' 'gobject-introspection' 'ruby' 'gtk-doc' 'cmake' 'python' 'python2') +optdepends=('gtk2: Netscape plugin support' +'gst-plugins-base: free media decoding' +'gst-plugins-good: media decoding' +'gst-libav: nonfree media decoding') +options=('!emptydirs') + +# webkitgtk's signature scheme (sha1-file-as-pgp-message) is bananas and not supported +source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz) +sha1sums=('b4a8c0a0ca52cfff311cde56d0f029acc5eab036') + +prepare() { + mkdir build + + cd webkitgtk-$pkgver + sed -i '1s/python$/&2/' Tools/gtk/generate-gtkdoc + rm -r Source/ThirdParty/gtest/ + rm -r Source/ThirdParty/qunit/ +} + +build() { + cd build + cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=Release \ +-DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/usr \ +-DLIB_INSTALL_DIR=/usr/lib -DLIBEXEC_INSTALL_DIR=/usr/lib/webkit2gtk-4.0 \ +-DENABLE_GTKDOC=ON -DPYTHON_EXECUTABLE=/usr/bin/python2 ../webkitgtk-$pkgver + make +} + +package() { + cd build + make DESTDIR="$pkgdir" install + + install -m755 -d "$pkgdir/usr/share/licenses/webkit2gtk" + cd "$srcdir/webkitgtk-$pkgver/Source" + for f in $(find -name 'COPYING*' -or -name 'LICENSE*'); do +echo $f >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE" +cat $f >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE" +echo "" >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE" + done +} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2017-01-17 22:35:34 UTC (rev 286901) +++
[arch-commits] Commit in webkit2gtk/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 22:35:34 Author: heftig Revision: 286901 2.14.3-1 Modified: webkit2gtk/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 22:16:13 UTC (rev 286900) +++ PKGBUILD2017-01-17 22:35:34 UTC (rev 286901) @@ -2,8 +2,8 @@ # Maintainer: Eric Bélanger pkgname=webkit2gtk -pkgver=2.14.2 -pkgrel=2 +pkgver=2.14.3 +pkgrel=1 pkgdesc="GTK+ Web content engine library" arch=('i686' 'x86_64') url="http://webkitgtk.org/"; @@ -19,7 +19,7 @@ # webkitgtk's signature scheme (sha1-file-as-pgp-message) is bananas and not supported source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz) -sha1sums=('857590669ed1c6278413dfbf0619e8473664537f') +sha1sums=('b4a8c0a0ca52cfff311cde56d0f029acc5eab036') prepare() { mkdir build
[arch-commits] Commit in allegro/repos (4 files)
Date: Tuesday, January 17, 2017 @ 22:33:34 Author: arodseth Revision: 207810 archrelease: copy trunk to community-x86_64, community-i686 Added: allegro/repos/community-i686/PKGBUILD (from rev 207809, allegro/trunk/PKGBUILD) allegro/repos/community-x86_64/PKGBUILD (from rev 207809, allegro/trunk/PKGBUILD) Deleted: allegro/repos/community-i686/PKGBUILD allegro/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 78 community-i686/PKGBUILD | 39 -- community-x86_64/PKGBUILD | 39 -- 3 files changed, 78 insertions(+), 78 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2017-01-17 22:33:20 UTC (rev 207809) +++ community-i686/PKGBUILD 2017-01-17 22:33:34 UTC (rev 207810) @@ -1,39 +0,0 @@ -# $Id$ -# Maintainer: Alexander F Rødseth -# Contributor: Ionut Biru -# Contributor: Tom Newsom -# Contributor: arjan - -pkgname=allegro -pkgver=5.2.1.1 -pkgrel=2 -pkgdesc='Portable library mainly aimed at video game and multimedia programming' -arch=('x86_64' 'i686') -url='http://liballeg.org/' -license=('custom') -makedepends=('cmake' 'mesa-libgl' 'glu' 'ninja' 'libtheora' 'git' 'opusfile') -depends=('jack' 'libxpm' 'libxxf86dga' 'libgl' 'physfs' 'gtk2' 'libpulse' 'libtheora' 'opusfile') -source=("git://github.com/liballeg/${pkgname}${pkgver%%.*}#tag=$pkgver") -md5sums=('SKIP') - -build() { - mkdir -p build; cd build - - cmake "../${pkgname}${pkgver%%.*}" \ --DCMAKE_BUILD_TYPE=Release \ --DCMAKE_INSTALL_PREFIX=/usr \ --DWANT_DOCS=OFF \ --DWANT_PHYSFS=ON \ --G Ninja - - ninja -} - -package() { - DESTDIR="$pkgdir" ninja -C build install - - install -Dm644 "${pkgname}${pkgver%%.*}/LICENSE.txt" \ -"$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -# vim:set ts=2 sw=2 et: Copied: allegro/repos/community-i686/PKGBUILD (from rev 207809, allegro/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2017-01-17 22:33:34 UTC (rev 207810) @@ -0,0 +1,39 @@ +# $Id$ +# Maintainer: Alexander F Rødseth +# Contributor: Ionut Biru +# Contributor: Tom Newsom +# Contributor: arjan + +pkgname=allegro +pkgver=5.2.2 +pkgrel=1 +pkgdesc='Portable library mainly aimed at video game and multimedia programming' +arch=('x86_64' 'i686') +url='http://liballeg.org/' +license=('custom') +makedepends=('cmake' 'mesa-libgl' 'glu' 'ninja' 'libtheora' 'git' 'opusfile') +depends=('jack' 'libxpm' 'libxxf86dga' 'libgl' 'physfs' 'gtk2' 'libpulse' 'libtheora' 'opusfile') +source=("git://github.com/liballeg/${pkgname}${pkgver%%.*}#branch=$pkgver") +md5sums=('SKIP') + +build() { + mkdir -p build + cd build + + cmake "../${pkgname}${pkgver%%.*}" \ +-DCMAKE_BUILD_TYPE=Release \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DWANT_DOCS=OFF \ +-DWANT_PHYSFS=ON \ +-G Ninja + ninja +} + +package() { + DESTDIR="$pkgdir" ninja -C build install + + install -Dm644 "${pkgname}${pkgver%%.*}/LICENSE.txt" \ +"$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +# vim:set ts=2 sw=2 et: Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2017-01-17 22:33:20 UTC (rev 207809) +++ community-x86_64/PKGBUILD 2017-01-17 22:33:34 UTC (rev 207810) @@ -1,39 +0,0 @@ -# $Id$ -# Maintainer: Alexander F Rødseth -# Contributor: Ionut Biru -# Contributor: Tom Newsom -# Contributor: arjan - -pkgname=allegro -pkgver=5.2.1.1 -pkgrel=2 -pkgdesc='Portable library mainly aimed at video game and multimedia programming' -arch=('x86_64' 'i686') -url='http://liballeg.org/' -license=('custom') -makedepends=('cmake' 'mesa-libgl' 'glu' 'ninja' 'libtheora' 'git' 'opusfile') -depends=('jack' 'libxpm' 'libxxf86dga' 'libgl' 'physfs' 'gtk2' 'libpulse' 'libtheora' 'opusfile') -source=("git://github.com/liballeg/${pkgname}${pkgver%%.*}#tag=$pkgver") -md5sums=('SKIP') - -build() { - mkdir -p build; cd build - - cmake "../${pkgname}${pkgver%%.*}" \ --DCMAKE_BUILD_TYPE=Release \ --DCMAKE_INSTALL_PREFIX=/usr \ --DWANT_DOCS=OFF \ --DWANT_PHYSFS=ON \ --G Ninja - - ninja -} - -package() { - DESTDIR="$pkgdir" ninja -C build install - - install -Dm644 "${pkgname}${pkgver%%.*}/LICENSE.txt" \ -"$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -# vim:set ts=2 sw=2 et: Copied: allegro/repos/community-x86_64/PKGBUILD (from rev 207809, allegro/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2017-01-17 22:33:34 UTC (rev 207810) @@ -0,0 +1,39 @@ +# $Id$ +# Maintainer: Alexander F Rødseth +# Contributor: Ionut Biru +# Contributor: Tom Newsom +# Contri
[arch-commits] Commit in allegro/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 22:33:20 Author: arodseth Revision: 207809 upgpkg: allegro 5.2.2-1 Modified: allegro/trunk/PKGBUILD --+ PKGBUILD | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:21:40 UTC (rev 207808) +++ PKGBUILD2017-01-17 22:33:20 UTC (rev 207809) @@ -5,8 +5,8 @@ # Contributor: arjan pkgname=allegro -pkgver=5.2.1.1 -pkgrel=2 +pkgver=5.2.2 +pkgrel=1 pkgdesc='Portable library mainly aimed at video game and multimedia programming' arch=('x86_64' 'i686') url='http://liballeg.org/' @@ -13,11 +13,12 @@ license=('custom') makedepends=('cmake' 'mesa-libgl' 'glu' 'ninja' 'libtheora' 'git' 'opusfile') depends=('jack' 'libxpm' 'libxxf86dga' 'libgl' 'physfs' 'gtk2' 'libpulse' 'libtheora' 'opusfile') -source=("git://github.com/liballeg/${pkgname}${pkgver%%.*}#tag=$pkgver") +source=("git://github.com/liballeg/${pkgname}${pkgver%%.*}#branch=$pkgver") md5sums=('SKIP') build() { - mkdir -p build; cd build + mkdir -p build + cd build cmake "../${pkgname}${pkgver%%.*}" \ -DCMAKE_BUILD_TYPE=Release \ @@ -25,7 +26,6 @@ -DWANT_DOCS=OFF \ -DWANT_PHYSFS=ON \ -G Ninja - ninja }
[arch-commits] Commit in unison/repos (10 files)
Date: Tuesday, January 17, 2017 @ 22:16:13 Author: bisson Revision: 286900 archrelease: copy trunk to extra-i686, extra-x86_64 Added: unison/repos/extra-i686/PKGBUILD (from rev 286899, unison/trunk/PKGBUILD) unison/repos/extra-i686/desktop (from rev 286899, unison/trunk/desktop) unison/repos/extra-i686/large.patch (from rev 286899, unison/trunk/large.patch) unison/repos/extra-x86_64/PKGBUILD (from rev 286899, unison/trunk/PKGBUILD) unison/repos/extra-x86_64/desktop (from rev 286899, unison/trunk/desktop) unison/repos/extra-x86_64/large.patch (from rev 286899, unison/trunk/large.patch) Deleted: unison/repos/extra-i686/PKGBUILD unison/repos/extra-i686/desktop unison/repos/extra-x86_64/PKGBUILD unison/repos/extra-x86_64/desktop --+ /PKGBUILD| 108 + /desktop | 22 + extra-i686/PKGBUILD | 47 --- extra-i686/desktop | 11 extra-i686/large.patch | 49 extra-x86_64/PKGBUILD| 47 --- extra-x86_64/desktop | 11 extra-x86_64/large.patch | 49 8 files changed, 228 insertions(+), 116 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2017-01-17 22:15:32 UTC (rev 286899) +++ extra-i686/PKGBUILD 2017-01-17 22:16:13 UTC (rev 286900) @@ -1,47 +0,0 @@ -# $Id$ -#Maintainer: Gaetan Bisson -#Contributor: Tobias Powalowski - -pkgname=unison -pkgver=2.48.4 -pkgrel=1 -pkgdesc='File-synchronization tool' -url='http://www.cis.upenn.edu/~bcpierce/unison/' -arch=('i686' 'x86_64') -license=('GPL2') -optdepends=('gtk2: for gtk2 support') -makedepends=('ocaml' 'lablgtk2' 'imagemagick') -source=("http://www.cis.upenn.edu/~bcpierce/unison/download/releases/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz"; -'desktop') -sha1sums=('baeff0e3a942c710ce551cca118b891feca137c5' - '9dad1737dd8d90e7ee2744a96cf71bd9f802a12a') - -options=('!makeflags') - -build() { - cd "${srcdir}/src" - CFLAGS="" - - for ui in text gtk2; do - make clean - make mkProjectInfo - make UISTYLE=$ui DEBUGGING=false THREADS=true - mv unison unison-$ui - done -} - -package() { - cd "${srcdir}/src" - - install -d "${pkgdir}"/usr/bin - install -m755 unison-* "${pkgdir}"/usr/bin - - install -d "${pkgdir}"/usr/share/{pixmaps,applications} - convert win32rc/U.ico[1] "${pkgdir}/usr/share/pixmaps/${pkgname}.png" - install -m644 ../desktop "${pkgdir}/usr/share/applications/${pkgname}.desktop" - - cd "${pkgdir}"/usr/bin - ln -s unison-text unison - ln -s unison-gtk2 unison-x11 - ln -s unison unison-${pkgver%.*} -} Copied: unison/repos/extra-i686/PKGBUILD (from rev 286899, unison/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2017-01-17 22:16:13 UTC (rev 286900) @@ -0,0 +1,54 @@ +# $Id$ +#Maintainer: Gaetan Bisson +#Contributor: Tobias Powalowski + +pkgname=unison +pkgver=2.48.4 +pkgrel=2 +pkgdesc='File-synchronization tool' +url='https://www.cis.upenn.edu/~bcpierce/unison/' +arch=('i686' 'x86_64') +license=('GPL2') +optdepends=('gtk2: for gtk2 support') +makedepends=('ocaml' 'lablgtk2' 'imagemagick') +source=("https://www.cis.upenn.edu/~bcpierce/unison/download/releases/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz"; +'large.patch' +'desktop') +sha1sums=('baeff0e3a942c710ce551cca118b891feca137c5' + '95433c2aa961cba19535fdf556e30bafa414a420' + '9dad1737dd8d90e7ee2744a96cf71bd9f802a12a') + +options=('!makeflags') + +prepare() { + cd "${srcdir}/src" + patch -p0 -i ../large.patch +} + +build() { + cd "${srcdir}/src" + CFLAGS="" + + for ui in text gtk2; do + make clean + make mkProjectInfo + make UISTYLE=$ui DEBUGGING=false THREADS=true + mv unison unison-$ui + done +} + +package() { + cd "${srcdir}/src" + + install -d "${pkgdir}"/usr/bin + install -m755 unison-* "${pkgdir}"/usr/bin + + install -d "${pkgdir}"/usr/share/{pixmaps,applications} + convert win32rc/U.ico[1] "${pkgdir}/usr/share/pixmaps/${pkgname}.png" + install -m644 ../desktop "${pkgdir}/usr/share/applications/${pkgname}.desktop" + + cd "${pkgdir}"/usr/bin + ln -s unison-text unison + ln -s unison-gtk2 unison-x11 + ln -s unison unison-${pkgver%.*} +} Deleted: extra-i686/desktop === --- extra-i686/desktop 2017-01-17 22:15:32 UTC (rev 286899) +++ extra-i686/desktop 2017-01-17 22:16:13 UTC (rev 286900) @@ -1,11 +0,0 @@ -[Desktop Entry] -En
[arch-commits] Commit in unison/trunk (PKGBUILD large.patch)
Date: Tuesday, January 17, 2017 @ 22:15:32 Author: bisson Revision: 286899 fix FS#52595 Added: unison/trunk/large.patch Modified: unison/trunk/PKGBUILD -+ PKGBUILD|9 - large.patch | 49 + 2 files changed, 57 insertions(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:30:14 UTC (rev 286898) +++ PKGBUILD2017-01-17 22:15:32 UTC (rev 286899) @@ -4,7 +4,7 @@ pkgname=unison pkgver=2.48.4 -pkgrel=1 +pkgrel=2 pkgdesc='File-synchronization tool' url='https://www.cis.upenn.edu/~bcpierce/unison/' arch=('i686' 'x86_64') @@ -12,12 +12,19 @@ optdepends=('gtk2: for gtk2 support') makedepends=('ocaml' 'lablgtk2' 'imagemagick') source=("https://www.cis.upenn.edu/~bcpierce/unison/download/releases/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz"; +'large.patch' 'desktop') sha1sums=('baeff0e3a942c710ce551cca118b891feca137c5' + '95433c2aa961cba19535fdf556e30bafa414a420' '9dad1737dd8d90e7ee2744a96cf71bd9f802a12a') options=('!makeflags') +prepare() { + cd "${srcdir}/src" + patch -p0 -i ../large.patch +} + build() { cd "${srcdir}/src" CFLAGS="" Added: large.patch === --- large.patch (rev 0) +++ large.patch 2017-01-17 22:15:32 UTC (rev 286899) @@ -0,0 +1,49 @@ +diff -Nrua /usr/ports/net/unison/patches/patch-bytearray_stubs_c ./patches/patch-bytearray_stubs_c +--- /usr/ports/net/unison/patches/patch-bytearray_stubs_c Thu Jan 1 01:00:00 1970 ./patches/patch-bytearray_stubs_c Tue Jan 17 08:44:39 2017 +@@ -0,0 +1,45 @@ ++Fix rare SIGSEGV when transferring large replicas. ++Fix a theoretical integer overflow. ++ ++Patches from here: ++https://caml.inria.fr/mantis/view.php?id=7431#c17026 ++and here: ++https://caml.inria.fr/mantis/view.php?id=7431#c16962 ++ ++Related issue reports: ++https://github.com/bcpierce00/unison/issues/48 ++https://caml.inria.fr/mantis/view.php?id=7431 ++https://bugzilla.redhat.com/show_bug.cgi?id=1401759 ++ ++Thanks to Alex Markley and OCaml developers ++--- bytearray_stubs.c.origTue Jan 17 08:41:00 2017 + bytearray_stubs.c Tue Jan 17 08:41:21 2017 ++@@ -5,6 +5,7 @@ ++ ++ #include "caml/intext.h" ++ #include "caml/bigarray.h" +++#include "caml/memory.h" ++ ++ CAMLprim value ml_marshal_to_bigarray(value v, value flags) ++ { ++@@ -21,15 +22,18 @@ CAMLprim value ml_marshal_to_bigarray(value v, value f ++ ++ CAMLprim value ml_unmarshal_from_bigarray(value b, value ofs) ++ { +++ CAMLparam1(b); /* Holds [b] live until unmarshalling completes. */ +++ value result; ++ struct caml_bigarray *b_arr = Bigarray_val(b); ++- return input_value_from_block (Array_data (b_arr, ofs), +++ result = input_value_from_block (Array_data (b_arr, ofs), ++ b_arr->dim[0] - Long_val(ofs)); +++ CAMLreturn(result); ++ } ++ ++ CAMLprim value ml_blit_string_to_bigarray ++ (value s, value i, value a, value j, value l) ++ { ++- char *src = String_val(s) + Int_val(i); +++ char *src = String_val(s) + Long_val(i); ++ char *dest = Array_data(Bigarray_val(a), j); ++ memcpy(dest, src, Long_val(l)); ++ return Val_unit;
[arch-commits] Commit in cups/repos (22 files)
Date: Tuesday, January 17, 2017 @ 21:30:14 Author: andyrtr Revision: 286898 archrelease: copy trunk to testing-i686, testing-x86_64 Added: cups/repos/testing-i686/ cups/repos/testing-i686/PKGBUILD (from rev 286897, cups/trunk/PKGBUILD) cups/repos/testing-i686/cups-1.6.0-fix-install-perms.patch (from rev 286897, cups/trunk/cups-1.6.0-fix-install-perms.patch) cups/repos/testing-i686/cups-1.6.2-statedir.patch (from rev 286897, cups/trunk/cups-1.6.2-statedir.patch) cups/repos/testing-i686/cups-no-export-ssllibs.patch (from rev 286897, cups/trunk/cups-no-export-ssllibs.patch) cups/repos/testing-i686/cups-no-gcrypt.patch (from rev 286897, cups/trunk/cups-no-gcrypt.patch) cups/repos/testing-i686/cups-no-gzip-man.patch (from rev 286897, cups/trunk/cups-no-gzip-man.patch) cups/repos/testing-i686/cups-systemd-socket.patch (from rev 286897, cups/trunk/cups-systemd-socket.patch) cups/repos/testing-i686/cups.install (from rev 286897, cups/trunk/cups.install) cups/repos/testing-i686/cups.logrotate (from rev 286897, cups/trunk/cups.logrotate) cups/repos/testing-i686/cups.pam (from rev 286897, cups/trunk/cups.pam) cups/repos/testing-x86_64/ cups/repos/testing-x86_64/PKGBUILD (from rev 286897, cups/trunk/PKGBUILD) cups/repos/testing-x86_64/cups-1.6.0-fix-install-perms.patch (from rev 286897, cups/trunk/cups-1.6.0-fix-install-perms.patch) cups/repos/testing-x86_64/cups-1.6.2-statedir.patch (from rev 286897, cups/trunk/cups-1.6.2-statedir.patch) cups/repos/testing-x86_64/cups-no-export-ssllibs.patch (from rev 286897, cups/trunk/cups-no-export-ssllibs.patch) cups/repos/testing-x86_64/cups-no-gcrypt.patch (from rev 286897, cups/trunk/cups-no-gcrypt.patch) cups/repos/testing-x86_64/cups-no-gzip-man.patch (from rev 286897, cups/trunk/cups-no-gzip-man.patch) cups/repos/testing-x86_64/cups-systemd-socket.patch (from rev 286897, cups/trunk/cups-systemd-socket.patch) cups/repos/testing-x86_64/cups.install (from rev 286897, cups/trunk/cups.install) cups/repos/testing-x86_64/cups.logrotate (from rev 286897, cups/trunk/cups.logrotate) cups/repos/testing-x86_64/cups.pam (from rev 286897, cups/trunk/cups.pam) ---+ testing-i686/PKGBUILD | 163 testing-i686/cups-1.6.0-fix-install-perms.patch | 25 +++ testing-i686/cups-1.6.2-statedir.patch| 12 + testing-i686/cups-no-export-ssllibs.patch | 12 + testing-i686/cups-no-gcrypt.patch | 11 + testing-i686/cups-no-gzip-man.patch | 18 ++ testing-i686/cups-systemd-socket.patch| 48 + testing-i686/cups.install |6 testing-i686/cups.logrotate |5 testing-i686/cups.pam |3 testing-x86_64/PKGBUILD | 163 testing-x86_64/cups-1.6.0-fix-install-perms.patch | 25 +++ testing-x86_64/cups-1.6.2-statedir.patch | 12 + testing-x86_64/cups-no-export-ssllibs.patch | 12 + testing-x86_64/cups-no-gcrypt.patch | 11 + testing-x86_64/cups-no-gzip-man.patch | 18 ++ testing-x86_64/cups-systemd-socket.patch | 48 + testing-x86_64/cups.install |6 testing-x86_64/cups.logrotate |5 testing-x86_64/cups.pam |3 20 files changed, 606 insertions(+) Copied: cups/repos/testing-i686/PKGBUILD (from rev 286897, cups/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2017-01-17 21:30:14 UTC (rev 286898) @@ -0,0 +1,163 @@ +# $Id$ +# Maintainer: Andreas Radke + +pkgbase="cups" +pkgname=('libcups' 'cups') +pkgver=2.2.2 +pkgrel=1 +arch=('i686' 'x86_64') +license=('GPL') +url="https://www.cups.org/"; +makedepends=('libtiff' 'libpng' 'acl' 'pam' 'xdg-utils' 'krb5' 'gnutls' + 'cups-filters' 'bc' 'colord' 'xinetd' 'gzip' 'autoconf' 'libusb' 'dbus' + 'avahi' 'hicolor-icon-theme' 'systemd' 'inetutils' 'libpaper' 'valgrind') +source=(https://github.com/apple/cups/releases/download/v${pkgver}/cups-${pkgver}-source.tar.gz{,.sig} +cups.logrotate cups.pam +# improve build and linking +cups-no-export-ssllibs.patch +cups-no-gcrypt.patch +cups-no-gzip-man.patch +cups-1.6.2-statedir.patch +cups-1.6.0-fix-install-perms.patch +# bugfixes +cups-systemd-socket.patch +) +sha256sums=('f589bb7d5d1dc3aa0915d7cf2b808571ef2e1530cd1a6ebe76ae8f9f4994e4f6' +'SKIP' +'d87fa0f0b5ec677aae34668f260333db17ce303aa1a752cba5f8e72623d9acf9' +'57dfd072fd7ef0018c6b0a798367aac1abb5979060ff3f9df22d1048bb71c0d5' +'
[arch-commits] Commit in cups/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:29:45 Author: andyrtr Revision: 286897 upgpkg: cups 2.2.2-1 upstream update 2.2.2 Modified: cups/trunk/PKGBUILD --+ PKGBUILD | 25 + 1 file changed, 13 insertions(+), 12 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:22:01 UTC (rev 286896) +++ PKGBUILD2017-01-17 21:29:45 UTC (rev 286897) @@ -3,15 +3,15 @@ pkgbase="cups" pkgname=('libcups' 'cups') -pkgver=2.2.1 +pkgver=2.2.2 pkgrel=1 arch=('i686' 'x86_64') license=('GPL') -url="http://www.cups.org/"; +url="https://www.cups.org/"; makedepends=('libtiff' 'libpng' 'acl' 'pam' 'xdg-utils' 'krb5' 'gnutls' 'cups-filters' 'bc' 'colord' 'xinetd' 'gzip' 'autoconf' 'libusb' 'dbus' 'avahi' 'hicolor-icon-theme' 'systemd' 'inetutils' 'libpaper' 'valgrind') -source=(https://github.com/apple/cups/releases/download/v${pkgver}/cups-${pkgver}-source.tar.gz +source=(https://github.com/apple/cups/releases/download/v${pkgver}/cups-${pkgver}-source.tar.gz{,.sig} cups.logrotate cups.pam # improve build and linking cups-no-export-ssllibs.patch @@ -22,15 +22,16 @@ # bugfixes cups-systemd-socket.patch ) -md5sums=('a94da2a1e9dbdccb4f3836a38a431931' - 'fc8286f185e2cc5f7e1f6843bf193e2b' - '96f82c38f3f540b53f3e5144900acf17' - '3ba9e3410df1dc3015463d615ef91b3b' - '1beb4896f217bc241bc08a422274ec0c' - '39dd3141991c3052b73f59ece70e1ea6' - '451609db34f95209d64c38474de27ce1' - '5117f65342fcc69c6a506529e4daca9e' - '53bb3c80ee6823d36f9ab499373edfc5') +sha256sums=('f589bb7d5d1dc3aa0915d7cf2b808571ef2e1530cd1a6ebe76ae8f9f4994e4f6' +'SKIP' +'d87fa0f0b5ec677aae34668f260333db17ce303aa1a752cba5f8e72623d9acf9' +'57dfd072fd7ef0018c6b0a798367aac1abb5979060ff3f9df22d1048bb71c0d5' +'ff3eb0782af0405f5dafe89e04b1b4ea7a49afc5496860d724343bd04f375832' +'1423673e16e374ed372c5b69aebc785b6674bf40601c74a5c08454f672ffa7f1' +'b8fc2e3bc603495f0278410350ea8f0161d9d83719feb64f573b63430cb4800b' +'23349c96f2f7aeb7d48e3bcd35a969f5d5ac8f55a032b0cfaa0a03d7e37ea9af' +'4a4a885bb2e111bd67bcb90a5780f33841b18bc02382317fb5e64c384aa0c4c8' +'cdad3c266cb2abb0f90af3113420fa47a09e3ed974a2ffa9fb6a642e11971d65') validpgpkeys=('3737FD0D0E63B30172440D2DDBA3A7AB08D76223') # CUPS.org (CUPS.org PGP key) prepare() {
[arch-commits] Commit in youtube-dl/repos/community-any (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:21:40 Author: jlichtblau Revision: 207808 archrelease: copy trunk to community-any Added: youtube-dl/repos/community-any/PKGBUILD (from rev 207807, youtube-dl/trunk/PKGBUILD) Deleted: youtube-dl/repos/community-any/PKGBUILD --+ PKGBUILD | 70 ++--- 1 file changed, 35 insertions(+), 35 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:21:17 UTC (rev 207807) +++ PKGBUILD2017-01-17 21:21:40 UTC (rev 207808) @@ -1,35 +0,0 @@ -# $Id$ -# Maintainer: Eric Bélanger -# Maintainer: Jaroslav Lichtblau - -pkgname=youtube-dl -pkgver=2017.01.14 -pkgrel=1 -pkgdesc="A small command-line program to download videos from YouTube.com and a few more sites" -arch=('any') -url="http://rg3.github.io/youtube-dl/"; -license=('custom') -depends=('python' 'python-setuptools') -optdepends=('ffmpeg: for video post-processing' -'rtmpdump: for rtmp streams support' -'atomicparsley: for embedding thumbnails into m4a files') -source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig}) -sha256sums=('76c8bd77db6c820bfa72f1e2a873101ca736fd1d9954ccebf349fa7caef99cca' -'SKIP') -validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18' # Philipp Hagemeister - 'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. - -prepare() { - cd ${pkgname} - sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py - sed -i 's|etc/fish/completions|share/fish/completions|' setup.py -} - -package() { - cd ${pkgname} - python setup.py install --root="${pkgdir}/" --optimize=1 - mv "${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \ - "${pkgdir}/usr/share/bash-completion/completions/youtube-dl" - install -Dm644 youtube-dl.zsh "${pkgdir}/usr/share/zsh/site-functions/_youtube-dl" - install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 207807, youtube-dl/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:21:40 UTC (rev 207808) @@ -0,0 +1,35 @@ +# $Id$ +# Maintainer: Eric Bélanger +# Maintainer: Jaroslav Lichtblau + +pkgname=youtube-dl +pkgver=2017.01.16 +pkgrel=1 +pkgdesc="A small command-line program to download videos from YouTube.com and a few more sites" +arch=('any') +url="http://rg3.github.io/youtube-dl/"; +license=('custom') +depends=('python' 'python-setuptools') +optdepends=('ffmpeg: for video post-processing' +'rtmpdump: for rtmp streams support' +'atomicparsley: for embedding thumbnails into m4a files') +source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig}) +sha256sums=('f97c552c5b560c8f4cf5ff8417f687e305fdc68f7b42f27a08dbc8c983da45f3' +'SKIP') +validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18' # Philipp Hagemeister + 'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. + +prepare() { + cd ${pkgname} + sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py + sed -i 's|etc/fish/completions|share/fish/completions|' setup.py +} + +package() { + cd ${pkgname} + python setup.py install --root="${pkgdir}/" --optimize=1 + mv "${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \ + "${pkgdir}/usr/share/bash-completion/completions/youtube-dl" + install -Dm644 youtube-dl.zsh "${pkgdir}/usr/share/zsh/site-functions/_youtube-dl" + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +}
[arch-commits] Commit in libixion/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:21:43 Author: andyrtr Revision: 286894 https sources / gpg signature fixes Modified: libixion/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:21:00 UTC (rev 286893) +++ PKGBUILD2017-01-17 21:21:43 UTC (rev 286894) @@ -11,7 +11,7 @@ license=('custom') depends=('boost-libs' 'python') makedepends=('boost' 'mdds') -source=("http://kohei.us/files/ixion/src/libixion-${pkgver}.tar.xz"; +source=("https://kohei.us/files/ixion/src/libixion-${pkgver}.tar.xz"; LICENSE) sha256sums=('c9e9f52580d618fa969fc0293f55af21a9c74bfb802e655c6bf239202f95bede' '2bfdca60adf803108d4c7f009000bea76ad00e621e163197881b0eaae91b530e')
[arch-commits] Commit in libixion/repos/extra-x86_64 (4 files)
Date: Tuesday, January 17, 2017 @ 21:22:01 Author: andyrtr Revision: 286896 archrelease: copy trunk to extra-x86_64 Added: libixion/repos/extra-x86_64/LICENSE (from rev 286895, libixion/trunk/LICENSE) libixion/repos/extra-x86_64/PKGBUILD (from rev 286895, libixion/trunk/PKGBUILD) Deleted: libixion/repos/extra-x86_64/LICENSE libixion/repos/extra-x86_64/PKGBUILD --+ LICENSE |6 ++-- PKGBUILD | 74 ++--- 2 files changed, 40 insertions(+), 40 deletions(-) Deleted: LICENSE === --- LICENSE 2017-01-17 21:21:53 UTC (rev 286895) +++ LICENSE 2017-01-17 21:22:01 UTC (rev 286896) @@ -1,3 +0,0 @@ -This Source Code Form is subject to the terms of the Mozilla Public -License, v. 2.0. If a copy of the MPL was not distributed with this -file, You can obtain one at http://mozilla.org/MPL/2.0/. Copied: libixion/repos/extra-x86_64/LICENSE (from rev 286895, libixion/trunk/LICENSE) === --- LICENSE (rev 0) +++ LICENSE 2017-01-17 21:22:01 UTC (rev 286896) @@ -0,0 +1,3 @@ +This Source Code Form is subject to the terms of the Mozilla Public +License, v. 2.0. If a copy of the MPL was not distributed with this +file, You can obtain one at http://mozilla.org/MPL/2.0/. Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:21:53 UTC (rev 286895) +++ PKGBUILD2017-01-17 21:22:01 UTC (rev 286896) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: AndyRTR -# Contributor: kusakata - -pkgname=libixion -pkgver=0.11.1 -pkgrel=5 -pkgdesc="A general purpose formula parser & interpreter" -arch=('i686' 'x86_64') -url="https://gitlab.com/ixion/ixion/blob/master/README.md"; -license=('custom') -depends=('boost-libs' 'python') -makedepends=('boost' 'mdds') -source=("http://kohei.us/files/ixion/src/libixion-${pkgver}.tar.xz"; -LICENSE) -sha256sums=('c9e9f52580d618fa969fc0293f55af21a9c74bfb802e655c6bf239202f95bede' -'2bfdca60adf803108d4c7f009000bea76ad00e621e163197881b0eaae91b530e') - -build() { - cd ${pkgname}-${pkgver} - ./configure --prefix=/usr \ ---disable-static - make -} - -check() { - cd ${pkgname}-${pkgver} - make -k check -} - -package() { - cd ${pkgname}-${pkgver} - make DESTDIR="${pkgdir}" install - # LICENSE file is missing in tarball - install -Dm644 $srcdir/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} - Copied: libixion/repos/extra-x86_64/PKGBUILD (from rev 286895, libixion/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:22:01 UTC (rev 286896) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: AndyRTR +# Contributor: kusakata + +pkgname=libixion +pkgver=0.11.1 +pkgrel=5 +pkgdesc="A general purpose formula parser & interpreter" +arch=('i686' 'x86_64') +url="https://gitlab.com/ixion/ixion/blob/master/README.md"; +license=('custom') +depends=('boost-libs' 'python') +makedepends=('boost' 'mdds') +source=("https://kohei.us/files/ixion/src/libixion-${pkgver}.tar.xz"; +LICENSE) +sha256sums=('c9e9f52580d618fa969fc0293f55af21a9c74bfb802e655c6bf239202f95bede' +'2bfdca60adf803108d4c7f009000bea76ad00e621e163197881b0eaae91b530e') + +build() { + cd ${pkgname}-${pkgver} + ./configure --prefix=/usr \ +--disable-static + make +} + +check() { + cd ${pkgname}-${pkgver} + make -k check +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install + # LICENSE file is missing in tarball + install -Dm644 $srcdir/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} +
[arch-commits] Commit in libixion/repos/extra-i686 (LICENSE LICENSE PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:21:53 Author: andyrtr Revision: 286895 archrelease: copy trunk to extra-i686 Added: libixion/repos/extra-i686/LICENSE (from rev 286894, libixion/trunk/LICENSE) libixion/repos/extra-i686/PKGBUILD (from rev 286894, libixion/trunk/PKGBUILD) Deleted: libixion/repos/extra-i686/LICENSE libixion/repos/extra-i686/PKGBUILD --+ LICENSE |6 ++-- PKGBUILD | 74 ++--- 2 files changed, 40 insertions(+), 40 deletions(-) Deleted: LICENSE === --- LICENSE 2017-01-17 21:21:43 UTC (rev 286894) +++ LICENSE 2017-01-17 21:21:53 UTC (rev 286895) @@ -1,3 +0,0 @@ -This Source Code Form is subject to the terms of the Mozilla Public -License, v. 2.0. If a copy of the MPL was not distributed with this -file, You can obtain one at http://mozilla.org/MPL/2.0/. Copied: libixion/repos/extra-i686/LICENSE (from rev 286894, libixion/trunk/LICENSE) === --- LICENSE (rev 0) +++ LICENSE 2017-01-17 21:21:53 UTC (rev 286895) @@ -0,0 +1,3 @@ +This Source Code Form is subject to the terms of the Mozilla Public +License, v. 2.0. If a copy of the MPL was not distributed with this +file, You can obtain one at http://mozilla.org/MPL/2.0/. Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:21:43 UTC (rev 286894) +++ PKGBUILD2017-01-17 21:21:53 UTC (rev 286895) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: AndyRTR -# Contributor: kusakata - -pkgname=libixion -pkgver=0.11.1 -pkgrel=5 -pkgdesc="A general purpose formula parser & interpreter" -arch=('i686' 'x86_64') -url="https://gitlab.com/ixion/ixion/blob/master/README.md"; -license=('custom') -depends=('boost-libs' 'python') -makedepends=('boost' 'mdds') -source=("http://kohei.us/files/ixion/src/libixion-${pkgver}.tar.xz"; -LICENSE) -sha256sums=('c9e9f52580d618fa969fc0293f55af21a9c74bfb802e655c6bf239202f95bede' -'2bfdca60adf803108d4c7f009000bea76ad00e621e163197881b0eaae91b530e') - -build() { - cd ${pkgname}-${pkgver} - ./configure --prefix=/usr \ ---disable-static - make -} - -check() { - cd ${pkgname}-${pkgver} - make -k check -} - -package() { - cd ${pkgname}-${pkgver} - make DESTDIR="${pkgdir}" install - # LICENSE file is missing in tarball - install -Dm644 $srcdir/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} - Copied: libixion/repos/extra-i686/PKGBUILD (from rev 286894, libixion/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:21:53 UTC (rev 286895) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: AndyRTR +# Contributor: kusakata + +pkgname=libixion +pkgver=0.11.1 +pkgrel=5 +pkgdesc="A general purpose formula parser & interpreter" +arch=('i686' 'x86_64') +url="https://gitlab.com/ixion/ixion/blob/master/README.md"; +license=('custom') +depends=('boost-libs' 'python') +makedepends=('boost' 'mdds') +source=("https://kohei.us/files/ixion/src/libixion-${pkgver}.tar.xz"; +LICENSE) +sha256sums=('c9e9f52580d618fa969fc0293f55af21a9c74bfb802e655c6bf239202f95bede' +'2bfdca60adf803108d4c7f009000bea76ad00e621e163197881b0eaae91b530e') + +build() { + cd ${pkgname}-${pkgver} + ./configure --prefix=/usr \ +--disable-static + make +} + +check() { + cd ${pkgname}-${pkgver} + make -k check +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install + # LICENSE file is missing in tarball + install -Dm644 $srcdir/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} +
[arch-commits] Commit in youtube-dl/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:21:17 Author: jlichtblau Revision: 207807 upgpkg: youtube-dl 2017.01.16-1 - new upstream release Modified: youtube-dl/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:20:44 UTC (rev 207806) +++ PKGBUILD2017-01-17 21:21:17 UTC (rev 207807) @@ -3,7 +3,7 @@ # Maintainer: Jaroslav Lichtblau pkgname=youtube-dl -pkgver=2017.01.14 +pkgver=2017.01.16 pkgrel=1 pkgdesc="A small command-line program to download videos from YouTube.com and a few more sites" arch=('any') @@ -14,7 +14,7 @@ 'rtmpdump: for rtmp streams support' 'atomicparsley: for embedding thumbnails into m4a files') source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig}) -sha256sums=('76c8bd77db6c820bfa72f1e2a873101ca736fd1d9954ccebf349fa7caef99cca' +sha256sums=('f97c552c5b560c8f4cf5ff8417f687e305fdc68f7b42f27a08dbc8c983da45f3' 'SKIP') validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18' # Philipp Hagemeister 'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
[arch-commits] Commit in liborcus/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:21:00 Author: andyrtr Revision: 286893 archrelease: copy trunk to extra-x86_64 Added: liborcus/repos/extra-x86_64/PKGBUILD (from rev 286892, liborcus/trunk/PKGBUILD) Deleted: liborcus/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 62 ++--- 1 file changed, 31 insertions(+), 31 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:20:46 UTC (rev 286892) +++ PKGBUILD2017-01-17 21:21:00 UTC (rev 286893) @@ -1,31 +0,0 @@ -# $Id$ -# Maintainer: AndyRTR -# Contributor: Thomas Arnhold - -pkgname=liborcus -pkgver=0.11.2 -pkgrel=5 -pkgdesc="File import filter library for spreadsheet documents." -arch=('i686' 'x86_64') -url="https://gitlab.com/orcus/orcus/blob/master/README.md"; -license=('MPL') -depends=('libixion') -makedepends=('boost' 'mdds') -source=(http://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz) -sha256sums=('6911dc65a4d8276e42d32764e9ebee920b325cf59cfa7070fc72744d43b259ad') - -build() { -cd ${pkgname}-${pkgver} -./configure --prefix=/usr -make -} - -check() { -cd ${pkgname}-${pkgver} -make check -} - -package() { -cd ${pkgname}-${pkgver} -make DESTDIR=$pkgdir install -} Copied: liborcus/repos/extra-x86_64/PKGBUILD (from rev 286892, liborcus/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:21:00 UTC (rev 286893) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: AndyRTR +# Contributor: Thomas Arnhold + +pkgname=liborcus +pkgver=0.11.2 +pkgrel=5 +pkgdesc="File import filter library for spreadsheet documents." +arch=('i686' 'x86_64') +url="https://gitlab.com/orcus/orcus/blob/master/README.md"; +license=('MPL') +depends=('libixion') +makedepends=('boost' 'mdds') +source=(https://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz) +sha256sums=('6911dc65a4d8276e42d32764e9ebee920b325cf59cfa7070fc72744d43b259ad') + +build() { +cd ${pkgname}-${pkgver} +./configure --prefix=/usr +make +} + +check() { +cd ${pkgname}-${pkgver} +make check +} + +package() { +cd ${pkgname}-${pkgver} +make DESTDIR=$pkgdir install +}
[arch-commits] Commit in liborcus/repos/extra-i686 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:20:46 Author: andyrtr Revision: 286892 archrelease: copy trunk to extra-i686 Added: liborcus/repos/extra-i686/PKGBUILD (from rev 286891, liborcus/trunk/PKGBUILD) Deleted: liborcus/repos/extra-i686/PKGBUILD --+ PKGBUILD | 62 ++--- 1 file changed, 31 insertions(+), 31 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:20:33 UTC (rev 286891) +++ PKGBUILD2017-01-17 21:20:46 UTC (rev 286892) @@ -1,31 +0,0 @@ -# $Id$ -# Maintainer: AndyRTR -# Contributor: Thomas Arnhold - -pkgname=liborcus -pkgver=0.11.2 -pkgrel=5 -pkgdesc="File import filter library for spreadsheet documents." -arch=('i686' 'x86_64') -url="https://gitlab.com/orcus/orcus/blob/master/README.md"; -license=('MPL') -depends=('libixion') -makedepends=('boost' 'mdds') -source=(http://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz) -sha256sums=('6911dc65a4d8276e42d32764e9ebee920b325cf59cfa7070fc72744d43b259ad') - -build() { -cd ${pkgname}-${pkgver} -./configure --prefix=/usr -make -} - -check() { -cd ${pkgname}-${pkgver} -make check -} - -package() { -cd ${pkgname}-${pkgver} -make DESTDIR=$pkgdir install -} Copied: liborcus/repos/extra-i686/PKGBUILD (from rev 286891, liborcus/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:20:46 UTC (rev 286892) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: AndyRTR +# Contributor: Thomas Arnhold + +pkgname=liborcus +pkgver=0.11.2 +pkgrel=5 +pkgdesc="File import filter library for spreadsheet documents." +arch=('i686' 'x86_64') +url="https://gitlab.com/orcus/orcus/blob/master/README.md"; +license=('MPL') +depends=('libixion') +makedepends=('boost' 'mdds') +source=(https://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz) +sha256sums=('6911dc65a4d8276e42d32764e9ebee920b325cf59cfa7070fc72744d43b259ad') + +build() { +cd ${pkgname}-${pkgver} +./configure --prefix=/usr +make +} + +check() { +cd ${pkgname}-${pkgver} +make check +} + +package() { +cd ${pkgname}-${pkgver} +make DESTDIR=$pkgdir install +}
[arch-commits] Commit in perl-exception-class/repos/community-any (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:20:44 Author: jlichtblau Revision: 207806 archrelease: copy trunk to community-any Added: perl-exception-class/repos/community-any/PKGBUILD (from rev 207805, perl-exception-class/trunk/PKGBUILD) Deleted: perl-exception-class/repos/community-any/PKGBUILD --+ PKGBUILD | 82 ++--- 1 file changed, 41 insertions(+), 41 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:20:15 UTC (rev 207805) +++ PKGBUILD2017-01-17 21:20:44 UTC (rev 207806) @@ -1,41 +0,0 @@ -# $Id$ -# Maintainer: Jaroslav Lichtblau -# Contributor: Maxwell Pray a.k.a. Synthead -# Contributor: Caleb Cushing - -pkgname=perl-exception-class -pkgver=1.40 -pkgrel=1 -pkgdesc='A module that allows you to declare real exception classes in Perl' -arch=('any') -url="https://metacpan.org/release/Exception-Class"; -license=('PerlArtistic' 'GPL') -depends=('perl>=5.8.1' 'perl-class-data-inheritable>=0.02' 'perl-devel-stacktrace>=2.00') -options=('!emptydirs') -source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Exception-Class-$pkgver.tar.gz) -sha256sums=('d1171f2d03a485e87eb561f34688991c17b939d2689bcda47f3f51b372669a1f') - -build() { - cd "${srcdir}"/Exception-Class-$pkgver - - export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps - unset PERL5LIB PERL_MM_OPT - perl Makefile.PL INSTALLDIRS=vendor - make -} - -check() { - cd "${srcdir}"/Exception-Class-$pkgver - - export PERL_MM_USE_DEFAULT=1 - unset PERL5LIB - make test -} - -package() { - cd "${srcdir}"/Exception-Class-$pkgver - - make install INSTALLDIRS=vendor DESTDIR="${pkgdir}" - - find "${pkgdir}" -name .packlist -o -name perllocal.pod -delete -} Copied: perl-exception-class/repos/community-any/PKGBUILD (from rev 207805, perl-exception-class/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:20:44 UTC (rev 207806) @@ -0,0 +1,41 @@ +# $Id$ +# Maintainer: Jaroslav Lichtblau +# Contributor: Maxwell Pray a.k.a. Synthead +# Contributor: Caleb Cushing + +pkgname=perl-exception-class +pkgver=1.42 +pkgrel=1 +pkgdesc='A module that allows you to declare real exception classes in Perl' +arch=('any') +url="https://metacpan.org/release/Exception-Class"; +license=('PerlArtistic' 'GPL') +depends=('perl>=5.8.1' 'perl-class-data-inheritable>=0.02' 'perl-devel-stacktrace>=2.00') +options=('!emptydirs') +source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Exception-Class-$pkgver.tar.gz) +sha256sums=('8bb4ee64d3770d6812bda36890ef5df418573287eb8eccbb106f04c981dea22b') + +build() { + cd "${srcdir}"/Exception-Class-$pkgver + + export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps + unset PERL5LIB PERL_MM_OPT + perl Makefile.PL INSTALLDIRS=vendor + make +} + +check() { + cd "${srcdir}"/Exception-Class-$pkgver + + export PERL_MM_USE_DEFAULT=1 + unset PERL5LIB + make test +} + +package() { + cd "${srcdir}"/Exception-Class-$pkgver + + make install INSTALLDIRS=vendor DESTDIR="${pkgdir}" + + find "${pkgdir}" -name .packlist -o -name perllocal.pod -delete +}
[arch-commits] Commit in liborcus/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:20:33 Author: andyrtr Revision: 286891 https sources / gpg signature fixes Modified: liborcus/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:18:34 UTC (rev 286890) +++ PKGBUILD2017-01-17 21:20:33 UTC (rev 286891) @@ -11,7 +11,7 @@ license=('MPL') depends=('libixion') makedepends=('boost' 'mdds') -source=(http://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz) +source=(https://kohei.us/files/orcus/src/${pkgname}-${pkgver}.tar.xz) sha256sums=('6911dc65a4d8276e42d32764e9ebee920b325cf59cfa7070fc72744d43b259ad') build() {
[arch-commits] Commit in perl-exception-class/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:20:15 Author: jlichtblau Revision: 207805 upgpkg: perl-exception-class 1.42-1 - new upstream release Modified: perl-exception-class/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:15:40 UTC (rev 207804) +++ PKGBUILD2017-01-17 21:20:15 UTC (rev 207805) @@ -4,7 +4,7 @@ # Contributor: Caleb Cushing pkgname=perl-exception-class -pkgver=1.40 +pkgver=1.42 pkgrel=1 pkgdesc='A module that allows you to declare real exception classes in Perl' arch=('any') @@ -13,7 +13,7 @@ depends=('perl>=5.8.1' 'perl-class-data-inheritable>=0.02' 'perl-devel-stacktrace>=2.00') options=('!emptydirs') source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Exception-Class-$pkgver.tar.gz) -sha256sums=('d1171f2d03a485e87eb561f34688991c17b939d2689bcda47f3f51b372669a1f') +sha256sums=('8bb4ee64d3770d6812bda36890ef5df418573287eb8eccbb106f04c981dea22b') build() { cd "${srcdir}"/Exception-Class-$pkgver
[arch-commits] Commit in libx11/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:18:34 Author: andyrtr Revision: 286890 archrelease: copy trunk to extra-x86_64 Added: libx11/repos/extra-x86_64/PKGBUILD (from rev 286889, libx11/trunk/PKGBUILD) Deleted: libx11/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 74 ++--- 1 file changed, 37 insertions(+), 37 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:18:25 UTC (rev 286889) +++ PKGBUILD2017-01-17 21:18:34 UTC (rev 286890) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Maintainer: Jan de Groot - -pkgname=libx11 -pkgver=1.6.4 -pkgrel=1 -pkgdesc="X11 client-side library" -arch=(i686 x86_64) -url="http://xorg.freedesktop.org/"; -depends=('libxcb' 'xproto' 'kbproto') -makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto') -license=('custom') -source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2{,.sig}) -sha256sums=('b7c748be3aa16ec2cbd81edc847e9b6ee03f88143ab270fb59f58a044d34e441' -'SKIP') -validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') -validpgpkeys+=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb - -build() { - cd "${srcdir}/libX11-${pkgver}" - ./configure --prefix=/usr --disable-static --disable-xf86bigfont - make -} - -check() { - cd "${srcdir}/libX11-${pkgver}" - make check -} - -package() { - cd "${srcdir}/libX11-${pkgver}" - make DESTDIR="${pkgdir}" install - - install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libx11/repos/extra-x86_64/PKGBUILD (from rev 286889, libx11/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:18:34 UTC (rev 286890) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Jan de Groot + +pkgname=libx11 +pkgver=1.6.4 +pkgrel=1 +pkgdesc="X11 client-side library" +arch=(i686 x86_64) +url="https://xorg.freedesktop.org/"; +depends=('libxcb' 'xproto' 'kbproto') +makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto') +license=('custom') +source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2{,.sig}) +sha256sums=('b7c748be3aa16ec2cbd81edc847e9b6ee03f88143ab270fb59f58a044d34e441' +'SKIP') +validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') +validpgpkeys+=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb + +build() { + cd "${srcdir}/libX11-${pkgver}" + ./configure --prefix=/usr --disable-static --disable-xf86bigfont + make +} + +check() { + cd "${srcdir}/libX11-${pkgver}" + make check +} + +package() { + cd "${srcdir}/libX11-${pkgver}" + make DESTDIR="${pkgdir}" install + + install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libx11/repos/extra-i686 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:18:25 Author: andyrtr Revision: 286889 archrelease: copy trunk to extra-i686 Added: libx11/repos/extra-i686/PKGBUILD (from rev 286888, libx11/trunk/PKGBUILD) Deleted: libx11/repos/extra-i686/PKGBUILD --+ PKGBUILD | 74 ++--- 1 file changed, 37 insertions(+), 37 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:18:15 UTC (rev 286888) +++ PKGBUILD2017-01-17 21:18:25 UTC (rev 286889) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Maintainer: Jan de Groot - -pkgname=libx11 -pkgver=1.6.4 -pkgrel=1 -pkgdesc="X11 client-side library" -arch=(i686 x86_64) -url="http://xorg.freedesktop.org/"; -depends=('libxcb' 'xproto' 'kbproto') -makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto') -license=('custom') -source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2{,.sig}) -sha256sums=('b7c748be3aa16ec2cbd81edc847e9b6ee03f88143ab270fb59f58a044d34e441' -'SKIP') -validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') -validpgpkeys+=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb - -build() { - cd "${srcdir}/libX11-${pkgver}" - ./configure --prefix=/usr --disable-static --disable-xf86bigfont - make -} - -check() { - cd "${srcdir}/libX11-${pkgver}" - make check -} - -package() { - cd "${srcdir}/libX11-${pkgver}" - make DESTDIR="${pkgdir}" install - - install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libx11/repos/extra-i686/PKGBUILD (from rev 286888, libx11/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:18:25 UTC (rev 286889) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Jan de Groot + +pkgname=libx11 +pkgver=1.6.4 +pkgrel=1 +pkgdesc="X11 client-side library" +arch=(i686 x86_64) +url="https://xorg.freedesktop.org/"; +depends=('libxcb' 'xproto' 'kbproto') +makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto') +license=('custom') +source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2{,.sig}) +sha256sums=('b7c748be3aa16ec2cbd81edc847e9b6ee03f88143ab270fb59f58a044d34e441' +'SKIP') +validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') +validpgpkeys+=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb + +build() { + cd "${srcdir}/libX11-${pkgver}" + ./configure --prefix=/usr --disable-static --disable-xf86bigfont + make +} + +check() { + cd "${srcdir}/libX11-${pkgver}" + make check +} + +package() { + cd "${srcdir}/libX11-${pkgver}" + make DESTDIR="${pkgdir}" install + + install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libx11/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:18:15 Author: andyrtr Revision: 286888 https sources / gpg signature fixes Modified: libx11/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:17:47 UTC (rev 286887) +++ PKGBUILD2017-01-17 21:18:15 UTC (rev 286888) @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="X11 client-side library" arch=(i686 x86_64) -url="http://xorg.freedesktop.org/"; +url="https://xorg.freedesktop.org/"; depends=('libxcb' 'xproto' 'kbproto') makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto') license=('custom')
[arch-commits] Commit in libxau/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:17:47 Author: andyrtr Revision: 286887 archrelease: copy trunk to extra-x86_64 Added: libxau/repos/extra-x86_64/PKGBUILD (from rev 286886, libxau/trunk/PKGBUILD) Deleted: libxau/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 58 +- 1 file changed, 29 insertions(+), 29 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:17:36 UTC (rev 286886) +++ PKGBUILD2017-01-17 21:17:47 UTC (rev 286887) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: AndyRTR -# Maintainer: Jan de Groot -# Contributor: Alexander Baldeck - -pkgname=libxau -pkgver=1.0.8 -pkgrel=2 -pkgdesc="X11 authorisation library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -depends=('glibc' 'xproto>=7.0.18') -makedepends=('pkgconfig') -license=('custom') -source=(${url}/releases/individual/lib/libXau-${pkgver}.tar.bz2) -sha256sums=('fdd477320aeb5cdd67272838722d6b7d544887dfe7de46e1e7cc0c27c2bea4f2') - -build() { - cd libXau-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc - make -} - -package() { - cd libXau-${pkgver} - make DESTDIR="${pkgdir}" install - - install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" -} Copied: libxau/repos/extra-x86_64/PKGBUILD (from rev 286886, libxau/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:17:47 UTC (rev 286887) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: AndyRTR +# Maintainer: Jan de Groot +# Contributor: Alexander Baldeck + +pkgname=libxau +pkgver=1.0.8 +pkgrel=2 +pkgdesc="X11 authorisation library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org/"; +depends=('glibc' 'xproto>=7.0.18') +makedepends=('pkgconfig') +license=('custom') +source=(${url}/releases/individual/lib/libXau-${pkgver}.tar.bz2) +sha256sums=('fdd477320aeb5cdd67272838722d6b7d544887dfe7de46e1e7cc0c27c2bea4f2') + +build() { + cd libXau-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc + make +} + +package() { + cd libXau-${pkgver} + make DESTDIR="${pkgdir}" install + + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" +}
[arch-commits] Commit in libxau/repos/extra-i686 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:17:36 Author: andyrtr Revision: 286886 archrelease: copy trunk to extra-i686 Added: libxau/repos/extra-i686/PKGBUILD (from rev 286885, libxau/trunk/PKGBUILD) Deleted: libxau/repos/extra-i686/PKGBUILD --+ PKGBUILD | 58 +- 1 file changed, 29 insertions(+), 29 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:17:19 UTC (rev 286885) +++ PKGBUILD2017-01-17 21:17:36 UTC (rev 286886) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: AndyRTR -# Maintainer: Jan de Groot -# Contributor: Alexander Baldeck - -pkgname=libxau -pkgver=1.0.8 -pkgrel=2 -pkgdesc="X11 authorisation library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -depends=('glibc' 'xproto>=7.0.18') -makedepends=('pkgconfig') -license=('custom') -source=(${url}/releases/individual/lib/libXau-${pkgver}.tar.bz2) -sha256sums=('fdd477320aeb5cdd67272838722d6b7d544887dfe7de46e1e7cc0c27c2bea4f2') - -build() { - cd libXau-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc - make -} - -package() { - cd libXau-${pkgver} - make DESTDIR="${pkgdir}" install - - install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" -} Copied: libxau/repos/extra-i686/PKGBUILD (from rev 286885, libxau/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:17:36 UTC (rev 286886) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: AndyRTR +# Maintainer: Jan de Groot +# Contributor: Alexander Baldeck + +pkgname=libxau +pkgver=1.0.8 +pkgrel=2 +pkgdesc="X11 authorisation library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org/"; +depends=('glibc' 'xproto>=7.0.18') +makedepends=('pkgconfig') +license=('custom') +source=(${url}/releases/individual/lib/libXau-${pkgver}.tar.bz2) +sha256sums=('fdd477320aeb5cdd67272838722d6b7d544887dfe7de46e1e7cc0c27c2bea4f2') + +build() { + cd libXau-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc + make +} + +package() { + cd libXau-${pkgver} + make DESTDIR="${pkgdir}" install + + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" +}
[arch-commits] Commit in libxau/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:17:19 Author: andyrtr Revision: 286885 https sources / gpg signature fixes Modified: libxau/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:12:31 UTC (rev 286884) +++ PKGBUILD2017-01-17 21:17:19 UTC (rev 286885) @@ -8,7 +8,7 @@ pkgrel=2 pkgdesc="X11 authorisation library" arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; +url="https://xorg.freedesktop.org/"; depends=('glibc' 'xproto>=7.0.18') makedepends=('pkgconfig') license=('custom')
[arch-commits] Commit in perl-devel-stacktrace/repos/community-any (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:15:40 Author: jlichtblau Revision: 207804 archrelease: copy trunk to community-any Added: perl-devel-stacktrace/repos/community-any/PKGBUILD (from rev 207803, perl-devel-stacktrace/trunk/PKGBUILD) Deleted: perl-devel-stacktrace/repos/community-any/PKGBUILD --+ PKGBUILD | 80 ++--- 1 file changed, 40 insertions(+), 40 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:15:13 UTC (rev 207803) +++ PKGBUILD2017-01-17 21:15:40 UTC (rev 207804) @@ -1,40 +0,0 @@ -# $Id$ -# Maintainer: Jaroslav Lichtblau -# Contributor: Moritz Bunkus - -pkgname=perl-devel-stacktrace -pkgver=2.01 -pkgrel=1 -pkgdesc='An object representing a stack trace' -arch=('any') -url="https://metacpan.org/release/Devel-StackTrace"; -license=('PerlArtistic' 'GPL') -depends=('perl>=5.6') -options=('!emptydirs') -source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Devel-StackTrace-$pkgver.tar.gz) -sha256sums=('055d35b5dbe62b88af7a15b347f7759cacb376dda345e0bd092a549384c30c13') - -build() { - cd "${srcdir}"/Devel-StackTrace-$pkgver - - export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps - unset PERL5LIB PERL_MM_OPT - perl Makefile.PL - make -} - -check() { - cd "${srcdir}"/Devel-StackTrace-$pkgver - - export PERL_MM_USE_DEFAULT=1 - unset PERL5LIB - make test -} - -package() { - cd "${srcdir}"/Devel-StackTrace-$pkgver - - make install INSTALLDIRS=vendor DESTDIR="${pkgdir}" - - find "${pkgdir}" -name .packlist -o -name perllocal.pod -delete -} Copied: perl-devel-stacktrace/repos/community-any/PKGBUILD (from rev 207803, perl-devel-stacktrace/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:15:40 UTC (rev 207804) @@ -0,0 +1,40 @@ +# $Id$ +# Maintainer: Jaroslav Lichtblau +# Contributor: Moritz Bunkus + +pkgname=perl-devel-stacktrace +pkgver=2.02 +pkgrel=1 +pkgdesc='An object representing a stack trace' +arch=('any') +url="https://metacpan.org/release/Devel-StackTrace"; +license=('PerlArtistic' 'GPL') +depends=('perl>=5.6') +options=('!emptydirs') +source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Devel-StackTrace-$pkgver.tar.gz) +sha256sums=('cbbd96db0ecf194ed140198090eaea0e327d9a378a4aa15f9a34b3138a91931f') + +build() { + cd "${srcdir}"/Devel-StackTrace-$pkgver + + export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps + unset PERL5LIB PERL_MM_OPT + perl Makefile.PL + make +} + +check() { + cd "${srcdir}"/Devel-StackTrace-$pkgver + + export PERL_MM_USE_DEFAULT=1 + unset PERL5LIB + make test +} + +package() { + cd "${srcdir}"/Devel-StackTrace-$pkgver + + make install INSTALLDIRS=vendor DESTDIR="${pkgdir}" + + find "${pkgdir}" -name .packlist -o -name perllocal.pod -delete +}
[arch-commits] Commit in perl-devel-stacktrace/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:15:13 Author: jlichtblau Revision: 207803 upgpkg: perl-devel-stacktrace 2.02-1 - new upstream release Modified: perl-devel-stacktrace/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:05:19 UTC (rev 207802) +++ PKGBUILD2017-01-17 21:15:13 UTC (rev 207803) @@ -3,7 +3,7 @@ # Contributor: Moritz Bunkus pkgname=perl-devel-stacktrace -pkgver=2.01 +pkgver=2.02 pkgrel=1 pkgdesc='An object representing a stack trace' arch=('any') @@ -12,7 +12,7 @@ depends=('perl>=5.6') options=('!emptydirs') source=(http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Devel-StackTrace-$pkgver.tar.gz) -sha256sums=('055d35b5dbe62b88af7a15b347f7759cacb376dda345e0bd092a549384c30c13') +sha256sums=('cbbd96db0ecf194ed140198090eaea0e327d9a378a4aa15f9a34b3138a91931f') build() { cd "${srcdir}"/Devel-StackTrace-$pkgver
[arch-commits] Commit in libxaw/repos/extra-i686 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:12:21 Author: andyrtr Revision: 286883 archrelease: copy trunk to extra-i686 Added: libxaw/repos/extra-i686/PKGBUILD (from rev 286882, libxaw/trunk/PKGBUILD) Deleted: libxaw/repos/extra-i686/PKGBUILD --+ PKGBUILD | 60 ++-- 1 file changed, 30 insertions(+), 30 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:12:12 UTC (rev 286882) +++ PKGBUILD2017-01-17 21:12:21 UTC (rev 286883) @@ -1,30 +0,0 @@ -# $Id$ -# Maintainer: Jan de Groot - -pkgname=libxaw -pkgver=1.0.13 -pkgrel=1 -pkgdesc="X11 Athena Widget library" -arch=('i686' 'x86_64') -license=('custom') -url="http://xorg.freedesktop.org/"; -depends=('libxmu' 'libxpm') -makedepends=('xorg-util-macros') -source=(${url}/releases/individual/lib/libXaw-${pkgver}.tar.bz2{,.sig}) -sha256sums=('8ef8067312571292ccc2bbe94c41109dcf022ea5a4ec71656a83d8cce9edb0cd' -'SKIP') -validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith - - -build() { - cd libXaw-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd libXaw-${pkgver} - make DESTDIR="${pkgdir}" install - - install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" -} Copied: libxaw/repos/extra-i686/PKGBUILD (from rev 286882, libxaw/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:12:21 UTC (rev 286883) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgname=libxaw +pkgver=1.0.13 +pkgrel=1 +pkgdesc="X11 Athena Widget library" +arch=('i686' 'x86_64') +license=('custom') +url="https://xorg.freedesktop.org/"; +depends=('libxmu' 'libxpm') +makedepends=('xorg-util-macros') +source=(${url}/releases/individual/lib/libXaw-${pkgver}.tar.bz2{,.sig}) +sha256sums=('8ef8067312571292ccc2bbe94c41109dcf022ea5a4ec71656a83d8cce9edb0cd' +'SKIP') +validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith + + +build() { + cd libXaw-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd libXaw-${pkgver} + make DESTDIR="${pkgdir}" install + + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" +}
[arch-commits] Commit in libxaw/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:12:31 Author: andyrtr Revision: 286884 archrelease: copy trunk to extra-x86_64 Added: libxaw/repos/extra-x86_64/PKGBUILD (from rev 286883, libxaw/trunk/PKGBUILD) Deleted: libxaw/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 60 ++-- 1 file changed, 30 insertions(+), 30 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:12:21 UTC (rev 286883) +++ PKGBUILD2017-01-17 21:12:31 UTC (rev 286884) @@ -1,30 +0,0 @@ -# $Id$ -# Maintainer: Jan de Groot - -pkgname=libxaw -pkgver=1.0.13 -pkgrel=1 -pkgdesc="X11 Athena Widget library" -arch=('i686' 'x86_64') -license=('custom') -url="http://xorg.freedesktop.org/"; -depends=('libxmu' 'libxpm') -makedepends=('xorg-util-macros') -source=(${url}/releases/individual/lib/libXaw-${pkgver}.tar.bz2{,.sig}) -sha256sums=('8ef8067312571292ccc2bbe94c41109dcf022ea5a4ec71656a83d8cce9edb0cd' -'SKIP') -validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith - - -build() { - cd libXaw-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd libXaw-${pkgver} - make DESTDIR="${pkgdir}" install - - install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" -} Copied: libxaw/repos/extra-x86_64/PKGBUILD (from rev 286883, libxaw/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:12:31 UTC (rev 286884) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgname=libxaw +pkgver=1.0.13 +pkgrel=1 +pkgdesc="X11 Athena Widget library" +arch=('i686' 'x86_64') +license=('custom') +url="https://xorg.freedesktop.org/"; +depends=('libxmu' 'libxpm') +makedepends=('xorg-util-macros') +source=(${url}/releases/individual/lib/libXaw-${pkgver}.tar.bz2{,.sig}) +sha256sums=('8ef8067312571292ccc2bbe94c41109dcf022ea5a4ec71656a83d8cce9edb0cd' +'SKIP') +validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith + + +build() { + cd libXaw-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd libXaw-${pkgver} + make DESTDIR="${pkgdir}" install + + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" +}
[arch-commits] Commit in libxaw/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:12:12 Author: andyrtr Revision: 286882 https sources / gpg signature fixes Modified: libxaw/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:11:52 UTC (rev 286881) +++ PKGBUILD2017-01-17 21:12:12 UTC (rev 286882) @@ -7,7 +7,7 @@ pkgdesc="X11 Athena Widget library" arch=('i686' 'x86_64') license=('custom') -url="http://xorg.freedesktop.org/"; +url="https://xorg.freedesktop.org/"; depends=('libxmu' 'libxpm') makedepends=('xorg-util-macros') source=(${url}/releases/individual/lib/libXaw-${pkgver}.tar.bz2{,.sig})
[arch-commits] Commit in libxcb/repos/extra-x86_64 (6 files)
Date: Tuesday, January 17, 2017 @ 21:11:52 Author: andyrtr Revision: 286881 archrelease: copy trunk to extra-x86_64 Added: libxcb/repos/extra-x86_64/PKGBUILD (from rev 286880, libxcb/trunk/PKGBUILD) libxcb/repos/extra-x86_64/libxcb-1.1-no-pthread-stubs.patch (from rev 286880, libxcb/trunk/libxcb-1.1-no-pthread-stubs.patch) libxcb/repos/extra-x86_64/python-35x-fixes.patch (from rev 286880, libxcb/trunk/python-35x-fixes.patch) Deleted: libxcb/repos/extra-x86_64/PKGBUILD libxcb/repos/extra-x86_64/libxcb-1.1-no-pthread-stubs.patch libxcb/repos/extra-x86_64/python-35x-fixes.patch ---+ PKGBUILD | 96 ++-- libxcb-1.1-no-pthread-stubs.patch | 22 python-35x-fixes.patch| 84 +++ 3 files changed, 101 insertions(+), 101 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:11:41 UTC (rev 286880) +++ PKGBUILD2017-01-17 21:11:52 UTC (rev 286881) @@ -1,48 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Maintainer: Jan de Groot -# Contributor: Alexander Baldeck - -pkgname=libxcb -pkgver=1.12 -pkgrel=1 -pkgdesc="X11 client-side library" -arch=('i686' 'x86_64') -url="http://xcb.freedesktop.org/"; -depends=('xcb-proto>=1.12' 'libxdmcp' 'libxau') -makedepends=('libxslt' 'python' 'xorg-util-macros') -license=('custom') -source=($url/dist/$pkgname-$pkgver.tar.bz2 -libxcb-1.1-no-pthread-stubs.patch -python-35x-fixes.patch) -sha256sums=('4adfb1b7c67e99bc9c2ccb110b2f175686576d2f792c8a71b9c8b19014057b5b' -'37debaf892235a516a50a4975e6229538d3b4696b4571a8dea05eed774004aff' -'e66140ac2270b47e940db82975e2d28d3536ca1bd0eae63bce3b900ed81fa517') - -prepare() { - cd "$pkgname-$pkgver" - patch -Np1 -i ../libxcb-1.1-no-pthread-stubs.patch - patch -Np1 -i ../python-35x-fixes.patch - autoreconf -vfi -} - -build() { - cd "$pkgname-$pkgver" - ./configure --prefix=/usr \ ---enable-xinput \ ---enable-xkb \ ---disable-static - make -j1 -} - -check() { - cd $pkgname-$pkgver - make -k check -} - -package() { - cd "$pkgname-$pkgver" - make DESTDIR="$pkgdir" install - install -m755 -d "$pkgdir/usr/share/licenses/$pkgname" - install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname" -} Copied: libxcb/repos/extra-x86_64/PKGBUILD (from rev 286880, libxcb/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:11:52 UTC (rev 286881) @@ -0,0 +1,48 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Jan de Groot +# Contributor: Alexander Baldeck + +pkgname=libxcb +pkgver=1.12 +pkgrel=1 +pkgdesc="X11 client-side library" +arch=('i686' 'x86_64') +url="https://xcb.freedesktop.org/"; +depends=('xcb-proto>=1.12' 'libxdmcp' 'libxau') +makedepends=('libxslt' 'python' 'xorg-util-macros') +license=('custom') +source=($url/dist/$pkgname-$pkgver.tar.bz2 +libxcb-1.1-no-pthread-stubs.patch +python-35x-fixes.patch) +sha256sums=('4adfb1b7c67e99bc9c2ccb110b2f175686576d2f792c8a71b9c8b19014057b5b' +'37debaf892235a516a50a4975e6229538d3b4696b4571a8dea05eed774004aff' +'e66140ac2270b47e940db82975e2d28d3536ca1bd0eae63bce3b900ed81fa517') + +prepare() { + cd "$pkgname-$pkgver" + patch -Np1 -i ../libxcb-1.1-no-pthread-stubs.patch + patch -Np1 -i ../python-35x-fixes.patch + autoreconf -vfi +} + +build() { + cd "$pkgname-$pkgver" + ./configure --prefix=/usr \ +--enable-xinput \ +--enable-xkb \ +--disable-static + make -j1 +} + +check() { + cd $pkgname-$pkgver + make -k check +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir" install + install -m755 -d "$pkgdir/usr/share/licenses/$pkgname" + install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname" +} Deleted: libxcb-1.1-no-pthread-stubs.patch === --- libxcb-1.1-no-pthread-stubs.patch 2017-01-17 21:11:41 UTC (rev 286880) +++ libxcb-1.1-no-pthread-stubs.patch 2017-01-17 21:11:52 UTC (rev 286881) @@ -1,11 +0,0 @@ libxcb-1.8.1/configure.ac 2012-03-09 15:38:38.0 +0100 -+++ libxcb-1.8.1/configure.ac.new 2012-03-09 16:50:40.107109896 +0100 -@@ -43,7 +43,7 @@ - - # Checks for pkg-config packages - PKG_CHECK_MODULES(XCBPROTO, xcb-proto >= 1.12) --NEEDED="pthread-stubs xau >= 0.99.2" -+NEEDED="xau >= 0.99.2" - PKG_CHECK_MODULES(NEEDED, $NEEDED) - - have_xdmcp="no" Copied: libxcb/repos/extra-x86_64/libxcb-1.1-no-pthread-stubs.patch (from rev 286880, libxcb/trunk/libxcb-1.1-no-pthread-stubs.patch) === --- libxcb-1.1-no-pthread-stubs.patch (rev 0) +++ libxcb-1.1-no-pthread-stubs.patch 2017-01-17 21:11:52 UTC (rev 286881) @@ -0,0 +1,11 @@ +--- libxcb-1.8
[arch-commits] Commit in libxcb/repos/extra-i686 (6 files)
Date: Tuesday, January 17, 2017 @ 21:11:41 Author: andyrtr Revision: 286880 archrelease: copy trunk to extra-i686 Added: libxcb/repos/extra-i686/PKGBUILD (from rev 286879, libxcb/trunk/PKGBUILD) libxcb/repos/extra-i686/libxcb-1.1-no-pthread-stubs.patch (from rev 286879, libxcb/trunk/libxcb-1.1-no-pthread-stubs.patch) libxcb/repos/extra-i686/python-35x-fixes.patch (from rev 286879, libxcb/trunk/python-35x-fixes.patch) Deleted: libxcb/repos/extra-i686/PKGBUILD libxcb/repos/extra-i686/libxcb-1.1-no-pthread-stubs.patch libxcb/repos/extra-i686/python-35x-fixes.patch ---+ PKGBUILD | 96 ++-- libxcb-1.1-no-pthread-stubs.patch | 22 python-35x-fixes.patch| 84 +++ 3 files changed, 101 insertions(+), 101 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:11:31 UTC (rev 286879) +++ PKGBUILD2017-01-17 21:11:41 UTC (rev 286880) @@ -1,48 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Maintainer: Jan de Groot -# Contributor: Alexander Baldeck - -pkgname=libxcb -pkgver=1.12 -pkgrel=1 -pkgdesc="X11 client-side library" -arch=('i686' 'x86_64') -url="http://xcb.freedesktop.org/"; -depends=('xcb-proto>=1.12' 'libxdmcp' 'libxau') -makedepends=('libxslt' 'python' 'xorg-util-macros') -license=('custom') -source=($url/dist/$pkgname-$pkgver.tar.bz2 -libxcb-1.1-no-pthread-stubs.patch -python-35x-fixes.patch) -sha256sums=('4adfb1b7c67e99bc9c2ccb110b2f175686576d2f792c8a71b9c8b19014057b5b' -'37debaf892235a516a50a4975e6229538d3b4696b4571a8dea05eed774004aff' -'e66140ac2270b47e940db82975e2d28d3536ca1bd0eae63bce3b900ed81fa517') - -prepare() { - cd "$pkgname-$pkgver" - patch -Np1 -i ../libxcb-1.1-no-pthread-stubs.patch - patch -Np1 -i ../python-35x-fixes.patch - autoreconf -vfi -} - -build() { - cd "$pkgname-$pkgver" - ./configure --prefix=/usr \ ---enable-xinput \ ---enable-xkb \ ---disable-static - make -j1 -} - -check() { - cd $pkgname-$pkgver - make -k check -} - -package() { - cd "$pkgname-$pkgver" - make DESTDIR="$pkgdir" install - install -m755 -d "$pkgdir/usr/share/licenses/$pkgname" - install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname" -} Copied: libxcb/repos/extra-i686/PKGBUILD (from rev 286879, libxcb/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:11:41 UTC (rev 286880) @@ -0,0 +1,48 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Jan de Groot +# Contributor: Alexander Baldeck + +pkgname=libxcb +pkgver=1.12 +pkgrel=1 +pkgdesc="X11 client-side library" +arch=('i686' 'x86_64') +url="https://xcb.freedesktop.org/"; +depends=('xcb-proto>=1.12' 'libxdmcp' 'libxau') +makedepends=('libxslt' 'python' 'xorg-util-macros') +license=('custom') +source=($url/dist/$pkgname-$pkgver.tar.bz2 +libxcb-1.1-no-pthread-stubs.patch +python-35x-fixes.patch) +sha256sums=('4adfb1b7c67e99bc9c2ccb110b2f175686576d2f792c8a71b9c8b19014057b5b' +'37debaf892235a516a50a4975e6229538d3b4696b4571a8dea05eed774004aff' +'e66140ac2270b47e940db82975e2d28d3536ca1bd0eae63bce3b900ed81fa517') + +prepare() { + cd "$pkgname-$pkgver" + patch -Np1 -i ../libxcb-1.1-no-pthread-stubs.patch + patch -Np1 -i ../python-35x-fixes.patch + autoreconf -vfi +} + +build() { + cd "$pkgname-$pkgver" + ./configure --prefix=/usr \ +--enable-xinput \ +--enable-xkb \ +--disable-static + make -j1 +} + +check() { + cd $pkgname-$pkgver + make -k check +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir" install + install -m755 -d "$pkgdir/usr/share/licenses/$pkgname" + install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname" +} Deleted: libxcb-1.1-no-pthread-stubs.patch === --- libxcb-1.1-no-pthread-stubs.patch 2017-01-17 21:11:31 UTC (rev 286879) +++ libxcb-1.1-no-pthread-stubs.patch 2017-01-17 21:11:41 UTC (rev 286880) @@ -1,11 +0,0 @@ libxcb-1.8.1/configure.ac 2012-03-09 15:38:38.0 +0100 -+++ libxcb-1.8.1/configure.ac.new 2012-03-09 16:50:40.107109896 +0100 -@@ -43,7 +43,7 @@ - - # Checks for pkg-config packages - PKG_CHECK_MODULES(XCBPROTO, xcb-proto >= 1.12) --NEEDED="pthread-stubs xau >= 0.99.2" -+NEEDED="xau >= 0.99.2" - PKG_CHECK_MODULES(NEEDED, $NEEDED) - - have_xdmcp="no" Copied: libxcb/repos/extra-i686/libxcb-1.1-no-pthread-stubs.patch (from rev 286879, libxcb/trunk/libxcb-1.1-no-pthread-stubs.patch) === --- libxcb-1.1-no-pthread-stubs.patch (rev 0) +++ libxcb-1.1-no-pthread-stubs.patch 2017-01-17 21:11:41 UTC (rev 286880) @@ -0,0 +1,11 @@ +--- libxcb-1.8.1/configure.ac 2
[arch-commits] Commit in libxcb/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:11:31 Author: andyrtr Revision: 286879 https sources / gpg signature fixes Modified: libxcb/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:11:01 UTC (rev 286878) +++ PKGBUILD2017-01-17 21:11:31 UTC (rev 286879) @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="X11 client-side library" arch=('i686' 'x86_64') -url="http://xcb.freedesktop.org/"; +url="https://xcb.freedesktop.org/"; depends=('xcb-proto>=1.12' 'libxdmcp' 'libxau') makedepends=('libxslt' 'python' 'xorg-util-macros') license=('custom')
[arch-commits] Commit in libxcomposite/repos/extra-i686 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:10:52 Author: andyrtr Revision: 286877 archrelease: copy trunk to extra-i686 Added: libxcomposite/repos/extra-i686/PKGBUILD (from rev 286876, libxcomposite/trunk/PKGBUILD) Deleted: libxcomposite/repos/extra-i686/PKGBUILD --+ PKGBUILD | 56 1 file changed, 28 insertions(+), 28 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:10:43 UTC (rev 286876) +++ PKGBUILD2017-01-17 21:10:52 UTC (rev 286877) @@ -1,28 +0,0 @@ -# $Id$ -# Maintainer: Jan de Groot - -pkgname=libxcomposite -pkgver=0.4.4 -pkgrel=2 -pkgdesc="X11 Composite extension library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('libxfixes' 'compositeproto') -makedepends=('xorg-util-macros') -source=("${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2") -sha256sums=('ede250cd207d8bee4a338265c3007d7a68d5aca791b6ac41af18e9a2aeb34178') - -build() { - cd libXcomposite-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd libXcomposite-${pkgver} - make DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxcomposite/repos/extra-i686/PKGBUILD (from rev 286876, libxcomposite/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:10:52 UTC (rev 286877) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgname=libxcomposite +pkgver=0.4.4 +pkgrel=2 +pkgdesc="X11 Composite extension library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('libxfixes' 'compositeproto') +makedepends=('xorg-util-macros') +source=("${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2") +sha256sums=('ede250cd207d8bee4a338265c3007d7a68d5aca791b6ac41af18e9a2aeb34178') + +build() { + cd libXcomposite-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd libXcomposite-${pkgver} + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libxcomposite/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:11:01 Author: andyrtr Revision: 286878 archrelease: copy trunk to extra-x86_64 Added: libxcomposite/repos/extra-x86_64/PKGBUILD (from rev 286877, libxcomposite/trunk/PKGBUILD) Deleted: libxcomposite/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 56 1 file changed, 28 insertions(+), 28 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:10:52 UTC (rev 286877) +++ PKGBUILD2017-01-17 21:11:01 UTC (rev 286878) @@ -1,28 +0,0 @@ -# $Id$ -# Maintainer: Jan de Groot - -pkgname=libxcomposite -pkgver=0.4.4 -pkgrel=2 -pkgdesc="X11 Composite extension library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('libxfixes' 'compositeproto') -makedepends=('xorg-util-macros') -source=("${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2") -sha256sums=('ede250cd207d8bee4a338265c3007d7a68d5aca791b6ac41af18e9a2aeb34178') - -build() { - cd libXcomposite-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd libXcomposite-${pkgver} - make DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxcomposite/repos/extra-x86_64/PKGBUILD (from rev 286877, libxcomposite/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:11:01 UTC (rev 286878) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgname=libxcomposite +pkgver=0.4.4 +pkgrel=2 +pkgdesc="X11 Composite extension library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('libxfixes' 'compositeproto') +makedepends=('xorg-util-macros') +source=("${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2") +sha256sums=('ede250cd207d8bee4a338265c3007d7a68d5aca791b6ac41af18e9a2aeb34178') + +build() { + cd libXcomposite-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd libXcomposite-${pkgver} + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libxcomposite/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:10:43 Author: andyrtr Revision: 286876 https sources / gpg signature fixes Modified: libxcomposite/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:10:00 UTC (rev 286875) +++ PKGBUILD2017-01-17 21:10:43 UTC (rev 286876) @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="X11 Composite extension library" arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; +url="https://xorg.freedesktop.org/"; license=('custom') depends=('libxfixes' 'compositeproto') makedepends=('xorg-util-macros')
[arch-commits] Commit in libxcursor/repos/extra-x86_64 (4 files)
Date: Tuesday, January 17, 2017 @ 21:10:00 Author: andyrtr Revision: 286875 archrelease: copy trunk to extra-x86_64 Added: libxcursor/repos/extra-x86_64/PKGBUILD (from rev 286874, libxcursor/trunk/PKGBUILD) libxcursor/repos/extra-x86_64/index.theme (from rev 286874, libxcursor/trunk/index.theme) Deleted: libxcursor/repos/extra-x86_64/PKGBUILD libxcursor/repos/extra-x86_64/index.theme -+ PKGBUILD| 74 +- index.theme |4 +-- 2 files changed, 39 insertions(+), 39 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:09:16 UTC (rev 286874) +++ PKGBUILD2017-01-17 21:10:00 UTC (rev 286875) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Maintainer: Jan de Groot -# Contributor: Alexander Baldeck - -pkgname=libxcursor -pkgver=1.1.14 -pkgrel=2 -pkgdesc="X cursor management library" -arch=(i686 x86_64) -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('libxfixes' 'libxrender') -optdepends=('gnome-themes-standard: fallback icon theme') -makedepends=('xorg-util-macros') -backup=(usr/share/icons/default/index.theme) -source=(${url}/releases/individual/lib/libXcursor-${pkgver}.tar.bz2 -index.theme) -sha256sums=('9bc6acb21ca14da51bda5bc912c8955bc6e5e433f0ab00c5e8bef842596c33df' -'9e2707bc3466b848a70687ae34b505930b9c260a49b3d2f014145e70c4cddcd6') - -build() { - cd "${srcdir}/libXcursor-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd "${srcdir}/libXcursor-${pkgver}" - make DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/share/icons/default" - install -m644 "$srcdir"/index.theme "${pkgdir}/usr/share/icons/default/" - - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxcursor/repos/extra-x86_64/PKGBUILD (from rev 286874, libxcursor/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:10:00 UTC (rev 286875) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Jan de Groot +# Contributor: Alexander Baldeck + +pkgname=libxcursor +pkgver=1.1.14 +pkgrel=2 +pkgdesc="X cursor management library" +arch=(i686 x86_64) +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('libxfixes' 'libxrender') +optdepends=('gnome-themes-standard: fallback icon theme') +makedepends=('xorg-util-macros') +backup=(usr/share/icons/default/index.theme) +source=(${url}/releases/individual/lib/libXcursor-${pkgver}.tar.bz2 +index.theme) +sha256sums=('9bc6acb21ca14da51bda5bc912c8955bc6e5e433f0ab00c5e8bef842596c33df' +'9e2707bc3466b848a70687ae34b505930b9c260a49b3d2f014145e70c4cddcd6') + +build() { + cd "${srcdir}/libXcursor-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd "${srcdir}/libXcursor-${pkgver}" + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/icons/default" + install -m644 "$srcdir"/index.theme "${pkgdir}/usr/share/icons/default/" + + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +} Deleted: index.theme === --- index.theme 2017-01-17 21:09:16 UTC (rev 286874) +++ index.theme 2017-01-17 21:10:00 UTC (rev 286875) @@ -1,2 +0,0 @@ -[Icon Theme] -Inherits=Adwaita Copied: libxcursor/repos/extra-x86_64/index.theme (from rev 286874, libxcursor/trunk/index.theme) === --- index.theme (rev 0) +++ index.theme 2017-01-17 21:10:00 UTC (rev 286875) @@ -0,0 +1,2 @@ +[Icon Theme] +Inherits=Adwaita
[arch-commits] Commit in libxcursor/repos/extra-i686 (4 files)
Date: Tuesday, January 17, 2017 @ 21:09:16 Author: andyrtr Revision: 286874 archrelease: copy trunk to extra-i686 Added: libxcursor/repos/extra-i686/PKGBUILD (from rev 286873, libxcursor/trunk/PKGBUILD) libxcursor/repos/extra-i686/index.theme (from rev 286873, libxcursor/trunk/index.theme) Deleted: libxcursor/repos/extra-i686/PKGBUILD libxcursor/repos/extra-i686/index.theme -+ PKGBUILD| 74 +- index.theme |4 +-- 2 files changed, 39 insertions(+), 39 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:08:57 UTC (rev 286873) +++ PKGBUILD2017-01-17 21:09:16 UTC (rev 286874) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Maintainer: Jan de Groot -# Contributor: Alexander Baldeck - -pkgname=libxcursor -pkgver=1.1.14 -pkgrel=2 -pkgdesc="X cursor management library" -arch=(i686 x86_64) -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('libxfixes' 'libxrender') -optdepends=('gnome-themes-standard: fallback icon theme') -makedepends=('xorg-util-macros') -backup=(usr/share/icons/default/index.theme) -source=(${url}/releases/individual/lib/libXcursor-${pkgver}.tar.bz2 -index.theme) -sha256sums=('9bc6acb21ca14da51bda5bc912c8955bc6e5e433f0ab00c5e8bef842596c33df' -'9e2707bc3466b848a70687ae34b505930b9c260a49b3d2f014145e70c4cddcd6') - -build() { - cd "${srcdir}/libXcursor-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd "${srcdir}/libXcursor-${pkgver}" - make DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/share/icons/default" - install -m644 "$srcdir"/index.theme "${pkgdir}/usr/share/icons/default/" - - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxcursor/repos/extra-i686/PKGBUILD (from rev 286873, libxcursor/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:09:16 UTC (rev 286874) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Jan de Groot +# Contributor: Alexander Baldeck + +pkgname=libxcursor +pkgver=1.1.14 +pkgrel=2 +pkgdesc="X cursor management library" +arch=(i686 x86_64) +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('libxfixes' 'libxrender') +optdepends=('gnome-themes-standard: fallback icon theme') +makedepends=('xorg-util-macros') +backup=(usr/share/icons/default/index.theme) +source=(${url}/releases/individual/lib/libXcursor-${pkgver}.tar.bz2 +index.theme) +sha256sums=('9bc6acb21ca14da51bda5bc912c8955bc6e5e433f0ab00c5e8bef842596c33df' +'9e2707bc3466b848a70687ae34b505930b9c260a49b3d2f014145e70c4cddcd6') + +build() { + cd "${srcdir}/libXcursor-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd "${srcdir}/libXcursor-${pkgver}" + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/icons/default" + install -m644 "$srcdir"/index.theme "${pkgdir}/usr/share/icons/default/" + + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +} Deleted: index.theme === --- index.theme 2017-01-17 21:08:57 UTC (rev 286873) +++ index.theme 2017-01-17 21:09:16 UTC (rev 286874) @@ -1,2 +0,0 @@ -[Icon Theme] -Inherits=Adwaita Copied: libxcursor/repos/extra-i686/index.theme (from rev 286873, libxcursor/trunk/index.theme) === --- index.theme (rev 0) +++ index.theme 2017-01-17 21:09:16 UTC (rev 286874) @@ -0,0 +1,2 @@ +[Icon Theme] +Inherits=Adwaita
[arch-commits] Commit in libxcursor/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:08:57 Author: andyrtr Revision: 286873 https sources / gpg signature fixes Modified: libxcursor/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:08:20 UTC (rev 286872) +++ PKGBUILD2017-01-17 21:08:57 UTC (rev 286873) @@ -8,7 +8,7 @@ pkgrel=2 pkgdesc="X cursor management library" arch=(i686 x86_64) -url="http://xorg.freedesktop.org/"; +url="https://xorg.freedesktop.org/"; license=('custom') depends=('libxfixes' 'libxrender') optdepends=('gnome-themes-standard: fallback icon theme')
[arch-commits] Commit in libxdamage/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:08:20 Author: andyrtr Revision: 286872 archrelease: copy trunk to extra-x86_64 Added: libxdamage/repos/extra-x86_64/PKGBUILD (from rev 286871, libxdamage/trunk/PKGBUILD) Deleted: libxdamage/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 52 ++-- 1 file changed, 26 insertions(+), 26 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:08:11 UTC (rev 286871) +++ PKGBUILD2017-01-17 21:08:20 UTC (rev 286872) @@ -1,26 +0,0 @@ -# $Id$ -# Maintainer: Jan de Groot - -pkgname=libxdamage -pkgver=1.1.4 -pkgrel=2 -pkgdesc="X11 damaged region extension library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('libxfixes>=4.0.4' 'damageproto>=1.2.0') -makedepends=('pkg-config') -source=(${url}/releases/individual/lib/libXdamage-${pkgver}.tar.bz2) -sha256sums=('7c3fe7c657e83547f4822bfde30a90d84524efb56365448768409b77f05355ad') - -build() { - cd "${srcdir}/libXdamage-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd "${srcdir}/libXdamage-${pkgver}" - make DESTDIR="${pkgdir}" install - install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" -} Copied: libxdamage/repos/extra-x86_64/PKGBUILD (from rev 286871, libxdamage/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:08:20 UTC (rev 286872) @@ -0,0 +1,26 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgname=libxdamage +pkgver=1.1.4 +pkgrel=2 +pkgdesc="X11 damaged region extension library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('libxfixes>=4.0.4' 'damageproto>=1.2.0') +makedepends=('pkg-config') +source=(${url}/releases/individual/lib/libXdamage-${pkgver}.tar.bz2) +sha256sums=('7c3fe7c657e83547f4822bfde30a90d84524efb56365448768409b77f05355ad') + +build() { + cd "${srcdir}/libXdamage-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd "${srcdir}/libXdamage-${pkgver}" + make DESTDIR="${pkgdir}" install + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" +}
[arch-commits] Commit in libxdamage/repos/extra-i686 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:08:11 Author: andyrtr Revision: 286871 archrelease: copy trunk to extra-i686 Added: libxdamage/repos/extra-i686/PKGBUILD (from rev 286870, libxdamage/trunk/PKGBUILD) Deleted: libxdamage/repos/extra-i686/PKGBUILD --+ PKGBUILD | 52 ++-- 1 file changed, 26 insertions(+), 26 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:08:03 UTC (rev 286870) +++ PKGBUILD2017-01-17 21:08:11 UTC (rev 286871) @@ -1,26 +0,0 @@ -# $Id$ -# Maintainer: Jan de Groot - -pkgname=libxdamage -pkgver=1.1.4 -pkgrel=2 -pkgdesc="X11 damaged region extension library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('libxfixes>=4.0.4' 'damageproto>=1.2.0') -makedepends=('pkg-config') -source=(${url}/releases/individual/lib/libXdamage-${pkgver}.tar.bz2) -sha256sums=('7c3fe7c657e83547f4822bfde30a90d84524efb56365448768409b77f05355ad') - -build() { - cd "${srcdir}/libXdamage-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd "${srcdir}/libXdamage-${pkgver}" - make DESTDIR="${pkgdir}" install - install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" -} Copied: libxdamage/repos/extra-i686/PKGBUILD (from rev 286870, libxdamage/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:08:11 UTC (rev 286871) @@ -0,0 +1,26 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgname=libxdamage +pkgver=1.1.4 +pkgrel=2 +pkgdesc="X11 damaged region extension library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('libxfixes>=4.0.4' 'damageproto>=1.2.0') +makedepends=('pkg-config') +source=(${url}/releases/individual/lib/libXdamage-${pkgver}.tar.bz2) +sha256sums=('7c3fe7c657e83547f4822bfde30a90d84524efb56365448768409b77f05355ad') + +build() { + cd "${srcdir}/libXdamage-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd "${srcdir}/libXdamage-${pkgver}" + make DESTDIR="${pkgdir}" install + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" +}
[arch-commits] Commit in libxdamage/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:08:03 Author: andyrtr Revision: 286870 https sources / gpg signature fixes Modified: libxdamage/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:07:09 UTC (rev 286869) +++ PKGBUILD2017-01-17 21:08:03 UTC (rev 286870) @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="X11 damaged region extension library" arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; +url="https://xorg.freedesktop.org/"; license=('custom') depends=('libxfixes>=4.0.4' 'damageproto>=1.2.0') makedepends=('pkg-config')
[arch-commits] Commit in libxdmcp/repos/extra-i686 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:06:59 Author: andyrtr Revision: 286868 archrelease: copy trunk to extra-i686 Added: libxdmcp/repos/extra-i686/PKGBUILD (from rev 286867, libxdmcp/trunk/PKGBUILD) Deleted: libxdmcp/repos/extra-i686/PKGBUILD --+ PKGBUILD | 62 ++--- 1 file changed, 31 insertions(+), 31 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:06:46 UTC (rev 286867) +++ PKGBUILD2017-01-17 21:06:59 UTC (rev 286868) @@ -1,31 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Maintainer: Jan de Groot - -pkgname=libxdmcp -pkgver=1.1.2 -pkgrel=1 -pkgdesc="X11 Display Manager Control Protocol library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('xproto' 'glibc') -makedepends=('xorg-util-macros') -source=(${url}/releases/individual/lib/libXdmcp-${pkgver}.tar.bz2{,.sig}) -sha256sums=('81fe09867918fff258296e1e1e159f0dc639cb30d201c53519f25ab73af4e4e2' -'SKIP') -validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith - -build() { - cd libXdmcp-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd libXdmcp-${pkgver} - make DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxdmcp/repos/extra-i686/PKGBUILD (from rev 286867, libxdmcp/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:06:59 UTC (rev 286868) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Jan de Groot + +pkgname=libxdmcp +pkgver=1.1.2 +pkgrel=1 +pkgdesc="X11 Display Manager Control Protocol library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('xproto' 'glibc') +makedepends=('xorg-util-macros') +source=(${url}/releases/individual/lib/libXdmcp-${pkgver}.tar.bz2{,.sig}) +sha256sums=('81fe09867918fff258296e1e1e159f0dc639cb30d201c53519f25ab73af4e4e2' +'SKIP') +validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith + +build() { + cd libXdmcp-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd libXdmcp-${pkgver} + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libxdmcp/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:06:46 Author: andyrtr Revision: 286867 https sources / gpg signature fixes Modified: libxdmcp/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:06:16 UTC (rev 286866) +++ PKGBUILD2017-01-17 21:06:46 UTC (rev 286867) @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="X11 Display Manager Control Protocol library" arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; +url="https://xorg.freedesktop.org/"; license=('custom') depends=('xproto' 'glibc') makedepends=('xorg-util-macros')
[arch-commits] Commit in libxdmcp/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:07:09 Author: andyrtr Revision: 286869 archrelease: copy trunk to extra-x86_64 Added: libxdmcp/repos/extra-x86_64/PKGBUILD (from rev 286868, libxdmcp/trunk/PKGBUILD) Deleted: libxdmcp/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 62 ++--- 1 file changed, 31 insertions(+), 31 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:06:59 UTC (rev 286868) +++ PKGBUILD2017-01-17 21:07:09 UTC (rev 286869) @@ -1,31 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Maintainer: Jan de Groot - -pkgname=libxdmcp -pkgver=1.1.2 -pkgrel=1 -pkgdesc="X11 Display Manager Control Protocol library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('xproto' 'glibc') -makedepends=('xorg-util-macros') -source=(${url}/releases/individual/lib/libXdmcp-${pkgver}.tar.bz2{,.sig}) -sha256sums=('81fe09867918fff258296e1e1e159f0dc639cb30d201c53519f25ab73af4e4e2' -'SKIP') -validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith - -build() { - cd libXdmcp-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd libXdmcp-${pkgver} - make DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxdmcp/repos/extra-x86_64/PKGBUILD (from rev 286868, libxdmcp/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:07:09 UTC (rev 286869) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Jan de Groot + +pkgname=libxdmcp +pkgver=1.1.2 +pkgrel=1 +pkgdesc="X11 Display Manager Control Protocol library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('xproto' 'glibc') +makedepends=('xorg-util-macros') +source=(${url}/releases/individual/lib/libXdmcp-${pkgver}.tar.bz2{,.sig}) +sha256sums=('81fe09867918fff258296e1e1e159f0dc639cb30d201c53519f25ab73af4e4e2' +'SKIP') +validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith + +build() { + cd libXdmcp-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd libXdmcp-${pkgver} + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libxevie/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:06:16 Author: andyrtr Revision: 286866 archrelease: copy trunk to extra-x86_64 Added: libxevie/repos/extra-x86_64/PKGBUILD (from rev 286865, libxevie/trunk/PKGBUILD) Deleted: libxevie/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 54 +++--- 1 file changed, 27 insertions(+), 27 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:06:04 UTC (rev 286865) +++ PKGBUILD2017-01-17 21:06:16 UTC (rev 286866) @@ -1,27 +0,0 @@ -# $Id$ -#Maintainer: Jan de Groot - -pkgname=libxevie -pkgver=1.0.3 -pkgrel=3 -pkgdesc="X11 EvIE extension library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('libxext') -makedepends=('xorg-util-macros' 'evieext') -source=("${url}/releases/individual/lib/libXevie-${pkgver}.tar.bz2") -sha1sums=('84e2dc6e35c4a82f1a4d1fe4723fba58364c3bec') - -build() { - cd "${srcdir}/libXevie-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd "${srcdir}/libXevie-${pkgver}" - make DESTDIR="${pkgdir}" install - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxevie/repos/extra-x86_64/PKGBUILD (from rev 286865, libxevie/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:06:16 UTC (rev 286866) @@ -0,0 +1,27 @@ +# $Id$ +#Maintainer: Jan de Groot + +pkgname=libxevie +pkgver=1.0.3 +pkgrel=3 +pkgdesc="X11 EvIE extension library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('libxext') +makedepends=('xorg-util-macros' 'evieext') +source=("${url}/releases/individual/lib/libXevie-${pkgver}.tar.bz2") +sha1sums=('84e2dc6e35c4a82f1a4d1fe4723fba58364c3bec') + +build() { + cd "${srcdir}/libXevie-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd "${srcdir}/libXevie-${pkgver}" + make DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libxevie/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:05:55 Author: andyrtr Revision: 286864 https sources / gpg signature fixes Modified: libxevie/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:04:24 UTC (rev 286863) +++ PKGBUILD2017-01-17 21:05:55 UTC (rev 286864) @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="X11 EvIE extension library" arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; +url="https://xorg.freedesktop.org/"; license=('custom') depends=('libxext') makedepends=('xorg-util-macros' 'evieext')
[arch-commits] Commit in libxevie/repos/extra-i686 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:06:04 Author: andyrtr Revision: 286865 archrelease: copy trunk to extra-i686 Added: libxevie/repos/extra-i686/PKGBUILD (from rev 286864, libxevie/trunk/PKGBUILD) Deleted: libxevie/repos/extra-i686/PKGBUILD --+ PKGBUILD | 54 +++--- 1 file changed, 27 insertions(+), 27 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:05:55 UTC (rev 286864) +++ PKGBUILD2017-01-17 21:06:04 UTC (rev 286865) @@ -1,27 +0,0 @@ -# $Id$ -#Maintainer: Jan de Groot - -pkgname=libxevie -pkgver=1.0.3 -pkgrel=3 -pkgdesc="X11 EvIE extension library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('libxext') -makedepends=('xorg-util-macros' 'evieext') -source=("${url}/releases/individual/lib/libXevie-${pkgver}.tar.bz2") -sha1sums=('84e2dc6e35c4a82f1a4d1fe4723fba58364c3bec') - -build() { - cd "${srcdir}/libXevie-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd "${srcdir}/libXevie-${pkgver}" - make DESTDIR="${pkgdir}" install - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxevie/repos/extra-i686/PKGBUILD (from rev 286864, libxevie/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:06:04 UTC (rev 286865) @@ -0,0 +1,27 @@ +# $Id$ +#Maintainer: Jan de Groot + +pkgname=libxevie +pkgver=1.0.3 +pkgrel=3 +pkgdesc="X11 EvIE extension library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('libxext') +makedepends=('xorg-util-macros' 'evieext') +source=("${url}/releases/individual/lib/libXevie-${pkgver}.tar.bz2") +sha1sums=('84e2dc6e35c4a82f1a4d1fe4723fba58364c3bec') + +build() { + cd "${srcdir}/libXevie-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd "${srcdir}/libXevie-${pkgver}" + make DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in ttf-ionicons/repos/community-any (3 files)
Date: Tuesday, January 17, 2017 @ 21:05:19 Author: arodseth Revision: 207802 archrelease: copy trunk to community-any Added: ttf-ionicons/repos/community-any/PKGBUILD (from rev 207801, ttf-ionicons/trunk/PKGBUILD) Deleted: ttf-ionicons/repos/community-any/PKGBUILD ttf-ionicons/repos/community-any/ttf-font.install --+ PKGBUILD | 40 +--- ttf-font.install | 15 --- 2 files changed, 21 insertions(+), 34 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:05:09 UTC (rev 207801) +++ PKGBUILD2017-01-17 21:05:19 UTC (rev 207802) @@ -1,19 +0,0 @@ -# $Id$ -# Maintainer: Andrea Scarpino - -pkgname=ttf-ionicons -pkgver=2.0.1 -pkgrel=1 -pkgdesc='The premium icon font for Ionic Framework' -arch=('any') -license=('MIT') -url='http://ionicons.com/' -depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils') -install=ttf-font.install -source=("https://github.com/driftyco/ionicons/raw/v${pkgver}/fonts/ionicons.ttf";) -md5sums=('24712f6c47821394fba7942fbb52c3b2') - -package() { - install -d "${pkgdir}"/usr/share/fonts/TTF - install -m644 ionicons.ttf "${pkgdir}"/usr/share/fonts/TTF/ -} Copied: ttf-ionicons/repos/community-any/PKGBUILD (from rev 207801, ttf-ionicons/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:05:19 UTC (rev 207802) @@ -0,0 +1,21 @@ +# $Id$ +# Maintainer: Alexander F Rødseth +# Contributor: Andrea Scarpino + +pkgname=ttf-ionicons +pkgver=2.0.1 +pkgrel=2 +pkgdesc='The premium icon font for Ionic Framework' +arch=('any') +license=('MIT') +url='http://ionicons.com/' +depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils') +source=("https://github.com/driftyco/ionicons/raw/v${pkgver}/fonts/ionicons.ttf";) +md5sums=('24712f6c47821394fba7942fbb52c3b2') + +package() { + install -d "$pkgdir/usr/share/fonts/TTF" + install -m644 ionicons.ttf "$pkgdir/usr/share/fonts/TTF/" +} + +# vim:set ts=2 sw=2 et: Deleted: ttf-font.install === --- ttf-font.install2017-01-17 21:05:09 UTC (rev 207801) +++ ttf-font.install2017-01-17 21:05:19 UTC (rev 207802) @@ -1,15 +0,0 @@ -post_install() { - echo -n "Updating font cache... " - fc-cache -s - mkfontscale /usr/share/fonts/TTF - mkfontdir /usr/share/fonts/TTF - echo "done." -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -}
[arch-commits] Commit in ttf-ionicons/trunk (PKGBUILD ttf-font.install)
Date: Tuesday, January 17, 2017 @ 21:05:09 Author: arodseth Revision: 207801 upgpkg: ttf-ionicons 2.0.1-2 Modified: ttf-ionicons/trunk/PKGBUILD Deleted: ttf-ionicons/trunk/ttf-font.install --+ PKGBUILD | 12 +++- ttf-font.install | 15 --- 2 files changed, 7 insertions(+), 20 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:00:12 UTC (rev 207800) +++ PKGBUILD2017-01-17 21:05:09 UTC (rev 207801) @@ -1,19 +1,21 @@ # $Id$ -# Maintainer: Andrea Scarpino +# Maintainer: Alexander F Rødseth +# Contributor: Andrea Scarpino pkgname=ttf-ionicons pkgver=2.0.1 -pkgrel=1 +pkgrel=2 pkgdesc='The premium icon font for Ionic Framework' arch=('any') license=('MIT') url='http://ionicons.com/' depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils') -install=ttf-font.install source=("https://github.com/driftyco/ionicons/raw/v${pkgver}/fonts/ionicons.ttf";) md5sums=('24712f6c47821394fba7942fbb52c3b2') package() { - install -d "${pkgdir}"/usr/share/fonts/TTF - install -m644 ionicons.ttf "${pkgdir}"/usr/share/fonts/TTF/ + install -d "$pkgdir/usr/share/fonts/TTF" + install -m644 ionicons.ttf "$pkgdir/usr/share/fonts/TTF/" } + +# vim:set ts=2 sw=2 et: Deleted: ttf-font.install === --- ttf-font.install2017-01-17 21:00:12 UTC (rev 207800) +++ ttf-font.install2017-01-17 21:05:09 UTC (rev 207801) @@ -1,15 +0,0 @@ -post_install() { - echo -n "Updating font cache... " - fc-cache -s - mkfontscale /usr/share/fonts/TTF - mkfontdir /usr/share/fonts/TTF - echo "done." -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -}
[arch-commits] Commit in libxext/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:04:24 Author: andyrtr Revision: 286863 archrelease: copy trunk to extra-x86_64 Added: libxext/repos/extra-x86_64/PKGBUILD (from rev 286862, libxext/trunk/PKGBUILD) Deleted: libxext/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 60 +++- 1 file changed, 31 insertions(+), 29 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:04:06 UTC (rev 286862) +++ PKGBUILD2017-01-17 21:04:24 UTC (rev 286863) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Maintainer: Jan de Groot - -pkgname=libxext -pkgver=1.3.3 -pkgrel=1 -pkgdesc="X11 miscellaneous extensions library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('libx11' 'xextproto') -makedepends=('xorg-util-macros') -source=("${url}/releases/individual/lib/libXext-${pkgver}.tar.bz2") -sha256sums=('b518d4d332231f313371fdefac59e3776f4f0823bcb23cf7c7305bfb57b16e35') - -build() { - cd libXext-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd libXext-${pkgver} - make DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxext/repos/extra-x86_64/PKGBUILD (from rev 286862, libxext/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:04:24 UTC (rev 286863) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Jan de Groot + +pkgname=libxext +pkgver=1.3.3 +pkgrel=1 +pkgdesc="X11 miscellaneous extensions library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('libx11' 'xextproto') +makedepends=('xorg-util-macros') +source=(${url}/releases/individual/lib/libXext-${pkgver}.tar.bz2{,.sig}) +sha256sums=('b518d4d332231f313371fdefac59e3776f4f0823bcb23cf7c7305bfb57b16e35' +'SKIP') +validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # "Peter Hutterer (Who-T) " + +build() { + cd libXext-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd libXext-${pkgver} + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libxext/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:03:57 Author: andyrtr Revision: 286861 https sources / gpg signature fixes Modified: libxext/trunk/PKGBUILD --+ PKGBUILD |8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:02:07 UTC (rev 286860) +++ PKGBUILD2017-01-17 21:03:57 UTC (rev 286861) @@ -7,12 +7,14 @@ pkgrel=1 pkgdesc="X11 miscellaneous extensions library" arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; +url="https://xorg.freedesktop.org/"; license=('custom') depends=('libx11' 'xextproto') makedepends=('xorg-util-macros') -source=("${url}/releases/individual/lib/libXext-${pkgver}.tar.bz2") -sha256sums=('b518d4d332231f313371fdefac59e3776f4f0823bcb23cf7c7305bfb57b16e35') +source=(${url}/releases/individual/lib/libXext-${pkgver}.tar.bz2{,.sig}) +sha256sums=('b518d4d332231f313371fdefac59e3776f4f0823bcb23cf7c7305bfb57b16e35' +'SKIP') +validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # "Peter Hutterer (Who-T) " build() { cd libXext-${pkgver}
[arch-commits] Commit in libxext/repos/extra-i686 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:04:06 Author: andyrtr Revision: 286862 archrelease: copy trunk to extra-i686 Added: libxext/repos/extra-i686/PKGBUILD (from rev 286861, libxext/trunk/PKGBUILD) Deleted: libxext/repos/extra-i686/PKGBUILD --+ PKGBUILD | 60 +++- 1 file changed, 31 insertions(+), 29 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:03:57 UTC (rev 286861) +++ PKGBUILD2017-01-17 21:04:06 UTC (rev 286862) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Maintainer: Jan de Groot - -pkgname=libxext -pkgver=1.3.3 -pkgrel=1 -pkgdesc="X11 miscellaneous extensions library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('libx11' 'xextproto') -makedepends=('xorg-util-macros') -source=("${url}/releases/individual/lib/libXext-${pkgver}.tar.bz2") -sha256sums=('b518d4d332231f313371fdefac59e3776f4f0823bcb23cf7c7305bfb57b16e35') - -build() { - cd libXext-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd libXext-${pkgver} - make DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxext/repos/extra-i686/PKGBUILD (from rev 286861, libxext/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:04:06 UTC (rev 286862) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Jan de Groot + +pkgname=libxext +pkgver=1.3.3 +pkgrel=1 +pkgdesc="X11 miscellaneous extensions library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('libx11' 'xextproto') +makedepends=('xorg-util-macros') +source=(${url}/releases/individual/lib/libXext-${pkgver}.tar.bz2{,.sig}) +sha256sums=('b518d4d332231f313371fdefac59e3776f4f0823bcb23cf7c7305bfb57b16e35' +'SKIP') +validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # "Peter Hutterer (Who-T) " + +build() { + cd libXext-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd libXext-${pkgver} + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libxfixes/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:01:43 Author: andyrtr Revision: 286858 https sources / gpg signature fixes Modified: libxfixes/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:01:21 UTC (rev 286857) +++ PKGBUILD2017-01-17 21:01:43 UTC (rev 286858) @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="X11 miscellaneous 'fixes' extension library" arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; +url="https://xorg.freedesktop.org/"; license=('custom') depends=('libx11' 'fixesproto>=5.0') makedepends=('xorg-util-macros')
[arch-commits] Commit in libxfixes/repos/extra-i686 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:01:55 Author: andyrtr Revision: 286859 archrelease: copy trunk to extra-i686 Added: libxfixes/repos/extra-i686/PKGBUILD (from rev 286858, libxfixes/trunk/PKGBUILD) Deleted: libxfixes/repos/extra-i686/PKGBUILD --+ PKGBUILD | 64 ++--- 1 file changed, 32 insertions(+), 32 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:01:43 UTC (rev 286858) +++ PKGBUILD2017-01-17 21:01:55 UTC (rev 286859) @@ -1,32 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Maintainer: Jan de Groot - -pkgname=libxfixes -pkgver=5.0.3 -pkgrel=1 -pkgdesc="X11 miscellaneous 'fixes' extension library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('libx11' 'fixesproto>=5.0') -makedepends=('xorg-util-macros') -source=(${url}/releases/individual/lib/libXfixes-${pkgver}.tar.bz2{,.sig}) -sha256sums=('de1cd33aff226e08cefd0e6759341c2c8e8c9faf8ce9ac6ec38d43e287b22ad6' -'SKIP') - -validpgpkeys=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb - -build() { - cd "${srcdir}/libXfixes-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd "${srcdir}/libXfixes-${pkgver}" - make DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxfixes/repos/extra-i686/PKGBUILD (from rev 286858, libxfixes/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:01:55 UTC (rev 286859) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Jan de Groot + +pkgname=libxfixes +pkgver=5.0.3 +pkgrel=1 +pkgdesc="X11 miscellaneous 'fixes' extension library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('libx11' 'fixesproto>=5.0') +makedepends=('xorg-util-macros') +source=(${url}/releases/individual/lib/libXfixes-${pkgver}.tar.bz2{,.sig}) +sha256sums=('de1cd33aff226e08cefd0e6759341c2c8e8c9faf8ce9ac6ec38d43e287b22ad6' +'SKIP') + +validpgpkeys=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb + +build() { + cd "${srcdir}/libXfixes-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd "${srcdir}/libXfixes-${pkgver}" + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libxfixes/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:02:07 Author: andyrtr Revision: 286860 archrelease: copy trunk to extra-x86_64 Added: libxfixes/repos/extra-x86_64/PKGBUILD (from rev 286859, libxfixes/trunk/PKGBUILD) Deleted: libxfixes/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 64 ++--- 1 file changed, 32 insertions(+), 32 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:01:55 UTC (rev 286859) +++ PKGBUILD2017-01-17 21:02:07 UTC (rev 286860) @@ -1,32 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Maintainer: Jan de Groot - -pkgname=libxfixes -pkgver=5.0.3 -pkgrel=1 -pkgdesc="X11 miscellaneous 'fixes' extension library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('libx11' 'fixesproto>=5.0') -makedepends=('xorg-util-macros') -source=(${url}/releases/individual/lib/libXfixes-${pkgver}.tar.bz2{,.sig}) -sha256sums=('de1cd33aff226e08cefd0e6759341c2c8e8c9faf8ce9ac6ec38d43e287b22ad6' -'SKIP') - -validpgpkeys=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb - -build() { - cd "${srcdir}/libXfixes-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd "${srcdir}/libXfixes-${pkgver}" - make DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxfixes/repos/extra-x86_64/PKGBUILD (from rev 286859, libxfixes/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:02:07 UTC (rev 286860) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Jan de Groot + +pkgname=libxfixes +pkgver=5.0.3 +pkgrel=1 +pkgdesc="X11 miscellaneous 'fixes' extension library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('libx11' 'fixesproto>=5.0') +makedepends=('xorg-util-macros') +source=(${url}/releases/individual/lib/libXfixes-${pkgver}.tar.bz2{,.sig}) +sha256sums=('de1cd33aff226e08cefd0e6759341c2c8e8c9faf8ce9ac6ec38d43e287b22ad6' +'SKIP') + +validpgpkeys=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb + +build() { + cd "${srcdir}/libXfixes-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd "${srcdir}/libXfixes-${pkgver}" + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libxfont/repos/extra-i686 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:01:09 Author: andyrtr Revision: 286856 archrelease: copy trunk to extra-i686 Added: libxfont/repos/extra-i686/PKGBUILD (from rev 286855, libxfont/trunk/PKGBUILD) Deleted: libxfont/repos/extra-i686/PKGBUILD --+ PKGBUILD | 60 ++-- 1 file changed, 30 insertions(+), 30 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:01:01 UTC (rev 286855) +++ PKGBUILD2017-01-17 21:01:09 UTC (rev 286856) @@ -1,30 +0,0 @@ -# $Id$ -# Maintainer: Jan de Groot - -pkgname=libxfont -pkgver=1.5.2 -pkgrel=1 -pkgdesc="X11 font rasterisation library" -arch=(i686 x86_64) -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('freetype2' 'libfontenc' 'xproto' 'fontsproto>=2.1.3') -makedepends=('xorg-util-macros' 'xtrans') -source=(${url}/archive/individual/lib/libXfont-${pkgver}.tar.bz2{,.sig}) -sha256sums=('02945ea68da447102f3e6c2b896c1d2061fd115de99404facc2aca3ad7010d71' -'SKIP') -validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith -validpgpkeys+=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') # Adam Jackson - -build() { - cd "${srcdir}/libXfont-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd "${srcdir}/libXfont-${pkgver}" - make DESTDIR="${pkgdir}" install - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxfont/repos/extra-i686/PKGBUILD (from rev 286855, libxfont/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:01:09 UTC (rev 286856) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgname=libxfont +pkgver=1.5.2 +pkgrel=1 +pkgdesc="X11 font rasterisation library" +arch=(i686 x86_64) +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('freetype2' 'libfontenc' 'xproto' 'fontsproto>=2.1.3') +makedepends=('xorg-util-macros' 'xtrans') +source=(${url}/archive/individual/lib/libXfont-${pkgver}.tar.bz2{,.sig}) +sha256sums=('02945ea68da447102f3e6c2b896c1d2061fd115de99404facc2aca3ad7010d71' +'SKIP') +validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith +validpgpkeys+=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') # Adam Jackson + +build() { + cd "${srcdir}/libXfont-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd "${srcdir}/libXfont-${pkgver}" + make DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libxfont/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:01:21 Author: andyrtr Revision: 286857 archrelease: copy trunk to extra-x86_64 Added: libxfont/repos/extra-x86_64/PKGBUILD (from rev 286856, libxfont/trunk/PKGBUILD) Deleted: libxfont/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 60 ++-- 1 file changed, 30 insertions(+), 30 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:01:09 UTC (rev 286856) +++ PKGBUILD2017-01-17 21:01:21 UTC (rev 286857) @@ -1,30 +0,0 @@ -# $Id$ -# Maintainer: Jan de Groot - -pkgname=libxfont -pkgver=1.5.2 -pkgrel=1 -pkgdesc="X11 font rasterisation library" -arch=(i686 x86_64) -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('freetype2' 'libfontenc' 'xproto' 'fontsproto>=2.1.3') -makedepends=('xorg-util-macros' 'xtrans') -source=(${url}/archive/individual/lib/libXfont-${pkgver}.tar.bz2{,.sig}) -sha256sums=('02945ea68da447102f3e6c2b896c1d2061fd115de99404facc2aca3ad7010d71' -'SKIP') -validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith -validpgpkeys+=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') # Adam Jackson - -build() { - cd "${srcdir}/libXfont-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd "${srcdir}/libXfont-${pkgver}" - make DESTDIR="${pkgdir}" install - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxfont/repos/extra-x86_64/PKGBUILD (from rev 286856, libxfont/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:01:21 UTC (rev 286857) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgname=libxfont +pkgver=1.5.2 +pkgrel=1 +pkgdesc="X11 font rasterisation library" +arch=(i686 x86_64) +url="https://xorg.freedesktop.org/"; +license=('custom') +depends=('freetype2' 'libfontenc' 'xproto' 'fontsproto>=2.1.3') +makedepends=('xorg-util-macros' 'xtrans') +source=(${url}/archive/individual/lib/libXfont-${pkgver}.tar.bz2{,.sig}) +sha256sums=('02945ea68da447102f3e6c2b896c1d2061fd115de99404facc2aca3ad7010d71' +'SKIP') +validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith +validpgpkeys+=('DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3') # Adam Jackson + +build() { + cd "${srcdir}/libXfont-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd "${srcdir}/libXfont-${pkgver}" + make DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libxfont/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:01:01 Author: andyrtr Revision: 286855 https sources / gpg signature fixes Modified: libxfont/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 21:00:32 UTC (rev 286854) +++ PKGBUILD2017-01-17 21:01:01 UTC (rev 286855) @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="X11 font rasterisation library" arch=(i686 x86_64) -url="http://xorg.freedesktop.org/"; +url="https://xorg.freedesktop.org/"; license=('custom') depends=('freetype2' 'libfontenc' 'xproto' 'fontsproto>=2.1.3') makedepends=('xorg-util-macros' 'xtrans')
[arch-commits] Commit in libxft/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:00:32 Author: andyrtr Revision: 286854 archrelease: copy trunk to extra-x86_64 Added: libxft/repos/extra-x86_64/PKGBUILD (from rev 286853, libxft/trunk/PKGBUILD) Deleted: libxft/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 60 +++- 1 file changed, 31 insertions(+), 29 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:00:20 UTC (rev 286853) +++ PKGBUILD2017-01-17 21:00:32 UTC (rev 286854) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Maintainer: Jan de Groot - -pkgname=libxft -pkgver=2.3.2 -pkgrel=1 -pkgdesc="FreeType-based font drawing library for X" -arch=('i686' 'x86_64') -license=('custom') -url="http://xorg.freedesktop.org/"; -depends=('fontconfig' 'libxrender') -makedepends=('pkgconfig') -source=(${url}/releases/individual/lib/libXft-${pkgver}.tar.bz2) -sha256sums=('f5a3c824761df351ca91827ac221090943ef28b248573486050de89f4bfcdc4c') - -build() { - cd "${srcdir}/libXft-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd "${srcdir}/libXft-${pkgver}" - make DESTDIR="${pkgdir}" install - install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" - -} Copied: libxft/repos/extra-x86_64/PKGBUILD (from rev 286853, libxft/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:00:32 UTC (rev 286854) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Jan de Groot + +pkgname=libxft +pkgver=2.3.2 +pkgrel=1 +pkgdesc="FreeType-based font drawing library for X" +arch=('i686' 'x86_64') +license=('custom') +url="https://xorg.freedesktop.org/"; +depends=('fontconfig' 'libxrender') +makedepends=('pkgconfig') +source=(${url}/releases/individual/lib/libXft-${pkgver}.tar.bz2{,.sig}) +sha256sums=('f5a3c824761df351ca91827ac221090943ef28b248573486050de89f4bfcdc4c' +'SKIP') +valigpgpkyes=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith " + +build() { + cd "${srcdir}/libXft-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd "${srcdir}/libXft-${pkgver}" + make DESTDIR="${pkgdir}" install + install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" + +}
[arch-commits] Commit in opendesktop-fonts/repos/community-any (3 files)
Date: Tuesday, January 17, 2017 @ 21:00:12 Author: arodseth Revision: 207800 archrelease: copy trunk to community-any Added: opendesktop-fonts/repos/community-any/PKGBUILD (from rev 207799, opendesktop-fonts/trunk/PKGBUILD) Deleted: opendesktop-fonts/repos/community-any/PKGBUILD opendesktop-fonts/repos/community-any/opendesktop-fonts.install ---+ PKGBUILD | 54 ++-- opendesktop-fonts.install | 15 2 files changed, 28 insertions(+), 41 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:00:01 UTC (rev 207799) +++ PKGBUILD2017-01-17 21:00:12 UTC (rev 207800) @@ -1,26 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Damir Perisa - -pkgname=opendesktop-fonts -pkgver=1.4.2 -pkgrel=3 -pkgdesc="Chinese TrueType Fonts" -arch=('any') -url='http://www.opendesktop.org.tw/' -license=('custom:Arphic Public License') -depends=('fontconfig' 'xorg-font-utils') -install=opendesktop-fonts.install -provides=('ttf-fireflysung') -replaces=('ttf-fireflysung') -#source=("ftp://ftp.opendesktop.org.tw/odp/ODOFonts/OpenFonts/${pkgname}-${pkgver}.tar.gz";) -source=("https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz";) -md5sums=('c33e83d27ac3401bc51a2b8a88705c78') - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - install -d "${pkgdir}/usr/share/fonts/TTF" - install -m 644 *.ttf "${pkgdir}/usr/share/fonts/TTF" - install -m 644 *.ttc "${pkgdir}/usr/share/fonts/TTF" - install -D -m644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} Copied: opendesktop-fonts/repos/community-any/PKGBUILD (from rev 207799, opendesktop-fonts/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:00:12 UTC (rev 207800) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Felix Yan +# Maintainer: Alexander F Rødseth +# Contributor: Damir Perisa + +pkgname=opendesktop-fonts +pkgver=1.4.2 +pkgrel=4 +pkgdesc='Chinese TrueType Fonts' +arch=('any') +url='http://www.opendesktop.org.tw/' +license=('custom:Arphic Public License') +depends=('fontconfig' 'xorg-font-utils') +provides=('ttf-fireflysung') +replaces=('ttf-fireflysung') +#source=("ftp://ftp.opendesktop.org.tw/odp/ODOFonts/OpenFonts/${pkgname}-${pkgver}.tar.gz";) +source=("https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz";) +md5sums=('c33e83d27ac3401bc51a2b8a88705c78') + +package() { + cd "$pkgname-$pkgver" + + install -d "$pkgdir/usr/share/fonts/TTF" + install -m 644 *.ttf *.ttc "$pkgdir/usr/share/fonts/TTF" + install -D -m644 COPYRIGHT "$pkgdir/usr/share/licenses/${pkgname}/LICENSE" +} + +# vim:set ts=2 sw=2 et: Deleted: opendesktop-fonts.install === --- opendesktop-fonts.install 2017-01-17 21:00:01 UTC (rev 207799) +++ opendesktop-fonts.install 2017-01-17 21:00:12 UTC (rev 207800) @@ -1,15 +0,0 @@ -post_install() { - echo -n "Updating font cache... " - fc-cache -s - mkfontscale usr/share/fonts/TTF - mkfontdir usr/share/fonts/TTF - echo "done." -} - -post_upgrade() { - post_install $1 -} - -post_remove() { - post_install $1 -}
[arch-commits] Commit in libxft/repos/extra-i686 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:00:20 Author: andyrtr Revision: 286853 archrelease: copy trunk to extra-i686 Added: libxft/repos/extra-i686/PKGBUILD (from rev 286852, libxft/trunk/PKGBUILD) Deleted: libxft/repos/extra-i686/PKGBUILD --+ PKGBUILD | 60 +++- 1 file changed, 31 insertions(+), 29 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 21:00:10 UTC (rev 286852) +++ PKGBUILD2017-01-17 21:00:20 UTC (rev 286853) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Maintainer: Jan de Groot - -pkgname=libxft -pkgver=2.3.2 -pkgrel=1 -pkgdesc="FreeType-based font drawing library for X" -arch=('i686' 'x86_64') -license=('custom') -url="http://xorg.freedesktop.org/"; -depends=('fontconfig' 'libxrender') -makedepends=('pkgconfig') -source=(${url}/releases/individual/lib/libXft-${pkgver}.tar.bz2) -sha256sums=('f5a3c824761df351ca91827ac221090943ef28b248573486050de89f4bfcdc4c') - -build() { - cd "${srcdir}/libXft-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd "${srcdir}/libXft-${pkgver}" - make DESTDIR="${pkgdir}" install - install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" - -} Copied: libxft/repos/extra-i686/PKGBUILD (from rev 286852, libxft/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 21:00:20 UTC (rev 286853) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Jan de Groot + +pkgname=libxft +pkgver=2.3.2 +pkgrel=1 +pkgdesc="FreeType-based font drawing library for X" +arch=('i686' 'x86_64') +license=('custom') +url="https://xorg.freedesktop.org/"; +depends=('fontconfig' 'libxrender') +makedepends=('pkgconfig') +source=(${url}/releases/individual/lib/libXft-${pkgver}.tar.bz2{,.sig}) +sha256sums=('f5a3c824761df351ca91827ac221090943ef28b248573486050de89f4bfcdc4c' +'SKIP') +valigpgpkyes=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith " + +build() { + cd "${srcdir}/libXft-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd "${srcdir}/libXft-${pkgver}" + make DESTDIR="${pkgdir}" install + install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" + +}
[arch-commits] Commit in opendesktop-fonts/trunk (PKGBUILD opendesktop-fonts.install)
Date: Tuesday, January 17, 2017 @ 21:00:01 Author: arodseth Revision: 207799 upgpkg: opendesktop-fonts 1.4.2-4 Modified: opendesktop-fonts/trunk/PKGBUILD Deleted: opendesktop-fonts/trunk/opendesktop-fonts.install ---+ PKGBUILD | 18 ++ opendesktop-fonts.install | 15 --- 2 files changed, 10 insertions(+), 23 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 20:50:07 UTC (rev 207798) +++ PKGBUILD2017-01-17 21:00:01 UTC (rev 207799) @@ -1,16 +1,16 @@ # $Id$ # Maintainer: Felix Yan +# Maintainer: Alexander F Rødseth # Contributor: Damir Perisa pkgname=opendesktop-fonts pkgver=1.4.2 -pkgrel=3 -pkgdesc="Chinese TrueType Fonts" +pkgrel=4 +pkgdesc='Chinese TrueType Fonts' arch=('any') url='http://www.opendesktop.org.tw/' license=('custom:Arphic Public License') depends=('fontconfig' 'xorg-font-utils') -install=opendesktop-fonts.install provides=('ttf-fireflysung') replaces=('ttf-fireflysung') #source=("ftp://ftp.opendesktop.org.tw/odp/ODOFonts/OpenFonts/${pkgname}-${pkgver}.tar.gz";) @@ -18,9 +18,11 @@ md5sums=('c33e83d27ac3401bc51a2b8a88705c78') package() { - cd "${srcdir}/${pkgname}-${pkgver}" - install -d "${pkgdir}/usr/share/fonts/TTF" - install -m 644 *.ttf "${pkgdir}/usr/share/fonts/TTF" - install -m 644 *.ttc "${pkgdir}/usr/share/fonts/TTF" - install -D -m644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + cd "$pkgname-$pkgver" + + install -d "$pkgdir/usr/share/fonts/TTF" + install -m 644 *.ttf *.ttc "$pkgdir/usr/share/fonts/TTF" + install -D -m644 COPYRIGHT "$pkgdir/usr/share/licenses/${pkgname}/LICENSE" } + +# vim:set ts=2 sw=2 et: Deleted: opendesktop-fonts.install === --- opendesktop-fonts.install 2017-01-17 20:50:07 UTC (rev 207798) +++ opendesktop-fonts.install 2017-01-17 21:00:01 UTC (rev 207799) @@ -1,15 +0,0 @@ -post_install() { - echo -n "Updating font cache... " - fc-cache -s - mkfontscale usr/share/fonts/TTF - mkfontdir usr/share/fonts/TTF - echo "done." -} - -post_upgrade() { - post_install $1 -} - -post_remove() { - post_install $1 -}
[arch-commits] Commit in libxft/trunk (PKGBUILD)
Date: Tuesday, January 17, 2017 @ 21:00:10 Author: andyrtr Revision: 286852 https sources / gpg signature fixes Modified: libxft/trunk/PKGBUILD --+ PKGBUILD |8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-17 20:58:16 UTC (rev 286851) +++ PKGBUILD2017-01-17 21:00:10 UTC (rev 286852) @@ -8,11 +8,13 @@ pkgdesc="FreeType-based font drawing library for X" arch=('i686' 'x86_64') license=('custom') -url="http://xorg.freedesktop.org/"; +url="https://xorg.freedesktop.org/"; depends=('fontconfig' 'libxrender') makedepends=('pkgconfig') -source=(${url}/releases/individual/lib/libXft-${pkgver}.tar.bz2) -sha256sums=('f5a3c824761df351ca91827ac221090943ef28b248573486050de89f4bfcdc4c') +source=(${url}/releases/individual/lib/libXft-${pkgver}.tar.bz2{,.sig}) +sha256sums=('f5a3c824761df351ca91827ac221090943ef28b248573486050de89f4bfcdc4c' +'SKIP') +valigpgpkyes=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith " build() { cd "${srcdir}/libXft-${pkgver}"
[arch-commits] Commit in libxkbui/repos/extra-i686 (LICENSE LICENSE PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 20:51:07 Author: andyrtr Revision: 286841 archrelease: copy trunk to extra-i686 Added: libxkbui/repos/extra-i686/LICENSE (from rev 286840, libxkbui/trunk/LICENSE) libxkbui/repos/extra-i686/PKGBUILD (from rev 286840, libxkbui/trunk/PKGBUILD) Deleted: libxkbui/repos/extra-i686/LICENSE libxkbui/repos/extra-i686/PKGBUILD --+ LICENSE | 50 +- PKGBUILD | 56 2 files changed, 53 insertions(+), 53 deletions(-) Deleted: LICENSE === --- LICENSE 2017-01-17 20:50:59 UTC (rev 286840) +++ LICENSE 2017-01-17 20:51:07 UTC (rev 286841) @@ -1,25 +0,0 @@ -/ - Copyright (c) 1996 by Silicon Graphics Computer Systems, Inc. - - Permission to use, copy, modify, and distribute this - software and its documentation for any purpose and without - fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright - notice and this permission notice appear in supporting - documentation, and that the name of Silicon Graphics not be - used in advertising or publicity pertaining to distribution - of the software without specific prior written permission. - Silicon Graphics makes no representation about the suitability - of this software for any purpose. It is provided "as is" - without any express or implied warranty. - - SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS - SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON - GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL - DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, - DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH - THE USE OR PERFORMANCE OF THIS SOFTWARE. - - / Copied: libxkbui/repos/extra-i686/LICENSE (from rev 286840, libxkbui/trunk/LICENSE) === --- LICENSE (rev 0) +++ LICENSE 2017-01-17 20:51:07 UTC (rev 286841) @@ -0,0 +1,25 @@ +/ + Copyright (c) 1996 by Silicon Graphics Computer Systems, Inc. + + Permission to use, copy, modify, and distribute this + software and its documentation for any purpose and without + fee is hereby granted, provided that the above copyright + notice appear in all copies and that both that copyright + notice and this permission notice appear in supporting + documentation, and that the name of Silicon Graphics not be + used in advertising or publicity pertaining to distribution + of the software without specific prior written permission. + Silicon Graphics makes no representation about the suitability + of this software for any purpose. It is provided "as is" + without any express or implied warranty. + + SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS + SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL + DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, + DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH + THE USE OR PERFORMANCE OF THIS SOFTWARE. + + / Deleted: PKGBUILD === --- PKGBUILD2017-01-17 20:50:59 UTC (rev 286840) +++ PKGBUILD2017-01-17 20:51:07 UTC (rev 286841) @@ -1,28 +0,0 @@ -# $Id$ -# Maintainer: Jan de Groot - -pkgname=libxkbui -pkgver=1.0.2 -pkgrel=5 -pkgdesc="X11 keyboard UI presentation library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org/"; -license=('custom') -depends=('libxt' 'libxkbfile') -makedepends=('pkgconfig') -source=("${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2" -'LICENSE') -md5sums=('1143e456f7429e18e88f2eadb2f2b6b1' - 'd1efaa1271fc028cd5bec33f836ee9ef') - -build() { - cd ${pkgname}-${pkgver} - ./configure --prefix=/usr - make -} - -package() { - cd ${pkgname}-${pkgver} - make DESTDIR="${pkgdir}" install - install -D -m644 ../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} Copied: libxkbui/repos/extra-i686/PKGBUILD (from rev 286840, libxkbui/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 20:51:07 UTC (rev 286841) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgname=libxkbui +pkgver=1.0.2 +pkgre
[arch-commits] Commit in libxkbfile/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 20:52:00 Author: andyrtr Revision: 286845 archrelease: copy trunk to extra-x86_64 Added: libxkbfile/repos/extra-x86_64/PKGBUILD (from rev 286844, libxkbfile/trunk/PKGBUILD) Deleted: libxkbfile/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 60 ++-- 1 file changed, 30 insertions(+), 30 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 20:51:50 UTC (rev 286844) +++ PKGBUILD2017-01-17 20:52:00 UTC (rev 286845) @@ -1,30 +0,0 @@ -# $Id$ -# Maintainer: Jan de Groot - -pkgname=libxkbfile -pkgver=1.0.9 -pkgrel=1 -pkgdesc="X11 keyboard file manipulation library" -arch=('i686' 'x86_64') -license=('custom') -url="http://xorg.freedesktop.org/"; -depends=('libx11') -makedepends=('xorg-util-macros') -source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2{,.sig}) -sha256sums=('51817e0530961975d9513b773960b4edd275f7d5c72293d5a151ed4f42aeb16a' -'SKIP') -validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith - -build() { - cd ${pkgname}-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd ${pkgname}-${pkgver} - make DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxkbfile/repos/extra-x86_64/PKGBUILD (from rev 286844, libxkbfile/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 20:52:00 UTC (rev 286845) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgname=libxkbfile +pkgver=1.0.9 +pkgrel=1 +pkgdesc="X11 keyboard file manipulation library" +arch=('i686' 'x86_64') +license=('custom') +url="https://xorg.freedesktop.org/"; +depends=('libx11') +makedepends=('xorg-util-macros') +source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2{,.sig}) +sha256sums=('51817e0530961975d9513b773960b4edd275f7d5c72293d5a151ed4f42aeb16a' +'SKIP') +validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith + +build() { + cd ${pkgname}-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libxi/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 20:58:16 Author: andyrtr Revision: 286851 archrelease: copy trunk to extra-x86_64 Added: libxi/repos/extra-x86_64/PKGBUILD (from rev 286850, libxi/trunk/PKGBUILD) Deleted: libxi/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 64 ++--- 1 file changed, 32 insertions(+), 32 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 20:58:06 UTC (rev 286850) +++ PKGBUILD2017-01-17 20:58:16 UTC (rev 286851) @@ -1,32 +0,0 @@ -# $Id$ -# Maintainer: AndyRTR -# Maintainer: Jan de Groot - -pkgname=libxi -pkgver=1.7.8 -pkgrel=1 -pkgdesc="X11 Input extension library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org"; -depends=('libxext' 'inputproto') -makedepends=('pkgconfig' 'xorg-util-macros' 'libxfixes' 'automake') -license=('custom') -source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2{,.sig}) -sha256sums=('d8f2fa8d53141c41ff521627df9b2fa9c05f6f142fd9881152bab36549ac27bb' -'SKIP') -validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer -validpgpkeys+=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb - -build() { - cd libXi-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd libXi-${pkgver} - make DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxi/repos/extra-x86_64/PKGBUILD (from rev 286850, libxi/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 20:58:16 UTC (rev 286851) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: AndyRTR +# Maintainer: Jan de Groot + +pkgname=libxi +pkgver=1.7.8 +pkgrel=1 +pkgdesc="X11 Input extension library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org"; +depends=('libxext' 'inputproto') +makedepends=('pkgconfig' 'xorg-util-macros' 'libxfixes' 'automake') +license=('custom') +source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2{,.sig}) +sha256sums=('d8f2fa8d53141c41ff521627df9b2fa9c05f6f142fd9881152bab36549ac27bb' +'SKIP') +validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer +validpgpkeys+=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb + +build() { + cd libXi-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd libXi-${pkgver} + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}
[arch-commits] Commit in libxi/repos/extra-i686 (PKGBUILD PKGBUILD)
Date: Tuesday, January 17, 2017 @ 20:58:06 Author: andyrtr Revision: 286850 archrelease: copy trunk to extra-i686 Added: libxi/repos/extra-i686/PKGBUILD (from rev 286849, libxi/trunk/PKGBUILD) Deleted: libxi/repos/extra-i686/PKGBUILD --+ PKGBUILD | 64 ++--- 1 file changed, 32 insertions(+), 32 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2017-01-17 20:57:58 UTC (rev 286849) +++ PKGBUILD2017-01-17 20:58:06 UTC (rev 286850) @@ -1,32 +0,0 @@ -# $Id$ -# Maintainer: AndyRTR -# Maintainer: Jan de Groot - -pkgname=libxi -pkgver=1.7.8 -pkgrel=1 -pkgdesc="X11 Input extension library" -arch=('i686' 'x86_64') -url="http://xorg.freedesktop.org"; -depends=('libxext' 'inputproto') -makedepends=('pkgconfig' 'xorg-util-macros' 'libxfixes' 'automake') -license=('custom') -source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2{,.sig}) -sha256sums=('d8f2fa8d53141c41ff521627df9b2fa9c05f6f142fd9881152bab36549ac27bb' -'SKIP') -validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer -validpgpkeys+=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb - -build() { - cd libXi-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc --disable-static - make -} - -package() { - cd libXi-${pkgver} - make DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: libxi/repos/extra-i686/PKGBUILD (from rev 286849, libxi/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2017-01-17 20:58:06 UTC (rev 286850) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: AndyRTR +# Maintainer: Jan de Groot + +pkgname=libxi +pkgver=1.7.8 +pkgrel=1 +pkgdesc="X11 Input extension library" +arch=('i686' 'x86_64') +url="https://xorg.freedesktop.org"; +depends=('libxext' 'inputproto') +makedepends=('pkgconfig' 'xorg-util-macros' 'libxfixes' 'automake') +license=('custom') +source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2{,.sig}) +sha256sums=('d8f2fa8d53141c41ff521627df9b2fa9c05f6f142fd9881152bab36549ac27bb' +'SKIP') +validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer +validpgpkeys+=('C41C985FDCF1E5364576638B687393EE37D128F8') # Matthieu Herrb + +build() { + cd libXi-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --disable-static + make +} + +package() { + cd libXi-${pkgver} + make DESTDIR="${pkgdir}" install + + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +}