[arch-commits] Commit in tcpflow/repos (6 files)
Felix Yan
fyan at archlinux.org
Mon Sep 28 10:59:42 UTC 2015
Date: Monday, September 28, 2015 @ 12:59:42
Author: fyan
Revision: 142067
archrelease: copy trunk to community-i686, community-x86_64
Added:
tcpflow/repos/community-i686/PKGBUILD
(from rev 142066, tcpflow/trunk/PKGBUILD)
tcpflow/repos/community-x86_64/PKGBUILD
(from rev 142066, tcpflow/trunk/PKGBUILD)
Deleted:
tcpflow/repos/community-i686/FS41697.patch
tcpflow/repos/community-i686/PKGBUILD
tcpflow/repos/community-x86_64/FS41697.patch
tcpflow/repos/community-x86_64/PKGBUILD
--------------------------------+
/PKGBUILD | 88 +++++++++++++++++++++++++++++++++++++++
community-i686/FS41697.patch | 11 ----
community-i686/PKGBUILD | 48 ---------------------
community-x86_64/FS41697.patch | 11 ----
community-x86_64/PKGBUILD | 48 ---------------------
5 files changed, 88 insertions(+), 118 deletions(-)
Deleted: community-i686/FS41697.patch
===================================================================
--- community-i686/FS41697.patch 2015-09-28 10:58:17 UTC (rev 142066)
+++ community-i686/FS41697.patch 2015-09-28 10:59:42 UTC (rev 142067)
@@ -1,11 +0,0 @@
---- a/src/tcpip.cpp
-+++ b/src/tcpip.cpp
-@@ -262,7 +262,7 @@ void tcpip::print_packet(const u_char *d
- else if(demux.opt.output_strip_nonprint){
- for(const u_char *cc = data;cc<data+length;cc++){
- if(isprint(*cc) || (*cc=='\n') || (*cc=='\r')){
-- written += fputc(*cc,stdout);
-+ written += (fputc(*cc,stdout)!=EOF);
- }
- }
- }
Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD 2015-09-28 10:58:17 UTC (rev 142066)
+++ community-i686/PKGBUILD 2015-09-28 10:59:42 UTC (rev 142067)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at gmail.com>
-# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
-# Contributor: Jeff Mickey <jeff at archlinux.org>
-
-pkgname=tcpflow
-pkgver=1.4.4
-pkgrel=2
-pkgdesc="Captures data transmitted as part of TCP connections then stores the data conveniently"
-arch=('i686' 'x86_64')
-url="http://afflib.org/software/tcpflow"
-license=('GPL')
-depends=('libpcap' 'cairo')
-makedepends=('git' 'boost')
-source=("git+https://github.com/simsong/$pkgname.git#tag=$pkgname-$pkgver"
- 'git+https://github.com/simsong/be13_api.git'
- 'git+https://github.com/simsong/dfxml.git'
- 'git+https://github.com/joyent/http-parser.git'
- 'FS41697.patch')
-md5sums=('SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP'
- 'b4e66e456beffe28414e55fee913a84c')
-
-prepare() {
- cd $pkgname
- git submodule init
- git config submodule."src/be13_api".url "$srcdir/be13_api"
- git config submodule."src/dfxml".url "$srcdir/dfxml"
- git config submodule."src/http-parser".url "$srcdir/http-parser"
- git submodule update
-
- patch -p1 -i ../FS41697.patch
-}
-
-build() {
- cd $pkgname
- sh bootstrap.sh
- ./configure --prefix=/usr --mandir=/usr/share/man
- make
-}
-
-package() {
- cd $pkgname
- make DESTDIR="$pkgdir" install
-}
-
Copied: tcpflow/repos/community-i686/PKGBUILD (from rev 142066, tcpflow/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-28 10:59:42 UTC (rev 142067)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
+# Contributor: Jeff Mickey <jeff at archlinux.org>
+
+pkgname=tcpflow
+pkgver=1.4.5
+pkgrel=1
+pkgdesc="Captures data transmitted as part of TCP connections then stores the data conveniently"
+arch=('i686' 'x86_64')
+url="https://github.com/simsong/tcpflow"
+license=('GPL')
+depends=('libpcap' 'cairo')
+makedepends=('git' 'boost')
+source=("git+https://github.com/simsong/$pkgname.git#tag=$pkgname-$pkgver"
+ 'git+https://github.com/simsong/be13_api.git'
+ 'git+https://github.com/simsong/dfxml.git'
+ 'git+https://github.com/joyent/http-parser.git')
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP')
+
+prepare() {
+ cd $pkgname
+ git submodule init
+ git config submodule."src/be13_api".url "$srcdir/be13_api"
+ git config submodule."src/dfxml".url "$srcdir/dfxml"
+ git config submodule."src/http-parser".url "$srcdir/http-parser"
+ git submodule update
+}
+
+build() {
+ cd $pkgname
+ sh bootstrap.sh
+ ./configure --prefix=/usr --mandir=/usr/share/man
+ make
+}
+
+package() {
+ cd $pkgname
+ make DESTDIR="$pkgdir" install
+}
+
Deleted: community-x86_64/FS41697.patch
===================================================================
--- community-x86_64/FS41697.patch 2015-09-28 10:58:17 UTC (rev 142066)
+++ community-x86_64/FS41697.patch 2015-09-28 10:59:42 UTC (rev 142067)
@@ -1,11 +0,0 @@
---- a/src/tcpip.cpp
-+++ b/src/tcpip.cpp
-@@ -262,7 +262,7 @@ void tcpip::print_packet(const u_char *d
- else if(demux.opt.output_strip_nonprint){
- for(const u_char *cc = data;cc<data+length;cc++){
- if(isprint(*cc) || (*cc=='\n') || (*cc=='\r')){
-- written += fputc(*cc,stdout);
-+ written += (fputc(*cc,stdout)!=EOF);
- }
- }
- }
Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD 2015-09-28 10:58:17 UTC (rev 142066)
+++ community-x86_64/PKGBUILD 2015-09-28 10:59:42 UTC (rev 142067)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at gmail.com>
-# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
-# Contributor: Jeff Mickey <jeff at archlinux.org>
-
-pkgname=tcpflow
-pkgver=1.4.4
-pkgrel=2
-pkgdesc="Captures data transmitted as part of TCP connections then stores the data conveniently"
-arch=('i686' 'x86_64')
-url="http://afflib.org/software/tcpflow"
-license=('GPL')
-depends=('libpcap' 'cairo')
-makedepends=('git' 'boost')
-source=("git+https://github.com/simsong/$pkgname.git#tag=$pkgname-$pkgver"
- 'git+https://github.com/simsong/be13_api.git'
- 'git+https://github.com/simsong/dfxml.git'
- 'git+https://github.com/joyent/http-parser.git'
- 'FS41697.patch')
-md5sums=('SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP'
- 'b4e66e456beffe28414e55fee913a84c')
-
-prepare() {
- cd $pkgname
- git submodule init
- git config submodule."src/be13_api".url "$srcdir/be13_api"
- git config submodule."src/dfxml".url "$srcdir/dfxml"
- git config submodule."src/http-parser".url "$srcdir/http-parser"
- git submodule update
-
- patch -p1 -i ../FS41697.patch
-}
-
-build() {
- cd $pkgname
- sh bootstrap.sh
- ./configure --prefix=/usr --mandir=/usr/share/man
- make
-}
-
-package() {
- cd $pkgname
- make DESTDIR="$pkgdir" install
-}
-
Copied: tcpflow/repos/community-x86_64/PKGBUILD (from rev 142066, tcpflow/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2015-09-28 10:59:42 UTC (rev 142067)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Chris Brannon <cmbrannon79 at gmail.com>
+# Contributor: Jeff Mickey <jeff at archlinux.org>
+
+pkgname=tcpflow
+pkgver=1.4.5
+pkgrel=1
+pkgdesc="Captures data transmitted as part of TCP connections then stores the data conveniently"
+arch=('i686' 'x86_64')
+url="https://github.com/simsong/tcpflow"
+license=('GPL')
+depends=('libpcap' 'cairo')
+makedepends=('git' 'boost')
+source=("git+https://github.com/simsong/$pkgname.git#tag=$pkgname-$pkgver"
+ 'git+https://github.com/simsong/be13_api.git'
+ 'git+https://github.com/simsong/dfxml.git'
+ 'git+https://github.com/joyent/http-parser.git')
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP')
+
+prepare() {
+ cd $pkgname
+ git submodule init
+ git config submodule."src/be13_api".url "$srcdir/be13_api"
+ git config submodule."src/dfxml".url "$srcdir/dfxml"
+ git config submodule."src/http-parser".url "$srcdir/http-parser"
+ git submodule update
+}
+
+build() {
+ cd $pkgname
+ sh bootstrap.sh
+ ./configure --prefix=/usr --mandir=/usr/share/man
+ make
+}
+
+package() {
+ cd $pkgname
+ make DESTDIR="$pkgdir" install
+}
+
More information about the arch-commits
mailing list