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

2015-12-06 Thread Bartłomiej Piotrowski
Date: Monday, December 7, 2015 @ 01:44:37
  Author: bpiotrowski
Revision: 149420

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

Added:
  wireshark/repos/community-staging-i686/
  wireshark/repos/community-staging-i686/PKGBUILD
(from rev 149418, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-staging-i686/wireshark-common.install
(from rev 149419, wireshark/trunk/wireshark-common.install)
  wireshark/repos/community-staging-i686/wireshark-gui.install
(from rev 149419, wireshark/trunk/wireshark-gui.install)
  wireshark/repos/community-staging-i686/wireshark.install
(from rev 149419, wireshark/trunk/wireshark.install)
  wireshark/repos/community-staging-x86_64/
  wireshark/repos/community-staging-x86_64/PKGBUILD
(from rev 149419, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-staging-x86_64/wireshark-common.install
(from rev 149419, wireshark/trunk/wireshark-common.install)
  wireshark/repos/community-staging-x86_64/wireshark-gui.install
(from rev 149419, wireshark/trunk/wireshark-gui.install)
  wireshark/repos/community-staging-x86_64/wireshark.install
(from rev 149419, wireshark/trunk/wireshark.install)

---+
 community-staging-i686/PKGBUILD   |   93 
 community-staging-i686/wireshark-common.install   |   12 ++
 community-staging-i686/wireshark-gui.install  |   11 ++
 community-staging-i686/wireshark.install  |   18 +++
 community-staging-x86_64/PKGBUILD |   93 
 community-staging-x86_64/wireshark-common.install |   12 ++
 community-staging-x86_64/wireshark-gui.install|   11 ++
 community-staging-x86_64/wireshark.install|   18 +++
 8 files changed, 268 insertions(+)

Copied: wireshark/repos/community-staging-i686/PKGBUILD (from rev 149418, 
wireshark/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-07 00:44:37 UTC (rev 149420)
@@ -0,0 +1,93 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Guillaume ALAUX 
+# Contributor: Florian Pritz 
+pkgname=('wireshark-cli' 'wireshark-common' 'wireshark-gtk' 'wireshark-qt')
+pkgbase=wireshark
+pkgver=2.0.0
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('qt5-base' 'gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' 'portaudio'
+ 'lua52' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
+options=(!emptydirs)
+url='http://www.wireshark.org/'
+source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2)
+sha1sums=('f8b226b40e36e4c431b4f70bc3f523b6dd53a501')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+
+  ./autogen.sh
+  ./configure \
+  --prefix=/usr \
+  --with-qt=5 \
+  --with-gtk3=yes \
+  --with-pcap \
+  --with-zlib \
+  --with-lua \
+  --with-portaudio \
+  --with-ssl \
+  --with-krb5
+  make all
+}
+
+package_wireshark-cli() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
+  depends=('krb5' 'libgcrypt' 'libcap' 'libpcap' 'gnutls' 'glib2' 'lua52')
+  install=wireshark.install
+  conflicts=(wireshark)
+
+  cd ${pkgbase}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  make DESTDIR="${pkgdir}" uninstall-local
+
+  #wireshark uid group is 150
+  chgrp 150 "${pkgdir}/usr/bin/dumpcap"
+  chmod 754 "${pkgdir}/usr/bin/dumpcap"
+  rm "${pkgdir}/usr/bin/wireshark" "${pkgdir}/usr/bin/wireshark-gtk"
+
+  # Headers
+  install -dm755 
"${pkgdir}"/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes,wmem},wiretap,wsutil}
+
+  install -m644 color.h config.h register.h ws_symbol_export.h 
"${pkgdir}/usr/include/${pkgbase}"
+  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes epan/wmem 
wiretap wsutil; do
+install -m644 ${d}/*.h "${pkgdir}"/usr/include/${pkgbase}/${d}
+  done
+}
+
+package_wireshark-common() {
+  pkgdesc='Common files used by wireshark-gtk and wireshark-qt'
+  depends=('hicolor-icon-theme' 'shared-mime-info' 'xdg-utils')
+  install=wireshark-common.install
+
+  cd ${pkgbase}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install-data-local
+  rm "${pkgdir}"/usr/share/applications/wireshark{,-gtk}.desktop
+}
+
+package_wireshark-gtk() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
+  depends=('desktop-file-utils' 'gtk3' 'portaudio' 'wireshark-cli' 
'wireshark-common')
+  replaces=(wireshark)
+  conflicts=(wireshark)
+  install=wireshark-gui.install
+
+  cd ${pkgbase}-${pkgver}
+
+  install -Dm755 .libs/wireshark-gtk "${pkgdir}/usr/bin/wireshark-gtk"
+  install -Dm644 wireshark-gtk.desktop 
"${pkgdir}/usr/share/applications/wireshark-gtk.desktop"
+}
+
+package_wireshark-qt() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - Qt 

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

2015-10-14 Thread Anatol Pomozov
Date: Thursday, October 15, 2015 @ 05:06:19
  Author: anatolik
Revision: 144019

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

Added:
  wireshark/repos/community-testing-i686/
  wireshark/repos/community-testing-i686/PKGBUILD
(from rev 144018, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-testing-i686/wireshark-gtk.install
(from rev 144018, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-testing-i686/wireshark-qt.install
(from rev 144018, wireshark/trunk/wireshark-qt.install)
  wireshark/repos/community-testing-i686/wireshark.install
(from rev 144018, wireshark/trunk/wireshark.install)
  wireshark/repos/community-testing-x86_64/
  wireshark/repos/community-testing-x86_64/PKGBUILD
(from rev 144018, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-testing-x86_64/wireshark-gtk.install
(from rev 144018, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-testing-x86_64/wireshark-qt.install
(from rev 144018, wireshark/trunk/wireshark-qt.install)
  wireshark/repos/community-testing-x86_64/wireshark.install
(from rev 144018, wireshark/trunk/wireshark.install)

+
 community-testing-i686/PKGBUILD|   95 +++
 community-testing-i686/wireshark-gtk.install   |   12 ++
 community-testing-i686/wireshark-qt.install|   11 ++
 community-testing-i686/wireshark.install   |   18 
 community-testing-x86_64/PKGBUILD  |   95 +++
 community-testing-x86_64/wireshark-gtk.install |   12 ++
 community-testing-x86_64/wireshark-qt.install  |   11 ++
 community-testing-x86_64/wireshark.install |   18 
 8 files changed, 272 insertions(+)

Copied: wireshark/repos/community-testing-i686/PKGBUILD (from rev 144018, 
wireshark/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-10-15 03:06:19 UTC (rev 144019)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Guillaume ALAUX 
+# Contributor: Florian Pritz 
+pkgname=('wireshark-cli' 'wireshark-gtk' 'wireshark-qt')
+pkgbase=wireshark
+pkgver=1.12.8
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('qt4' 'gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' 'portaudio'
+ 'lua52' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
+url='http://www.wireshark.org/'
+source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2)
+sha1sums=('d8c23120525a2f3505e822b7684e7367bcd0ba70')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  sed -i 's/$(AM_V_RCC)rcc/&-qt4/p' ui/qt/Makefile.am
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+
+  ./autogen.sh
+  ./configure \
+  --prefix=/usr \
+  --with-qt \
+  --with-gtk3=yes \
+  --with-pcap \
+  --with-zlib \
+  --with-lua \
+  --with-portaudio \
+  --with-ssl \
+  --with-krb5
+  make all
+}
+
+package_wireshark-cli() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
+  depends=('krb5' 'libgcrypt' 'libcap' 'libpcap' 'bash' 'gnutls' 'glib2' 
'lua52')
+  install=wireshark.install
+  conflicts=(wireshark)
+
+  cd ${pkgbase}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+  #wireshark uid group is 150
+  chgrp 150 "${pkgdir}/usr/bin/dumpcap"
+  chmod 754 "${pkgdir}/usr/bin/dumpcap"
+  rm "${pkgdir}/usr/bin/wireshark" "${pkgdir}/usr/bin/wireshark-qt"
+
+  # Headers
+  install -dm755 
"${pkgdir}"/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes,wmem},wiretap,wsutil}
+
+  install -m644 color.h config.h register.h ws_symbol_export.h 
"${pkgdir}/usr/include/${pkgbase}"
+  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes epan/wmem 
wiretap wsutil; do
+install -m644 ${d}/*.h "${pkgdir}"/usr/include/${pkgbase}/${d}
+  done
+}
+
+package_wireshark-gtk() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
+  depends=('gtk3' 'portaudio' 'wireshark-cli' 'desktop-file-utils' 
'hicolor-icon-theme')
+  install=wireshark-gtk.install
+  replaces=(wireshark)
+  conflicts=(wireshark)
+
+  cd ${pkgbase}-${pkgver}
+
+  install -Dm755 .libs/wireshark "${pkgdir}/usr/bin/wireshark"
+  for d in 16 32 48; do
+install -Dm644 image/hi${d}-app-wireshark.png  \
+   
"${pkgdir}/usr/share/icons/hicolor/${d}x${d}/apps/wireshark.png"
+  done
+
+  for d in 16 24 32 48 64 128 256 ; do
+install -Dm644 image/WiresharkDoc-${d}.png \
+   
"${pkgdir}/usr/share/icons/hicolor/${d}x${d}/mimetypes/application-vnd.tcpdump.pcap.png"
+  done
+  install -Dm644 wireshark.desktop 
"${pkgdir}/usr/share/applications/wireshark.desktop"
+}
+
+package_wireshark-qt() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - Qt 

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

2013-12-26 Thread Bartłomiej Piotrowski
Date: Thursday, December 26, 2013 @ 18:21:22
  Author: bpiotrowski
Revision: 103123

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

Added:
  wireshark/repos/community-testing-i686/
  wireshark/repos/community-testing-i686/PKGBUILD
(from rev 103122, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-testing-i686/wireshark-1.10.3-gtk3.10-compile.patch
(from rev 103122, wireshark/trunk/wireshark-1.10.3-gtk3.10-compile.patch)
  wireshark/repos/community-testing-i686/wireshark-gtk.install
(from rev 103122, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-testing-i686/wireshark.install
(from rev 103122, wireshark/trunk/wireshark.install)
  wireshark/repos/community-testing-x86_64/
  wireshark/repos/community-testing-x86_64/PKGBUILD
(from rev 103122, wireshark/trunk/PKGBUILD)
  
wireshark/repos/community-testing-x86_64/wireshark-1.10.3-gtk3.10-compile.patch
(from rev 103122, wireshark/trunk/wireshark-1.10.3-gtk3.10-compile.patch)
  wireshark/repos/community-testing-x86_64/wireshark-gtk.install
(from rev 103122, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-testing-x86_64/wireshark.install
(from rev 103122, wireshark/trunk/wireshark.install)

-+
 community-testing-i686/PKGBUILD |   84 
++
 community-testing-i686/wireshark-1.10.3-gtk3.10-compile.patch   |   12 +
 community-testing-i686/wireshark-gtk.install|   12 +
 community-testing-i686/wireshark.install|   18 ++
 community-testing-x86_64/PKGBUILD   |   84 
++
 community-testing-x86_64/wireshark-1.10.3-gtk3.10-compile.patch |   12 +
 community-testing-x86_64/wireshark-gtk.install  |   12 +
 community-testing-x86_64/wireshark.install  |   18 ++
 8 files changed, 252 insertions(+)

Copied: wireshark/repos/community-testing-i686/PKGBUILD (from rev 103122, 
wireshark/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-12-26 17:21:22 UTC (rev 103123)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Guillaume ALAUX guilla...@archlinux.org
+# Contributor: Florian Pritz bluewind at jabber dot ccc dot de
+pkgname=('wireshark-cli' 'wireshark-gtk')
+pkgbase=wireshark
+pkgver=1.10.5
+pkgrel=3
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' 'portaudio'
+ 'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
+url='http://www.wireshark.org/'
+source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2
+wireshark-1.10.3-gtk3.10-compile.patch)
+sha256sums=('a02190da9573dd381e7598277a31d0c63b05b2af9fe05ab6b7fc058bbea141f5'
+'45274cca58f0abdd3a560beb79a6f0bc8f35736426a1855ed048c9ad8e94f3c0')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -p1 -i ${srcdir}/wireshark-1.10.3-gtk3.10-compile.patch
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+
+  ./autogen.sh
+  ./configure \
+  --prefix=/usr \
+  --with-gtk3=yes \
+  --with-pcap \
+  --with-zlib \
+  --with-lua \
+  --with-portaudio \
+  --with-ssl \
+  --with-krb5
+  make all
+}
+
+package_wireshark-cli() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
+  depends=('krb5' 'libpcap' 'bash' 'gnutls' 'glib2' 'lua' 'portaudio')
+  install=wireshark.install
+  conflicts=(wireshark)
+
+  cd ${pkgbase}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  #wireshark uid group is 150
+  chgrp 150 ${pkgdir}/usr/bin/dumpcap
+  chmod 754 ${pkgdir}/usr/bin/dumpcap
+  rm ${pkgdir}/usr/bin/wireshark
+
+  # Headers
+  install -dm755 
${pkgdir}/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes},wiretap,wsutil}
+
+  install -m644 color.h config.h register.h ws_symbol_export.h 
${pkgdir}/usr/include/${pkgbase}
+  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes wiretap 
wsutil; do
+install -m644 ${d}/*.h ${pkgdir}/usr/include/${pkgbase}/${d}
+  done
+}
+
+package_wireshark-gtk() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
+  depends=('gtk3' 'wireshark-cli' 'desktop-file-utils' 'hicolor-icon-theme')
+  install=wireshark-gtk.install
+  replaces=(wireshark)
+  conflicts=(wireshark)
+
+  cd ${pkgbase}-${pkgver}
+
+  install -Dm755 .libs/wireshark ${pkgdir}/usr/bin/wireshark
+  for d in 16 32 48; do
+install -Dm644 image/hi${d}-app-wireshark.png  \
+   
${pkgdir}/usr/share/icons/hicolor/${d}x${d}/apps/wireshark.png
+  done
+
+  for d in 16 24 32 48 64 128 256 ; do
+install -Dm644 image/WiresharkDoc-${d}.png \
+   

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

2013-12-17 Thread Timothy Redaelli
Date: Tuesday, December 17, 2013 @ 12:21:19
  Author: tredaelli
Revision: 102661

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

Added:
  wireshark/repos/community-staging-i686/
  wireshark/repos/community-staging-i686/PKGBUILD
(from rev 102660, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-staging-i686/wireshark-1.10.3-gtk3.10-compile.patch
(from rev 102660, wireshark/trunk/wireshark-1.10.3-gtk3.10-compile.patch)
  wireshark/repos/community-staging-i686/wireshark-gtk.install
(from rev 102660, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-staging-i686/wireshark.install
(from rev 102660, wireshark/trunk/wireshark.install)
  wireshark/repos/community-staging-x86_64/
  wireshark/repos/community-staging-x86_64/PKGBUILD
(from rev 102660, wireshark/trunk/PKGBUILD)
  
wireshark/repos/community-staging-x86_64/wireshark-1.10.3-gtk3.10-compile.patch
(from rev 102660, wireshark/trunk/wireshark-1.10.3-gtk3.10-compile.patch)
  wireshark/repos/community-staging-x86_64/wireshark-gtk.install
(from rev 102660, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-staging-x86_64/wireshark.install
(from rev 102660, wireshark/trunk/wireshark.install)

-+
 community-staging-i686/PKGBUILD |   84 
++
 community-staging-i686/wireshark-1.10.3-gtk3.10-compile.patch   |   12 +
 community-staging-i686/wireshark-gtk.install|   12 +
 community-staging-i686/wireshark.install|   18 ++
 community-staging-x86_64/PKGBUILD   |   84 
++
 community-staging-x86_64/wireshark-1.10.3-gtk3.10-compile.patch |   12 +
 community-staging-x86_64/wireshark-gtk.install  |   12 +
 community-staging-x86_64/wireshark.install  |   18 ++
 8 files changed, 252 insertions(+)

Copied: wireshark/repos/community-staging-i686/PKGBUILD (from rev 102660, 
wireshark/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-12-17 11:21:19 UTC (rev 102661)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Guillaume ALAUX guilla...@archlinux.org
+# Contributor: Florian Pritz bluewind at jabber dot ccc dot de
+pkgname=('wireshark-cli' 'wireshark-gtk')
+pkgbase=wireshark
+pkgver=1.10.3
+pkgrel=3
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' 'portaudio'
+ 'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
+url='http://www.wireshark.org/'
+source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2
+wireshark-1.10.3-gtk3.10-compile.patch)
+sha256sums=('c1641b36aeb0ca2c1a95fb01d2c647888b65e00a215c9a6464b5fc61e0fd498c'
+'45274cca58f0abdd3a560beb79a6f0bc8f35736426a1855ed048c9ad8e94f3c0')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -p1 -i ${srcdir}/wireshark-1.10.3-gtk3.10-compile.patch
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+
+  ./autogen.sh
+  ./configure \
+  --prefix=/usr \
+  --with-gtk3=yes \
+  --with-pcap \
+  --with-zlib \
+  --with-lua \
+  --with-portaudio \
+  --with-ssl \
+  --with-krb5
+  make all
+}
+
+package_wireshark-cli() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
+  depends=('krb5' 'libpcap' 'bash' 'gnutls' 'glib2' 'lua' 'portaudio')
+  install=wireshark.install
+  conflicts=(wireshark)
+
+  cd ${pkgbase}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  #wireshark uid group is 150
+  chgrp 150 ${pkgdir}/usr/bin/dumpcap
+  chmod 754 ${pkgdir}/usr/bin/dumpcap
+  rm ${pkgdir}/usr/bin/wireshark
+
+  # Headers
+  install -dm755 
${pkgdir}/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes},wiretap,wsutil}
+
+  install -m644 color.h config.h register.h ws_symbol_export.h 
${pkgdir}/usr/include/${pkgbase}
+  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes wiretap 
wsutil; do
+install -m644 ${d}/*.h ${pkgdir}/usr/include/${pkgbase}/${d}
+  done
+}
+
+package_wireshark-gtk() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
+  depends=('gtk3' 'wireshark-cli' 'desktop-file-utils' 'hicolor-icon-theme')
+  install=wireshark-gtk.install
+  replaces=(wireshark)
+  conflicts=(wireshark)
+
+  cd ${pkgbase}-${pkgver}
+
+  install -Dm755 .libs/wireshark ${pkgdir}/usr/bin/wireshark
+  for d in 16 32 48; do
+install -Dm644 image/hi${d}-app-wireshark.png  \
+   
${pkgdir}/usr/share/icons/hicolor/${d}x${d}/apps/wireshark.png
+  done
+
+  for d in 16 24 32 48 64 128 256 ; do
+install -Dm644 image/WiresharkDoc-${d}.png \
+   

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

2013-11-06 Thread Timothy Redaelli
Date: Wednesday, November 6, 2013 @ 11:04:45
  Author: tredaelli
Revision: 100579

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

Added:
  wireshark/repos/community-i686/PKGBUILD
(from rev 100578, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-i686/wireshark-1.10.3-gtk3.10-compile.patch
(from rev 100578, wireshark/trunk/wireshark-1.10.3-gtk3.10-compile.patch)
  wireshark/repos/community-i686/wireshark-gtk.install
(from rev 100578, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-i686/wireshark.install
(from rev 100578, wireshark/trunk/wireshark.install)
  wireshark/repos/community-x86_64/PKGBUILD
(from rev 100578, wireshark/trunk/PKGBUILD)
  wireshark/repos/community-x86_64/wireshark-1.10.3-gtk3.10-compile.patch
(from rev 100578, wireshark/trunk/wireshark-1.10.3-gtk3.10-compile.patch)
  wireshark/repos/community-x86_64/wireshark-gtk.install
(from rev 100578, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/community-x86_64/wireshark.install
(from rev 100578, wireshark/trunk/wireshark.install)
Deleted:
  wireshark/repos/community-i686/wireshark-1.10.3-gtk3.10-compile.patch
  wireshark/repos/community-x86_64/wireshark-1.10.3-gtk3.10-compile.patch

-+
 /wireshark-1.10.3-gtk3.10-compile.patch |   24 
 community-i686/PKGBUILD |   84 ++
 community-i686/wireshark-1.10.3-gtk3.10-compile.patch   |   12 --
 community-i686/wireshark-gtk.install|   12 ++
 community-i686/wireshark.install|   18 +++
 community-x86_64/PKGBUILD   |   84 ++
 community-x86_64/wireshark-1.10.3-gtk3.10-compile.patch |   12 --
 community-x86_64/wireshark-gtk.install  |   12 ++
 community-x86_64/wireshark.install  |   18 +++
 9 files changed, 252 insertions(+), 24 deletions(-)

Copied: wireshark/repos/community-i686/PKGBUILD (from rev 100578, 
wireshark/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-06 10:04:45 UTC (rev 100579)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Guillaume ALAUX guilla...@archlinux.org
+# Contributor: Florian Pritz bluewind at jabber dot ccc dot de
+pkgname=('wireshark-cli' 'wireshark-gtk')
+pkgbase=wireshark
+pkgver=1.10.3
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' 'portaudio'
+ 'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme')
+url='http://www.wireshark.org/'
+source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2
+wireshark-1.10.3-gtk3.10-compile.patch)
+sha256sums=('c1641b36aeb0ca2c1a95fb01d2c647888b65e00a215c9a6464b5fc61e0fd498c'
+'45274cca58f0abdd3a560beb79a6f0bc8f35736426a1855ed048c9ad8e94f3c0')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -p1 -i ${srcdir}/wireshark-1.10.3-gtk3.10-compile.patch
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+
+  ./autogen.sh
+  ./configure \
+  --prefix=/usr \
+  --with-gtk3=yes \
+  --with-pcap \
+  --with-zlib \
+  --with-lua \
+  --with-portaudio \
+  --with-ssl \
+  --with-krb5
+  make all
+}
+
+package_wireshark-cli() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
+  depends=('krb5' 'libpcap' 'bash' 'gnutls' 'glib2' 'lua' 'portaudio')
+  install=wireshark.install
+  conflicts=(wireshark)
+
+  cd ${pkgbase}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  #wireshark uid group is 150
+  chgrp 150 ${pkgdir}/usr/bin/dumpcap
+  chmod 754 ${pkgdir}/usr/bin/dumpcap
+  rm ${pkgdir}/usr/bin/wireshark
+
+  # Headers
+  install -dm755 
${pkgdir}/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes},wiretap,wsutil}
+
+  install -m644 color.h config.h register.h ws_symbol_export.h 
${pkgdir}/usr/include/${pkgbase}
+  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes wiretap 
wsutil; do
+install -m644 ${d}/*.h ${pkgdir}/usr/include/${pkgbase}/${d}
+  done
+}
+
+package_wireshark-gtk() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
+  depends=('gtk3' 'wireshark-cli' 'desktop-file-utils' 'hicolor-icon-theme')
+  install=wireshark-gtk.install
+  replaces=(wireshark)
+  conflicts=(wireshark)
+
+  cd ${pkgbase}-${pkgver}
+
+  install -Dm755 .libs/wireshark ${pkgdir}/usr/bin/wireshark
+  for d in 16 32 48; do
+install -Dm644 image/hi${d}-app-wireshark.png  \
+   
${pkgdir}/usr/share/icons/hicolor/${d}x${d}/apps/wireshark.png
+  done
+
+  for d in 16 24 32 48 64 128 256 ; do
+install -Dm644 image/WiresharkDoc-${d}.png \
+   

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

2012-11-29 Thread Guillaume Alaux
Date: Thursday, November 29, 2012 @ 11:33:31
  Author: guillaume
Revision: 172116

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

Added:
  wireshark/repos/staging-i686/
  wireshark/repos/staging-i686/PKGBUILD
(from rev 172115, wireshark/trunk/PKGBUILD)
  wireshark/repos/staging-i686/enable_version.patch
(from rev 172115, wireshark/trunk/enable_version.patch)
  wireshark/repos/staging-i686/wireshark-gtk.install
(from rev 172115, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/staging-i686/wireshark.install
(from rev 172115, wireshark/trunk/wireshark.install)
  wireshark/repos/staging-x86_64/
  wireshark/repos/staging-x86_64/PKGBUILD
(from rev 172115, wireshark/trunk/PKGBUILD)
  wireshark/repos/staging-x86_64/enable_version.patch
(from rev 172115, wireshark/trunk/enable_version.patch)
  wireshark/repos/staging-x86_64/wireshark-gtk.install
(from rev 172115, wireshark/trunk/wireshark-gtk.install)
  wireshark/repos/staging-x86_64/wireshark.install
(from rev 172115, wireshark/trunk/wireshark.install)

--+
 staging-i686/PKGBUILD|   80 +
 staging-i686/enable_version.patch|   12 
 staging-i686/wireshark-gtk.install   |   12 
 staging-i686/wireshark.install   |   18 +++
 staging-x86_64/PKGBUILD  |   80 +
 staging-x86_64/enable_version.patch  |   12 
 staging-x86_64/wireshark-gtk.install |   12 
 staging-x86_64/wireshark.install |   18 +++
 8 files changed, 244 insertions(+)

Copied: wireshark/repos/staging-i686/PKGBUILD (from rev 172115, 
wireshark/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-11-29 16:33:31 UTC (rev 172116)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Guillaume ALAUX guilla...@archlinux.org
+# Contributor: Florian Pritz bluewind at jabber dot ccc dot de
+pkgname=('wireshark-cli' 'wireshark-gtk')
+pkgbase=wireshark
+pkgver=1.8.4
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('bison' 'flex' 'gtk2' 'krb5' 'libcap' 'libpcap' 'bash' 'gnutls'
+ 'libgcrypt' 'lua51' 'python' 'portaudio')
+url='http://www.wireshark.org/'
+options=(!libtool)
+source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2
+enable_version.patch)
+sha256sums=('cae9ec0cb9fa0b732a76c0f72f8c15d763f8cdc2e389cda2da6c48c24559faac'
+'0cf13fb0a53909dd737e44f3c3f62b824527d7c96eaffb69d9a8bf4772d54cbd')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  patch -p0  ${srcdir}/enable_version.patch
+
+  ./autogen.sh
+  ./configure \
+  --prefix=/usr \
+  --with-ssl \
+  --with-zlib=yes \
+  --with-lua \
+  --with-portaudio
+  make all
+}
+
+package_wireshark-cli() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI 
version'
+  depends=('krb5' 'libcap' 'libpcap' 'bash' 'gnutls' 'libgcrypt' 'glib2' 
'portaudio')
+  optdepends=('lua51: to use lua for prototyping and scripting'
+  'portaudio: to enable audio output for RTP streams')
+  install=wireshark.install
+  conflicts=(wireshark)
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  #wireshark uid group is 150
+  chgrp 150 ${pkgdir}/usr/bin/dumpcap
+  chmod 754 ${pkgdir}/usr/bin/dumpcap
+  rm ${pkgdir}/usr/bin/wireshark
+
+  # Headers
+  install -dm755 
${pkgdir}/usr/include/${pkgbase}/{epan/{crypt,dfilter,dissectors,ftypes},wiretap,wsutil}
+
+  install -m644 color.h config.h register.h ${pkgdir}/usr/include/${pkgbase}
+  for d in epan epan/crypt epan/dfilter epan/dissectors epan/ftypes wiretap 
wsutil; do
+install -m644 ${d}/*.h ${pkgdir}/usr/include/${pkgbase}/${d}
+  done
+}
+
+package_wireshark-gtk() {
+  pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - GTK 
frontend'
+  depends=('gtk2' 'wireshark-cli' 'desktop-file-utils' 'hicolor-icon-theme')
+  install=wireshark-gtk.install
+  replaces=(wireshark)
+  conflicts=(wireshark)
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  install -Dm755 .libs/wireshark ${pkgdir}/usr/bin/wireshark
+  for d in 16 32 48; do
+install -Dm644 image/hi${d}-app-wireshark.png  \
+   
${pkgdir}/usr/share/icons/hicolor/${d}x${d}/apps/wireshark.png
+  done
+
+  for d in 16 24 32 48 64 128 256 ; do
+install -Dm644 image/WiresharkDoc-${d}.png \
+   
${pkgdir}/usr/share/icons/hicolor/${d}x${d}/mimetypes/application-vnd.tcpdump.pcap.png
+  done
+  install -Dm644 wireshark.desktop 
${pkgdir}/usr/share/applications/wireshark.desktop
+}

Copied: wireshark/repos/staging-i686/enable_version.patch (from rev 172115, 
wireshark/trunk/enable_version.patch)
===
--- staging-i686/enable_version.patch   (rev 0)
+++