[arch-commits] Commit in hdparm/repos (6 files)

2017-03-08 Thread Tobias Powalowski
Date: Thursday, March 9, 2017 @ 07:58:12
  Author: tpowa
Revision: 290176

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  hdparm/repos/testing-i686/
  hdparm/repos/testing-i686/PKGBUILD
(from rev 290175, hdparm/trunk/PKGBUILD)
  hdparm/repos/testing-i686/wiper.sh.2_6.max-ranges.patch
(from rev 290175, hdparm/trunk/wiper.sh.2_6.max-ranges.patch)
  hdparm/repos/testing-x86_64/
  hdparm/repos/testing-x86_64/PKGBUILD
(from rev 290175, hdparm/trunk/PKGBUILD)
  hdparm/repos/testing-x86_64/wiper.sh.2_6.max-ranges.patch
(from rev 290175, hdparm/trunk/wiper.sh.2_6.max-ranges.patch)

--+
 testing-i686/PKGBUILD|   44 +
 testing-i686/wiper.sh.2_6.max-ranges.patch   |   84 +
 testing-x86_64/PKGBUILD  |   44 +
 testing-x86_64/wiper.sh.2_6.max-ranges.patch |   84 +
 4 files changed, 256 insertions(+)

Copied: hdparm/repos/testing-i686/PKGBUILD (from rev 290175, 
hdparm/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-09 07:58:12 UTC (rev 290176)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Paul Mattal 
+
+pkgname=hdparm
+pkgver=9.51
+pkgrel=1
+pkgdesc="A shell utility for manipulating Linux IDE drive/driver parameters"
+arch=(i686 x86_64)
+depends=('glibc')
+optdepends=('sh: required by idectl and ultrabayd')
+source=(http://downloads.sourceforge.net/sourceforge/hdparm/${pkgname}-${pkgver}.tar.gz
+wiper.sh.2_6.max-ranges.patch)
+license=('BSD')
+url="http://sourceforge.net/projects/hdparm/;
+optdepends=('bash: for wiper.sh script')
+options=('emptydirs')
+md5sums=('8fe0a71db02f7ffc602d14a69f766cff'
+ '74e368f384166a7710b447573cda120a')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # Fix Range input/output error when wiping Intel G2 and OCZ drives
+  patch -Np1 -i $srcdir/wiper.sh.2_6.max-ranges.patch
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # install
+  mkdir -p ${pkgdir}/usr/bin
+  make DESTDIR=${pkgdir} sbindir=/usr/bin install
+  install -m755 contrib/idectl ${pkgdir}/usr/bin
+  install -m755 contrib/ultrabayd ${pkgdir}/usr/bin
+
+  install -D -m 0644 $srcdir/$pkgname-$pkgver/wiper/README.txt 
$pkgdir/usr/share/doc/wiper/README.txt
+  install -D -m 0755 $srcdir/$pkgname-$pkgver/wiper/wiper.sh 
$pkgdir/usr/bin/wiper.sh
+
+  #install license file
+  install -D -m 644 LICENSE.TXT $pkgdir/usr/share/licenses/hdparm/LICENSE.TXT
+}

