[arch-commits] Commit in lib32-libcurl-gnutls/repos (2 files)
Date: Wednesday, September 5, 2018 @ 06:58:49 Author: eworm Revision: 376918 archrelease: copy trunk to multilib-testing-x86_64 Added: lib32-libcurl-gnutls/repos/multilib-testing-x86_64/ lib32-libcurl-gnutls/repos/multilib-testing-x86_64/PKGBUILD (from rev 376917, lib32-libcurl-gnutls/trunk/PKGBUILD) --+ PKGBUILD | 61 + 1 file changed, 61 insertions(+) Copied: lib32-libcurl-gnutls/repos/multilib-testing-x86_64/PKGBUILD (from rev 376917, lib32-libcurl-gnutls/trunk/PKGBUILD) === --- multilib-testing-x86_64/PKGBUILD(rev 0) +++ multilib-testing-x86_64/PKGBUILD2018-09-05 06:58:49 UTC (rev 376918) @@ -0,0 +1,61 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: Lizao (Larry) Li + +pkgname=lib32-libcurl-gnutls +pkgver=7.61.1 +pkgrel=1 +pkgdesc='An URL retrieval library (linked against gnutls)' +arch=('x86_64') +url='https://curl.haxx.se' +license=('MIT') +depends=('lib32-curl' 'lib32-glibc' 'lib32-gnutls' 'lib32-libpsl' + 'lib32-libssh2' 'lib32-nettle' 'lib32-zlib' 'libcurl-gnutls') +makedepends=('gcc-multilib') +options=('strip') +source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc}) +validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg +sha512sums=('6469a3ff27623826bf29a9256ba730ae0a5135c20b27377027554e19ed26be6d0225db0101b60e7f12aa22d55eccaa53f4015414ef5736ee6002c6d780ed513f' +'SKIP') + +build() { + cd curl-${pkgver} + + export CC='gcc -m32' + export PKG_CONFIG_PATH='/usr/lib32/pkgconfig' + + ./configure \ +--prefix='/usr' \ +--libdir='/usr/lib32' \ +--disable-ldap \ +--disable-ldaps \ +--disable-manual \ +--disable-versioned-symbols \ +--enable-ipv6 \ +--enable-threaded-resolver \ +--without-gssapi \ +--without-libidn \ +--without-ssl \ +--with-gnutls='/usr' \ +--with-random='/dev/urandom' \ +--with-ca-bundle='/etc/ssl/certs/ca-certificates.crt' + + make -C lib +} + +package() { + cd curl-${pkgver} + + make -C lib DESTDIR="${pkgdir}" install + + mv "${pkgdir}"/usr/lib32/libcurl{,-gnutls}.so.4.5.0 + rm "${pkgdir}"/usr/lib32/libcurl.{a,so}* + for version in 3 4 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0; do +ln -s libcurl-gnutls.so.4.5.0 "${pkgdir}"/usr/lib32/libcurl-gnutls.so.${version} + done + + install -dm 755 "${pkgdir}"/usr/share/licenses + ln -s libcurl-gnutls "${pkgdir}"/usr/share/licenses/lib32-libcurl-gnutls +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in lib32-curl/repos (2 files)
Date: Wednesday, September 5, 2018 @ 06:59:00 Author: eworm Revision: 376920 archrelease: copy trunk to multilib-testing-x86_64 Added: lib32-curl/repos/multilib-testing-x86_64/ lib32-curl/repos/multilib-testing-x86_64/PKGBUILD (from rev 376919, lib32-curl/trunk/PKGBUILD) --+ PKGBUILD | 58 ++ 1 file changed, 58 insertions(+) Copied: lib32-curl/repos/multilib-testing-x86_64/PKGBUILD (from rev 376919, lib32-curl/trunk/PKGBUILD) === --- multilib-testing-x86_64/PKGBUILD(rev 0) +++ multilib-testing-x86_64/PKGBUILD2018-09-05 06:59:00 UTC (rev 376920) @@ -0,0 +1,58 @@ +# $Id$ +# Maintainer: Daniel Wallace +# Contributor: Dave Reisner +# Contributor: Angel Velasquez +# Contributor: Eric Belanger +# Contributor: Lucien Immink +# Contributor: Daniel J Griffiths + +pkgname=lib32-curl +_pkgname=curl +pkgver=7.61.1 +pkgrel=1 +pkgdesc="An URL retrieval utility and library (32-bit)" +arch=('x86_64') +url="https://curl.haxx.se"; +license=('MIT') +depends=('lib32-libssh2' 'lib32-krb5' 'lib32-libpsl' 'lib32-zlib' "${_pkgname}") +source=("https://curl.haxx.se/download/$_pkgname-$pkgver.tar.gz"{,.asc}) +sha512sums=('6469a3ff27623826bf29a9256ba730ae0a5135c20b27377027554e19ed26be6d0225db0101b60e7f12aa22d55eccaa53f4015414ef5736ee6002c6d780ed513f' +'SKIP') +validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg + +build() { + cd "$_pkgname-$pkgver" + + export CC="gcc -m32" + export CXX="g++ -m32" + export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --disable-dependency-tracking \ + --disable-ldap \ + --disable-ldaps \ + --enable-ipv6 \ + --enable-manual \ + --enable-versioned-symbols \ + --enable-threaded-resolver \ + --with-gssapi \ + --with-random=/dev/urandom \ + --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt \ + --libdir=/usr/lib32 + + make +} + +package() { + cd "$_pkgname-$pkgver" + + make DESTDIR="$pkgdir" install + + rm -rf "${pkgdir}"/usr/{share,bin,include} + + # license + install -d "$pkgdir/usr/share/licenses" + ln -s "$_pkgname" "$pkgdir/usr/share/licenses/$pkgname" +}
[arch-commits] Commit in lib32-curl/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 06:58:56 Author: eworm Revision: 376919 upgpkg: lib32-curl 7.61.1-1 new upstream release Modified: lib32-curl/trunk/PKGBUILD --+ PKGBUILD |7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 06:58:49 UTC (rev 376918) +++ PKGBUILD2018-09-05 06:58:56 UTC (rev 376919) @@ -8,7 +8,7 @@ pkgname=lib32-curl _pkgname=curl -pkgver=7.61.0 +pkgver=7.61.1 pkgrel=1 pkgdesc="An URL retrieval utility and library (32-bit)" arch=('x86_64') @@ -16,10 +16,9 @@ license=('MIT') depends=('lib32-libssh2' 'lib32-krb5' 'lib32-libpsl' 'lib32-zlib' "${_pkgname}") source=("https://curl.haxx.se/download/$_pkgname-$pkgver.tar.gz"{,.asc}) -sha512sums=('e55193d1893e7619c8a599299bc030db1307260b19803d01983d4229820e3da8afd274eaee9c5be57911591ffe1fe44ac10d2da38f2d3d3204d8ce9df8d06a93' +sha512sums=('6469a3ff27623826bf29a9256ba730ae0a5135c20b27377027554e19ed26be6d0225db0101b60e7f12aa22d55eccaa53f4015414ef5736ee6002c6d780ed513f' 'SKIP') -validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2' # Daniel Stenberg - '914C533DF9B2ADA2204F586D78E11C6B279D5C91') # Daniel Stenberg (old key) +validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg build() { cd "$_pkgname-$pkgver"
[arch-commits] Commit in lib32-libcurl-gnutls/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 06:58:45 Author: eworm Revision: 376917 upgpkg: lib32-libcurl-gnutls 7.61.1-1 new upstream release Modified: lib32-libcurl-gnutls/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 06:58:37 UTC (rev 376916) +++ PKGBUILD2018-09-05 06:58:45 UTC (rev 376917) @@ -3,7 +3,7 @@ # Contributor: Lizao (Larry) Li pkgname=lib32-libcurl-gnutls -pkgver=7.61.0 +pkgver=7.61.1 pkgrel=1 pkgdesc='An URL retrieval library (linked against gnutls)' arch=('x86_64') @@ -15,7 +15,7 @@ options=('strip') source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc}) validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg -sha512sums=('e55193d1893e7619c8a599299bc030db1307260b19803d01983d4229820e3da8afd274eaee9c5be57911591ffe1fe44ac10d2da38f2d3d3204d8ce9df8d06a93' +sha512sums=('6469a3ff27623826bf29a9256ba730ae0a5135c20b27377027554e19ed26be6d0225db0101b60e7f12aa22d55eccaa53f4015414ef5736ee6002c6d780ed513f' 'SKIP') build() {
[arch-commits] Commit in lib32-libcurl-compat/repos (2 files)
Date: Wednesday, September 5, 2018 @ 06:58:37 Author: eworm Revision: 376916 archrelease: copy trunk to multilib-testing-x86_64 Added: lib32-libcurl-compat/repos/multilib-testing-x86_64/ lib32-libcurl-compat/repos/multilib-testing-x86_64/PKGBUILD (from rev 376915, lib32-libcurl-compat/trunk/PKGBUILD) --+ PKGBUILD | 58 ++ 1 file changed, 58 insertions(+) Copied: lib32-libcurl-compat/repos/multilib-testing-x86_64/PKGBUILD (from rev 376915, lib32-libcurl-compat/trunk/PKGBUILD) === --- multilib-testing-x86_64/PKGBUILD(rev 0) +++ multilib-testing-x86_64/PKGBUILD2018-09-05 06:58:37 UTC (rev 376916) @@ -0,0 +1,58 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: Piotr Balcerowski + +pkgname=lib32-libcurl-compat +pkgver=7.61.1 +pkgrel=1 +pkgdesc='An URL retrieval library (without versioned symbols)' +arch=('x86_64') +url='https://curl.haxx.se' +license=('MIT') +depends=('lib32-curl' 'lib32-glibc' 'lib32-krb5' 'lib32-libssh2' 'lib32-libpsl' + 'lib32-openssl' 'lib32-zlib' 'libcurl-compat') +options=('strip') +validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg +source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc}) +sha512sums=('6469a3ff27623826bf29a9256ba730ae0a5135c20b27377027554e19ed26be6d0225db0101b60e7f12aa22d55eccaa53f4015414ef5736ee6002c6d780ed513f' +'SKIP') + +build() { + cd curl-${pkgver} + + export CC='gcc -m32' + export PKG_CONFIG_PATH='/usr/lib32/pkgconfig' + + ./configure \ +--prefix='/usr' \ +--libdir='/usr/lib32' \ +--disable-ldap \ +--disable-ldaps \ +--disable-manual \ +--disable-versioned-symbols \ +--enable-ipv6 \ +--enable-threaded-resolver \ +--with-gssapi \ +--with-random='/dev/urandom' \ +--with-ca-bundle='/etc/ssl/certs/ca-certificates.crt' + + sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + make -C lib +} + +package() { + cd curl-${pkgver} + + make -C lib DESTDIR="${pkgdir}" install + + mv "${pkgdir}"/usr/lib32/libcurl{,-compat}.so.4.5.0 + rm "${pkgdir}"/usr/lib32/libcurl.{a,so}* + for version in 3 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0; do +ln -s libcurl-compat.so.4.5.0 "${pkgdir}"/usr/lib32/libcurl.so.${version} + done + + install -dm 755 "${pkgdir}"/usr/share/licenses + ln -s libcurl-compat "${pkgdir}"/usr/share/licenses/lib32-libcurl-compat +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in lib32-libcurl-compat/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 06:58:33 Author: eworm Revision: 376915 upgpkg: lib32-libcurl-compat 7.61.1-1 new upstream release Modified: lib32-libcurl-compat/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 06:58:16 UTC (rev 376914) +++ PKGBUILD2018-09-05 06:58:33 UTC (rev 376915) @@ -3,7 +3,7 @@ # Contributor: Piotr Balcerowski pkgname=lib32-libcurl-compat -pkgver=7.61.0 +pkgver=7.61.1 pkgrel=1 pkgdesc='An URL retrieval library (without versioned symbols)' arch=('x86_64') @@ -14,7 +14,7 @@ options=('strip') validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc}) -sha512sums=('e55193d1893e7619c8a599299bc030db1307260b19803d01983d4229820e3da8afd274eaee9c5be57911591ffe1fe44ac10d2da38f2d3d3204d8ce9df8d06a93' +sha512sums=('6469a3ff27623826bf29a9256ba730ae0a5135c20b27377027554e19ed26be6d0225db0101b60e7f12aa22d55eccaa53f4015414ef5736ee6002c6d780ed513f' 'SKIP') build() {
[arch-commits] Commit in libcurl-gnutls/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 06:58:12 Author: eworm Revision: 376913 upgpkg: libcurl-gnutls 7.61.1-1 new upstream release Modified: libcurl-gnutls/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 06:58:03 UTC (rev 376912) +++ PKGBUILD2018-09-05 06:58:12 UTC (rev 376913) @@ -3,7 +3,7 @@ # Contributor: Lizao (Larry) Li pkgname=libcurl-gnutls -pkgver=7.61.0 +pkgver=7.61.1 pkgrel=1 pkgdesc='An URL retrieval library (linked against gnutls)' arch=('x86_64') @@ -14,7 +14,7 @@ options=('strip') source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc}) validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg -sha512sums=('e55193d1893e7619c8a599299bc030db1307260b19803d01983d4229820e3da8afd274eaee9c5be57911591ffe1fe44ac10d2da38f2d3d3204d8ce9df8d06a93' +sha512sums=('6469a3ff27623826bf29a9256ba730ae0a5135c20b27377027554e19ed26be6d0225db0101b60e7f12aa22d55eccaa53f4015414ef5736ee6002c6d780ed513f' 'SKIP') build() {
[arch-commits] Commit in libcurl-gnutls/repos (2 files)
Date: Wednesday, September 5, 2018 @ 06:58:16 Author: eworm Revision: 376914 archrelease: copy trunk to community-testing-x86_64 Added: libcurl-gnutls/repos/community-testing-x86_64/ libcurl-gnutls/repos/community-testing-x86_64/PKGBUILD (from rev 376913, libcurl-gnutls/trunk/PKGBUILD) --+ PKGBUILD | 56 1 file changed, 56 insertions(+) Copied: libcurl-gnutls/repos/community-testing-x86_64/PKGBUILD (from rev 376913, libcurl-gnutls/trunk/PKGBUILD) === --- community-testing-x86_64/PKGBUILD (rev 0) +++ community-testing-x86_64/PKGBUILD 2018-09-05 06:58:16 UTC (rev 376914) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: Lizao (Larry) Li + +pkgname=libcurl-gnutls +pkgver=7.61.1 +pkgrel=1 +pkgdesc='An URL retrieval library (linked against gnutls)' +arch=('x86_64') +url='https://curl.haxx.se' +license=('MIT') +depends=('curl' 'glibc' 'gnutls' 'libpsl' 'nettle' 'zlib' + 'libssh2.so') +options=('strip') +source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc}) +validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg +sha512sums=('6469a3ff27623826bf29a9256ba730ae0a5135c20b27377027554e19ed26be6d0225db0101b60e7f12aa22d55eccaa53f4015414ef5736ee6002c6d780ed513f' +'SKIP') + +build() { + cd curl-${pkgver} + + ./configure \ +--prefix='/usr' \ +--disable-ldap \ +--disable-ldaps \ +--disable-manual \ +--disable-versioned-symbols \ +--enable-ipv6 \ +--enable-threaded-resolver \ +--without-gssapi \ +--without-libidn \ +--without-ssl \ +--with-gnutls='/usr' \ +--with-random='/dev/urandom' \ +--with-ca-bundle='/etc/ssl/certs/ca-certificates.crt' + + make -C lib +} + +package() { + cd curl-${pkgver} + + make -C lib DESTDIR="${pkgdir}" install + + mv "${pkgdir}"/usr/lib/libcurl{,-gnutls}.so.4.5.0 + rm "${pkgdir}"/usr/lib/libcurl.{a,so}* + for version in 3 4 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0; do +ln -s libcurl-gnutls.so.4.5.0 "${pkgdir}"/usr/lib/libcurl-gnutls.so.${version} + done + + install -dm 755 "${pkgdir}"/usr/share/licenses + ln -s curl "${pkgdir}"/usr/share/licenses/libcurl-gnutls +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in libcurl-compat/repos (2 files)
Date: Wednesday, September 5, 2018 @ 06:58:03 Author: eworm Revision: 376912 archrelease: copy trunk to community-testing-x86_64 Added: libcurl-compat/repos/community-testing-x86_64/ libcurl-compat/repos/community-testing-x86_64/PKGBUILD (from rev 376911, libcurl-compat/trunk/PKGBUILD) --+ PKGBUILD | 54 ++ 1 file changed, 54 insertions(+) Copied: libcurl-compat/repos/community-testing-x86_64/PKGBUILD (from rev 376911, libcurl-compat/trunk/PKGBUILD) === --- community-testing-x86_64/PKGBUILD (rev 0) +++ community-testing-x86_64/PKGBUILD 2018-09-05 06:58:03 UTC (rev 376912) @@ -0,0 +1,54 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: Piotr Balcerowski + +pkgname=libcurl-compat +pkgver=7.61.1 +pkgrel=1 +pkgdesc='An URL retrieval library (without versioned symbols)' +arch=('x86_64') +url='https://curl.haxx.se' +license=('MIT') +depends=('curl' 'glibc' 'krb5' 'openssl' 'libpsl' 'zlib' + 'libssh2.so') +options=('strip') +source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc}) +validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg +sha512sums=('6469a3ff27623826bf29a9256ba730ae0a5135c20b27377027554e19ed26be6d0225db0101b60e7f12aa22d55eccaa53f4015414ef5736ee6002c6d780ed513f' +'SKIP') + +build() { + cd curl-${pkgver} + + ./configure \ +--prefix='/usr' \ +--disable-ldap \ +--disable-ldaps \ +--disable-manual \ +--disable-versioned-symbols \ +--enable-ipv6 \ +--enable-threaded-resolver \ +--with-gssapi \ +--with-random='/dev/urandom' \ +--with-ca-bundle='/etc/ssl/certs/ca-certificates.crt' + + sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + make -C lib +} + +package() { + cd curl-${pkgver} + + make -C lib DESTDIR="${pkgdir}" install + + mv "${pkgdir}"/usr/lib/libcurl{,-compat}.so.4.5.0 + rm "${pkgdir}"/usr/lib/libcurl.{a,so}* + for version in 3 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0; do +ln -s libcurl-compat.so.4.5.0 "${pkgdir}"/usr/lib/libcurl.so.${version} + done + + install -dm 755 "${pkgdir}"/usr/share/licenses + ln -s curl "${pkgdir}"/usr/share/licenses/libcurl-compat +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in libcurl-compat/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 06:57:59 Author: eworm Revision: 376911 upgpkg: libcurl-compat 7.61.1-1 new upstream release Modified: libcurl-compat/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 22:53:12 UTC (rev 376910) +++ PKGBUILD2018-09-05 06:57:59 UTC (rev 376911) @@ -3,7 +3,7 @@ # Contributor: Piotr Balcerowski pkgname=libcurl-compat -pkgver=7.61.0 +pkgver=7.61.1 pkgrel=1 pkgdesc='An URL retrieval library (without versioned symbols)' arch=('x86_64') @@ -14,7 +14,7 @@ options=('strip') source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc}) validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg -sha512sums=('e55193d1893e7619c8a599299bc030db1307260b19803d01983d4229820e3da8afd274eaee9c5be57911591ffe1fe44ac10d2da38f2d3d3204d8ce9df8d06a93' +sha512sums=('6469a3ff27623826bf29a9256ba730ae0a5135c20b27377027554e19ed26be6d0225db0101b60e7f12aa22d55eccaa53f4015414ef5736ee6002c6d780ed513f' 'SKIP') build() {
[arch-commits] Commit in curl/repos (testing-x86_64 testing-x86_64/PKGBUILD)
Date: Wednesday, September 5, 2018 @ 06:48:13 Author: eworm Revision: 333421 archrelease: copy trunk to testing-x86_64 Added: curl/repos/testing-x86_64/ curl/repos/testing-x86_64/PKGBUILD (from rev 333420, curl/trunk/PKGBUILD) --+ PKGBUILD | 50 ++ 1 file changed, 50 insertions(+) Copied: curl/repos/testing-x86_64/PKGBUILD (from rev 333420, curl/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2018-09-05 06:48:13 UTC (rev 333421) @@ -0,0 +1,50 @@ +# $Id$ +# Maintainer: Dave Reisner +# Contributor: Angel Velasquez +# Contributor: Eric Belanger +# Contributor: Lucien Immink +# Contributor: Daniel J Griffiths + +pkgname=curl +pkgver=7.61.1 +pkgrel=1 +pkgdesc="An URL retrieval utility and library" +arch=('x86_64') +url="https://curl.haxx.se"; +license=('MIT') +depends=('ca-certificates' 'krb5' 'libssh2' 'openssl' 'zlib' 'libpsl' 'libnghttp2') +provides=('libcurl.so') +options=('strip' 'debug') +source=("https://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}) +sha512sums=('6469a3ff27623826bf29a9256ba730ae0a5135c20b27377027554e19ed26be6d0225db0101b60e7f12aa22d55eccaa53f4015414ef5736ee6002c6d780ed513f' +'SKIP') +validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg + +build() { + cd "$pkgname-$pkgver" + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --disable-ldap \ + --disable-ldaps \ + --disable-manual \ + --enable-ipv6 \ + --enable-versioned-symbols \ + --enable-threaded-resolver \ + --with-gssapi \ + --with-random=/dev/urandom \ + --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt + + make +} + +package() { + cd "$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" install -C scripts + + # license + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" +}
[arch-commits] Commit in curl/trunk (2 files)
Date: Wednesday, September 5, 2018 @ 06:48:05 Author: eworm Revision: 333420 upgpkg: curl 7.61.1-1 new upstream release Modified: curl/trunk/PKGBUILD Deleted: curl/trunk/0001-header-output-switch-off-all-styles-not-just-unbold.patch + 0001-header-output-switch-off-all-styles-not-just-unbold.patch | 30 -- PKGBUILD | 21 ++- 2 files changed, 6 insertions(+), 45 deletions(-) Deleted: 0001-header-output-switch-off-all-styles-not-just-unbold.patch === --- 0001-header-output-switch-off-all-styles-not-just-unbold.patch 2018-09-05 06:14:53 UTC (rev 333419) +++ 0001-header-output-switch-off-all-styles-not-just-unbold.patch 2018-09-05 06:48:05 UTC (rev 333420) @@ -1,30 +0,0 @@ -From 48ba5ea4618a88ce9b3a4dbb51a0d8311936d308 Mon Sep 17 00:00:00 2001 -From: Daniel Stenberg -Date: Thu, 12 Jul 2018 11:04:00 +0200 -Subject: [PATCH] header output: switch off all styles, not just unbold - -... the "unbold" sequence doesn't work on the mac Terminal. - -Reported-by: Zero King -Fixes #2736 -Closes #2738 - src/tool_cb_hdr.c | 5 - - 1 file changed, 4 insertions(+), 1 deletion(-) - -diff --git a/src/tool_cb_hdr.c b/src/tool_cb_hdr.c -index 88ce5e13b8..6419b72048 100644 a/src/tool_cb_hdr.c -+++ b/src/tool_cb_hdr.c -@@ -42,7 +42,10 @@ static char *parse_filename(const char *ptr, size_t len); - #define BOLDOFF - #else - #define BOLD "\x1b[1m" --#define BOLDOFF "\x1b[21m" -+/* Switch off bold by settting "all attributes off" since the explicit -+ bold-off code (21) isn't supported everywhere - like in the mac -+ Terminal. */ -+#define BOLDOFF "\x1b[0m" - #endif - - /* Modified: PKGBUILD === --- PKGBUILD2018-09-05 06:14:53 UTC (rev 333419) +++ PKGBUILD2018-09-05 06:48:05 UTC (rev 333420) @@ -6,8 +6,8 @@ # Contributor: Daniel J Griffiths pkgname=curl -pkgver=7.61.0 -pkgrel=2 +pkgver=7.61.1 +pkgrel=1 pkgdesc="An URL retrieval utility and library" arch=('x86_64') url="https://curl.haxx.se"; @@ -15,20 +15,11 @@ depends=('ca-certificates' 'krb5' 'libssh2' 'openssl' 'zlib' 'libpsl' 'libnghttp2') provides=('libcurl.so') options=('strip' 'debug') -source=("https://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc} -'0001-header-output-switch-off-all-styles-not-just-unbold.patch') -sha512sums=('e55193d1893e7619c8a599299bc030db1307260b19803d01983d4229820e3da8afd274eaee9c5be57911591ffe1fe44ac10d2da38f2d3d3204d8ce9df8d06a93' -'SKIP' - 'af8df41040778853bef695f0d1cde78efbb907a5f49bd596393096791daa90fccc556a9e8701a7ab8db379fbefe27fffc590c95f33b0917406c1fe16a036281d') -validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2' # Daniel Stenberg - '914C533DF9B2ADA2204F586D78E11C6B279D5C91') # Daniel Stenberg (old key) +source=("https://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc}) +sha512sums=('6469a3ff27623826bf29a9256ba730ae0a5135c20b27377027554e19ed26be6d0225db0101b60e7f12aa22d55eccaa53f4015414ef5736ee6002c6d780ed513f' +'SKIP') +validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg -prepare() { - cd "$pkgname-$pkgver" - - patch -Np1 < ../0001-header-output-switch-off-all-styles-not-just-unbold.patch -} - build() { cd "$pkgname-$pkgver"
[arch-commits] Commit in xf86-video-intel/repos (4 files)
Date: Wednesday, September 5, 2018 @ 06:14:53 Author: andyrtr Revision: 333419 archrelease: copy trunk to testing-x86_64 Added: xf86-video-intel/repos/testing-x86_64/ xf86-video-intel/repos/testing-x86_64/0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch (from rev 333418, xf86-video-intel/trunk/0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch) xf86-video-intel/repos/testing-x86_64/PKGBUILD (from rev 333418, xf86-video-intel/trunk/PKGBUILD) xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install (from rev 333418, xf86-video-intel/trunk/xf86-video-intel.install) + 0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch | 93 +++ PKGBUILD | 89 ++ xf86-video-intel.install | 21 ++ 3 files changed, 203 insertions(+) Copied: xf86-video-intel/repos/testing-x86_64/0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch (from rev 333418, xf86-video-intel/trunk/0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch) === --- testing-x86_64/0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch (rev 0) +++ testing-x86_64/0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch 2018-09-05 06:14:53 UTC (rev 333419) @@ -0,0 +1,93 @@ +From e85424325911626556fbe5a313c698a5da701163 Mon Sep 17 00:00:00 2001 +From: Peter Wu +Date: Mon, 13 Aug 2018 22:59:50 +0200 +Subject: [PATCH xf86-video-intel] SNA: fix PRIME output support since xserver + 1.20 + +Since xorg-server 1.20, an external monitor would remain blank when used +in a PRIME output slave setup. Only a cursor was visible. The cause is +"Make PixmapDirtyUpdateRec::src a DrawablePtr" in xserver, the "src" +pointer might point to the root window (created by the server) instead +of a pixmap (as created by xf86-video-intel). Use get_drawable_pixmap to +handle both cases. + +When built with -fsanitize=address, the following test will trigger a +heap-buffer-overflow error due to to_sna_from_pixmap receiving a window +instead of a pixmap. + +Test on a hybrid graphics laptop (Intel + modesetting/nouveau): + +xrandr --setprovideroutputsource modesetting Intel +xrandr --output DP-1-1 --mode 2560x1440 # should not crash +glxgears # should display gears on both screens + +Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=100086 +Signed-off-by: Peter Wu +--- +Tested with xserver 1.20.1 with ASAN enabled. Survives multiple +resolution changes, works with a Plasma desktop session, it seems +stable. Something like this patch is required to make multi-monitor +setups usable in a hybrid graphics setting with Xorg 1.20. +--- + src/sna/sna_accel.c | 18 ++ + 1 file changed, 18 insertions(+) + +diff --git a/src/sna/sna_accel.c b/src/sna/sna_accel.c +index 2f669bcf..80b116a3 100644 +--- a/src/sna/sna_accel.c b/src/sna/sna_accel.c +@@ -17510,7 +17510,11 @@ static bool has_offload_slaves(struct sna *sna) + PixmapDirtyUpdatePtr dirty; + + xorg_list_for_each_entry(dirty, &screen->pixmap_dirty_list, ent) { ++#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC ++ assert(dirty->src == &sna->front->drawable); ++#else + assert(dirty->src == sna->front); ++#endif + if (RegionNotEmpty(DamageRegion(dirty->damage))) + return true; + } +@@ -17671,7 +17675,11 @@ static void sna_accel_post_damage(struct sna *sna) + if (RegionNil(damage)) + continue; + ++#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC ++ src = get_drawable_pixmap(dirty->src); ++#else + src = dirty->src; ++#endif + dst = dirty->slave_dst->master_pixmap; + + region.extents.x1 = dirty->x; +@@ -17922,9 +17930,15 @@ migrate_dirty_tracking(PixmapPtr old_front, PixmapPtr new_front) + PixmapDirtyUpdatePtr dirty, safe; + + xorg_list_for_each_entry_safe(dirty, safe, &screen->pixmap_dirty_list, ent) { ++#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC ++ assert(dirty->src == &old_front->drawable); ++ if (dirty->src != &old_front->drawable) ++ continue; ++#else + assert(dirty->src == old_front); + if (dirty->src != old_front) + continue; ++#endif + + DamageUnregister(&dirty->src->drawable, dirty->damage); + DamageDestroy(dirty->damage); +@@ -17939,7 +17953,11 @@ migrate_dirty_tracking(PixmapPtr old_front, PixmapPtr new_front) + } + + DamageRegister(&new_front->drawable, dirty->damage); ++#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC ++ dirty->src = &new_front->drawable; ++#else + dirty->src = new_front; ++#endif + } + #endif + } +-- +2.18.0 + Copied
[arch-commits] Commit in xf86-video-intel/trunk (2 files)
Date: Wednesday, September 5, 2018 @ 06:14:44 Author: andyrtr Revision: 333418 upgpkg: xf86-video-intel 1:2.99.917+842+g3d395062-1 update to latest git commit, apply patch for multi monitor output - FS#58895 Added: xf86-video-intel/trunk/0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch Modified: xf86-video-intel/trunk/PKGBUILD + 0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch | 93 +++ PKGBUILD | 16 + 2 files changed, 104 insertions(+), 5 deletions(-) Added: 0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch === --- 0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch (rev 0) +++ 0001-SNA-fix-PRIME-output-support-since-xserver-1.20.patch 2018-09-05 06:14:44 UTC (rev 333418) @@ -0,0 +1,93 @@ +From e85424325911626556fbe5a313c698a5da701163 Mon Sep 17 00:00:00 2001 +From: Peter Wu +Date: Mon, 13 Aug 2018 22:59:50 +0200 +Subject: [PATCH xf86-video-intel] SNA: fix PRIME output support since xserver + 1.20 + +Since xorg-server 1.20, an external monitor would remain blank when used +in a PRIME output slave setup. Only a cursor was visible. The cause is +"Make PixmapDirtyUpdateRec::src a DrawablePtr" in xserver, the "src" +pointer might point to the root window (created by the server) instead +of a pixmap (as created by xf86-video-intel). Use get_drawable_pixmap to +handle both cases. + +When built with -fsanitize=address, the following test will trigger a +heap-buffer-overflow error due to to_sna_from_pixmap receiving a window +instead of a pixmap. + +Test on a hybrid graphics laptop (Intel + modesetting/nouveau): + +xrandr --setprovideroutputsource modesetting Intel +xrandr --output DP-1-1 --mode 2560x1440 # should not crash +glxgears # should display gears on both screens + +Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=100086 +Signed-off-by: Peter Wu +--- +Tested with xserver 1.20.1 with ASAN enabled. Survives multiple +resolution changes, works with a Plasma desktop session, it seems +stable. Something like this patch is required to make multi-monitor +setups usable in a hybrid graphics setting with Xorg 1.20. +--- + src/sna/sna_accel.c | 18 ++ + 1 file changed, 18 insertions(+) + +diff --git a/src/sna/sna_accel.c b/src/sna/sna_accel.c +index 2f669bcf..80b116a3 100644 +--- a/src/sna/sna_accel.c b/src/sna/sna_accel.c +@@ -17510,7 +17510,11 @@ static bool has_offload_slaves(struct sna *sna) + PixmapDirtyUpdatePtr dirty; + + xorg_list_for_each_entry(dirty, &screen->pixmap_dirty_list, ent) { ++#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC ++ assert(dirty->src == &sna->front->drawable); ++#else + assert(dirty->src == sna->front); ++#endif + if (RegionNotEmpty(DamageRegion(dirty->damage))) + return true; + } +@@ -17671,7 +17675,11 @@ static void sna_accel_post_damage(struct sna *sna) + if (RegionNil(damage)) + continue; + ++#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC ++ src = get_drawable_pixmap(dirty->src); ++#else + src = dirty->src; ++#endif + dst = dirty->slave_dst->master_pixmap; + + region.extents.x1 = dirty->x; +@@ -17922,9 +17930,15 @@ migrate_dirty_tracking(PixmapPtr old_front, PixmapPtr new_front) + PixmapDirtyUpdatePtr dirty, safe; + + xorg_list_for_each_entry_safe(dirty, safe, &screen->pixmap_dirty_list, ent) { ++#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC ++ assert(dirty->src == &old_front->drawable); ++ if (dirty->src != &old_front->drawable) ++ continue; ++#else + assert(dirty->src == old_front); + if (dirty->src != old_front) + continue; ++#endif + + DamageUnregister(&dirty->src->drawable, dirty->damage); + DamageDestroy(dirty->damage); +@@ -17939,7 +17953,11 @@ migrate_dirty_tracking(PixmapPtr old_front, PixmapPtr new_front) + } + + DamageRegister(&new_front->drawable, dirty->damage); ++#ifdef HAS_DIRTYTRACKING_DRAWABLE_SRC ++ dirty->src = &new_front->drawable; ++#else + dirty->src = new_front; ++#endif + } + #endif + } +-- +2.18.0 + Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:55:36 UTC (rev 333417) +++ PKGBUILD2018-09-05 06:14:44 UTC (rev 333418) @@ -3,8 +3,8 @@ # Maintainer: Jan de Groot pkgname=xf86-video-intel -_commit=e7bfc9065345085f767235eea8b148c356e5bd2b # master -pkgver=2.99.917+831+ge7bfc906 +_commit=3d395062ce73f85e8340218df01c2ebf4bc25023 # master +pkgver=2.99.917+842+g3d395062 pkgrel=1 epoch=1 arch=(x86_64) @@ -28,8 +28,10 @@ conflicts=('xo
[arch-commits] Commit in foomatic-db/repos/extra-any (PKGBUILD PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:55:36 Author: andyrtr Revision: 333417 archrelease: copy trunk to extra-any Added: foomatic-db/repos/extra-any/PKGBUILD (from rev 333416, foomatic-db/trunk/PKGBUILD) Deleted: foomatic-db/repos/extra-any/PKGBUILD --+ PKGBUILD | 252 ++--- 1 file changed, 126 insertions(+), 126 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:55:24 UTC (rev 333416) +++ PKGBUILD2018-09-05 05:55:36 UTC (rev 333417) @@ -1,126 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke - -pkgbase="foomatic-db" -pkgname=('foomatic-db' 'foomatic-db-ppds' 'foomatic-db-nonfree' 'foomatic-db-nonfree-ppds') -arch=('any') -pkgver=20180903 -pkgrel=1 -epoch=3 - -makedepends=('cups' 'perl' 'libxml2' 'enscript' 'perl' 'net-snmp' 'bash' 'bzr') -url="http://www.linuxprinting.org/foomatic.html"; -options=('!emptydirs') - -# check http://bzr.linuxfoundation.org/loggerhead/openprinting/foomatic/ -# for latest commits and development, identical to foomatic-4.0 branch - -source=(foomatic-db::bzr+http://bzr.linuxfoundation.org/openprinting/foomatic/foomatic-db/#revision=1327 #2018-08-30 - foomatic-db-nonfree::bzr+http://bzr.linuxfoundation.org/openprinting/foomatic/foomatic-db-nonfree/#revision=41 #2015-06-05 -) -md5sums=('SKIP' - 'SKIP') - -pkgver() { - date +%Y%m%d -} - -prepare(){ - cp -a foomatic-db foomatic-db-ppds - cp -a foomatic-db-nonfree foomatic-db-nonfree-ppds -} - -build() { - # foomatic-db - pushd foomatic-db - ./make_configure - ./configure --prefix=/usr \ ---disable-gzip-ppds \ ---disable-ppds-to-cups \ ---with-drivers=NOOBSOLETES,NOEMPTYCMDLINE - popd - - # foomatic-db-ppds - pushd foomatic-db-ppds - ./make_configure - ./configure --prefix=/usr - popd - - # foomatic-db-nonfree - pushd foomatic-db-nonfree - ./make_configure - ./configure --prefix=/usr - popd - - # foomatic-db-nonfree-ppds - pushd foomatic-db-nonfree-ppds - ./make_configure - ./configure --prefix=/usr - popd -} - -package_foomatic-db() { - - pkgdesc="Foomatic - The collected knowledge about printers, drivers, and driver options in XML files, used by foomatic-db-engine to generate PPD files." - license=('GPL' 'custom') - optdepends=('foomatic-db-ppds: PostScript PPD files') - replaces=('foomatic-db-foo2zjs') # AUR pkg no more conflicting and dropped, formerly required by foo2zjs-utils - conflicts=('foomatic-db-foo2zjs') - provides=('foomatic-db-foo2zjs') - - cd ${srcdir}/foomatic-db - make DESTDIR=${pkgdir} install - - # add some docs - install -Dm644 USAGE ${pkgdir}/usr/share/doc/${pkgname}/USAGE - install -Dm644 README ${pkgdir}/usr/share/doc/${pkgname}/README - install -v -Dm644 ${srcdir}/${pkgname}/COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING - install -Dm644 ${pkgdir}/usr/share/foomatic/db/source/PPD/Kyocera/ReadMe.htm ${pkgdir}/usr/share/doc/${pkgname}/Kyocera/ReadMe.htm - # remove files from foomatic-db-ppds pkg - rm -rf ${pkgdir}/usr/share/cups/model/foomatic-db-ppds - rm -rf ${pkgdir}/usr/share/foomatic/db/source/PPD -} - -package_foomatic-db-ppds() { - - pkgdesc="Foomatic - PPDs from printer manufacturers" - license=('GPL' 'custom') - - cd ${srcdir}/foomatic-db-ppds - make DESTDIR=${pkgdir} install - - # remove files from foomatic-db pkg - rm -rf ${pkgdir}/usr/share/foomatic/db/oldprinterids - rm -rf ${pkgdir}/usr/share/foomatic/db/source/{driver,opt,printer} - rm -rf ${pkgdir}/usr/share/foomatic/xmlschema - rm -f ${pkgdir}/usr/share/foomatic/db/source/PPD/Kyocera/ReadMe.htm - - install -v -Dm644 ${srcdir}/${pkgname}/COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING -} - -package_foomatic-db-nonfree() { - - pkgdesc="Foomatic - database extension consisting of manufacturer-supplied PPD files released under non-free licenses" - license=('custom') - optdepends=('foomatic-db-nonfree-ppds: nonfree PPD files') - - cd ${srcdir}/foomatic-db-nonfree - make DESTDIR=${pkgdir} install - # remove files from foomatic-db-nonfree-ppds pkg - rm -rf ${pkgdir}/usr/share/foomatic/db/source/PPD - - install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING -} - -package_foomatic-db-nonfree-ppds() { - - pkgdesc="Foomatic - non-free PPDs from printer manufacturers" - license=('custom') - - cd ${srcdir}/foomatic-db-nonfree-ppds - make DESTDIR=${pkgdir} install - # remove files from foomatic-db-nonfree pkg - rm -rf ${pkgdir}/usr/share/foomatic/db/source/driver - - install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING -} Copied: foomatic-db/repos/extra-any/PKGBUILD (from rev 333416, foomatic-db/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:55:36 UTC (rev 333417) @@ -0,0 +1,126 @
[arch-commits] Commit in foomatic-db/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:55:24 Author: andyrtr Revision: 333416 upgpkg: foomatic-db 3:20180905-1 update to latest bazaar commit Modified: foomatic-db/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:51:15 UTC (rev 333415) +++ PKGBUILD2018-09-05 05:55:24 UTC (rev 333416) @@ -4,7 +4,7 @@ pkgbase="foomatic-db" pkgname=('foomatic-db' 'foomatic-db-ppds' 'foomatic-db-nonfree' 'foomatic-db-nonfree-ppds') arch=('any') -pkgver=20180903 +pkgver=20180905 pkgrel=1 epoch=3 @@ -15,7 +15,7 @@ # check http://bzr.linuxfoundation.org/loggerhead/openprinting/foomatic/ # for latest commits and development, identical to foomatic-4.0 branch -source=(foomatic-db::bzr+http://bzr.linuxfoundation.org/openprinting/foomatic/foomatic-db/#revision=1327 #2018-08-30 +source=(foomatic-db::bzr+http://bzr.linuxfoundation.org/openprinting/foomatic/foomatic-db/#revision=1328 #2018-09-04 foomatic-db-nonfree::bzr+http://bzr.linuxfoundation.org/openprinting/foomatic/foomatic-db-nonfree/#revision=41 #2015-06-05 ) md5sums=('SKIP'
[arch-commits] Commit in texlive-bibtexextra/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:51:13 Author: remy Revision: 333414 upgpkg: texlive-bibtexextra 2018.48548-1 - upgrade package beebe 46758 -> 47969 - upgrade package bib2gls 47413 -> 48439 - upgrade package biblatex-anonymous 45855 -> 48548 - upgrade package biblatex-archaeology 45840 -> 47989 - upgrade package biblatex-caspervector 43371 -> 48122 - upgrade package biblatex-ext 47175 -> 47974 - upgrade package biblatex-gb7714-2015 46298 -> 48406 - upgrade package biblatex-ieee 43620 -> 48448 - upgrade package biblatex-publist 47379 -> 48536 - upgrade package biblatex-sbl 45831 -> 47825 - new package biblatex-socialscienceshuberlin - upgrade package bibtexperllibs 46044 -> 47520 - upgrade package crossrefware 45927 -> 47861 - upgrade package gbt7714 47418 -> 48352 - upgrade package turabian-formatting 45700 -> 48330 Modified: texlive-bibtexextra/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:50:58 UTC (rev 333413) +++ PKGBUILD2018-09-05 05:51:13 UTC (rev 333414) @@ -3,7 +3,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-bibtexextra -pkgver=2018.47418 +pkgver=2018.48548 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - Additional BibTeX styles and bibliography databases" @@ -13,7 +13,7 @@ groups=('texlive-most') url='http://tug.org/texlive/' source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";) -sha256sums=('7d610e7609eddb267292cd0bb2ea3f25f0d43d24c16ce6ce241da8849b47846b') +sha256sums=('2bab840f1462791daf0b162107afd07474e7a33468a73df4682654f3e88220a9') build() { cd "$srcdir"
[arch-commits] Commit in texlive-bibtexextra/repos/extra-any (PKGBUILD PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:51:15 Author: remy Revision: 333415 archrelease: copy trunk to extra-any Added: texlive-bibtexextra/repos/extra-any/PKGBUILD (from rev 333414, texlive-bibtexextra/trunk/PKGBUILD) Deleted: texlive-bibtexextra/repos/extra-any/PKGBUILD --+ PKGBUILD | 130 ++--- 1 file changed, 65 insertions(+), 65 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:51:13 UTC (rev 333414) +++ PKGBUILD2018-09-05 05:51:15 UTC (rev 333415) @@ -1,65 +0,0 @@ -# $Id$ -# Contributor: Firmicus -# Maintainer: Rémy Oudompheng - -pkgname=texlive-bibtexextra -pkgver=2018.47418 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - Additional BibTeX styles and bibliography databases" -license=('GPL') -arch=(any) -depends=('texlive-core') -groups=('texlive-most') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";) -sha256sums=('7d610e7609eddb267292cd0bb2ea3f25f0d43d24c16ce6ce241da8849b47846b') - -build() { - cd "$srcdir" - for p in *.tar.xz; do - bsdtar -xf $p - done - rm -rf {tlpkg,doc,source} || true -} - -package() { - install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m755 -d $pkgdir/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; - fi - if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then - find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi - - # link programs from /usr/share/texmf-dist/scripts - _linked_scripts=" -bib2gls/bib2gls.sh -bib2gls/convertgls2bib.sh -bibexport/bibexport.sh -crossrefware/bbl2bib.pl -crossrefware/bibdoiadd.pl -crossrefware/bibmradd.pl -crossrefware/biburl2doi.pl -crossrefware/bibzbladd.pl -crossrefware/ltx2crossrefxml.pl -listbib/listbib -multibibliography/multibibliography.pl -urlbst/urlbst -" -install -m755 -d $pkgdir/usr/bin -for _script in ${_linked_scripts}; do -_scriptbase=$(basename $_script) -_scriptbase=${_scriptbase%.*} -ln -s /usr/share/texmf-dist/scripts/${_script} ${pkgdir}/usr/bin/${_scriptbase} -done -} Copied: texlive-bibtexextra/repos/extra-any/PKGBUILD (from rev 333414, texlive-bibtexextra/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:51:15 UTC (rev 333415) @@ -0,0 +1,65 @@ +# $Id$ +# Contributor: Firmicus +# Maintainer: Rémy Oudompheng + +pkgname=texlive-bibtexextra +pkgver=2018.48548 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - Additional BibTeX styles and bibliography databases" +license=('GPL') +arch=(any) +depends=('texlive-core') +groups=('texlive-most') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";) +sha256sums=('2bab840f1462791daf0b162107afd07474e7a33468a73df4682654f3e88220a9') + +build() { + cd "$srcdir" + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf {tlpkg,doc,source} || true +} + +package() { + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs + install -m755 -d $pkgdir/usr/share + wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true + for dir in $wanteddirs; do + find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; + find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; + done + if [[ -d texmf-dist ]]; then + find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; + find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; + fi + if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then + find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; + fi + + # link programs from /usr/share/texmf-dist/scripts + _linked_scripts=" +bib2gls/bib2gls.sh +bib2gls/convertgls2bib.sh +bibexport/bibexport.sh +crossrefware/bbl2bib.pl +crossrefware/bibdoiadd.pl +crossrefware/bibmradd.pl +crossrefware/biburl2doi.pl +crossrefware/bibzbladd.pl +crossrefware/ltx2crossrefxml.pl +listbib/listbib +multibibliography/multibibliography.
[arch-commits] Commit in texlive-core/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:50:55 Author: remy Revision: 333412 upgpkg: texlive-core 2018.48566-1 - upgrade package apnum 39710 -> 47510 - upgrade package arara 45517 -> 48201 - upgrade package babel 46640 -> 48551 - upgrade package babel-french 47332 -> 48222 - upgrade package beamer 46705 -> 48547 - new package bezierplot - upgrade package bidi 46708 -> 48397 - upgrade package bundledoc 35041 -> 47819 - new package businesscard-qrcode - upgrade package caption 41409 -> 47968 - upgrade package carlisle 18258 -> 47876 - upgrade package colortbl 29803 -> 47614 - upgrade package context-filter 47085 -> 48390 - upgrade package context-vim 47085 -> 48391 - new package cqubeamer - upgrade package cslatex 45678 -> 47536 - upgrade package csplain 47149 -> 48563 - new package ctanbib - upgrade package dvipdfmx 47198 -> 48506 - upgrade package eso-pic 37925 -> 47694 - upgrade package etoolbox 46602 -> 48436 - upgrade package fontools 47134 -> 48387 - upgrade package fontspec 45732 -> 48320 - upgrade package geometry 47106 -> 47638 - upgrade package hyph-utf8 47422 -> 48489 - upgrade package hyphen-base 47260 -> 48303 - upgrade package hyphen-bulgarian 47375 -> 48290 - upgrade package hyphen-indic 40340 -> 48297 - upgrade package hyphen-latin 47375 -> 48489 - upgrade package hyphen-thai 47375 -> 48489 - new package kanaparser - upgrade package ketcindy 47435 -> 48037 - upgrade package l3experimental 46875 -> 48476 - upgrade package l3kernel 46875 -> 48476 - upgrade package l3packages 46712 -> 48476 - upgrade package latex 47377 -> 47860 - upgrade package latex2man 45484 -> 47942 - upgrade package latexindent 47471 -> 48402 - upgrade package latexmk 46378 -> 48369 - upgrade package latexpand 41873 -> 47535 - upgrade package listings 37534 -> 48566 - upgrade package lm 28119 -> 48145 - upgrade package ltximg 37006 -> 47568 - new package lualatex-truncate - upgrade package luamplib 47336 -> 47547 - upgrade package luatexko 47337 -> 48334 - new package luavlna - upgrade package luaxml 46768 -> 48215 - upgrade package lwarp 47250 -> 48159 - upgrade package make4ht 47398 -> 48477 - upgrade package mcf2graph 46199 -> 48046 - new package modulus - upgrade package mptopdf 45678 -> 48553 - upgrade package na-position 45489 -> 48071 - upgrade package plantuml 47089 -> 47924 - upgrade package tetex 47198 -> 48150 - upgrade package tex-gyre 18651 -> 48058 - upgrade package tex4ebook 47414 -> 47672 - upgrade package tex4ht 47437 -> 48554 - new package texdate - upgrade package texdoc 47446 -> 47946 - new package texdoctk - upgrade package texlive-docindex 47467 -> 48556 - upgrade package texlive-scripts 47368 -> 48560 - upgrade package texlive.infra 47457 -> 48560 - upgrade package tools 47377 -> 47671 - upgrade package tracklang 46703 -> 47704 - upgrade package unicode-data 44711 -> 48003 - upgrade package unicode-math 46515 -> 48309 - upgrade package updmap-map 46957 -> 48150 - upgrade package xecjk 47362 -> 47519 - upgrade package xetex 45931 -> 47536 - upgrade package xetexko 47338 -> 48378 - upgrade package zxjafont 37281 -> 47613 Modified: texlive-core/trunk/PKGBUILD --+ PKGBUILD |7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:50:24 UTC (rev 333411) +++ PKGBUILD2018-09-05 05:50:55 UTC (rev 333412) @@ -2,7 +2,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-core -pkgver=2018.47471 +pkgver=2018.48566 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live core distribution" @@ -55,7 +55,7 @@ etc/texmf/web2c/fmtutil.cnf \ etc/texmf/web2c/mktex.cnf \ etc/texmf/xdvi/XDvi) -sha256sums=('212da3e889b4a991a1bd1a8e9e647a93dc31fc8027b4245708d06ccb348abcf9' +sha256sums=('1eacaf8df21a50e35d589349ed575cd203b1957b33628828788f693fceb3eb9b' '275253728d884b2b75e01840b0824c1fe5afbdda91fafeacd33deb6cd92341a3' '009ab6be9e4fa18709fc74d26a3777372f4b5af9313421ff0546ba94a9d5ff13' '1d62d46d4d3a538ccad48d31192fccdfc8d6c0a60b331575a10a007d46812d46' @@ -206,6 +206,8 @@ context/stubs/unix/mtxrunjit context/stubs/unix/texexec context/stubs/unix/texmfstart +ctan-o-mat/ctan-o-mat.pl +ctanbib/ctanbib ctanify/ctanify ctanupload/ctanupload.pl de-macro/de-macro @@ -221,6 +223,7 @@ fragmaster/fragmaster.pl installfont/installfont-tl jfmutil/jfmutil.pl +ketcindy/ketcindy.sh latex-git-log/latex-git-log latex-papersize/latex-papersize.py latex2man/latex2man
[arch-commits] Commit in texlive-fontsextra/trunk (PKGBUILD texlive-fontsextra.maps)
Date: Wednesday, September 5, 2018 @ 05:50:21 Author: remy Revision: 333410 upgpkg: texlive-fontsextra 2018.48561-1 - upgrade package academicons 47288 -> 48100 - upgrade package alegreya 46860 -> 48339 - upgrade package cabin 43687 -> 47770 - upgrade package cochineal 47173 -> 47902 - upgrade package dozenal 44740 -> 47680 - new package dsserif - upgrade package fira 46260 -> 48488 - upgrade package fontawesome 41412 -> 48145 - upgrade package fontawesome5 46787 -> 48510 - upgrade package ipaex-type1 42403 -> 47700 - upgrade package kpfonts 29803 -> 48470 - upgrade package libertinus 47077 -> 47488 - new package libertinus-otf - upgrade package libertinust1math 45439 -> 48077 - upgrade package ly1 21086 -> 47848 - upgrade package newtx 47160 -> 47889 - upgrade package newtxsf 41918 -> 47958 - upgrade package plex 47147 -> 48332 - upgrade package plex-otf 47157 -> 47562 - upgrade package roboto 38386 -> 47586 - new package stickstoo - upgrade package stix 36914 -> 47652 - new package stix2-otf - new package stix2-type1 - upgrade package xcharter 46105 -> 48498 Modified: texlive-fontsextra/trunk/PKGBUILD texlive-fontsextra/trunk/texlive-fontsextra.maps -+ PKGBUILD|6 +++--- texlive-fontsextra.maps |4 2 files changed, 7 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:50:06 UTC (rev 333409) +++ PKGBUILD2018-09-05 05:50:21 UTC (rev 333410) @@ -2,7 +2,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-fontsextra -pkgver=2018.47288 +pkgver=2018.48561 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - all sorts of extra fonts" @@ -13,8 +13,8 @@ url='http://tug.org/texlive/' source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") options=('!emptydirs') -sha256sums=('8b8a671f00b6c702377ed0937a99296c580dfa277e1754afac209c3c2afa1af9' -'052f84118b8e21370949e114a524020ecf1289a95384d7827cae05ba17c91401') +sha256sums=('7b1db7414f7d2970a5df0fa015c7e06e55ef5e2e77474548b6617a503bd448cc' +'20639ccf527a02933a8f354d422047d5155d161312fce46f1abbf27f15967cf7') build() { cd "$srcdir" Modified: texlive-fontsextra.maps === --- texlive-fontsextra.maps 2018-09-05 05:50:06 UTC (rev 333409) +++ texlive-fontsextra.maps 2018-09-05 05:50:21 UTC (rev 333410) @@ -16,6 +16,7 @@ Map ComicNeueAngular.map Map CormorantGaramond.map Map CountriesOfEurope.map +Map DSSerif.map Map EBGaramond-Maths.map Map EBGaramond.map Map ESSTIX.map @@ -49,6 +50,7 @@ Map SourceSansPro.map Map SourceSerifPro.map Map Starburst.map +Map SticksTooText.map Map TXUprCal.map Map Typocaps.map Map XCharter.map @@ -104,6 +106,7 @@ Map foekfont.map Map fonetika.map Map fontawesome.map +Map fontawesome5.map Map fourier-utopia-expert.map Map fourier.map Map frcursive.map @@ -168,6 +171,7 @@ Map sqrcaps.map Map starfont.map Map stix.map +Map stix2.map Map superiors.map Map svrsymbols.map Map tempora.map
[arch-commits] Commit in texlive-fontsextra/repos/extra-any (4 files)
Date: Wednesday, September 5, 2018 @ 05:50:24 Author: remy Revision: 333411 archrelease: copy trunk to extra-any Added: texlive-fontsextra/repos/extra-any/PKGBUILD (from rev 333410, texlive-fontsextra/trunk/PKGBUILD) texlive-fontsextra/repos/extra-any/texlive-fontsextra.maps (from rev 333410, texlive-fontsextra/trunk/texlive-fontsextra.maps) Deleted: texlive-fontsextra/repos/extra-any/PKGBUILD texlive-fontsextra/repos/extra-any/texlive-fontsextra.maps -+ PKGBUILD| 92 +- texlive-fontsextra.maps | 400 +++--- 2 files changed, 248 insertions(+), 244 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:50:21 UTC (rev 333410) +++ PKGBUILD2018-09-05 05:50:24 UTC (rev 333411) @@ -1,46 +0,0 @@ -# $Id$ -# Maintainer: Rémy Oudompheng - -pkgname=texlive-fontsextra -pkgver=2018.47288 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - all sorts of extra fonts" -license=('GPL') -arch=(any) -depends=('texlive-core') -groups=('texlive-most') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") -options=('!emptydirs') -sha256sums=('8b8a671f00b6c702377ed0937a99296c580dfa277e1754afac209c3c2afa1af9' -'052f84118b8e21370949e114a524020ecf1289a95384d7827cae05ba17c91401') - -build() { - cd "$srcdir" - for p in *.tar.xz; do - bsdtar -xf $p - done - rm -rf {tlpkg,doc,source} || true -} - -package() { - cd "$srcdir" - install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ - install -m755 -d $pkgdir/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; - fi - if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then - find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi -} Copied: texlive-fontsextra/repos/extra-any/PKGBUILD (from rev 333410, texlive-fontsextra/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:50:24 UTC (rev 333411) @@ -0,0 +1,46 @@ +# $Id$ +# Maintainer: Rémy Oudompheng + +pkgname=texlive-fontsextra +pkgver=2018.48561 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - all sorts of extra fonts" +license=('GPL') +arch=(any) +depends=('texlive-core') +groups=('texlive-most') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") +options=('!emptydirs') +sha256sums=('7b1db7414f7d2970a5df0fa015c7e06e55ef5e2e77474548b6617a503bd448cc' +'20639ccf527a02933a8f354d422047d5155d161312fce46f1abbf27f15967cf7') + +build() { + cd "$srcdir" + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf {tlpkg,doc,source} || true +} + +package() { + cd "$srcdir" + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs + install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ + install -m755 -d $pkgdir/usr/share + wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true + for dir in $wanteddirs; do + find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; + find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; + done + if [[ -d texmf-dist ]]; then + find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; + find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; + fi + if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then + find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; + fi +} Deleted: texlive-fontsextra.maps === --- texlive-fontsextra.maps 2018-09-05 05:50:21 UTC (rev 333410) +++ texlive-fontsextra.maps 2018-09-05 05:50:24 UTC (rev 333411) @@ -1,198 +0,0 @@ -Map Acorn.map -Map Alegreya.map -Map AnnSton.map -Map AnonymousPro.map -Map ArrowsADF.map -Map ArtNouv.map -Map ArtNouvc.map -Map BaskervilleF.map -Map BulletsADF.map -Map Carrickc.map -Map Chivo
[arch-commits] Commit in texlive-formatsextra/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:50:04 Author: remy Revision: 333408 upgpkg: texlive-formatsextra 2018.47496-1 - upgrade package aleph 47198 -> 47496 Modified: texlive-formatsextra/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:49:52 UTC (rev 333407) +++ PKGBUILD2018-09-05 05:50:04 UTC (rev 333408) @@ -3,7 +3,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-formatsextra -pkgver=2018.47198 +pkgver=2018.47496 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - collection of extra TeX 'formats'" @@ -19,7 +19,7 @@ provides=('texlive-htmlxml') conflicts=('texlive-htmlxml') replaces=('texlive-htmlxml') -sha256sums=('7c5a43ee0a11c1171f5b908f2fb028366030cf7cb6a6c33852789aa968ad6d99' +sha256sums=('86ff880839df8a8b83006b5ca6e718b3dfea8bb890932346c4bce9badd72c76b' 'edee1d8b46005847381dbf20afacad6d14f3d59406facdc609c92d9e20ed6df2' 'ad67f39779bfe76327351fe4e8699369b031ac700947e04ff57a0c5ebe9b613b')
[arch-commits] Commit in texlive-games/repos/extra-any (6 files)
Date: Wednesday, September 5, 2018 @ 05:49:52 Author: remy Revision: 333407 archrelease: copy trunk to extra-any Added: texlive-games/repos/extra-any/Changelog (from rev 333406, texlive-games/trunk/Changelog) texlive-games/repos/extra-any/PKGBUILD (from rev 333406, texlive-games/trunk/PKGBUILD) texlive-games/repos/extra-any/texlive-games.maps (from rev 333406, texlive-games/trunk/texlive-games.maps) Deleted: texlive-games/repos/extra-any/Changelog texlive-games/repos/extra-any/PKGBUILD texlive-games/repos/extra-any/texlive-games.maps + Changelog | 22 +-- PKGBUILD | 98 +-- texlive-games.maps |2 - 3 files changed, 61 insertions(+), 61 deletions(-) Deleted: Changelog === --- Changelog 2018-09-05 05:49:50 UTC (rev 333406) +++ Changelog 2018-09-05 05:49:52 UTC (rev 333407) @@ -1,11 +0,0 @@ -texlive-games 2012.28243 - -- upgrade package chess-problem-diagrams 26206 -> 28243 - -texlive-games 2011.24714 - -- upgrade package chess-problem-diagrams 15878 -> 23555 -- new package gamebook -- new package othelloboard -- new package schwalbe-chess - Copied: texlive-games/repos/extra-any/Changelog (from rev 333406, texlive-games/trunk/Changelog) === --- Changelog (rev 0) +++ Changelog 2018-09-05 05:49:52 UTC (rev 333407) @@ -0,0 +1,11 @@ +texlive-games 2012.28243 + +- upgrade package chess-problem-diagrams 26206 -> 28243 + +texlive-games 2011.24714 + +- upgrade package chess-problem-diagrams 15878 -> 23555 +- new package gamebook +- new package othelloboard +- new package schwalbe-chess + Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:49:50 UTC (rev 333406) +++ PKGBUILD2018-09-05 05:49:52 UTC (rev 333407) @@ -1,49 +0,0 @@ -# $Id$ -# Maintainer: Rémy Oudompheng -# Maintainer: Firmicus - -pkgname=texlive-games -pkgver=2018.47472 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - Setups for typesetting various board games, including chess" -license=('GPL') -arch=(any) -depends=('texlive-core') -groups=('texlive-most') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") -options=('!emptydirs') -sha256sums=('7b95c75759a5f449d8596a0512b4ba8b629e84c44792585c3e61898ee9f56f48' -'a4e19b3d6cf8701565d8732c0ff3ee037510b6fb3af53257311bf0731112d72b') - -build() { - cd "$srcdir" - for p in *.tar.xz; do - bsdtar -xf $p - done - rm -rf {tlpkg,doc,source} || true -} - -package() { - cd "$srcdir" - install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ - install -m755 -d $pkgdir/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; - fi - if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then - find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi - install -m755 -d $pkgdir/usr/bin - ln -s /usr/share/texmf-dist/scripts/rubik/rubikrotation.pl $pkgdir/usr/bin/rubikrotation -} Copied: texlive-games/repos/extra-any/PKGBUILD (from rev 333406, texlive-games/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:49:52 UTC (rev 333407) @@ -0,0 +1,49 @@ +# $Id$ +# Maintainer: Rémy Oudompheng +# Maintainer: Firmicus + +pkgname=texlive-games +pkgver=2018.48514 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - Setups for typesetting various board games, including chess" +license=('GPL') +arch=(any) +depends=('texlive-core') +groups=('texlive-most') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") +options=('!emptydirs') +sha256sums=('c007a6a6afd8dd3a5da7db226d23a01015de6b2d245a90f7786e4e6c5403019f' +'a4e19b3d6cf8701565d8732c0ff3ee037510b6fb3af53257311bf0731112d72b') + +build() { + cd "$srcdir" + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf {tlpkg,doc,source} || true +} + +package() { + cd "$srcdir" + install -m755 -d $pkgdir/var/lib/texmf/arch/instal
[arch-commits] Commit in texlive-langchinese/repos/extra-any (4 files)
Date: Wednesday, September 5, 2018 @ 05:49:21 Author: remy Revision: 333403 archrelease: copy trunk to extra-any Added: texlive-langchinese/repos/extra-any/PKGBUILD (from rev 333402, texlive-langchinese/trunk/PKGBUILD) texlive-langchinese/repos/extra-any/texlive-langchinese.maps (from rev 333402, texlive-langchinese/trunk/texlive-langchinese.maps) Deleted: texlive-langchinese/repos/extra-any/PKGBUILD texlive-langchinese/repos/extra-any/texlive-langchinese.maps --+ PKGBUILD | 90 ++--- texlive-langchinese.maps |8 ++-- 2 files changed, 49 insertions(+), 49 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:49:19 UTC (rev 333402) +++ PKGBUILD2018-09-05 05:49:21 UTC (rev 333403) @@ -1,45 +0,0 @@ -# $Id$ -# Maintainer: Rémy Oudompheng - -pkgname=texlive-langchinese -pkgver=2018.47408 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - Fonts and macro packages to typeset Chinese texts" -license=('GPL') -arch=(any) -depends=('texlive-core') -groups=('texlive-lang') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") -options=('!emptydirs') -sha256sums=('c25115f69ff2dc3689c8dd82de9ac6c23d25d424670b144e1148f1145e0aa293' -'c8cc529153bc1db3b13ef5973a6f36161f89cf05bac695fa2d2eab1a75345195') - -build() { - cd "$srcdir" - for p in *.tar.xz; do - bsdtar -xf $p - done - rm -rf tlpkg -} - -package() { - install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ - install -m755 -d $pkgdir/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; - fi - if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then - find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi -} Copied: texlive-langchinese/repos/extra-any/PKGBUILD (from rev 333402, texlive-langchinese/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:49:21 UTC (rev 333403) @@ -0,0 +1,45 @@ +# $Id$ +# Maintainer: Rémy Oudompheng + +pkgname=texlive-langchinese +pkgver=2018.48534 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - Fonts and macro packages to typeset Chinese texts" +license=('GPL') +arch=(any) +depends=('texlive-core') +groups=('texlive-lang') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") +options=('!emptydirs') +sha256sums=('27e689347f7a2865e5489aeda240350e2b5532cc1c1fe9fcada39af9b49724ce' +'c8cc529153bc1db3b13ef5973a6f36161f89cf05bac695fa2d2eab1a75345195') + +build() { + cd "$srcdir" + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf tlpkg +} + +package() { + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs + install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ + install -m755 -d $pkgdir/usr/share + wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true + for dir in $wanteddirs; do + find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; + find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; + done + if [[ -d texmf-dist ]]; then + find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; + find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; + fi + if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then + find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; + fi +} Deleted: texlive-langchinese.maps === --- texlive-langchinese.maps2018-09-05 05:49:19 UTC (rev 333402) +++ texlive-langchinese.maps2018-09-05 05:49:21 UTC (rev 333403) @@ -1,4 +0,0 @@ -Map bkaiu.map -Map bsmiu.map -Map gbsnu.map -Map gkaiu.map Copied: texlive-langchinese/repos/extra-any/texlive-langchinese.maps (from rev 333402, texlive-langchinese/trunk/texlive-langchinese.maps) ===
[arch-commits] Commit in texlive-games/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:49:50 Author: remy Revision: 333406 upgpkg: texlive-games 2018.48514-1 - new package jigsaw - new package onedown - upgrade package schwalbe-chess 39318 -> 48356 Modified: texlive-games/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:49:42 UTC (rev 333405) +++ PKGBUILD2018-09-05 05:49:50 UTC (rev 333406) @@ -3,7 +3,7 @@ # Maintainer: Firmicus pkgname=texlive-games -pkgver=2018.47472 +pkgver=2018.48514 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - Setups for typesetting various board games, including chess" @@ -14,7 +14,7 @@ url='http://tug.org/texlive/' source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") options=('!emptydirs') -sha256sums=('7b95c75759a5f449d8596a0512b4ba8b629e84c44792585c3e61898ee9f56f48' +sha256sums=('c007a6a6afd8dd3a5da7db226d23a01015de6b2d245a90f7786e4e6c5403019f' 'a4e19b3d6cf8701565d8732c0ff3ee037510b6fb3af53257311bf0731112d72b') build() {
[arch-commits] Commit in texlive-formatsextra/repos/extra-any (6 files)
Date: Wednesday, September 5, 2018 @ 05:50:06 Author: remy Revision: 333409 archrelease: copy trunk to extra-any Added: texlive-formatsextra/repos/extra-any/PKGBUILD (from rev 333408, texlive-formatsextra/trunk/PKGBUILD) texlive-formatsextra/repos/extra-any/texlive-formatsextra.fmts (from rev 333408, texlive-formatsextra/trunk/texlive-formatsextra.fmts) texlive-formatsextra/repos/extra-any/texlive-formatsextra.maps (from rev 333408, texlive-formatsextra/trunk/texlive-formatsextra.maps) Deleted: texlive-formatsextra/repos/extra-any/PKGBUILD texlive-formatsextra/repos/extra-any/texlive-formatsextra.fmts texlive-formatsextra/repos/extra-any/texlive-formatsextra.maps ---+ PKGBUILD | 118 ++-- texlive-formatsextra.fmts | 18 +++--- texlive-formatsextra.maps |2 3 files changed, 69 insertions(+), 69 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:50:04 UTC (rev 333408) +++ PKGBUILD2018-09-05 05:50:06 UTC (rev 333409) @@ -1,59 +0,0 @@ -# $Id$ -# Contributor: Firmicus -# Maintainer: Rémy Oudompheng - -pkgname=texlive-formatsextra -pkgver=2018.47198 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - collection of extra TeX 'formats'" -license=('GPL') -arch=(any) -depends=('texlive-core') -groups=('texlive-most') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; -"${pkgname}.fmts" -"${pkgname}.maps") -options=('!emptydirs') -provides=('texlive-htmlxml') -conflicts=('texlive-htmlxml') -replaces=('texlive-htmlxml') -sha256sums=('7c5a43ee0a11c1171f5b908f2fb028366030cf7cb6a6c33852789aa968ad6d99' -'edee1d8b46005847381dbf20afacad6d14f3d59406facdc609c92d9e20ed6df2' -'ad67f39779bfe76327351fe4e8699369b031ac700947e04ff57a0c5ebe9b613b') - -build() { - cd "$srcdir" - for p in *.tar.xz; do - case $p in - aleph.*|lambda.*|omega.*) - ;; - *) - bsdtar -xf $p - ;; - esac - done - rm -rf {tlpkg,doc,source} || true -} - -package() { - cd "$srcdir" - install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m644 "${pkgname}.fmts" $pkgdir/var/lib/texmf/arch/installedpkgs/ - install -m755 -d $pkgdir/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; - fi - if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then - find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi -} Copied: texlive-formatsextra/repos/extra-any/PKGBUILD (from rev 333408, texlive-formatsextra/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:50:06 UTC (rev 333409) @@ -0,0 +1,59 @@ +# $Id$ +# Contributor: Firmicus +# Maintainer: Rémy Oudompheng + +pkgname=texlive-formatsextra +pkgver=2018.47496 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - collection of extra TeX 'formats'" +license=('GPL') +arch=(any) +depends=('texlive-core') +groups=('texlive-most') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; +"${pkgname}.fmts" +"${pkgname}.maps") +options=('!emptydirs') +provides=('texlive-htmlxml') +conflicts=('texlive-htmlxml') +replaces=('texlive-htmlxml') +sha256sums=('86ff880839df8a8b83006b5ca6e718b3dfea8bb890932346c4bce9badd72c76b' +'edee1d8b46005847381dbf20afacad6d14f3d59406facdc609c92d9e20ed6df2' +'ad67f39779bfe76327351fe4e8699369b031ac700947e04ff57a0c5ebe9b613b') + +build() { + cd "$srcdir" + for p in *.tar.xz; do + case $p in + aleph.*|lambda.*|omega.*) + ;; + *) + bsdtar -xf $p + ;; + esac + done + rm -rf {tlpkg,doc,source} || true +} + +package() { + cd "$srcdir" + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs + install -m644 "${pkgname}.fmts" $pkgdir/var/lib/texmf/arch/installedpkgs/ + install -m755 -d $pkgdir/usr/share + wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true
[arch-commits] Commit in texlive-langchinese/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:49:19 Author: remy Revision: 333402 upgpkg: texlive-langchinese 2018.48534-1 - upgrade package ctex 46474 -> 47595 - upgrade package fduthesis 47408 -> 47628 - upgrade package lshort-chinese 43606 -> 48534 - upgrade package pgfornament-han 47399 -> 47789 Modified: texlive-langchinese/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:49:08 UTC (rev 333401) +++ PKGBUILD2018-09-05 05:49:19 UTC (rev 333402) @@ -2,7 +2,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-langchinese -pkgver=2018.47408 +pkgver=2018.48534 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - Fonts and macro packages to typeset Chinese texts" @@ -13,7 +13,7 @@ url='http://tug.org/texlive/' source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") options=('!emptydirs') -sha256sums=('c25115f69ff2dc3689c8dd82de9ac6c23d25d424670b144e1148f1145e0aa293' +sha256sums=('27e689347f7a2865e5489aeda240350e2b5532cc1c1fe9fcada39af9b49724ce' 'c8cc529153bc1db3b13ef5973a6f36161f89cf05bac695fa2d2eab1a75345195') build() {
[arch-commits] Commit in texlive-humanities/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:49:40 Author: remy Revision: 333404 upgpkg: texlive-humanities 2018.48491-1 - upgrade package bibleref 44737 -> 48319 - upgrade package covington 44501 -> 48491 - upgrade package reledmac 47359 -> 48229 Modified: texlive-humanities/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:49:21 UTC (rev 333403) +++ PKGBUILD2018-09-05 05:49:40 UTC (rev 333404) @@ -2,7 +2,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-humanities -pkgver=2018.47359 +pkgver=2018.48491 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - LaTeX packages for law, linguistics, social sciences, and humanities" @@ -14,7 +14,7 @@ url='http://tug.org/texlive/' source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";) options=('!emptydirs') -sha256sums=('b002780f355d4e2b45ea0e0bc057c5aee10a14039ce845bf8bbf6ad91ddf29ae') +sha256sums=('c7153a006c8e6eab2d2a4bb39c18169d19f8c45c8a88b5ba7589171c36f15df1') build() { cd "$srcdir"
[arch-commits] Commit in texlive-humanities/repos/extra-any (PKGBUILD PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:49:42 Author: remy Revision: 333405 archrelease: copy trunk to extra-any Added: texlive-humanities/repos/extra-any/PKGBUILD (from rev 333404, texlive-humanities/trunk/PKGBUILD) Deleted: texlive-humanities/repos/extra-any/PKGBUILD --+ PKGBUILD | 94 ++--- 1 file changed, 47 insertions(+), 47 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:49:40 UTC (rev 333404) +++ PKGBUILD2018-09-05 05:49:42 UTC (rev 333405) @@ -1,47 +0,0 @@ -# $Id$ -# Maintainer: Rémy Oudompheng - -pkgname=texlive-humanities -pkgver=2018.47359 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - LaTeX packages for law, linguistics, social sciences, and humanities" -license=('GPL') -arch=(any) -depends=('texlive-core' 'texlive-latexextra') -optdepends=('texlive-pictures: for package qtree') -groups=('texlive-most') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";) -options=('!emptydirs') -sha256sums=('b002780f355d4e2b45ea0e0bc057c5aee10a14039ce845bf8bbf6ad91ddf29ae') - -build() { - cd "$srcdir" - for p in *.tar.xz; do - bsdtar -xf $p - done - rm -rf {tlpkg,doc,source} || true -} - -package() { - install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m755 -d $pkgdir/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; - fi - if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then - find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi - -install -m755 -d $pkgdir/usr/bin -ln -s /usr/share/texmf-dist/scripts/diadia/diadia.lua ${pkgdir}/usr/bin/diadia -} Copied: texlive-humanities/repos/extra-any/PKGBUILD (from rev 333404, texlive-humanities/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:49:42 UTC (rev 333405) @@ -0,0 +1,47 @@ +# $Id$ +# Maintainer: Rémy Oudompheng + +pkgname=texlive-humanities +pkgver=2018.48491 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - LaTeX packages for law, linguistics, social sciences, and humanities" +license=('GPL') +arch=(any) +depends=('texlive-core' 'texlive-latexextra') +optdepends=('texlive-pictures: for package qtree') +groups=('texlive-most') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";) +options=('!emptydirs') +sha256sums=('c7153a006c8e6eab2d2a4bb39c18169d19f8c45c8a88b5ba7589171c36f15df1') + +build() { + cd "$srcdir" + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf {tlpkg,doc,source} || true +} + +package() { + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs + install -m755 -d $pkgdir/usr/share + wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true + for dir in $wanteddirs; do + find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; + find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; + done + if [[ -d texmf-dist ]]; then + find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; + find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; + fi + if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then + find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; + fi + +install -m755 -d $pkgdir/usr/bin +ln -s /usr/share/texmf-dist/scripts/diadia/diadia.lua ${pkgdir}/usr/bin/diadia +}
[arch-commits] Commit in texlive-langextra/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:48:52 Author: remy Revision: 98 upgpkg: texlive-langextra 2018.48507-1 - upgrade package arabluatex 47226 -> 48507 - upgrade package fonts-tlwg 45469 -> 47499 - new package kurdishlipsum - upgrade package xepersian 46485 -> 48396 Modified: texlive-langextra/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:48:02 UTC (rev 97) +++ PKGBUILD2018-09-05 05:48:52 UTC (rev 98) @@ -3,7 +3,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-langextra -pkgver=2018.47226 +pkgver=2018.48507 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - Bundle of all extra language support" @@ -22,7 +22,7 @@ url='http://tug.org/texlive/' source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") options=('!emptydirs') -sha256sums=('b2a5c8d0ad6396d999e7eb71bdaae5021eb87017979a976c5f7ef27f66308ad4' +sha256sums=('ff80c6eceed1755bc81c84c8d30e7fa491d9037ddebdec8f15319a2adf44a2db' '5f7941ded76d37cf8d6d644edfb206345557905fee38e18ada0b3b98f8a8c0f7') build() {
[arch-commits] Commit in texlive-langcyrillic/repos/extra-any (4 files)
Date: Wednesday, September 5, 2018 @ 05:49:08 Author: remy Revision: 333401 archrelease: copy trunk to extra-any Added: texlive-langcyrillic/repos/extra-any/PKGBUILD (from rev 333400, texlive-langcyrillic/trunk/PKGBUILD) texlive-langcyrillic/repos/extra-any/texlive-langcyrillic.maps (from rev 333400, texlive-langcyrillic/trunk/texlive-langcyrillic.maps) Deleted: texlive-langcyrillic/repos/extra-any/PKGBUILD texlive-langcyrillic/repos/extra-any/texlive-langcyrillic.maps ---+ PKGBUILD | 100 ++-- texlive-langcyrillic.maps |4 - 2 files changed, 52 insertions(+), 52 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:49:06 UTC (rev 333400) +++ PKGBUILD2018-09-05 05:49:08 UTC (rev 333401) @@ -1,50 +0,0 @@ -# $Id$ -# Maintainer: Firmicus -# Maintainer: Rémy Oudompheng - -pkgname=texlive-langcyrillic -pkgver=2018.47458 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - Fonts and macro packages to typeset Cyrillic texts" -license=('GPL') -arch=(any) -depends=('texlive-core') -groups=('texlive-lang') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") -options=('!emptydirs') -sha256sums=('736c617a6bd5ef5c92ef48838c7d5d20a795f164043d1022679d056b41bb0930' -'4ca6db61e59bcb0f718a1cb062dad04e7f01866c5a7d320dcf67e6a47130f222') - -build() { - cd "$srcdir" - for p in *.tar.xz; do - bsdtar -xf $p - done - rm -rf {tlpkg,doc,source} || true -} - -package() { - cd "$srcdir" - install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ - install -m755 -d $pkgdir/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; - fi - if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then - find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi - mkdir -p "${pkgdir}/usr/bin" - ln -s /usr/share/texmf-dist/scripts/texlive/rubibtex.sh "${pkgdir}/usr/bin/rubibtex" - ln -s /usr/share/texmf-dist/scripts/texlive/rumakeindex.sh "${pkgdir}/usr/bin/rumakeindex" -} Copied: texlive-langcyrillic/repos/extra-any/PKGBUILD (from rev 333400, texlive-langcyrillic/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:49:08 UTC (rev 333401) @@ -0,0 +1,50 @@ +# $Id$ +# Maintainer: Firmicus +# Maintainer: Rémy Oudompheng + +pkgname=texlive-langcyrillic +pkgver=2018.48484 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - Fonts and macro packages to typeset Cyrillic texts" +license=('GPL') +arch=(any) +depends=('texlive-core') +groups=('texlive-lang') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") +options=('!emptydirs') +sha256sums=('fd6d2a47349469d9001522afd8d4e772d562af4f4e38e719bf5ba6b1a2d9730e' +'4ca6db61e59bcb0f718a1cb062dad04e7f01866c5a7d320dcf67e6a47130f222') + +build() { + cd "$srcdir" + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf {tlpkg,doc,source} || true +} + +package() { + cd "$srcdir" + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs + install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ + install -m755 -d $pkgdir/usr/share + wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true + for dir in $wanteddirs; do + find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; + find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; + done + if [[ -d texmf-dist ]]; then + find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; + find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; + fi + if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then + find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; + fi + mkdir -p "${pkgdir}/usr/bin" + ln -s /usr/share/texmf-dist/scripts/texlive/rubibtex.sh "${pkgdir}/usr/bin/rubi
[arch-commits] Commit in texlive-langcyrillic/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:49:06 Author: remy Revision: 333400 upgpkg: texlive-langcyrillic 2018.48484-1 - upgrade package babel-belarusian 40636 -> 48484 - upgrade package babel-ukrainian 45036 -> 47585 - upgrade package serbian-lig 39096 -> 48197 - upgrade package t2 47458 -> 47870 Modified: texlive-langcyrillic/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:48:54 UTC (rev 99) +++ PKGBUILD2018-09-05 05:49:06 UTC (rev 333400) @@ -3,7 +3,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-langcyrillic -pkgver=2018.47458 +pkgver=2018.48484 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - Fonts and macro packages to typeset Cyrillic texts" @@ -14,7 +14,7 @@ url='http://tug.org/texlive/' source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") options=('!emptydirs') -sha256sums=('736c617a6bd5ef5c92ef48838c7d5d20a795f164043d1022679d056b41bb0930' +sha256sums=('fd6d2a47349469d9001522afd8d4e772d562af4f4e38e719bf5ba6b1a2d9730e' '4ca6db61e59bcb0f718a1cb062dad04e7f01866c5a7d320dcf67e6a47130f222') build() {
[arch-commits] Commit in texlive-langextra/repos/extra-any (4 files)
Date: Wednesday, September 5, 2018 @ 05:48:54 Author: remy Revision: 99 archrelease: copy trunk to extra-any Added: texlive-langextra/repos/extra-any/PKGBUILD (from rev 98, texlive-langextra/trunk/PKGBUILD) texlive-langextra/repos/extra-any/texlive-langextra.maps (from rev 98, texlive-langextra/trunk/texlive-langextra.maps) Deleted: texlive-langextra/repos/extra-any/PKGBUILD texlive-langextra/repos/extra-any/texlive-langextra.maps + PKGBUILD | 116 +++ texlive-langextra.maps | 46 +- 2 files changed, 81 insertions(+), 81 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:48:52 UTC (rev 98) +++ PKGBUILD2018-09-05 05:48:54 UTC (rev 99) @@ -1,58 +0,0 @@ -# $Id$ -# Maintainer: Firmicus -# Maintainer: Rémy Oudompheng - -pkgname=texlive-langextra -pkgver=2018.47226 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - Bundle of all extra language support" -license=('GPL') -arch=(any) -conflicts=('texlive-langafrican' 'texlive-langarab' 'texlive-langarabic' - 'texlive-langarmenian' 'texlive-langcroatian' 'texlive-langhebrew' - 'texlive-langindic' 'texlive-langmongolian' 'texlive-langtibetan' - 'texlive-langvietnamese') -provides=('texlive-langafrican' 'texlive-langarabic' 'texlive-langarmenian' - 'texlive-langarmenian' 'texlive-langcroatian' 'texlive-langhebrew' - 'texlive-langindic' 'texlive-langmongolian' 'texlive-langtibetan' - 'texlive-langvietnamese') -depends=('texlive-latexextra') -groups=('texlive-lang') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") -options=('!emptydirs') -sha256sums=('b2a5c8d0ad6396d999e7eb71bdaae5021eb87017979a976c5f7ef27f66308ad4' -'5f7941ded76d37cf8d6d644edfb206345557905fee38e18ada0b3b98f8a8c0f7') - -build() { - cd "$srcdir" - for p in *.tar.xz; do - bsdtar -xf $p - done - rm -rf {tlpkg,doc,source} || true -} - -package() { - cd "$srcdir" - install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ - install -m755 -d $pkgdir/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; - fi - if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then - find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi - #remove parts of ethiop that depend on Omega: - rm -rf $pkgdir/usr/share/texmf-dist/fonts/{ofm,ovf,ovp} - rm -rf $pkgdir/usr/share/texmf-dist/omega -} Copied: texlive-langextra/repos/extra-any/PKGBUILD (from rev 98, texlive-langextra/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:48:54 UTC (rev 99) @@ -0,0 +1,58 @@ +# $Id$ +# Maintainer: Firmicus +# Maintainer: Rémy Oudompheng + +pkgname=texlive-langextra +pkgver=2018.48507 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - Bundle of all extra language support" +license=('GPL') +arch=(any) +conflicts=('texlive-langafrican' 'texlive-langarab' 'texlive-langarabic' + 'texlive-langarmenian' 'texlive-langcroatian' 'texlive-langhebrew' + 'texlive-langindic' 'texlive-langmongolian' 'texlive-langtibetan' + 'texlive-langvietnamese') +provides=('texlive-langafrican' 'texlive-langarabic' 'texlive-langarmenian' + 'texlive-langarmenian' 'texlive-langcroatian' 'texlive-langhebrew' + 'texlive-langindic' 'texlive-langmongolian' 'texlive-langtibetan' + 'texlive-langvietnamese') +depends=('texlive-latexextra') +groups=('texlive-lang') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") +options=('!emptydirs') +sha256sums=('ff80c6eceed1755bc81c84c8d30e7fa491d9037ddebdec8f15319a2adf44a2db' +'5f7941ded76d37cf8d6d644edfb206345557905fee38e18ada0b3b98f8a8c0f7') + +build() { + cd "$srcdir" + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf {tlpkg,doc,source} || true +} + +package() { + cd "$srcdir" + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS +
[arch-commits] Commit in texlive-langjapanese/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:48:00 Author: remy Revision: 96 upgpkg: texlive-langjapanese 2018.48562-1 - upgrade package bxjscls 47174 -> 48466 - new package endnotesj - upgrade package gentombow 46987 -> 48512 - upgrade package japanese-otf-uptex 47352 -> 47702 - upgrade package jlreq 46514 -> 48535 - upgrade package jsclasses 46918 -> 48078 - upgrade package luatexja 47178 -> 48483 - upgrade package platex 47402 -> 48562 - new package plautopatch - upgrade package ptex 47198 -> 47918 - upgrade package ptex-base 45140 -> 48432 - upgrade package ptex2pdf 44664 -> 47716 - upgrade package pxjahyper 46440 -> 48207 - upgrade package pxrubrica 45854 -> 48421 - upgrade package uplatex 47376 -> 48294 - upgrade package uptex 46931 -> 47918 - upgrade package zxjatype 44949 -> 47597 Modified: texlive-langjapanese/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:47:42 UTC (rev 95) +++ PKGBUILD2018-09-05 05:48:00 UTC (rev 96) @@ -2,7 +2,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-langjapanese -pkgver=2018.47402 +pkgver=2018.48562 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - Fonts and macro packages to typeset Japanese texts" @@ -15,7 +15,7 @@ "$pkgname.maps" "$pkgname.fmts") options=('!emptydirs') -sha256sums=('a6c9452bcfb1fcfdcb6b490de4cb9514b489b3530e231b54725ac2ffdc779be0' +sha256sums=('02399ae278ad70671fd949fdd73e66ef2b506df3c9a6698b0b8c9ae7acb5f6f4' '0ed1679f0bfd7a2afcac173cbb15da95672a24479a8c7ba9ec20222449394601' 'd81d467f9c1963330e1af03d50eda43cbc12d29f3644beec5165de4fd3e4cf3b')
[arch-commits] Commit in texlive-langjapanese/repos/extra-any (6 files)
Date: Wednesday, September 5, 2018 @ 05:48:02 Author: remy Revision: 97 archrelease: copy trunk to extra-any Added: texlive-langjapanese/repos/extra-any/PKGBUILD (from rev 96, texlive-langjapanese/trunk/PKGBUILD) texlive-langjapanese/repos/extra-any/texlive-langjapanese.fmts (from rev 96, texlive-langjapanese/trunk/texlive-langjapanese.fmts) texlive-langjapanese/repos/extra-any/texlive-langjapanese.maps (from rev 96, texlive-langjapanese/trunk/texlive-langjapanese.maps) Deleted: texlive-langjapanese/repos/extra-any/PKGBUILD texlive-langjapanese/repos/extra-any/texlive-langjapanese.fmts texlive-langjapanese/repos/extra-any/texlive-langjapanese.maps ---+ PKGBUILD | 130 ++-- texlive-langjapanese.fmts | 12 ++-- texlive-langjapanese.maps | 34 +-- 3 files changed, 88 insertions(+), 88 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:48:00 UTC (rev 96) +++ PKGBUILD2018-09-05 05:48:02 UTC (rev 97) @@ -1,65 +0,0 @@ -# $Id$ -# Maintainer: Rémy Oudompheng - -pkgname=texlive-langjapanese -pkgver=2018.47402 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - Fonts and macro packages to typeset Japanese texts" -license=('GPL') -arch=(any) -depends=('texlive-core') -groups=('texlive-lang') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; -"$pkgname.maps" -"$pkgname.fmts") -options=('!emptydirs') -sha256sums=('a6c9452bcfb1fcfdcb6b490de4cb9514b489b3530e231b54725ac2ffdc779be0' -'0ed1679f0bfd7a2afcac173cbb15da95672a24479a8c7ba9ec20222449394601' -'d81d467f9c1963330e1af03d50eda43cbc12d29f3644beec5165de4fd3e4cf3b') - -build() { - cd "$srcdir" - for p in *.tar.xz; do - bsdtar -xf $p - done - rm -rf tlpkg -} - -package() { - install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ - install -m644 $pkgname.fmts $pkgdir/var/lib/texmf/arch/installedpkgs/ - install -m755 -d $pkgdir/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; - fi - if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then - find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi - -# scripts links -_linked_scripts=" -convbkmk/convbkmk.rb -ptex2pdf/ptex2pdf.lua -ptex-fontmaps/kanji-config-updmap.pl -ptex-fontmaps/kanji-config-updmap-sys.sh -ptex-fontmaps/kanji-config-updmap-user.sh -ptex-fontmaps/kanji-fontmap-creator.pl -" -install -m755 -d $pkgdir/usr/bin -for _script in ${_linked_scripts}; do -_scriptbase=$(basename $_script) -_scriptbase=${_scriptbase%.*} -ln -s /usr/share/texmf-dist/scripts/${_script} ${pkgdir}/usr/bin/${_scriptbase} -done -} Copied: texlive-langjapanese/repos/extra-any/PKGBUILD (from rev 96, texlive-langjapanese/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:48:02 UTC (rev 97) @@ -0,0 +1,65 @@ +# $Id$ +# Maintainer: Rémy Oudompheng + +pkgname=texlive-langjapanese +pkgver=2018.48562 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - Fonts and macro packages to typeset Japanese texts" +license=('GPL') +arch=(any) +depends=('texlive-core') +groups=('texlive-lang') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; +"$pkgname.maps" +"$pkgname.fmts") +options=('!emptydirs') +sha256sums=('02399ae278ad70671fd949fdd73e66ef2b506df3c9a6698b0b8c9ae7acb5f6f4' +'0ed1679f0bfd7a2afcac173cbb15da95672a24479a8c7ba9ec20222449394601' +'d81d467f9c1963330e1af03d50eda43cbc12d29f3644beec5165de4fd3e4cf3b') + +build() { + cd "$srcdir" + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf tlpkg +} + +package() { + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs + install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ + install -m644 $pkgname.fmts $pkgdir/var/lib/texmf/arch/installedpkgs/ +
[arch-commits] Commit in texlive-latexextra/repos/extra-any (4 files)
Date: Wednesday, September 5, 2018 @ 05:47:42 Author: remy Revision: 95 archrelease: copy trunk to extra-any Added: texlive-latexextra/repos/extra-any/PKGBUILD (from rev 94, texlive-latexextra/trunk/PKGBUILD) texlive-latexextra/repos/extra-any/texlive-latexextra.maps (from rev 94, texlive-latexextra/trunk/texlive-latexextra.maps) Deleted: texlive-latexextra/repos/extra-any/PKGBUILD texlive-latexextra/repos/extra-any/texlive-latexextra.maps -+ PKGBUILD| 158 +++--- texlive-latexextra.maps |6 - 2 files changed, 83 insertions(+), 81 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:47:41 UTC (rev 94) +++ PKGBUILD2018-09-05 05:47:42 UTC (rev 95) @@ -1,78 +0,0 @@ -# $Id$ -# Maintainer: Firmicus -# Maintainer: Rémy Oudompheng - -pkgname=texlive-latexextra -pkgver=2018.47410 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - Large collection of add-on packages for LaTeX" -license=('GPL') -arch=(any) -depends=('texlive-core' - 'perl-file-which' # for pdfannotextractor -) -optdepends=( - 'texlive-genericextra: to use the calctab package' - 'texlive-pictures: to use the package overpic' - 'java-environment: to use pdfannotextractor' -) -groups=('texlive-most') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; -"$pkgname.maps") -options=('!emptydirs') -sha256sums=('ddb3546483ed925f965a7440377fe8cd8e82fd1b213dbda66afb1b1eb4bc77ad' -'d53750a03a52472a1c7c5ba5142959ba382a5d69215471691c0b12c3663950ce') - -build() { - for p in *.tar.xz; do - bsdtar -xf $p - done - rm -rf {tlpkg,doc,source} || true -} - -package() { - install -m755 -d "$pkgdir"/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS "$pkgdir"/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m644 $pkgname.maps "$pkgdir"/var/lib/texmf/arch/installedpkgs/ - install -m755 -d "$pkgdir"/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 "$pkgdir"/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' "$pkgdir"/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 "$pkgdir"/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' "$pkgdir"/usr/share/'{}' \; - fi - if [[ -d "$pkgdir"/usr/share/texmf-dist/scripts ]]; then - find "$pkgdir"/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi - -#add symlinks that were in texlive-bin: -_linked_scripts=" -authorindex/authorindex -exceltex/exceltex -glossaries/makeglossaries -glossaries/makeglossaries-lite.lua -l3build/l3build.lua -makedtx/makedtx.pl -pax/pdfannotextractor.pl -perltex/perltex.pl -splitindex/splitindex.pl -svn-multi/svn-multi.pl -vpe/vpe.pl -wordcount/wordcount.sh -yplan/yplan -" -install -m755 -d "$pkgdir"/usr/bin -for _script in ${_linked_scripts}; do -_scriptbase=$(basename $_script) -_scriptbase=${_scriptbase%.*} -ln -s /usr/share/texmf-dist/scripts/${_script} ${pkgdir}/usr/bin/${_scriptbase} -done - -rm "$pkgdir"/usr/share/texmf-dist/scripts/shipunov/biokey2html.bat -} Copied: texlive-latexextra/repos/extra-any/PKGBUILD (from rev 94, texlive-latexextra/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:47:42 UTC (rev 95) @@ -0,0 +1,80 @@ +# $Id$ +# Maintainer: Firmicus +# Maintainer: Rémy Oudompheng + +pkgname=texlive-latexextra +pkgver=2018.48568 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - Large collection of add-on packages for LaTeX" +license=('GPL') +arch=(any) +depends=('texlive-core' + 'perl-file-which' # for pdfannotextractor +) +optdepends=( + 'python2-pygments: for pygmentex' + 'texlive-genericextra: to use the calctab package' + 'texlive-pictures: to use the package overpic' + 'java-environment: to use pdfannotextractor' +) +groups=('texlive-most') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; +"$pkgname.maps") +options=('!emptydirs') +sha256sums=('c2ce3ffc4fbbb7a3ba81e89026646e42e8b5d84d8417bc286aaf49cf83e84ead' +'d53750a03a52472a1c7c5ba5142959ba382a5d69215471691c0b12c3663950ce') + +build() { + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf {tlpkg,doc,source} || true +} + +package() { + install -m755 -d "$pkgdir"/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS "$pkgdir"/var/lib/texmf/arch/in
[arch-commits] Commit in texlive-latexextra/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:47:41 Author: remy Revision: 94 upgpkg: texlive-latexextra 2018.48568-1 - upgrade package achemso 46557 -> 48203 - upgrade package animate 46765 -> 48455 - new package axessibility - upgrade package beamerposter 37009 -> 47508 - new package beamertheme-focus - new package beamertheme-npbt - upgrade package catechis 46309 -> 48490 - new package cellprops - upgrade package chngcntr 17157 -> 47577 - upgrade package cleveref 46847 -> 47525 - upgrade package clipboard 28876 -> 47747 - new package clrdblpg - new package clrstrip - new package colophon - new package competences - upgrade package contracard 45643 -> 48250 - upgrade package cooking-units 45585 -> 47943 - upgrade package csquotes 46601 -> 47564 - upgrade package dashundergaps 23373 -> 48081 - upgrade package datatool 45759 -> 47543 - upgrade package datetime2 41686 -> 48236 - upgrade package datetime2-estonian 36682 -> 47565 - upgrade package datetime2-galician 36692 -> 47631 - upgrade package datetime2-greek 36692 -> 47533 - upgrade package datetime2-hebrew 36692 -> 47534 - upgrade package datetime2-icelandic 36692 -> 47501 - upgrade package datetime2-irish 36635 -> 47632 - upgrade package datetime2-latin 36692 -> 47748 - upgrade package datetime2-lsorbian 36692 -> 47749 - upgrade package datetime2-magyar 36692 -> 48266 - upgrade package datetime2-norsk 36692 -> 48267 - upgrade package datetime2-polish 36692 -> 48456 - upgrade package datetime2-portuges 36670 -> 48457 - upgrade package datetime2-ukrainian 44588 -> 47552 - upgrade package doclicense 46661 -> 47975 - upgrade package ducksay 45647 -> 48375 - upgrade package duckuments 47048 -> 48545 - new package erw-l3 - upgrade package esami 46961 -> 47639 - upgrade package etoc 46735 -> 48136 - upgrade package europecv 34454 -> 48565 - upgrade package exercisebank 47380 -> 48242 - upgrade package factura 46949 -> 48333 - upgrade package filecontents 24250 -> 47890 - new package gatherenum - upgrade package glossaries 47357 -> 48258 - upgrade package glossaries-extra 47410 -> 48437 - upgrade package handin 47292 -> 48255 - new package hyperbar - upgrade package ifmtarg 19363 -> 47544 - new package inline-images - upgrade package invoice 39397 -> 48359 - upgrade package isodoc 39520 -> 47868 - upgrade package knowledge 46669 -> 48280 - upgrade package komacv-rg 45187 -> 47668 - upgrade package l3build 47135 -> 48367 - upgrade package lettrine 38268 -> 48513 - upgrade package lua-check-hyphen 46573 -> 47527 - new package manyind - upgrade package marginfit 44788 -> 48281 - upgrade package marginnote 43979 -> 48383 - upgrade package mathalfa 43332 -> 47575 - upgrade package mathastext 42447 -> 48458 - new package mathfont - upgrade package media9 47333 -> 47957 - upgrade package minitoc 37852 -> 48196 - upgrade package multirow 42588 -> 48354 - upgrade package ncctools 15878 -> 48127 - upgrade package nidanfloat 46906 -> 48295 - upgrade package ocgx2 47334 -> 48103 - upgrade package optidef 45945 -> 48228 - upgrade package overpic 45500 -> 48550 - new package padcount - upgrade package paracol 38621 -> 47750 - new package pdfoverlay - new package pdfpc-movie - upgrade package phonenumbers 46194 -> 48355 - upgrade package pkgloader 47251 -> 47486 - upgrade package proofread 43370 -> 48322 - upgrade package regexpatch 47233 -> 47601 - upgrade package register 21127 -> 48433 - new package returntogrid - upgrade package robustindex 45452 -> 47521 - upgrade package semantic-markup 42374 -> 47837 - upgrade package skdoc 43170 -> 47526 - upgrade package subfiles 26645 -> 48323 - new package tagpdf - upgrade package tcolorbox 47079 -> 48282 - new package tex-locale - upgrade package textualicomma 45980 -> 48474 - upgrade package todonotes 42423 -> 48208 - upgrade package uri 21608 -> 48538 - new package worksheet - upgrade package xassoccnt 46209 -> 47976 - new package xbmks - upgrade package xellipsis 42764 -> 47546 - new package xfakebold - upgrade package xint 46870 -> 48040 - upgrade package xltabular 45609 -> 47829 - upgrade package xsavebox 47177 -> 48171 - upgrade package xurl 46268 -> 47904 - upgrade package yafoot 19086 -> 48568 - deleted package statistik Modified: texlive-latexextra/trunk/PKGBUILD --+ PKGBUILD |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:47:03 UTC (rev 93) +++ PKGBUILD2018-09-05 05:47:41 UTC (rev 94) @@ -3,7 +3,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-latexextra -pkgver=2018.47410 +pkgver=2018.48568 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - Large collection of add-on packages for LaTeX" @@ -13,6 +13,7 @@ 'perl-file-which' # for pdfannotextractor ) optdepends=( + 'python2-pygments: for pygmentex' 'texlive-genericextra: to use the calctab package' 'texlive-pictures: to use the package overpic' 'java-environment: to use
[arch-commits] Commit in texlive-music/repos/extra-any (4 files)
Date: Wednesday, September 5, 2018 @ 05:47:03 Author: remy Revision: 93 archrelease: copy trunk to extra-any Added: texlive-music/repos/extra-any/PKGBUILD (from rev 92, texlive-music/trunk/PKGBUILD) texlive-music/repos/extra-any/texlive-music.maps (from rev 92, texlive-music/trunk/texlive-music.maps) Deleted: texlive-music/repos/extra-any/PKGBUILD texlive-music/repos/extra-any/texlive-music.maps + PKGBUILD | 114 +-- texlive-music.maps |2 2 files changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:47:02 UTC (rev 92) +++ PKGBUILD2018-09-05 05:47:03 UTC (rev 93) @@ -1,57 +0,0 @@ -# $Id$ -# Maintainer: Firmicus -# Maintainer: Rémy Oudompheng - -pkgname=texlive-music -pkgver=2018.47198 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - Music typesetting packages" -license=('GPL') -arch=(any) -depends=('texlive-core') -optdepends=('python2: for scripts from the lilyglyphs packages') -groups=('texlive-most') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") -options=('!emptydirs') -sha256sums=('ab9633dd966e40566c342f737e965330bcf5690c077fce5b5bcef7ae26bf2a6a' -'0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f') - -build() { - for p in *.tar.xz; do - bsdtar -xf $p - done - rm -rf {tlpkg,doc,source} || true -} - -package() { - install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ - install -m755 -d $pkgdir/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; - fi - if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then - find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi - # fix python2 command name in scripts. - sed -i 's/env python/env python2/' $pkgdir/usr/share/texmf-dist/scripts/lilyglyphs/*.py - # script symlinks - install -m755 -d $pkgdir/usr/bin - ln -s /usr/share/texmf-dist/scripts/lilyglyphs/lily-glyph-commands.py $pkgdir/usr/bin/lily-glyph-commands - ln -s /usr/share/texmf-dist/scripts/lilyglyphs/lily-image-commands.py $pkgdir/usr/bin/lily-image-commands - ln -s /usr/share/texmf-dist/scripts/lilyglyphs/lily-rebuild-pdfs.py $pkgdir/usr/bin/lily-rebuild-pdfs - ln -s /usr/share/texmf-dist/scripts/m-tx/m-tx.lua $pkgdir/usr/bin/m-tx - ln -s /usr/share/texmf-dist/scripts/musixtex/musixflx.lua $pkgdir/usr/bin/musixflx - ln -s /usr/share/texmf-dist/scripts/musixtex/musixtex.lua $pkgdir/usr/bin/musixtex - ln -s /usr/share/texmf-dist/scripts/pmxchords/pmxchords.lua $pkgdir/usr/bin/pmxchords -} Copied: texlive-music/repos/extra-any/PKGBUILD (from rev 92, texlive-music/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:47:03 UTC (rev 93) @@ -0,0 +1,57 @@ +# $Id$ +# Maintainer: Firmicus +# Maintainer: Rémy Oudompheng + +pkgname=texlive-music +pkgver=2018.48353 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - Music typesetting packages" +license=('GPL') +arch=(any) +depends=('texlive-core') +optdepends=('python2: for scripts from the lilyglyphs packages') +groups=('texlive-most') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") +options=('!emptydirs') +sha256sums=('937f9465021576da846d058ba8164bee4b92479c293f7590c4f2f915a044ec24' +'0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f') + +build() { + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf {tlpkg,doc,source} || true +} + +package() { + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs + install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ + install -m755 -d $pkgdir/usr/share + wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true + for dir in $wanteddirs; do + find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; +
[arch-commits] Commit in texlive-music/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:47:02 Author: remy Revision: 92 upgpkg: texlive-music 2018.48353-1 - new package guitartabs - upgrade package lyluatex 46952 -> 47584 - upgrade package m-tx 47198 -> 47553 - upgrade package musicography 45658 -> 47838 - upgrade package musixtex 46141 -> 48353 Modified: texlive-music/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:46:51 UTC (rev 91) +++ PKGBUILD2018-09-05 05:47:02 UTC (rev 92) @@ -3,7 +3,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-music -pkgver=2018.47198 +pkgver=2018.48353 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - Music typesetting packages" @@ -15,7 +15,7 @@ url='http://tug.org/texlive/' source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; "$pkgname.maps") options=('!emptydirs') -sha256sums=('ab9633dd966e40566c342f737e965330bcf5690c077fce5b5bcef7ae26bf2a6a' +sha256sums=('937f9465021576da846d058ba8164bee4b92479c293f7590c4f2f915a044ec24' '0b3cc045390e756eb9243c0acc99a48a9c02ddab4764f4a00f8c3170660f017f') build() {
[arch-commits] Commit in texlive-pictures/repos/extra-any (6 files)
Date: Wednesday, September 5, 2018 @ 05:46:51 Author: remy Revision: 91 archrelease: copy trunk to extra-any Added: texlive-pictures/repos/extra-any/PKGBUILD (from rev 90, texlive-pictures/trunk/PKGBUILD) texlive-pictures/repos/extra-any/texlive-pictures.maps (from rev 90, texlive-pictures/trunk/texlive-pictures.maps) texlive-pictures/repos/extra-any/xypdf-rev1.21.patch (from rev 90, texlive-pictures/trunk/xypdf-rev1.21.patch) Deleted: texlive-pictures/repos/extra-any/PKGBUILD texlive-pictures/repos/extra-any/texlive-pictures.maps texlive-pictures/repos/extra-any/xypdf-rev1.21.patch ---+ PKGBUILD | 136 +- texlive-pictures.maps |4 xypdf-rev1.21.patch | 598 3 files changed, 369 insertions(+), 369 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:46:49 UTC (rev 90) +++ PKGBUILD2018-09-05 05:46:51 UTC (rev 91) @@ -1,68 +0,0 @@ -# $Id: PKGBUILD$ -# Maintainer: Rémy Oudompheng - -pkgname=texlive-pictures -pkgver=2018.47373 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - Packages for drawings graphics" -license=('GPL') -arch=(any) -depends=('texlive-core') -groups=('texlive-most') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; -"$pkgname.maps" -"xypdf-rev1.21.patch") -options=('!emptydirs') -sha256sums=('dfb1ff80215345a534e46609f64ebd08fa5b0f277f24d17d06fdaeebd6a0bc5b' -'847676e2322065219992ef249a68cddb26d71e192e8d59db58f264c5e11c8be9' -'4e5cedf4775542461b442c06bdabb3eb4e20a04f54e493bc753a958577e78175') - -build() { - cd "$srcdir" - for p in *.tar.xz; do - bsdtar -xf $p - done - rm -rf {tlpkg,doc,source} || true - - patch -Np1 -i "${srcdir}/xypdf-rev1.21.patch" -d "${srcdir}/tex/generic/xypic" -} - -package() { - cd "$srcdir" - install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ - install -m755 -d $pkgdir/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; - fi - if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then - find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi - -_linked_scripts=" -cachepic/cachepic.tlu -epspdf/epspdftk.tcl -epspdf/epspdf.tlu -fig4latex/fig4latex -getmap/getmapdl.lua -mathspic/mathspic.pl -mkpic/mkpic -petri-nets/pn2pdf -" -install -m755 -d $pkgdir/usr/bin -for _script in ${_linked_scripts}; do -_scriptbase=$(basename $_script) -_scriptbase=${_scriptbase%.*} -ln -s /usr/share/texmf-dist/scripts/${_script} ${pkgdir}/usr/bin/${_scriptbase} -done -} Copied: texlive-pictures/repos/extra-any/PKGBUILD (from rev 90, texlive-pictures/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:46:51 UTC (rev 91) @@ -0,0 +1,68 @@ +# $Id: PKGBUILD$ +# Maintainer: Rémy Oudompheng + +pkgname=texlive-pictures +pkgver=2018.48511 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - Packages for drawings graphics" +license=('GPL') +arch=(any) +depends=('texlive-core') +groups=('texlive-most') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; +"$pkgname.maps" +"xypdf-rev1.21.patch") +options=('!emptydirs') +sha256sums=('9735c6b6c656d91f7992d45cee312e75b2b7a950ba7e62675a7e493fbd08f5f5' +'847676e2322065219992ef249a68cddb26d71e192e8d59db58f264c5e11c8be9' +'4e5cedf4775542461b442c06bdabb3eb4e20a04f54e493bc753a958577e78175') + +build() { + cd "$srcdir" + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf {tlpkg,doc,source} || true + + patch -Np1 -i "${srcdir}/xypdf-rev1.21.patch" -d "${srcdir}/tex/generic/xypic" +} + +package() { + cd "$srcdir" + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs + install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ + install -m755 -d $pkgdir/usr/share + wanteddirs=$(for d in *; do test -d
[arch-commits] Commit in texlive-pictures/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:46:49 Author: remy Revision: 90 upgpkg: texlive-pictures 2018.48511-1 - upgrade package beamerswitch 46042 -> 48511 - upgrade package chemfig 47329 -> 48467 - upgrade package dynkin-diagrams 46821 -> 48265 - upgrade package genealogytree 46018 -> 47539 - upgrade package getmap 41503 -> 48243 - upgrade package graph35 47088 -> 47522 - upgrade package latex-make 42914 -> 47869 - new package milsymb - new package penrose - upgrade package pgf-blur 31693 -> 48446 - new package postage - upgrade package qcircuit 42816 -> 48400 - upgrade package scsnowman 46320 -> 47953 - new package tikz-nef - new package tikz-network - upgrade package tikz-relay 46680 -> 48024 - upgrade package tikzducks 47289 -> 48176 - new package tikzmarmots - upgrade package tikzsymbols 45222 -> 47730 - upgrade package venndiagram 40058 -> 47952 Modified: texlive-pictures/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:46:23 UTC (rev 89) +++ PKGBUILD2018-09-05 05:46:49 UTC (rev 90) @@ -2,7 +2,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-pictures -pkgver=2018.47373 +pkgver=2018.48511 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - Packages for drawings graphics" @@ -15,7 +15,7 @@ "$pkgname.maps" "xypdf-rev1.21.patch") options=('!emptydirs') -sha256sums=('dfb1ff80215345a534e46609f64ebd08fa5b0f277f24d17d06fdaeebd6a0bc5b' +sha256sums=('9735c6b6c656d91f7992d45cee312e75b2b7a950ba7e62675a7e493fbd08f5f5' '847676e2322065219992ef249a68cddb26d71e192e8d59db58f264c5e11c8be9' '4e5cedf4775542461b442c06bdabb3eb4e20a04f54e493bc753a958577e78175')
[arch-commits] Commit in texlive-pstricks/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:46:21 Author: remy Revision: 88 upgpkg: texlive-pstricks 2018.48533-1 - new package pst-contourplot - upgrade package pst-eucl 43911 -> 48533 - upgrade package pst-ode 45057 -> 47959 - upgrade package pst-plot 47163 -> 48526 - upgrade package pst-poker 45117 -> 48347 - upgrade package pstricks 46232 -> 48475 Modified: texlive-pstricks/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:46:05 UTC (rev 87) +++ PKGBUILD2018-09-05 05:46:21 UTC (rev 88) @@ -3,7 +3,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-pstricks -pkgver=2018.47400 +pkgver=2018.48533 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - Additional PSTricks packages" @@ -14,7 +14,7 @@ url='http://tug.org/texlive/' source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";) options=('!emptydirs') -sha256sums=('fbb1eab11f25b9d9471cb9370c6169657b854925222a866b47ff23acf1e318a7') +sha256sums=('8d9e2b8460154bb99e38c440ed90e05aea12039848aa73ab6eac2ff7e9a6f416') build() { for p in *.tar.xz; do
[arch-commits] Commit in texlive-pstricks/repos/extra-any (PKGBUILD PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:46:23 Author: remy Revision: 89 archrelease: copy trunk to extra-any Added: texlive-pstricks/repos/extra-any/PKGBUILD (from rev 88, texlive-pstricks/trunk/PKGBUILD) Deleted: texlive-pstricks/repos/extra-any/PKGBUILD --+ PKGBUILD | 94 ++--- 1 file changed, 47 insertions(+), 47 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:46:21 UTC (rev 88) +++ PKGBUILD2018-09-05 05:46:23 UTC (rev 89) @@ -1,47 +0,0 @@ -# $Id: PKGBUILD$ -# Maintainer: Firmicus -# Maintainer: Rémy Oudompheng - -pkgname=texlive-pstricks -pkgver=2018.47400 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - Additional PSTricks packages" -license=('GPL') -arch=(any) -depends=('texlive-core') -groups=('texlive-most') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";) -options=('!emptydirs') -sha256sums=('fbb1eab11f25b9d9471cb9370c6169657b854925222a866b47ff23acf1e318a7') - -build() { - for p in *.tar.xz; do - bsdtar -xf $p - done - rm -rf {tlpkg,doc,source} || true -} -package() { - install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m755 -d $pkgdir/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; - fi - if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then - find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi - rm "$pkgdir"/usr/share/texmf-dist/scripts/pst-pdf/ps4pdf.bat* - install -m755 -d $pkgdir/usr/bin - ln -s /usr/share/texmf-dist/scripts/pedigree-perl/pedigree.pl $pkgdir/usr/bin/pedigree - ln -s /usr/share/texmf-dist/scripts/pst2pdf/pst2pdf.pl $pkgdir/usr/bin/pst2pdf - ln -s /usr/share/texmf-dist/scripts/pst-pdf/ps4pdf $pkgdir/usr/bin/ps4pdf -} Copied: texlive-pstricks/repos/extra-any/PKGBUILD (from rev 88, texlive-pstricks/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:46:23 UTC (rev 89) @@ -0,0 +1,47 @@ +# $Id: PKGBUILD$ +# Maintainer: Firmicus +# Maintainer: Rémy Oudompheng + +pkgname=texlive-pstricks +pkgver=2018.48533 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - Additional PSTricks packages" +license=('GPL') +arch=(any) +depends=('texlive-core') +groups=('texlive-most') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";) +options=('!emptydirs') +sha256sums=('8d9e2b8460154bb99e38c440ed90e05aea12039848aa73ab6eac2ff7e9a6f416') + +build() { + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf {tlpkg,doc,source} || true +} +package() { + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs + install -m755 -d $pkgdir/usr/share + wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true + for dir in $wanteddirs; do + find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; + find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; + done + if [[ -d texmf-dist ]]; then + find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; + find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; + fi + if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then + find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; + fi + rm "$pkgdir"/usr/share/texmf-dist/scripts/pst-pdf/ps4pdf.bat* + install -m755 -d $pkgdir/usr/bin + ln -s /usr/share/texmf-dist/scripts/pedigree-perl/pedigree.pl $pkgdir/usr/bin/pedigree + ln -s /usr/share/texmf-dist/scripts/pst2pdf/pst2pdf.pl $pkgdir/usr/bin/pst2pdf + ln -s /usr/share/texmf-dist/scripts/pst-pdf/ps4pdf $pkgdir/usr/bin/ps4pdf +}
[arch-commits] Commit in texlive-science/repos/extra-any (6 files)
Date: Wednesday, September 5, 2018 @ 05:45:36 Author: remy Revision: 85 archrelease: copy trunk to extra-any Added: texlive-science/repos/extra-any/PKGBUILD (from rev 84, texlive-science/trunk/PKGBUILD) texlive-science/repos/extra-any/texlive-science.fmts (from rev 84, texlive-science/trunk/texlive-science.fmts) texlive-science/repos/extra-any/texlive-science.maps (from rev 84, texlive-science/trunk/texlive-science.maps) Deleted: texlive-science/repos/extra-any/PKGBUILD texlive-science/repos/extra-any/texlive-science.fmts texlive-science/repos/extra-any/texlive-science.maps --+ PKGBUILD | 106 - texlive-science.fmts |2 texlive-science.maps |6 +- 3 files changed, 56 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:45:33 UTC (rev 84) +++ PKGBUILD2018-09-05 05:45:36 UTC (rev 85) @@ -1,54 +0,0 @@ -# $Id: PKGBUILD$ -# Maintainer: Rémy Oudompheng - -pkgname=texlive-science -pkgver=2018.47412 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - Typesetting for mathematics, natural and computer sciences" -license=('GPL') -arch=(any) -depends=('texlive-core') -optdepends=('python2-pygments: for pygmentex') -groups=('texlive-most') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; -"$pkgname.maps" -"$pkgname.fmts") -options=('!emptydirs') -sha256sums=('e53cd087583008a67b96b37711831a23fb1202780bf18b021bafd51169429df9' -'1d9151c9cabc3521b4406731b0147d80e0bf600bdedaf55a1a49b8775165daa8' -'1cbd5339f8cfa32214a749a408cf7136fd5acffaffcde6500a337d332c70c5c3') - -build() { - cd "$srcdir" - for p in *.tar.xz; do - bsdtar -xf $p - done - rm -rf {tlpkg,doc,source} || true -} - -package() { - cd "$srcdir" - install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ - install -m644 $pkgname.fmts $pkgdir/var/lib/texmf/arch/installedpkgs/ - install -m755 -d $pkgdir/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; - fi - if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then - find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi - install -m755 -d $pkgdir/usr/bin - ln -s /usr/share/texmf-dist/scripts/pygmentex/pygmentex.py $pkgdir/usr/bin/pygmentex - ln -s /usr/share/texmf-dist/scripts/ulqda/ulqda.pl $pkgdir/usr/bin/ulqda -} Copied: texlive-science/repos/extra-any/PKGBUILD (from rev 84, texlive-science/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:45:36 UTC (rev 85) @@ -0,0 +1,52 @@ +# $Id: PKGBUILD$ +# Maintainer: Rémy Oudompheng + +pkgname=texlive-science +pkgver=2018.48515 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - Typesetting for mathematics, natural and computer sciences" +license=('GPL') +arch=(any) +depends=('texlive-core') +groups=('texlive-most') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; +"$pkgname.maps" +"$pkgname.fmts") +options=('!emptydirs') +sha256sums=('5bf8c8f1ed382a5738ce7f342a4a157e074f364af41cb26b8c120d303fa914c7' +'1d9151c9cabc3521b4406731b0147d80e0bf600bdedaf55a1a49b8775165daa8' +'1cbd5339f8cfa32214a749a408cf7136fd5acffaffcde6500a337d332c70c5c3') + +build() { + cd "$srcdir" + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf {tlpkg,doc,source} || true +} + +package() { + cd "$srcdir" + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs + install -m644 $pkgname.maps $pkgdir/var/lib/texmf/arch/installedpkgs/ + install -m644 $pkgname.fmts $pkgdir/var/lib/texmf/arch/installedpkgs/ + install -m755 -d $pkgdir/usr/share + wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true + for dir in $wanteddirs; do + find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; + find $dir -type f -exec inst
[arch-commits] Commit in texlive-publishers/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:46:03 Author: remy Revision: 86 upgpkg: texlive-publishers 2018.48567-1 - upgrade package aastex 39929 -> 47692 - upgrade package abnt 45655 -> 48305 - upgrade package acmart 47404 -> 48214 - upgrade package apa6 44652 -> 48546 - new package bath-bst - new package chs-physics-report - upgrade package classicthesis 45578 -> 48041 - upgrade package dccpaper 45638 -> 47717 - new package ecothesis - upgrade package elsarticle 15878 -> 48134 - new package etsvthor - new package jnuexam - upgrade package langsci 45403 -> 47487 - upgrade package lni 46322 -> 48133 - upgrade package novel 47361 -> 47492 - upgrade package pkuthss 43374 -> 48124 - new package powerdot-tuliplab - upgrade package sapthesis 39014 -> 48365 - upgrade package schule 37277 -> 48471 - upgrade package scientific-thesis-cover 46172 -> 47923 - upgrade package thesis-gwu 46524 -> 48537 - upgrade package thucoursework 47227 -> 47781 - upgrade package thuthesis 46132 -> 47740 - new package tlc-article - new package topletter - upgrade package toptesi 46404 -> 47699 - upgrade package uantwerpendocs 46786 -> 48061 - new package ucsmonograph - upgrade package univie-ling 46790 -> 48567 - upgrade package yathesis 42671 -> 48172 Modified: texlive-publishers/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 05:45:36 UTC (rev 85) +++ PKGBUILD2018-09-05 05:46:03 UTC (rev 86) @@ -3,7 +3,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-publishers -pkgver=2018.47473 +pkgver=2018.48567 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - LaTeX classes and packages for specific publishers" @@ -14,7 +14,7 @@ url='http://tug.org/texlive/' source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";) options=('!emptydirs') -sha256sums=('3bb820de17d0351bb2d85aebd3fbe6382e5eb14bcf7f8fb6060bdddc369934a7') +sha256sums=('6e33cc0dd93a7065f8cdbc4a3f2a8e52aa3dc0cbbf2ac9c2abb7c6d0552ccbcb') build() { cd "$srcdir"
[arch-commits] Commit in texlive-publishers/repos/extra-any (PKGBUILD PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:46:05 Author: remy Revision: 87 archrelease: copy trunk to extra-any Added: texlive-publishers/repos/extra-any/PKGBUILD (from rev 86, texlive-publishers/trunk/PKGBUILD) Deleted: texlive-publishers/repos/extra-any/PKGBUILD --+ PKGBUILD | 88 ++--- 1 file changed, 44 insertions(+), 44 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 05:46:03 UTC (rev 86) +++ PKGBUILD2018-09-05 05:46:05 UTC (rev 87) @@ -1,44 +0,0 @@ -# $Id: PKGBUILD$ -# Maintainer: Firmicus -# Maintainer: Rémy Oudompheng - -pkgname=texlive-publishers -pkgver=2018.47473 -_revnr=${pkgver#2018.} -pkgrel=1 -pkgdesc="TeX Live - LaTeX classes and packages for specific publishers" -license=('GPL') -arch=(any) -depends=('texlive-core') -groups=('texlive-most') -url='http://tug.org/texlive/' -source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";) -options=('!emptydirs') -sha256sums=('3bb820de17d0351bb2d85aebd3fbe6382e5eb14bcf7f8fb6060bdddc369934a7') - -build() { - cd "$srcdir" - for p in *.tar.xz; do - bsdtar -xf $p - done - rm -rf {tlpkg,doc,source} || true -} - -package() { - install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs - sed -i '/^#/d' CONTENTS - install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs - install -m755 -d $pkgdir/usr/share - wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true - for dir in $wanteddirs; do - find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; - find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; - done - if [[ -d texmf-dist ]]; then - find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; - find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; - fi - if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then - find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; - fi -} Copied: texlive-publishers/repos/extra-any/PKGBUILD (from rev 86, texlive-publishers/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 05:46:05 UTC (rev 87) @@ -0,0 +1,44 @@ +# $Id: PKGBUILD$ +# Maintainer: Firmicus +# Maintainer: Rémy Oudompheng + +pkgname=texlive-publishers +pkgver=2018.48567 +_revnr=${pkgver#2018.} +pkgrel=1 +pkgdesc="TeX Live - LaTeX classes and packages for specific publishers" +license=('GPL') +arch=(any) +depends=('texlive-core') +groups=('texlive-most') +url='http://tug.org/texlive/' +source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";) +options=('!emptydirs') +sha256sums=('6e33cc0dd93a7065f8cdbc4a3f2a8e52aa3dc0cbbf2ac9c2abb7c6d0552ccbcb') + +build() { + cd "$srcdir" + for p in *.tar.xz; do + bsdtar -xf $p + done + rm -rf {tlpkg,doc,source} || true +} + +package() { + install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs + sed -i '/^#/d' CONTENTS + install -m644 CONTENTS $pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs + install -m755 -d $pkgdir/usr/share + wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true + for dir in $wanteddirs; do + find $dir -type d -exec install -d -m755 $pkgdir/usr/share/texmf-dist/'{}' \; + find $dir -type f -exec install -m644 '{}' $pkgdir/usr/share/texmf-dist/'{}' \; + done + if [[ -d texmf-dist ]]; then + find texmf-dist -type d -exec install -d -m755 $pkgdir/usr/share/'{}' \; + find texmf-dist -type f -exec install -m644 '{}' $pkgdir/usr/share/'{}' \; + fi + if [[ -d $pkgdir/usr/share/texmf-dist/scripts ]]; then + find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; + fi +}
[arch-commits] Commit in texlive-science/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 05:45:33 Author: remy Revision: 84 upgpkg: texlive-science 2018.48515-1 - upgrade package apxproof 44478 -> 48377 - new package cascade - new package includernw - upgrade package lstbayes 41550 -> 48160 - upgrade package mhchem 44888 -> 48088 - upgrade package nicematrix 47232 -> 48395 - upgrade package polexpr 47412 -> 47509 - new package rank-2-roots - upgrade package siunitx 47045 -> 47746 - new package statistics - new package statistik - upgrade package structmech 47351 -> 47859 - upgrade package struktex 46873 -> 47931 - upgrade package witharrows 46616 -> 48422 Modified: texlive-science/trunk/PKGBUILD --+ PKGBUILD |6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 02:56:09 UTC (rev 83) +++ PKGBUILD2018-09-05 05:45:33 UTC (rev 84) @@ -2,7 +2,7 @@ # Maintainer: Rémy Oudompheng pkgname=texlive-science -pkgver=2018.47412 +pkgver=2018.48515 _revnr=${pkgver#2018.} pkgrel=1 pkgdesc="TeX Live - Typesetting for mathematics, natural and computer sciences" @@ -9,7 +9,6 @@ license=('GPL') arch=(any) depends=('texlive-core') -optdepends=('python2-pygments: for pygmentex') groups=('texlive-most') url='http://tug.org/texlive/' source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"; @@ -16,7 +15,7 @@ "$pkgname.maps" "$pkgname.fmts") options=('!emptydirs') -sha256sums=('e53cd087583008a67b96b37711831a23fb1202780bf18b021bafd51169429df9' +sha256sums=('5bf8c8f1ed382a5738ce7f342a4a157e074f364af41cb26b8c120d303fa914c7' '1d9151c9cabc3521b4406731b0147d80e0bf600bdedaf55a1a49b8775165daa8' '1cbd5339f8cfa32214a749a408cf7136fd5acffaffcde6500a337d332c70c5c3') @@ -49,6 +48,5 @@ find $pkgdir/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \; fi install -m755 -d $pkgdir/usr/bin - ln -s /usr/share/texmf-dist/scripts/pygmentex/pygmentex.py $pkgdir/usr/bin/pygmentex ln -s /usr/share/texmf-dist/scripts/ulqda/ulqda.pl $pkgdir/usr/bin/ulqda }
[arch-commits] Commit in gn/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Wednesday, September 5, 2018 @ 02:56:09 Author: foutrelis Revision: 83 archrelease: copy trunk to extra-x86_64 Added: gn/repos/extra-x86_64/PKGBUILD (from rev 82, gn/trunk/PKGBUILD) Deleted: gn/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 68 ++--- 1 file changed, 34 insertions(+), 34 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 02:56:02 UTC (rev 82) +++ PKGBUILD2018-09-05 02:56:09 UTC (rev 83) @@ -1,34 +0,0 @@ -# $Id$ -# Maintainer: Evangelos Foutras - -pkgname=gn -pkgver=0.1458.f9dbfd12 -_commit=f9dbfd121d75ea8131a1302ec1dbbcf0aa30d9f1 -pkgrel=1 -pkgdesc="Meta-build system that generates build files for Ninja" -arch=('x86_64') -url="https://gn.googlesource.com/gn/+/master/README.md"; -license=('BSD') -depends=('gcc-libs') -makedepends=('clang' 'ninja' 'python2' 'git') -source=(git+https://gn.googlesource.com/gn#commit=$_commit) -md5sums=('SKIP') - -pkgver() { - cd $pkgname - echo 0.$(git rev-list --count initial-commit..).$(git rev-parse --short HEAD) -} - -build() { - cd $pkgname - python2 ./build/gen.py --no-sysroot - ninja -C out gn -} - -package() { - cd $pkgname - install -D out/gn "$pkgdir/usr/bin/gn" - install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -# vim:set ts=2 sw=2 et: Copied: gn/repos/extra-x86_64/PKGBUILD (from rev 82, gn/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 02:56:09 UTC (rev 83) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Evangelos Foutras + +pkgname=gn +pkgver=0.1468.106b8238 +_commit=106b823805adcc043b2bfe5bc21d58f160a28a7b +pkgrel=1 +pkgdesc="Meta-build system that generates build files for Ninja" +arch=('x86_64') +url="https://gn.googlesource.com/gn/+/master/README.md"; +license=('BSD') +depends=('gcc-libs') +makedepends=('clang' 'ninja' 'python2' 'git') +source=(git+https://gn.googlesource.com/gn#commit=$_commit) +md5sums=('SKIP') + +pkgver() { + cd $pkgname + echo 0.$(git rev-list --count initial-commit..).$(git rev-parse --short HEAD) +} + +build() { + cd $pkgname + python2 ./build/gen.py --no-sysroot + ninja -C out gn +} + +package() { + cd $pkgname + install -D out/gn "$pkgdir/usr/bin/gn" + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in gn/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 02:56:02 Author: foutrelis Revision: 82 upgpkg: gn 0.1468.106b8238-1 Bump to latest revision. Modified: gn/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 02:39:45 UTC (rev 81) +++ PKGBUILD2018-09-05 02:56:02 UTC (rev 82) @@ -2,8 +2,8 @@ # Maintainer: Evangelos Foutras pkgname=gn -pkgver=0.1458.f9dbfd12 -_commit=f9dbfd121d75ea8131a1302ec1dbbcf0aa30d9f1 +pkgver=0.1468.106b8238 +_commit=106b823805adcc043b2bfe5bc21d58f160a28a7b pkgrel=1 pkgdesc="Meta-build system that generates build files for Ninja" arch=('x86_64')
[arch-commits] Commit in chromium/repos/extra-x86_64 (19 files)
Date: Wednesday, September 5, 2018 @ 02:39:45 Author: foutrelis Revision: 81 archrelease: copy trunk to extra-x86_64 Added: chromium/repos/extra-x86_64/PKGBUILD (from rev 80, chromium/trunk/PKGBUILD) chromium/repos/extra-x86_64/chromium-skia-harmony.patch (from rev 80, chromium/trunk/chromium-skia-harmony.patch) chromium/repos/extra-x86_64/chromium-system-icu.patch (from rev 80, chromium/trunk/chromium-system-icu.patch) chromium/repos/extra-x86_64/chromium-widevine-r2.patch (from rev 80, chromium/trunk/chromium-widevine-r2.patch) chromium/repos/extra-x86_64/chromium.install (from rev 80, chromium/trunk/chromium.install) chromium/repos/extra-x86_64/fix-cfi-icall-failure-with-use_system_libjpeg-true.patch (from rev 80, chromium/trunk/fix-cfi-icall-failure-with-use_system_libjpeg-true.patch) chromium/repos/extra-x86_64/only-disable-cfi-icall-when-use_system_libjpeg-true.patch (from rev 80, chromium/trunk/only-disable-cfi-icall-when-use_system_libjpeg-true.patch) Deleted: chromium/repos/extra-x86_64/PKGBUILD chromium/repos/extra-x86_64/blink-disable-XML-catalogs-at-runtime.patch chromium/repos/extra-x86_64/chromium-cors-string-r0.patch chromium/repos/extra-x86_64/chromium-ffmpeg-r1.patch chromium/repos/extra-x86_64/chromium-libjpeg-r0.patch chromium/repos/extra-x86_64/chromium-libwebp-shim-r0.patch chromium/repos/extra-x86_64/chromium-skia-harmony.patch chromium/repos/extra-x86_64/chromium-widevine-r2.patch chromium/repos/extra-x86_64/chromium.install chromium/repos/extra-x86_64/fix-cfi-icall-failure-with-use_system_libjpeg-true.patch chromium/repos/extra-x86_64/only-disable-cfi-icall-when-use_system_libjpeg-true.patch chromium/repos/extra-x86_64/x11-fix-mixup-between-DIP-pixel-coordinates.patch ---+ PKGBUILD | 474 +--- blink-disable-XML-catalogs-at-runtime.patch | 47 - chromium-cors-string-r0.patch | 51 - chromium-ffmpeg-r1.patch | 22 chromium-libjpeg-r0.patch | 62 - chromium-libwebp-shim-r0.patch| 43 - chromium-skia-harmony.patch | 154 +-- chromium-system-icu.patch | 19 chromium-widevine-r2.patch| 78 - chromium.install | 32 fix-cfi-icall-failure-with-use_system_libjpeg-true.patch | 104 +- only-disable-cfi-icall-when-use_system_libjpeg-true.patch | 68 - x11-fix-mixup-between-DIP-pixel-coordinates.patch | 40 - 13 files changed, 464 insertions(+), 730 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 02:39:33 UTC (rev 80) +++ PKGBUILD2018-09-05 02:39:45 UTC (rev 81) @@ -1,247 +0,0 @@ -# $Id$ -# Maintainer: Evangelos Foutras -# Contributor: Pierre Schmitz -# Contributor: Jan "heftig" Steffens -# Contributor: Daniel J Griffiths - -pkgname=chromium -pkgver=68.0.3440.106 -pkgrel=1 -_launcher_ver=6 -pkgdesc="A web browser built for speed, simplicity, and security" -arch=('x86_64') -url="https://www.chromium.org/Home"; -license=('BSD') -depends=('gtk3' 'nss' 'alsa-lib' 'xdg-utils' 'libxss' 'libcups' 'libgcrypt' - 'ttf-font' 'systemd' 'dbus' 'libpulse' 'pciutils' 'json-glib' - 'desktop-file-utils' 'hicolor-icon-theme') -makedepends=('python' 'python2' 'gperf' 'yasm' 'mesa' 'ninja' 'nodejs' 'git' - 'clang' 'lld') -optdepends=('pepper-flash: support for Flash content' -'kdialog: needed for file dialogs in KDE' -'gnome-keyring: for storing passwords in GNOME keyring' -'kwallet: for storing passwords in KWallet') -install=chromium.install -source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz - chromium-launcher-$_launcher_ver.tar.gz::https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver.tar.gz -x11-fix-mixup-between-DIP-pixel-coordinates.patch -blink-disable-XML-catalogs-at-runtime.patch -fix-cfi-icall-failure-with-use_system_libjpeg-true.patch -only-disable-cfi-icall-when-use_system_libjpeg-true.patch -chromium-cors-string-r0.patch -chromium-ffmpeg-r1.patch -chromium-libjpeg-r0.patch -chromium-libwebp-shim-r0.patch -chromium-widevine-r2.patch -chromium-skia-harmony.patch) -sha256sums=('7021040635a0a0d47f699bdb22e3ef5c91482e4f51b428d1de3016da95f0e698' -'04917e3cd4307d8e31bfb0027a5dce6d086edb10ff8a716024fbb8bb0c7dccf1' -'e2c2754536243a60fa70541bbd4121715eccd83caa8f1fb1873bd994cd81f871' -'98a5c41cf9687c52ee380d2b683c95387334c76254479c347bdb733646dab815
[arch-commits] Commit in chromium/trunk (8 files)
Date: Wednesday, September 5, 2018 @ 02:39:33 Author: foutrelis Revision: 80 upgpkg: chromium 69.0.3497.81-1 New upstream release. Added: chromium/trunk/chromium-system-icu.patch Modified: chromium/trunk/PKGBUILD Deleted: chromium/trunk/blink-disable-XML-catalogs-at-runtime.patch chromium/trunk/chromium-cors-string-r0.patch chromium/trunk/chromium-ffmpeg-r1.patch chromium/trunk/chromium-libjpeg-r0.patch chromium/trunk/chromium-libwebp-shim-r0.patch chromium/trunk/x11-fix-mixup-between-DIP-pixel-coordinates.patch ---+ PKGBUILD | 31 ++ blink-disable-XML-catalogs-at-runtime.patch | 47 --- chromium-cors-string-r0.patch | 51 chromium-ffmpeg-r1.patch | 22 --- chromium-libjpeg-r0.patch | 62 chromium-libwebp-shim-r0.patch| 43 - chromium-system-icu.patch | 19 ++ x11-fix-mixup-between-DIP-pixel-coordinates.patch | 40 8 files changed, 26 insertions(+), 289 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 02:11:55 UTC (rev 79) +++ PKGBUILD2018-09-05 02:39:33 UTC (rev 80) @@ -5,7 +5,7 @@ # Contributor: Daniel J Griffiths pkgname=chromium -pkgver=68.0.3440.106 +pkgver=69.0.3497.81 pkgrel=1 _launcher_ver=6 pkgdesc="A web browser built for speed, simplicity, and security" @@ -24,27 +24,17 @@ install=chromium.install source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz chromium-launcher-$_launcher_ver.tar.gz::https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver.tar.gz -x11-fix-mixup-between-DIP-pixel-coordinates.patch -blink-disable-XML-catalogs-at-runtime.patch fix-cfi-icall-failure-with-use_system_libjpeg-true.patch only-disable-cfi-icall-when-use_system_libjpeg-true.patch -chromium-cors-string-r0.patch -chromium-ffmpeg-r1.patch -chromium-libjpeg-r0.patch -chromium-libwebp-shim-r0.patch chromium-widevine-r2.patch +chromium-system-icu.patch chromium-skia-harmony.patch) -sha256sums=('7021040635a0a0d47f699bdb22e3ef5c91482e4f51b428d1de3016da95f0e698' +sha256sums=('165ac7d0d4588e6b4a16331e0a9906ed013f2d29a96b54f0ea78fa0298f97144' '04917e3cd4307d8e31bfb0027a5dce6d086edb10ff8a716024fbb8bb0c7dccf1' -'e2c2754536243a60fa70541bbd4121715eccd83caa8f1fb1873bd994cd81f871' -'98a5c41cf9687c52ee380d2b683c95387334c76254479c347bdb733646dab815' '97b421bc60a4abdf37de2d88a51b973e9f68fb44d1eccd464adfb3d9f5d71478' '9cae9ded6497afd15ad72d963897425ab6c7f28941bb3c3948e7996610a0d180' -'f4141e48a25a1403250e9040c18936a16250ab707064dd54103066f40c7db41c' -'aa885330bc4180b78d915f9dfdfc3210038a0acab7b16735ea9828ab6a633bde' -'6b8fc570607631d3558e99a82e92c11eeae9c960ebb0a83c13d46344d4b6adca' -'b368f3827ee4c47c942085e3d2cfbea43f8899b101e01500dbf6a7b01b2b29e0' '02c69bb3954087db599def7f5b6d65cf8f7cf2ed81dfbdaa4bb7b51863b4df15' +'c4f2d1bed9034c02b8806f00c2e8165df24de467803855904bff709ceaf11af5' 'feca54ab09ac0fc9d0626770a6b899a6ac5a12173c7d0c1005bc3964ec83e7b3') # Possible replacements are listed in build/linux/unbundle/replace_gn_files.py @@ -89,12 +79,6 @@ sed -i 's/OFFICIAL_BUILD/GOOGLE_CHROME_BUILD/' \ tools/generate_shim_headers/generate_shim_headers.py - # https://crbug.com/707721 - patch -Np1 -i ../x11-fix-mixup-between-DIP-pixel-coordinates.patch - - # https://crbug.com/736026 - patch -Np1 -i ../blink-disable-XML-catalogs-at-runtime.patch - # https://crbug.com/866290 patch -Np1 -i ../fix-cfi-icall-failure-with-use_system_libjpeg-true.patch patch -Np1 -i ../only-disable-cfi-icall-when-use_system_libjpeg-true.patch @@ -103,12 +87,11 @@ patch -Np4 -i ../chromium-skia-harmony.patch # Fixes from Gentoo - patch -Np1 -i ../chromium-cors-string-r0.patch - patch -Np1 -i ../chromium-ffmpeg-r1.patch - patch -Np1 -i ../chromium-libjpeg-r0.patch - patch -Np1 -i ../chromium-libwebp-shim-r0.patch patch -Np1 -i ../chromium-widevine-r2.patch + # https://bugs.gentoo.org/661880#c21 + patch -Np1 -i ../chromium-system-icu.patch + # Remove compiler flags not supported by our system clang sed -i \ -e '/"-Wno-ignored-pragma-optimize"/d' \ Deleted: blink-disable-XML-catalogs-at-runtime.patch === --- blink-disable-XML-catalogs-at-runtime.patch 2018-09-05 02:11:55 UTC (rev 79) +++ blink-disable-XML-catalogs-at-runtime.patch 2018-09-05 02:39:33 UTC (rev 80) @@ -1,47 +0,0 @@ -From 8f0c8c8d9bce12c70
[arch-commits] Commit in mutt/repos/extra-x86_64 (3 files)
Date: Wednesday, September 5, 2018 @ 02:11:55 Author: bisson Revision: 79 archrelease: copy trunk to extra-x86_64 Added: mutt/repos/extra-x86_64/PKGBUILD (from rev 78, mutt/trunk/PKGBUILD) mutt/repos/extra-x86_64/a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch (from rev 78, mutt/trunk/a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch) Deleted: mutt/repos/extra-x86_64/PKGBUILD + PKGBUILD | 101 a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch | 269 +++ 2 files changed, 323 insertions(+), 47 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-05 02:11:30 UTC (rev 78) +++ PKGBUILD2018-09-05 02:11:55 UTC (rev 79) @@ -1,47 +0,0 @@ -# $Id$ -# Contributor: tobias [tobias [at] archlinux.org] -# Maintainer: Gaetan Bisson - -pkgname=mutt -pkgver=1.10.1 -pkgrel=1 -pkgdesc='Small but very powerful text-based mail client' -url='http://www.mutt.org/' -license=('GPL') -backup=('etc/Muttrc') -arch=('x86_64') -optdepends=('smtp-forwarder: to send mail') -depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn' 'mime-types' 'krb5') -source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc}) -sha256sums=('734a3883158ec3d180cf6538d8bd7f685ce641d2cdef657aa0038f76e79a54a0' -'SKIP') -validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --enable-gpgme \ - --enable-pop \ - --enable-imap \ - --enable-smtp \ - --enable-hcache \ - --enable-sidebar \ - --with-curses=/usr \ - --with-regex \ - --with-gss=/usr \ - --with-ssl=/usr \ - --with-sasl \ - --with-idn \ - - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm "${pkgdir}"/etc/mime.types{,.dist} - install -Dm644 contrib/gpg.rc "${pkgdir}"/etc/Muttrc.gpg.dist -} Copied: mutt/repos/extra-x86_64/PKGBUILD (from rev 78, mutt/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-05 02:11:55 UTC (rev 79) @@ -0,0 +1,54 @@ +# $Id$ +# Contributor: tobias [tobias [at] archlinux.org] +# Maintainer: Gaetan Bisson + +pkgname=mutt +pkgver=1.10.1 +pkgrel=2 +pkgdesc='Small but very powerful text-based mail client' +url='http://www.mutt.org/' +license=('GPL') +backup=('etc/Muttrc') +arch=('x86_64') +optdepends=('smtp-forwarder: to send mail') +depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn' 'mime-types' 'krb5') +validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA') +source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc} +'a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch') +sha256sums=('734a3883158ec3d180cf6538d8bd7f685ce641d2cdef657aa0038f76e79a54a0' +'SKIP' +'21ae6f739801f07728d770ac7365f696b6d0ec81cda8b6cd1a5b3c81a3bb0f2f') + +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + patch -p1 -i ../a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --enable-gpgme \ + --enable-pop \ + --enable-imap \ + --enable-smtp \ + --enable-hcache \ + --enable-sidebar \ + --with-curses=/usr \ + --with-regex \ + --with-gss=/usr \ + --with-ssl=/usr \ + --with-sasl \ + --with-idn \ + + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + + rm "${pkgdir}"/etc/mime.types{,.dist} + install -Dm644 contrib/gpg.rc "${pkgdir}"/etc/Muttrc.gpg.dist +} Copied: mutt/repos/extra-x86_64/a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch (from rev 78, mutt/trunk/a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch) === --- a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch (rev 0) +++ a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch 2018-09-05 02:11:55 UTC (rev 79) @@ -0,0 +1,269 @@ +From a2b289361d90360c37eb19cca2cf1216ab60fb7b Mon Sep 17 00:00:00 2001 +From: Kevin McCarthy +Date: Wed, 29 Aug 2018 15:08:19 -0700 +Subject: [PATCH] Rename pgpring to mutt_pgpring. + +pgpring is used by another common package, signing-party. At the +request of ArchLinux, I am renaming our version to be prefixed by +"mutt_" in
[arch-commits] Commit in mutt/trunk (2 files)
Date: Wednesday, September 5, 2018 @ 02:11:30 Author: bisson Revision: 78 implement FS#59715 Added: mutt/trunk/a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch Modified: mutt/trunk/PKGBUILD + PKGBUILD | 15 - a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch | 269 +++ 2 files changed, 280 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 00:58:07 UTC (rev 77) +++ PKGBUILD2018-09-05 02:11:30 UTC (rev 78) @@ -4,7 +4,7 @@ pkgname=mutt pkgver=1.10.1 -pkgrel=1 +pkgrel=2 pkgdesc='Small but very powerful text-based mail client' url='http://www.mutt.org/' license=('GPL') @@ -12,11 +12,18 @@ arch=('x86_64') optdepends=('smtp-forwarder: to send mail') depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn' 'mime-types' 'krb5') -source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc}) +validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA') +source=("http://ftp.mutt.org/pub/mutt/${pkgname}-${pkgver}.tar.gz"{,.asc} +'a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch') sha256sums=('734a3883158ec3d180cf6538d8bd7f685ce641d2cdef657aa0038f76e79a54a0' -'SKIP') -validpgpkeys=('8975A9B33AA37910385C5308ADEF768480316BDA') +'SKIP' +'21ae6f739801f07728d770ac7365f696b6d0ec81cda8b6cd1a5b3c81a3bb0f2f') +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + patch -p1 -i ../a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch +} + build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure \ Added: a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch === --- a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch (rev 0) +++ a2b289361d90360c37eb19cca2cf1216ab60fb7b.patch 2018-09-05 02:11:30 UTC (rev 78) @@ -0,0 +1,269 @@ +From a2b289361d90360c37eb19cca2cf1216ab60fb7b Mon Sep 17 00:00:00 2001 +From: Kevin McCarthy +Date: Wed, 29 Aug 2018 15:08:19 -0700 +Subject: [PATCH] Rename pgpring to mutt_pgpring. + +pgpring is used by another common package, signing-party. At the +request of ArchLinux, I am renaming our version to be prefixed by +"mutt_" in order to remove a naming conflict. + +This is a minor inconvenience for pgp2, pgp5, and pgp6 users, but I +believe this constitutes an extremely small number of users at this +point. + +I am keeping pgpewrap as-is because it is also used by GnuPG, and has +no such naming conflict. +--- + .gitignore| 4 ++-- + Makefile.am | 8 + configure.ac | 2 +- + contrib/pgp2.rc | 4 ++-- + contrib/pgp5.rc | 4 ++-- + contrib/pgp6.rc | 4 ++-- + doc/Makefile.am | 10 +- + doc/PGP-Notes.txt | 8 + doc/mutt.man | 2 +- + doc/pgpring.man | 10 +- + init.h| 4 ++-- + 11 files changed, 30 insertions(+), 30 deletions(-) + +diff --git a/Makefile.am b/Makefile.am +index 38ea0774..950b66b7 100644 +--- a/Makefile.am b/Makefile.am +@@ -3,7 +3,7 @@ + include $(top_srcdir)/flymake.am + + AUTOMAKE_OPTIONS = 1.6 foreign +-EXTRA_PROGRAMS = mutt_dotlock pgpring pgpewrap mutt_md5 ++EXTRA_PROGRAMS = mutt_dotlock mutt_pgpring pgpewrap mutt_md5 + + if BUILD_DOC + DOC_SUBDIR = doc +@@ -85,9 +85,9 @@ mutt_dotlock_SOURCES = mutt_dotlock.c + mutt_dotlock_LDADD = $(LIBOBJS) + mutt_dotlock_DEPENDENCIES = $(LIBOBJS) + +-pgpring_SOURCES = pgppubring.c pgplib.c lib.c extlib.c sha1.c md5.c pgppacket.c ascii.c +-pgpring_LDADD = $(LIBOBJS) $(INTLLIBS) +-pgpring_DEPENDENCIES = $(LIBOBJS) $(INTLDEPS) ++mutt_pgpring_SOURCES = pgppubring.c pgplib.c lib.c extlib.c sha1.c md5.c pgppacket.c ascii.c ++mutt_pgpring_LDADD = $(LIBOBJS) $(INTLLIBS) ++mutt_pgpring_DEPENDENCIES = $(LIBOBJS) $(INTLDEPS) + + mutt_md5_SOURCES = md5.c + mutt_md5_CFLAGS = -DMD5UTIL +diff --git a/configure.ac b/configure.ac +index bc5abc93..28091866 100644 +--- a/configure.ac b/configure.ac +@@ -159,7 +159,7 @@ AC_ARG_ENABLE(pgp, AS_HELP_STRING([--disable-pgp],[Disable PGP support]), + + if test x$have_pgp != xno ; then + AC_DEFINE(CRYPT_BACKEND_CLASSIC_PGP,1, [Define if you want classic PGP support.]) +-PGPAUX_TARGET="pgpring\$(EXEEXT) pgpewrap\$(EXEEXT)" ++PGPAUX_TARGET="mutt_pgpring\$(EXEEXT) pgpewrap\$(EXEEXT)" + MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS pgp.o pgpinvoke.o pgpkey.o pgplib.o gnupgparse.o pgpmicalg.o pgppacket.o crypt-mod-pgp-classic.o" + fi + +diff --git a/contrib/pgp2.rc b/contrib/pgp2.rc +index 21280453..f7fc1327 100644 +--- a/contrib/pgp2.rc b/contrib/pgp2.rc +@@ -42,10 +42,10 @@ set pgp_export_command="pgp -kxaf +language=mutt %r" + set pgp_verify_key_command="pgp -kcc +language=mutt %r" + + # read in the public key ring +-set pgp_list_pubring_command="pgpring -2 %r" ++set pgp_list_pubring_command="mutt_pgprin
[arch-commits] Commit in gnome-color-manager/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 00:57:22 Author: heftig Revision: 76 3.30.0-1 Modified: gnome-color-manager/trunk/PKGBUILD(contents, properties) --+ PKGBUILD | 20 +--- 1 file changed, 13 insertions(+), 7 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 00:53:45 UTC (rev 75) +++ PKGBUILD2018-09-05 00:57:22 UTC (rev 76) @@ -1,19 +1,19 @@ -# $Id$ # Maintainer: Jan Alexander Steffens (heftig) pkgname=gnome-color-manager -pkgver=3.28.0 +pkgver=3.30.0 pkgrel=1 pkgdesc="GNOME Color Profile Tools" -url="https://git.gnome.org/browse/gnome-color-manager"; +url="https://gitlab.gnome.org/GNOME/gnome-color-manager"; arch=(x86_64) license=(GPL2) depends=(libcanberra vte3 exiv2 shared-color-targets colord-gtk libexif) -makedepends=(itstool git appstream-glib meson docbook-utils docbook-sgml perl-sgmls) +makedepends=(yelp-tools git appstream-glib meson docbook-utils docbook-sgml perl-sgmls) +checkdepends=(xorg-server-xvfb) optdepends=('argyllcms: color calibration') groups=(gnome) -_commit=b39e6fe3a598340c6b7a7d65a1029fe67e1c2572 # tags/GNOME_COLOR_MANAGER_3_28_0^0 -source=("git+https://git.gnome.org/browse/gnome-color-manager#commit=$_commit";) +_commit=1ff61d08a37ceb994d10604eeb85de585e35c5ce # tags/GNOME_COLOR_MANAGER_3_30_0^0 +source=("git+https://gitlab.gnome.org/GNOME/gnome-color-manager.git#commit=$_commit";) sha256sums=('SKIP') pkgver() { @@ -30,6 +30,12 @@ ninja -C build } +check() { + xvfb-run meson test -C build +} + package() { - DESTDIR="$pkgdir" ninja -C build install + DESTDIR="$pkgdir" meson install -C build } + +# vim:set sw=2 et: Property changes on: gnome-color-manager/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in gnome-color-manager/repos (2 files)
Date: Wednesday, September 5, 2018 @ 00:58:07 Author: heftig Revision: 77 archrelease: copy trunk to gnome-unstable-x86_64 Added: gnome-color-manager/repos/gnome-unstable-x86_64/ gnome-color-manager/repos/gnome-unstable-x86_64/PKGBUILD (from rev 76, gnome-color-manager/trunk/PKGBUILD) --+ PKGBUILD | 41 + 1 file changed, 41 insertions(+) Copied: gnome-color-manager/repos/gnome-unstable-x86_64/PKGBUILD (from rev 76, gnome-color-manager/trunk/PKGBUILD) === --- gnome-unstable-x86_64/PKGBUILD (rev 0) +++ gnome-unstable-x86_64/PKGBUILD 2018-09-05 00:58:07 UTC (rev 77) @@ -0,0 +1,41 @@ +# Maintainer: Jan Alexander Steffens (heftig) + +pkgname=gnome-color-manager +pkgver=3.30.0 +pkgrel=1 +pkgdesc="GNOME Color Profile Tools" +url="https://gitlab.gnome.org/GNOME/gnome-color-manager"; +arch=(x86_64) +license=(GPL2) +depends=(libcanberra vte3 exiv2 shared-color-targets colord-gtk libexif) +makedepends=(yelp-tools git appstream-glib meson docbook-utils docbook-sgml perl-sgmls) +checkdepends=(xorg-server-xvfb) +optdepends=('argyllcms: color calibration') +groups=(gnome) +_commit=1ff61d08a37ceb994d10604eeb85de585e35c5ce # tags/GNOME_COLOR_MANAGER_3_30_0^0 +source=("git+https://gitlab.gnome.org/GNOME/gnome-color-manager.git#commit=$_commit";) +sha256sums=('SKIP') + +pkgver() { + cd $pkgname + git describe --tags | sed 's/^GNOME_COLOR_MANAGER_//;s/_/./g;s/-/+/g' +} + +prepare() { + cd $pkgname +} + +build() { + arch-meson $pkgname build -D packagekit=false + ninja -C build +} + +check() { + xvfb-run meson test -C build +} + +package() { + DESTDIR="$pkgdir" meson install -C build +} + +# vim:set sw=2 et:
[arch-commits] Commit in clutter-gtk/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 00:53:45 Author: heftig Revision: 75 minor Modified: clutter-gtk/trunk/PKGBUILD(contents, properties) --+ PKGBUILD | 20 +--- 1 file changed, 9 insertions(+), 11 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 00:52:04 UTC (rev 74) +++ PKGBUILD2018-09-05 00:53:45 UTC (rev 75) @@ -1,4 +1,4 @@ -# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) # Maintainer: Jan de Groot pkgname=clutter-gtk @@ -5,13 +5,13 @@ pkgver=1.8.4 pkgrel=1 pkgdesc="Clutter integration with GTK+" -arch=('x86_64') -url="https://git.gnome.org/browse/clutter-gtk"; +arch=(x86_64) +url="https://gitlab.gnome.org/GNOME/clutter-gtk"; license=(LGPL) depends=(clutter) makedepends=(gobject-introspection gtk-doc git meson) _commit=77483ba46384adde76f6c4599eae77eeec852c56 # tags/1.8.4^0 -source=("git+https://git.gnome.org/browse/clutter-gtk#commit=$_commit";) +source=("git+https://gitlab.gnome.org/GNOME/clutter-gtk.git#commit=$_commit";) sha256sums=('SKIP') pkgver() { @@ -20,18 +20,16 @@ } prepare() { - mkdir build cd $pkgname } build() { - cd build - meson --prefix=/usr --buildtype=release ../$pkgname \ --Denable_docs=true - ninja + arch-meson $pkgname build -Denable_docs=true + ninja -C build } package() { - cd build - DESTDIR="$pkgdir" ninja install + DESTDIR="$pkgdir" meson install -C build } + +# vim:set sw=2 et: Property changes on: clutter-gtk/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in cogl/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 00:52:04 Author: heftig Revision: 74 source,Id Modified: cogl/trunk/PKGBUILD (contents, properties) --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 00:51:27 UTC (rev 73) +++ PKGBUILD2018-09-05 00:52:04 UTC (rev 74) @@ -1,4 +1,4 @@ -# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) # Contributor: Ionut Biru pkgname=cogl @@ -11,7 +11,7 @@ depends=(mesa libdrm libxext libxdamage libxcomposite gdk-pixbuf2 pango libxrandr) makedepends=(gobject-introspection git gtk-doc) _commit=3baa2d7a65bc94b74d6e49392fe14e4ed65724a5 # cogl-1.22 -source=("git+https://git.gnome.org/browse/cogl#commit=$_commit";) +source=("git+https://gitlab.gnome.org/GNOME/cogl.git#commit=$_commit";) sha256sums=('SKIP') pkgver() { Property changes on: cogl/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in clutter/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 00:51:27 Author: heftig Revision: 73 source,Id Modified: clutter/trunk/PKGBUILD(contents, properties) --+ PKGBUILD |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 00:49:23 UTC (rev 72) +++ PKGBUILD2018-09-05 00:51:27 UTC (rev 73) @@ -1,4 +1,4 @@ -# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) # Maintainer: Jan de Groot # Contributor: Sergej Pupykin # Contributor: William Rea @@ -13,7 +13,7 @@ depends=(gtk3 cogl libinput) makedepends=(gobject-introspection gtk-doc git) _commit=2faa83baf3ce9b9c94635311ad79944ab2a73c84 # tags/1.26.2^0 -source=("git+https://git.gnome.org/browse/clutter#commit=$_commit";) +source=("git+https://gitlab.gnome.org/GNOME/clutter.git#commit=$_commit";) sha256sums=('SKIP') pkgver() { @@ -48,3 +48,5 @@ cd "$pkgname" make DESTDIR="$pkgdir" install } + +# vim:set sw=2 et: Property changes on: clutter/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in colord-gtk/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 00:49:23 Author: heftig Revision: 72 hack unneeded now Modified: colord-gtk/trunk/PKGBUILD (contents, properties) --+ PKGBUILD |7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 00:48:21 UTC (rev 71) +++ PKGBUILD2018-09-05 00:49:23 UTC (rev 72) @@ -1,4 +1,3 @@ -# $Id$ # Maintainer: Jan Alexander Steffens (heftig) # Contributor: Ionut Biru @@ -23,10 +22,6 @@ } prepare() { - # Fixup docbook-utils/perl-sgmls, for now... - mkdir path - ln -s /usr/bin/vendor_perl/sgmlspl.pl path/sgmlspl - cd $pkgname NOCONFIGURE=1 ./autogen.sh } @@ -38,7 +33,7 @@ --localstatedir=/var --disable-static --enable-vala \ --enable-gtk-doc sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool - PATH="$srcdir/path:$PATH" make + make } package() { Property changes on: colord-gtk/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in gvfs/repos (4 files)
Date: Wednesday, September 5, 2018 @ 00:48:21 Author: heftig Revision: 71 archrelease: copy trunk to gnome-unstable-x86_64 Added: gvfs/repos/gnome-unstable-x86_64/ gvfs/repos/gnome-unstable-x86_64/PKGBUILD (from rev 70, gvfs/trunk/PKGBUILD) gvfs/repos/gnome-unstable-x86_64/gvfs-nfs.install (from rev 70, gvfs/trunk/gvfs-nfs.install) gvfs/repos/gnome-unstable-x86_64/gvfsd.hook (from rev 70, gvfs/trunk/gvfsd.hook) --+ PKGBUILD | 164 + gvfs-nfs.install |7 ++ gvfsd.hook | 11 +++ 3 files changed, 182 insertions(+) Copied: gvfs/repos/gnome-unstable-x86_64/PKGBUILD (from rev 70, gvfs/trunk/PKGBUILD) === --- gnome-unstable-x86_64/PKGBUILD (rev 0) +++ gnome-unstable-x86_64/PKGBUILD 2018-09-05 00:48:21 UTC (rev 71) @@ -0,0 +1,164 @@ +# Maintainer: Jan Alexander Steffens (heftig) +# Maintainer: Jan de Groot + +pkgbase=gvfs +pkgname=(gvfs gvfs-{smb,afc,gphoto2,goa,mtp,nfs,google}) +pkgver=1.38.0+3+g7da3b0ba +pkgrel=1 +pkgdesc="Virtual filesystem implementation for GIO" +url="https://wiki.gnome.org/Projects/gvfs"; +arch=(x86_64) +license=(LGPL) +depends=(avahi dconf fuse libarchive libcdio-paranoia libsoup udisks2 libsecret + libbluray libgudev gcr psmisc) +makedepends=(dbus libgphoto2 libimobiledevice smbclient docbook-xsl gtk3 libmtp + gnome-online-accounts libnfs libgdata git gtk-doc python meson openssh) +groups=(gnome) +_commit=7da3b0ba2e207ce0b8a1bdfe023d6cf6d3764ed9 # gnome-3-30 +source=("git+https://gitlab.gnome.org/GNOME/gvfs.git#commit=$_commit"; +gvfsd.hook) +sha256sums=('SKIP' +'478b9cf7b4c242959fc640dbf0cd4935f16c59b81f5828a3af102d608d7a9d72') + +prepare() { + cd $pkgbase +} + +pkgver() { + cd $pkgbase + git describe --tags | sed 's/-/+/g' +} + +build() { + arch-meson $pkgbase build -D man=true + ninja -C build +} + +check() { + cd build + meson test +} + +_split() { + local name="$1" src dest + shift + for src do +echo "$name: /usr/$src" +dest="$srcdir/$name/$src" +mkdir -p "${dest%/*}" +mv -T "$src" "$dest" + done +} + +package_gvfs() { + replaces=(gvfs-{obexftp,afp}) + optdepends=('gvfs-afc: AFC (mobile devices) support' + 'gvfs-smb: SMB/CIFS (Windows client) support' + 'gvfs-gphoto2: gphoto2 (PTP camera/MTP media player) support' + 'gvfs-mtp: MTP device support' + 'gvfs-goa: gnome-online-accounts (e.g. OwnCloud) support' + 'gvfs-nfs: NFS support' + 'gvfs-google: Google Drive support' + 'gtk3: Recent files support') + options=(!emptydirs) + + DESTDIR="$pkgdir" ninja -C build install + + install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook + install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d" + + cd "$pkgdir/usr" + + _split smb \ +lib/gvfsd-smb{,-browse} \ +share/GConf/gsettings/gvfs-smb.convert \ +share/glib-2.0/schemas/org.gnome.system.smb.gschema.xml \ +share/gvfs/mounts/smb{,-browse}.mount + + _split afc \ +lib/gvfs{-afc-volume-monitor,d-afc} \ +lib/systemd/user/gvfs-afc-volume-monitor.service \ +share/dbus-1/services/org.gtk.vfs.AfcVolumeMonitor.service \ +share/gvfs/mounts/afc.mount \ +share/gvfs/remote-volume-monitors/afc.monitor + + _split gphoto2 \ +lib/gvfs{-gphoto2-volume-monitor,d-gphoto2} \ +lib/systemd/user/gvfs-gphoto2-volume-monitor.service \ +share/dbus-1/services/org.gtk.vfs.GPhoto2VolumeMonitor.service \ +share/gvfs/mounts/gphoto2.mount \ +share/gvfs/remote-volume-monitors/gphoto2.monitor + + _split mtp \ +lib/gvfs{-mtp-volume-monitor,d-mtp} \ +lib/systemd/user/gvfs-mtp-volume-monitor.service \ +share/dbus-1/services/org.gtk.vfs.MTPVolumeMonitor.service \ +share/gvfs/mounts/mtp.mount \ +share/gvfs/remote-volume-monitors/mtp.monitor + + _split goa \ +lib/gvfs-goa-volume-monitor \ +lib/systemd/user/gvfs-goa-volume-monitor.service \ +share/dbus-1/services/org.gtk.vfs.GoaVolumeMonitor.service \ +share/gvfs/remote-volume-monitors/goa.monitor + + _split nfs \ +lib/gvfsd-nfs \ +share/gvfs/mounts/nfs.mount + + _split google \ +lib/gvfsd-google \ +share/gvfs/mounts/google.mount +} + +package_gvfs-smb() { + pkgdesc+=" (SMB/CIFS backend; Windows client)" + depends=("gvfs=$pkgver" smbclient) + + mv "$srcdir/smb" "$pkgdir/usr" +} + +package_gvfs-afc() { + pkgdesc+=" (AFC backend; Apple mobile devices)" + depends=("gvfs=$pkgver" libimobiledevice usbmuxd) + + mv "$srcdir/afc" "$pkgdir/usr" +} + +package_gvfs-gphoto2() { + pkgdesc+=" (gphoto2 backend; PTP camera, MTP media player)" + depends=("gvfs=$pkgver" libgphoto2) + + mv "$srcdir/gphoto2" "$pkgdir/usr" +} + +package_gvfs-mtp() { + pkgdesc+=" (MTP backend; Android, media player)" + depends=("gv
[arch-commits] Commit in gvfs/trunk (2 files)
Date: Wednesday, September 5, 2018 @ 00:47:45 Author: heftig Revision: 70 1.38.0+3+g7da3b0ba-1 Modified: gvfs/trunk/PKGBUILD (contents, properties) Deleted: gvfs/trunk/udisks2-fix-crashes-caused-by-missing-source-tag.patch + PKGBUILD | 18 - udisks2-fix-crashes-caused-by-missing-source-tag.patch | 29 --- 2 files changed, 8 insertions(+), 39 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 00:43:52 UTC (rev 69) +++ PKGBUILD2018-09-05 00:47:45 UTC (rev 70) @@ -1,10 +1,10 @@ -# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) # Maintainer: Jan de Groot pkgbase=gvfs pkgname=(gvfs gvfs-{smb,afc,gphoto2,goa,mtp,nfs,google}) -pkgver=1.36.2 -pkgrel=3 +pkgver=1.38.0+3+g7da3b0ba +pkgrel=1 pkgdesc="Virtual filesystem implementation for GIO" url="https://wiki.gnome.org/Projects/gvfs"; arch=(x86_64) @@ -14,18 +14,14 @@ makedepends=(dbus libgphoto2 libimobiledevice smbclient docbook-xsl gtk3 libmtp gnome-online-accounts libnfs libgdata git gtk-doc python meson openssh) groups=(gnome) -_commit=eb283f2ff47432cc66976c0ad66e267b9b0c8305 # tags/1.36.2^0 -source=("git+https://git.gnome.org/browse/gvfs#commit=$_commit"; -udisks2-fix-crashes-caused-by-missing-source-tag.patch +_commit=7da3b0ba2e207ce0b8a1bdfe023d6cf6d3764ed9 # gnome-3-30 +source=("git+https://gitlab.gnome.org/GNOME/gvfs.git#commit=$_commit"; gvfsd.hook) sha256sums=('SKIP' -'5a7a1e2aa3d8a73fe7c692ac18c837d26286a49c493983af733790a69a4b6398' '478b9cf7b4c242959fc640dbf0cd4935f16c59b81f5828a3af102d608d7a9d72') prepare() { cd $pkgbase - # https://gitlab.gnome.org/GNOME/gvfs/issues/1 - patch -Np1 -i ../udisks2-fix-crashes-caused-by-missing-source-tag.patch } pkgver() { @@ -34,7 +30,7 @@ } build() { - arch-meson $pkgbase build -D man=true -D deprecated_programs=true + arch-meson $pkgbase build -D man=true ninja -C build } @@ -164,3 +160,5 @@ mv "$srcdir/google" "$pkgdir/usr" } + +# vim:set sw=2 et: Property changes on: gvfs/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property Deleted: udisks2-fix-crashes-caused-by-missing-source-tag.patch === --- udisks2-fix-crashes-caused-by-missing-source-tag.patch 2018-09-05 00:43:52 UTC (rev 69) +++ udisks2-fix-crashes-caused-by-missing-source-tag.patch 2018-09-05 00:47:45 UTC (rev 70) @@ -1,29 +0,0 @@ -From 38831e4ea149a0b4731d123c63d8b493d30ad0be Mon Sep 17 00:00:00 2001 -From: Ondrej Holy -Date: Sat, 26 May 2018 08:16:02 +0200 -Subject: [PATCH] udisks2: Fix crashes caused by missing source tag - -GAsyncReadyCallback is never called from g_drive_stop, because -source_tag is not set, but checked. This obviously causes issues -for client applications. Add missing source_tag. - -Closes: https://gitlab.gnome.org/GNOME/gvfs/issues/1 - monitor/udisks2/gvfsudisks2drive.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/monitor/udisks2/gvfsudisks2drive.c b/monitor/udisks2/gvfsudisks2drive.c -index 52e9b75..8765668 100644 a/monitor/udisks2/gvfsudisks2drive.c -+++ b/monitor/udisks2/gvfsudisks2drive.c -@@ -915,6 +915,7 @@ gvfs_udisks2_drive_stop (GDrive *_drive, - GTask *task; - - task = g_task_new (drive, cancellable, callback, user_data); -+ g_task_set_source_tag (task, gvfs_udisks2_drive_stop); - - /* This information is needed in GVfsDdisks2Volume when apps have -* open files on the device ... we need to know if the button should --- -libgit2 0.27.1 -
[arch-commits] Commit in libgphoto2/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 00:43:52 Author: heftig Revision: 69 Id Modified: libgphoto2/trunk/PKGBUILD (contents, properties) --+ PKGBUILD |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 00:41:02 UTC (rev 68) +++ PKGBUILD2018-09-05 00:43:52 UTC (rev 69) @@ -1,4 +1,4 @@ -# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) # Maintainer: Jan de Groot # Contributor: Tom Gundersen # Contributor: Eduardo Romero @@ -59,3 +59,5 @@ ./print-camera-list udev-rules version 201 \ | install -Dm644 /dev/stdin "$pkgdir/usr/lib/udev/rules.d/40-gphoto.rules" ) + +# vim:set sw=2 et: Property changes on: libgphoto2/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in libgdata/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 00:41:02 Author: heftig Revision: 68 Id Modified: libgdata/trunk/PKGBUILD (contents, properties) --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 00:38:39 UTC (rev 67) +++ PKGBUILD2018-09-05 00:41:02 UTC (rev 68) @@ -1,4 +1,4 @@ -# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) # Maintainer: Jan de Groot pkgname=libgdata Property changes on: libgdata/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in gnome-online-accounts/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 00:38:11 Author: heftig Revision: 66 3.30.0-1 Modified: gnome-online-accounts/trunk/PKGBUILD (contents, properties) --+ PKGBUILD | 53 +++-- 1 file changed, 19 insertions(+), 34 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 00:35:43 UTC (rev 65) +++ PKGBUILD2018-09-05 00:38:11 UTC (rev 66) @@ -1,22 +1,20 @@ -# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) # Contributor: Ionut Biru pkgname=gnome-online-accounts -pkgver=3.28.0 +pkgver=3.30.0 pkgrel=1 pkgdesc="Single sign-on framework for GNOME" url="https://wiki.gnome.org/Projects/GnomeOnlineAccounts"; arch=(x86_64) license=(LGPL) -depends=(webkit2gtk json-glib libnotify rest libsecret telepathy-glib krb5 gcr) -makedepends=(gobject-introspection gtk-doc vala autoconf-archive gnome-common git) -optdepends=('gvfs-goa: Virtual file systems (e.g. OwnCloud)' +depends=(webkit2gtk json-glib libnotify rest libsecret krb5 gcr) +makedepends=(gobject-introspection gtk-doc vala git meson) +optdepends=('gvfs-goa: Virtual file systems, e.g. OwnCloud' 'gvfs-google: Google Drive') -_commit=3236929b648162c8a8b8c0020377f6d9af1ef6bb # tags/3.28.0^0 -source=("git+https://git.gnome.org/browse/gnome-online-accounts#commit=$_commit"; -"git+https://git.gnome.org/browse/telepathy-account-widgets";) -sha256sums=('SKIP' -'SKIP') +_commit=4542c85743159826e94acb8edb26e235d9732f86 # tags/3.30.0^0 +source=("git+https://gitlab.gnome.org/GNOME/gnome-online-accounts.git#commit=$_commit";) +sha256sums=('SKIP') pkgver() { cd $pkgname @@ -25,37 +23,24 @@ prepare() { cd $pkgname - - git submodule init - git config --local submodule.telepathy-account-widgets.url "$srcdir/telepathy-account-widgets" - git submodule update - - NOCONFIGURE=1 ./autogen.sh } build() { - cd $pkgname + arch-meson $pkgname build \ +-D lastfm=true \ +-D media_server=true \ +-D todoist=true \ +-D gtk_doc=true \ +-D man=true + ninja -C build +} - ./configure \ ---prefix=/usr \ ---libexecdir=/usr/lib \ ---disable-static \ ---enable-compile-warnings=minimum \ ---enable-inspector \ ---enable-media-server \ ---enable-kerberos \ ---enable-lastfm \ ---enable-todoist \ ---enable-gtk-doc - - sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool - - make +check() { + meson test -C build } package() { - cd $pkgname - make DESTDIR="$pkgdir" install + DESTDIR="$pkgdir" meson install -C build } # vim:set ts=2 sw=2 et: Property changes on: gnome-online-accounts/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in gnome-online-accounts/repos (2 files)
Date: Wednesday, September 5, 2018 @ 00:38:39 Author: heftig Revision: 67 archrelease: copy trunk to gnome-unstable-x86_64 Added: gnome-online-accounts/repos/gnome-unstable-x86_64/ gnome-online-accounts/repos/gnome-unstable-x86_64/PKGBUILD (from rev 66, gnome-online-accounts/trunk/PKGBUILD) --+ PKGBUILD | 46 ++ 1 file changed, 46 insertions(+) Copied: gnome-online-accounts/repos/gnome-unstable-x86_64/PKGBUILD (from rev 66, gnome-online-accounts/trunk/PKGBUILD) === --- gnome-unstable-x86_64/PKGBUILD (rev 0) +++ gnome-unstable-x86_64/PKGBUILD 2018-09-05 00:38:39 UTC (rev 67) @@ -0,0 +1,46 @@ +# Maintainer: Jan Alexander Steffens (heftig) +# Contributor: Ionut Biru + +pkgname=gnome-online-accounts +pkgver=3.30.0 +pkgrel=1 +pkgdesc="Single sign-on framework for GNOME" +url="https://wiki.gnome.org/Projects/GnomeOnlineAccounts"; +arch=(x86_64) +license=(LGPL) +depends=(webkit2gtk json-glib libnotify rest libsecret krb5 gcr) +makedepends=(gobject-introspection gtk-doc vala git meson) +optdepends=('gvfs-goa: Virtual file systems, e.g. OwnCloud' +'gvfs-google: Google Drive') +_commit=4542c85743159826e94acb8edb26e235d9732f86 # tags/3.30.0^0 +source=("git+https://gitlab.gnome.org/GNOME/gnome-online-accounts.git#commit=$_commit";) +sha256sums=('SKIP') + +pkgver() { + cd $pkgname + git describe --tags | sed 's/-/+/g' +} + +prepare() { + cd $pkgname +} + +build() { + arch-meson $pkgname build \ +-D lastfm=true \ +-D media_server=true \ +-D todoist=true \ +-D gtk_doc=true \ +-D man=true + ninja -C build +} + +check() { + meson test -C build +} + +package() { + DESTDIR="$pkgdir" meson install -C build +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in libgnomekbd/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 00:35:43 Author: heftig Revision: 65 source,Id Modified: libgnomekbd/trunk/PKGBUILD(contents, properties) --+ PKGBUILD |8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 00:15:26 UTC (rev 64) +++ PKGBUILD2018-09-05 00:35:43 UTC (rev 65) @@ -1,4 +1,4 @@ -# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) # Maintainer: Jan de Groot pkgname=libgnomekbd @@ -5,13 +5,13 @@ pkgver=3.26.0+5+g1c1b585 pkgrel=1 pkgdesc="Keyboard management library" -url="https://git.gnome.org/browse/libgnomekbd"; +url="https://gitlab.gnome.org/GNOME/libgnomekbd"; arch=(x86_64) license=(LGPL) depends=(libxklavier gtk3 dconf) makedepends=(intltool gobject-introspection git) _commit=1c1b585dfb76c2d22affc0a090c404571981b2bd # master -source=("git://git.gnome.org/libgnomekbd#commit=$_commit") +source=("git+https://gitlab.gnome.org/GNOME/libgnomekbd.git#commit=$_commit";) sha256sums=('SKIP') pkgver() { @@ -36,3 +36,5 @@ cd "$pkgname" make DESTDIR="$pkgdir" install } + +# vim:set sw=2 et: Property changes on: libgnomekbd/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in libsoup/repos (2 files)
Date: Wednesday, September 5, 2018 @ 00:15:26 Author: heftig Revision: 64 archrelease: copy trunk to gnome-unstable-x86_64 Added: libsoup/repos/gnome-unstable-x86_64/ libsoup/repos/gnome-unstable-x86_64/PKGBUILD (from rev 63, libsoup/trunk/PKGBUILD) --+ PKGBUILD | 38 ++ 1 file changed, 38 insertions(+) Copied: libsoup/repos/gnome-unstable-x86_64/PKGBUILD (from rev 63, libsoup/trunk/PKGBUILD) === --- gnome-unstable-x86_64/PKGBUILD (rev 0) +++ gnome-unstable-x86_64/PKGBUILD 2018-09-05 00:15:26 UTC (rev 64) @@ -0,0 +1,38 @@ +# Maintainer: Jan Alexander Steffens (heftig) +# Maintainer: Jan de Groot + +pkgname=libsoup +pkgver=2.64.0+7+g1dda +pkgrel=1 +pkgdesc="HTTP client/server library for GNOME" +url="https://wiki.gnome.org/Projects/libsoup"; +arch=(x86_64) +license=(LGPL) +depends=(glib2 libxml2 glib-networking sqlite krb5) +makedepends=(gobject-introspection python vala git gtk-doc meson) +checkdepends=(apache php-apache) +_commit=1dda793089768506ad07fbf328ac13fd2897 # master +source=("git+https://gitlab.gnome.org/GNOME/libsoup.git#commit=$_commit";) +sha256sums=('SKIP') + +pkgver() { + cd $pkgname + git describe --tags | sed 's/-/+/g' +} + +prepare() { + cd $pkgname +} + +build() { + arch-meson $pkgname build -D doc=true -D vapi=true + ninja -C build +} + +check() { + meson test -C build +} + +package() { + DESTDIR="$pkgdir" meson install -C build +}
[arch-commits] Commit in libsoup/trunk (2 files)
Date: Wednesday, September 5, 2018 @ 00:14:57 Author: heftig Revision: 63 2.64.0+7+g1dda-1 Modified: libsoup/trunk/PKGBUILD(contents, properties) Deleted: libsoup/trunk/0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch -+ 0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch | 115 -- PKGBUILD| 32 -- 2 files changed, 10 insertions(+), 137 deletions(-) Deleted: 0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch === --- 0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch 2018-09-05 00:07:36 UTC (rev 62) +++ 0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch 2018-09-05 00:14:57 UTC (rev 63) @@ -1,115 +0,0 @@ -From 437356c457cfeb7b4ab0cdad67f59f431d459536 Mon Sep 17 00:00:00 2001 -Message-Id: <437356c457cfeb7b4ab0cdad67f59f431d459536.1520796778.git.jan.steff...@gmail.com> -From: "Jan Alexander Steffens (heftig)" -Date: Tue, 9 May 2017 22:54:16 +0200 -Subject: [PATCH 1/2] Configure PHP to load the XMLRPC extension if present - -This is needed when the system PHP configuration does not already load -the extension. - configure.ac| 7 ++- - tests/Makefile.am | 8 +++- - tests/httpd.conf.in | 2 ++ - tests/php.ini.in| 1 + - 4 files changed, 16 insertions(+), 2 deletions(-) - create mode 100644 tests/php.ini.in - -diff --git a/configure.ac b/configure.ac -index e2d828f7..224bac24 100644 a/configure.ac -+++ b/configure.ac -@@ -272,22 +272,26 @@ if test "$have_apache" = 1; then - - if test "$have_php" = yes; then - AC_MSG_CHECKING([for php-xmlrpc]) -- if $PHP --rf xmlrpc_server_create | grep -q "does not exist"; then -+ if $PHP -d extension=xmlrpc.so --rf xmlrpc_server_create | grep -q "does not exist"; then - have_php_xmlrpc=no -+ IF_HAVE_PHP_XMLRPC=";" - else - have_php_xmlrpc=yes -+ IF_HAVE_PHP_XMLRPC="" - AC_DEFINE(HAVE_PHP_XMLRPC, 1, [Have php-xmlrpc]) - fi - AC_MSG_RESULT($have_php_xmlrpc) -+ AC_SUBST(IF_HAVE_PHP_XMLRPC) - fi - - if test -f "$APACHE_MODULE_DIR/mod_unixd.so"; then - IF_HAVE_MOD_UNIXD="" - else - IF_HAVE_MOD_UNIXD="#" - fi - AC_SUBST(IF_HAVE_MOD_UNIXD) - fi -+AM_CONDITIONAL(HAVE_PHP, test "$have_php" = yes) - - AC_PATH_PROG(CURL, curl, no) - if test "$CURL" != no; then -@@ -415,6 +419,7 @@ AC_CONFIG_FILES([ - po/Makefile - tests/Makefile - tests/httpd.conf -+ tests/php.ini - examples/Makefile - docs/Makefile - docs/reference/Makefile -diff --git a/tests/Makefile.am b/tests/Makefile.am -index 81a72cbc..d2986975 100644 a/tests/Makefile.am -+++ b/tests/Makefile.am -@@ -73,24 +73,30 @@ test_data += \ - httpd.conf - endif - -+if HAVE_PHP -+test_data += \ -+ php.ini -+endif -+ - RESOURCES = $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/soup-tests.gresource.xml) - - soup-tests.gresource: soup-tests.gresource.xml $(RESOURCES) - $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) $< - - EXTRA_DIST += \ - htdigest \ - htpasswd \ - httpd.conf.in\ - index.txt\ - libsoup.supp \ -+ php.ini.in \ - soup-tests.gresource.xml \ - test-cert.pem\ - test-key.pem \ - xmlrpc-server.php\ - $(RESOURCES) - --DISTCLEANFILES += soup-tests.gresource httpd.conf -+DISTCLEANFILES += soup-tests.gresource httpd.conf php.ini - - TESTS_ENVIRONMENT += SOUP_TESTS_IN_MAKE_CHECK=1 - -diff --git a/tests/httpd.conf.in b/tests/httpd.conf.in -index b818c12d..31c36674 100644 a/tests/httpd.conf.in -+++ b/tests/httpd.conf.in -@@ -31,6 +31,8 @@ LoadModule proxy_connect_module @APACHE_MODULE_DIR@/mod_proxy_connect.so - LoadModule ssl_module @APACHE_SSL_MODULE_DIR@/mod_ssl.so - @IF_HAVE_MOD_UNIXD@LoadModule unixd_module @APACHE_SSL_MODULE_DIR@/mod_unixd.so - -+@IF_HAVE_PHP@PHPIniDir . -+ - DirectoryIndex index.txt - TypesConfig /dev/null - AddType application/x-httpd-php .php -diff --git a/tests/php.ini.in b/tests/php.ini.in -new file mode 100644 -index ..779c0223 /dev/null -+++ b/tests/php.ini.in -@@ -0,0 +1 @@ -+@IF_HAVE_PHP_XMLRPC@extension=xmlrpc.so --- -2.16.2 - Modified: PKGBUILD === --- PKGBUILD2018-09-05 00:07:36 UTC (rev 62) +++ PKGBUILD2018-09-05 00:14:57 UTC (rev 63) @@ -1,8 +1,8 @@ -# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) # Maintainer: Jan de Groot pkgname=libsoup -pkgver=2
[arch-commits] Commit in glib-networking/repos (2 files)
Date: Wednesday, September 5, 2018 @ 00:07:36 Author: heftig Revision: 62 archrelease: copy trunk to gnome-unstable-x86_64 Added: glib-networking/repos/gnome-unstable-x86_64/ glib-networking/repos/gnome-unstable-x86_64/PKGBUILD (from rev 61, glib-networking/trunk/PKGBUILD) --+ PKGBUILD | 39 +++ 1 file changed, 39 insertions(+) Copied: glib-networking/repos/gnome-unstable-x86_64/PKGBUILD (from rev 61, glib-networking/trunk/PKGBUILD) === --- gnome-unstable-x86_64/PKGBUILD (rev 0) +++ gnome-unstable-x86_64/PKGBUILD 2018-09-05 00:07:36 UTC (rev 62) @@ -0,0 +1,39 @@ +# Maintainer: Jan Alexander Steffens (heftig) + +pkgname=glib-networking +pkgver=2.58.0 +pkgrel=1 +pkgdesc="Network extensions for GLib" +url="https://gitlab.gnome.org/GNOME/glib-networking"; +arch=(x86_64) +license=(GPL2) +depends=(glib2 libproxy gnutls gsettings-desktop-schemas) +makedepends=(meson git) +checkdepends=(ca-certificates) +_commit=bd8ef31a4ca4552a10b8fe7897662a2b235f6e6f # tags/2.58.0^0 +source=("git+https://gitlab.gnome.org/GNOME/glib-networking.git#commit=$_commit";) +sha256sums=('SKIP') + +pkgver() { + cd $pkgname + git describe --tags | sed 's/-/+/g' +} + +prepare() { + cd $pkgname +} + +build() { + arch-meson $pkgname build + ninja -C build +} + +check() { + meson test -C build +} + +package() { + DESTDIR="$pkgdir" meson install -C build +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in glib-networking/trunk (PKGBUILD)
Date: Wednesday, September 5, 2018 @ 00:07:00 Author: heftig Revision: 61 2.58.0-1 Modified: glib-networking/trunk/PKGBUILD(contents, properties) --+ PKGBUILD | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-05 00:01:09 UTC (rev 60) +++ PKGBUILD2018-09-05 00:07:00 UTC (rev 61) @@ -1,17 +1,17 @@ -# $Id$ # Maintainer: Jan Alexander Steffens (heftig) pkgname=glib-networking -pkgver=2.56.1 +pkgver=2.58.0 pkgrel=1 pkgdesc="Network extensions for GLib" -url="https://git.gnome.org/browse/glib-networking"; +url="https://gitlab.gnome.org/GNOME/glib-networking"; arch=(x86_64) license=(GPL2) -depends=(glib2 libproxy gnutls ca-certificates gsettings-desktop-schemas) +depends=(glib2 libproxy gnutls gsettings-desktop-schemas) makedepends=(meson git) -_commit=1710075901df3aa6db9dabd46049ea1d016a5593 # tags/2.56.1^0 -source=("git+https://git.gnome.org/browse/glib-networking#commit=$_commit";) +checkdepends=(ca-certificates) +_commit=bd8ef31a4ca4552a10b8fe7897662a2b235f6e6f # tags/2.58.0^0 +source=("git+https://gitlab.gnome.org/GNOME/glib-networking.git#commit=$_commit";) sha256sums=('SKIP') pkgver() { @@ -29,12 +29,11 @@ } check() { - cd build - meson test + meson test -C build } package() { - DESTDIR="$pkgdir" ninja -C build install + DESTDIR="$pkgdir" meson install -C build } # vim:set ts=2 sw=2 et: Property changes on: glib-networking/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in gnome-session/repos (2 files)
Date: Wednesday, September 5, 2018 @ 00:01:09 Author: heftig Revision: 60 archrelease: copy trunk to gnome-unstable-x86_64 Added: gnome-session/repos/gnome-unstable-x86_64/ gnome-session/repos/gnome-unstable-x86_64/PKGBUILD (from rev 59, gnome-session/trunk/PKGBUILD) --+ PKGBUILD | 38 ++ 1 file changed, 38 insertions(+) Copied: gnome-session/repos/gnome-unstable-x86_64/PKGBUILD (from rev 59, gnome-session/trunk/PKGBUILD) === --- gnome-unstable-x86_64/PKGBUILD (rev 0) +++ gnome-unstable-x86_64/PKGBUILD 2018-09-05 00:01:09 UTC (rev 60) @@ -0,0 +1,38 @@ +# Maintainer: Jan Alexander Steffens (heftig) + +pkgname=gnome-session +pkgver=3.30.0 +pkgrel=1 +pkgdesc="The GNOME Session Handler" +url="https://gitlab.gnome.org/GNOME/gnome-session"; +arch=(x86_64) +license=(GPL) +depends=(systemd dconf gsettings-desktop-schemas gtk3 gnome-desktop + json-glib libgl libsm libxtst systemd) +makedepends=(mesa gtk-doc xtrans git python xmlto docbook-xsl meson) +groups=(gnome) +_commit=a317214526911bd312a66ade717a2c62271dd500 # tags/3.30.0^0 +source=("git+https://gitlab.gnome.org/GNOME/gnome-session.git#commit=$_commit";) +sha256sums=('SKIP') + +pkgver() { + cd $pkgname + git describe --tags | sed 's/-/+/g' +} + +prepare() { + cd $pkgname +} + +build() { + arch-meson $pkgname build + ninja -C build +} + +check() { + meson test -C build +} + +package() { + DESTDIR="$pkgdir" meson install -C build +}
[arch-commits] Commit in libcroco/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 23:59:49 Author: heftig Revision: 59 source,Id Modified: libcroco/trunk/PKGBUILD (contents, properties) --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 23:58:31 UTC (rev 58) +++ PKGBUILD2018-09-04 23:59:49 UTC (rev 59) @@ -1,4 +1,4 @@ -# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) # Maintainer: Jan de Groot pkgname=libcroco @@ -5,13 +5,13 @@ pkgver=0.6.12+4+g9ad7287 pkgrel=1 pkgdesc="A CSS parsing library" -url="https://git.gnome.org/browse/libcroco"; +url="https://gitlab.gnome.org/GNOME/libcroco"; arch=(x86_64) depends=(glib2 libxml2) makedepends=(intltool git gtk-doc) license=(LGPL) _commit=9ad72875e9f08e4c519ef63d44cdbd94aa9504f7 # master -source=("git+https://git.gnome.org/browse/libcroco#commit=$_commit";) +source=("git+https://gitlab.gnome.org/GNOME/libcroco.git#commit=$_commit";) sha256sums=('SKIP') pkgver() { Property changes on: libcroco/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in gjs/repos (2 files)
Date: Tuesday, September 4, 2018 @ 23:57:50 Author: heftig Revision: 57 archrelease: copy trunk to gnome-unstable-x86_64 Added: gjs/repos/gnome-unstable-x86_64/ gjs/repos/gnome-unstable-x86_64/PKGBUILD (from rev 56, gjs/trunk/PKGBUILD) --+ PKGBUILD | 53 + 1 file changed, 53 insertions(+) Copied: gjs/repos/gnome-unstable-x86_64/PKGBUILD (from rev 56, gjs/trunk/PKGBUILD) === --- gnome-unstable-x86_64/PKGBUILD (rev 0) +++ gnome-unstable-x86_64/PKGBUILD 2018-09-04 23:57:50 UTC (rev 57) @@ -0,0 +1,53 @@ +# Maintainer: Jan Alexander Steffens (heftig) +# Contributor: Ionut Biru + +pkgname=gjs +pkgver=1.54.0 +pkgrel=1 +epoch=1 +pkgdesc="Javascript Bindings for GNOME" +url="https://wiki.gnome.org/Projects/Gjs"; +arch=(x86_64) +license=(GPL) +depends=(cairo gobject-introspection-runtime js60 gtk3) +makedepends=(gobject-introspection git autoconf-archive xorg-server-xvfb) +checkdepends=(valgrind) +_commit=d8dca63d7d508b858f771d847bee2e99017db2ce # tags/1.54.0^0 +source=("git+https://gitlab.gnome.org/GNOME/gjs.git#commit=$_commit";) +sha256sums=('SKIP') + +pkgver() { + cd $pkgname + git describe --tags | sed 's/-/+/g' +} + +prepare() { + cd $pkgname + + # We don't have C.UTF-8 + sed -i 's|C\.UTF-8|en_US.UTF-8|g' Makefile-test.am test/test-ci.sh + + NOCONFIGURE=1 ./autogen.sh +} + +build() { + cd $pkgname + ./configure \ +--prefix=/usr \ +--libexecdir=/usr/lib \ +--disable-static \ +--enable-compile-warnings=yes \ +--with-xvfb-tests + sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + make +} + +check() { + cd $pkgname + make -j1 check +} + +package() { + cd $pkgname + make DESTDIR="$pkgdir" install +}
[arch-commits] Commit in gnome-themes-extra/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 23:58:31 Author: heftig Revision: 58 Id Modified: gnome-themes-extra/trunk/PKGBUILD (contents, properties) --+ PKGBUILD |1 - 1 file changed, 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 23:57:50 UTC (rev 57) +++ PKGBUILD2018-09-04 23:58:31 UTC (rev 58) @@ -1,4 +1,3 @@ -# $Id$ # Maintainer: Jan Alexander Steffens (heftig) pkgname=gnome-themes-extra Property changes on: gnome-themes-extra/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in gnome-session/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 23:57:40 Author: heftig Revision: 56 3.30.0-1 Modified: gnome-session/trunk/PKGBUILD (contents, properties) --+ PKGBUILD | 16 +++- 1 file changed, 7 insertions(+), 9 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 23:57:21 UTC (rev 55) +++ PKGBUILD2018-09-04 23:57:40 UTC (rev 56) @@ -1,19 +1,18 @@ -# $Id$ # Maintainer: Jan Alexander Steffens (heftig) pkgname=gnome-session -pkgver=3.28.1 +pkgver=3.30.0 pkgrel=1 pkgdesc="The GNOME Session Handler" -url="https://git.gnome.org/browse/gnome-session"; +url="https://gitlab.gnome.org/GNOME/gnome-session"; arch=(x86_64) -license=(GPL LGPL) +license=(GPL) depends=(systemd dconf gsettings-desktop-schemas gtk3 gnome-desktop json-glib libgl libsm libxtst systemd) makedepends=(mesa gtk-doc xtrans git python xmlto docbook-xsl meson) groups=(gnome) -_commit=98f8e15621006e069a4c886b6084a80aa4c27663 # tags/3.28.1^0 -source=("git+https://git.gnome.org/browse/gnome-session#commit=$_commit";) +_commit=a317214526911bd312a66ade717a2c62271dd500 # tags/3.30.0^0 +source=("git+https://gitlab.gnome.org/GNOME/gnome-session.git#commit=$_commit";) sha256sums=('SKIP') pkgver() { @@ -31,10 +30,9 @@ } check() { - cd build - meson test + meson test -C build } package() { - DESTDIR="$pkgdir" ninja -C build install + DESTDIR="$pkgdir" meson install -C build } Property changes on: gnome-session/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in gjs/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 23:57:21 Author: heftig Revision: 55 1.54.0-1 Modified: gjs/trunk/PKGBUILD(contents, properties) --+ PKGBUILD | 12 1 file changed, 8 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 21:33:31 UTC (rev 54) +++ PKGBUILD2018-09-04 23:57:21 UTC (rev 55) @@ -1,8 +1,8 @@ -# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) # Contributor: Ionut Biru pkgname=gjs -pkgver=1.52.3 +pkgver=1.54.0 pkgrel=1 epoch=1 pkgdesc="Javascript Bindings for GNOME" @@ -9,10 +9,10 @@ url="https://wiki.gnome.org/Projects/Gjs"; arch=(x86_64) license=(GPL) -depends=(cairo gobject-introspection-runtime js52 gtk3) +depends=(cairo gobject-introspection-runtime js60 gtk3) makedepends=(gobject-introspection git autoconf-archive xorg-server-xvfb) checkdepends=(valgrind) -_commit=9e63c335e84613a6e499c61aa1afcd5107c36b10 # tags/1.52.3^0 +_commit=d8dca63d7d508b858f771d847bee2e99017db2ce # tags/1.54.0^0 source=("git+https://gitlab.gnome.org/GNOME/gjs.git#commit=$_commit";) sha256sums=('SKIP') @@ -23,6 +23,10 @@ prepare() { cd $pkgname + + # We don't have C.UTF-8 + sed -i 's|C\.UTF-8|en_US.UTF-8|g' Makefile-test.am test/test-ci.sh + NOCONFIGURE=1 ./autogen.sh } Property changes on: gjs/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in libratbag/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 22:53:06 Author: ffy00 Revision: 376909 upgpkg: libratbag 0.9.903-1 Modified: libratbag/trunk/PKGBUILD --+ PKGBUILD | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 22:34:16 UTC (rev 376908) +++ PKGBUILD2018-09-04 22:53:06 UTC (rev 376909) @@ -2,8 +2,8 @@ # Maintainer: Filipe Laíns (FFY00) pkgname=libratbag -pkgver=0.9.902 -pkgrel=2 +pkgver=0.9.903 +pkgrel=1 pkgdesc='A DBus daemon to configure gaming mice' arch=('x86_64') url='https://github.com/libratbag/libratbag' @@ -12,27 +12,27 @@ makedepends=('meson' 'swig' 'git') checkdepends=('check' 'valgrind' 'python-gobject' 'python-lxml') source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -sha512sums=('7c4f3c7c2864aadc6b08bd184bf924376b7ec0ac6bc5725ec0693284c39a94ee3440640f57e402c25068112866508743da6eddcdcc4d99dc5c706fda9927e03a') +sha512sums=('53176e3bc9f73558f2c92380fccc0c235cafb113319a38c13b2b317acec13294df507671ceff9f28e89dd8ecc7ad4bf6795fb9c270fc462715769d06e11a601c') provides=('ratbagd' 'liblur') -conflicts=('ratbagd<=0.4') +conflicts=('ratbagd' 'libur') build() { - mkdir -p "$srcdir"/$pkgname-$pkgver/build - cd "$srcdir"/$pkgname-$pkgver/build + mkdir -p $pkgname-$pkgver/build + cd $pkgname-$pkgver/build - meson --prefix=/usr .. + arch-meson .. ninja } check() { - cd "$srcdir"/$pkgname-$pkgver/build + cd $pkgname-$pkgver/build - meson test -v + meson test --no-rebuild } package() { - cd "$srcdir"/$pkgname-$pkgver/build + cd $pkgname-$pkgver/build DESTDIR="$pkgdir" ninja install
[arch-commits] Commit in libratbag/repos/community-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, September 4, 2018 @ 22:53:12 Author: ffy00 Revision: 376910 archrelease: copy trunk to community-x86_64 Added: libratbag/repos/community-x86_64/PKGBUILD (from rev 376909, libratbag/trunk/PKGBUILD) Deleted: libratbag/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 80 ++--- 1 file changed, 40 insertions(+), 40 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-04 22:53:06 UTC (rev 376909) +++ PKGBUILD2018-09-04 22:53:12 UTC (rev 376910) @@ -1,40 +0,0 @@ -# $Id$ -# Maintainer: Filipe Laíns (FFY00) - -pkgname=libratbag -pkgver=0.9.902 -pkgrel=2 -pkgdesc='A DBus daemon to configure gaming mice' -arch=('i686' 'x86_64') -url='https://github.com/libratbag/libratbag' -license=('MIT') -depends=('glib2' 'libevdev' 'libudev.so' 'python' 'python-evdev') -makedepends=('meson' 'swig' 'git') -checkdepends=('check' 'valgrind' 'python-gobject' 'python-lxml') -source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") -sha512sums=('7c4f3c7c2864aadc6b08bd184bf924376b7ec0ac6bc5725ec0693284c39a94ee3440640f57e402c25068112866508743da6eddcdcc4d99dc5c706fda9927e03a') -provides=('ratbagd' 'liblur') -conflicts=('ratbagd<=0.4') - -build() { - mkdir -p "$srcdir"/$pkgname-$pkgver/build - cd "$srcdir"/$pkgname-$pkgver/build - - meson --prefix=/usr .. - - ninja -} - -check() { - cd "$srcdir"/$pkgname-$pkgver/build - - meson test -v -} - -package() { - cd "$srcdir"/$pkgname-$pkgver/build - - DESTDIR="$pkgdir" ninja install - - install -Dm 644 ../COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -} Copied: libratbag/repos/community-x86_64/PKGBUILD (from rev 376909, libratbag/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-04 22:53:12 UTC (rev 376910) @@ -0,0 +1,40 @@ +# $Id$ +# Maintainer: Filipe Laíns (FFY00) + +pkgname=libratbag +pkgver=0.9.903 +pkgrel=1 +pkgdesc='A DBus daemon to configure gaming mice' +arch=('x86_64') +url='https://github.com/libratbag/libratbag' +license=('MIT') +depends=('glib2' 'libevdev' 'libudev.so' 'python' 'python-evdev') +makedepends=('meson' 'swig' 'git') +checkdepends=('check' 'valgrind' 'python-gobject' 'python-lxml') +source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") +sha512sums=('53176e3bc9f73558f2c92380fccc0c235cafb113319a38c13b2b317acec13294df507671ceff9f28e89dd8ecc7ad4bf6795fb9c270fc462715769d06e11a601c') +provides=('ratbagd' 'liblur') +conflicts=('ratbagd' 'libur') + +build() { + mkdir -p $pkgname-$pkgver/build + cd $pkgname-$pkgver/build + + arch-meson .. + + ninja +} + +check() { + cd $pkgname-$pkgver/build + + meson test --no-rebuild +} + +package() { + cd $pkgname-$pkgver/build + + DESTDIR="$pkgdir" ninja install + + install -Dm 644 ../COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +}
[arch-commits] Commit in paraview/repos (3 files)
Date: Tuesday, September 4, 2018 @ 22:34:16 Author: archange Revision: 376908 archrelease: copy trunk to community-staging-x86_64 Added: paraview/repos/community-staging-x86_64/ paraview/repos/community-staging-x86_64/PKGBUILD (from rev 376907, paraview/trunk/PKGBUILD) paraview/repos/community-staging-x86_64/fix-qt5.11-headers.patch (from rev 376907, paraview/trunk/fix-qt5.11-headers.patch) --+ PKGBUILD | 116 +++ fix-qt5.11-headers.patch | 120 + 2 files changed, 236 insertions(+) Copied: paraview/repos/community-staging-x86_64/PKGBUILD (from rev 376907, paraview/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-09-04 22:34:16 UTC (rev 376908) @@ -0,0 +1,116 @@ +# Maintainer: Bruno Pagani +# Contributor: Oliver Goethel +# Contributor: eolianoe eolianoe +# Contributor: George Eleftheriou +# Contributor: Mathias Anselmann +# Contributor: Stéphane Gaudreault +# Contributor: Thomas Dziedzic < gostrc at gmail > +# Contributor: Michele Mocciola +# Contributor: Simon Zilliken +# Contributor: chuckdaniels + +_pkg=paraview +_mpi=openmpi +pkgname=${_pkg} +#-${_mpi} +pkgver=5.5.2 +pkgrel=4 +pkgdesc="Parallel Visualization application using VTK (${_mpi} version)" +arch=('x86_64') +url="https://www.paraview.org"; +license=('BSD' 'custom') +depends=('qt5-tools' 'qt5-x11extras' 'ospray' 'ffmpeg' 'openmpi' + 'cgns' 'python-pygments' 'protobuf' 'pugixml' + 'python-matplotlib' 'python-numpy' 'python-mpi4py' + 'boost-libs' 'glew' 'expat' 'freetype2' + 'libjpeg' 'jsoncpp' 'libxml2' 'libpng' + 'libtiff' 'zlib' 'hdf5' 'lz4' 'netcdf') +#netcdf-cxx gl2ps libharu +#python-txaio python-hyperlink +#proj apparently not used in this VTK configuration +makedepends=('cmake' 'boost' 'mesa' 'gcc-fortran' 'ninja' 'qt5-tools' 'qt5-xmlpatterns' 'eigen') +source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver}.tar.xz" +'fix-qt5.11-headers.patch' +'https://gitlab.kitware.com/vtk/vtk/merge_requests/4490.patch' + 'https://gitlab.kitware.com/paraview/paraview/merge_requests/2613.patch' + paraview-fix-doc-build.patch::"https://gitlab.kitware.com/paraview/paraview/commit/f9c7e4b0.diff";) +sha256sums=('4b9d186bac59e412ae09cae49c3ec3ec59803c25f63e89f92efe07b05dc1b896' +'638e3148d855e1de2ca7711f9dd1eb6ec5410e3c412d949abf2a34ef2086f0c7' +'ebad129ed0229f96bc17ff0a43715407b0fdf8cc2658a7b5ebd7e76809ae1392' +'49d643a0220f0f901e571f9f82f5dd48d85fe42a79830b971ab586abf334194f' +'2e52c2564e5e147b8c1321367147495ba3c43436eecda1b3d26acde8d04a230d') + +prepare() { +mkdir -p build +cd ParaView-v${pkgver}/ +patch -p1 -i ../fix-qt5.11-headers.patch +# https://gitlab.kitware.com/paraview/paraview/issues/18323 +patch -p1 -i ../2613.patch +# fix build https://gitlab.kitware.com/paraview/paraview/issues/18330 +patch -p1 -i ../paraview-fix-doc-build.patch +cd VTK +# https://gitlab.kitware.com/vtk/vtk/issues/17350 +patch -p1 -i ../../4490.patch +} + +build() { +cd build + +# Flags to enable system libs in VTK building, as in VTK package +# NETCDFCPP status? +# GL2PS fails. +# libharu blocked by https://github.com/libharu/libharu/pull/157 +# LIBPROJ4 apparently not used in this VTK configuration +local VTK_USE_SYSTEM_LIB="" +for lib in EXPAT FREETYPE JPEG PNG TIFF ZLIB LIBXML2 MPI4PY JSONCPP GLEW HDF5 LZ4 NETCDF EIGEN +do +VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON " +done +# Specific system libs for ParaView version +for lib in CGNS PUGIXML PROTOBUF PYGMENTS +do +VTK_USE_SYSTEM_LIB+="-DVTK_USE_SYSTEM_${lib}:BOOL=ON " +done + +cmake ../ParaView-v${pkgver} \ +-DBUILD_DOCUMENTATION=OFF \ +-DBUILD_EXAMPLES=ON \ +-DBUILD_SHARED_LIBS=ON \ +-DBUILD_TESTING=OFF \ +-DCMAKE_BUILD_TYPE=Release \ +-DCMAKE_C_COMPILER=mpicc \ +-DCMAKE_CXX_COMPILER=mpicxx \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DOSPRAY_INSTALL_DIR=/usr \ +-DPARAVIEW_ENABLE_FFMPEG=ON \ +-DPARAVIEW_ENABLE_MATPLOTLIB=ON \ +-DPARAVIEW_ENABLE_PYTHON=ON \ +-DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON \ +-DPARAVIEW_QT_VERSION=5 \ +-DPARAVIEW_USE_MPI=ON \ +-DPARAVIEW_USE_VISITBRIDGE=ON \ +-DPARAVIEW_USE_OSPRAY=ON \ +-DVISIT_BUILD_READER_CGNS=ON \ +-DVTK_PYTHON_FULL_THREADSAFE=ON \ +-DVTK_PYTHON_VERSION=3 \ +-DVTK_QT_VERSION=5 \ +-DVTK_RENDERING_BACKEND=OpenGL2 \ +-DVTK_SMP_IMPLEMENTATION_TYPE=OpenMP \ +${VTK_USE_SYSTEM_LIB} \ +-GNinja + +ninja ${MAKEFLAGS} +} + +pa
[arch-commits] Commit in paraview/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 22:34:01 Author: archange Revision: 376907 protobuf 3.6.1 rebuild Modified: paraview/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 21:44:29 UTC (rev 376906) +++ PKGBUILD2018-09-04 22:34:01 UTC (rev 376907) @@ -14,7 +14,7 @@ pkgname=${_pkg} #-${_mpi} pkgver=5.5.2 -pkgrel=3 +pkgrel=4 pkgdesc="Parallel Visualization application using VTK (${_mpi} version)" arch=('x86_64') url="https://www.paraview.org";
[arch-commits] Commit in nginx-mainline/repos/community-x86_64 (8 files)
Date: Tuesday, September 4, 2018 @ 21:44:29 Author: grazzolini Revision: 376906 archrelease: copy trunk to community-x86_64 Added: nginx-mainline/repos/community-x86_64/PKGBUILD (from rev 376905, nginx-mainline/trunk/PKGBUILD) nginx-mainline/repos/community-x86_64/logrotate (from rev 376905, nginx-mainline/trunk/logrotate) nginx-mainline/repos/community-x86_64/nginx.install (from rev 376905, nginx-mainline/trunk/nginx.install) nginx-mainline/repos/community-x86_64/service (from rev 376905, nginx-mainline/trunk/service) Deleted: nginx-mainline/repos/community-x86_64/PKGBUILD nginx-mainline/repos/community-x86_64/logrotate nginx-mainline/repos/community-x86_64/nginx.install nginx-mainline/repos/community-x86_64/service ---+ PKGBUILD | 266 logrotate | 20 ++-- nginx.install | 24 ++--- service | 34 +++ 4 files changed, 172 insertions(+), 172 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-04 21:43:27 UTC (rev 376905) +++ PKGBUILD2018-09-04 21:44:29 UTC (rev 376906) @@ -1,133 +0,0 @@ -# $Id$ -# Maintainer: Giancarlo Razzolini -# Contributor: Bartłomiej Piotrowski -# Contributor: Sébastien Luttringer -# Contributor: Drew DeVault - -pkgname=nginx-mainline -pkgver=1.15.2 -pkgrel=1 -pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release' -arch=('x86_64') -url='https://nginx.org' -license=('custom') -depends=('pcre' 'zlib' 'openssl' 'geoip' 'mailcap') -backup=('etc/nginx/fastcgi.conf' -'etc/nginx/fastcgi_params' -'etc/nginx/koi-win' -'etc/nginx/koi-utf' -'etc/nginx/nginx.conf' -'etc/nginx/scgi_params' -'etc/nginx/uwsgi_params' -'etc/nginx/win-utf' -'etc/logrotate.d/nginx') -install=nginx.install -provides=('nginx') -conflicts=('nginx') -source=($url/download/nginx-$pkgver.tar.gz{,.asc} -service -logrotate) -validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin -md5sums=('d063f746d3dc4298aed9c518f1684166' - 'SKIP' - 'ef491e760e7c1ffec9ca25441a150c83' - '6a01fb17af86f03707c8ae60f98a2dc2') -sha512sums=('ef8171138246b851f3713ea027d6b96de414b15e24de244fa4fcb428da3a68f4df0c54152e5c0993e36c9c97d4dabcd55a019d6709840b4393c86995604668ff' -'SKIP' - '4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715' - '9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7') - -_common_flags=( - --with-compat - --with-debug - --with-file-aio - --with-http_addition_module - --with-http_auth_request_module - --with-http_dav_module - --with-http_degradation_module - --with-http_flv_module - --with-http_geoip_module - --with-http_gunzip_module - --with-http_gzip_static_module - --with-http_mp4_module - --with-http_realip_module - --with-http_secure_link_module - --with-http_slice_module - --with-http_ssl_module - --with-http_stub_status_module - --with-http_sub_module - --with-http_v2_module - --with-mail - --with-mail_ssl_module - --with-pcre-jit - --with-stream - --with-stream_geoip_module - --with-stream_realip_module - --with-stream_ssl_module - --with-stream_ssl_preread_module - --with-threads -) - -_mainline_flags=( -) - -build() { - cd $provides-$pkgver - ./configure \ ---prefix=/etc/nginx \ ---conf-path=/etc/nginx/nginx.conf \ ---sbin-path=/usr/bin/nginx \ ---pid-path=/run/nginx.pid \ ---lock-path=/run/lock/nginx.lock \ ---user=http \ ---group=http \ ---http-log-path=/var/log/nginx/access.log \ ---error-log-path=stderr \ ---http-client-body-temp-path=/var/lib/nginx/client-body \ ---http-proxy-temp-path=/var/lib/nginx/proxy \ ---http-fastcgi-temp-path=/var/lib/nginx/fastcgi \ ---http-scgi-temp-path=/var/lib/nginx/scgi \ ---http-uwsgi-temp-path=/var/lib/nginx/uwsgi \ ---with-cc-opt="$CFLAGS $CPPFLAGS" \ ---with-ld-opt="$LDFLAGS" \ -${_common_flags[@]} \ -${_mainline_flags[@]} - - make -} - -package() { - cd $provides-$pkgver - make DESTDIR="$pkgdir" install - - sed -e 's|\ "$pkgdir"/usr/share/man/man8/nginx.8.gz - - for i in ftdetect indent syntax; do -install -Dm644 contrib/vim/$i/nginx.vim \ - "$pkgdir/usr/share/vim/vimfiles/$i/nginx.vim" - done -} Copied: nginx-mainline/repos/community-x86_64/PKGBUILD (from rev 376905, nginx-mainline/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-04 21:44:29 UTC (rev 376906) @@ -0,0 +1,133 @@ +# $Id$ +# Maintainer: Giancarlo Razzolini +# Contributor: Bartłomiej Piotrowski +# Contributor: Sébastien Luttringer +# Contributor: Dre
[arch-commits] Commit in nginx-mainline/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 21:43:27 Author: grazzolini Revision: 376905 upgpkg: nginx-mainline 1.15.3-1 Modified: nginx-mainline/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 21:13:23 UTC (rev 376904) +++ PKGBUILD2018-09-04 21:43:27 UTC (rev 376905) @@ -5,7 +5,7 @@ # Contributor: Drew DeVault pkgname=nginx-mainline -pkgver=1.15.2 +pkgver=1.15.3 pkgrel=1 pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server, mainline release' arch=('x86_64') @@ -28,11 +28,11 @@ service logrotate) validpgpkeys=('B0F4253373F8F6F510D42178520A9993A1C052F8') # Maxim Dounin -md5sums=('d063f746d3dc4298aed9c518f1684166' +md5sums=('86387884aaf6ee7c529edba6b22ba16e' 'SKIP' 'ef491e760e7c1ffec9ca25441a150c83' '6a01fb17af86f03707c8ae60f98a2dc2') -sha512sums=('ef8171138246b851f3713ea027d6b96de414b15e24de244fa4fcb428da3a68f4df0c54152e5c0993e36c9c97d4dabcd55a019d6709840b4393c86995604668ff' +sha512sums=('112fafd0841b79a165cee6a94da6d0c6c828b29ef1e3af00f4a12809c5d3bc8fd2a94f6d0cb05f6b487be81a414be42ea64f88e63a4d62fe9bebc9cf946aa94a' 'SKIP' '4f90db6b8b5c13762b96ddff9ca4e846762d46b90be27c7c9d54cec6f7f12fc95585f8455919296edb0255405dd80af8ee86780b805631b72eb74ee59f359715' '9232342c0914575ce438c5a8ee7e1c25b0befb457a2934e9cb77d1fe9a103634ea403b57bc0ef0cd6cf72248aee5e5584282cea611bc79198aeac9a65d8df5d7')
[arch-commits] Commit in libcacard/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, September 4, 2018 @ 21:33:31 Author: grazzolini Revision: 54 archrelease: copy trunk to extra-x86_64 Added: libcacard/repos/extra-x86_64/PKGBUILD (from rev 53, libcacard/trunk/PKGBUILD) Deleted: libcacard/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 52 1 file changed, 28 insertions(+), 24 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-04 21:30:16 UTC (rev 53) +++ PKGBUILD2018-09-04 21:33:31 UTC (rev 54) @@ -1,24 +0,0 @@ -# $Id$ -# Maintainer: - -pkgname=libcacard -pkgver=2.5.3 -pkgrel=1 -pkgdesc='(Common Access Card) library thar provides emulation of smart cards to a virtual card reader running in a guest virtual machine' -arch=(i686 x86_64) -license=(GPL2) -url='http://www.spice-space.org/page/Libcacard' -depends=(nss glib2) -source=(http://www.spice-space.org/download/libcacard/libcacard-$pkgver.tar.xz) -sha1sums=('b085bdf0b7558088c490f733aa1e1f6ab5b81787') - -build () { - cd libcacard-$pkgver - ./configure --prefix=/usr - make -} - -package() { - cd libcacard-$pkgver - make DESTDIR="$pkgdir" install -} Copied: libcacard/repos/extra-x86_64/PKGBUILD (from rev 53, libcacard/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-04 21:33:31 UTC (rev 54) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: + +pkgname=libcacard +pkgver=2.6.1 +pkgrel=1 +pkgdesc='(Common Access Card) library thar provides emulation of smart cards to a virtual card reader running in a guest virtual machine' +arch=(x86_64) +license=(GPL2) +url='https://www.spice-space.org/page/Libcacard' +depends=(nss glib2) +source=(https://www.spice-space.org/download/libcacard/libcacard-$pkgver.tar.xz{,.sign}) +validpgpkeys=('94A9F75661F77A6168649B23A9D8C21429AC6C82') # Christophe Fergeau +sha1sums=('bceec1a1da4ed95f08bc1307e3a92020fb86f300' + 'SKIP') +sha512sums=('1df2fa0cf46ee503cebb3a6f28c5e11609ec19dbf4e146d6d89ea59ddc7fcace45fc02adf852bfa385ae1ba1a889e9731a034b5e6630d45f3475cbc093e3aa2d' +'SKIP') + +build () { + cd libcacard-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd libcacard-$pkgver + make DESTDIR="$pkgdir" install +}
[arch-commits] Commit in libcacard/repos (community-x86_64 community-x86_64/PKGBUILD)
Date: Tuesday, September 4, 2018 @ 21:30:16 Author: grazzolini Revision: 53 archrelease: copy trunk to community-x86_64 Added: libcacard/repos/community-x86_64/ libcacard/repos/community-x86_64/PKGBUILD (from rev 52, libcacard/trunk/PKGBUILD) --+ PKGBUILD | 28 1 file changed, 28 insertions(+) Copied: libcacard/repos/community-x86_64/PKGBUILD (from rev 52, libcacard/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2018-09-04 21:30:16 UTC (rev 53) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: + +pkgname=libcacard +pkgver=2.6.1 +pkgrel=1 +pkgdesc='(Common Access Card) library thar provides emulation of smart cards to a virtual card reader running in a guest virtual machine' +arch=(x86_64) +license=(GPL2) +url='https://www.spice-space.org/page/Libcacard' +depends=(nss glib2) +source=(https://www.spice-space.org/download/libcacard/libcacard-$pkgver.tar.xz{,.sign}) +validpgpkeys=('94A9F75661F77A6168649B23A9D8C21429AC6C82') # Christophe Fergeau +sha1sums=('bceec1a1da4ed95f08bc1307e3a92020fb86f300' + 'SKIP') +sha512sums=('1df2fa0cf46ee503cebb3a6f28c5e11609ec19dbf4e146d6d89ea59ddc7fcace45fc02adf852bfa385ae1ba1a889e9731a034b5e6630d45f3475cbc093e3aa2d' +'SKIP') + +build () { + cd libcacard-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd libcacard-$pkgver + make DESTDIR="$pkgdir" install +}
[arch-commits] Commit in libcacard/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 21:29:16 Author: grazzolini Revision: 52 upgpkg: libcacard 2.6.1-1 Modified: libcacard/trunk/PKGBUILD --+ PKGBUILD | 12 1 file changed, 8 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 21:13:49 UTC (rev 51) +++ PKGBUILD2018-09-04 21:29:16 UTC (rev 52) @@ -2,15 +2,19 @@ # Maintainer: pkgname=libcacard -pkgver=2.5.3 +pkgver=2.6.1 pkgrel=1 pkgdesc='(Common Access Card) library thar provides emulation of smart cards to a virtual card reader running in a guest virtual machine' arch=(x86_64) license=(GPL2) -url='http://www.spice-space.org/page/Libcacard' +url='https://www.spice-space.org/page/Libcacard' depends=(nss glib2) -source=(http://www.spice-space.org/download/libcacard/libcacard-$pkgver.tar.xz) -sha1sums=('b085bdf0b7558088c490f733aa1e1f6ab5b81787') +source=(https://www.spice-space.org/download/libcacard/libcacard-$pkgver.tar.xz{,.sign}) +validpgpkeys=('94A9F75661F77A6168649B23A9D8C21429AC6C82') # Christophe Fergeau +sha1sums=('bceec1a1da4ed95f08bc1307e3a92020fb86f300' + 'SKIP') +sha512sums=('1df2fa0cf46ee503cebb3a6f28c5e11609ec19dbf4e146d6d89ea59ddc7fcace45fc02adf852bfa385ae1ba1a889e9731a034b5e6630d45f3475cbc093e3aa2d' +'SKIP') build () { cd libcacard-$pkgver
[arch-commits] Commit in gobject-introspection/repos/gnome-unstable-x86_64 (3 files)
Date: Tuesday, September 4, 2018 @ 21:13:49 Author: heftig Revision: 51 archrelease: copy trunk to gnome-unstable-x86_64 Added: gobject-introspection/repos/gnome-unstable-x86_64/PKGBUILD (from rev 50, gobject-introspection/trunk/PKGBUILD) gobject-introspection/repos/gnome-unstable-x86_64/warnlib.diff (from rev 50, gobject-introspection/trunk/warnlib.diff) Deleted: gobject-introspection/repos/gnome-unstable-x86_64/PKGBUILD --+ PKGBUILD | 112 + warnlib.diff | 13 ++ 2 files changed, 71 insertions(+), 54 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-04 21:13:12 UTC (rev 50) +++ PKGBUILD2018-09-04 21:13:49 UTC (rev 51) @@ -1,54 +0,0 @@ -# Maintainer: Jan Alexander Steffens (heftig) -# Maintainer: Jan de Groot - -pkgbase=gobject-introspection -pkgname=(gobject-introspection gobject-introspection-runtime) -pkgver=1.58.0 -pkgrel=1 -pkgdesc="Introspection system for GObject-based libraries" -url="https://wiki.gnome.org/Projects/GObjectIntrospection"; -arch=(x86_64) -license=(LGPL GPL) -depends=(python python-mako) -makedepends=(cairo git gtk-doc python-sphinx meson) -options=(!emptydirs) -_commit=01bf21f398d5ece9ac2d78c00b4b362091f8e05c # tags/1.58.0^0 -source=("git+https://gitlab.gnome.org/GNOME/gobject-introspection.git#commit=$_commit";) -sha512sums=('SKIP') - -pkgver() { - cd $pkgbase - git describe --tags | sed 's/-/+/g' -} - -prepare() { - cd $pkgbase -} - -build() { - arch-meson $pkgbase build -D cairo=true -D gtk-doc=true - ninja -C build -} - -check() { - meson test -C build -} - -package_gobject-introspection() { - depends+=("gobject-introspection-runtime=$pkgver-$pkgrel") - - DESTDIR="$pkgdir" meson install -C build - python -m compileall "$pkgdir/usr/lib/gobject-introspection" - python -O -m compileall "$pkgdir/usr/lib/gobject-introspection" - -### Split runtime - mkdir -p "$srcdir/runtime/lib" - mv "$pkgdir"/usr/lib/{lib*,girepository-*} "$srcdir/runtime/lib" -} - -package_gobject-introspection-runtime() { - pkgdesc+=" (runtime library)" - depends=(glib2) - - mv "$srcdir/runtime" "$pkgdir/usr" -} Copied: gobject-introspection/repos/gnome-unstable-x86_64/PKGBUILD (from rev 50, gobject-introspection/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-04 21:13:49 UTC (rev 51) @@ -0,0 +1,58 @@ +# Maintainer: Jan Alexander Steffens (heftig) +# Maintainer: Jan de Groot + +pkgbase=gobject-introspection +pkgname=(gobject-introspection gobject-introspection-runtime) +pkgver=1.58.0 +pkgrel=2 +pkgdesc="Introspection system for GObject-based libraries" +url="https://wiki.gnome.org/Projects/GObjectIntrospection"; +arch=(x86_64) +license=(LGPL GPL) +depends=(python python-mako) +makedepends=(cairo git gtk-doc python-sphinx meson) +options=(!emptydirs) +_commit=01bf21f398d5ece9ac2d78c00b4b362091f8e05c # tags/1.58.0^0 +source=("git+https://gitlab.gnome.org/GNOME/gobject-introspection.git#commit=$_commit"; +warnlib.diff) +sha512sums=('SKIP' + 'f9cf08b83a6f220923f7b538877a152ab90bebb6703e5026badc9852a69131b9c17e1d4dda89f9f5b6d8fb58a17780bd87d9c3bf66f5b8a9260f4f6debf4') + +pkgver() { + cd $pkgbase + git describe --tags | sed 's/-/+/g' +} + +prepare() { + cd $pkgbase + # GJS needs warnlib to build + patch -Np1 -i ../warnlib.diff +} + +build() { + arch-meson $pkgbase build -D cairo=true -D gtk-doc=true + ninja -C build +} + +check() { + meson test -C build +} + +package_gobject-introspection() { + depends+=("gobject-introspection-runtime=$pkgver-$pkgrel") + + DESTDIR="$pkgdir" meson install -C build + python -m compileall "$pkgdir/usr/lib/gobject-introspection" + python -O -m compileall "$pkgdir/usr/lib/gobject-introspection" + +### Split runtime + mkdir -p "$srcdir/runtime/lib" + mv "$pkgdir"/usr/lib/{lib*,girepository-*} "$srcdir/runtime/lib" +} + +package_gobject-introspection-runtime() { + pkgdesc+=" (runtime library)" + depends=(glib2) + + mv "$srcdir/runtime" "$pkgdir/usr" +} Copied: gobject-introspection/repos/gnome-unstable-x86_64/warnlib.diff (from rev 50, gobject-introspection/trunk/warnlib.diff) === --- warnlib.diff(rev 0) +++ warnlib.diff2018-09-04 21:13:49 UTC (rev 51) @@ -0,0 +1,13 @@ +diff --git i/tests/meson.build w/tests/meson.build +index 71cd97fe..18cc0807 100644 +--- i/tests/meson.build w/tests/meson.build +@@ -8,6 +8,8 @@ test_regress_incdirs = include_directories(['.', 'scanner']) + installed_sources = [ + 'scanner/regress.c', + 'scanner/regress.h', ++ 'scanner/warnlib.c', ++ 'scanner/warnlib.h', + 'gimarshallingtests.c', + 'gimarshallingtests.h', + 'gitestmacros.h',
[arch-commits] Commit in jadx/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 21:13:14 Author: anthraxx Revision: 376903 upgpkg: jadx 0.8.0-1 Modified: jadx/trunk/PKGBUILD --+ PKGBUILD |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 21:07:37 UTC (rev 376902) +++ PKGBUILD2018-09-04 21:13:14 UTC (rev 376903) @@ -26,8 +26,7 @@ package() { cd ${pkgname}-${pkgver}/build/jadx - install -Dm 755 bin/jadx -t "${pkgdir}/usr/share/java/${pkgname}/bin" - install -Dm 755 bin/jadx-gui -t "${pkgdir}/usr/share/java/${pkgname}/bin" + install -Dm 755 bin/{jadx,jadx-gui} -t "${pkgdir}/usr/share/java/${pkgname}/bin" install -Dm 644 lib/* -t "${pkgdir}/usr/share/java/${pkgname}/lib" install -d "${pkgdir}/usr/bin"
[arch-commits] Commit in gobject-introspection/trunk (PKGBUILD warnlib.diff)
Date: Tuesday, September 4, 2018 @ 21:13:12 Author: heftig Revision: 50 1.58.0-2 Added: gobject-introspection/trunk/warnlib.diff Modified: gobject-introspection/trunk/PKGBUILD --+ PKGBUILD | 10 +++--- warnlib.diff | 13 + 2 files changed, 20 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 21:01:54 UTC (rev 49) +++ PKGBUILD2018-09-04 21:13:12 UTC (rev 50) @@ -4,7 +4,7 @@ pkgbase=gobject-introspection pkgname=(gobject-introspection gobject-introspection-runtime) pkgver=1.58.0 -pkgrel=1 +pkgrel=2 pkgdesc="Introspection system for GObject-based libraries" url="https://wiki.gnome.org/Projects/GObjectIntrospection"; arch=(x86_64) @@ -13,8 +13,10 @@ makedepends=(cairo git gtk-doc python-sphinx meson) options=(!emptydirs) _commit=01bf21f398d5ece9ac2d78c00b4b362091f8e05c # tags/1.58.0^0 -source=("git+https://gitlab.gnome.org/GNOME/gobject-introspection.git#commit=$_commit";) -sha512sums=('SKIP') +source=("git+https://gitlab.gnome.org/GNOME/gobject-introspection.git#commit=$_commit"; +warnlib.diff) +sha512sums=('SKIP' + 'f9cf08b83a6f220923f7b538877a152ab90bebb6703e5026badc9852a69131b9c17e1d4dda89f9f5b6d8fb58a17780bd87d9c3bf66f5b8a9260f4f6debf4') pkgver() { cd $pkgbase @@ -23,6 +25,8 @@ prepare() { cd $pkgbase + # GJS needs warnlib to build + patch -Np1 -i ../warnlib.diff } build() { Added: warnlib.diff === --- warnlib.diff(rev 0) +++ warnlib.diff2018-09-04 21:13:12 UTC (rev 50) @@ -0,0 +1,13 @@ +diff --git i/tests/meson.build w/tests/meson.build +index 71cd97fe..18cc0807 100644 +--- i/tests/meson.build w/tests/meson.build +@@ -8,6 +8,8 @@ test_regress_incdirs = include_directories(['.', 'scanner']) + installed_sources = [ + 'scanner/regress.c', + 'scanner/regress.h', ++ 'scanner/warnlib.c', ++ 'scanner/warnlib.h', + 'gimarshallingtests.c', + 'gimarshallingtests.h', + 'gitestmacros.h',
[arch-commits] Commit in jadx/repos/community-any (PKGBUILD PKGBUILD)
Date: Tuesday, September 4, 2018 @ 21:13:23 Author: anthraxx Revision: 376904 archrelease: copy trunk to community-any Added: jadx/repos/community-any/PKGBUILD (from rev 376903, jadx/trunk/PKGBUILD) Deleted: jadx/repos/community-any/PKGBUILD --+ PKGBUILD | 81 ++--- 1 file changed, 40 insertions(+), 41 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-04 21:13:14 UTC (rev 376903) +++ PKGBUILD2018-09-04 21:13:23 UTC (rev 376904) @@ -1,41 +0,0 @@ -# Maintainer: Levente Polyak -# Contributor: Nicolas Hureau - -pkgname=jadx -pkgver=0.8.0 -pkgrel=1 -pkgdesc='Command line and GUI tools to produce Java source code from Android Dex and APK files' -url='https://github.com/skylot/jadx' -arch=('any') -license=('Apache') -depends=('java-runtime=8' 'bash' 'fontconfig' 'xorg-font-utils') -makedepends=('java-environment=8' 'gradle') -source=(${pkgname}-${pkgver}.tar.gz::https://github.com/skylot/${pkgname}/archive/v${pkgver}.tar.gz) -sha512sums=('bea4937c9e2912378d70922bc13e19e493ba8a5423332afa0c731bae9c307f5ec3c442227aed2d3ebba23b626ea460edd1fdc11cf74a2ba52b8e9d6e4e5b979b') - -build() { - cd ${pkgname}-${pkgver} - gradle dist -} - -check() { - cd ${pkgname}-${pkgver} - gradle test -} - -package() { - cd ${pkgname}-${pkgver}/build/jadx - - install -Dm 755 bin/jadx -t "${pkgdir}/usr/share/java/${pkgname}/bin" - install -Dm 755 bin/jadx-gui -t "${pkgdir}/usr/share/java/${pkgname}/bin" - install -Dm 644 lib/* -t "${pkgdir}/usr/share/java/${pkgname}/lib" - - install -d "${pkgdir}/usr/bin" - ln -s /usr/share/java/${pkgname}/bin/jadx "${pkgdir}/usr/bin/jadx" - ln -s /usr/share/java/${pkgname}/bin/jadx-gui "${pkgdir}/usr/bin/jadx-gui" - - install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" - install -Dm 644 NOTICE README.md -t "${pkgdir}/usr/share/doc/${pkgname}" -} - -# vim: ts=2 sw=2 et: Copied: jadx/repos/community-any/PKGBUILD (from rev 376903, jadx/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-04 21:13:23 UTC (rev 376904) @@ -0,0 +1,40 @@ +# Maintainer: Levente Polyak +# Contributor: Nicolas Hureau + +pkgname=jadx +pkgver=0.8.0 +pkgrel=1 +pkgdesc='Command line and GUI tools to produce Java source code from Android Dex and APK files' +url='https://github.com/skylot/jadx' +arch=('any') +license=('Apache') +depends=('java-runtime=8' 'bash' 'fontconfig' 'xorg-font-utils') +makedepends=('java-environment=8' 'gradle') +source=(${pkgname}-${pkgver}.tar.gz::https://github.com/skylot/${pkgname}/archive/v${pkgver}.tar.gz) +sha512sums=('bea4937c9e2912378d70922bc13e19e493ba8a5423332afa0c731bae9c307f5ec3c442227aed2d3ebba23b626ea460edd1fdc11cf74a2ba52b8e9d6e4e5b979b') + +build() { + cd ${pkgname}-${pkgver} + gradle dist +} + +check() { + cd ${pkgname}-${pkgver} + gradle test +} + +package() { + cd ${pkgname}-${pkgver}/build/jadx + + install -Dm 755 bin/{jadx,jadx-gui} -t "${pkgdir}/usr/share/java/${pkgname}/bin" + install -Dm 644 lib/* -t "${pkgdir}/usr/share/java/${pkgname}/lib" + + install -d "${pkgdir}/usr/bin" + ln -s /usr/share/java/${pkgname}/bin/jadx "${pkgdir}/usr/bin/jadx" + ln -s /usr/share/java/${pkgname}/bin/jadx-gui "${pkgdir}/usr/bin/jadx-gui" + + install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" + install -Dm 644 NOTICE README.md -t "${pkgdir}/usr/share/doc/${pkgname}" +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in jadx/repos/community-any (PKGBUILD PKGBUILD)
Date: Tuesday, September 4, 2018 @ 21:07:37 Author: anthraxx Revision: 376902 archrelease: copy trunk to community-any Added: jadx/repos/community-any/PKGBUILD (from rev 376901, jadx/trunk/PKGBUILD) Deleted: jadx/repos/community-any/PKGBUILD --+ PKGBUILD | 83 ++--- 1 file changed, 41 insertions(+), 42 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-04 21:07:29 UTC (rev 376901) +++ PKGBUILD2018-09-04 21:07:37 UTC (rev 376902) @@ -1,42 +0,0 @@ -# Maintainer: Levente Polyak -# Contributor: Nicolas Hureau - -pkgname=jadx -pkgver=0.6.1 -pkgrel=1 -pkgdesc='Command line and GUI tools to produce Java source code from Android Dex and APK files' -url='https://github.com/skylot/jadx' -arch=('any') -license=('Apache') -depends=('java-runtime' 'bash' 'fontconfig' 'xorg-font-utils') -makedepends=('java-environment' 'gradle') -source=(${pkgname}-${pkgver}.tar.gz::https://github.com/skylot/${pkgname}/archive/v${pkgver}.tar.gz) -sha512sums=('05b62710164d4062ff3cd15529b571fa6c0d4aeb9466ec54c4ccc9985dbcce6d6ef4f22b18a6ce1a795a87ed917da199043c3b56a2f6e7984af6b371d0d99705') - -build() { - cd ${pkgname}-${pkgver} - gradle --gradle-user-home=. dist -} - -check() { - cd ${pkgname}-${pkgver} - gradle --gradle-user-home=. test -} - -package() { - cd ${pkgname}-${pkgver}/build/jadx - - install -Dm 755 bin/jadx "${pkgdir}/usr/share/java/${pkgname}/bin/jadx" - install -Dm 755 bin/jadx-gui "${pkgdir}/usr/share/java/${pkgname}/bin/jadx-gui" - install -Dm 644 lib/* -t "${pkgdir}/usr/share/java/${pkgname}/lib" - - install -d "${pkgdir}/usr/bin" - ln -s /usr/share/java/${pkgname}/bin/jadx "${pkgdir}/usr/bin/jadx" - ln -s /usr/share/java/${pkgname}/bin/jadx-gui "${pkgdir}/usr/bin/jadx-gui" - - install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - install -Dm 644 NOTICE "${pkgdir}/usr/share/doc/${pkgname}/NOTICE" - install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md" -} - -# vim: ts=2 sw=2 et: Copied: jadx/repos/community-any/PKGBUILD (from rev 376901, jadx/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-04 21:07:37 UTC (rev 376902) @@ -0,0 +1,41 @@ +# Maintainer: Levente Polyak +# Contributor: Nicolas Hureau + +pkgname=jadx +pkgver=0.8.0 +pkgrel=1 +pkgdesc='Command line and GUI tools to produce Java source code from Android Dex and APK files' +url='https://github.com/skylot/jadx' +arch=('any') +license=('Apache') +depends=('java-runtime=8' 'bash' 'fontconfig' 'xorg-font-utils') +makedepends=('java-environment=8' 'gradle') +source=(${pkgname}-${pkgver}.tar.gz::https://github.com/skylot/${pkgname}/archive/v${pkgver}.tar.gz) +sha512sums=('bea4937c9e2912378d70922bc13e19e493ba8a5423332afa0c731bae9c307f5ec3c442227aed2d3ebba23b626ea460edd1fdc11cf74a2ba52b8e9d6e4e5b979b') + +build() { + cd ${pkgname}-${pkgver} + gradle dist +} + +check() { + cd ${pkgname}-${pkgver} + gradle test +} + +package() { + cd ${pkgname}-${pkgver}/build/jadx + + install -Dm 755 bin/jadx -t "${pkgdir}/usr/share/java/${pkgname}/bin" + install -Dm 755 bin/jadx-gui -t "${pkgdir}/usr/share/java/${pkgname}/bin" + install -Dm 644 lib/* -t "${pkgdir}/usr/share/java/${pkgname}/lib" + + install -d "${pkgdir}/usr/bin" + ln -s /usr/share/java/${pkgname}/bin/jadx "${pkgdir}/usr/bin/jadx" + ln -s /usr/share/java/${pkgname}/bin/jadx-gui "${pkgdir}/usr/bin/jadx-gui" + + install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" + install -Dm 644 NOTICE README.md -t "${pkgdir}/usr/share/doc/${pkgname}" +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in jadx/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 21:07:29 Author: anthraxx Revision: 376901 upgpkg: jadx 0.8.0-1 Modified: jadx/trunk/PKGBUILD --+ PKGBUILD | 21 ++--- 1 file changed, 10 insertions(+), 11 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 21:03:46 UTC (rev 376900) +++ PKGBUILD2018-09-04 21:07:29 UTC (rev 376901) @@ -2,32 +2,32 @@ # Contributor: Nicolas Hureau pkgname=jadx -pkgver=0.6.1 +pkgver=0.8.0 pkgrel=1 pkgdesc='Command line and GUI tools to produce Java source code from Android Dex and APK files' url='https://github.com/skylot/jadx' arch=('any') license=('Apache') -depends=('java-runtime' 'bash' 'fontconfig' 'xorg-font-utils') -makedepends=('java-environment' 'gradle') +depends=('java-runtime=8' 'bash' 'fontconfig' 'xorg-font-utils') +makedepends=('java-environment=8' 'gradle') source=(${pkgname}-${pkgver}.tar.gz::https://github.com/skylot/${pkgname}/archive/v${pkgver}.tar.gz) -sha512sums=('05b62710164d4062ff3cd15529b571fa6c0d4aeb9466ec54c4ccc9985dbcce6d6ef4f22b18a6ce1a795a87ed917da199043c3b56a2f6e7984af6b371d0d99705') +sha512sums=('bea4937c9e2912378d70922bc13e19e493ba8a5423332afa0c731bae9c307f5ec3c442227aed2d3ebba23b626ea460edd1fdc11cf74a2ba52b8e9d6e4e5b979b') build() { cd ${pkgname}-${pkgver} - gradle --gradle-user-home=. dist + gradle dist } check() { cd ${pkgname}-${pkgver} - gradle --gradle-user-home=. test + gradle test } package() { cd ${pkgname}-${pkgver}/build/jadx - install -Dm 755 bin/jadx "${pkgdir}/usr/share/java/${pkgname}/bin/jadx" - install -Dm 755 bin/jadx-gui "${pkgdir}/usr/share/java/${pkgname}/bin/jadx-gui" + install -Dm 755 bin/jadx -t "${pkgdir}/usr/share/java/${pkgname}/bin" + install -Dm 755 bin/jadx-gui -t "${pkgdir}/usr/share/java/${pkgname}/bin" install -Dm 644 lib/* -t "${pkgdir}/usr/share/java/${pkgname}/lib" install -d "${pkgdir}/usr/bin" @@ -34,9 +34,8 @@ ln -s /usr/share/java/${pkgname}/bin/jadx "${pkgdir}/usr/bin/jadx" ln -s /usr/share/java/${pkgname}/bin/jadx-gui "${pkgdir}/usr/bin/jadx-gui" - install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - install -Dm 644 NOTICE "${pkgdir}/usr/share/doc/${pkgname}/NOTICE" - install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md" + install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" + install -Dm 644 NOTICE README.md -t "${pkgdir}/usr/share/doc/${pkgname}" } # vim: ts=2 sw=2 et:
[arch-commits] Commit in python-bluepy/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 21:03:38 Author: anthraxx Revision: 376899 upgpkg: python-bluepy 1.2.0-1 Modified: python-bluepy/trunk/PKGBUILD --+ PKGBUILD | 12 1 file changed, 8 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 20:56:25 UTC (rev 376898) +++ PKGBUILD2018-09-04 21:03:38 UTC (rev 376899) @@ -3,8 +3,8 @@ _pyname=bluepy-v pkgbase=python-bluepy pkgname=('python-bluepy' 'python2-bluepy') -pkgver=1.1.4 -pkgrel=2 +pkgver=1.2.0 +pkgrel=1 pkgdesc='Python module for interfacing with Bluetooth LE devices through Bluez' url='https://github.com/IanHarvey/bluepy' arch=('x86_64') @@ -14,8 +14,8 @@ 'python2' 'python2-setuptools' 'python2-sphinx') options=('!makeflags') source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/IanHarvey/bluepy/archive/v/${pkgver}.tar.gz) -sha256sums=('55495d1c4b308199d4f648bb9c6a1b9ac636a279d55e142c62fa490727054620') -sha512sums=('39ae486dab32c88a3c0a0ca8ba9b96be0682ea6c1ba56a5e58de873e2c1364066ddbe0f32bdd1a42a0e9bbadd6d9fe2e951868d15ebff5c1fff0c5b8132f6b25') +sha256sums=('e3e2e4817818a095e5972ea69f57f7614d94c0dd2f106ac1f7958c8da1ef9389') +sha512sums=('99d2ec8eb3a84aa9ed63d7a7c4f8b99d21aa756e14cd3af5976869f701033bf12dcc89628f3dfbd2b2eeb72c7d87e524326098f2645e1b1329c3af5a397a9dac') prepare() { (cd ${_pyname}-${pkgver} @@ -48,11 +48,13 @@ package_python-bluepy() { depends=('python' 'python-setuptools' 'bluez' 'glib2') cd ${_pyname}-${pkgver} + # install python setup.py install --root="${pkgdir}" --prefix=/usr -O1 --skip-build install -Dm 644 README.md docs/_build/text/*.txt -t "${pkgdir}/usr/share/doc/${pkgname}" install -Dm 644 docs/_build/man/bluepy.1 "${pkgdir}/usr/share/man/man1/${pkgname}.1" install -Dm 755 bluepy/bluepy-helper -t "${pkgdir}"/usr/lib/python*/site-packages/bluepy + # cleanup rm "${pkgdir}"/usr/lib/python*/site-packages/bluepy/{bluez-src.tgz,Makefile,bluepy-helper.c} } @@ -60,11 +62,13 @@ package_python2-bluepy() { depends=('python2' 'python2-setuptools' 'bluez' 'glib2') cd ${_pyname}-${pkgver}-py2 + # install python2 setup.py install --root="${pkgdir}" --prefix=/usr -O1 --skip-build install -Dm 644 README.md docs/_build/text/*.txt -t "${pkgdir}/usr/share/doc/${pkgname}" install -Dm 644 docs/_build/man/bluepy.1 "${pkgdir}/usr/share/man/man1/${pkgname}.1" install -Dm 755 bluepy/bluepy-helper -t "${pkgdir}"/usr/lib/python*/site-packages/bluepy + # cleanup rm "${pkgdir}"/usr/lib/python*/site-packages/bluepy/{bluez-src.tgz,Makefile,bluepy-helper.c} for prog in blescan sensortag thingy52; do
[arch-commits] Commit in python-bluepy/repos/community-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, September 4, 2018 @ 21:03:46 Author: anthraxx Revision: 376900 archrelease: copy trunk to community-x86_64 Added: python-bluepy/repos/community-x86_64/PKGBUILD (from rev 376899, python-bluepy/trunk/PKGBUILD) Deleted: python-bluepy/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 154 +++-- 1 file changed, 79 insertions(+), 75 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-04 21:03:38 UTC (rev 376899) +++ PKGBUILD2018-09-04 21:03:46 UTC (rev 376900) @@ -1,75 +0,0 @@ -# Maintainer: Levente Polyak - -_pyname=bluepy-v -pkgbase=python-bluepy -pkgname=('python-bluepy' 'python2-bluepy') -pkgver=1.1.4 -pkgrel=2 -pkgdesc='Python module for interfacing with Bluetooth LE devices through Bluez' -url='https://github.com/IanHarvey/bluepy' -arch=('x86_64') -license=('GPL2') -makedepends=('bluez' 'glib2' - 'python' 'python-setuptools' 'python-sphinx' - 'python2' 'python2-setuptools' 'python2-sphinx') -options=('!makeflags') -source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/IanHarvey/bluepy/archive/v/${pkgver}.tar.gz) -sha256sums=('55495d1c4b308199d4f648bb9c6a1b9ac636a279d55e142c62fa490727054620') -sha512sums=('39ae486dab32c88a3c0a0ca8ba9b96be0682ea6c1ba56a5e58de873e2c1364066ddbe0f32bdd1a42a0e9bbadd6d9fe2e951868d15ebff5c1fff0c5b8132f6b25') - -prepare() { - (cd ${_pyname}-${pkgver} -sed 's|CFLAGS =|CFLAGS +=|g' -i bluepy/Makefile -sed 's|CPPFLAGS =|CPPFLAGS +=|g' -i bluepy/Makefile -sed 's| $(LDLIBS)| $(LDFLAGS) $(LDLIBS)|g' -i bluepy/Makefile - ) - cp -a ${_pyname}-${pkgver}{,-py2} - (cd ${_pyname}-${pkgver}-py2 -sed 's|env python$|env python2|g' -i bluepy/*.py -sed 's|/usr/bin/python$|/usr/bin/python2|g' -i bluepy/*.py - ) -} - -build() { - msg2 "Building python..." - (cd ${_pyname}-${pkgver} -python setup.py build -make -C bluepy -make -C docs man text SPHINXBUILD=sphinx-build - ) - msg2 "Building python2..." - (cd ${_pyname}-${pkgver}-py2 -python2 setup.py build -make -C bluepy -make -C docs man text SPHINXBUILD=sphinx-build2 - ) -} - -package_python-bluepy() { - depends=('python' 'python-setuptools' 'bluez' 'glib2') - cd ${_pyname}-${pkgver} - # install - python setup.py install --root="${pkgdir}" --prefix=/usr -O1 --skip-build - install -Dm 644 README.md docs/_build/text/*.txt -t "${pkgdir}/usr/share/doc/${pkgname}" - install -Dm 644 docs/_build/man/bluepy.1 "${pkgdir}/usr/share/man/man1/${pkgname}.1" - install -Dm 755 bluepy/bluepy-helper -t "${pkgdir}"/usr/lib/python*/site-packages/bluepy - # cleanup - rm "${pkgdir}"/usr/lib/python*/site-packages/bluepy/{bluez-src.tgz,Makefile,bluepy-helper.c} -} - -package_python2-bluepy() { - depends=('python2' 'python2-setuptools' 'bluez' 'glib2') - cd ${_pyname}-${pkgver}-py2 - # install - python2 setup.py install --root="${pkgdir}" --prefix=/usr -O1 --skip-build - install -Dm 644 README.md docs/_build/text/*.txt -t "${pkgdir}/usr/share/doc/${pkgname}" - install -Dm 644 docs/_build/man/bluepy.1 "${pkgdir}/usr/share/man/man1/${pkgname}.1" - install -Dm 755 bluepy/bluepy-helper -t "${pkgdir}"/usr/lib/python*/site-packages/bluepy - # cleanup - rm "${pkgdir}"/usr/lib/python*/site-packages/bluepy/{bluez-src.tgz,Makefile,bluepy-helper.c} - for prog in blescan sensortag thingy52; do -mv "${pkgdir}/usr/bin/${prog}"{,-py2} - done -} - -# vim: ts=2 sw=2 et: Copied: python-bluepy/repos/community-x86_64/PKGBUILD (from rev 376899, python-bluepy/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-04 21:03:46 UTC (rev 376900) @@ -0,0 +1,79 @@ +# Maintainer: Levente Polyak + +_pyname=bluepy-v +pkgbase=python-bluepy +pkgname=('python-bluepy' 'python2-bluepy') +pkgver=1.2.0 +pkgrel=1 +pkgdesc='Python module for interfacing with Bluetooth LE devices through Bluez' +url='https://github.com/IanHarvey/bluepy' +arch=('x86_64') +license=('GPL2') +makedepends=('bluez' 'glib2' + 'python' 'python-setuptools' 'python-sphinx' + 'python2' 'python2-setuptools' 'python2-sphinx') +options=('!makeflags') +source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/IanHarvey/bluepy/archive/v/${pkgver}.tar.gz) +sha256sums=('e3e2e4817818a095e5972ea69f57f7614d94c0dd2f106ac1f7958c8da1ef9389') +sha512sums=('99d2ec8eb3a84aa9ed63d7a7c4f8b99d21aa756e14cd3af5976869f701033bf12dcc89628f3dfbd2b2eeb72c7d87e524326098f2645e1b1329c3af5a397a9dac') + +prepare() { + (cd ${_pyname}-${pkgver} +sed 's|CFLAGS =|CFLAGS +=|g' -i bluepy/Makefile +sed 's|CPPFLAGS =|CPPFLAGS +=|g' -i bluepy/Makefile +sed 's| $(LDLIBS)| $(LDFLAGS) $(LDLIBS)|g' -i bluepy/Makefile + ) + cp -a ${_pyname}-${pkgver}{,-py2} + (cd ${_pyname}-${pkgver}-py2 +sed 's|env python$|env python2|g' -i bluepy/*.py +sed 's|/usr/bin/pytho
[arch-commits] Commit in gnome-bluetooth/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 21:01:54 Author: heftig Revision: 49 Id Modified: gnome-bluetooth/trunk/PKGBUILD(contents, properties) --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 20:53:16 UTC (rev 48) +++ PKGBUILD2018-09-04 21:01:54 UTC (rev 49) @@ -1,4 +1,4 @@ -# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) # Contributor: Ionut Biru # Contributor: Roman Kyrylych Property changes on: gnome-bluetooth/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in umurmur/repos (4 files)
Date: Tuesday, September 4, 2018 @ 20:56:25 Author: anthraxx Revision: 376898 archrelease: copy trunk to community-staging-x86_64 Added: umurmur/repos/community-staging-x86_64/ umurmur/repos/community-staging-x86_64/PKGBUILD (from rev 376897, umurmur/trunk/PKGBUILD) umurmur/repos/community-staging-x86_64/umurmur.service (from rev 376897, umurmur/trunk/umurmur.service) umurmur/repos/community-staging-x86_64/umurmur.sysusers (from rev 376897, umurmur/trunk/umurmur.sysusers) --+ PKGBUILD | 50 ++ umurmur.service | 15 +++ umurmur.sysusers |1 + 3 files changed, 66 insertions(+) Copied: umurmur/repos/community-staging-x86_64/PKGBUILD (from rev 376897, umurmur/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-09-04 20:56:25 UTC (rev 376898) @@ -0,0 +1,50 @@ +# Maintainer: Levente Polyak +# Contributor: Bartłomiej Piotrowski +# Contributor: Robert Knauer +# Contributor: xav + +pkgname=umurmur +pkgver=0.2.17 +pkgrel=11 +pkgdesc='Minimalistic Mumble server' +url='https://github.com/umurmur/umurmur' +arch=('x86_64') +license=('custom') +depends=('mbedtls' 'libconfig' 'protobuf-c') +makedepends=('cmake') +backup=('etc/umurmur/umurmur.conf') +source=(${pkgname}-${pkgver}.tar.gz::https://github.com/umurmur/umurmur/archive/${pkgver}.tar.gz +umurmur.sysusers +umurmur.service) +sha256sums=('e77b7b6616768f4a1c07442afe49a772692f667b00c23cc85909d4dd0ce206d2' +'0fc68df464ee51a431d934d068aed0be5f8c5e64d0bd29848f97532d39f8c310' +'3575e69da5ad1fc8541ef37af90cdd245e3202980589ffd26d124fd9e785b738') +sha512sums=('a496a51fd7815ad117f5aee17bb78cbd319c584ad60ab8aebbfd8ddf7b1760f443f2337bc74be1e0d5af17d3c3df2ae6c9060eca576cf1e6ed4c6cb0825e9c15' + 'd84950a32ab8a2e84f5fe333cd2894e52aba624531644d106c982aa4ff04271d318543398fa7f48c719f26338679fa971bb5332472e9040ac9aa8a9b4a1f2832' + 'ceb42e7ed4385d16c9d9f30312cc5a57b0ee0ba0ec423e7e2f3e9abc1956506e8817e9a3cb2257112434d568594f4e495f1661af0f89451f802f924790df8ffa') + +prepare() { + cd ${pkgname}-${pkgver} + mkdir build +} + +build() { + cd ${pkgname}-${pkgver}/build + cmake .. \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DSSL=mbedtls + make +} + +package() { + cd ${pkgname}-${pkgver} + make -C build DESTDIR="${pkgdir}" install + install -Dm 644 "${pkgdir}/usr/etc/umurmur.conf" -t "${pkgdir}/etc/umurmur" + rm -r "${pkgdir}/usr/etc" + install -Dm 644 "${srcdir}/umurmur.service" -t "${pkgdir}/usr/lib/systemd/system" + install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" + + install -Dm 644 "${srcdir}/umurmur.sysusers" "${pkgdir}/usr/lib/sysusers.d/umurmur.conf" +} + +# vim: ts=2 sw=2 et: Copied: umurmur/repos/community-staging-x86_64/umurmur.service (from rev 376897, umurmur/trunk/umurmur.service) === --- community-staging-x86_64/umurmur.service(rev 0) +++ community-staging-x86_64/umurmur.service2018-09-04 20:56:25 UTC (rev 376898) @@ -0,0 +1,15 @@ +[Unit] +Description=Minimalistic Mumble server +After=network.target + +[Service] +Type=simple +User=umurmur +Group=umurmur +PIDFile=/run/umurmurd.pid +ExecStartPre=/usr/bin/umurmurd -t -c /etc/umurmur/umurmur.conf +ExecStart=/usr/bin/umurmurd -d -r -p /run/umurmurd.pid -c /etc/umurmur/umurmur.conf +ExecReload=/bin/kill -HUP $MAINPID + +[Install] +WantedBy=multi-user.target Copied: umurmur/repos/community-staging-x86_64/umurmur.sysusers (from rev 376897, umurmur/trunk/umurmur.sysusers) === --- community-staging-x86_64/umurmur.sysusers (rev 0) +++ community-staging-x86_64/umurmur.sysusers 2018-09-04 20:56:25 UTC (rev 376898) @@ -0,0 +1 @@ +u umurmur - - -
[arch-commits] Commit in umurmur/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 20:56:18 Author: anthraxx Revision: 376897 upgpkg: umurmur 0.2.17-11 (protobuf rebuild) Modified: umurmur/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 20:53:35 UTC (rev 376896) +++ PKGBUILD2018-09-04 20:56:18 UTC (rev 376897) @@ -5,7 +5,7 @@ pkgname=umurmur pkgver=0.2.17 -pkgrel=10 +pkgrel=11 pkgdesc='Minimalistic Mumble server' url='https://github.com/umurmur/umurmur' arch=('x86_64')
[arch-commits] Commit in python-multidict/repos/community-x86_64 (PKGBUILD PKGBUILD)
Date: Tuesday, September 4, 2018 @ 20:53:35 Author: anthraxx Revision: 376896 archrelease: copy trunk to community-x86_64 Added: python-multidict/repos/community-x86_64/PKGBUILD (from rev 376895, python-multidict/trunk/PKGBUILD) Deleted: python-multidict/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 68 ++--- 1 file changed, 34 insertions(+), 34 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-09-04 20:53:26 UTC (rev 376895) +++ PKGBUILD2018-09-04 20:53:35 UTC (rev 376896) @@ -1,34 +0,0 @@ -# Maintainer: Levente Polyak -# Contributor: renek - -_pkgname=multidict -pkgname=python-${_pkgname} -pkgver=4.3.1 -pkgrel=2 -pkgdesc='Asyncio-based multidict implementation for Python' -url='https://github.com/aio-libs/multidict' -arch=('x86_64') -license=('APACHE') -depends=('python' 'glibc') -makedepends=('cython' 'python-setuptools') -checkdepends=('python-pytest' 'python-pytest-cov' 'python-pytest-runner' 'python-psutil' 'python-perf') -source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aio-libs/multidict/archive/v${pkgver}.tar.gz) -sha256sums=('2d4f7249a11bd4387e2bbb8a29267be927db86b50d1beff9c0f6b53e00d81a65') -sha512sums=('1b475836c776fdc4f14882df41f9956ab06afac7b640e3f5ae3c50717f2b07267acbae2fa3e94cf8c5650273d4d7ce44329c0febea95046ee27d98db9288') - -build() { - cd ${_pkgname}-${pkgver} - python setup.py build -} - -check() { - cd ${_pkgname}-${pkgver} - python setup.py test -} - -package() { - cd ${_pkgname}-${pkgver} - python setup.py install --root="${pkgdir}" -O1 --skip-build -} - -# vim: ts=2 sw=2 et: Copied: python-multidict/repos/community-x86_64/PKGBUILD (from rev 376895, python-multidict/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-09-04 20:53:35 UTC (rev 376896) @@ -0,0 +1,34 @@ +# Maintainer: Levente Polyak +# Contributor: renek + +_pkgname=multidict +pkgname=python-${_pkgname} +pkgver=4.4.0 +pkgrel=1 +pkgdesc='Asyncio-based multidict implementation for Python' +url='https://github.com/aio-libs/multidict' +arch=('x86_64') +license=('APACHE') +depends=('python' 'glibc') +makedepends=('cython' 'python-setuptools') +checkdepends=('python-pytest' 'python-pytest-cov' 'python-pytest-runner' 'python-psutil' 'python-perf') +source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aio-libs/multidict/archive/v${pkgver}.tar.gz) +sha256sums=('d2346c1ee53b352f3e51e80c14400853d13a32c01c497375ded16082fde97211') +sha512sums=('87350e298b2f9ccea08d884d41404fac7b47c5818ebb76059680e69df77dce05f6d2d18b24872ef5c846a383b7a81e0c36f44c69f19ff3d4f14881a4f88fb048') + +build() { + cd ${_pkgname}-${pkgver} + python setup.py build +} + +check() { + cd ${_pkgname}-${pkgver} + python setup.py test +} + +package() { + cd ${_pkgname}-${pkgver} + python setup.py install --root="${pkgdir}" -O1 --skip-build +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in python-multidict/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 20:53:26 Author: anthraxx Revision: 376895 upgpkg: python-multidict 4.4.0-1 Modified: python-multidict/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 20:51:30 UTC (rev 376894) +++ PKGBUILD2018-09-04 20:53:26 UTC (rev 376895) @@ -3,8 +3,8 @@ _pkgname=multidict pkgname=python-${_pkgname} -pkgver=4.3.1 -pkgrel=2 +pkgver=4.4.0 +pkgrel=1 pkgdesc='Asyncio-based multidict implementation for Python' url='https://github.com/aio-libs/multidict' arch=('x86_64') @@ -13,8 +13,8 @@ makedepends=('cython' 'python-setuptools') checkdepends=('python-pytest' 'python-pytest-cov' 'python-pytest-runner' 'python-psutil' 'python-perf') source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aio-libs/multidict/archive/v${pkgver}.tar.gz) -sha256sums=('2d4f7249a11bd4387e2bbb8a29267be927db86b50d1beff9c0f6b53e00d81a65') -sha512sums=('1b475836c776fdc4f14882df41f9956ab06afac7b640e3f5ae3c50717f2b07267acbae2fa3e94cf8c5650273d4d7ce44329c0febea95046ee27d98db9288') +sha256sums=('d2346c1ee53b352f3e51e80c14400853d13a32c01c497375ded16082fde97211') +sha512sums=('87350e298b2f9ccea08d884d41404fac7b47c5818ebb76059680e69df77dce05f6d2d18b24872ef5c846a383b7a81e0c36f44c69f19ff3d4f14881a4f88fb048') build() { cd ${_pkgname}-${pkgver}
[arch-commits] Commit in gcr/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 20:53:16 Author: heftig Revision: 48 Id Modified: gcr/trunk/PKGBUILD(contents, properties) --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 20:51:54 UTC (rev 47) +++ PKGBUILD2018-09-04 20:53:16 UTC (rev 48) @@ -1,4 +1,4 @@ -# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) # Contributor: Ionut Biru pkgname=gcr Property changes on: gcr/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property
[arch-commits] Commit in accountsservice/trunk (PKGBUILD)
Date: Tuesday, September 4, 2018 @ 20:51:54 Author: heftig Revision: 47 Id,source Modified: accountsservice/trunk/PKGBUILD(contents, properties) --+ PKGBUILD |5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-09-04 20:36:41 UTC (rev 46) +++ PKGBUILD2018-09-04 20:51:54 UTC (rev 47) @@ -1,4 +1,3 @@ -# $Id$ # Maintainer: Jan Alexander Steffens (heftig) # Contributor: Ionut Biru @@ -6,13 +5,13 @@ pkgver=0.6.50 pkgrel=1 pkgdesc="D-Bus interface for user account query and manipulation" -url="https://www.freedesktop.org/software/accountsservice/"; +url="https://gitlab.freedesktop.org/accountsservice/accountsservice"; arch=(x86_64) license=(GPL3) depends=(glib2 polkit systemd) makedepends=(intltool gtk-doc gobject-introspection git) _commit=f49ca6475643a0dad62ad98af9673b43858d1610 # tags/0.6.50^0 -source=("git+https://anongit.freedesktop.org/git/accountsservice#commit=$_commit";) +source=("git+https://gitlab.freedesktop.org/accountsservice/accountsservice.git#commit=$_commit";) sha256sums=('SKIP') pkgver() { Property changes on: accountsservice/trunk/PKGBUILD ___ Deleted: svn:keywords ## -1 +0,0 ## -Id \ No newline at end of property