Skip to content

Commit

Permalink
Merge branch 'wxsBSD-0.5.31-update', update .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Mraoul committed Oct 18, 2019
2 parents 846bc37 + 9a76b10 commit 169eba2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
libhtp-0.5.25
libhtp-0.*/
build/*
*.swp
2 changes: 1 addition & 1 deletion htpy.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "htp.h"
#include "htp_private.h"

#define HTPY_VERSION "0.25.1"
#define HTPY_VERSION "0.26"

static PyObject *htpy_error;
static PyObject *htpy_stop;
Expand Down
Binary file removed libhtp-0.5.25.tar.gz
Binary file not shown.
Binary file added libhtp-0.5.31.tar.gz
Binary file not shown.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

pathjoin = os.path.join

GITVER = '0.5.25'
GITVER = '0.5.31'
PKGNAME = 'libhtp-' + GITVER
PKGTAR = PKGNAME + '.tar.gz'
BUILDDIR = 'libhtp-' + GITVER
Expand All @@ -19,7 +19,7 @@
class htpyMaker(build):
HTPTAR = PKGTAR
HTPDIR = BUILDDIR
include_dirs = [ pathjoin(HTPDIR, 'htp') ]
include_dirs = [ HTPDIR, pathjoin(HTPDIR, 'htp') ]
library_dirs = []
extra_objects = [ pathjoin(HTPDIR, 'htp/.libs', 'libhtp.a') ]
libhtp = pathjoin(HTPDIR, 'htp/.libs', 'libhtp.a')
Expand Down Expand Up @@ -51,7 +51,7 @@ def run(self):

setup (# Distribution meta-data
name = "htpy",
version = "0.25.1",
version = "0.26",
description = "python bindings for libhtp",
author = "Wesley Shields",
author_email = "wxs@atarininja.org",
Expand Down

0 comments on commit 169eba2

Please sign in to comment.