Copied: hdparm/repos/testing-i686/wiper.sh.2_6.max-ranges.patch (from rev 
290175, hdparm/trunk/wiper.sh.2_6.max-ranges.patch)
===
--- testing-i686/wiper.sh.2_6.max-ranges.patch  (rev 0)
+++ testing-i686/wiper.sh.2_6.max-ranges.patch  2017-03-09 07:58:12 UTC (rev 
290176)
@@ -0,0 +1,84 @@
+--- hdparm-9.28/wiper/wiper.sh.orig2010-03-09 06:17:37.0 -0800
+--- hdparm-9.28/wiper/wiper.sh 2010-05-15 03:08:02.182856971 -0700
+@@ -29,7 +29,7 @@
+ function usage_error(){
+   echo >&2
+   echo "Linux tune-up (TRIM) utility for SATA SSDs"
+-  echo "Usage:  $0 [--verbose] [--commit] " >&2
++  echo "Usage:  $0 [--max-ranges ] [--verbose] [--commit] 
" >&2
+   echo "   Eg:  $0 /dev/sda1" >&2
+   echo >&2
+   exit 1
+@@ -44,6 +44,7 @@
+ 
+ export verbose=0
+ commit=""
++max_ranges=-1
+ destroy_me=""
+ argc=$#
+ arg=""
+@@ -51,6 +52,10 @@
+   commit=yes
+   elif [ "$1" = "--verbose" ]; then
+   verbose=$((verbose + 1))
++  elif [ "$1" = "--max-ranges" -a $argc -gt 1 ]; then
++  max_ranges=$2
++  argc=$((argc - 1))
++  shift
+   elif [ "$1" = "" ]; then
+   usage_error
+   else
+@@ -499,6 +550,18 @@
+   fi
+ fi
+ 
++## Different SSD's have a different maximum number of ranges they'll accept
++## in a single TRIM command.
++if [ $max_ranges -le 0 ] ; then
++  model=`$HDPARM -I $rawdev | $GAWK '/Model Number/ { print $NF }'`
++  case "$model" in
++  SSDSA[12]*)  max_ranges=512 ;;  # Intel X18-M/X25-M
++  OCZ-VERTEX2) max_ranges=64 ;;   # OCZ Vertex2
++  *)   max_ranges=65535
++  esac
++fi
++[ $verbose -gt 0 ] && echo "max-ranges = $max_ranges"
++
+ ## All ready.  Now let the user know exactly what we intend to do:
+ ##
+ mountstatus="$fstype non-mounted"
+@@ -608,7 +671,7 @@
+   nsectors += count;
+   while (count > 0) {
+   this_count  = (count > 65535) ? 65535 : count
+-  printf "%u:%u ", lba, this_count
++  printf "%u:%u \n", lba, this_count
+  

[arch-commits] Commit in hdparm/trunk (PKGBUILD)

2017-03-08 Thread Tobias Powalowski
Date: Thursday, March 9, 2017 @ 07:57:53
  Author: tpowa
Revision: 290175

upgpkg: hdparm 9.51-1

bump to latest release

Modified:
  hdparm/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 07:55:27 UTC (rev 290174)
+++ PKGBUILD2017-03-09 07:57:53 UTC (rev 290175)
@@ -2,7 +2,7 @@
 # Maintainer: Paul Mattal 
 
 pkgname=hdparm
-pkgver=9.50
+pkgver=9.51
 pkgrel=1
 pkgdesc="A shell utility for manipulating Linux IDE drive/driver parameters"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 url="http://sourceforge.net/projects/hdparm/;
 optdepends=('bash: for wiper.sh script')
 options=('emptydirs')
-md5sums=('d380062ad6c4b40076736efbb640f1f5'
+md5sums=('8fe0a71db02f7ffc602d14a69f766cff'
  '74e368f384166a7710b447573cda120a')
 
 prepare() {


[arch-commits] Commit in efibootmgr/repos (6 files)

2017-03-08 Thread Tobias Powalowski
Date: Thursday, March 9, 2017 @ 07:55:27
  Author: tpowa
Revision: 290174

archrelease: copy trunk to testing-x86_64, testing-i686

Added:
  efibootmgr/repos/testing-i686/
  efibootmgr/repos/testing-i686/PKGBUILD
(from rev 290173, efibootmgr/trunk/PKGBUILD)
  efibootmgr/repos/testing-i686/efibootmgr-tilt_slashes-func.patch
(from rev 290173, efibootmgr/trunk/efibootmgr-tilt_slashes-func.patch)
  efibootmgr/repos/testing-x86_64/
  efibootmgr/repos/testing-x86_64/PKGBUILD
(from rev 290173, efibootmgr/trunk/PKGBUILD)
  efibootmgr/repos/testing-x86_64/efibootmgr-tilt_slashes-func.patch
(from rev 290173, efibootmgr/trunk/efibootmgr-tilt_slashes-func.patch)

---+
 testing-i686/PKGBUILD |   53 +
 testing-i686/efibootmgr-tilt_slashes-func.patch   |   61 
 testing-x86_64/PKGBUILD   |   53 +
 testing-x86_64/efibootmgr-tilt_slashes-func.patch |   61 
 4 files changed, 228 insertions(+)

Copied: efibootmgr/repos/testing-i686/PKGBUILD (from rev 290173, 
efibootmgr/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-09 07:55:27 UTC (rev 290174)
@@ -0,0 +1,53 @@
+# Maintainer: Tobias Powalowski 
+# Contributor: Murtuza Akhtari 
+# Contributor: Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)>
+
+pkgname="efibootmgr"
+pkgdesc="Tool to modify UEFI Firmware Boot Manager Variables"
+pkgver=15
+pkgrel=1
+arch=('x86_64' 'i686')
+url="https://github.com/rhinstaller/efibootmgr;
+license=('GPL2')
+makedepends=('git')
+depends=('pciutils' 'efivar' 'zlib')
+options=('strip' 'zipman' 'docs' '!emptydirs')
+
+source=("efibootmgr::git+https://github.com/rhinstaller/efibootmgr.git#tag=${pkgver};)
+#source=("efibootmgr::git+https://github.com/rhinstaller/efibootmgr.git#commit=5e9700c2252eed45f4568f3a7c08c866c2c83c0b;)
+sha1sums=('SKIP')
+
+pkgver() {
+   cd "${srcdir}/efibootmgr/"
+   echo "$(git describe --tags)" | sed -e 's|efibootmgr-||g' -e 's|-|\.|g'
+}
+
+prepare() {
+   
+   cd "${srcdir}/efibootmgr/"
+   
+   git clean -x -d -f
+   echo
+   
+}
+
+build() {
+   
+   cd "${srcdir}/efibootmgr/"
+   
+   make EXTRA_CFLAGS="-Os" EFIDIR="/boot/EFI"
+   echo
+   
+}
+
+package() {
+   
+   cd "${srcdir}/efibootmgr/"
+   
+   install -d "${pkgdir}/usr/bin/"
+   install -D -m0755 "${srcdir}/efibootmgr/src/efibootmgr" 
"${pkgdir}/usr/bin/efibootmgr"
+   
+   install -d "${pkgdir}/usr/share/man/man8/"
+   install -D -m0644 "${srcdir}/efibootmgr/src/efibootmgr.8" 
"${pkgdir}/usr/share/man/man8/efibootmgr.8"
+   
+}

Copied: efibootmgr/repos/testing-i686/efibootmgr-tilt_slashes-func.patch (from 
rev 290173, efibootmgr/trunk/efibootmgr-tilt_slashes-func.patch)
===
--- testing-i686/efibootmgr-tilt_slashes-func.patch 
(rev 0)
+++ testing-i686/efibootmgr-tilt_slashes-func.patch 2017-03-09 07:55:27 UTC 
(rev 290174)
@@ -0,0 +1,61 @@
+diff --git a/src/efibootmgr/efibootmgr.c b/src/efibootmgr/efibootmgr.c
+index 236365a..9883961 100644
+--- a/src/efibootmgr/efibootmgr.c
 b/src/efibootmgr/efibootmgr.c
+@@ -803,6 +803,7 @@ usage()
+   printf("\t-V | --version  return version and exit\n");
+   printf("\t-w | --write-signature  write unique sig to MBR if needed\n");
+   printf("\t-@ | --append-binary-args file  append extra args from file 
(use \"-\" for stdin)\n");
++  printf("\t   | --help show help/usage\n");
+ }
+ 
+ static void
+@@ -863,6 +864,7 @@ parse_opts(int argc, char **argv)
+   {"version",no_argument, 0, 'V'},
+   {"write-signature",no_argument, 0, 'w'},
+   {"append-binary-args", required_argument, 0, '@'},
++  {"help",   no_argument, 0,   2},
+   {0, 0, 0, 0}
+   };
+ 
+@@ -1014,6 +1016,10 @@ parse_opts(int argc, char **argv)
+   opts.write_signature = 1;
+   break;
+ 
++  case 2:
++  usage();
++  exit(1);
++
+   default:
+   usage();
+   exit(1);
+diff --git a/src/lib/efi.c b/src/lib/efi.c
+index a4ce5cf..8ef8be8 100644
+--- a/src/lib/efi.c
 b/src/lib/efi.c
+@@ -70,6 +70,16 @@ efi_guid_unparse(efi_guid_t *guid, char *out)
+ return out;
+ }
+ 
++char *
++tilt_slashes(char *s)
++{
++  char *p;
++  for (p = s; *p; p++)
++  if (*p == '/')
++  *p = '\\';
++  return s;
++}
++
+ void
+ 

[arch-commits] Commit in efibootmgr/trunk (PKGBUILD)

2017-03-08 Thread Tobias Powalowski
Date: Thursday, March 9, 2017 @ 07:55:03
  Author: tpowa
Revision: 290173

upgpkg: efibootmgr 15-1

bump to latest release

Modified:
  efibootmgr/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 07:49:48 UTC (rev 290172)
+++ PKGBUILD2017-03-09 07:55:03 UTC (rev 290173)
@@ -4,8 +4,8 @@
 
 pkgname="efibootmgr"
 pkgdesc="Tool to modify UEFI Firmware Boot Manager Variables"
-pkgver=14
-pkgrel=2
+pkgver=15
+pkgrel=1
 arch=('x86_64' 'i686')
 url="https://github.com/rhinstaller/efibootmgr;
 license=('GPL2')
@@ -35,7 +35,7 @@

cd "${srcdir}/efibootmgr/"

-   make EXTRA_CFLAGS="-Os"
+   make EXTRA_CFLAGS="-Os" EFIDIR="/boot/EFI"
echo

 }


[arch-commits] Commit in idris/repos (6 files)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 07:50:20
  Author: felixonmars
Revision: 215365

archrelease: copy trunk to community-i686, community-x86_64

Added:
  idris/repos/community-i686/PKGBUILD
(from rev 215364, idris/trunk/PKGBUILD)
  idris/repos/community-x86_64/PKGBUILD
(from rev 215364, idris/trunk/PKGBUILD)
Deleted:
  idris/repos/community-i686/PKGBUILD
  idris/repos/community-i686/datadir.patch
  idris/repos/community-x86_64/PKGBUILD
  idris/repos/community-x86_64/datadir.patch

+
 /PKGBUILD  |   86 +++
 community-i686/PKGBUILD|   49 --
 community-i686/datadir.patch   |   84 --
 community-x86_64/PKGBUILD  |   49 --
 community-x86_64/datadir.patch |   84 --
 5 files changed, 86 insertions(+), 266 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-09 07:49:38 UTC (rev 215364)
+++ community-i686/PKGBUILD 2017-03-09 07:50:20 UTC (rev 215365)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=idris
-pkgver=0.99
-pkgrel=30
-pkgdesc="Functional Programming Language with Dependent Types"
-url="http://www.idris-lang.org/;
-license=("custom:BSD3")
-arch=('i686' 'x86_64')
-depends=('gmp' 'libffi' 'zlib' 'gcc')
-makedepends=("ghc=8.0.1" "git" "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
- "haskell-ansi-wl-pprint" "haskell-async" 
"haskell-base64-bytestring"
- "haskell-blaze-html" "haskell-blaze-markup" "haskell-cheapskate" 
"haskell-fingertree"
- "haskell-fsnotify" "haskell-ieee754" "haskell-mtl" 
"haskell-libffi" "haskell-network"
- "haskell-optparse-applicative" "haskell-parsers" 
"haskell-regex-tdfa"
- "haskell-safe" "haskell-split" "haskell-terminal-size" 
"haskell-text"
- "haskell-transformers-compat" "haskell-trifecta" 
"haskell-uniplate"
- "haskell-unordered-containers" "haskell-utf8-string" 
"haskell-vector"
- "haskell-vector-binary-instances" "haskell-zip-archive")
-source=("git+https://github.com/idris-lang/Idris-dev.git#tag=v$pkgver;
-datadir.patch)
-sha256sums=('SKIP'
-'e7cf290770a7ee08cc4089eccf23a7501300d70e85df03d84652b3045d568371')
-
-prepare() {
-sed -i 's/, safe == 0.3.9/, safe >= 0.3.9/' Idris-dev/${pkgname}.cabal
-
-cd Idris-dev
-# https://github.com/idris-lang/Idris-dev/issues/3544
-patch -p1 -i ../datadir.patch
-}
-
-build() {
-cd "${srcdir}/Idris-dev"
-
-runhaskell Setup configure -O --enable-library-profiling --enable-shared \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
---libsubdir=\$compiler/site-local/\$pkgid \
--fFFI -fGMP -frelease -f-freestanding -f-CI -f-execonly
-LC_CTYPE=en_US.UTF-8 runhaskell Setup build
-}
-
-package() {
-cd "${srcdir}/Idris-dev"
-runhaskell Setup copy --destdir="${pkgdir}"
-rm -r "$pkgdir"/usr/{lib,share/doc}
-}

Copied: idris/repos/community-i686/PKGBUILD (from rev 215364, 
idris/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-09 07:50:20 UTC (rev 215365)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=0.99.1
+pkgrel=1
+pkgdesc="Functional Programming Language with Dependent Types"
+url="http://www.idris-lang.org/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib' 'gcc')
+makedepends=("ghc=8.0.1" "git" "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-ansi-wl-pprint" "haskell-async" 
"haskell-base64-bytestring"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-cheapskate" 
"haskell-code-page"
+ "haskell-fingertree" "haskell-fsnotify" "haskell-ieee754" 
"haskell-mtl"
+ "haskell-libffi" "haskell-network" "haskell-optparse-applicative" 
"haskell-parsers"
+ "haskell-regex-tdfa" "haskell-safe" "haskell-split" 
"haskell-terminal-size"
+ "haskell-text" "haskell-transformers-compat" "haskell-trifecta" 
"haskell-uniplate"
+ "haskell-unordered-containers" "haskell-utf8-string" 
"haskell-vector"
+ "haskell-vector-binary-instances" "haskell-zip-archive")
+source=("git+https://github.com/idris-lang/Idris-dev.git#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+sed -i 's/, safe == 0.3.9/, safe >= 0.3.9/' Idris-dev/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/Idris-dev"
+
+runhaskell 

[arch-commits] Commit in efivar/repos (4 files)

2017-03-08 Thread Tobias Powalowski
Date: Thursday, March 9, 2017 @ 07:49:48
  Author: tpowa
Revision: 290172

archrelease: copy trunk to testing-x86_64, testing-i686

Added:
  efivar/repos/testing-i686/
  efivar/repos/testing-i686/PKGBUILD
(from rev 290171, efivar/trunk/PKGBUILD)
  efivar/repos/testing-x86_64/
  efivar/repos/testing-x86_64/PKGBUILD
(from rev 290171, efivar/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   59 ++
 testing-x86_64/PKGBUILD |   59 ++
 2 files changed, 118 insertions(+)

Copied: efivar/repos/testing-i686/PKGBUILD (from rev 290171, 
efivar/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-09 07:49:48 UTC (rev 290172)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer : Tobias Powalowski 
+# Contributor : Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)>
+
+pkgname="efivar"
+pkgdesc="Tools and library to manipulate EFI variables"
+pkgver=31
+pkgrel=1
+arch=('x86_64' 'i686')
+url="https://github.com/rhinstaller/efivar;
+license=('LGPL2.1')
+makedepends=('git')
+depends=('popt')
+conflicts=('libefivar')
+provides=("libefivar=${pkgver}")
+options=('strip' 'zipman' 'docs')
+source=("efivar::git+https://github.com/rhinstaller/efivar.git#tag=${pkgver};)
+#source=("efivar::git+https://github.com/rhinstaller/efivar.git#commit=8740389dded9202167007508670daefd33a7985f;)
+sha1sums=('SKIP')
+
+pkgver() {
+   cd "${srcdir}/efivar/"
+   echo "$(git describe --tags)" | sed -e 's|efivar-||g' -e 's|-|\.|g'
+}
+
+prepare() {
+   
+   cd "${srcdir}/efivar/"
+   
+   git clean -x -d -f
+   echo
+   
+   sed 's|-O0|-Os|g' -i "${srcdir}/efivar/Make.defaults" || true
+   sed 's|-rpath,$(TOPDIR)/src|-rpath,$(libdir)|g' -i 
"${srcdir}/efivar/src/test/Makefile" || true
+}
+
+build() {
+   
+   cd "${srcdir}/efivar/"
+   CFLAGS="${CFLAGS} -flto"
+   
+   make libdir="/usr/lib/" bindir="/usr/bin/" mandir="/usr/share/man/" 
includedir="/usr/include/" V=1 -j1
+cd "${srcdir}/efivar/src/test"
+make libdir="/usr/lib/" bindir="/usr/bin/" mandir="/usr/share/man/" 
includedir="/usr/include/" V=1 -j1
+   echo
+   
+}
+
+package() {
+   
+   cd "${srcdir}/efivar/"
+   
+   make -j1 V=1 DESTDIR="${pkgdir}/" libdir="/usr/lib/" bindir="/usr/bin/" 
mandir="/usr/share/man/" includedir="/usr/include/" install
+   echo
+   
+   install -d "${pkgdir}/usr/bin"
+   install -D -m0755 "${srcdir}/efivar/src/test/tester" 
"${pkgdir}/usr/bin/efivar-tester"
+   
+}

Copied: efivar/repos/testing-x86_64/PKGBUILD (from rev 290171, 
efivar/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-03-09 07:49:48 UTC (rev 290172)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer : Tobias Powalowski 
+# Contributor : Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)>
+
+pkgname="efivar"
+pkgdesc="Tools and library to manipulate EFI variables"
+pkgver=31
+pkgrel=1
+arch=('x86_64' 'i686')
+url="https://github.com/rhinstaller/efivar;
+license=('LGPL2.1')
+makedepends=('git')
+depends=('popt')
+conflicts=('libefivar')
+provides=("libefivar=${pkgver}")
+options=('strip' 'zipman' 'docs')
+source=("efivar::git+https://github.com/rhinstaller/efivar.git#tag=${pkgver};)
+#source=("efivar::git+https://github.com/rhinstaller/efivar.git#commit=8740389dded9202167007508670daefd33a7985f;)
+sha1sums=('SKIP')
+
+pkgver() {
+   cd "${srcdir}/efivar/"
+   echo "$(git describe --tags)" | sed -e 's|efivar-||g' -e 's|-|\.|g'
+}
+
+prepare() {
+   
+   cd "${srcdir}/efivar/"
+   
+   git clean -x -d -f
+   echo
+   
+   sed 's|-O0|-Os|g' -i "${srcdir}/efivar/Make.defaults" || true
+   sed 's|-rpath,$(TOPDIR)/src|-rpath,$(libdir)|g' -i 
"${srcdir}/efivar/src/test/Makefile" || true
+}
+
+build() {
+   
+   cd "${srcdir}/efivar/"
+   CFLAGS="${CFLAGS} -flto"
+   
+   make libdir="/usr/lib/" bindir="/usr/bin/" mandir="/usr/share/man/" 
includedir="/usr/include/" V=1 -j1
+cd "${srcdir}/efivar/src/test"
+make libdir="/usr/lib/" bindir="/usr/bin/" mandir="/usr/share/man/" 
includedir="/usr/include/" V=1 -j1
+   echo
+   
+}
+
+package() {
+   
+   cd "${srcdir}/efivar/"
+   
+   make -j1 V=1 DESTDIR="${pkgdir}/" libdir="/usr/lib/" bindir="/usr/bin/" 
mandir="/usr/share/man/" includedir="/usr/include/" install
+   echo
+   
+   install -d "${pkgdir}/usr/bin"
+   install -D -m0755 "${srcdir}/efivar/src/test/tester" 
"${pkgdir}/usr/bin/efivar-tester"
+   
+}


[arch-commits] Commit in idris/trunk (PKGBUILD datadir.patch)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 07:49:38
  Author: felixonmars
Revision: 215364

upgpkg: idris 0.99.1-1

Modified:
  idris/trunk/PKGBUILD
Deleted:
  idris/trunk/datadir.patch

---+
 PKGBUILD  |   26 ++---
 datadir.patch |   84 
 2 files changed, 10 insertions(+), 100 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 07:41:28 UTC (rev 215363)
+++ PKGBUILD2017-03-09 07:49:38 UTC (rev 215364)
@@ -3,8 +3,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=idris
-pkgver=0.99
-pkgrel=30
+pkgver=0.99.1
+pkgrel=1
 pkgdesc="Functional Programming Language with Dependent Types"
 url="http://www.idris-lang.org/;
 license=("custom:BSD3")
@@ -12,29 +12,23 @@
 depends=('gmp' 'libffi' 'zlib' 'gcc')
 makedepends=("ghc=8.0.1" "git" "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
  "haskell-ansi-wl-pprint" "haskell-async" 
"haskell-base64-bytestring"
- "haskell-blaze-html" "haskell-blaze-markup" "haskell-cheapskate" 
"haskell-fingertree"
- "haskell-fsnotify" "haskell-ieee754" "haskell-mtl" 
"haskell-libffi" "haskell-network"
- "haskell-optparse-applicative" "haskell-parsers" 
"haskell-regex-tdfa"
- "haskell-safe" "haskell-split" "haskell-terminal-size" 
"haskell-text"
- "haskell-transformers-compat" "haskell-trifecta" 
"haskell-uniplate"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-cheapskate" 
"haskell-code-page"
+ "haskell-fingertree" "haskell-fsnotify" "haskell-ieee754" 
"haskell-mtl"
+ "haskell-libffi" "haskell-network" "haskell-optparse-applicative" 
"haskell-parsers"
+ "haskell-regex-tdfa" "haskell-safe" "haskell-split" 
"haskell-terminal-size"
+ "haskell-text" "haskell-transformers-compat" "haskell-trifecta" 
"haskell-uniplate"
  "haskell-unordered-containers" "haskell-utf8-string" 
"haskell-vector"
  "haskell-vector-binary-instances" "haskell-zip-archive")
-source=("git+https://github.com/idris-lang/Idris-dev.git#tag=v$pkgver;
-datadir.patch)
-sha256sums=('SKIP'
-'e7cf290770a7ee08cc4089eccf23a7501300d70e85df03d84652b3045d568371')
+source=("git+https://github.com/idris-lang/Idris-dev.git#tag=v$pkgver;)
+sha256sums=('SKIP')
 
 prepare() {
 sed -i 's/, safe == 0.3.9/, safe >= 0.3.9/' Idris-dev/${pkgname}.cabal
-
-cd Idris-dev
-# https://github.com/idris-lang/Idris-dev/issues/3544
-patch -p1 -i ../datadir.patch
 }
 
 build() {
 cd "${srcdir}/Idris-dev"
-
+
 runhaskell Setup configure -O --enable-library-profiling --enable-shared \
 --prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
 --libsubdir=\$compiler/site-local/\$pkgid \

Deleted: datadir.patch
===
--- datadir.patch   2017-03-09 07:41:28 UTC (rev 215363)
+++ datadir.patch   2017-03-09 07:49:38 UTC (rev 215364)
@@ -1,84 +0,0 @@
-From d1bc3fa3c704bc233f0036ea13204d7790d26477 Mon Sep 17 00:00:00 2001
-From: Jan de Muijnck-Hughes 
-Date: Mon, 5 Dec 2016 11:17:51 +
-Subject: [PATCH] Make fetching of data files more robust. Fixes #3544
-
-`getDataFileName` didn't take into account possible changes in Idris' datadir 
that were not cabal made. This fix adds a more robust variant of 
`getDataFileName`.

- src/IRTS/System.hs| 7 ++-
- src/Idris/IdrisDoc.hs | 4 ++--
- src/Idris/Info.hs | 5 +
- 3 files changed, 13 insertions(+), 3 deletions(-)
-
-diff --git a/src/IRTS/System.hs b/src/IRTS/System.hs
-index def563e..9d3d11a 100644
 a/src/IRTS/System.hs
-+++ b/src/IRTS/System.hs
-@@ -6,7 +6,7 @@ License : BSD3
- Maintainer  : The Idris Community.
- -}
- {-# LANGUAGE CPP #-}
--module IRTS.System( getDataFileName
-+module IRTS.System( getIdrisDataFileByName
-   , getCC
-   , getLibFlags
-   , getIdrisDataDir
-@@ -42,6 +42,11 @@ getIdrisDataDir = do
-   return ddir
- Just ddir -> return ddir
- 
-+getIdrisDataFileByName :: String -> IO FilePath
-+getIdrisDataFileByName fn = do
-+  dir <- getIdrisDataDir
-+  return $ dir  fn
-+
- overrideIdrisSubDirWith :: String  -- ^ Sub directory in `getDataDir` 
location.
- -> String  -- ^ Environment variable to get new 
location from.
- -> IO FilePath
-diff --git a/src/Idris/IdrisDoc.hs b/src/Idris/IdrisDoc.hs
-index 012554f..6c144ae 100644
 a/src/Idris/IdrisDoc.hs
-+++ b/src/Idris/IdrisDoc.hs
-@@ -19,7 +19,7 @@ import Idris.Docs
- import Idris.Docstrings (nullDocstring)
- import qualified Idris.Docstrings as Docstrings
- import Idris.Parser.Helpers (opChars)
--import IRTS.System (getDataFileName)
-+import IRTS.System (getIdrisDataFileByName)
- 
- 

[arch-commits] Commit in efivar/trunk (PKGBUILD)

2017-03-08 Thread Tobias Powalowski
Date: Thursday, March 9, 2017 @ 07:49:29
  Author: tpowa
Revision: 290171

upgpkg: efivar 31-1

bump to latest release

Modified:
  efivar/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 07:46:44 UTC (rev 290170)
+++ PKGBUILD2017-03-09 07:49:29 UTC (rev 290171)
@@ -4,7 +4,7 @@
 
 pkgname="efivar"
 pkgdesc="Tools and library to manipulate EFI variables"
-pkgver=30
+pkgver=31
 pkgrel=1
 arch=('x86_64' 'i686')
 url="https://github.com/rhinstaller/efivar;


[arch-commits] Commit in dosfstools/trunk (PKGBUILD)

2017-03-08 Thread Tobias Powalowski
Date: Thursday, March 9, 2017 @ 07:46:29
  Author: tpowa
Revision: 290169

upgpkg: dosfstools 4.1-1

bump to latest release

Modified:
  dosfstools/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 07:42:32 UTC (rev 290168)
+++ PKGBUILD2017-03-09 07:46:29 UTC (rev 290169)
@@ -2,8 +2,8 @@
 # Maintainer: dorphell 
 # Committer: Judd Vinet 
 pkgname=dosfstools
-pkgver=4.0
-pkgrel=3
+pkgver=4.1
+pkgrel=1
 pkgdesc="DOS filesystem utilities"
 arch=(i686 x86_64)
 depends=('glibc')
@@ -12,7 +12,7 @@
 url="https://github.com/dosfstools/dosfstools;
 license=('GPL2')
 validpgpkeys=('25714AECDBFDACEE1CE95FE77F6022516E869F64') # Andreas Bombe
-md5sums=('20f8388b99702f276c973d228c7cff45'
+md5sums=('07a1050db1a898e9a2e03b0c4569c4bd'
  'SKIP')
 
 prepare() {


[arch-commits] Commit in dosfstools/repos (4 files)

2017-03-08 Thread Tobias Powalowski
Date: Thursday, March 9, 2017 @ 07:46:44
  Author: tpowa
Revision: 290170

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  dosfstools/repos/testing-i686/
  dosfstools/repos/testing-i686/PKGBUILD
(from rev 290169, dosfstools/trunk/PKGBUILD)
  dosfstools/repos/testing-x86_64/
  dosfstools/repos/testing-x86_64/PKGBUILD
(from rev 290169, dosfstools/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   31 +++
 testing-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: dosfstools/repos/testing-i686/PKGBUILD (from rev 290169, 
dosfstools/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-09 07:46:44 UTC (rev 290170)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: dorphell 
+# Committer: Judd Vinet 
+pkgname=dosfstools
+pkgver=4.1
+pkgrel=1
+pkgdesc="DOS filesystem utilities"
+arch=(i686 x86_64)
+depends=('glibc')
+source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz{,.sig}
+)
+url="https://github.com/dosfstools/dosfstools;
+license=('GPL2')
+validpgpkeys=('25714AECDBFDACEE1CE95FE77F6022516E869F64') # Andreas Bombe
+md5sums=('07a1050db1a898e9a2e03b0c4569c4bd'
+ 'SKIP')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib --sbindir=/usr/bin 
--mandir=/usr/share/man --docdir=/usr/share/doc/dosfstools 
--enable-compat-symlinks
+}
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   make
+}
+
+package () {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+}

Copied: dosfstools/repos/testing-x86_64/PKGBUILD (from rev 290169, 
dosfstools/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-03-09 07:46:44 UTC (rev 290170)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: dorphell 
+# Committer: Judd Vinet 
+pkgname=dosfstools
+pkgver=4.1
+pkgrel=1
+pkgdesc="DOS filesystem utilities"
+arch=(i686 x86_64)
+depends=('glibc')
+source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz{,.sig}
+)
+url="https://github.com/dosfstools/dosfstools;
+license=('GPL2')
+validpgpkeys=('25714AECDBFDACEE1CE95FE77F6022516E869F64') # Andreas Bombe
+md5sums=('07a1050db1a898e9a2e03b0c4569c4bd'
+ 'SKIP')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib --sbindir=/usr/bin 
--mandir=/usr/share/man --docdir=/usr/share/doc/dosfstools 
--enable-compat-symlinks
+}
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   make
+}
+
+package () {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in xfsprogs/repos (4 files)

2017-03-08 Thread Tobias Powalowski
Date: Thursday, March 9, 2017 @ 07:42:32
  Author: tpowa
Revision: 290168

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  xfsprogs/repos/testing-i686/
  xfsprogs/repos/testing-i686/PKGBUILD
(from rev 290167, xfsprogs/trunk/PKGBUILD)
  xfsprogs/repos/testing-x86_64/
  xfsprogs/repos/testing-x86_64/PKGBUILD
(from rev 290167, xfsprogs/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   34 ++
 testing-x86_64/PKGBUILD |   34 ++
 2 files changed, 68 insertions(+)

Copied: xfsprogs/repos/testing-i686/PKGBUILD (from rev 290167, 
xfsprogs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-09 07:42:32 UTC (rev 290168)
@@ -0,0 +1,34 @@
+# $Id$
+#
+pkgname=xfsprogs
+pkgver=4.10.0
+pkgrel=1
+pkgdesc="XFS filesystem utilities"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://oss.sgi.com/projects/xfs/;
+groups=('base')
+depends=('libutil-linux')
+makedepends=('git')
+options=('!makeflags')
+source=("git://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git#tag=v${pkgver}")
+md5sums=('SKIP')
+
+build() {
+  cd "${srcdir}/${pkgname}-dev"
+  make configure
+  export OPTIMIZER="-march=${CARCH/_/-} -O1"
+  export DEBUG=-DNDEBUG
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-dev"
+  make DIST_ROOT="${pkgdir}" PKG_ROOT_SBIN_DIR="/usr/bin" install install-dev
+  chown -R root $pkgdir
+  chgrp -R root $pkgdir
+  # add hack as we cannot set rootlibdir
+  mv "${pkgdir}"/lib/libhandle.so* "${pkgdir}/usr/lib/"
+  rm -rf "${pkgdir}/lib"
+}

Copied: xfsprogs/repos/testing-x86_64/PKGBUILD (from rev 290167, 
xfsprogs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-03-09 07:42:32 UTC (rev 290168)
@@ -0,0 +1,34 @@
+# $Id$
+#
+pkgname=xfsprogs
+pkgver=4.10.0
+pkgrel=1
+pkgdesc="XFS filesystem utilities"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://oss.sgi.com/projects/xfs/;
+groups=('base')
+depends=('libutil-linux')
+makedepends=('git')
+options=('!makeflags')
+source=("git://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git#tag=v${pkgver}")
+md5sums=('SKIP')
+
+build() {
+  cd "${srcdir}/${pkgname}-dev"
+  make configure
+  export OPTIMIZER="-march=${CARCH/_/-} -O1"
+  export DEBUG=-DNDEBUG
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-dev"
+  make DIST_ROOT="${pkgdir}" PKG_ROOT_SBIN_DIR="/usr/bin" install install-dev
+  chown -R root $pkgdir
+  chgrp -R root $pkgdir
+  # add hack as we cannot set rootlibdir
+  mv "${pkgdir}"/lib/libhandle.so* "${pkgdir}/usr/lib/"
+  rm -rf "${pkgdir}/lib"
+}


[arch-commits] Commit in xfsprogs/trunk (PKGBUILD)

2017-03-08 Thread Tobias Powalowski
Date: Thursday, March 9, 2017 @ 07:42:16
  Author: tpowa
Revision: 290167

upgpkg: xfsprogs 4.10.0-1

bump to latest release

Modified:
  xfsprogs/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 04:55:16 UTC (rev 290166)
+++ PKGBUILD2017-03-09 07:42:16 UTC (rev 290167)
@@ -1,7 +1,7 @@
 # $Id$
 #
 pkgname=xfsprogs
-pkgver=4.9.0
+pkgver=4.10.0
 pkgrel=1
 pkgdesc="XFS filesystem utilities"
 arch=('i686' 'x86_64')


[arch-commits] Commit in vsftpd/repos (16 files)

2017-03-08 Thread Antonio Rojas
Date: Thursday, March 9, 2017 @ 07:41:28
  Author: arojas
Revision: 215363

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  vsftpd/repos/community-staging-i686/
  vsftpd/repos/community-staging-i686/PKGBUILD
(from rev 215362, vsftpd/trunk/PKGBUILD)
  vsftpd/repos/community-staging-i686/vsftpd-ssl.service
(from rev 215362, vsftpd/trunk/vsftpd-ssl.service)
  vsftpd/repos/community-staging-i686/vsftpd-ssl.socket
(from rev 215362, vsftpd/trunk/vsftpd-ssl.socket)
  vsftpd/repos/community-staging-i686/vsftpd-ssl@.service
(from rev 215362, vsftpd/trunk/vsftpd-ssl@.service)
  vsftpd/repos/community-staging-i686/vsftpd.service
(from rev 215362, vsftpd/trunk/vsftpd.service)
  vsftpd/repos/community-staging-i686/vsftpd.socket
(from rev 215362, vsftpd/trunk/vsftpd.socket)
  vsftpd/repos/community-staging-i686/vsftpd@.service
(from rev 215362, vsftpd/trunk/vsftpd@.service)
  vsftpd/repos/community-staging-x86_64/
  vsftpd/repos/community-staging-x86_64/PKGBUILD
(from rev 215362, vsftpd/trunk/PKGBUILD)
  vsftpd/repos/community-staging-x86_64/vsftpd-ssl.service
(from rev 215362, vsftpd/trunk/vsftpd-ssl.service)
  vsftpd/repos/community-staging-x86_64/vsftpd-ssl.socket
(from rev 215362, vsftpd/trunk/vsftpd-ssl.socket)
  vsftpd/repos/community-staging-x86_64/vsftpd-ssl@.service
(from rev 215362, vsftpd/trunk/vsftpd-ssl@.service)
  vsftpd/repos/community-staging-x86_64/vsftpd.service
(from rev 215362, vsftpd/trunk/vsftpd.service)
  vsftpd/repos/community-staging-x86_64/vsftpd.socket
(from rev 215362, vsftpd/trunk/vsftpd.socket)
  vsftpd/repos/community-staging-x86_64/vsftpd@.service
(from rev 215362, vsftpd/trunk/vsftpd@.service)

--+
 community-staging-i686/PKGBUILD  |   63 +
 community-staging-i686/vsftpd-ssl.service|   10 +++
 community-staging-i686/vsftpd-ssl.socket |9 +++
 community-staging-i686/vsftpd-ssl@.service   |9 +++
 community-staging-i686/vsftpd.service|   11 
 community-staging-i686/vsftpd.socket |9 +++
 community-staging-i686/vsftpd@.service   |8 +++
 community-staging-x86_64/PKGBUILD|   63 +
 community-staging-x86_64/vsftpd-ssl.service  |   10 +++
 community-staging-x86_64/vsftpd-ssl.socket   |9 +++
 community-staging-x86_64/vsftpd-ssl@.service |9 +++
 community-staging-x86_64/vsftpd.service  |   11 
 community-staging-x86_64/vsftpd.socket   |9 +++
 community-staging-x86_64/vsftpd@.service |8 +++
 14 files changed, 238 insertions(+)

Copied: vsftpd/repos/community-staging-i686/PKGBUILD (from rev 215362, 
vsftpd/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-09 07:41:28 UTC (rev 215363)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer:  Jonathan Steel 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andreas Radke 
+# Contributor: judd 
+
+pkgname=vsftpd
+pkgver=3.0.3
+pkgrel=3
+pkgdesc="Very Secure FTP daemon"
+arch=('i686' 'x86_64')
+url="https://security.appspot.com/vsftpd.html;
+license=('GPL2')
+depends=('libcap' 'pam')
+optdepends=('logrotate')
+backup=('etc/vsftpd.conf' 'etc/xinetd.d/vsftpd' "etc/logrotate.d/$pkgname")
+source=(https://security.appspot.com/downloads/$pkgname-$pkgver.tar.gz{,.asc}
+$pkgname-ssl.socket $pkgname.socket $pkgname.service
+$pkgname@.service $pkgname-ssl.service $pkgname-ssl@.service)
+md5sums=('da119d084bd3f98664636ea05b5bb398' 'SKIP'
+ 'fcef2cd7631f73a883a3c3d479b25cb8' 'd05045a1244a1be9f3946578bfd0252d'
+ '605e82df215a2f5dab1e1ee22b80460d' '32c9266536204fd8c4917c682b6359f1'
+ 'c899151c1dbec8ea9051fae4d701f0f3' '987349e5c5570c762fed9e87c0b4e715')
+validpgpkeys=('8660FD3291B184CDBC2F6418AA62EC463C0E751C') # Chris Evans
+
+build() {
+  cd $pkgname-$pkgver
+
+  # build-time config
+  sed \
+-e 's|^#undef VSF_BUILD_SSL$|#define VSF_BUILD_SSL|' \
+-i builddefs.h
+
+  # fix linking to openssl 1.1
+  sed -e 's|SSL_library_init|SSL_CTX_new|' -i vsf_findlibs.sh
+
+  CFLAGS+=' -fPIE' LINK='' LDFLAGS="-fPIE -pie ${LDFLAGS} -Wl,-z,now" make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -D -m755 $pkgname "$pkgdir"/usr/bin/$pkgname
+  install -D -m644 $pkgname.conf "$pkgdir"/etc/$pkgname.conf
+  install -D -m644 $pkgname.8 "$pkgdir"/usr/share/man/man8/$pkgname.8
+  install -D -m644 $pkgname.conf.5 "$pkgdir"/usr/share/man/man5/$pkgname.conf.5
+  install -D -m644 EXAMPLE/INTERNET_SITE/$pkgname.xinetd 
"$pkgdir"/etc/xinetd.d/$pkgname
+  install -D -m644 RedHat/$pkgname.log "$pkgdir"/etc/logrotate.d/$pkgname
+
+  install -D -m644 "$srcdir"/$pkgname.service 
"$pkgdir"/usr/lib/systemd/system/$pkgname.service
+  install -D -m644 

[arch-commits] Commit in vsftpd/trunk (PKGBUILD)

2017-03-08 Thread Antonio Rojas
Date: Thursday, March 9, 2017 @ 07:40:53
  Author: arojas
Revision: 215362

openssl 1.1 rebuild

Modified:
  vsftpd/trunk/PKGBUILD

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 07:29:16 UTC (rev 215361)
+++ PKGBUILD2017-03-09 07:40:53 UTC (rev 215362)
@@ -6,7 +6,7 @@
 
 pkgname=vsftpd
 pkgver=3.0.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Very Secure FTP daemon"
 arch=('i686' 'x86_64')
 url="https://security.appspot.com/vsftpd.html;
@@ -31,6 +31,9 @@
 -e 's|^#undef VSF_BUILD_SSL$|#define VSF_BUILD_SSL|' \
 -i builddefs.h
 
+  # fix linking to openssl 1.1
+  sed -e 's|SSL_library_init|SSL_CTX_new|' -i vsf_findlibs.sh
+
   CFLAGS+=' -fPIE' LINK='' LDFLAGS="-fPIE -pie ${LDFLAGS} -Wl,-z,now" make
 }
 


[arch-commits] Commit in perl-text-template/repos/community-any (PKGBUILD PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 07:29:16
  Author: felixonmars
Revision: 215361

archrelease: copy trunk to community-any

Added:
  perl-text-template/repos/community-any/PKGBUILD
(from rev 215360, perl-text-template/trunk/PKGBUILD)
Deleted:
  perl-text-template/repos/community-any/PKGBUILD

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-09 07:28:50 UTC (rev 215360)
+++ PKGBUILD2017-03-09 07:29:16 UTC (rev 215361)
@@ -1,31 +0,0 @@
-# $Id$
-# Contributor: Sébastien Luttringer 
-
-pkgname=perl-text-template
-pkgver=1.46
-pkgrel=2
-pkgdesc='Expand template text with embedded perl'
-arch=('any')
-url='http://search.cpan.org/dist/Text-Template'
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/M/MJ/MJD/Text-Template-$pkgver.tar.gz;)
-md5sums=('912ce180e05d99a169f20aaf4fbf8b8f')
-
-build() {
-  cd Text-Template-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd Text-Template-$pkgver
-  make test
-}
-
-package() {
-  cd Text-Template-$pkgver
-  make install DESTDIR="$pkgdir/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: perl-text-template/repos/community-any/PKGBUILD (from rev 215360, 
perl-text-template/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-09 07:29:16 UTC (rev 215361)
@@ -0,0 +1,31 @@
+# $Id$
+# Contributor: Sébastien Luttringer 
+
+pkgname=perl-text-template
+pkgver=1.47
+pkgrel=1
+pkgdesc='Expand template text with embedded perl'
+arch=('any')
+url='http://search.cpan.org/dist/Text-Template'
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+source=("http://search.cpan.org/CPAN/authors/id/M/MS/MSCHOUT/Text-Template-$pkgver.tar.gz;)
+md5sums=('8929caccface52375e162d200e328131')
+
+build() {
+  cd Text-Template-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Text-Template-$pkgver
+  make test
+}
+
+package() {
+  cd Text-Template-$pkgver
+  make install DESTDIR="$pkgdir/"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in perl-text-template/trunk (PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 07:28:50
  Author: felixonmars
Revision: 215360

upgpkg: perl-text-template 1.47-1

Modified:
  perl-text-template/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 07:14:58 UTC (rev 215359)
+++ PKGBUILD2017-03-09 07:28:50 UTC (rev 215360)
@@ -2,15 +2,15 @@
 # Contributor: Sébastien Luttringer 
 
 pkgname=perl-text-template
-pkgver=1.46
-pkgrel=2
+pkgver=1.47
+pkgrel=1
 pkgdesc='Expand template text with embedded perl'
 arch=('any')
 url='http://search.cpan.org/dist/Text-Template'
 license=('PerlArtistic' 'GPL')
 options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/M/MJ/MJD/Text-Template-$pkgver.tar.gz;)
-md5sums=('912ce180e05d99a169f20aaf4fbf8b8f')
+source=("http://search.cpan.org/CPAN/authors/id/M/MS/MSCHOUT/Text-Template-$pkgver.tar.gz;)
+md5sums=('8929caccface52375e162d200e328131')
 
 build() {
   cd Text-Template-$pkgver


[arch-commits] Commit in unbound/repos (12 files)

2017-03-08 Thread Antonio Rojas
Date: Thursday, March 9, 2017 @ 07:14:58
  Author: arojas
Revision: 215359

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  unbound/repos/community-staging-i686/
  unbound/repos/community-staging-i686/PKGBUILD
(from rev 215358, unbound/trunk/PKGBUILD)
  unbound/repos/community-staging-i686/conf
(from rev 215358, unbound/trunk/conf)
  unbound/repos/community-staging-i686/hook
(from rev 215358, unbound/trunk/hook)
  unbound/repos/community-staging-i686/install
(from rev 215358, unbound/trunk/install)
  unbound/repos/community-staging-i686/service
(from rev 215358, unbound/trunk/service)
  unbound/repos/community-staging-x86_64/
  unbound/repos/community-staging-x86_64/PKGBUILD
(from rev 215358, unbound/trunk/PKGBUILD)
  unbound/repos/community-staging-x86_64/conf
(from rev 215358, unbound/trunk/conf)
  unbound/repos/community-staging-x86_64/hook
(from rev 215358, unbound/trunk/hook)
  unbound/repos/community-staging-x86_64/install
(from rev 215358, unbound/trunk/install)
  unbound/repos/community-staging-x86_64/service
(from rev 215358, unbound/trunk/service)

---+
 community-staging-i686/PKGBUILD   |   61 
 community-staging-i686/conf   |5 ++
 community-staging-i686/hook   |   10 +
 community-staging-i686/install|5 ++
 community-staging-i686/service|   12 +++
 community-staging-x86_64/PKGBUILD |   61 
 community-staging-x86_64/conf |5 ++
 community-staging-x86_64/hook |   10 +
 community-staging-x86_64/install  |5 ++
 community-staging-x86_64/service  |   12 +++
 10 files changed, 186 insertions(+)

Copied: unbound/repos/community-staging-i686/PKGBUILD (from rev 215358, 
unbound/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-09 07:14:58 UTC (rev 215359)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Hisato Tatekura 
+# Contributor: Massimiliano Torromeo 
+
+pkgname=unbound
+pkgver=1.6.1
+pkgrel=2
+pkgdesc='Validating, recursive, and caching DNS resolver'
+url='https://unbound.net/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+makedepends=('expat')
+optdepends=('expat: unbound-anchor')
+depends=('openssl' 'ldns' 'libevent' 'dnssec-anchors')
+backup=('etc/unbound/unbound.conf')
+validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
+source=("https://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'service'
+'hook'
+'conf')
+sha256sums=('42df63f743c0fe8424aeafcf003ad4b880b46c14149d696057313f5c1ef51400'
+'SKIP'
+'9e48ac14f5a2de0e3e8186d85017ef09c097507202daaa91206acd47b7b45bcc'
+'8a00ed90370a5c99664205dc93eb8f2b88e6ffa42842d737fa9228dca670014c'
+'07d764f4f42adfba9685c5c7feef81116118f4a1772b118aa3ebbe059e8a513e')
+
+install=install
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   # Build against embedded flex instead of system one, see:
+   # https://www.nlnetlabs.nl/bugs-script/show_bug.cgi?id=1223
+   export LEX=:
+
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --disable-rpath \
+   --enable-pie \
+   --enable-relro-now \
+   --with-conf-file=/etc/unbound/unbound.conf \
+   --with-pidfile=/run/unbound.pid \
+   --with-rootkey-file=/etc/trusted-key.key \
+   --with-libevent \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -Dm644 doc/example.conf.in 
"${pkgdir}/etc/unbound/unbound.conf.example"
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+   install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/unbound.service"
+   install -Dm644 ../hook 
"${pkgdir}/usr/share/libalpm/hooks/unbound-key.hook"
+   install -Dm644 ../conf "${pkgdir}/etc/unbound/unbound.conf"
+}

Copied: unbound/repos/community-staging-i686/conf (from rev 215358, 
unbound/trunk/conf)
===
--- community-staging-i686/conf (rev 0)
+++ community-staging-i686/conf 2017-03-09 07:14:58 UTC (rev 215359)
@@ -0,0 +1,5 @@
+server:
+  use-syslog: yes
+  username: "unbound"
+  directory: "/etc/unbound"
+  trust-anchor-file: trusted-key.key

Copied: unbound/repos/community-staging-i686/hook (from rev 215358, 
unbound/trunk/hook)
===
--- community-staging-i686/hook 

[arch-commits] Commit in unbound/trunk (PKGBUILD)

2017-03-08 Thread Antonio Rojas
Date: Thursday, March 9, 2017 @ 07:14:12
  Author: arojas
Revision: 215358

openssl 1.1 rebuild

Modified:
  unbound/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 07:06:01 UTC (rev 215357)
+++ PKGBUILD2017-03-09 07:14:12 UTC (rev 215358)
@@ -5,7 +5,7 @@
 
 pkgname=unbound
 pkgver=1.6.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Validating, recursive, and caching DNS resolver'
 url='https://unbound.net/'
 license=('custom:BSD')


[arch-commits] Commit in nodejs/repos (4 files)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 07:06:01
  Author: felixonmars
Revision: 215357

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nodejs/repos/community-i686/PKGBUILD
(from rev 215356, nodejs/trunk/PKGBUILD)
  nodejs/repos/community-x86_64/PKGBUILD
(from rev 215356, nodejs/trunk/PKGBUILD)
Deleted:
  nodejs/repos/community-i686/PKGBUILD
  nodejs/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  142 
 community-i686/PKGBUILD   |   71 --
 community-x86_64/PKGBUILD |   71 --
 3 files changed, 142 insertions(+), 142 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-09 07:05:19 UTC (rev 215356)
+++ community-i686/PKGBUILD 2017-03-09 07:06:01 UTC (rev 215357)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor  Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: James Campos 
-# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Dongsheng Cai 
-# Contributor: Masutu Subric 
-# Contributor: TIanyi Cui 
-
-pkgname=nodejs
-pkgver=7.7.1
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares') # 'v8')
-makedepends=('python2' 'procps-ng' 'git')
-optdepends=('npm: nodejs package manager')
-source=("nodejs::git+https://github.com/nodejs/node.git#tag=v$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  cd nodejs
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
--e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd nodejs
-
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---shared-http-parser \
---shared-cares
-# --shared-v8
-
-  make
-}
-
-check() {
-  cd nodejs
-  # Expected failure: https://github.com/nodejs/node/issues/11627
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd nodejs
-
-  make DESTDIR="$pkgdir" install
-
-  install -D -m644 LICENSE \
-"$pkgdir"/usr/share/licenses/nodejs/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-i686/PKGBUILD (from rev 215356, 
nodejs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-09 07:06:01 UTC (rev 215357)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor  Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: James Campos 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Dongsheng Cai 
+# Contributor: Masutu Subric 
+# Contributor: TIanyi Cui 
+
+pkgname=nodejs
+pkgver=7.7.2
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares') # 'v8')
+makedepends=('python2' 'procps-ng' 'git')
+optdepends=('npm: nodejs package manager')
+source=("nodejs::git+https://github.com/nodejs/node.git#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  cd nodejs
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd nodejs
+
+  export PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--shared-http-parser \
+--shared-cares
+# --shared-v8
+
+  make
+}
+
+check() {
+  cd nodejs
+  # Expected failure: https://github.com/nodejs/node/issues/11627
+  make test || warning "Tests failed"
+}
+
+package() {
+  cd nodejs
+
+  make DESTDIR="$pkgdir" install
+
+  install -D -m644 LICENSE \
+"$pkgdir"/usr/share/licenses/nodejs/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD

[arch-commits] Commit in nodejs/trunk (PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 07:05:19
  Author: felixonmars
Revision: 215356

upgpkg: nodejs 7.7.2-1

Modified:
  nodejs/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 06:59:07 UTC (rev 215355)
+++ PKGBUILD2017-03-09 07:05:19 UTC (rev 215356)
@@ -9,7 +9,7 @@
 # Contributor: TIanyi Cui 
 
 pkgname=nodejs
-pkgver=7.7.1
+pkgver=7.7.2
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')


[arch-commits] Commit in uglify-js/repos/community-any (4 files)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 06:59:07
  Author: felixonmars
Revision: 215355

archrelease: copy trunk to community-any

Added:
  uglify-js/repos/community-any/PKGBUILD
(from rev 215354, uglify-js/trunk/PKGBUILD)
  uglify-js/repos/community-any/uglify-js.install
(from rev 215354, uglify-js/trunk/uglify-js.install)
Deleted:
  uglify-js/repos/community-any/PKGBUILD
  uglify-js/repos/community-any/uglify-js.install

---+
 PKGBUILD  |   58 ++--
 uglify-js.install |   16 +++---
 2 files changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-09 06:58:41 UTC (rev 215354)
+++ PKGBUILD2017-03-09 06:59:07 UTC (rev 215355)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Nagy 
-
-pkgname=uglify-js
-pkgver=2.8.9
-pkgrel=1
-pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
-arch=('any')
-url='http://lisperator.net/uglifyjs'
-license=('BSD')
-depends=('nodejs')
-makedepends=('npm')
-install=${pkgname}.install
-source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-md5sums=('72f486a52cfd1f5959a2aaf144482436')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-
-  # Fix npm derp
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-}
-
-# vim:set ts=2 sw=2 et:

Copied: uglify-js/repos/community-any/PKGBUILD (from rev 215354, 
uglify-js/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-09 06:59:07 UTC (rev 215355)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+
+pkgname=uglify-js
+pkgver=2.8.10
+pkgrel=1
+pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
+arch=('any')
+url='http://lisperator.net/uglifyjs'
+license=('BSD')
+depends=('nodejs')
+makedepends=('npm')
+install=${pkgname}.install
+source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+md5sums=('9f5558670ee049dbc3035a8dfd3319ef')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+
+  # Fix npm derp
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: uglify-js.install
===
--- uglify-js.install   2017-03-09 06:58:41 UTC (rev 215354)
+++ uglify-js.install   2017-03-09 06:59:07 UTC (rev 215355)
@@ -1,8 +0,0 @@
-post_install() {
-  # fixup permissions
-  chmod 755 /usr/lib/node_modules
-}
-
-post_upgrade() {
-  post_install
-}

Copied: uglify-js/repos/community-any/uglify-js.install (from rev 215354, 
uglify-js/trunk/uglify-js.install)
===
--- uglify-js.install   (rev 0)
+++ uglify-js.install   2017-03-09 06:59:07 UTC (rev 215355)
@@ -0,0 +1,8 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules
+}
+
+post_upgrade() {
+  post_install
+}


[arch-commits] Commit in uglify-js/trunk (PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 06:58:41
  Author: felixonmars
Revision: 215354

upgpkg: uglify-js 2.8.10-1

Modified:
  uglify-js/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 06:49:26 UTC (rev 215353)
+++ PKGBUILD2017-03-09 06:58:41 UTC (rev 215354)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Nagy 
 
 pkgname=uglify-js
-pkgver=2.8.9
+pkgver=2.8.10
 pkgrel=1
 pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
 arch=('any')
@@ -14,7 +14,7 @@
 install=${pkgname}.install
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-md5sums=('72f486a52cfd1f5959a2aaf144482436')
+md5sums=('9f5558670ee049dbc3035a8dfd3319ef')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


[arch-commits] Commit in libmongoc/repos (4 files)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 06:49:26
  Author: felixonmars
Revision: 215353

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libmongoc/repos/community-i686/PKGBUILD
(from rev 215352, libmongoc/trunk/PKGBUILD)
  libmongoc/repos/community-x86_64/PKGBUILD
(from rev 215352, libmongoc/trunk/PKGBUILD)
Deleted:
  libmongoc/repos/community-i686/PKGBUILD
  libmongoc/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   64 
 community-i686/PKGBUILD   |   32 --
 community-x86_64/PKGBUILD |   32 --
 3 files changed, 64 insertions(+), 64 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-09 06:44:25 UTC (rev 215352)
+++ community-i686/PKGBUILD 2017-03-09 06:49:26 UTC (rev 215353)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=libmongoc
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='A client library written in C for MongoDB'
-arch=('i686' 'x86_64')
-url='http://www.mongodb.org/display/DOCS/C+Language+Center'
-license=('Apache')
-depends=('libbson' 'libsasl')
-makedepends=('git')
-checkdepends=('python-pifpaf')
-checkdepends_x86_64=('mongodb')
-source=("git+https://github.com/mongodb/mongo-c-driver.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-build() {
-cd "$srcdir/mongo-c-driver"
-PTHREAD_LIBS=-pthread ./autogen.sh --prefix=/usr
-make
-}
-
-check() {
-cd "$srcdir/mongo-c-driver"
-pifpaf run mongodb --port 27017 make test || warning "Tests failed"
-}
-
-package() {
-cd "$srcdir/mongo-c-driver"
-make DESTDIR="$pkgdir/" install
-}

Copied: libmongoc/repos/community-i686/PKGBUILD (from rev 215352, 
libmongoc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-09 06:49:26 UTC (rev 215353)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=libmongoc
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='A client library written in C for MongoDB'
+arch=('i686' 'x86_64')
+url='http://www.mongodb.org/display/DOCS/C+Language+Center'
+license=('Apache')
+depends=('libbson' 'libsasl')
+makedepends=('git')
+checkdepends=('python-pifpaf')
+checkdepends_x86_64=('mongodb')
+source=("git+https://github.com/mongodb/mongo-c-driver.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+cd "$srcdir/mongo-c-driver"
+PTHREAD_LIBS=-pthread ./autogen.sh --prefix=/usr
+make
+}
+
+check() {
+cd "$srcdir/mongo-c-driver"
+pifpaf run mongodb --port 27017 make test || warning "Tests failed"
+}
+
+package() {
+cd "$srcdir/mongo-c-driver"
+make DESTDIR="$pkgdir/" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-09 06:44:25 UTC (rev 215352)
+++ community-x86_64/PKGBUILD   2017-03-09 06:49:26 UTC (rev 215353)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=libmongoc
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='A client library written in C for MongoDB'
-arch=('i686' 'x86_64')
-url='http://www.mongodb.org/display/DOCS/C+Language+Center'
-license=('Apache')
-depends=('libbson' 'libsasl')
-makedepends=('git')
-checkdepends=('python-pifpaf')
-checkdepends_x86_64=('mongodb')
-source=("git+https://github.com/mongodb/mongo-c-driver.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-build() {
-cd "$srcdir/mongo-c-driver"
-PTHREAD_LIBS=-pthread ./autogen.sh --prefix=/usr
-make
-}
-
-check() {
-cd "$srcdir/mongo-c-driver"
-pifpaf run mongodb --port 27017 make test || warning "Tests failed"
-}
-
-package() {
-cd "$srcdir/mongo-c-driver"
-make DESTDIR="$pkgdir/" install
-}

Copied: libmongoc/repos/community-x86_64/PKGBUILD (from rev 215352, 
libmongoc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-09 06:49:26 UTC (rev 215353)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=libmongoc
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='A client library written in C for MongoDB'
+arch=('i686' 'x86_64')
+url='http://www.mongodb.org/display/DOCS/C+Language+Center'
+license=('Apache')
+depends=('libbson' 'libsasl')
+makedepends=('git')
+checkdepends=('python-pifpaf')
+checkdepends_x86_64=('mongodb')
+source=("git+https://github.com/mongodb/mongo-c-driver.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+cd "$srcdir/mongo-c-driver"
+PTHREAD_LIBS=-pthread ./autogen.sh --prefix=/usr
+make
+}
+
+check() {
+cd "$srcdir/mongo-c-driver"
+pifpaf run mongodb --port 27017 make test || warning "Tests failed"
+}
+
+package() {
+cd 

[arch-commits] Commit in libmongoc/trunk (PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 06:44:25
  Author: felixonmars
Revision: 215352

upgpkg: libmongoc 1.6.1-1

Modified:
  libmongoc/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 06:39:29 UTC (rev 215351)
+++ PKGBUILD2017-03-09 06:44:25 UTC (rev 215352)
@@ -2,8 +2,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=libmongoc
-pkgver=1.6.0
-pkgrel=2
+pkgver=1.6.1
+pkgrel=1
 pkgdesc='A client library written in C for MongoDB'
 arch=('i686' 'x86_64')
 url='http://www.mongodb.org/display/DOCS/C+Language+Center'


[arch-commits] Commit in libbson/repos (4 files)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 06:39:29
  Author: felixonmars
Revision: 215351

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libbson/repos/community-i686/PKGBUILD
(from rev 215350, libbson/trunk/PKGBUILD)
  libbson/repos/community-x86_64/PKGBUILD
(from rev 215350, libbson/trunk/PKGBUILD)
Deleted:
  libbson/repos/community-i686/PKGBUILD
  libbson/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   54 
 community-i686/PKGBUILD   |   27 --
 community-x86_64/PKGBUILD |   27 --
 3 files changed, 54 insertions(+), 54 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-09 06:38:47 UTC (rev 215350)
+++ community-i686/PKGBUILD 2017-03-09 06:39:29 UTC (rev 215351)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Tyler Brock 
-# Contributor: monty 
-
-pkgname=libbson
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='A BSON utility library.'
-arch=('i686' 'x86_64')
-url='http://www.mongodb.org/display/DOCS/C+Language+Center'
-license=('Apache')
-depends=('glibc')
-makedepends=('python' 'git')
-source=("git+https://github.com/mongodb/$pkgname.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-build() {
-cd "$srcdir/$pkgname"
-./autogen.sh --prefix=/usr
-make
-}
-
-package() {
-cd "$srcdir/$pkgname"
-make DESTDIR="$pkgdir/" install
-}

Copied: libbson/repos/community-i686/PKGBUILD (from rev 215350, 
libbson/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-09 06:39:29 UTC (rev 215351)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Tyler Brock 
+# Contributor: monty 
+
+pkgname=libbson
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='A BSON utility library.'
+arch=('i686' 'x86_64')
+url='http://www.mongodb.org/display/DOCS/C+Language+Center'
+license=('Apache')
+depends=('glibc')
+makedepends=('python' 'git')
+source=("git+https://github.com/mongodb/$pkgname.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+cd "$srcdir/$pkgname"
+./autogen.sh --prefix=/usr
+make
+}
+
+package() {
+cd "$srcdir/$pkgname"
+make DESTDIR="$pkgdir/" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-09 06:38:47 UTC (rev 215350)
+++ community-x86_64/PKGBUILD   2017-03-09 06:39:29 UTC (rev 215351)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Tyler Brock 
-# Contributor: monty 
-
-pkgname=libbson
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='A BSON utility library.'
-arch=('i686' 'x86_64')
-url='http://www.mongodb.org/display/DOCS/C+Language+Center'
-license=('Apache')
-depends=('glibc')
-makedepends=('python' 'git')
-source=("git+https://github.com/mongodb/$pkgname.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-build() {
-cd "$srcdir/$pkgname"
-./autogen.sh --prefix=/usr
-make
-}
-
-package() {
-cd "$srcdir/$pkgname"
-make DESTDIR="$pkgdir/" install
-}

Copied: libbson/repos/community-x86_64/PKGBUILD (from rev 215350, 
libbson/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-09 06:39:29 UTC (rev 215351)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Tyler Brock 
+# Contributor: monty 
+
+pkgname=libbson
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='A BSON utility library.'
+arch=('i686' 'x86_64')
+url='http://www.mongodb.org/display/DOCS/C+Language+Center'
+license=('Apache')
+depends=('glibc')
+makedepends=('python' 'git')
+source=("git+https://github.com/mongodb/$pkgname.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+cd "$srcdir/$pkgname"
+./autogen.sh --prefix=/usr
+make
+}
+
+package() {
+cd "$srcdir/$pkgname"
+make DESTDIR="$pkgdir/" install
+}


[arch-commits] Commit in libbson/trunk (PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 06:38:47
  Author: felixonmars
Revision: 215350

upgpkg: libbson 1.6.1-1

Modified:
  libbson/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 06:37:28 UTC (rev 215349)
+++ PKGBUILD2017-03-09 06:38:47 UTC (rev 215350)
@@ -4,7 +4,7 @@
 # Contributor: monty 
 
 pkgname=libbson
-pkgver=1.6.0
+pkgver=1.6.1
 pkgrel=1
 pkgdesc='A BSON utility library.'
 arch=('i686' 'x86_64')


[arch-commits] Commit in deepin-file-manager/repos (4 files)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 06:37:28
  Author: felixonmars
Revision: 215349

archrelease: copy trunk to community-i686, community-x86_64

Added:
  deepin-file-manager/repos/community-i686/PKGBUILD
(from rev 215348, deepin-file-manager/trunk/PKGBUILD)
  deepin-file-manager/repos/community-x86_64/PKGBUILD
(from rev 215348, deepin-file-manager/trunk/PKGBUILD)
Deleted:
  deepin-file-manager/repos/community-i686/PKGBUILD
  deepin-file-manager/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   68 
 community-i686/PKGBUILD   |   34 --
 community-x86_64/PKGBUILD |   34 --
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-09 06:36:46 UTC (rev 215348)
+++ community-i686/PKGBUILD 2017-03-09 06:37:28 UTC (rev 215349)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-file-manager
-pkgver=1.4.1
-pkgrel=1
-epoch=1
-pkgdesc='Deepin File Manager'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-file-manager;
-license=('GPL3')
-depends=('deepin-tool-kit' 'gtk2' 'gsettings-qt' 'libsecret' 'qt5-svg' 'file' 
'polkit-qt5'
- 'deepin-shortcut-viewer' 'poppler' 'ffmpegthumbnailer' 
'deepin-manual')
-makedepends=('git' 'qt5-tools')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-file-manager.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  sed -i 's/-0-2//g' dde-file-manager/*/*.pro
-}
-
-build() {
-  cd dde-file-manager
-  qmake-qt5 PREFIX=/usr QMAKE_CFLAGS_ISYSTEM=
-  make
-}
-
-package() {
-  cd dde-file-manager
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-file-manager/repos/community-i686/PKGBUILD (from rev 215348, 
deepin-file-manager/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-09 06:37:28 UTC (rev 215349)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-file-manager
+pkgver=1.4.2
+pkgrel=1
+epoch=1
+pkgdesc='Deepin File Manager'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-file-manager;
+license=('GPL3')
+depends=('deepin-tool-kit' 'gtk2' 'gsettings-qt' 'libsecret' 'qt5-svg' 'file' 
'polkit-qt5'
+ 'deepin-shortcut-viewer' 'poppler' 'ffmpegthumbnailer' 
'deepin-manual')
+makedepends=('git' 'qt5-tools')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-file-manager.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  sed -i 's/-0-2//g' dde-file-manager/*/*.pro
+}
+
+build() {
+  cd dde-file-manager
+  qmake-qt5 PREFIX=/usr QMAKE_CFLAGS_ISYSTEM=
+  make
+}
+
+package() {
+  cd dde-file-manager
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-09 06:36:46 UTC (rev 215348)
+++ community-x86_64/PKGBUILD   2017-03-09 06:37:28 UTC (rev 215349)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-file-manager
-pkgver=1.4.1
-pkgrel=1
-epoch=1
-pkgdesc='Deepin File Manager'
-arch=('i686' 'x86_64')
-url="https://github.com/linuxdeepin/dde-file-manager;
-license=('GPL3')
-depends=('deepin-tool-kit' 'gtk2' 'gsettings-qt' 'libsecret' 'qt5-svg' 'file' 
'polkit-qt5'
- 'deepin-shortcut-viewer' 'poppler' 'ffmpegthumbnailer' 
'deepin-manual')
-makedepends=('git' 'qt5-tools')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-file-manager.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  sed -i 's/-0-2//g' dde-file-manager/*/*.pro
-}
-
-build() {
-  cd dde-file-manager
-  qmake-qt5 PREFIX=/usr QMAKE_CFLAGS_ISYSTEM=
-  make
-}
-
-package() {
-  cd dde-file-manager
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-file-manager/repos/community-x86_64/PKGBUILD (from rev 215348, 
deepin-file-manager/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-09 06:37:28 UTC (rev 215349)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-file-manager
+pkgver=1.4.2
+pkgrel=1
+epoch=1
+pkgdesc='Deepin File Manager'
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/dde-file-manager;
+license=('GPL3')

[arch-commits] Commit in deepin-file-manager/trunk (PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 06:36:46
  Author: felixonmars
Revision: 215348

upgpkg: deepin-file-manager 1:1.4.2-1

Modified:
  deepin-file-manager/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 05:52:37 UTC (rev 215347)
+++ PKGBUILD2017-03-09 06:36:46 UTC (rev 215348)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-file-manager
-pkgver=1.4.1
+pkgver=1.4.2
 pkgrel=1
 epoch=1
 pkgdesc='Deepin File Manager'


[arch-commits] Commit in stack/repos (6 files)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 05:45:28
  Author: felixonmars
Revision: 215345

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  stack/repos/community-staging-i686/
  stack/repos/community-staging-i686/PKGBUILD
(from rev 215344, stack/trunk/PKGBUILD)
  stack/repos/community-staging-i686/stack.install
(from rev 215344, stack/trunk/stack.install)
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 215344, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/stack.install
(from rev 215344, stack/trunk/stack.install)

+
 community-staging-i686/PKGBUILD|   83 +++
 community-staging-i686/stack.install   |4 +
 community-staging-x86_64/PKGBUILD  |   83 +++
 community-staging-x86_64/stack.install |4 +
 4 files changed, 174 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 215344, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-09 05:45:28 UTC (rev 215345)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=stack
+pkgname=(stack haskell-stack)
+pkgver=1.3.2
+pkgrel=55
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-async" "haskell-attoparsec" "haskell-base-compat" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-binary-tagged" 
"haskell-blaze-builder"
+ "haskell-byteable" "haskell-clock" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-cryptohash-conduit" 
"haskell-either" "haskell-errors"
+ "haskell-exceptions" "haskell-extra" "haskell-fast-logger" 
"haskell-file-embed"
+ "haskell-filelock" "haskell-fsnotify" "haskell-generic-deriving" 
"haskell-gitrev"
+ "haskell-hashable" "haskell-hastache" "haskell-hit" 
"haskell-http-client"
+ "haskell-http-client-tls" "haskell-http-conduit" 
"haskell-http-types" "haskell-hpack"
+ "haskell-lifted-async" "haskell-lifted-base" "haskell-microlens"
+ "haskell-monad-control" "haskell-monad-logger" 
"haskell-monad-unlift" "haskell-mtl"
+ "haskell-open-browser" "haskell-optparse-applicative" 
"haskell-optparse-simple"
+ "haskell-path" "haskell-path-io" "haskell-persistent" 
"haskell-persistent-sqlite"
+ "haskell-persistent-template" "haskell-pid1" 
"haskell-project-template"
+ "haskell-regex-applicative-text" "haskell-resourcet" 
"haskell-retry" "haskell-safe"
+ "haskell-safe-exceptions" "haskell-semigroups" "haskell-split" 
"haskell-stm"
+ "haskell-store" "haskell-streaming-commons" "haskell-tar" 
"haskell-temporary"
+ "haskell-text" "haskell-text-binary" "haskell-text-metrics" 
"haskell-tls"
+ "haskell-transformers-base" "haskell-unicode-transforms" 
"haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-vector-binary-instances"
+ "haskell-yaml" "haskell-zip-archive" "haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('488b9292ea605c92f6ebf79b233e8e374d857b21053051cb44b305dad8f0d3f7')
+
+prepare() {
+sed -i 's/hpack >=0.14.0 && <0.16,/hpack >=0.14.0 \&\& <0.17,/' 
${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_stack() {
+depends=('gmp' 'libffi' 'zlib')
+optdepends=('ghc')
+install="stack.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+install -Dm644 

[arch-commits] Commit in stack/trunk (PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 05:44:51
  Author: felixonmars
Revision: 215344

upgpkg: stack 1.3.2-55

rebuild with safe-exceptions,0.1.5.0

Modified:
  stack/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 04:55:29 UTC (rev 215343)
+++ PKGBUILD2017-03-09 05:44:51 UTC (rev 215344)
@@ -5,7 +5,7 @@
 pkgbase=stack
 pkgname=(stack haskell-stack)
 pkgver=1.3.2
-pkgrel=54
+pkgrel=55
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


[arch-commits] Commit in python-idna/repos/extra-any (PKGBUILD PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 04:55:16
  Author: felixonmars
Revision: 290166

archrelease: copy trunk to extra-any

Added:
  python-idna/repos/extra-any/PKGBUILD
(from rev 290165, python-idna/trunk/PKGBUILD)
Deleted:
  python-idna/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  100 ++---
 1 file changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-09 04:54:49 UTC (rev 290165)
+++ PKGBUILD2017-03-09 04:55:16 UTC (rev 290166)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-idna
-pkgname=('python-idna' 'python2-idna')
-pkgver=2.4
-pkgrel=1
-pkgdesc="Internationalized Domain Names in Applications (IDNA)"
-arch=('any')
-license=('BSD')
-url="https://github.com/kjd/idna;
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("https://pypi.io/packages/source/i/idna/idna-$pkgver.tar.gz;)
-md5sums=('b27328914784bf3e4f6fae16f4b75ba9')
-
-prepare() {
-   cp -a idna-$pkgver{,-py2}
-}
-
-build() {
-   cd "$srcdir"/idna-$pkgver
-   python setup.py build
- 
-   cd "$srcdir"/idna-$pkgver-py2
-   python2 setup.py build
-}
-
-check() {
-   cd "$srcdir"/idna-$pkgver
-   python setup.py test
-
-   cd "$srcdir"/idna-$pkgver-py2
-   python2 setup.py test
-}
- 
-package_python-idna() {
-   depends=('python')
- 
-   cd idna-$pkgver
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-   install -Dm644 LICENSE.rst "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst
-}
- 
-package_python2-idna() {
-   depends=('python2')
- 
-   cd idna-$pkgver-py2
-   python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-   install -Dm644 LICENSE.rst "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst
-}

Copied: python-idna/repos/extra-any/PKGBUILD (from rev 290165, 
python-idna/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-09 04:55:16 UTC (rev 290166)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-idna
+pkgname=('python-idna' 'python2-idna')
+pkgver=2.5
+pkgrel=1
+pkgdesc="Internationalized Domain Names in Applications (IDNA)"
+arch=('any')
+license=('BSD')
+url="https://github.com/kjd/idna;
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://pypi.io/packages/source/i/idna/idna-$pkgver.tar.gz;)
+md5sums=('fc1d992bef73e8824db411bb5d21f012')
+
+prepare() {
+   cp -a idna-$pkgver{,-py2}
+}
+
+build() {
+   cd "$srcdir"/idna-$pkgver
+   python setup.py build
+ 
+   cd "$srcdir"/idna-$pkgver-py2
+   python2 setup.py build
+}
+
+check() {
+   cd "$srcdir"/idna-$pkgver
+   python setup.py test
+
+   cd "$srcdir"/idna-$pkgver-py2
+   python2 setup.py test
+}
+ 
+package_python-idna() {
+   depends=('python')
+ 
+   cd idna-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+   install -Dm644 LICENSE.rst "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst
+}
+ 
+package_python2-idna() {
+   depends=('python2')
+ 
+   cd idna-$pkgver-py2
+   python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+   install -Dm644 LICENSE.rst "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst
+}


[arch-commits] Commit in haskell-safe-exceptions/repos (4 files)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 04:55:29
  Author: felixonmars
Revision: 215343

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-safe-exceptions/repos/community-staging-i686/
  haskell-safe-exceptions/repos/community-staging-i686/PKGBUILD
(from rev 215342, haskell-safe-exceptions/trunk/PKGBUILD)
  haskell-safe-exceptions/repos/community-staging-x86_64/
  haskell-safe-exceptions/repos/community-staging-x86_64/PKGBUILD
(from rev 215342, haskell-safe-exceptions/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   40 
 community-staging-x86_64/PKGBUILD |   40 
 2 files changed, 80 insertions(+)

Copied: haskell-safe-exceptions/repos/community-staging-i686/PKGBUILD (from rev 
215342, haskell-safe-exceptions/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-09 04:55:29 UTC (rev 215343)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=safe-exceptions
+pkgname=haskell-safe-exceptions
+pkgver=0.1.5.0
+pkgrel=1
+pkgdesc="Safe, consistent, and easy exception handling"
+url="https://github.com/fpco/safe-exceptions;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-exceptions')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('e38f0a15780091c951444b2ba5c9fa1e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-safe-exceptions/repos/community-staging-x86_64/PKGBUILD (from 
rev 215342, haskell-safe-exceptions/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-09 04:55:29 UTC (rev 215343)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=safe-exceptions
+pkgname=haskell-safe-exceptions
+pkgver=0.1.5.0
+pkgrel=1
+pkgdesc="Safe, consistent, and easy exception handling"
+url="https://github.com/fpco/safe-exceptions;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-exceptions')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('e38f0a15780091c951444b2ba5c9fa1e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in python-idna/trunk (PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 04:54:49
  Author: felixonmars
Revision: 290165

upgpkg: python-idna 2.5-1

Modified:
  python-idna/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 00:08:04 UTC (rev 290164)
+++ PKGBUILD2017-03-09 04:54:49 UTC (rev 290165)
@@ -3,7 +3,7 @@
 
 pkgbase=python-idna
 pkgname=('python-idna' 'python2-idna')
-pkgver=2.4
+pkgver=2.5
 pkgrel=1
 pkgdesc="Internationalized Domain Names in Applications (IDNA)"
 arch=('any')
@@ -11,7 +11,7 @@
 url="https://github.com/kjd/idna;
 makedepends=('python-setuptools' 'python2-setuptools')
 source=("https://pypi.io/packages/source/i/idna/idna-$pkgver.tar.gz;)
-md5sums=('b27328914784bf3e4f6fae16f4b75ba9')
+md5sums=('fc1d992bef73e8824db411bb5d21f012')
 
 prepare() {
cp -a idna-$pkgver{,-py2}


[arch-commits] Commit in haskell-safe-exceptions/trunk (PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 04:54:52
  Author: felixonmars
Revision: 215342

upgpkg: haskell-safe-exceptions 0.1.5.0-1

rebuild with safe-exceptions,0.1.5.0

Modified:
  haskell-safe-exceptions/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 04:52:30 UTC (rev 215341)
+++ PKGBUILD2017-03-09 04:54:52 UTC (rev 215342)
@@ -3,7 +3,7 @@
 
 _hkgname=safe-exceptions
 pkgname=haskell-safe-exceptions
-pkgver=0.1.4.0
+pkgver=0.1.5.0
 pkgrel=1
 pkgdesc="Safe, consistent, and easy exception handling"
 url="https://github.com/fpco/safe-exceptions;
@@ -10,8 +10,8 @@
 license=('MIT')
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1' 'haskell-exceptions')
-source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-md5sums=('2f65080043e52d122398944ef7f906b9')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('e38f0a15780091c951444b2ba5c9fa1e')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


[arch-commits] Commit in shadowsocks-libev/repos (24 files)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 04:52:30
  Author: felixonmars
Revision: 215341

archrelease: copy trunk to community-i686, community-x86_64

Added:
  shadowsocks-libev/repos/community-i686/PKGBUILD
(from rev 215340, shadowsocks-libev/trunk/PKGBUILD)
  shadowsocks-libev/repos/community-i686/shadowsocks-libev-redir@.service
(from rev 215340, shadowsocks-libev/trunk/shadowsocks-libev-redir@.service)
  shadowsocks-libev/repos/community-i686/shadowsocks-libev-server@.service
(from rev 215340, shadowsocks-libev/trunk/shadowsocks-libev-server@.service)
  shadowsocks-libev/repos/community-i686/shadowsocks-libev-tunnel@.service
(from rev 215340, shadowsocks-libev/trunk/shadowsocks-libev-tunnel@.service)
  shadowsocks-libev/repos/community-i686/shadowsocks-libev.install
(from rev 215340, shadowsocks-libev/trunk/shadowsocks-libev.install)
  shadowsocks-libev/repos/community-i686/shadowsocks-libev@.service
(from rev 215340, shadowsocks-libev/trunk/shadowsocks-libev@.service)
  shadowsocks-libev/repos/community-x86_64/PKGBUILD
(from rev 215340, shadowsocks-libev/trunk/PKGBUILD)
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev-redir@.service
(from rev 215340, shadowsocks-libev/trunk/shadowsocks-libev-redir@.service)
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev-server@.service
(from rev 215340, shadowsocks-libev/trunk/shadowsocks-libev-server@.service)
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev-tunnel@.service
(from rev 215340, shadowsocks-libev/trunk/shadowsocks-libev-tunnel@.service)
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev.install
(from rev 215340, shadowsocks-libev/trunk/shadowsocks-libev.install)
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev@.service
(from rev 215340, shadowsocks-libev/trunk/shadowsocks-libev@.service)
Deleted:
  shadowsocks-libev/repos/community-i686/PKGBUILD
  shadowsocks-libev/repos/community-i686/shadowsocks-libev-redir@.service
  shadowsocks-libev/repos/community-i686/shadowsocks-libev-server@.service
  shadowsocks-libev/repos/community-i686/shadowsocks-libev-tunnel@.service
  shadowsocks-libev/repos/community-i686/shadowsocks-libev.install
  shadowsocks-libev/repos/community-i686/shadowsocks-libev@.service
  shadowsocks-libev/repos/community-x86_64/PKGBUILD
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev-redir@.service
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev-server@.service
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev-tunnel@.service
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev.install
  shadowsocks-libev/repos/community-x86_64/shadowsocks-libev@.service

+
 /PKGBUILD  |  106 +++
 /shadowsocks-libev-redir@.service  |   26 
 /shadowsocks-libev-server@.service |   26 
 /shadowsocks-libev-tunnel@.service |   26 
 /shadowsocks-libev.install |   20 +++
 /shadowsocks-libev@.service|   26 
 community-i686/PKGBUILD|   45 
 community-i686/shadowsocks-libev-redir@.service|   13 --
 community-i686/shadowsocks-libev-server@.service   |   13 --
 community-i686/shadowsocks-libev-tunnel@.service   |   13 --
 community-i686/shadowsocks-libev.install   |   10 -
 community-i686/shadowsocks-libev@.service  |   13 --
 community-x86_64/PKGBUILD  |   45 
 community-x86_64/shadowsocks-libev-redir@.service  |   13 --
 community-x86_64/shadowsocks-libev-server@.service |   13 --
 community-x86_64/shadowsocks-libev-tunnel@.service |   13 --
 community-x86_64/shadowsocks-libev.install |   10 -
 community-x86_64/shadowsocks-libev@.service|   13 --
 18 files changed, 230 insertions(+), 214 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-09 04:49:55 UTC (rev 215340)
+++ community-i686/PKGBUILD 2017-03-09 04:52:30 UTC (rev 215341)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: jiangxq 
-# Contributor: zh8 
-# Contributor: 4679kun 
-
-pkgname=shadowsocks-libev
-pkgver=3.0.2
-_commit=72f6041a7c62d3c115d15ede0af9ec179345a3c9
-pkgrel=1
-pkgdesc='A lightweight secured socks5 proxy for embedded devices and low end 
boxes'
-arch=('i686' 'x86_64')
-url='https://github.com/shadowsocks/shadowsocks-libev'
-license=('GPL3')
-depends=('libcap' 'mbedtls' 'libsodium' 'libev' 'udns' 'pcre' 'libcorkipset')
-makedepends=('git' 'asciidoc' 'xmlto')
-install=${pkgname}.install
-source=("git+https://github.com/shadowsocks/${pkgname}.git#commit=$_commit;
-'shadowsocks-libev@.service'
-'shadowsocks-libev-server@.service'
-

[arch-commits] Commit in shadowsocks-libev/trunk (PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 04:49:55
  Author: felixonmars
Revision: 215340

upgpkg: shadowsocks-libev 3.0.3-1

Modified:
  shadowsocks-libev/trunk/PKGBUILD

--+
 PKGBUILD |   20 ++--
 1 file changed, 14 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 04:47:13 UTC (rev 215339)
+++ PKGBUILD2017-03-09 04:49:55 UTC (rev 215340)
@@ -5,17 +5,17 @@
 # Contributor: 4679kun 
 
 pkgname=shadowsocks-libev
-pkgver=3.0.2
-_commit=72f6041a7c62d3c115d15ede0af9ec179345a3c9
-pkgrel=2
+pkgver=3.0.3
+pkgrel=1
 pkgdesc='A lightweight secured socks5 proxy for embedded devices and low end 
boxes'
 arch=('i686' 'x86_64')
 url='https://github.com/shadowsocks/shadowsocks-libev'
 license=('GPL3')
-depends=('libcap' 'mbedtls' 'libsodium' 'libev' 'udns' 'pcre' 'libcorkipset')
+depends=('libcap' 'mbedtls' 'libsodium' 'libev' 'udns' 'pcre' 'libcorkipset' 
'libbloom')
 makedepends=('git' 'asciidoc' 'xmlto')
 install=${pkgname}.install
-source=("git+https://github.com/shadowsocks/${pkgname}.git#commit=$_commit;
+source=("git+https://github.com/shadowsocks/$pkgname.git#tag=v$pkgver;
+shared-bloom.patch
 'shadowsocks-libev@.service'
 'shadowsocks-libev-server@.service'
 'shadowsocks-libev-redir@.service'
@@ -22,14 +22,22 @@
 'shadowsocks-libev-tunnel@.service')
 
 sha512sums=('SKIP'
+
'd980c0f8307f0d4402a72508eb8bd12b88f25485086e4ca108936b6f6229d3319c28f0d981f42569ca63eeca97962ab9cd15bce68dba7638a0a18ab0a935bc66'
 
'92186a3baf340e3e3b7e8893b01bbf29356d0111ea7ecc10bb6a31278a834a7c428c501b0bb15fc1e983c6dab74a7094deae2c5972a4b3e6807ece668944d321'
 
'4e7d22145af1e2ac65bfa0d8883c3b30a6ac726728265a782519ab3912d6e3034861e19b411b54aa1cdbf999b1758584f6452d9c98afb72b71f3a0b215813317'
 
'e233c0f67843509f542c25d6fc39fe6992571b7cd0ae75e3c9573a8cd6f9a72748b5c4d09914a6d9402bfe379db487c628b39c44cc165f71e48e874a56922b82'
 
'b8de1cc489a1feb8c0ca59fef8abf6c524343483563462a167cb4a5bed5e9605fe76e4fdc71a248a8a5fc882032737a02747916f79043d50f850645067ed38eb')
 
+prepare() {
+  cd "$srcdir/$pkgname"
+  patch -p1 -i ../shared-bloom.patch
+
+  sed -i 's|AC_CONFIG_FILES(\[libbloom/Makefile libcork/Makefile 
libipset/Makefile\])||' configure.ac
+}
+
 build() {
   cd "$srcdir/$pkgname"
-  sed -i 's|AC_CONFIG_FILES(\[libcork/Makefile libipset/Makefile\])||' 
configure.ac
+
   ./autogen.sh
   ./configure --prefix=/usr --enable-shared --enable-system-shared-lib
   make


[arch-commits] Commit in libbloom/repos (4 files)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 04:47:13
  Author: felixonmars
Revision: 215339

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libbloom/repos/community-i686/
  libbloom/repos/community-i686/PKGBUILD
(from rev 215338, libbloom/trunk/PKGBUILD)
  libbloom/repos/community-x86_64/
  libbloom/repos/community-x86_64/PKGBUILD
(from rev 215338, libbloom/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   33 +
 community-x86_64/PKGBUILD |   33 +
 2 files changed, 66 insertions(+)

Copied: libbloom/repos/community-i686/PKGBUILD (from rev 215338, 
libbloom/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-09 04:47:13 UTC (rev 215339)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=libbloom
+pkgver=1.4
+pkgrel=1
+pkgdesc="A simple and small bloom filter implementation in plain C"
+arch=('i686' 'x86_64')
+url="https://github.com/jvirkki/libbloom;
+license=('BSD')
+depends=('glibc')
+makedepends=('git')
+source=("git+https://github.com/jvirkki/libbloom.git#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd libbloom
+  MM=" " make
+}
+
+check() {
+  cd libbloom
+  MM=" " make test
+}
+
+package() {
+  cd libbloom
+  install -Dm644 bloom.h "$pkgdir"/usr/include/bloom.h
+  install -Dm755 build/libbloom.so.$pkgver 
"$pkgdir"/usr/lib/libbloom.so.$pkgver
+  ln -s libbloom.so.$pkgver "$pkgdir"/usr/lib/libbloom.so
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: libbloom/repos/community-x86_64/PKGBUILD (from rev 215338, 
libbloom/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-09 04:47:13 UTC (rev 215339)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=libbloom
+pkgver=1.4
+pkgrel=1
+pkgdesc="A simple and small bloom filter implementation in plain C"
+arch=('i686' 'x86_64')
+url="https://github.com/jvirkki/libbloom;
+license=('BSD')
+depends=('glibc')
+makedepends=('git')
+source=("git+https://github.com/jvirkki/libbloom.git#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd libbloom
+  MM=" " make
+}
+
+check() {
+  cd libbloom
+  MM=" " make test
+}
+
+package() {
+  cd libbloom
+  install -Dm644 bloom.h "$pkgdir"/usr/include/bloom.h
+  install -Dm755 build/libbloom.so.$pkgver 
"$pkgdir"/usr/lib/libbloom.so.$pkgver
+  ln -s libbloom.so.$pkgver "$pkgdir"/usr/lib/libbloom.so
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in (4 files)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 04:46:36
  Author: felixonmars
Revision: 215338

addpkg: libbloom 1.4-1

Added:
  libbloom/
  libbloom/repos/
  libbloom/trunk/
  libbloom/trunk/PKGBUILD

--+
 PKGBUILD |   33 +
 1 file changed, 33 insertions(+)

Added: libbloom/trunk/PKGBUILD
===
--- libbloom/trunk/PKGBUILD (rev 0)
+++ libbloom/trunk/PKGBUILD 2017-03-09 04:46:36 UTC (rev 215338)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=libbloom
+pkgver=1.4
+pkgrel=1
+pkgdesc="A simple and small bloom filter implementation in plain C"
+arch=('i686' 'x86_64')
+url="https://github.com/jvirkki/libbloom;
+license=('BSD')
+depends=('glibc')
+makedepends=('git')
+source=("git+https://github.com/jvirkki/libbloom.git#tag=v$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd libbloom
+  MM=" " make
+}
+
+check() {
+  cd libbloom
+  MM=" " make test
+}
+
+package() {
+  cd libbloom
+  install -Dm644 bloom.h "$pkgdir"/usr/include/bloom.h
+  install -Dm755 build/libbloom.so.$pkgver 
"$pkgdir"/usr/lib/libbloom.so.$pkgver
+  ln -s libbloom.so.$pkgver "$pkgdir"/usr/lib/libbloom.so
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


Property changes on: libbloom/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in simple-obfs/repos (4 files)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 03:48:42
  Author: felixonmars
Revision: 215337

archrelease: copy trunk to community-i686, community-x86_64

Added:
  simple-obfs/repos/community-i686/PKGBUILD
(from rev 215336, simple-obfs/trunk/PKGBUILD)
  simple-obfs/repos/community-x86_64/PKGBUILD
(from rev 215336, simple-obfs/trunk/PKGBUILD)
Deleted:
  simple-obfs/repos/community-i686/PKGBUILD
  simple-obfs/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   68 
 community-i686/PKGBUILD   |   28 --
 community-x86_64/PKGBUILD |   28 --
 3 files changed, 68 insertions(+), 56 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-09 03:48:09 UTC (rev 215336)
+++ community-i686/PKGBUILD 2017-03-09 03:48:42 UTC (rev 215337)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: jiangxq 
-# Contributor: zh8 
-# Contributor: 4679kun 
-
-pkgname=simple-obfs
-pkgver=0.0.2
-pkgrel=1
-pkgdesc='A simple obfusacting tool designed as plugin server of shadowsocks'
-arch=('i686' 'x86_64')
-url='https://github.com/shadowsocks/simple-obfs'
-license=('GPL')
-depends=('libsodium' 'udns' 'libev')
-makedepends=('git' 'asciidoc' 'xmlto')
-source=("git+https://github.com/shadowsocks/simple-obfs.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-build() {
-  cd simple-obfs
-  ./configure --prefix=/usr --enable-system-shared-lib
-  make
-}
-
-package() {
-  cd simple-obfs
-  make DESTDIR="$pkgdir/" install
-}

Copied: simple-obfs/repos/community-i686/PKGBUILD (from rev 215336, 
simple-obfs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-09 03:48:42 UTC (rev 215337)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: jiangxq 
+# Contributor: zh8 
+# Contributor: 4679kun 
+
+pkgname=simple-obfs
+pkgver=0.0.3
+pkgrel=1
+pkgdesc='A simple obfusacting tool designed as plugin server of shadowsocks'
+arch=('i686' 'x86_64')
+url='https://github.com/shadowsocks/simple-obfs'
+license=('GPL')
+depends=('libsodium' 'udns' 'libev' 'libcork')
+makedepends=('git' 'asciidoc' 'xmlto')
+source=("git+https://github.com/shadowsocks/simple-obfs.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd simple-obfs
+  patch -p1 -i debian/patches/0001-Use-libcork-dev-in-system.patch
+}
+
+build() {
+  cd simple-obfs
+  ./autogen.sh
+  ./configure --prefix=/usr --enable-system-shared-lib
+  make
+}
+
+package() {
+  cd simple-obfs
+  make DESTDIR="$pkgdir/" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-09 03:48:09 UTC (rev 215336)
+++ community-x86_64/PKGBUILD   2017-03-09 03:48:42 UTC (rev 215337)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: jiangxq 
-# Contributor: zh8 
-# Contributor: 4679kun 
-
-pkgname=simple-obfs
-pkgver=0.0.2
-pkgrel=1
-pkgdesc='A simple obfusacting tool designed as plugin server of shadowsocks'
-arch=('i686' 'x86_64')
-url='https://github.com/shadowsocks/simple-obfs'
-license=('GPL')
-depends=('libsodium' 'udns' 'libev')
-makedepends=('git' 'asciidoc' 'xmlto')
-source=("git+https://github.com/shadowsocks/simple-obfs.git#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-build() {
-  cd simple-obfs
-  ./configure --prefix=/usr --enable-system-shared-lib
-  make
-}
-
-package() {
-  cd simple-obfs
-  make DESTDIR="$pkgdir/" install
-}

Copied: simple-obfs/repos/community-x86_64/PKGBUILD (from rev 215336, 
simple-obfs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-09 03:48:42 UTC (rev 215337)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: jiangxq 
+# Contributor: zh8 
+# Contributor: 4679kun 
+
+pkgname=simple-obfs
+pkgver=0.0.3
+pkgrel=1
+pkgdesc='A simple obfusacting tool designed as plugin server of shadowsocks'
+arch=('i686' 'x86_64')
+url='https://github.com/shadowsocks/simple-obfs'
+license=('GPL')
+depends=('libsodium' 'udns' 'libev' 'libcork')
+makedepends=('git' 'asciidoc' 'xmlto')
+source=("git+https://github.com/shadowsocks/simple-obfs.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd simple-obfs
+  patch -p1 -i debian/patches/0001-Use-libcork-dev-in-system.patch
+}
+
+build() {
+  cd simple-obfs
+  ./autogen.sh
+  ./configure --prefix=/usr --enable-system-shared-lib
+  make
+}
+
+package() {
+  cd simple-obfs
+  make DESTDIR="$pkgdir/" install
+}


[arch-commits] Commit in simple-obfs/trunk (PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 03:48:09
  Author: felixonmars
Revision: 215336

upgpkg: simple-obfs 0.0.3-1

Modified:
  simple-obfs/trunk/PKGBUILD

--+
 PKGBUILD |   10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 03:41:50 UTC (rev 215335)
+++ PKGBUILD2017-03-09 03:48:09 UTC (rev 215336)
@@ -5,19 +5,25 @@
 # Contributor: 4679kun 
 
 pkgname=simple-obfs
-pkgver=0.0.2
+pkgver=0.0.3
 pkgrel=1
 pkgdesc='A simple obfusacting tool designed as plugin server of shadowsocks'
 arch=('i686' 'x86_64')
 url='https://github.com/shadowsocks/simple-obfs'
 license=('GPL')
-depends=('libsodium' 'udns' 'libev')
+depends=('libsodium' 'udns' 'libev' 'libcork')
 makedepends=('git' 'asciidoc' 'xmlto')
 source=("git+https://github.com/shadowsocks/simple-obfs.git#tag=v$pkgver;)
 sha512sums=('SKIP')
 
+prepare() {
+  cd simple-obfs
+  patch -p1 -i debian/patches/0001-Use-libcork-dev-in-system.patch
+}
+
 build() {
   cd simple-obfs
+  ./autogen.sh
   ./configure --prefix=/usr --enable-system-shared-lib
   make
 }


[arch-commits] Commit in python-webtest/repos/community-any (PKGBUILD PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 03:41:50
  Author: felixonmars
Revision: 215335

archrelease: copy trunk to community-any

Added:
  python-webtest/repos/community-any/PKGBUILD
(from rev 215334, python-webtest/trunk/PKGBUILD)
Deleted:
  python-webtest/repos/community-any/PKGBUILD

--+
 PKGBUILD |  122 ++---
 1 file changed, 61 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-09 03:41:16 UTC (rev 215334)
+++ PKGBUILD2017-03-09 03:41:50 UTC (rev 215335)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jerome Leclanche 
-
-pkgbase=python-webtest
-pkgname=(python-webtest python2-webtest)
-pkgver=2.0.25
-pkgrel=1
-pkgdesc="Helper to test WSGI applications"
-arch=('any')
-url='http://webtest.pythonpaste.org/'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-webob' 
'python2-webob' 'python-six' 'python2-six'
- 'python-beautifulsoup4' 'python2-beautifulsoup4' 
'python-waitress' 'python2-waitress')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-coverage' 'python2-coverage'
-  'python-pyquery' 'python2-pyquery'  'python-pastedeploy' 
'python2-pastedeploy'
-  'python-wsgiproxy2' 'python2-wsgiproxy2')
-source=("https://pypi.io/packages/source/W/WebTest/WebTest-$pkgver.tar.gz;)
-sha256sums=('c81bdc2e869e42d2120ca4ef50db353cffb52065fcec852e94b2729b312ba548')
-
-prepare() {
-  cp -a WebTest-$pkgver{,-py2}
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/WebTest-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/WebTest-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/WebTest-$pkgver
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" nosetests3
-
-  cd "$srcdir"/WebTest-$pkgver-py2
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" nosetests2
-}
-
-package_python-webtest() {
-  depends=('python-webob' 'python-six' 'python-beautifulsoup4' 
'python-waitress')
-  optdepends=('python-pyquery: for response.pyquery'
-  'python-lxml: for response.lxml')
-
-  cd WebTest-$pkgver
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-  install -Dm644 "docs/license.rst" 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-webtest() {
-  depends=('python2-webob' 'python2-six' 'python2-beautifulsoup4' 
'python2-waitress')
-  optdepends=('python2-pyquery: for response.pyquery'
-  'python2-lxml: for response.lxml')
-
-  cd WebTest-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-  install -Dm644 "docs/license.rst" 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-webtest/repos/community-any/PKGBUILD (from rev 215334, 
python-webtest/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-09 03:41:50 UTC (rev 215335)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jerome Leclanche 
+
+pkgbase=python-webtest
+pkgname=(python-webtest python2-webtest)
+pkgver=2.0.26
+pkgrel=1
+pkgdesc="Helper to test WSGI applications"
+arch=('any')
+url='http://webtest.pythonpaste.org/'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-webob' 
'python2-webob' 'python-six' 'python2-six'
+ 'python-beautifulsoup4' 'python2-beautifulsoup4' 
'python-waitress' 'python2-waitress')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-coverage' 'python2-coverage'
+  'python-pyquery' 'python2-pyquery'  'python-pastedeploy' 
'python2-pastedeploy'
+  'python-wsgiproxy2' 'python2-wsgiproxy2')
+source=("https://pypi.io/packages/source/W/WebTest/WebTest-$pkgver.tar.gz;)
+sha256sums=('8940721a6e98f79f0036d6ffbd864642fd4ce1b62afa76c517b4ef090c8a306e')
+
+prepare() {
+  cp -a WebTest-$pkgver{,-py2}
+
+  export LC_CTYPE=en_US.UTF-8
+}
+
+build() {
+  cd "$srcdir"/WebTest-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/WebTest-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/WebTest-$pkgver
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.6:$PYTHONPATH" nosetests3
+
+  cd "$srcdir"/WebTest-$pkgver-py2
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" nosetests2
+}
+
+package_python-webtest() {
+  depends=('python-webob' 'python-six' 'python-beautifulsoup4' 
'python-waitress')
+  optdepends=('python-pyquery: for response.pyquery'
+  'python-lxml: for response.lxml')
+
+  cd WebTest-$pkgver
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
+  install -Dm644 "docs/license.rst" 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+

[arch-commits] Commit in python-webtest/trunk (PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 03:41:16
  Author: felixonmars
Revision: 215334

upgpkg: python-webtest 2.0.26-1

Modified:
  python-webtest/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 03:38:55 UTC (rev 215333)
+++ PKGBUILD2017-03-09 03:41:16 UTC (rev 215334)
@@ -4,7 +4,7 @@
 
 pkgbase=python-webtest
 pkgname=(python-webtest python2-webtest)
-pkgver=2.0.25
+pkgver=2.0.26
 pkgrel=1
 pkgdesc="Helper to test WSGI applications"
 arch=('any')
@@ -16,7 +16,7 @@
   'python-pyquery' 'python2-pyquery'  'python-pastedeploy' 
'python2-pastedeploy'
   'python-wsgiproxy2' 'python2-wsgiproxy2')
 source=("https://pypi.io/packages/source/W/WebTest/WebTest-$pkgver.tar.gz;)
-sha256sums=('c81bdc2e869e42d2120ca4ef50db353cffb52065fcec852e94b2729b312ba548')
+sha256sums=('8940721a6e98f79f0036d6ffbd864642fd4ce1b62afa76c517b4ef090c8a306e')
 
 prepare() {
   cp -a WebTest-$pkgver{,-py2}


[arch-commits] Commit in uglify-js/repos/community-any (4 files)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 03:38:55
  Author: felixonmars
Revision: 215333

archrelease: copy trunk to community-any

Added:
  uglify-js/repos/community-any/PKGBUILD
(from rev 215332, uglify-js/trunk/PKGBUILD)
  uglify-js/repos/community-any/uglify-js.install
(from rev 215332, uglify-js/trunk/uglify-js.install)
Deleted:
  uglify-js/repos/community-any/PKGBUILD
  uglify-js/repos/community-any/uglify-js.install

---+
 PKGBUILD  |   58 ++--
 uglify-js.install |   16 +++---
 2 files changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-09 03:38:19 UTC (rev 215332)
+++ PKGBUILD2017-03-09 03:38:55 UTC (rev 215333)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Nagy 
-
-pkgname=uglify-js
-pkgver=2.8.7
-pkgrel=1
-pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
-arch=('any')
-url='http://lisperator.net/uglifyjs'
-license=('BSD')
-depends=('nodejs')
-makedepends=('npm')
-install=${pkgname}.install
-source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-md5sums=('a0fcdc2ea509947f8fb59ee6e29348b1')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-
-  # Fix npm derp
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-}
-
-# vim:set ts=2 sw=2 et:

Copied: uglify-js/repos/community-any/PKGBUILD (from rev 215332, 
uglify-js/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-09 03:38:55 UTC (rev 215333)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+
+pkgname=uglify-js
+pkgver=2.8.9
+pkgrel=1
+pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
+arch=('any')
+url='http://lisperator.net/uglifyjs'
+license=('BSD')
+depends=('nodejs')
+makedepends=('npm')
+install=${pkgname}.install
+source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+md5sums=('72f486a52cfd1f5959a2aaf144482436')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+
+  # Fix npm derp
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: uglify-js.install
===
--- uglify-js.install   2017-03-09 03:38:19 UTC (rev 215332)
+++ uglify-js.install   2017-03-09 03:38:55 UTC (rev 215333)
@@ -1,8 +0,0 @@
-post_install() {
-  # fixup permissions
-  chmod 755 /usr/lib/node_modules
-}
-
-post_upgrade() {
-  post_install
-}

Copied: uglify-js/repos/community-any/uglify-js.install (from rev 215332, 
uglify-js/trunk/uglify-js.install)
===
--- uglify-js.install   (rev 0)
+++ uglify-js.install   2017-03-09 03:38:55 UTC (rev 215333)
@@ -0,0 +1,8 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules
+}
+
+post_upgrade() {
+  post_install
+}


[arch-commits] Commit in uglify-js/trunk (PKGBUILD)

2017-03-08 Thread Felix Yan
Date: Thursday, March 9, 2017 @ 03:38:19
  Author: felixonmars
Revision: 215332

upgpkg: uglify-js 2.8.9-1

Modified:
  uglify-js/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 00:09:42 UTC (rev 215331)
+++ PKGBUILD2017-03-09 03:38:19 UTC (rev 215332)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Nagy 
 
 pkgname=uglify-js
-pkgver=2.8.7
+pkgver=2.8.9
 pkgrel=1
 pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
 arch=('any')
@@ -14,7 +14,7 @@
 install=${pkgname}.install
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-md5sums=('a0fcdc2ea509947f8fb59ee6e29348b1')
+md5sums=('72f486a52cfd1f5959a2aaf144482436')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


[arch-commits] Commit in nzbget/repos (6 files)

2017-03-08 Thread Antonio Rojas
Date: Wednesday, March 8, 2017 @ 22:07:58
  Author: arojas
Revision: 215328

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  nzbget/repos/community-staging-i686/
  nzbget/repos/community-staging-i686/PKGBUILD
(from rev 215327, nzbget/trunk/PKGBUILD)
  nzbget/repos/community-staging-i686/nzbget.changelog
(from rev 215327, nzbget/trunk/nzbget.changelog)
  nzbget/repos/community-staging-x86_64/
  nzbget/repos/community-staging-x86_64/PKGBUILD
(from rev 215327, nzbget/trunk/PKGBUILD)
  nzbget/repos/community-staging-x86_64/nzbget.changelog
(from rev 215327, nzbget/trunk/nzbget.changelog)

---+
 community-staging-i686/PKGBUILD   |   34 ++
 community-staging-i686/nzbget.changelog   |   87 
 community-staging-x86_64/PKGBUILD |   34 ++
 community-staging-x86_64/nzbget.changelog |   87 
 4 files changed, 242 insertions(+)

Copied: nzbget/repos/community-staging-i686/PKGBUILD (from rev 215327, 
nzbget/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-08 22:07:58 UTC (rev 215328)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Alexander Rødseth 
+
+pkgname=nzbget
+pkgver=18.0
+pkgrel=2
+pkgdesc="Download from Usenet using .nzb files"
+arch=('i686' 'x86_64')
+url="http://nzbget.net/;
+license=('GPL')
+depends=('libxml2')
+optdepends=('python: to run included scripts'
+'unrar: unpacking archives'
+'p7zip: unpacking archives')
+changelog=$pkgname.changelog
+source=(https://github.com/nzbget/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver-src.tar.gz)
+sha256sums=('4bc6366286988647d42165b442a62b73a1328d7e5b5067bd0078650e1716f55b')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix='/usr' --sbindir='/usr/bin' --enable-parcheck 
--with-tlslib=OpenSSL
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -d "${pkgdir}"/usr/share/$pkgname
+  install -m644 -t "${pkgdir}"/usr/share/$pkgname ChangeLog README
+}

Copied: nzbget/repos/community-staging-i686/nzbget.changelog (from rev 215327, 
nzbget/trunk/nzbget.changelog)
===
--- community-staging-i686/nzbget.changelog (rev 0)
+++ community-staging-i686/nzbget.changelog 2017-03-08 22:07:58 UTC (rev 
215328)
@@ -0,0 +1,87 @@
+2017-02-12 Jaroslav Lichtblau 
+  * nzbget 18.0-1
+
+2016-09-05 Jaroslav Lichtblau 
+  * nzbget 17.1-1
+
+2016-07-28 Jaroslav Lichtblau 
+  * nzbget 17.0-1
+
+2015-12-05 Jaroslav Lichtblau 
+  * nzbget 16.4-1
+
+2015-10-30 Jaroslav Lichtblau 
+  * nzbget 16.3-1
+
+2015-10-25 Jaroslav Lichtblau 
+  * nzbget 16.2-2 FS#46862 fix
+
+2015-10-24 Jaroslav Lichtblau 
+  * nzbget 16.2-1
+
+2015-10-20 Jaroslav Lichtblau 
+  * nzbget 16.1-1
+
+2015-10-12 Jaroslav Lichtblau 
+  * nzbget 16.0-1
+
+2015-05-20 Jaroslav Lichtblau 
+  * nzbget 15.0-1
+
+2015-03-08 Jaroslav Lichtblau 
+  * nzbget 14.2-1
+
+2014-11-28 Jaroslav Lichtblau 
+  * nzbget 14.1-1
+
+2014-11-10 Jaroslav Lichtblau 
+  * nzbget 14.0-1
+
+2014-07-18 Jaroslav Lichtblau 
+  * nzbget 13.0-1
+
+2014-05-25 Jaroslav Lichtblau 
+  * nzbget 12.0-2 FS#40075 implemented
+
+2014-01-14 Jaroslav Lichtblau 
+  * nzbget 12.0-1
+
+2013-09-03 Maxime Gauduin 
+  * Fixed FS#36250 - package built without system CXXFLAGS
+
+2013-07-14 Jaroslav Lichtblau 
+  * nzbget 11.0-1
+
+2013-04-20 Jaroslav Lichtblau 
+  * nzbget 10.2-1
+
+2013-01-30 Jaroslav Lichtblau 
+  * nzbget 9.1-1
+
+2013-01-05 Jaroslav Lichtblau 
+  * nzbget 9.0-1
+
+2012-05-05 Jaroslav Lichtblau 
+  * nzbget 0.8.0-1
+
+2012-03-18 Jaroslav Lichtblau 
+  * nzbget 0.7.0-4 package signed
+
+2010-05-12 Jaroslav Lichtblau 
+  * Fixed FS#19399 - missing postprocess-example.conf file
+
+2010-05-04 Jaroslav Lichtblau 
+  * Update to major release 0.7.0
+
+2009-10-11 Jaroslav Lichtblau 
+  * Dependency added (gnutls) in v0.6.0-2 
+
+2008-03-20 Jaroslav 

[arch-commits] Commit in nzbget/trunk (PKGBUILD)

2017-03-08 Thread Antonio Rojas
Date: Wednesday, March 8, 2017 @ 22:07:32
  Author: arojas
Revision: 215327

openssl 1.1 rebuild

Modified:
  nzbget/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 21:58:25 UTC (rev 215326)
+++ PKGBUILD2017-03-08 22:07:32 UTC (rev 215327)
@@ -4,7 +4,7 @@
 
 pkgname=nzbget
 pkgver=18.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Download from Usenet using .nzb files"
 arch=('i686' 'x86_64')
 url="http://nzbget.net/;


[arch-commits] Commit in newsbeuter/repos (10 files)

2017-03-08 Thread Antonio Rojas
Date: Wednesday, March 8, 2017 @ 21:58:25
  Author: arojas
Revision: 215326

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  newsbeuter/repos/community-staging-i686/
  newsbeuter/repos/community-staging-i686/PKGBUILD
(from rev 215325, newsbeuter/trunk/PKGBUILD)
  newsbeuter/repos/community-staging-i686/newsbeuter-2.9-ncursesw6.patch
(from rev 215325, newsbeuter/trunk/newsbeuter-2.9-ncursesw6.patch)
  newsbeuter/repos/community-staging-i686/newsbeuter.changelog
(from rev 215325, newsbeuter/trunk/newsbeuter.changelog)
  newsbeuter/repos/community-staging-i686/newsbeuter.install
(from rev 215325, newsbeuter/trunk/newsbeuter.install)
  newsbeuter/repos/community-staging-x86_64/
  newsbeuter/repos/community-staging-x86_64/PKGBUILD
(from rev 215325, newsbeuter/trunk/PKGBUILD)
  newsbeuter/repos/community-staging-x86_64/newsbeuter-2.9-ncursesw6.patch
(from rev 215325, newsbeuter/trunk/newsbeuter-2.9-ncursesw6.patch)
  newsbeuter/repos/community-staging-x86_64/newsbeuter.changelog
(from rev 215325, newsbeuter/trunk/newsbeuter.changelog)
  newsbeuter/repos/community-staging-x86_64/newsbeuter.install
(from rev 215325, newsbeuter/trunk/newsbeuter.install)

-+
 community-staging-i686/PKGBUILD |   43 +
 community-staging-i686/newsbeuter-2.9-ncursesw6.patch   |   27 
 community-staging-i686/newsbeuter.changelog |   45 ++
 community-staging-i686/newsbeuter.install   |6 +
 community-staging-x86_64/PKGBUILD   |   43 +
 community-staging-x86_64/newsbeuter-2.9-ncursesw6.patch |   27 
 community-staging-x86_64/newsbeuter.changelog   |   45 ++
 community-staging-x86_64/newsbeuter.install |6 +
 8 files changed, 242 insertions(+)

Copied: newsbeuter/repos/community-staging-i686/PKGBUILD (from rev 215325, 
newsbeuter/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-08 21:58:25 UTC (rev 215326)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Sven Pfleiderer 
+
+pkgname=newsbeuter
+pkgver=2.9
+pkgrel=6
+pkgdesc="A RSS feed reader for the text console with special Podcast support"
+arch=('i686' 'x86_64')
+url="http://www.newsbeuter.org/;
+license=('custom: MIT')
+depends=('curl' 'json-c' 'libxml2' 'sqlite' 'stfl')
+makedepends=('swig' 'gettext')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=($pkgname-r$pkgver.tar.gz::https://github.com/akrennmair/$pkgname/archive/r2.9.tar.gz
+$pkgname-$pkgver-ncursesw6.patch
+
$pkgname-segfault.patch::https://github.com/akrennmair/newsbeuter/commit/33577f842d9b74c119f3cebda95ef8652304db81.patch)
+sha256sums=('489694a57d4af390aa15ab48b66517b0dc34a1cda4410eb5f6f997c6369f51d8'
+'5ae54c463f44d91725da3be655d2b107d598ade6da86ab4a99b10b039b8dba27'
+'6359708ee01f5e1b773a6ed79b7369b30aad5397b85fd252c2fa7d0c2616ea86')
+
+prepare() {
+  cd "${srcdir}"/$pkgname-r$pkgver
+
+  patch -p1 -i ../$pkgname-$pkgver-ncursesw6.patch
+  patch -p1 -i ../$pkgname-segfault.patch
+}
+
+build() {
+  cd "${srcdir}"/$pkgname-r$pkgver
+
+  make prefix=/usr
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-r$pkgver
+
+  make prefix=/usr DESTDIR="${pkgdir}" install
+
+#license
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: newsbeuter/repos/community-staging-i686/newsbeuter-2.9-ncursesw6.patch 
(from rev 215325, newsbeuter/trunk/newsbeuter-2.9-ncursesw6.patch)
===
--- community-staging-i686/newsbeuter-2.9-ncursesw6.patch   
(rev 0)
+++ community-staging-i686/newsbeuter-2.9-ncursesw6.patch   2017-03-08 
21:58:25 UTC (rev 215326)
@@ -0,0 +1,27 @@
+From 7eed4bf5938cf912348362f4dc08844af536f740 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Bart=C5=82omiej=20Piotrowski?= 
+Date: Tue, 8 Sep 2015 11:39:42 +0200
+Subject: [PATCH] config.sh: check for ncursesw6
+
+---
+ config.sh | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/config.sh b/config.sh
+index a9f0081..916908c 100755
+--- a/config.sh
 b/config.sh
+@@ -110,7 +110,9 @@ check_pkg "stfl" || fail "stfl"
+ if [ `uname -s` = "Darwin" ]; then
+   check_custom "ncurses5.4" "ncurses5.4-config" || fail "ncurses5.4"
+ elif [ `uname -s` != "OpenBSD" ]; then
+-  check_custom "ncursesw5" "ncursesw5-config" ||  fail "ncursesw"
++  check_custom "ncursesw5" "ncursesw5-config" || \
++  check_custom "ncursesw6" "ncursesw6-config" \
++  ||  fail "ncursesw"
+ fi
+ check_ssl_implementation
+ all_aboard_the_fail_boat
+-- 

[arch-commits] Commit in newsbeuter/trunk (PKGBUILD)

2017-03-08 Thread Antonio Rojas
Date: Wednesday, March 8, 2017 @ 21:57:54
  Author: arojas
Revision: 215325

openssl 1.1 rebuild

Modified:
  newsbeuter/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 21:45:04 UTC (rev 215324)
+++ PKGBUILD2017-03-08 21:57:54 UTC (rev 215325)
@@ -4,7 +4,7 @@
 
 pkgname=newsbeuter
 pkgver=2.9
-pkgrel=5
+pkgrel=6
 pkgdesc="A RSS feed reader for the text console with special Podcast support"
 arch=('i686' 'x86_64')
 url="http://www.newsbeuter.org/;


[arch-commits] Commit in appstream-generator/repos (4 files)

2017-03-08 Thread Antonio Rojas
Date: Wednesday, March 8, 2017 @ 21:45:04
  Author: arojas
Revision: 215324

archrelease: copy trunk to community-i686, community-x86_64

Added:
  appstream-generator/repos/community-i686/PKGBUILD
(from rev 215323, appstream-generator/trunk/PKGBUILD)
  appstream-generator/repos/community-x86_64/PKGBUILD
(from rev 215323, appstream-generator/trunk/PKGBUILD)
Deleted:
  appstream-generator/repos/community-i686/PKGBUILD
  appstream-generator/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   58 
 community-i686/PKGBUILD   |   29 --
 community-x86_64/PKGBUILD |   29 --
 3 files changed, 58 insertions(+), 58 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-08 21:44:40 UTC (rev 215323)
+++ community-i686/PKGBUILD 2017-03-08 21:45:04 UTC (rev 215324)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=appstream-generator
-pkgver=0.6.2
-pkgrel=1
-pkgdesc="A fast AppStream metadata generator"
-arch=(i686 x86_64)
-url="https://github.com/ximion/appstream-generator;
-license=(GPL3)
-depends=(appstream libarchive librsvg lmdb liblphobos)
-makedepends=(ldc meson ninja mustache-d curl)
-source=("https://github.com/ximion/appstream-generator/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=('72dbcce744700b1e5b71e48863ba61e745b4b5c40ab83c2d003a2f55d32a812b')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  meson ../$pkgname-$pkgver -Ddownload_js=false --prefix=/usr
-  ninja -j1
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: appstream-generator/repos/community-i686/PKGBUILD (from rev 215323, 
appstream-generator/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-08 21:45:04 UTC (rev 215324)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=appstream-generator
+pkgver=0.6.3
+pkgrel=1
+pkgdesc="A fast AppStream metadata generator"
+arch=(i686 x86_64)
+url="https://github.com/ximion/appstream-generator;
+license=(GPL3)
+depends=(appstream libarchive librsvg lmdb liblphobos)
+makedepends=(ldc meson ninja mustache-d curl)
+source=("https://github.com/ximion/appstream-generator/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=('927ac57571b4e033801635ef9446de1125c9fda00daa39000b0c2392465e34bb')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  meson ../$pkgname-$pkgver -Ddownload_js=false --prefix=/usr
+  ninja -j1
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-08 21:44:40 UTC (rev 215323)
+++ community-x86_64/PKGBUILD   2017-03-08 21:45:04 UTC (rev 215324)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=appstream-generator
-pkgver=0.6.2
-pkgrel=1
-pkgdesc="A fast AppStream metadata generator"
-arch=(i686 x86_64)
-url="https://github.com/ximion/appstream-generator;
-license=(GPL3)
-depends=(appstream libarchive librsvg lmdb liblphobos)
-makedepends=(ldc meson ninja mustache-d curl)
-source=("https://github.com/ximion/appstream-generator/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=('72dbcce744700b1e5b71e48863ba61e745b4b5c40ab83c2d003a2f55d32a812b')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  meson ../$pkgname-$pkgver -Ddownload_js=false --prefix=/usr
-  ninja -j1
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: appstream-generator/repos/community-x86_64/PKGBUILD (from rev 215323, 
appstream-generator/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-08 21:45:04 UTC (rev 215324)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=appstream-generator
+pkgver=0.6.3
+pkgrel=1
+pkgdesc="A fast AppStream metadata generator"
+arch=(i686 x86_64)
+url="https://github.com/ximion/appstream-generator;
+license=(GPL3)
+depends=(appstream libarchive librsvg lmdb liblphobos)
+makedepends=(ldc meson ninja mustache-d curl)
+source=("https://github.com/ximion/appstream-generator/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=('927ac57571b4e033801635ef9446de1125c9fda00daa39000b0c2392465e34bb')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  meson ../$pkgname-$pkgver -Ddownload_js=false --prefix=/usr
+  ninja -j1
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}


[arch-commits] Commit in appstream-generator/trunk (PKGBUILD)

2017-03-08 Thread Antonio Rojas
Date: Wednesday, March 8, 2017 @ 21:44:40
  Author: arojas
Revision: 215323

Update to 0.6.3

Modified:
  appstream-generator/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 21:09:48 UTC (rev 215322)
+++ PKGBUILD2017-03-08 21:44:40 UTC (rev 215323)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=appstream-generator
-pkgver=0.6.2
+pkgver=0.6.3
 pkgrel=1
 pkgdesc="A fast AppStream metadata generator"
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=(appstream libarchive librsvg lmdb liblphobos)
 makedepends=(ldc meson ninja mustache-d curl)
 
source=("https://github.com/ximion/appstream-generator/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=('72dbcce744700b1e5b71e48863ba61e745b4b5c40ab83c2d003a2f55d32a812b')
+sha256sums=('927ac57571b4e033801635ef9446de1125c9fda00daa39000b0c2392465e34bb')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in libraw/repos (4 files)

2017-03-08 Thread Antonio Rojas
Date: Wednesday, March 8, 2017 @ 21:27:26
  Author: arojas
Revision: 290159

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  libraw/repos/extra-i686/PKGBUILD
(from rev 290158, libraw/trunk/PKGBUILD)
  libraw/repos/extra-x86_64/PKGBUILD
(from rev 290158, libraw/trunk/PKGBUILD)
Deleted:
  libraw/repos/extra-i686/PKGBUILD
  libraw/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 extra-i686/PKGBUILD   |   30 
 extra-x86_64/PKGBUILD |   30 
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-08 21:26:50 UTC (rev 290158)
+++ extra-i686/PKGBUILD 2017-03-08 21:27:26 UTC (rev 290159)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Ionut Biru 
-# Contributor: Joeny Ang 
-# Contributor: Brad Fanella 
-
-pkgname=libraw
-pkgver=0.18.1
-pkgrel=1
-pkgdesc="A library for reading RAW files obtained from digital photo cameras 
(CRW/CR2, NEF, RAF, DNG, and others)"
-arch=('i686' 'x86_64')
-url="http://www.libraw.org/;
-license=(CDDL LGPL)
-depends=(lcms2 jasper)
-source=("http://www.libraw.org/data/LibRaw-${pkgver}.tar.gz;)
-sha256sums=('48228f733013a7a0cba08d1821438b983e698feeda7cbc3976ce46ceab07b899')
-
-build() {
-  cd LibRaw-$pkgver
-  ./configure --prefix=/usr \
---disable-examples
-  make
-}
-
-package() {
-  cd LibRaw-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libraw/repos/extra-i686/PKGBUILD (from rev 290158, 
libraw/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-08 21:27:26 UTC (rev 290159)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Ionut Biru 
+# Contributor: Joeny Ang 
+# Contributor: Brad Fanella 
+
+pkgname=libraw
+pkgver=0.18.2
+pkgrel=1
+pkgdesc="A library for reading RAW files obtained from digital photo cameras 
(CRW/CR2, NEF, RAF, DNG, and others)"
+arch=('i686' 'x86_64')
+url="http://www.libraw.org/;
+license=(CDDL LGPL)
+depends=(lcms2 jasper)
+source=("http://www.libraw.org/data/LibRaw-${pkgver}.tar.gz;)
+sha256sums=('ce366bb38c1144130737eb16e919038937b4dc1ab165179a225d5e847af2abc6')
+
+build() {
+  cd LibRaw-$pkgver
+  ./configure --prefix=/usr \
+--disable-examples
+  make
+}
+
+package() {
+  cd LibRaw-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-03-08 21:26:50 UTC (rev 290158)
+++ extra-x86_64/PKGBUILD   2017-03-08 21:27:26 UTC (rev 290159)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Ionut Biru 
-# Contributor: Joeny Ang 
-# Contributor: Brad Fanella 
-
-pkgname=libraw
-pkgver=0.18.1
-pkgrel=1
-pkgdesc="A library for reading RAW files obtained from digital photo cameras 
(CRW/CR2, NEF, RAF, DNG, and others)"
-arch=('i686' 'x86_64')
-url="http://www.libraw.org/;
-license=(CDDL LGPL)
-depends=(lcms2 jasper)
-source=("http://www.libraw.org/data/LibRaw-${pkgver}.tar.gz;)
-sha256sums=('48228f733013a7a0cba08d1821438b983e698feeda7cbc3976ce46ceab07b899')
-
-build() {
-  cd LibRaw-$pkgver
-  ./configure --prefix=/usr \
---disable-examples
-  make
-}
-
-package() {
-  cd LibRaw-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libraw/repos/extra-x86_64/PKGBUILD (from rev 290158, 
libraw/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-03-08 21:27:26 UTC (rev 290159)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Ionut Biru 
+# Contributor: Joeny Ang 
+# Contributor: Brad Fanella 
+
+pkgname=libraw
+pkgver=0.18.2
+pkgrel=1
+pkgdesc="A library for reading RAW files obtained from digital photo cameras 
(CRW/CR2, NEF, RAF, DNG, and 

[arch-commits] Commit in libraw/trunk (PKGBUILD)

2017-03-08 Thread Antonio Rojas
Date: Wednesday, March 8, 2017 @ 21:26:50
  Author: arojas
Revision: 290158

Update to 0.18.2

Modified:
  libraw/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 21:19:02 UTC (rev 290157)
+++ PKGBUILD2017-03-08 21:26:50 UTC (rev 290158)
@@ -7,7 +7,7 @@
 # Contributor: Brad Fanella 
 
 pkgname=libraw
-pkgver=0.18.1
+pkgver=0.18.2
 pkgrel=1
 pkgdesc="A library for reading RAW files obtained from digital photo cameras 
(CRW/CR2, NEF, RAF, DNG, and others)"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 license=(CDDL LGPL)
 depends=(lcms2 jasper)
 source=("http://www.libraw.org/data/LibRaw-${pkgver}.tar.gz;)
-sha256sums=('48228f733013a7a0cba08d1821438b983e698feeda7cbc3976ce46ceab07b899')
+sha256sums=('ce366bb38c1144130737eb16e919038937b4dc1ab165179a225d5e847af2abc6')
 
 build() {
   cd LibRaw-$pkgver


[arch-commits] Commit in (libverto)

2017-03-08 Thread Andreas Radke
Date: Wednesday, March 8, 2017 @ 21:18:15
  Author: andyrtr
Revision: 290156

pkg not required, krb5 provides it

Deleted:
  libverto/


[arch-commits] Commit in gssproxy/trunk (PKGBUILD)

2017-03-08 Thread Andreas Radke
Date: Wednesday, March 8, 2017 @ 21:19:02
  Author: andyrtr
Revision: 290157

prepare next release

Modified:
  gssproxy/trunk/PKGBUILD

--+
 PKGBUILD |   16 
 1 file changed, 12 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 21:18:15 UTC (rev 290156)
+++ PKGBUILD2017-03-08 21:19:02 UTC (rev 290157)
@@ -3,7 +3,7 @@
 # Contributor: Mantas Mikulėnas 
 
 pkgname=gssproxy
-pkgver=0.6.2
+pkgver=0.7.0
 pkgrel=1
 pkgdesc="GSSAPI Proxy"
 arch=(i686 x86_64)
@@ -11,11 +11,11 @@
 license=('custom: MIT')
 depends=('krb5' 'popt' 'ding-libs')
 makedepends=('popt' 'libxslt' 'systemd' 'docbook-xsl' 'doxygen'  'po4a')
-options=('emptydirs')
+options=('emptydirs' 'makeflags')
 backup=(etc/gssproxy/{gssproxy,24-nfs-server,80-httpd,99-nfs-client}.conf
 etc/gss/mech.d/gssproxy.conf)
 source=(https://releases.pagure.org/gssproxy/$pkgname-$pkgver.tar.gz)
-sha512sums=('3c19fbd6e6c8aa2946512f947e016642672a98559b0c47dfb2a4abe2c9dbf06f1bd4f028199cd4828edf00eb0f5d3eac55bda73dcfeb27095e8e9ab14fc88bcd')
+sha512sums=('00cd1d05e12f93f81c11062ccf4950e521960f752a6121f2055e47294a51894eda2415c558d3bc0d4c496146ab8f82a1162328acfb5eb3405c7b116774fa9f89')
 
 prepare() {
   cd "$srcdir/gssproxy-$pkgver"
@@ -28,6 +28,8 @@
   sed -i "s/nfs-secure.service/rpc-gssd.service/" systemd/gssproxy.service.in
   # rpc.svcgssd is nfs-secure-server.service
   sed -i "s/nfs-secure-server.service/rpc-svcgssd.service/" 
systemd/gssproxy.service.in
+
+#  autoreconf -vfi
 }
 
 build() {
@@ -41,7 +43,13 @@
 --sbindir=/usr/bin \
 --localstatedir=/var \
 --without-selinux \
---with-initscript=systemd
+--with-initscript=systemd \
+--with-gpp-default-behavior=REMOTE_FIRST
+
+#LOCAL_FIRST|LOCAL_ONLY|REMOTE_FIRST|REMOTE_ONLY
+#  Which default behavior the gssproxy interposer
+#  plugin should use [LOCAL_FIRST]
+#--help
   make
 }
 


[arch-commits] Commit in btrfs-progs/repos (14 files)

2017-03-08 Thread Sébastien Luttringer
Date: Wednesday, March 8, 2017 @ 21:13:11
  Author: seblu
Revision: 290155

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  btrfs-progs/repos/testing-i686/
  btrfs-progs/repos/testing-i686/PKGBUILD
(from rev 290154, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-i686/btrfs-progs.install
(from rev 290154, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-i686/btrfs-scrub@.service
(from rev 290154, btrfs-progs/trunk/btrfs-scrub@.service)
  btrfs-progs/repos/testing-i686/btrfs-scrub@.timer
(from rev 290154, btrfs-progs/trunk/btrfs-scrub@.timer)
  btrfs-progs/repos/testing-i686/initcpio-hook-btrfs
(from rev 290154, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-i686/initcpio-install-btrfs
(from rev 290154, btrfs-progs/trunk/initcpio-install-btrfs)
  btrfs-progs/repos/testing-x86_64/
  btrfs-progs/repos/testing-x86_64/PKGBUILD
(from rev 290154, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-x86_64/btrfs-progs.install
(from rev 290154, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-x86_64/btrfs-scrub@.service
(from rev 290154, btrfs-progs/trunk/btrfs-scrub@.service)
  btrfs-progs/repos/testing-x86_64/btrfs-scrub@.timer
(from rev 290154, btrfs-progs/trunk/btrfs-scrub@.timer)
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
(from rev 290154, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs
(from rev 290154, btrfs-progs/trunk/initcpio-install-btrfs)

---+
 testing-i686/PKGBUILD |   61 
 testing-i686/btrfs-progs.install  |   15 +++
 testing-i686/btrfs-scrub@.service |7 +++
 testing-i686/btrfs-scrub@.timer   |   10 +
 testing-i686/initcpio-hook-btrfs  |7 +++
 testing-i686/initcpio-install-btrfs   |   17 
 testing-x86_64/PKGBUILD   |   61 
 testing-x86_64/btrfs-progs.install|   15 +++
 testing-x86_64/btrfs-scrub@.service   |7 +++
 testing-x86_64/btrfs-scrub@.timer |   10 +
 testing-x86_64/initcpio-hook-btrfs|7 +++
 testing-x86_64/initcpio-install-btrfs |   17 
 12 files changed, 234 insertions(+)

Copied: btrfs-progs/repos/testing-i686/PKGBUILD (from rev 290154, 
btrfs-progs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-08 21:13:11 UTC (rev 290155)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer 
+# Contributor: Tom Gundersen 
+# Contributor: Tobias Powalowski 
+
+pkgname=btrfs-progs
+pkgver=4.10
+pkgrel=1
+pkgdesc='Btrfs filesystem utilities'
+arch=('i686' 'x86_64')
+depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
+makedepends=('git' 'asciidoc' 'xmlto' 'systemd')
+url='https://btrfs.wiki.kernel.org'
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+validpgpkeys=('F2B41200C54EFB30380C1756C565D5F9D76D583B')
+source=("https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v$pkgver.tar."{sign,xz}
+'initcpio-install-btrfs'
+'initcpio-hook-btrfs'
+'btrfs-scrub@.service'
+'btrfs-scrub@.timer')
+install=btrfs-progs.install
+options=(!staticlibs)
+md5sums=('SKIP'
+ 'd2eed808cec6a5ff60a3fa1bec1d80e6'
+ '7241ba3a4286d08da0d50b7176941112'
+ 'b09688a915a0ec8f40e2f5aacbabc9ad'
+ '794b867e09451284c545bae112aa0cfd'
+ '502221c1b47a3bb2c06703d4fb90a0c2')
+
+build() {
+  cd $pkgname-v$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-v$pkgver
+ ./btrfs filesystem show
+}
+
+package() {
+  cd $pkgname-v$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # install bash completion (FS#44618)
+  install -Dm644 btrfs-completion 
"$pkgdir/usr/share/bash-completion/completions/btrfs"
+
+  # install mkinitcpio hooks
+  cd "$srcdir"
+  install -Dm644 initcpio-install-btrfs 
"$pkgdir/usr/lib/initcpio/install/btrfs"
+  install -Dm644 initcpio-hook-btrfs "$pkgdir/usr/lib/initcpio/hooks/btrfs"
+
+  # install scrub service/timer
+  install -Dm644 btrfs-scrub@.service 
"$pkgdir/usr/lib/systemd/system/btrfs-scrub@.service"
+  install -Dm644 btrfs-scrub@.timer 
"$pkgdir/usr/lib/systemd/system/btrfs-scrub@.timer"
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Copied: btrfs-progs/repos/testing-i686/btrfs-progs.install (from rev 290154, 
btrfs-progs/trunk/btrfs-progs.install)
===
--- testing-i686/btrfs-progs.install(rev 0)
+++ testing-i686/btrfs-progs.install2017-03-08 21:13:11 UTC (rev 290155)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+## arg 1:  the new package version
+## 

[arch-commits] Commit in btrfs-progs/trunk (PKGBUILD)

2017-03-08 Thread Sébastien Luttringer
Date: Wednesday, March 8, 2017 @ 21:11:28
  Author: seblu
Revision: 290154

upgpkg: btrfs-progs 4.10-1

Modified:
  btrfs-progs/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 19:50:05 UTC (rev 290153)
+++ PKGBUILD2017-03-08 21:11:28 UTC (rev 290154)
@@ -4,7 +4,7 @@
 # Contributor: Tobias Powalowski 
 
 pkgname=btrfs-progs
-pkgver=4.9.1
+pkgver=4.10
 pkgrel=1
 pkgdesc='Btrfs filesystem utilities'
 arch=('i686' 'x86_64')
@@ -24,7 +24,7 @@
 install=btrfs-progs.install
 options=(!staticlibs)
 md5sums=('SKIP'
- 'c236c632b9d1928c592e81fb543afe0f'
+ 'd2eed808cec6a5ff60a3fa1bec1d80e6'
  '7241ba3a4286d08da0d50b7176941112'
  'b09688a915a0ec8f40e2f5aacbabc9ad'
  '794b867e09451284c545bae112aa0cfd'


[arch-commits] Commit in monit/repos (8 files)

2017-03-08 Thread Jaroslav Lichtblau
Date: Wednesday, March 8, 2017 @ 21:09:48
  Author: jlichtblau
Revision: 215322

archrelease: copy trunk to community-i686, community-x86_64

Added:
  monit/repos/community-i686/PKGBUILD
(from rev 215321, monit/trunk/PKGBUILD)
  monit/repos/community-i686/monit.changelog
(from rev 215321, monit/trunk/monit.changelog)
  monit/repos/community-x86_64/PKGBUILD
(from rev 215321, monit/trunk/PKGBUILD)
  monit/repos/community-x86_64/monit.changelog
(from rev 215321, monit/trunk/monit.changelog)
Deleted:
  monit/repos/community-i686/PKGBUILD
  monit/repos/community-i686/monit.changelog
  monit/repos/community-x86_64/PKGBUILD
  monit/repos/community-x86_64/monit.changelog

--+
 /PKGBUILD|   66 +
 /monit.changelog |  182 +
 community-i686/PKGBUILD  |   33 --
 community-i686/monit.changelog   |   88 -
 community-x86_64/PKGBUILD|   33 --
 community-x86_64/monit.changelog |   88 -
 6 files changed, 248 insertions(+), 242 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-08 21:09:33 UTC (rev 215321)
+++ community-i686/PKGBUILD 2017-03-08 21:09:48 UTC (rev 215322)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Geoffroy Carrier 
-# Contributor: Marco Bartholomew 
-
-pkgname=monit
-pkgver=5.20.0
-pkgrel=1
-pkgdesc="Utility for managing and monitoring, processes, files, directories 
and devices on a *NIX system"
-arch=('i686' 'x86_64')
-url="http://mmonit.com/monit/;
-license=('GPL3')
-depends=('openssl')
-backup=('etc/monitrc')
-changelog=$pkgname.changelog
-source=(http://mmonit.com/$pkgname/dist/$pkgname-$pkgver.tar.gz)
-sha256sums=('ebac395ec50c1ae64d568db1260bc049d0e0e624c00e79d7b1b9a59c2679b98d')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm700 monitrc "${pkgdir}"/etc/monitrc
-  install -Dm644 system/startup/$pkgname.service 
"${pkgdir}"/usr/lib/systemd/system/$pkgname.service
-}

Copied: monit/repos/community-i686/PKGBUILD (from rev 215321, 
monit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-08 21:09:48 UTC (rev 215322)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Geoffroy Carrier 
+# Contributor: Marco Bartholomew 
+
+pkgname=monit
+pkgver=5.21.0
+pkgrel=1
+pkgdesc="Utility for managing and monitoring, processes, files, directories 
and devices on a *NIX system"
+arch=('i686' 'x86_64')
+url="http://mmonit.com/monit/;
+license=('GPL3')
+depends=('openssl')
+backup=('etc/monitrc')
+changelog=$pkgname.changelog
+source=(http://mmonit.com/$pkgname/dist/$pkgname-$pkgver.tar.gz)
+sha256sums=('fbf76163ed4a180854d378af60fed0cdbc5a8772823957234efc182ead10c03c')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm700 monitrc "${pkgdir}"/etc/monitrc
+  install -Dm644 system/startup/$pkgname.service 
"${pkgdir}"/usr/lib/systemd/system/$pkgname.service
+}

Deleted: community-i686/monit.changelog
===
--- community-i686/monit.changelog  2017-03-08 21:09:33 UTC (rev 215321)
+++ community-i686/monit.changelog  2017-03-08 21:09:48 UTC (rev 215322)
@@ -1,88 +0,0 @@
-2016-12-05 Jaroslav Lichtblau 
-   * monit 5.20.0-1
-
-2016-08-18 Jaroslav Lichtblau 
-   * monit 5.19.0-1
-
-2016-06-07 Jaroslav Lichtblau 
-   * monit 5.18-1
-
-2016-03-17 Jaroslav Lichtblau 
-   * monit 5.17.1-1
-
-2016-02-05 Jaroslav Lichtblau 
-   * monit 5.16-1
-
-2015-10-26 Jaroslav Lichtblau 
-   * monit 5.15-1
-
-2015-06-15 Jaroslav Lichtblau 
-   * monit 5.14-1
-
-2015-05-16 Jaroslav Lichtblau 
-   * monit 5.13-1
-
-2015-03-28 Jaroslav Lichtblau 
-   * monit 5.12.2-1
-
-2015-01-27 Jaroslav Lichtblau 
-   * monit 5.11-1
-
-2014-10-30 Jaroslav Lichtblau 
-   * monit 5.10-1
-
-2014-10-16 Jaroslav Lichtblau 
-   * monit 5.9-1
-

[arch-commits] Commit in monit/trunk (PKGBUILD monit.changelog)

2017-03-08 Thread Jaroslav Lichtblau
Date: Wednesday, March 8, 2017 @ 21:09:33
  Author: jlichtblau
Revision: 215321

upgpkg: monit 5.21.0-1 - new upstream release

Modified:
  monit/trunk/PKGBUILD
  monit/trunk/monit.changelog

-+
 PKGBUILD|4 ++--
 monit.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 18:59:58 UTC (rev 215320)
+++ PKGBUILD2017-03-08 21:09:33 UTC (rev 215321)
@@ -4,7 +4,7 @@
 # Contributor: Marco Bartholomew 
 
 pkgname=monit
-pkgver=5.20.0
+pkgver=5.21.0
 pkgrel=1
 pkgdesc="Utility for managing and monitoring, processes, files, directories 
and devices on a *NIX system"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 backup=('etc/monitrc')
 changelog=$pkgname.changelog
 source=(http://mmonit.com/$pkgname/dist/$pkgname-$pkgver.tar.gz)
-sha256sums=('ebac395ec50c1ae64d568db1260bc049d0e0e624c00e79d7b1b9a59c2679b98d')
+sha256sums=('fbf76163ed4a180854d378af60fed0cdbc5a8772823957234efc182ead10c03c')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver

Modified: monit.changelog
===
--- monit.changelog 2017-03-08 18:59:58 UTC (rev 215320)
+++ monit.changelog 2017-03-08 21:09:33 UTC (rev 215321)
@@ -1,3 +1,6 @@
+2017-03-08 Jaroslav Lichtblau 
+   * monit 5.21.0-1
+
 2016-12-05 Jaroslav Lichtblau 
* monit 5.20.0-1
 


[arch-commits] Commit in gnome-session/repos (4 files)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 19:50:05
  Author: heftig
Revision: 290153

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  gnome-session/repos/extra-i686/PKGBUILD
(from rev 290152, gnome-session/trunk/PKGBUILD)
  gnome-session/repos/extra-x86_64/PKGBUILD
(from rev 290152, gnome-session/trunk/PKGBUILD)
Deleted:
  gnome-session/repos/extra-i686/PKGBUILD
  gnome-session/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   90 
 extra-i686/PKGBUILD   |   45 
 extra-x86_64/PKGBUILD |   45 
 3 files changed, 90 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-08 19:49:38 UTC (rev 290152)
+++ extra-i686/PKGBUILD 2017-03-08 19:50:05 UTC (rev 290153)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-session
-pkgver=3.22.2
-pkgrel=2
-pkgdesc="The GNOME Session Handler"
-url="https://git.gnome.org/browse/gnome-session;
-arch=(i686 x86_64)
-license=(GPL LGPL)
-depends=(systemd dconf gsettings-desktop-schemas gtk3 gnome-desktop
- json-glib libgl libsm libxtst systemd)
-makedepends=(intltool mesa gtk-doc xtrans git gnome-common python xmlto)
-groups=(gnome)
-_commit=f5d6a6da547e048c0f4a5a13e5113abbed9cbcb3  # tags/3.22.2^0
-source=("git://git.gnome.org/gnome-session#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  # Environment fixes for systemd and Wayland
-  git cherry-pick -n 52a3c15a1d756c559402cc9505926a9b9d6cf3a7
-  git cherry-pick -n 0af8ef83205fcb4ee52a9f66121d20177b050f65
-  git cherry-pick -n 7e307f8ddb91db5d4051c4c792519a660ba67f35
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-  
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
-  --disable-schemas-compile --enable-systemd --disable-gconf
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-session/repos/extra-i686/PKGBUILD (from rev 290152, 
gnome-session/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-08 19:50:05 UTC (rev 290153)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-session
+pkgver=3.22.3
+pkgrel=1
+pkgdesc="The GNOME Session Handler"
+url="https://git.gnome.org/browse/gnome-session;
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(systemd dconf gsettings-desktop-schemas gtk3 gnome-desktop
+ json-glib libgl libsm libxtst systemd)
+makedepends=(intltool mesa gtk-doc xtrans git gnome-common python xmlto)
+groups=(gnome)
+_commit=136a752ce6f8fa669b5589fdbce981af23a3f8c1  # tags/3.22.3^0
+source=("git+https://git.gnome.org/browse/gnome-session#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # Environment fixes for systemd and Wayland
+  git cherry-pick -n 52a3c15a1d756c559402cc9505926a9b9d6cf3a7
+  git cherry-pick -n 0af8ef83205fcb4ee52a9f66121d20177b050f65
+  git cherry-pick -n 7e307f8ddb91db5d4051c4c792519a660ba67f35
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+  
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
+  --disable-schemas-compile --enable-systemd --disable-gconf
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-03-08 19:49:38 UTC (rev 290152)
+++ extra-x86_64/PKGBUILD   2017-03-08 19:50:05 UTC (rev 290153)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-session
-pkgver=3.22.2
-pkgrel=2
-pkgdesc="The GNOME Session Handler"
-url="https://git.gnome.org/browse/gnome-session;
-arch=(i686 x86_64)
-license=(GPL LGPL)
-depends=(systemd dconf gsettings-desktop-schemas gtk3 gnome-desktop
- json-glib libgl libsm libxtst systemd)
-makedepends=(intltool mesa gtk-doc xtrans git gnome-common python xmlto)
-groups=(gnome)
-_commit=f5d6a6da547e048c0f4a5a13e5113abbed9cbcb3  # tags/3.22.2^0
-source=("git://git.gnome.org/gnome-session#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  # Environment fixes for systemd and Wayland
-  git cherry-pick -n 52a3c15a1d756c559402cc9505926a9b9d6cf3a7
-  git cherry-pick -n 0af8ef83205fcb4ee52a9f66121d20177b050f65
-  git cherry-pick -n 7e307f8ddb91db5d4051c4c792519a660ba67f35
-
-  

[arch-commits] Commit in nautilus/repos (4 files)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 19:49:38
  Author: heftig
Revision: 290152

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  nautilus/repos/extra-i686/PKGBUILD
(from rev 290151, nautilus/trunk/PKGBUILD)
  nautilus/repos/extra-x86_64/PKGBUILD
(from rev 290151, nautilus/trunk/PKGBUILD)
Deleted:
  nautilus/repos/extra-i686/PKGBUILD
  nautilus/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  134 
 extra-i686/PKGBUILD   |   67 
 extra-x86_64/PKGBUILD |   67 
 3 files changed, 134 insertions(+), 134 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-08 19:48:23 UTC (rev 290151)
+++ extra-i686/PKGBUILD 2017-03-08 19:49:38 UTC (rev 290152)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgbase=nautilus
-pkgname=(nautilus libnautilus-extension)
-pkgver=3.22.2
-pkgrel=1
-pkgdesc="Default file manager for GNOME"
-url="https://wiki.gnome.org/Apps/Nautilus;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(libexif gnome-desktop exempi gvfs dconf libtracker-sparql 
nautilus-sendto gnome-autoar)
-makedepends=(intltool gobject-introspection python packagekit python2 
gnome-common git gtk-doc)
-options=(!emptydirs)
-_commit=2c7e8d3e3cd019e6938be643e8991414190344d8  # tags/3.22.2^0
-source=("git://git.gnome.org/nautilus#commit=$_commit"
-"git://git.gnome.org/libgd")
-sha256sums=('SKIP'
-'SKIP')
-
-prepare() {
-  cd $pkgbase
-
-  git submodule init
-  git config --local submodule.libgd.url "$srcdir/libgd"
-  git submodule update
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  cd $pkgbase
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --libexecdir=/usr/lib/nautilus \
-  --enable-gtk-doc \
-  --disable-update-mimedb \
-  --disable-schemas-compile \
-  --disable-selinux --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package_nautilus() {
-  depends+=(libnautilus-extension)
-  groups=(gnome)
-
-  cd $pkgbase
-  make DESTDIR="$pkgdir" install
-  make DESTDIR="$pkgdir" -C libnautilus-extension uninstall
-  make DESTDIR="$pkgdir" -C docs/reference/libnautilus-extension uninstall
-
-}
-
-package_libnautilus-extension() {
-  pkgdesc="Library for extending the $pkgdesc"
-  depends=(gtk3)
-
-  cd $pkgbase
-  make DESTDIR="$pkgdir" -C libnautilus-extension install
-  make DESTDIR="$pkgdir" -C docs/reference/libnautilus-extension install
-}

Copied: nautilus/repos/extra-i686/PKGBUILD (from rev 290151, 
nautilus/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-08 19:49:38 UTC (rev 290152)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=nautilus
+pkgname=(nautilus libnautilus-extension)
+pkgver=3.22.3
+pkgrel=1
+pkgdesc="Default file manager for GNOME"
+url="https://wiki.gnome.org/Apps/Nautilus;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(libexif gnome-desktop exempi gvfs dconf libtracker-sparql 
nautilus-sendto gnome-autoar)
+makedepends=(intltool gobject-introspection python packagekit python2 
gnome-common git gtk-doc)
+options=(!emptydirs)
+_commit=8edb4f1c886417ceae8c3a20638e3cec8ba9f911  # tags/3.22.3^0
+source=("git+https://git.gnome.org/browse/nautilus#commit=$_commit;
+"git+https://git.gnome.org/browse/libgd;)
+sha256sums=('SKIP'
+'SKIP')
+
+prepare() {
+  cd $pkgbase
+
+  git submodule init
+  git config --local submodule.libgd.url "$srcdir/libgd"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+build() {
+  cd $pkgbase
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/nautilus \
+  --enable-gtk-doc \
+  --disable-update-mimedb \
+  --disable-schemas-compile \
+  --disable-selinux --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package_nautilus() {
+  depends+=(libnautilus-extension)
+  groups=(gnome)
+
+  cd $pkgbase
+  make DESTDIR="$pkgdir" install
+  make DESTDIR="$pkgdir" -C libnautilus-extension uninstall
+  make DESTDIR="$pkgdir" -C docs/reference/libnautilus-extension uninstall
+
+}
+
+package_libnautilus-extension() {
+  pkgdesc="Library for extending the $pkgdesc"
+  depends=(gtk3)
+
+  cd $pkgbase
+  make DESTDIR="$pkgdir" -C libnautilus-extension install
+  make DESTDIR="$pkgdir" -C docs/reference/libnautilus-extension install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD

[arch-commits] Commit in gnome-session/trunk (PKGBUILD)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 19:48:23
  Author: heftig
Revision: 290151

3.22.3-1

Modified:
  gnome-session/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 19:28:04 UTC (rev 290150)
+++ PKGBUILD2017-03-08 19:48:23 UTC (rev 290151)
@@ -2,8 +2,8 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-session
-pkgver=3.22.2
-pkgrel=2
+pkgver=3.22.3
+pkgrel=1
 pkgdesc="The GNOME Session Handler"
 url="https://git.gnome.org/browse/gnome-session;
 arch=(i686 x86_64)
@@ -12,8 +12,8 @@
  json-glib libgl libsm libxtst systemd)
 makedepends=(intltool mesa gtk-doc xtrans git gnome-common python xmlto)
 groups=(gnome)
-_commit=f5d6a6da547e048c0f4a5a13e5113abbed9cbcb3  # tags/3.22.2^0
-source=("git://git.gnome.org/gnome-session#commit=$_commit")
+_commit=136a752ce6f8fa669b5589fdbce981af23a3f8c1  # tags/3.22.3^0
+source=("git+https://git.gnome.org/browse/gnome-session#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {


[arch-commits] Commit in nautilus/trunk (PKGBUILD)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 19:28:04
  Author: heftig
Revision: 290150

3.22.3-1

Modified:
  nautilus/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 18:56:44 UTC (rev 290149)
+++ PKGBUILD2017-03-08 19:28:04 UTC (rev 290150)
@@ -3,7 +3,7 @@
 
 pkgbase=nautilus
 pkgname=(nautilus libnautilus-extension)
-pkgver=3.22.2
+pkgver=3.22.3
 pkgrel=1
 pkgdesc="Default file manager for GNOME"
 url="https://wiki.gnome.org/Apps/Nautilus;
@@ -12,7 +12,7 @@
 depends=(libexif gnome-desktop exempi gvfs dconf libtracker-sparql 
nautilus-sendto gnome-autoar)
 makedepends=(intltool gobject-introspection python packagekit python2 
gnome-common git gtk-doc)
 options=(!emptydirs)
-_commit=2c7e8d3e3cd019e6938be643e8991414190344d8  # tags/3.22.2^0
+_commit=8edb4f1c886417ceae8c3a20638e3cec8ba9f911  # tags/3.22.3^0
 source=("git+https://git.gnome.org/browse/nautilus#commit=$_commit;
 "git+https://git.gnome.org/browse/libgd;)
 sha256sums=('SKIP'


[arch-commits] Commit in ed/repos (4 files)

2017-03-08 Thread Dave Reisner
Date: Wednesday, March 8, 2017 @ 18:56:44
  Author: dreisner
Revision: 290149

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  ed/repos/testing-i686/
  ed/repos/testing-i686/PKGBUILD
(from rev 290148, ed/trunk/PKGBUILD)
  ed/repos/testing-x86_64/
  ed/repos/testing-x86_64/PKGBUILD
(from rev 290148, ed/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   38 ++
 testing-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: ed/repos/testing-i686/PKGBUILD (from rev 290148, ed/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-08 18:56:44 UTC (rev 290149)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Maintainer: Andreas Radke 
+
+pkgname=ed
+pkgver=1.14.1
+pkgrel=2
+pkgdesc="A POSIX-compliant line-oriented text editor"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.gnu.org/software/ed/ed.html;
+depends=('glibc' 'sh')
+options=('!emptydirs')
+validpgpkeys=('1D41C14B272A2219A739FA4F8FE99503132D7742')  # Antonio Diaz Diaz
+source=("https://ftp.gnu.org/gnu/ed/$pkgname-$pkgver.tar.lz"{,.sig})
+md5sums=('7f4a54fa7f366479f03654b8af645fd0'
+ 'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/ \
+  --bindir=/usr/bin \
+  --mandir=/usr/share/man \
+  --infodir=/usr/share/info \
+  "CFLAGS=$CFLAGS" \
+  "LDFLAGS=$LDFLAGS"
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" "DESTDIR=$pkgdir" install
+}

Copied: ed/repos/testing-x86_64/PKGBUILD (from rev 290148, ed/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-03-08 18:56:44 UTC (rev 290149)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Maintainer: Andreas Radke 
+
+pkgname=ed
+pkgver=1.14.1
+pkgrel=2
+pkgdesc="A POSIX-compliant line-oriented text editor"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.gnu.org/software/ed/ed.html;
+depends=('glibc' 'sh')
+options=('!emptydirs')
+validpgpkeys=('1D41C14B272A2219A739FA4F8FE99503132D7742')  # Antonio Diaz Diaz
+source=("https://ftp.gnu.org/gnu/ed/$pkgname-$pkgver.tar.lz"{,.sig})
+md5sums=('7f4a54fa7f366479f03654b8af645fd0'
+ 'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/ \
+  --bindir=/usr/bin \
+  --mandir=/usr/share/man \
+  --infodir=/usr/share/info \
+  "CFLAGS=$CFLAGS" \
+  "LDFLAGS=$LDFLAGS"
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" "DESTDIR=$pkgdir" install
+}


[arch-commits] Commit in ed/trunk (PKGBUILD)

2017-03-08 Thread Dave Reisner
Date: Wednesday, March 8, 2017 @ 18:55:51
  Author: dreisner
Revision: 290148

upgpkg: ed 1.14.1-2

Modified:
  ed/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 18:13:57 UTC (rev 290147)
+++ PKGBUILD2017-03-08 18:55:51 UTC (rev 290148)
@@ -4,7 +4,7 @@
 
 pkgname=ed
 pkgver=1.14.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A POSIX-compliant line-oriented text editor"
 arch=('i686' 'x86_64')
 license=('GPL')


[arch-commits] Commit in valgrind-multilib/repos (2 files)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 18:59:58
  Author: heftig
Revision: 215320

archrelease: copy trunk to multilib-staging-x86_64

Added:
  valgrind-multilib/repos/multilib-staging-x86_64/
  valgrind-multilib/repos/multilib-staging-x86_64/PKGBUILD
(from rev 215319, valgrind-multilib/trunk/PKGBUILD)

--+
 PKGBUILD |   36 
 1 file changed, 36 insertions(+)

Copied: valgrind-multilib/repos/multilib-staging-x86_64/PKGBUILD (from rev 
215319, valgrind-multilib/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2017-03-08 18:59:58 UTC (rev 215320)
@@ -0,0 +1,36 @@
+# $Id$
+# Contributor: Dan McGee 
+# Contributor: Allan McRae 
+
+pkgname=valgrind-multilib
+pkgver=3.12.0
+pkgrel=2
+pkgdesc='A tool to help find memory-management problems in programs for 
multilib'
+arch=(x86_64)
+license=(GPL)
+url='http://valgrind.org/'
+depends=('glibc=2.25' 'lib32-glibc=2.25' 'perl')
+makedepends=(gdb openmpi gcc-multilib)
+optdepends=('openmpi: MPI support')
+options=(!emptydirs)
+source=(http://valgrind.org/downloads/valgrind-$pkgver.tar.bz2)
+sha1sums=('7a6878bf998c60d1e377a4f22ebece8d9305bda4')
+
+provides=("valgrind=$pkgver-$pkgrel")
+conflicts=('valgrind')
+
+build() {
+  # valgrind does not like stack protector flags
+  CPPFLAGS=${CPPFLAGS/-D_FORTIFY_SOURCE=2/}
+  CFLAGS=${CFLAGS/-fstack-protector-strong/}
+  CXXFLAGS=${CXXFLAGS/-fstack-protector-strong/}
+
+  cd valgrind-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man --with-mpicc=mpicc
+  make
+}
+
+package() {
+  cd valgrind-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in gcc-multilib/repos (2 files)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 18:59:43
  Author: heftig
Revision: 215319

archrelease: copy trunk to multilib-staging-x86_64

Added:
  gcc-multilib/repos/multilib-staging-x86_64/
  gcc-multilib/repos/multilib-staging-x86_64/PKGBUILD
(from rev 215318, gcc-multilib/trunk/PKGBUILD)

--+
 PKGBUILD |  394 +
 1 file changed, 394 insertions(+)

Copied: gcc-multilib/repos/multilib-staging-x86_64/PKGBUILD (from rev 215318, 
gcc-multilib/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2017-03-08 18:59:43 UTC (rev 215319)
@@ -0,0 +1,394 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Allan McRae 
+
+# toolchain build order: 
linux-api-headers->glibc->binutils->gcc->binutils->glibc
+# NOTE: libtool requires rebuilt with each new gcc version
+
+pkgname=('gcc-multilib' 'gcc-libs-multilib' 'lib32-gcc-libs' 
'gcc-fortran-multilib' 'gcc-objc-multilib' 'gcc-ada-multilib' 'gcc-go-multilib')
+pkgver=6.3.1
+_pkgver=6
+_islver=0.16.1
+pkgrel=2
+_commit=4fc407888a30c5d953816b05c8a8e98ec2ab3101
+pkgdesc="The GNU Compiler Collection for multilib"
+arch=('x86_64')
+license=('GPL' 'LGPL' 'FDL' 'custom')
+url="http://gcc.gnu.org;
+makedepends=('binutils>=2.28' 'libmpc' 'gcc-ada-multilib' 'doxygen' 'git'
+ 'lib32-glibc>=2.25')
+checkdepends=('dejagnu' 'inetutils')
+options=('!emptydirs')
+source=(git+https://gcc.gnu.org/git/gcc.git#commit=${_commit}
+http://isl.gforge.inria.fr/isl-${_islver}.tar.bz2)
+md5sums=('SKIP'
+ 'ac1f25a0677912952718a51f5bc20f32')
+
+_libdir="usr/lib/gcc/$CHOST/$pkgver"
+
+prepare() {
+  cd ${srcdir}/gcc
+
+  # link isl for in-tree build
+  ln -s ../isl-${_islver} isl
+
+  # Do not run fixincludes
+  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
+
+  # Arch Linux installs x86_64 libraries /lib
+  [[ $CARCH == "x86_64" ]] && sed -i '/m64=/s/lib64/lib/' 
gcc/config/i386/t-linux64
+
+  # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
+
+  mkdir ${srcdir}/gcc-build
+}
+
+build() {
+  cd ${srcdir}/gcc-build
+
+  # using -pipe causes spurious test-suite failures
+  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
+  CFLAGS=${CFLAGS/-pipe/}
+  CXXFLAGS=${CXXFLAGS/-pipe/}
+
+  ${srcdir}/gcc/configure --prefix=/usr \
+  --libdir=/usr/lib \
+  --libexecdir=/usr/lib \
+  --mandir=/usr/share/man \
+  --infodir=/usr/share/info \
+  --with-bugurl=https://bugs.archlinux.org/ \
+  --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ \
+  --enable-shared \
+  --enable-threads=posix \
+  --enable-libmpx \
+  --with-system-zlib \
+  --with-isl \
+  --enable-__cxa_atexit \
+  --disable-libunwind-exceptions \
+  --enable-clocale=gnu \
+  --disable-libstdcxx-pch \
+  --disable-libssp \
+  --enable-gnu-unique-object \
+  --enable-linker-build-id \
+  --enable-lto \
+  --enable-plugin \
+  --enable-install-libiberty \
+  --with-linker-hash-style=gnu \
+  --enable-gnu-indirect-function \
+  --enable-multilib \
+  --disable-werror \
+  --enable-checking=release
+
+  make
+
+  # make documentation
+  make -C $CHOST/libstdc++-v3/doc doc-man-doxygen
+}
+
+check() {
+  cd ${srcdir}/gcc-build
+
+  # increase stack size to prevent test failures
+  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31827
+  ulimit -s 32768
+
+  # do not abort on error as some are "expected"
+  make -k check || true
+  ${srcdir}/gcc/contrib/test_summary
+}
+
+package_lib32-gcc-libs()
+{
+  pkgdesc="Runtime libraries shipped by GCC (32-bit)"
+  depends=('lib32-glibc>=2.25')
+  options=('!emptydirs' '!strip')
+
+  cd ${srcdir}/gcc-build
+
+  make -C $CHOST/32/libgcc DESTDIR=${pkgdir} install-shared
+  rm ${pkgdir}/${_libdir}/32/libgcc_eh.a
+
+  for lib in libatomic \
+ libcilkrts \
+ libgfortran \
+ libgo \
+ libgomp \
+ libitm \
+ libquadmath \
+ libsanitizer/{a,l,ub}san \
+ libstdc++-v3/src \
+ libvtv; do
+make -C $CHOST/32/$lib DESTDIR=${pkgdir} install-toolexeclibLTLIBRARIES
+  done
+
+  make -C $CHOST/32/libobjc DESTDIR=${pkgdir} install-libs
+
+  make -C $CHOST/32/libmpx DESTDIR=${pkgdir} install
+  rm ${pkgdir}/usr/lib32/libmpx.spec
+
+  # remove stuff in gcc-libs-multilib
+  rm -r ${pkgdir}/usr/lib
+
+  # Install Runtime Library Exception
+  install -Dm644 ${srcdir}/gcc/COPYING.RUNTIME \
+${pkgdir}/usr/share/licenses/lib32-gcc-libs/RUNTIME.LIBRARY.EXCEPTION
+}
+
+package_gcc-libs-multilib()
+{
+  pkgdesc="Runtime libraries shipped by GCC for multilib"
+  depends=('glibc>=2.25' "lib32-gcc-libs=$pkgver-$pkgrel")
+  

[arch-commits] Commit in lib32-glibc/repos (3 files)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 18:59:26
  Author: heftig
Revision: 215318

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-glibc/repos/multilib-staging-x86_64/
  lib32-glibc/repos/multilib-staging-x86_64/PKGBUILD
(from rev 215317, lib32-glibc/trunk/PKGBUILD)
  lib32-glibc/repos/multilib-staging-x86_64/lib32-glibc.conf
(from rev 215317, lib32-glibc/trunk/lib32-glibc.conf)

--+
 PKGBUILD |  155 +
 lib32-glibc.conf |1 
 2 files changed, 156 insertions(+)

Copied: lib32-glibc/repos/multilib-staging-x86_64/PKGBUILD (from rev 215317, 
lib32-glibc/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2017-03-08 18:59:26 UTC (rev 215318)
@@ -0,0 +1,155 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Allan McRae 
+
+# toolchain build order: 
linux-api-headers->glibc->binutils->gcc->binutils->glibc
+# NOTE: valgrind-multilib requires rebuild with each major glibc version
+
+pkgname=lib32-glibc
+pkgver=2.25
+pkgrel=1
+_commit=69e0a87cc4c570e3b7218392fc3e743b5bddcce2
+pkgdesc="GNU C Library (32-bit)"
+arch=('x86_64')
+url="http://www.gnu.org/software/libc;
+license=('GPL' 'LGPL')
+groups=()
+depends=("glibc>=$pkgver")
+makedepends=('gcc-multilib>=6' 'git')
+backup=()
+
+
+options=('!strip' 'staticlibs' '!emptydirs')
+
+source=(git+https://sourceware.org/git/glibc.git#commit=${_commit}
+lib32-glibc.conf)
+
+md5sums=('SKIP'
+ '6e052f1cb693d5d3203f50f9d4e8c33b')
+
+prepare() {
+  mkdir glibc-build
+  
+  cd glibc
+  # avoid crashes on i686 memchr-sse2.S
+  # https://sourceware.org/bugzilla/show_bug.cgi?id=21182
+  _revert_commit="23d27709a423aec32821e9a5198a10267107bae2"
+  _revert_file="sysdeps/i386/i686/multiarch/memchr-sse2.S"
+  git show ${_revert_commit} -- ${_revert_file} | git apply -R
+}
+
+build() {
+  cd glibc-build
+
+  #if [[ ${CARCH} = "i686" ]]; then
+# Hack to fix NPTL issues with Xen, only required on 32bit platforms
+export CFLAGS="${CFLAGS} -mno-tls-direct-seg-refs"
+  #fi
+
+  echo "slibdir=/usr/lib32" >> configparms
+  echo "rtlddir=/usr/lib32" >> configparms
+  echo "sbindir=/usr/bin" >> configparms
+  echo "rootsbindir=/usr/bin" >> configparms
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+
+  # remove fortify for building libraries
+  CPPFLAGS=${CPPFLAGS/-D_FORTIFY_SOURCE=2/}
+
+  ../glibc/configure \
+  --prefix=/usr \
+  --libdir=/usr/lib32 \
+  --libexecdir=/usr/lib32 \
+  --with-headers=/usr/include \
+  --with-bugurl=https://bugs.archlinux.org/ \
+  --enable-add-ons \
+  --enable-obsolete-rpc \
+  --enable-kernel=2.6.32 \
+  --enable-bind-now \
+  --disable-profile \
+  --enable-stackguard-randomization \
+  --enable-stack-protector=strong \
+  --enable-lock-elision \
+  --enable-multi-arch \
+  --disable-werror \
+  i686-pc-linux-gnu
+
+  # build libraries with fortify disabled
+  echo "build-programs=no" >> configparms
+  make
+
+  # re-enable fortify for programs
+  sed -i "/build-programs=/s#no#yes#" configparms
+
+  echo "CC += -D_FORTIFY_SOURCE=2" >> configparms
+  echo "CXX += -D_FORTIFY_SOURCE=2" >> configparms
+  make
+}
+
+check() {
+  cd glibc-build
+
+  # remove fortify in preparation to run test-suite
+  sed -i '/FORTIFY/d' configparms
+
+  # some failures are "expected"
+  make check || true
+}
+
+package() {
+  cd glibc-build
+
+  make install_root=${pkgdir} install
+
+  rm -rf ${pkgdir}/{etc,sbin,usr/{bin,sbin,share},var}
+
+  # We need to keep 32 bit specific header files
+  find ${pkgdir}/usr/include -type f -not -name '*-32.h' -delete
+
+  # Dynamic linker
+  mkdir ${pkgdir}/usr/lib
+  ln -s ../lib32/ld-linux.so.2 ${pkgdir}/usr/lib/
+
+  # Add lib32 paths to the default library search path
+  install -Dm644 "$srcdir/lib32-glibc.conf" 
"$pkgdir/etc/ld.so.conf.d/lib32-glibc.conf"
+
+  # Symlink /usr/lib32/locale to /usr/lib/locale
+  ln -s ../lib/locale "$pkgdir/usr/lib32/locale"
+
+  # Do not strip the following files for improved debugging support
+  # ("improved" as in not breaking gdb and valgrind...):
+  #   ld-${pkgver}.so
+  #   libc-${pkgver}.so
+  #   libpthread-${pkgver}.so
+  #   libthread_db-1.0.so
+
+  cd $pkgdir
+  strip $STRIP_BINARIES \
+\
+\
+usr/lib32/getconf/*
+
+
+
+
+  strip $STRIP_STATIC usr/lib32/lib{anl,BrokenLocale,c{,_nonshared},crypt}.a \
+  
usr/lib32/lib{dl,g,ieee,mcheck,nsl,pthread{,_nonshared}}.a \
+  usr/lib32/lib{resolv,rpcsvc,rt,util}.a
+
+  strip $STRIP_SHARED usr/lib32/lib{anl,BrokenLocale,cidn,crypt}-${pkgver}.so \
+  

[arch-commits] Commit in valgrind-multilib/trunk (PKGBUILD)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 18:44:03
  Author: heftig
Revision: 215317

3.12.0-2

Modified:
  valgrind-multilib/trunk/PKGBUILD

--+
 PKGBUILD |   14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 18:36:42 UTC (rev 215316)
+++ PKGBUILD2017-03-08 18:44:03 UTC (rev 215317)
@@ -4,23 +4,27 @@
 
 pkgname=valgrind-multilib
 pkgver=3.12.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A tool to help find memory-management problems in programs for 
multilib'
 arch=(x86_64)
 license=(GPL)
 url='http://valgrind.org/'
-depends=('lib32-glibc>=2.24' 'lib32-glibc<2.25' 'perl')
+depends=('glibc=2.25' 'lib32-glibc=2.25' 'perl')
 makedepends=(gdb openmpi gcc-multilib)
 optdepends=('openmpi: MPI support')
-# valgrind does not like stack protector flags
-options=(!emptydirs !buildflags)
+options=(!emptydirs)
 source=(http://valgrind.org/downloads/valgrind-$pkgver.tar.bz2)
 sha1sums=('7a6878bf998c60d1e377a4f22ebece8d9305bda4')
- 
+
 provides=("valgrind=$pkgver-$pkgrel")
 conflicts=('valgrind')
 
 build() {
+  # valgrind does not like stack protector flags
+  CPPFLAGS=${CPPFLAGS/-D_FORTIFY_SOURCE=2/}
+  CFLAGS=${CFLAGS/-fstack-protector-strong/}
+  CXXFLAGS=${CXXFLAGS/-fstack-protector-strong/}
+
   cd valgrind-$pkgver
   ./configure --prefix=/usr --mandir=/usr/share/man --with-mpicc=mpicc
   make


[arch-commits] Commit in snap-pac/repos/community-any (PKGBUILD PKGBUILD)

2017-03-08 Thread NicoHood
Date: Wednesday, March 8, 2017 @ 18:36:42
  Author: nicohood
Revision: 215316

archrelease: copy trunk to community-any

Added:
  snap-pac/repos/community-any/PKGBUILD
(from rev 215315, snap-pac/trunk/PKGBUILD)
Deleted:
  snap-pac/repos/community-any/PKGBUILD

--+
 PKGBUILD |   44 ++--
 1 file changed, 22 insertions(+), 22 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-08 18:36:36 UTC (rev 215315)
+++ PKGBUILD2017-03-08 18:36:42 UTC (rev 215316)
@@ -1,22 +0,0 @@
-# Maintainer: NicoHood 
-# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161
-# Contributor: Wes Barnett 
-
-pkgname=snap-pac
-pkgver=0.9
-pkgrel=1
-pkgdesc="Pacman hooks that use snapper to create pre/post btrfs snapshots like 
openSUSE's YaST"
-arch=('any')
-url="https://github.com/wesbarnett/snap-pac;
-license=('GPL')
-depends=('snapper' 'pacman')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"
-
"${pkgname}-${pkgver}.tar.gz.sig::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig")
-validpgpkeys=('8535CEF3F3C38EE69555BF67E4B5E45AA3B8C5C3')
-sha512sums=('7d80fcbed8b02cdc3e21a8f4137eee0f3f9fbd374660b7344853afea458d1ce7e9731b833eb521e9802782593f868d293b93ced8279b4c3e291004e01eda59ce'
-'SKIP')
-
-package() {
-cd "${pkgname}"
-make DESTDIR="${pkgdir}" install
-}

Copied: snap-pac/repos/community-any/PKGBUILD (from rev 215315, 
snap-pac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-08 18:36:42 UTC (rev 215316)
@@ -0,0 +1,22 @@
+# Maintainer: NicoHood 
+# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161
+# Contributor: Wes Barnett 
+
+pkgname=snap-pac
+pkgver=1.0
+pkgrel=1
+pkgdesc="Pacman hooks that use snapper to create pre/post btrfs snapshots like 
openSUSE's YaST"
+arch=('any')
+url="https://github.com/wesbarnett/snap-pac;
+license=('GPL')
+depends=('snapper' 'pacman' 'btrfs-progs' 'procps-ng')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"
+
"${pkgname}-${pkgver}.tar.gz.sig::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig")
+validpgpkeys=('8535CEF3F3C38EE69555BF67E4B5E45AA3B8C5C3')
+sha512sums=('f4530fb227532c4942d55435660a036541045facca6c2c6ad2d7c17c62f1656e4ed37e780dbfc1714c0a9b945c4d89b16b0c173e449937a845fe584cc7b1af41'
+'SKIP')
+
+package() {
+cd "${pkgname}"
+make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in snap-pac/trunk (PKGBUILD)

2017-03-08 Thread NicoHood
Date: Wednesday, March 8, 2017 @ 18:36:36
  Author: nicohood
Revision: 215315

upgpkg: snap-pac 1.0-1

Modified:
  snap-pac/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 18:36:13 UTC (rev 215314)
+++ PKGBUILD2017-03-08 18:36:36 UTC (rev 215315)
@@ -3,17 +3,17 @@
 # Contributor: Wes Barnett 
 
 pkgname=snap-pac
-pkgver=0.9
+pkgver=1.0
 pkgrel=1
 pkgdesc="Pacman hooks that use snapper to create pre/post btrfs snapshots like 
openSUSE's YaST"
 arch=('any')
 url="https://github.com/wesbarnett/snap-pac;
 license=('GPL')
-depends=('snapper' 'pacman')
+depends=('snapper' 'pacman' 'btrfs-progs' 'procps-ng')
 
source=("${pkgname}-${pkgver}.tar.gz::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"
 
"${pkgname}-${pkgver}.tar.gz.sig::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig")
 validpgpkeys=('8535CEF3F3C38EE69555BF67E4B5E45AA3B8C5C3')
-sha512sums=('7d80fcbed8b02cdc3e21a8f4137eee0f3f9fbd374660b7344853afea458d1ce7e9731b833eb521e9802782593f868d293b93ced8279b4c3e291004e01eda59ce'
+sha512sums=('f4530fb227532c4942d55435660a036541045facca6c2c6ad2d7c17c62f1656e4ed37e780dbfc1714c0a9b945c4d89b16b0c173e449937a845fe584cc7b1af41'
 'SKIP')
 
 package() {


[arch-commits] Commit in gcc-multilib/trunk (PKGBUILD)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 18:36:13
  Author: heftig
Revision: 215314

6.3.1-2

Modified:
  gcc-multilib/trunk/PKGBUILD

--+
 PKGBUILD |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 18:14:32 UTC (rev 215313)
+++ PKGBUILD2017-03-08 18:36:13 UTC (rev 215314)
@@ -9,14 +9,14 @@
 pkgver=6.3.1
 _pkgver=6
 _islver=0.16.1
-pkgrel=1
-_commit=4ca53f06ff7d346ef8021a23108f23a5406a0417
+pkgrel=2
+_commit=4fc407888a30c5d953816b05c8a8e98ec2ab3101
 pkgdesc="The GNU Compiler Collection for multilib"
 arch=('x86_64')
 license=('GPL' 'LGPL' 'FDL' 'custom')
 url="http://gcc.gnu.org;
-makedepends=('binutils>=2.26' 'libmpc' 'gcc-ada-multilib' 'doxygen' 'git'
- 'lib32-glibc>=2.24')
+makedepends=('binutils>=2.28' 'libmpc' 'gcc-ada-multilib' 'doxygen' 'git'
+ 'lib32-glibc>=2.25')
 checkdepends=('dejagnu' 'inetutils')
 options=('!emptydirs')
 source=(git+https://gcc.gnu.org/git/gcc.git#commit=${_commit}
@@ -101,7 +101,7 @@
 package_lib32-gcc-libs()
 {
   pkgdesc="Runtime libraries shipped by GCC (32-bit)"
-  depends=('lib32-glibc>=2.24')
+  depends=('lib32-glibc>=2.25')
   options=('!emptydirs' '!strip')
 
   cd ${srcdir}/gcc-build
@@ -138,7 +138,7 @@
 package_gcc-libs-multilib()
 {
   pkgdesc="Runtime libraries shipped by GCC for multilib"
-  depends=('glibc>=2.24' "lib32-gcc-libs=$pkgver-$pkgrel")
+  depends=('glibc>=2.25' "lib32-gcc-libs=$pkgver-$pkgrel")
   provides=("gcc-libs=$pkgver-$pkgrel")
   conflicts=('gcc-libs')
   options=('!emptydirs' '!strip')
@@ -188,7 +188,7 @@
 package_gcc-multilib()
 {
   pkgdesc="The GNU Compiler Collection - C and C++ frontends for multilib"
-  depends=("gcc-libs-multilib=$pkgver-$pkgrel" 'binutils>=2.26' 'libmpc')
+  depends=("gcc-libs-multilib=$pkgver-$pkgrel" 'binutils>=2.28' 'libmpc')
   groups=('multilib-devel')
   options=('staticlibs')
   provides=("gcc=$pkgver-$pkgrel")


[arch-commits] Commit in (go)

2017-03-08 Thread Bartłomiej Piotrowski
Date: Wednesday, March 8, 2017 @ 18:14:32
  Author: bpiotrowski
Revision: 215313

community2extra: Moving go from community to extra

Deleted:
  go/


[arch-commits] Commit in go/repos (4 files)

2017-03-08 Thread Bartłomiej Piotrowski
Date: Wednesday, March 8, 2017 @ 18:13:57
  Author: bpiotrowski
Revision: 290147

archrelease: copy trunk to extra-x86_64, extra-i686

Added:
  go/repos/extra-i686/
  go/repos/extra-i686/PKGBUILD
(from rev 290146, go/trunk/PKGBUILD)
  go/repos/extra-x86_64/
  go/repos/extra-x86_64/PKGBUILD
(from rev 290146, go/trunk/PKGBUILD)

---+
 extra-i686/PKGBUILD   |  186 
 extra-x86_64/PKGBUILD |  186 
 2 files changed, 372 insertions(+)

Copied: go/repos/extra-i686/PKGBUILD (from rev 290146, go/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-08 18:13:57 UTC (rev 290147)
@@ -0,0 +1,186 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Maintainer: Pierre Neidhardt 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Rémy Oudompheng 
+# Contributor: Andres Perera 
+# Contributor: Matthew Bauer 
+# Contributor: Christian Himpel 
+# Contributor: Mike Rosset 
+# Contributor: Daniel YC Lin 
+# Contributor: John Luebs 
+
+pkgname=('go' 'go-tools')
+epoch=2
+pkgver=1.8
+pkgrel=1
+arch=('x86_64' 'i686')
+url='http://golang.org/'
+license=('BSD')
+makedepends=('inetutils' 'git' 'go')
+options=('!strip' 'staticlibs')
+source=("$pkgname-$pkgver::git+https://go.googlesource.com/go#tag=$pkgname$pkgver;)
+md5sums=('SKIP')
+_gourl=golang.org/x/tools/cmd
+
+build() {
+  cd "$pkgname-$pkgver/src"
+
+  export GOROOT="$srcdir/$pkgname-$pkgver"
+  export GOBIN="$GOROOT/bin"
+  export GOPATH="$srcdir/"
+  export GOROOT_FINAL=/usr/lib/go
+  export GOROOT_BOOTSTRAP=/usr/lib/go
+
+  #
+  # Arch Linux normally does not enable SSE2 for i686 because of older CPUs.
+  #
+  # However, exceptions are made for:
+  #  * Chromium, which is not expected to be used on older i686 CPUs
+  #  * Julia, which requires SSE2
+  #
+  # Go is so slow that it is unusable on i686 when SSE2 is not enabled,
+  # so I am also making an exception for Go.
+  #
+  # If you really want to build Go without SSE2 support, just uncomment the
+  # following export and rebuild:
+  #
+  # export GO386=387
+  #
+
+  # Crosscompilation for various platforms. This is not strictly required as 
the
+  # compiler can generate libraries on the fly. Prebuilding the libs speeds up
+  # crosscompilation time.
+  #
+  # for os in darwin freebsd linux windows; do
+  #   for arch in 386 amd64 arm; do
+  # export GOOS="$os"
+  # export GOARCH="$arch"
+  # bash make.bash --no-clean
+  #   done
+  # done
+
+  export GOOS=linux
+  case "$CARCH" in
+  x86_64) export GOARCH=amd64 ;;
+  i686) export GOARCH=386 ;;
+  esac
+
+  bash make.bash --no-clean
+
+  # System-wide tools
+  for tool in godex godoc goimports gomvpkg gorename gotype; do
+$GOROOT/bin/go get -d golang.org/x/tools/cmd/$tool
+$GOROOT/bin/go build -v -x -o $GOPATH/bin/$tool $_gourl/$tool
+  done
+
+  # Distribution tools
+  for tool in benchcmp bundle callgraph digraph eg fiximports guru 
html2article present ssadump stress stringer ; do
+$GOROOT/bin/go get -d golang.org/x/tools/cmd/$tool
+$GOROOT/bin/go build -v -x -o $GOPATH/pkg/tool/${GOOS}_$GOARCH/$tool 
golang.org/x/tools/cmd/$tool
+  done
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  #export GO386=387
+
+  export GOOS=linux
+  case "$CARCH" in
+x86_64) GOARCH=amd64 ;;
+i686) GOARCH=386 ;;
+  esac
+
+  export GOROOT="$srcdir/$pkgname-$pkgver"
+  export GOBIN="$GOROOT/bin"
+  export PATH="$srcdir/$pkgname-$pkgver/bin:$PATH"
+  export GOROOT_BOOTSTRAP=/usr/lib/go
+
+  for tool in goimports gomvpkg gorename gotype \
+benchcmp bundle callgraph digraph eg fiximports guru html2article present 
ssadump stress stringer; do
+GOPATH="$srcdir" $GOROOT/bin/go test -v -x $_gourl/$tool
+  done
+
+  # TestSimpleMulticastListener will fail in standard chroot
+  cd src && bash run.bash --no-rebuild || true
+}
+
+package_go() {
+  pkgdesc='Compiler and tools for the Go programming language from Google'
+  optdepends=('mercurial: for fetching sources from mercurial repositories'
+  'git: for fetching sources from git repositories'
+  'bzr: for fetching sources from bazaar repositories'
+  'subversion: for fetching sources from subversion repositories'
+  'go-tools: doc, goimports, gorename, and other tools.')
+
+  cd "$pkgname-$pkgver"
+
+  export GOROOT="$srcdir/$pkgname-$pkgver"
+  export GOBIN="$GOROOT/bin"
+  export GOROOT_BOOTSTRAP=/usr/lib/go
+
+  case "$CARCH" in
+  x86_64) GOARCH=amd64 ;;
+  i686) GOARCH=386 ;;
+  esac
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/go/LICENSE"
+
+  mkdir -p 
"$pkgdir/usr/"{share/go,lib/go,lib/go/pkg,lib/go/src,lib/go/site/src}
+
+  

[arch-commits] Commit in (go go/repos go/trunk go/trunk/PKGBUILD)

2017-03-08 Thread Bartłomiej Piotrowski
Date: Wednesday, March 8, 2017 @ 18:13:52
  Author: bpiotrowski
Revision: 290146

community2extra: Moving go from community to extra

Added:
  go/
  go/repos/
  go/trunk/
  go/trunk/PKGBUILD

--+
 PKGBUILD |  186 +
 1 file changed, 186 insertions(+)

Added: go/trunk/PKGBUILD
===
--- go/trunk/PKGBUILD   (rev 0)
+++ go/trunk/PKGBUILD   2017-03-08 18:13:52 UTC (rev 290146)
@@ -0,0 +1,186 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Maintainer: Pierre Neidhardt 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Rémy Oudompheng 
+# Contributor: Andres Perera 
+# Contributor: Matthew Bauer 
+# Contributor: Christian Himpel 
+# Contributor: Mike Rosset 
+# Contributor: Daniel YC Lin 
+# Contributor: John Luebs 
+
+pkgname=('go' 'go-tools')
+epoch=2
+pkgver=1.8
+pkgrel=1
+arch=('x86_64' 'i686')
+url='http://golang.org/'
+license=('BSD')
+makedepends=('inetutils' 'git' 'go')
+options=('!strip' 'staticlibs')
+source=("$pkgname-$pkgver::git+https://go.googlesource.com/go#tag=$pkgname$pkgver;)
+md5sums=('SKIP')
+_gourl=golang.org/x/tools/cmd
+
+build() {
+  cd "$pkgname-$pkgver/src"
+
+  export GOROOT="$srcdir/$pkgname-$pkgver"
+  export GOBIN="$GOROOT/bin"
+  export GOPATH="$srcdir/"
+  export GOROOT_FINAL=/usr/lib/go
+  export GOROOT_BOOTSTRAP=/usr/lib/go
+
+  #
+  # Arch Linux normally does not enable SSE2 for i686 because of older CPUs.
+  #
+  # However, exceptions are made for:
+  #  * Chromium, which is not expected to be used on older i686 CPUs
+  #  * Julia, which requires SSE2
+  #
+  # Go is so slow that it is unusable on i686 when SSE2 is not enabled,
+  # so I am also making an exception for Go.
+  #
+  # If you really want to build Go without SSE2 support, just uncomment the
+  # following export and rebuild:
+  #
+  # export GO386=387
+  #
+
+  # Crosscompilation for various platforms. This is not strictly required as 
the
+  # compiler can generate libraries on the fly. Prebuilding the libs speeds up
+  # crosscompilation time.
+  #
+  # for os in darwin freebsd linux windows; do
+  #   for arch in 386 amd64 arm; do
+  # export GOOS="$os"
+  # export GOARCH="$arch"
+  # bash make.bash --no-clean
+  #   done
+  # done
+
+  export GOOS=linux
+  case "$CARCH" in
+  x86_64) export GOARCH=amd64 ;;
+  i686) export GOARCH=386 ;;
+  esac
+
+  bash make.bash --no-clean
+
+  # System-wide tools
+  for tool in godex godoc goimports gomvpkg gorename gotype; do
+$GOROOT/bin/go get -d golang.org/x/tools/cmd/$tool
+$GOROOT/bin/go build -v -x -o $GOPATH/bin/$tool $_gourl/$tool
+  done
+
+  # Distribution tools
+  for tool in benchcmp bundle callgraph digraph eg fiximports guru 
html2article present ssadump stress stringer ; do
+$GOROOT/bin/go get -d golang.org/x/tools/cmd/$tool
+$GOROOT/bin/go build -v -x -o $GOPATH/pkg/tool/${GOOS}_$GOARCH/$tool 
golang.org/x/tools/cmd/$tool
+  done
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  #export GO386=387
+
+  export GOOS=linux
+  case "$CARCH" in
+x86_64) GOARCH=amd64 ;;
+i686) GOARCH=386 ;;
+  esac
+
+  export GOROOT="$srcdir/$pkgname-$pkgver"
+  export GOBIN="$GOROOT/bin"
+  export PATH="$srcdir/$pkgname-$pkgver/bin:$PATH"
+  export GOROOT_BOOTSTRAP=/usr/lib/go
+
+  for tool in goimports gomvpkg gorename gotype \
+benchcmp bundle callgraph digraph eg fiximports guru html2article present 
ssadump stress stringer; do
+GOPATH="$srcdir" $GOROOT/bin/go test -v -x $_gourl/$tool
+  done
+
+  # TestSimpleMulticastListener will fail in standard chroot
+  cd src && bash run.bash --no-rebuild || true
+}
+
+package_go() {
+  pkgdesc='Compiler and tools for the Go programming language from Google'
+  optdepends=('mercurial: for fetching sources from mercurial repositories'
+  'git: for fetching sources from git repositories'
+  'bzr: for fetching sources from bazaar repositories'
+  'subversion: for fetching sources from subversion repositories'
+  'go-tools: doc, goimports, gorename, and other tools.')
+
+  cd "$pkgname-$pkgver"
+
+  export GOROOT="$srcdir/$pkgname-$pkgver"
+  export GOBIN="$GOROOT/bin"
+  export GOROOT_BOOTSTRAP=/usr/lib/go
+
+  case "$CARCH" in
+  x86_64) GOARCH=amd64 ;;
+  i686) GOARCH=386 ;;
+  esac
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/go/LICENSE"
+
+  mkdir -p 
"$pkgdir/usr/"{share/go,lib/go,lib/go/pkg,lib/go/src,lib/go/site/src}
+
+  cp -r doc misc -t "$pkgdir/usr/share/go"
+  ln -s /usr/share/go/doc "$pkgdir/usr/lib/go/doc"
+  cp -a bin "$pkgdir/usr"
+  cp -a pkg/{include,linux_$GOARCH,tool} "$pkgdir/usr/lib/go/pkg"
+  # The 'race' folder is not always generated for all architectures.
+  [ -d 

[arch-commits] Commit in detox/repos (4 files)

2017-03-08 Thread Jaroslav Lichtblau
Date: Wednesday, March 8, 2017 @ 17:43:39
  Author: jlichtblau
Revision: 215310

archrelease: copy trunk to community-i686, community-x86_64

Added:
  detox/repos/community-i686/
  detox/repos/community-i686/PKGBUILD
(from rev 215309, detox/trunk/PKGBUILD)
  detox/repos/community-x86_64/
  detox/repos/community-x86_64/PKGBUILD
(from rev 215309, detox/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   31 +++
 community-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: detox/repos/community-i686/PKGBUILD (from rev 215309, 
detox/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-08 17:43:39 UTC (rev 215310)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=detox
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="An utility designed to clean up filenames by replacing characters 
with standard equivalents"
+arch=('i686' 'x86_64')
+url="https://github.com/dharple/detox;
+license=('BSD')
+makedepends=('flex')
+backup=('etc/detox/detoxrc')
+source=($pkgname-$pkgver.tar.gz::https://github.com/dharple/detox/archive/v1.3.0.tar.gz)
+sha256sums=('00daf6b019b51c7bbc3ac96dc18fd886c14497c3372dd297bb134c84')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  autoreconf --install
+  ./configure --prefix=/usr --sysconfdir=/etc/detox
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+#license file
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: detox/repos/community-x86_64/PKGBUILD (from rev 215309, 
detox/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-08 17:43:39 UTC (rev 215310)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=detox
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="An utility designed to clean up filenames by replacing characters 
with standard equivalents"
+arch=('i686' 'x86_64')
+url="https://github.com/dharple/detox;
+license=('BSD')
+makedepends=('flex')
+backup=('etc/detox/detoxrc')
+source=($pkgname-$pkgver.tar.gz::https://github.com/dharple/detox/archive/v1.3.0.tar.gz)
+sha256sums=('00daf6b019b51c7bbc3ac96dc18fd886c14497c3372dd297bb134c84')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  autoreconf --install
+  ./configure --prefix=/usr --sysconfdir=/etc/detox
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+#license file
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in (detox detox/repos detox/trunk detox/trunk/PKGBUILD)

2017-03-08 Thread Jaroslav Lichtblau
Date: Wednesday, March 8, 2017 @ 17:41:19
  Author: jlichtblau
Revision: 215309

detox added to [community] repo
AUR has 59 votes 

Added:
  detox/
  detox/repos/
  detox/trunk/
  detox/trunk/PKGBUILD

--+
 PKGBUILD |   31 +++
 1 file changed, 31 insertions(+)

Added: detox/trunk/PKGBUILD
===
--- detox/trunk/PKGBUILD(rev 0)
+++ detox/trunk/PKGBUILD2017-03-08 17:41:19 UTC (rev 215309)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=detox
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="An utility designed to clean up filenames by replacing characters 
with standard equivalents"
+arch=('i686' 'x86_64')
+url="https://github.com/dharple/detox;
+license=('BSD')
+makedepends=('flex')
+backup=('etc/detox/detoxrc')
+source=($pkgname-$pkgver.tar.gz::https://github.com/dharple/detox/archive/v1.3.0.tar.gz)
+sha256sums=('00daf6b019b51c7bbc3ac96dc18fd886c14497c3372dd297bb134c84')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  autoreconf --install
+  ./configure --prefix=/usr --sysconfdir=/etc/detox
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+#license file
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}


Property changes on: detox/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in zabbix/trunk (6 files)

2017-03-08 Thread Bartłomiej Piotrowski
Date: Wednesday, March 8, 2017 @ 17:39:27
  Author: bpiotrowski
Revision: 290144

upgpkg: zabbix 3.2.4-2

add split package with proxy

Added:
  zabbix/trunk/zabbix-proxy-mysql.service
  zabbix/trunk/zabbix-proxy-pgsql.service
  zabbix/trunk/zabbix-proxy.service
  zabbix/trunk/zabbix-proxy.sysusers
  zabbix/trunk/zabbix-proxy.tmpfiles
Modified:
  zabbix/trunk/PKGBUILD

+
 PKGBUILD   |   67 +++
 zabbix-proxy-mysql.service |   12 +++
 zabbix-proxy-pgsql.service |   12 +++
 zabbix-proxy.service   |   12 +++
 zabbix-proxy.sysusers  |1 
 zabbix-proxy.tmpfiles  |1 
 6 files changed, 87 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 15:30:11 UTC (rev 290143)
+++ PKGBUILD2017-03-08 17:39:27 UTC (rev 290144)
@@ -3,31 +3,32 @@
 # Maintainer: Florian Pritz 
 
 pkgbase=zabbix
-pkgname=(zabbix-server zabbix-agent zabbix-frontend-php)
+pkgname=(zabbix-server zabbix-agent zabbix-proxy zabbix-frontend-php)
 pkgver=3.2.4
-pkgrel=1
+pkgrel=2
 arch=(i686 x86_64)
 url='http://www.zabbix.com/'
 license=(GPL)
 makedepends=(postgresql-libs libxml2 unixodbc net-snmp libmysqlclient libldap)
 
source=(https://downloads.sourceforge.net/sourceforge/zabbix/zabbix-${pkgver}.tar.gz
-zabbix-agent.service
-zabbix-agent.sysusers
-   zabbix-agent.tmpfiles
-   zabbix-server-mysql.service
-   zabbix-server-pgsql.service
-   zabbix-server.service
-   zabbix-server.sysusers
-   zabbix-server.tmpfiles)
+zabbix-agent.{service,sysusers,tmpfiles}
+   zabbix-server{,-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles}
+   zabbix-proxy{,-mysql,-pgsql}.service zabbix-proxy.{sysusers,tmpfiles})
+
 sha256sums=('22cf19ef5a9478df2281bf518e8be38adc7dbc508bf63111e02388ca7aabeef4'
 '484fa9969eab61eaf20043ae08e2615c0569982dff869c985f2e2065da698c6a'
 'ce3e08b6561a6dab345efba781ad7ce72480133744ca4ed159cf98db14333c3e'
 'c38a871d237b00dd6310dfb02e5a8e1b930e445204e73dde8305bed8baf380ec'
+'5362a7e06cadb9844397a51ef9b3d9269e122a69a66ba83ad569f419815eccae'
 '7b14586f5b418de6a174c35d466e25ee42c5e4d8190eea4663f4b3e905f91216'
 '6badb68ebda21f4c75540c78b4d53c19fe1a7e64cfab269e3ce4167f4488e144'
-'5362a7e06cadb9844397a51ef9b3d9269e122a69a66ba83ad569f419815eccae'
 'ee4d5c0b8fb71eb166223d358285e29396ba49300ce42c2ae630d7efb963bf59'
-'879a7553040d652d1c34044c0ce1e57b809c647b3b037247a5819892a7622a65')
+'879a7553040d652d1c34044c0ce1e57b809c647b3b037247a5819892a7622a65'
+'d06775ebc27cec623d94a3134b4abfb8ddd8e74e3c3483fa1f57f542590e9113'
+'3394dc819a9915f4710cc3ba1ab24c5f1df1547736d2d40b04eec873e8619e8c'
+'7592b3b5b66583a57eec83afed3450bae74f6332125396c1dbeeb46f911cb631'
+'d966cf3587ad3960bf6a139ea90e4730caf0d75589ae168d7b31c6ac9b0f64d4'
+'f842ea0a229513e918ff9641391605d436b7d57cb53d932cdd02e4e8b13c95d9')
 
 prepare() {
   cd $pkgbase-$pkgver
@@ -34,19 +35,20 @@
   sed -i \
 -e '/^LogFile=.*/d' \
 -e 's/# LogType=file/LogType=system/' \
-conf/zabbix_agentd.conf conf/zabbix_server.conf
+conf/zabbix_{agentd,proxy,server}.conf
 }
 
 build() {
   _configure_flags=(
+--disable-static
 --prefix=/usr
+--infodir=/usr/share/info
+--mandir=/usr/share/man
 --sysconfdir=/etc/zabbix
---mandir=/usr/share/man
---infodir=/usr/share/info
---disable-static
---enable-server
 --enable-agent
 --enable-ipv6
+--enable-proxy
+--enable-server
 --with-ldap
 --with-libcurl
 --with-libxml2
@@ -63,12 +65,13 @@
 make clean
 make
 mv src/zabbix_server/zabbix_server{,_$db}
+mv src/zabbix_proxy/zabbix_proxy{,_$db}
   done
 }
 
 package_zabbix-server() {
   pkgdesc='Monitoring software for networks and applications'
-  depends=(net-snmp curl libxml2 sqlite unixodbc)
+  depends=(net-snmp curl libxml2 sqlite unixodbc libldap)
   optdepends=('postgresql-libs: for PostgreSQL support'
   'libmariadbclient: for MariaDB support')
   backup=(etc/zabbix/zabbix_server.conf)
@@ -132,6 +135,34 @@
"$pkgdir/usr/lib/tmpfiles.d/zabbix-agent.conf"
 }
 
+package_zabbix-proxy() {
+  pkgdesc='Data collecting proxy for Zabbix'
+  depends=(net-snmp curl libxml2 sqlite unixodbc libldap)
+  optdepends=('libmysqlclient: for MySQL support'
+  'postgresql-libs: for PostgreSQL support')
+
+  cd $pkgbase-$pkgver
+  for db in postgresql mysql sqlite3; do
+install -Dm755 src/zabbix_proxy/zabbix_proxy_$db \
+  "$pkgdir/usr/bin/zabbix_proxy_$db"
+  done 
+  install -Dm644 conf/zabbix_proxy.conf "$pkgdir/etc/zabbix/zabbix_proxy.conf"
+
+  install -Dm644 "$srcdir/zabbix-proxy.service" \
+

[arch-commits] Commit in zabbix/repos (46 files)

2017-03-08 Thread Bartłomiej Piotrowski
Date: Wednesday, March 8, 2017 @ 17:39:47
  Author: bpiotrowski
Revision: 290145

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  zabbix/repos/testing-i686/PKGBUILD
(from rev 290144, zabbix/trunk/PKGBUILD)
  zabbix/repos/testing-i686/zabbix-agent.service
(from rev 290144, zabbix/trunk/zabbix-agent.service)
  zabbix/repos/testing-i686/zabbix-agent.sysusers
(from rev 290144, zabbix/trunk/zabbix-agent.sysusers)
  zabbix/repos/testing-i686/zabbix-agent.tmpfiles
(from rev 290144, zabbix/trunk/zabbix-agent.tmpfiles)
  zabbix/repos/testing-i686/zabbix-proxy-mysql.service
(from rev 290144, zabbix/trunk/zabbix-proxy-mysql.service)
  zabbix/repos/testing-i686/zabbix-proxy-pgsql.service
(from rev 290144, zabbix/trunk/zabbix-proxy-pgsql.service)
  zabbix/repos/testing-i686/zabbix-proxy.service
(from rev 290144, zabbix/trunk/zabbix-proxy.service)
  zabbix/repos/testing-i686/zabbix-proxy.sysusers
(from rev 290144, zabbix/trunk/zabbix-proxy.sysusers)
  zabbix/repos/testing-i686/zabbix-proxy.tmpfiles
(from rev 290144, zabbix/trunk/zabbix-proxy.tmpfiles)
  zabbix/repos/testing-i686/zabbix-server-mysql.service
(from rev 290144, zabbix/trunk/zabbix-server-mysql.service)
  zabbix/repos/testing-i686/zabbix-server-pgsql.service
(from rev 290144, zabbix/trunk/zabbix-server-pgsql.service)
  zabbix/repos/testing-i686/zabbix-server.service
(from rev 290144, zabbix/trunk/zabbix-server.service)
  zabbix/repos/testing-i686/zabbix-server.sysusers
(from rev 290144, zabbix/trunk/zabbix-server.sysusers)
  zabbix/repos/testing-i686/zabbix-server.tmpfiles
(from rev 290144, zabbix/trunk/zabbix-server.tmpfiles)
  zabbix/repos/testing-x86_64/PKGBUILD
(from rev 290144, zabbix/trunk/PKGBUILD)
  zabbix/repos/testing-x86_64/zabbix-agent.service
(from rev 290144, zabbix/trunk/zabbix-agent.service)
  zabbix/repos/testing-x86_64/zabbix-agent.sysusers
(from rev 290144, zabbix/trunk/zabbix-agent.sysusers)
  zabbix/repos/testing-x86_64/zabbix-agent.tmpfiles
(from rev 290144, zabbix/trunk/zabbix-agent.tmpfiles)
  zabbix/repos/testing-x86_64/zabbix-proxy-mysql.service
(from rev 290144, zabbix/trunk/zabbix-proxy-mysql.service)
  zabbix/repos/testing-x86_64/zabbix-proxy-pgsql.service
(from rev 290144, zabbix/trunk/zabbix-proxy-pgsql.service)
  zabbix/repos/testing-x86_64/zabbix-proxy.service
(from rev 290144, zabbix/trunk/zabbix-proxy.service)
  zabbix/repos/testing-x86_64/zabbix-proxy.sysusers
(from rev 290144, zabbix/trunk/zabbix-proxy.sysusers)
  zabbix/repos/testing-x86_64/zabbix-proxy.tmpfiles
(from rev 290144, zabbix/trunk/zabbix-proxy.tmpfiles)
  zabbix/repos/testing-x86_64/zabbix-server-mysql.service
(from rev 290144, zabbix/trunk/zabbix-server-mysql.service)
  zabbix/repos/testing-x86_64/zabbix-server-pgsql.service
(from rev 290144, zabbix/trunk/zabbix-server-pgsql.service)
  zabbix/repos/testing-x86_64/zabbix-server.service
(from rev 290144, zabbix/trunk/zabbix-server.service)
  zabbix/repos/testing-x86_64/zabbix-server.sysusers
(from rev 290144, zabbix/trunk/zabbix-server.sysusers)
  zabbix/repos/testing-x86_64/zabbix-server.tmpfiles
(from rev 290144, zabbix/trunk/zabbix-server.tmpfiles)
Deleted:
  zabbix/repos/testing-i686/PKGBUILD
  zabbix/repos/testing-i686/zabbix-agent.service
  zabbix/repos/testing-i686/zabbix-agent.sysusers
  zabbix/repos/testing-i686/zabbix-agent.tmpfiles
  zabbix/repos/testing-i686/zabbix-server-mysql.service
  zabbix/repos/testing-i686/zabbix-server-pgsql.service
  zabbix/repos/testing-i686/zabbix-server.service
  zabbix/repos/testing-i686/zabbix-server.sysusers
  zabbix/repos/testing-i686/zabbix-server.tmpfiles
  zabbix/repos/testing-x86_64/PKGBUILD
  zabbix/repos/testing-x86_64/zabbix-agent.service
  zabbix/repos/testing-x86_64/zabbix-agent.sysusers
  zabbix/repos/testing-x86_64/zabbix-agent.tmpfiles
  zabbix/repos/testing-x86_64/zabbix-server-mysql.service
  zabbix/repos/testing-x86_64/zabbix-server-pgsql.service
  zabbix/repos/testing-x86_64/zabbix-server.service
  zabbix/repos/testing-x86_64/zabbix-server.sysusers
  zabbix/repos/testing-x86_64/zabbix-server.tmpfiles

+
 /PKGBUILD  |  348 +++
 /zabbix-agent.service  |   22 +
 /zabbix-agent.sysusers |2 
 /zabbix-agent.tmpfiles |2 
 /zabbix-server-mysql.service   |   24 +
 /zabbix-server-pgsql.service   |   24 +
 /zabbix-server.service |   24 +
 /zabbix-server.sysusers|2 
 /zabbix-server.tmpfiles|2 
 testing-i686/PKGBUILD  |  143 ---
 testing-i686/zabbix-agent.service  |   11 
 testing-i686/zabbix-agent.sysusers |1 
 testing-i686/zabbix-agent.tmpfiles |1 
 testing-i686/zabbix-proxy-mysql.service|   12 
 

[arch-commits] Commit in gearmand/repos (16 files)

2017-03-08 Thread Massimiliano Torromeo
Date: Wednesday, March 8, 2017 @ 17:20:02
  Author: mtorromeo
Revision: 215308

archrelease: copy trunk to community-i686, community-x86_64

Added:
  gearmand/repos/community-i686/PKGBUILD
(from rev 215307, gearmand/trunk/PKGBUILD)
  gearmand/repos/community-i686/gearmand.conf
(from rev 215307, gearmand/trunk/gearmand.conf)
  gearmand/repos/community-i686/gearmand.service
(from rev 215307, gearmand/trunk/gearmand.service)
  gearmand/repos/community-i686/user.conf
(from rev 215307, gearmand/trunk/user.conf)
  gearmand/repos/community-x86_64/PKGBUILD
(from rev 215307, gearmand/trunk/PKGBUILD)
  gearmand/repos/community-x86_64/gearmand.conf
(from rev 215307, gearmand/trunk/gearmand.conf)
  gearmand/repos/community-x86_64/gearmand.service
(from rev 215307, gearmand/trunk/gearmand.service)
  gearmand/repos/community-x86_64/user.conf
(from rev 215307, gearmand/trunk/user.conf)
Deleted:
  gearmand/repos/community-i686/PKGBUILD
  gearmand/repos/community-i686/gearmand.conf
  gearmand/repos/community-i686/gearmand.service
  gearmand/repos/community-i686/user.conf
  gearmand/repos/community-x86_64/PKGBUILD
  gearmand/repos/community-x86_64/gearmand.conf
  gearmand/repos/community-x86_64/gearmand.service
  gearmand/repos/community-x86_64/user.conf

---+
 /PKGBUILD |  102 
 /gearmand.conf|2 
 /gearmand.service |   24 
 /user.conf|2 
 community-i686/PKGBUILD   |   52 --
 community-i686/gearmand.conf  |1 
 community-i686/gearmand.service   |   12 
 community-i686/user.conf  |1 
 community-x86_64/PKGBUILD |   52 --
 community-x86_64/gearmand.conf|1 
 community-x86_64/gearmand.service |   12 
 community-x86_64/user.conf|1 
 12 files changed, 130 insertions(+), 132 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-08 17:19:33 UTC (rev 215307)
+++ community-i686/PKGBUILD 2017-03-08 17:20:02 UTC (rev 215308)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Lev Lybin 
-# Contributor: Vadym Abramchuk 
-# Contributor: John Gerritse 
-
-pkgname=gearmand
-pkgver=1.1.12
-pkgrel=17
-pkgdesc="Distributed job queue server."
-arch=('i686' 'x86_64')
-depends=('libevent' 'boost-libs' 'libmariadbclient' 'postgresql-libs' 'sqlite' 
'hiredis')
-makedepends=('boost' 'gperf' 'python-sphinx')
-conflicts=('gearman')
-replaces=('gearman')
-provides=("gearman=$pkgver")
-url="http://gearman.org/;
-license=('CUSTOM')
-backup=('etc/gearmand.conf')
-source=(https://launchpad.net/$pkgname/1.2/$pkgver/+download/$pkgname-$pkgver.tar.gz
-gearmand.service
-gearmand.conf
-user.conf)
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  export LDFLAGS="$LDFLAGS -lboost_system"
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/run \
---disable-static \
---enable-ssl
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-
-  cd "$srcdir"
-  install -Dm644 gearmand.service 
"$pkgdir"/usr/lib/systemd/system/gearmand.service
-  install -Dm644 gearmand.conf "$pkgdir"/etc/gearmand.conf
-   install -Dm644 user.conf "$pkgdir"/usr/lib/sysusers.d/gearmand.conf
-}
-
-sha256sums=('973d7a3523141a84c7b757c6f243febbc89a3631e919b532c056c814d8738acb'
-'dee38ad4e614969047253b8c4996b8cdf33c981b0df215b6627356fd4cbafa33'
-'6c14fdcd94105338e13bdd59dbed4f9b77430a517b2c125ac2e6d3bc43bdf506'
-'02f11878d7c32039385586e527006f5cbb08444007f6c72a012e8acd8a855aef')

Copied: gearmand/repos/community-i686/PKGBUILD (from rev 215307, 
gearmand/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-08 17:20:02 UTC (rev 215308)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Lev Lybin 
+# Contributor: Vadym Abramchuk 
+# Contributor: John Gerritse 
+
+pkgname=gearmand
+pkgver=1.1.15
+pkgrel=1
+pkgdesc="Distributed job queue server."
+arch=('i686' 'x86_64')
+depends=('libevent' 'boost-libs' 'libmariadbclient' 'postgresql-libs' 'sqlite' 
'hiredis')
+makedepends=('boost' 'gperf' 'python-sphinx')
+conflicts=('gearman')
+replaces=('gearman')
+provides=("gearman=$pkgver")
+url="http://gearman.org/;
+license=('CUSTOM')
+backup=('etc/gearmand.conf')

[arch-commits] Commit in gearmand/trunk (PKGBUILD)

2017-03-08 Thread Massimiliano Torromeo
Date: Wednesday, March 8, 2017 @ 17:19:33
  Author: mtorromeo
Revision: 215307

upgpkg: gearmand 1.1.15-1

Modified:
  gearmand/trunk/PKGBUILD

--+
 PKGBUILD |   15 +++
 1 file changed, 7 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 15:47:06 UTC (rev 215306)
+++ PKGBUILD2017-03-08 17:19:33 UTC (rev 215307)
@@ -5,8 +5,8 @@
 # Contributor: John Gerritse 
 
 pkgname=gearmand
-pkgver=1.1.12
-pkgrel=18
+pkgver=1.1.15
+pkgrel=1
 pkgdesc="Distributed job queue server."
 arch=('i686' 'x86_64')
 depends=('libevent' 'boost-libs' 'libmariadbclient' 'postgresql-libs' 'sqlite' 
'hiredis')
@@ -17,10 +17,14 @@
 url="http://gearman.org/;
 license=('CUSTOM')
 backup=('etc/gearmand.conf')
-source=(https://launchpad.net/$pkgname/1.2/$pkgver/+download/$pkgname-$pkgver.tar.gz
+source=(https://github.com/gearman/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz
 gearmand.service
 gearmand.conf
 user.conf)
+sha256sums=('ac61a005c5395a525d963b9f60ec387d371b8709e91bd4a2546a89d3e80a4cd0'
+'dee38ad4e614969047253b8c4996b8cdf33c981b0df215b6627356fd4cbafa33'
+'6c14fdcd94105338e13bdd59dbed4f9b77430a517b2c125ac2e6d3bc43bdf506'
+'02f11878d7c32039385586e527006f5cbb08444007f6c72a012e8acd8a855aef')
 
 build() {
   cd "$srcdir"/$pkgname-$pkgver
@@ -45,8 +49,3 @@
   install -Dm644 gearmand.conf "$pkgdir"/etc/gearmand.conf
install -Dm644 user.conf "$pkgdir"/usr/lib/sysusers.d/gearmand.conf
 }
-
-sha256sums=('973d7a3523141a84c7b757c6f243febbc89a3631e919b532c056c814d8738acb'
-'dee38ad4e614969047253b8c4996b8cdf33c981b0df215b6627356fd4cbafa33'
-'6c14fdcd94105338e13bdd59dbed4f9b77430a517b2c125ac2e6d3bc43bdf506'
-'02f11878d7c32039385586e527006f5cbb08444007f6c72a012e8acd8a855aef')


[arch-commits] Commit in kotlin/repos/community-any (PKGBUILD PKGBUILD)

2017-03-08 Thread Alexander Rødseth
Date: Wednesday, March 8, 2017 @ 15:47:06
  Author: arodseth
Revision: 215306

archrelease: copy trunk to community-any

Added:
  kotlin/repos/community-any/PKGBUILD
(from rev 215305, kotlin/trunk/PKGBUILD)
Deleted:
  kotlin/repos/community-any/PKGBUILD

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-03-08 15:46:05 UTC (rev 215305)
+++ PKGBUILD2017-03-08 15:47:06 UTC (rev 215306)
@@ -1,52 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Contributor: Romain Gautier 
-
-pkgname=kotlin
-pkgver=1.0.6
-pkgrel=1
-pkgdesc='The Kotlin programming language'
-arch=('any')
-url='http://kotlinlang.org/'
-license=('apache' 'custom')
-makedepends=('setconf')
-depends=('bash' 'java-environment>=6')
-source=("https://github.com/JetBrains/kotlin/releases/download/v$pkgver/kotlin-compiler-$pkgver.zip;)
-sha256sums=('42a20b72d1e90f9efa9d13aab97559f478cc32b7c2e6da8569cdc3741a8e14b6')
-
-prepare() {
-  cd "${pkgname}c/bin"
-
-  setconf kotlin DIR /usr/bin
-  setconf kotlinc KOTLIN_HOME "/usr/share/$pkgname"
-  setconf kotlinc-js DIR /usr/bin
-  setconf kotlinc-jvm DIR /usr/bin
-}
-
-package() {
-  cd "${pkgname}c"
-
-  msg2 'Packaging executables...'
-  install -Dm755 bin/kotlinc "$pkgdir/usr/bin/kotlinc"
-  install -Dm755 bin/kotlin "$pkgdir/usr/bin/kotlin"
-  install -Dm755 bin/kotlinc-js "$pkgdir/usr/bin/kotlinc-js"
-  install -Dm755 bin/kotlinc-jvm "$pkgdir/usr/bin/kotlinc-jvm"
-
-  msg2 'Packaging jar files...'
-  cd "$srcdir/${pkgname}c/lib"
-  install -d "$pkgdir/usr/share/$pkgname/lib"
-  for jar in *.jar; do
-install -Dm644 "$jar" "$pkgdir/usr/share/$pkgname/lib"
-  done
-
-  msg2 'Packaging licenses...'
-  cd "$srcdir/${pkgname}c/license"
-  install -d "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm644 NOTICE.txt "$pkgdir/usr/share/licenses/$pkgname"
-  cd third_party
-  for txt in *.txt; do
-install -Dm644 "$txt" "$pkgdir/usr/share/licenses/$pkgname"
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: kotlin/repos/community-any/PKGBUILD (from rev 215305, 
kotlin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-03-08 15:47:06 UTC (rev 215306)
@@ -0,0 +1,52 @@
+# Maintainer: Alexander F Rødseth 
+# Contributor: Romain Gautier 
+
+pkgname=kotlin
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='The Kotlin programming language'
+arch=('any')
+url='http://kotlinlang.org/'
+license=('apache' 'custom')
+makedepends=('setconf')
+depends=('bash' 'java-environment>=6')
+source=("https://github.com/JetBrains/kotlin/releases/download/v${pkgver%.0}/kotlin-compiler-${pkgver%.0}.zip;)
+sha256sums=('aa44db28bf3ccdae8842b6b92bec5991eb430a80e580aafbc6a044678a2f359d')
+
+prepare() {
+  cd "${pkgname}c/bin"
+
+  setconf kotlin DIR /usr/bin
+  setconf kotlinc KOTLIN_HOME "/usr/share/$pkgname"
+  setconf kotlinc-js DIR /usr/bin
+  setconf kotlinc-jvm DIR /usr/bin
+}
+
+package() {
+  cd "${pkgname}c"
+
+  msg2 'Packaging executables...'
+  install -Dm755 bin/kotlinc "$pkgdir/usr/bin/kotlinc"
+  install -Dm755 bin/kotlin "$pkgdir/usr/bin/kotlin"
+  install -Dm755 bin/kotlinc-js "$pkgdir/usr/bin/kotlinc-js"
+  install -Dm755 bin/kotlinc-jvm "$pkgdir/usr/bin/kotlinc-jvm"
+
+  msg2 'Packaging jar files...'
+  cd "$srcdir/${pkgname}c/lib"
+  install -d "$pkgdir/usr/share/$pkgname/lib"
+  for jar in *.jar; do
+install -Dm644 "$jar" "$pkgdir/usr/share/$pkgname/lib"
+  done
+
+  msg2 'Packaging licenses...'
+  cd "$srcdir/${pkgname}c/license"
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm644 NOTICE.txt "$pkgdir/usr/share/licenses/$pkgname"
+  cd third_party
+  for txt in *.txt; do
+install -Dm644 "$txt" "$pkgdir/usr/share/licenses/$pkgname"
+  done
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in kotlin/trunk (PKGBUILD)

2017-03-08 Thread Alexander Rødseth
Date: Wednesday, March 8, 2017 @ 15:46:05
  Author: arodseth
Revision: 215305

upgpkg: kotlin 1.1.0-1

Modified:
  kotlin/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 15:17:54 UTC (rev 215304)
+++ PKGBUILD2017-03-08 15:46:05 UTC (rev 215305)
@@ -2,7 +2,7 @@
 # Contributor: Romain Gautier 
 
 pkgname=kotlin
-pkgver=1.0.6
+pkgver=1.1.0
 pkgrel=1
 pkgdesc='The Kotlin programming language'
 arch=('any')
@@ -10,8 +10,8 @@
 license=('apache' 'custom')
 makedepends=('setconf')
 depends=('bash' 'java-environment>=6')
-source=("https://github.com/JetBrains/kotlin/releases/download/v$pkgver/kotlin-compiler-$pkgver.zip;)
-sha256sums=('42a20b72d1e90f9efa9d13aab97559f478cc32b7c2e6da8569cdc3741a8e14b6')
+source=("https://github.com/JetBrains/kotlin/releases/download/v${pkgver%.0}/kotlin-compiler-${pkgver%.0}.zip;)
+sha256sums=('aa44db28bf3ccdae8842b6b92bec5991eb430a80e580aafbc6a044678a2f359d')
 
 prepare() {
   cd "${pkgname}c/bin"


[arch-commits] Commit in (4 files)

2017-03-08 Thread Andreas Radke
Date: Wednesday, March 8, 2017 @ 15:30:11
  Author: andyrtr
Revision: 290143

add pkg required by gssproxy

Added:
  libverto/
  libverto/repos/
  libverto/trunk/
  libverto/trunk/PKGBUILD

--+
 PKGBUILD |   41 +
 1 file changed, 41 insertions(+)

Added: libverto/trunk/PKGBUILD
===
--- libverto/trunk/PKGBUILD (rev 0)
+++ libverto/trunk/PKGBUILD 2017-03-08 15:30:11 UTC (rev 290143)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 290139 2017-03-08 14:58:57Z andyrtr $
+# Maintainer: Andreas Radke 
+# Contributor: Mantas Mikulėnas 
+
+pkgname=libverto
+pkgver=0.2.6
+pkgrel=1
+pkgdesc="Main event loop abstraction library"
+arch=(i686 x86_64)
+url="https://fedorahosted.org/libverto/;
+license=(MIT)
+makedepends=(
+# Supported event loops
+  'glib2'
+  'libev'
+  'libevent'
+  'tevent'
+)
+source=("https://fedorahosted.org/releases/l/i/libverto/libverto-$pkgver.tar.gz;)
+sha256sums=('17eca6a3855f4884e2e7095e91501767d834b3bf313a6f59a93303f54ac91c9e')
+
+prepare() {
+  cd "$srcdir/libverto-$pkgver"
+  autoreconf -i -f
+}
+
+build() {
+  cd "$srcdir/libverto-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/libverto-$pkgver"
+  make DESTDIR="$pkgdir" install
+  sed -i '
+/^prefix=/aexec_prefix=${prefix}
+/^exec_prefix/d
+  ' "$pkgdir/usr/lib/pkgconfig"/*.pc
+  install -Dm0644 "COPYING" "$pkgdir/usr/share/licenses/$pkgname"
+}


[arch-commits] Commit in lib32-glibc/trunk (PKGBUILD)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 15:17:54
  Author: heftig
Revision: 215304

Rest of 2.25-1

Modified:
  lib32-glibc/trunk/PKGBUILD

--+
 PKGBUILD |   34 +++---
 1 file changed, 19 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 14:56:15 UTC (rev 215303)
+++ PKGBUILD2017-03-08 15:17:54 UTC (rev 215304)
@@ -15,7 +15,7 @@
 url="http://www.gnu.org/software/libc;
 license=('GPL' 'LGPL')
 groups=()
-depends=()
+depends=("glibc>=$pkgver")
 makedepends=('gcc-multilib>=6' 'git')
 backup=()
 
@@ -30,7 +30,7 @@
 
 prepare() {
   mkdir glibc-build
-
+  
   cd glibc
   # avoid crashes on i686 memchr-sse2.S
   # https://sourceware.org/bugzilla/show_bug.cgi?id=21182
@@ -76,23 +76,24 @@
   --disable-werror \
   i686-pc-linux-gnu
 
-  # build libraries with hardening disabled
+  # build libraries with fortify disabled
   echo "build-programs=no" >> configparms
   make
 
-  # re-enable hardening for programs
+  # re-enable fortify for programs
   sed -i "/build-programs=/s#no#yes#" configparms
+
   echo "CC += -D_FORTIFY_SOURCE=2" >> configparms
   echo "CXX += -D_FORTIFY_SOURCE=2" >> configparms
   make
-
-  # remove harding in preparation to run test-suite
-  sed -i '/FORTIFY/d' configparms
 }
 
 check() {
   cd glibc-build
 
+  # remove fortify in preparation to run test-suite
+  sed -i '/FORTIFY/d' configparms
+
   # some failures are "expected"
   make check || true
 }
@@ -117,11 +118,6 @@
   # Symlink /usr/lib32/locale to /usr/lib/locale
   ln -s ../lib/locale "$pkgdir/usr/lib32/locale"
 
-  # remove the static libraries that have a shared counterpart
-  # libc, libdl, libm and libpthread are required for toolchain testsuites
-  # in addition libcrypt appears widely required
-  rm $pkgdir/usr/lib32/lib{anl,BrokenLocale,nsl,resolv,rt,util}.a
-
   # Do not strip the following files for improved debugging support
   # ("improved" as in not breaking gdb and valgrind...):
   #   ld-${pkgver}.so
@@ -138,14 +134,22 @@
 
 
 
-  strip $STRIP_STATIC usr/lib32/*.a
+  strip $STRIP_STATIC usr/lib32/lib{anl,BrokenLocale,c{,_nonshared},crypt}.a \
+  
usr/lib32/lib{dl,g,ieee,mcheck,nsl,pthread{,_nonshared}}.a \
+  usr/lib32/lib{resolv,rpcsvc,rt,util}.a
 
-  strip $STRIP_SHARED usr/lib32/lib{anl,BrokenLocale,cidn,crypt}-*.so \
+  strip $STRIP_SHARED usr/lib32/lib{anl,BrokenLocale,cidn,crypt}-${pkgver}.so \
   
usr/lib32/libnss_{compat,db,dns,files,hesiod,nis,nisplus}-*.so \
-  usr/lib32/lib{dl,m,nsl,resolv,rt,util}-*.so \
+  usr/lib32/lib{dl,m,nsl,resolv,rt,util}-${pkgver}.so \
   usr/lib32/lib{memusage,pcprofile,SegFault}.so \
   usr/lib32/{audit,gconv}/*.so || true
 
 
 
+
+
+
+  #if [[ $CARCH = "i686" ]]; then
+strip $STRIP_STATIC usr/lib32/libm.a
+  #fi
 }


[arch-commits] Commit in xf86-video-openchrome/repos (4 files)

2017-03-08 Thread Andreas Radke
Date: Wednesday, March 8, 2017 @ 15:10:45
  Author: andyrtr
Revision: 290142

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  xf86-video-openchrome/repos/testing-i686/PKGBUILD
(from rev 290141, xf86-video-openchrome/trunk/PKGBUILD)
  xf86-video-openchrome/repos/testing-x86_64/PKGBUILD
(from rev 290141, xf86-video-openchrome/trunk/PKGBUILD)
Deleted:
  xf86-video-openchrome/repos/testing-i686/PKGBUILD
  xf86-video-openchrome/repos/testing-x86_64/PKGBUILD

-+
 /PKGBUILD   |  120 ++
 testing-i686/PKGBUILD   |   57 -
 testing-x86_64/PKGBUILD |   57 -
 3 files changed, 120 insertions(+), 114 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2017-03-08 15:10:28 UTC (rev 290141)
+++ testing-i686/PKGBUILD   2017-03-08 15:10:45 UTC (rev 290142)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Contributor: Paul Mattal 
-# Contributor: Juergen Hoetzel 
-
-pkgname=xf86-video-openchrome
-_commit=8c819ed # 7 digits # = 0.6.0 RC1
-pkgver=0.5.0+279+g8c819ed
-pkgrel=1
-pkgdesc="X.Org Openchrome drivers"
-arch=(i686 x86_64)
-license=('custom')
-url="http://www.freedesktop.org/wiki/Openchrome/;
-depends=('libdrm' 'libxvmc' 'libsystemd')
-optdepends=('unichrome-dri')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=23' 'systemd'
- 'git')
-conflicts=('xorg-server<1.19' 'X-ABI-VIDEODRV_VERSION<23' 
'X-ABI-VIDEODRV_VERSION>=24'
-   'xf86-video-via' 'xf86-video-unichrome' 'openchrome')
-replaces=('openchrome' 'xf86-video-via')
-groups=('xorg-drivers')
-#options=('!emptydirs' '!makeflags')
-#source=(https://xorg.freedesktop.org/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-source=("git://anongit.freedesktop.org/openchrome/xf86-video-openchrome#commit=${_commit}")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-#  git describe --long | sed 's/-/+/g'
-#  git describe --long | sed "s/openchrome-//;s/-/./g"
-#  git describe --long | sed "s/openchrome-//;s/0.5/0.5.200/;s/-/+/g"
-  git describe --long | sed "s/openchrome-//;s/0.5/0.5.0/;s/-/+/g"
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd ${pkgname} #-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-
-package() {
-  cd ${pkgname} #-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-openchrome/repos/testing-i686/PKGBUILD (from rev 290141, 
xf86-video-openchrome/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-08 15:10:45 UTC (rev 290142)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Paul Mattal 
+# Contributor: Juergen Hoetzel 
+
+pkgname=xf86-video-openchrome
+#_commit=8c819ed # 7 digits # = 0.6.0 RC1
+#pkgver=0.5.0+279+g8c819ed
+pkgver=0.6.0
+pkgrel=1
+pkgdesc="X.Org Openchrome drivers"
+arch=(i686 x86_64)
+license=('custom')
+url="http://www.freedesktop.org/wiki/Openchrome/;
+depends=('libdrm' 'libxvmc' 'libsystemd')
+optdepends=('unichrome-dri')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=23' 'systemd')
+# 'git')
+conflicts=('xorg-server<1.19' 'X-ABI-VIDEODRV_VERSION<23' 
'X-ABI-VIDEODRV_VERSION>=24'
+   'xf86-video-via' 'xf86-video-unichrome' 'openchrome')
+replaces=('openchrome' 'xf86-video-via')
+groups=('xorg-drivers')
+options=('!emptydirs')
+source=(https://xorg.freedesktop.org/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
+#source=("git://anongit.freedesktop.org/openchrome/xf86-video-openchrome#commit=${_commit}")
+sha256sums=('da2975c6379358de52c1257710c67eb59139a7f0a1cd28d00cc64cc3e1c02f75'
+'SKIP')
+validpgpkeys=('CDA92E38A7A7A82237E9AB61C922784178BFFDB0') # "Kevin Brace 
"
+
+#pkgver() {
+#  cd $pkgname
+#  git describe --long | sed 's/-/+/g'
+#  git describe --long | sed "s/openchrome-//;s/-/./g"
+#  git describe --long | sed "s/openchrome-//;s/0.5/0.5.200/;s/-/+/g"
+#  git describe --long | sed "s/openchrome-//;s/0.5/0.5.0/;s/-/+/g"
+#}
+
+#prepare() {
+#  cd $pkgname
+#  NOCONFIGURE=1 ./autogen.sh
+#}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-${pkgver}
+  make check
+}
+
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: testing-x86_64/PKGBUILD

[arch-commits] Commit in xf86-video-openchrome/trunk (PKGBUILD)

2017-03-08 Thread Andreas Radke
Date: Wednesday, March 8, 2017 @ 15:10:28
  Author: andyrtr
Revision: 290141

upgpkg: xf86-video-openchrome 0.6.0-1

upstream update 0.6.0

Modified:
  xf86-video-openchrome/trunk/PKGBUILD

--+
 PKGBUILD |   41 ++---
 1 file changed, 22 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 14:59:13 UTC (rev 290140)
+++ PKGBUILD2017-03-08 15:10:28 UTC (rev 290141)
@@ -4,8 +4,9 @@
 # Contributor: Juergen Hoetzel 
 
 pkgname=xf86-video-openchrome
-_commit=8c819ed # 7 digits # = 0.6.0 RC1
-pkgver=0.5.0+279+g8c819ed
+#_commit=8c819ed # 7 digits # = 0.6.0 RC1
+#pkgver=0.5.0+279+g8c819ed
+pkgver=0.6.0
 pkgrel=1
 pkgdesc="X.Org Openchrome drivers"
 arch=(i686 x86_64)
@@ -13,44 +14,46 @@
 url="http://www.freedesktop.org/wiki/Openchrome/;
 depends=('libdrm' 'libxvmc' 'libsystemd')
 optdepends=('unichrome-dri')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=23' 'systemd'
- 'git')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=23' 'systemd')
+# 'git')
 conflicts=('xorg-server<1.19' 'X-ABI-VIDEODRV_VERSION<23' 
'X-ABI-VIDEODRV_VERSION>=24'
'xf86-video-via' 'xf86-video-unichrome' 'openchrome')
 replaces=('openchrome' 'xf86-video-via')
 groups=('xorg-drivers')
-#options=('!emptydirs' '!makeflags')
-#source=(https://xorg.freedesktop.org/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-source=("git://anongit.freedesktop.org/openchrome/xf86-video-openchrome#commit=${_commit}")
-sha256sums=('SKIP')
+options=('!emptydirs')
+source=(https://xorg.freedesktop.org/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
+#source=("git://anongit.freedesktop.org/openchrome/xf86-video-openchrome#commit=${_commit}")
+sha256sums=('da2975c6379358de52c1257710c67eb59139a7f0a1cd28d00cc64cc3e1c02f75'
+'SKIP')
+validpgpkeys=('CDA92E38A7A7A82237E9AB61C922784178BFFDB0') # "Kevin Brace 
"
 
-pkgver() {
-  cd $pkgname
+#pkgver() {
+#  cd $pkgname
 #  git describe --long | sed 's/-/+/g'
 #  git describe --long | sed "s/openchrome-//;s/-/./g"
 #  git describe --long | sed "s/openchrome-//;s/0.5/0.5.200/;s/-/+/g"
-  git describe --long | sed "s/openchrome-//;s/0.5/0.5.0/;s/-/+/g"
-}
+#  git describe --long | sed "s/openchrome-//;s/0.5/0.5.0/;s/-/+/g"
+#}
 
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
+#prepare() {
+#  cd $pkgname
+#  NOCONFIGURE=1 ./autogen.sh
+#}
 
 build() {
-  cd ${pkgname} #-${pkgver}
+  cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr
   make
 }
 
 check() {
-  cd $pkgname
+  cd $pkgname-${pkgver}
   make check
 }
 
 
 package() {
-  cd ${pkgname} #-${pkgver}
+  cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
   install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
   install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"


[arch-commits] Commit in gnome-software/repos (4 files)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 14:56:15
  Author: heftig
Revision: 215303

archrelease: copy trunk to community-i686, community-x86_64

Added:
  gnome-software/repos/community-i686/PKGBUILD
(from rev 215302, gnome-software/trunk/PKGBUILD)
  gnome-software/repos/community-x86_64/PKGBUILD
(from rev 215302, gnome-software/trunk/PKGBUILD)
Deleted:
  gnome-software/repos/community-i686/PKGBUILD
  gnome-software/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   84 
 community-i686/PKGBUILD   |   42 --
 community-x86_64/PKGBUILD |   42 --
 3 files changed, 84 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-08 14:54:56 UTC (rev 215302)
+++ community-i686/PKGBUILD 2017-03-08 14:56:15 UTC (rev 215303)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Yosef Or Boczko 
-
-pkgname=gnome-software
-pkgver=3.22.5
-pkgrel=1
-pkgdesc="GNOME Software Tools"
-arch=(i686 x86_64)
-license=(GPL2)
-url="https://wiki.gnome.org/Apps/Software/;
-depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
flatpak
- packagekit archlinux-appstream-data gtkspell3 libgudev)
-makedepends=(intltool python docbook-xsl gnome-common git)
-_commit=fa42b723f508eda87a2efd96201a9851134b7c51  # 
tags/GNOME_SOFTWARE_3_22_5^0
-source=("git+https://git.gnome.org/browse/gnome-software#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^GNOME_SOFTWARE_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --disable-schemas-compile --enable-packagekit \
---enable-flatpak --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}

Copied: gnome-software/repos/community-i686/PKGBUILD (from rev 215302, 
gnome-software/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-08 14:56:15 UTC (rev 215303)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Yosef Or Boczko 
+
+pkgname=gnome-software
+pkgver=3.22.6
+pkgrel=1
+pkgdesc="GNOME Software Tools"
+arch=(i686 x86_64)
+license=(GPL2)
+url="https://wiki.gnome.org/Apps/Software/;
+depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
flatpak
+ packagekit archlinux-appstream-data gtkspell3 libgudev)
+makedepends=(intltool python docbook-xsl gnome-common git)
+_commit=9b7ce7c0eaae336ed56e59e91b3c69f200326624  # 
tags/GNOME_SOFTWARE_3_22_6^0
+source=("git+https://git.gnome.org/browse/gnome-software#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GNOME_SOFTWARE_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --disable-schemas-compile --enable-packagekit \
+--enable-flatpak --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-08 14:54:56 UTC (rev 215302)
+++ community-x86_64/PKGBUILD   2017-03-08 14:56:15 UTC (rev 215303)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Yosef Or Boczko 
-
-pkgname=gnome-software
-pkgver=3.22.5
-pkgrel=1
-pkgdesc="GNOME Software Tools"
-arch=(i686 x86_64)
-license=(GPL2)
-url="https://wiki.gnome.org/Apps/Software/;
-depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
flatpak
- packagekit archlinux-appstream-data gtkspell3 libgudev)
-makedepends=(intltool python docbook-xsl gnome-common git)
-_commit=fa42b723f508eda87a2efd96201a9851134b7c51  # 
tags/GNOME_SOFTWARE_3_22_5^0
-source=("git+https://git.gnome.org/browse/gnome-software#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^GNOME_SOFTWARE_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd 

[arch-commits] Commit in gnome-software/trunk (PKGBUILD)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 14:54:56
  Author: heftig
Revision: 215302

3.22.6-1

Modified:
  gnome-software/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 12:31:47 UTC (rev 215301)
+++ PKGBUILD2017-03-08 14:54:56 UTC (rev 215302)
@@ -4,7 +4,7 @@
 # Contributor: Yosef Or Boczko 
 
 pkgname=gnome-software
-pkgver=3.22.5
+pkgver=3.22.6
 pkgrel=1
 pkgdesc="GNOME Software Tools"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 depends=(gtk3 appstream-glib libsoup gsettings-desktop-schemas gnome-desktop 
flatpak
  packagekit archlinux-appstream-data gtkspell3 libgudev)
 makedepends=(intltool python docbook-xsl gnome-common git)
-_commit=fa42b723f508eda87a2efd96201a9851134b7c51  # 
tags/GNOME_SOFTWARE_3_22_5^0
+_commit=9b7ce7c0eaae336ed56e59e91b3c69f200326624  # 
tags/GNOME_SOFTWARE_3_22_6^0
 source=("git+https://git.gnome.org/browse/gnome-software#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in libinput/repos (4 files)

2017-03-08 Thread Andreas Radke
Date: Wednesday, March 8, 2017 @ 14:59:13
  Author: andyrtr
Revision: 290140

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  libinput/repos/testing-i686/
  libinput/repos/testing-i686/PKGBUILD
(from rev 290139, libinput/trunk/PKGBUILD)
  libinput/repos/testing-x86_64/
  libinput/repos/testing-x86_64/PKGBUILD
(from rev 290139, libinput/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   41 +
 testing-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: libinput/repos/testing-i686/PKGBUILD (from rev 290139, 
libinput/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-08 14:59:13 UTC (rev 290140)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=1.6.3
+pkgrel=1
+pkgdesc="Input device management and event handling library"
+arch=(i686 x86_64)
+url="https://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
+# currently no doc files to install
+makedepends=('doxygen' 'graphviz' 'gtk3')
+#checkdepends=('check' 'libunwind')
+source=(https://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('74da2798728e79c3aedfffa268d8fe811c3766ca3708309c0dc45502be137da1'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+# disabled for now:
+# https://github.com/libcheck/check/issues/18
+#  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+  # install doc - no Makefile target
+  install -v -dm755 ${pkgdir}/usr/share/doc/libinput
+  cp -rv doc/html/* ${pkgdir}/usr/share/doc/libinput
+}

Copied: libinput/repos/testing-x86_64/PKGBUILD (from rev 290139, 
libinput/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-03-08 14:59:13 UTC (rev 290140)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=1.6.3
+pkgrel=1
+pkgdesc="Input device management and event handling library"
+arch=(i686 x86_64)
+url="https://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
+# currently no doc files to install
+makedepends=('doxygen' 'graphviz' 'gtk3')
+#checkdepends=('check' 'libunwind')
+source=(https://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('74da2798728e79c3aedfffa268d8fe811c3766ca3708309c0dc45502be137da1'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+# disabled for now:
+# https://github.com/libcheck/check/issues/18
+#  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+  # install doc - no Makefile target
+  install -v -dm755 ${pkgdir}/usr/share/doc/libinput
+  cp -rv doc/html/* ${pkgdir}/usr/share/doc/libinput
+}


[arch-commits] Commit in libinput/trunk (PKGBUILD)

2017-03-08 Thread Andreas Radke
Date: Wednesday, March 8, 2017 @ 14:58:57
  Author: andyrtr
Revision: 290139

upgpkg: libinput 1.6.3-1

upstream update 1.6.3

Modified:
  libinput/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 14:55:57 UTC (rev 290138)
+++ PKGBUILD2017-03-08 14:58:57 UTC (rev 290139)
@@ -3,7 +3,7 @@
 # Maintainer: Jan de Groot
 
 pkgname=libinput
-pkgver=1.6.2
+pkgver=1.6.3
 pkgrel=1
 pkgdesc="Input device management and event handling library"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 makedepends=('doxygen' 'graphviz' 'gtk3')
 #checkdepends=('check' 'libunwind')
 
source=(https://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('96fc0e0b24a96042b16e561201979dfa4a3f00a642538195c62f72b79f4084fa'
+sha256sums=('74da2798728e79c3aedfffa268d8fe811c3766ca3708309c0dc45502be137da1'
 'SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
 


[arch-commits] Commit in appstream-glib/repos (4 files)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 14:44:58
  Author: heftig
Revision: 290137

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  appstream-glib/repos/extra-i686/PKGBUILD
(from rev 290136, appstream-glib/trunk/PKGBUILD)
  appstream-glib/repos/extra-x86_64/PKGBUILD
(from rev 290136, appstream-glib/trunk/PKGBUILD)
Deleted:
  appstream-glib/repos/extra-i686/PKGBUILD
  appstream-glib/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   98 
 extra-i686/PKGBUILD   |   49 
 extra-x86_64/PKGBUILD |   49 
 3 files changed, 98 insertions(+), 98 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-08 14:44:15 UTC (rev 290136)
+++ extra-i686/PKGBUILD 2017-03-08 14:44:58 UTC (rev 290137)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=appstream-glib
-pkgver=0.6.5
-pkgrel=1
-pkgdesc="Objects and methods for reading and writing AppStream metadata"
-url="https://people.freedesktop.org/~hughsient/appstream-glib/;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(gtk3 libyaml pacman gcab libsoup libstemmer)
-makedepends=(intltool gobject-introspection gtk-doc autoconf-archive git
- gperf)
-provides=(appdata-tools)
-conflicts=(appdata-tools)
-replaces=(appdata-tools)
-_commit=df67bd4d9da7dd58fe5628f758bf229417f2c38c  # tags/appstream_glib_0_6_5^0
-source=("git+https://github.com/hughsie/appstream-glib#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^appstream_glib_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --enable-alpm --enable-stemmer --enable-gtk-doc
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname
-  make -k check || :
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: appstream-glib/repos/extra-i686/PKGBUILD (from rev 290136, 
appstream-glib/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-08 14:44:58 UTC (rev 290137)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=appstream-glib
+pkgver=0.6.10
+pkgrel=1
+pkgdesc="Objects and methods for reading and writing AppStream metadata"
+url="https://people.freedesktop.org/~hughsient/appstream-glib/;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(gtk3 libyaml pacman gcab libsoup libstemmer)
+makedepends=(intltool gobject-introspection gtk-doc autoconf-archive git
+ gperf)
+provides=(appdata-tools)
+conflicts=(appdata-tools)
+replaces=(appdata-tools)
+_commit=1e70b14e351306f878254fcb7e0d45624af9a10e  # 
tags/appstream_glib_0_6_10^0
+source=("git+https://github.com/hughsie/appstream-glib#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^appstream_glib_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --enable-alpm --enable-stemmer --enable-gtk-doc
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  make -k check || :
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-03-08 14:44:15 UTC (rev 290136)
+++ extra-x86_64/PKGBUILD   2017-03-08 14:44:58 UTC (rev 290137)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=appstream-glib
-pkgver=0.6.5
-pkgrel=1
-pkgdesc="Objects and methods for reading and writing AppStream metadata"
-url="https://people.freedesktop.org/~hughsient/appstream-glib/;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(gtk3 libyaml pacman gcab libsoup libstemmer)
-makedepends=(intltool gobject-introspection gtk-doc autoconf-archive git
- gperf)
-provides=(appdata-tools)
-conflicts=(appdata-tools)
-replaces=(appdata-tools)
-_commit=df67bd4d9da7dd58fe5628f758bf229417f2c38c  # tags/appstream_glib_0_6_5^0
-source=("git+https://github.com/hughsie/appstream-glib#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^appstream_glib_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --enable-alpm --enable-stemmer --enable-gtk-doc
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-

[arch-commits] Commit in appstream-glib/trunk (PKGBUILD)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 14:44:15
  Author: heftig
Revision: 290136

0.6.10-1

Modified:
  appstream-glib/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 13:36:51 UTC (rev 290135)
+++ PKGBUILD2017-03-08 14:44:15 UTC (rev 290136)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=appstream-glib
-pkgver=0.6.5
+pkgver=0.6.10
 pkgrel=1
 pkgdesc="Objects and methods for reading and writing AppStream metadata"
 url="https://people.freedesktop.org/~hughsient/appstream-glib/;
@@ -14,7 +14,7 @@
 provides=(appdata-tools)
 conflicts=(appdata-tools)
 replaces=(appdata-tools)
-_commit=df67bd4d9da7dd58fe5628f758bf229417f2c38c  # tags/appstream_glib_0_6_5^0
+_commit=1e70b14e351306f878254fcb7e0d45624af9a10e  # 
tags/appstream_glib_0_6_10^0
 source=("git+https://github.com/hughsie/appstream-glib#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in libtorrent-rasterbar/repos (4 files)

2017-03-08 Thread Jan de Groot
Date: Wednesday, March 8, 2017 @ 13:36:51
  Author: jgc
Revision: 290135

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  libtorrent-rasterbar/repos/staging-i686/
  libtorrent-rasterbar/repos/staging-i686/PKGBUILD
(from rev 290134, libtorrent-rasterbar/trunk/PKGBUILD)
  libtorrent-rasterbar/repos/staging-x86_64/
  libtorrent-rasterbar/repos/staging-x86_64/PKGBUILD
(from rev 290134, libtorrent-rasterbar/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   63 ++
 staging-x86_64/PKGBUILD |   63 ++
 2 files changed, 126 insertions(+)

Copied: libtorrent-rasterbar/repos/staging-i686/PKGBUILD (from rev 290134, 
libtorrent-rasterbar/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-03-08 13:36:51 UTC (rev 290135)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Hugo Doria 
+
+pkgname=libtorrent-rasterbar
+pkgver=1.1.1
+pkgrel=7
+epoch=1
+pkgdesc="A C++ BitTorrent library that aims to be a good alternative to all 
the other implementations around"
+url="http://www.rasterbar.com/products/libtorrent/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('boost-libs')
+makedepends=('boost' 'python2' 'python')
+options=('!emptydirs')
+_pkgver=${pkgver//./_}
+source=(https://github.com/arvidn/libtorrent/archive/libtorrent-${_pkgver}/$pkgname-$pkgver.tar.gz)
+sha1sums=('8b8285adb93355df7c20bea4cb4cb446f0e8af6a')
+
+prepare() {
+  mkdir py2 py3
+  cd libtorrent-libtorrent-${_pkgver}
+
+  # Avoid depending on newer processors
+  sed -i 's/-msse4.2//' configure.ac
+
+  ./autotool.sh
+}
+
+_build() (
+  cd py$1
+
+  # FS#50745
+  _boost="boost_python"
+  if [ $1 -eq 3 ]; then _boost="boost_python3"; fi
+
+  # 
https://github.com/qbittorrent/qBittorrent/issues/5265#issuecomment-220007436
+  CXXFLAGS="$CXXFLAGS -std=c++11" \
+  PYTHON=/usr/bin/python$1 \
+  ../libtorrent-libtorrent-${_pkgver}/configure \
+--prefix=/usr \
+--enable-python-binding \
+--enable-examples \
+--disable-static \
+--with-libiconv \
+--with-boost-python=$_boost
+)
+
+build() {
+  _build 2
+  _build 3
+}
+
+package() {
+  make -C py2 DESTDIR="$pkgdir" install
+  make -C py3 DESTDIR="$pkgdir" install
+  install -Dm644 libtorrent-libtorrent-${_pkgver}/COPYING \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove most example binaries
+  rm "$pkgdir"/usr/bin/{*_test,*_tester,simple_client,stats_counters}
+}

Copied: libtorrent-rasterbar/repos/staging-x86_64/PKGBUILD (from rev 290134, 
libtorrent-rasterbar/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-03-08 13:36:51 UTC (rev 290135)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+# Contributor: Hugo Doria 
+
+pkgname=libtorrent-rasterbar
+pkgver=1.1.1
+pkgrel=7
+epoch=1
+pkgdesc="A C++ BitTorrent library that aims to be a good alternative to all 
the other implementations around"
+url="http://www.rasterbar.com/products/libtorrent/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('boost-libs')
+makedepends=('boost' 'python2' 'python')
+options=('!emptydirs')
+_pkgver=${pkgver//./_}
+source=(https://github.com/arvidn/libtorrent/archive/libtorrent-${_pkgver}/$pkgname-$pkgver.tar.gz)
+sha1sums=('8b8285adb93355df7c20bea4cb4cb446f0e8af6a')
+
+prepare() {
+  mkdir py2 py3
+  cd libtorrent-libtorrent-${_pkgver}
+
+  # Avoid depending on newer processors
+  sed -i 's/-msse4.2//' configure.ac
+
+  ./autotool.sh
+}
+
+_build() (
+  cd py$1
+
+  # FS#50745
+  _boost="boost_python"
+  if [ $1 -eq 3 ]; then _boost="boost_python3"; fi
+
+  # 
https://github.com/qbittorrent/qBittorrent/issues/5265#issuecomment-220007436
+  CXXFLAGS="$CXXFLAGS -std=c++11" \
+  PYTHON=/usr/bin/python$1 \
+  ../libtorrent-libtorrent-${_pkgver}/configure \
+--prefix=/usr \
+--enable-python-binding \
+--enable-examples \
+--disable-static \
+--with-libiconv \
+--with-boost-python=$_boost
+)
+
+build() {
+  _build 2
+  _build 3
+}
+
+package() {
+  make -C py2 DESTDIR="$pkgdir" install
+  make -C py3 DESTDIR="$pkgdir" install
+  install -Dm644 libtorrent-libtorrent-${_pkgver}/COPYING \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove most example binaries
+  rm "$pkgdir"/usr/bin/{*_test,*_tester,simple_client,stats_counters}
+}


[arch-commits] Commit in libtorrent-rasterbar/trunk (PKGBUILD)

2017-03-08 Thread Jan de Groot
Date: Wednesday, March 8, 2017 @ 13:36:45
  Author: jgc
Revision: 290134

upgpkg: libtorrent-rasterbar 1:1.1.1-7

OpenSSL 1.1

Modified:
  libtorrent-rasterbar/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 13:23:10 UTC (rev 290133)
+++ PKGBUILD2017-03-08 13:36:45 UTC (rev 290134)
@@ -5,7 +5,7 @@
 
 pkgname=libtorrent-rasterbar
 pkgver=1.1.1
-pkgrel=6
+pkgrel=7
 epoch=1
 pkgdesc="A C++ BitTorrent library that aims to be a good alternative to all 
the other implementations around"
 url="http://www.rasterbar.com/products/libtorrent/;


[arch-commits] Commit in libchamplain/repos (4 files)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 13:23:10
  Author: heftig
Revision: 290133

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  libchamplain/repos/extra-i686/PKGBUILD
(from rev 290132, libchamplain/trunk/PKGBUILD)
  libchamplain/repos/extra-x86_64/PKGBUILD
(from rev 290132, libchamplain/trunk/PKGBUILD)
Deleted:
  libchamplain/repos/extra-i686/PKGBUILD
  libchamplain/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   84 
 extra-i686/PKGBUILD   |   42 
 extra-x86_64/PKGBUILD |   42 
 3 files changed, 84 insertions(+), 84 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-08 13:21:42 UTC (rev 290132)
+++ extra-i686/PKGBUILD 2017-03-08 13:23:10 UTC (rev 290133)
@@ -1,42 +0,0 @@
-# $Id$
-# Contributor: Andreas Radke 
-# Contributor: Michael Kanis 
-
-pkgname=libchamplain
-pkgver=0.12.14+2+ge1f6e59
-pkgrel=1
-pkgdesc="A map widget"
-url="https://wiki.gnome.org/Projects/libchamplain;
-license=(LGPL)
-arch=(i686 x86_64)
-depends=(clutter-gtk libsoup cairo sqlite)
-makedepends=(gobject-introspection gtk-doc vala gnome-common git)
-_commit=e1f6e591ca752f20bb29cbe46b7f2e4e41468a56
-source=("git://git.gnome.org/libchamplain#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^LIBCHAMPLAIN_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --disable-static --disable-debug \
---enable-vala --enable-gtk-doc
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: libchamplain/repos/extra-i686/PKGBUILD (from rev 290132, 
libchamplain/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-03-08 13:23:10 UTC (rev 290133)
@@ -0,0 +1,42 @@
+# $Id$
+# Contributor: Andreas Radke 
+# Contributor: Michael Kanis 
+
+pkgname=libchamplain
+pkgver=0.12.15
+pkgrel=1
+pkgdesc="A map widget"
+url="https://wiki.gnome.org/Projects/libchamplain;
+license=(LGPL)
+arch=(i686 x86_64)
+depends=(clutter-gtk libsoup cairo sqlite)
+makedepends=(gobject-introspection gtk-doc vala gnome-common git)
+_commit=d5f50d3932e2fabae8f3f10df522d7716e5bed7b  # tags/LIBCHAMPLAIN_0_12_15^0
+source=("git+https://git.gnome.org/browse/libchamplain#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^LIBCHAMPLAIN_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --disable-static --disable-debug \
+--enable-vala --enable-gtk-doc
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-03-08 13:21:42 UTC (rev 290132)
+++ extra-x86_64/PKGBUILD   2017-03-08 13:23:10 UTC (rev 290133)
@@ -1,42 +0,0 @@
-# $Id$
-# Contributor: Andreas Radke 
-# Contributor: Michael Kanis 
-
-pkgname=libchamplain
-pkgver=0.12.14+2+ge1f6e59
-pkgrel=1
-pkgdesc="A map widget"
-url="https://wiki.gnome.org/Projects/libchamplain;
-license=(LGPL)
-arch=(i686 x86_64)
-depends=(clutter-gtk libsoup cairo sqlite)
-makedepends=(gobject-introspection gtk-doc vala gnome-common git)
-_commit=e1f6e591ca752f20bb29cbe46b7f2e4e41468a56
-source=("git://git.gnome.org/libchamplain#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^LIBCHAMPLAIN_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --disable-static --disable-debug \
---enable-vala --enable-gtk-doc
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: libchamplain/repos/extra-x86_64/PKGBUILD (from rev 290132, 
libchamplain/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-03-08 13:23:10 UTC (rev 290133)
@@ -0,0 +1,42 @@
+# $Id$
+# Contributor: Andreas Radke 
+# Contributor: Michael Kanis 
+
+pkgname=libchamplain

[arch-commits] Commit in libchamplain/trunk (PKGBUILD)

2017-03-08 Thread Jan Steffens
Date: Wednesday, March 8, 2017 @ 13:21:42
  Author: heftig
Revision: 290132

0.12.15-1

Modified:
  libchamplain/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 13:10:18 UTC (rev 290131)
+++ PKGBUILD2017-03-08 13:21:42 UTC (rev 290132)
@@ -3,7 +3,7 @@
 # Contributor: Michael Kanis 
 
 pkgname=libchamplain
-pkgver=0.12.14+2+ge1f6e59
+pkgver=0.12.15
 pkgrel=1
 pkgdesc="A map widget"
 url="https://wiki.gnome.org/Projects/libchamplain;
@@ -11,8 +11,8 @@
 arch=(i686 x86_64)
 depends=(clutter-gtk libsoup cairo sqlite)
 makedepends=(gobject-introspection gtk-doc vala gnome-common git)
-_commit=e1f6e591ca752f20bb29cbe46b7f2e4e41468a56
-source=("git://git.gnome.org/libchamplain#commit=$_commit")
+_commit=d5f50d3932e2fabae8f3f10df522d7716e5bed7b  # tags/LIBCHAMPLAIN_0_12_15^0
+source=("git+https://git.gnome.org/browse/libchamplain#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {


[arch-commits] Commit in libshout/trunk (PKGBUILD)

2017-03-08 Thread Jan de Groot
Date: Wednesday, March 8, 2017 @ 13:10:13
  Author: jgc
Revision: 290130

upgpkg: libshout 1:2.4.1-3

OpenSSL 1.1

Modified:
  libshout/trunk/PKGBUILD

--+
 PKGBUILD |9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 12:23:56 UTC (rev 290129)
+++ PKGBUILD2017-03-08 13:10:13 UTC (rev 290130)
@@ -5,17 +5,22 @@
 
 pkgname=libshout
 pkgver=2.4.1
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="Library for accessing a shoutcast/icecast server"
 arch=('i686' 'x86_64')
 depends=('libvorbis' 'libtheora' 'speex' 'openssl')
-url="http://www.icecast.org/;
+url="https://www.icecast.org/;
 options=('!emptydirs')
 license=('LGPL')
 
source=("http://downloads.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
 md5sums=('89cebf8cb0197f639cde69c95177fe47')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -e 's/SSLeay_add_all_algorithms/OpenSSL_add_all_algorithms/g' -i 
src/tls.c
+}
+
 build() {
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var


[arch-commits] Commit in libshout/repos (4 files)

2017-03-08 Thread Jan de Groot
Date: Wednesday, March 8, 2017 @ 13:10:18
  Author: jgc
Revision: 290131

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  libshout/repos/staging-i686/
  libshout/repos/staging-i686/PKGBUILD
(from rev 290130, libshout/trunk/PKGBUILD)
  libshout/repos/staging-x86_64/
  libshout/repos/staging-x86_64/PKGBUILD
(from rev 290130, libshout/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   33 +
 staging-x86_64/PKGBUILD |   33 +
 2 files changed, 66 insertions(+)

Copied: libshout/repos/staging-i686/PKGBUILD (from rev 290130, 
libshout/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-03-08 13:10:18 UTC (rev 290131)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: arjan 
+# Contributor: Jason Chu 
+
+pkgname=libshout
+pkgver=2.4.1
+pkgrel=3
+epoch=1
+pkgdesc="Library for accessing a shoutcast/icecast server"
+arch=('i686' 'x86_64')
+depends=('libvorbis' 'libtheora' 'speex' 'openssl')
+url="https://www.icecast.org/;
+options=('!emptydirs')
+license=('LGPL')
+source=("http://downloads.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('89cebf8cb0197f639cde69c95177fe47')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -e 's/SSLeay_add_all_algorithms/OpenSSL_add_all_algorithms/g' -i 
src/tls.c
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: libshout/repos/staging-x86_64/PKGBUILD (from rev 290130, 
libshout/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-03-08 13:10:18 UTC (rev 290131)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: arjan 
+# Contributor: Jason Chu 
+
+pkgname=libshout
+pkgver=2.4.1
+pkgrel=3
+epoch=1
+pkgdesc="Library for accessing a shoutcast/icecast server"
+arch=('i686' 'x86_64')
+depends=('libvorbis' 'libtheora' 'speex' 'openssl')
+url="https://www.icecast.org/;
+options=('!emptydirs')
+license=('LGPL')
+source=("http://downloads.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('89cebf8cb0197f639cde69c95177fe47')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -e 's/SSLeay_add_all_algorithms/OpenSSL_add_all_algorithms/g' -i 
src/tls.c
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in gitlab/trunk (PKGBUILD)

2017-03-08 Thread Sven-Hendrik Haase
Date: Wednesday, March 8, 2017 @ 12:31:31
  Author: svenstaro
Revision: 215300

upgpkg: gitlab 8.17.3-2

Fix npm build

Modified:
  gitlab/trunk/PKGBUILD

--+
 PKGBUILD |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-08 12:24:27 UTC (rev 215299)
+++ PKGBUILD2017-03-08 12:31:31 UTC (rev 215300)
@@ -8,13 +8,13 @@
 
 pkgname=gitlab
 pkgver=8.17.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Project management and code hosting application"
 arch=('i686' 'x86_64')
 url="https://gitlab.com/gitlab-org/gitlab-ce/tree/master#README;
 license=('MIT')
 depends=('ruby2.3' 'git' 'ruby2.3-bundler' 'gitlab-workhorse' 'openssh' 
'redis' 'libxslt' 'icu' 'nodejs')
-makedepends=('cmake' 'postgresql' 'mariadb')
+makedepends=('cmake' 'postgresql' 'mariadb' 'npm')
 optdepends=('postgresql: database backend'
 'mysql: database backend'
 'python2-docutils: reStructuredText markup language support'
@@ -121,6 +121,8 @@
   sed -i 's/url.*/nope.sock/g' config/resque.yml
 
   bundle-2.3 exec rake assets:precompile RAILS_ENV=production --trace
+  npm install
+  bundle-2.3 exec rake webpack:compile RAILS_ENV=production --trace
 
   # After building assets, clean this up again
   rm config/database.yml config/database.yml.postgresql.orig


[arch-commits] Commit in (archlinux-appstream-data)

2017-03-08 Thread Antonio Rojas
Date: Wednesday, March 8, 2017 @ 12:24:27
  Author: arojas
Revision: 215299

community2extra: Moving archlinux-appstream-data from community to extra

Deleted:
  archlinux-appstream-data/


  1   2   >