mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-07 05:05:12 +02:00
Xtables-addons 1.27
This commit is contained in:
15
Makefile.am
15
Makefile.am
@@ -16,10 +16,15 @@ install-exec-hook:
|
|||||||
|
|
||||||
config.status: Makefile.iptrules.in
|
config.status: Makefile.iptrules.in
|
||||||
|
|
||||||
|
tmpdir := $(shell mktemp -dtu)
|
||||||
|
packer = xz
|
||||||
|
packext = .tar.xz
|
||||||
|
|
||||||
.PHONY: tarball
|
.PHONY: tarball
|
||||||
tarball:
|
tarball:
|
||||||
rm -Rf /tmp/xtables-addons-${PACKAGE_VERSION};
|
# do not use mkdir_p here.
|
||||||
pushd ${top_srcdir} && git archive --prefix=xtables-addons-${PACKAGE_VERSION}/ HEAD | tar -C /tmp -x && popd;
|
mkdir ${tmpdir}
|
||||||
pushd /tmp/xtables-addons-${PACKAGE_VERSION} && ./autogen.sh && popd;
|
pushd ${top_srcdir} && git archive --prefix=${PACKAGE_NAME}-${PACKAGE_VERSION}/ HEAD | tar -C ${tmpdir} -x && popd;
|
||||||
tar -C /tmp -cjf xtables-addons-${PACKAGE_VERSION}.tar.bz2 --owner=root --group=root xtables-addons-${PACKAGE_VERSION}/;
|
pushd ${tmpdir}/${PACKAGE_NAME}-${PACKAGE_VERSION} && ./autogen.sh && popd;
|
||||||
rm -Rf /tmp/xtables-addons-${PACKAGE_VERSION};
|
tar --use=${packer} -C ${tmpdir} -cf ${PACKAGE_NAME}-${PACKAGE_VERSION}${packext} --owner=root --group=root ${PACKAGE_NAME}-${PACKAGE_VERSION}/;
|
||||||
|
rm -Rf ${tmpdir};
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
AC_INIT([xtables-addons], [1.26])
|
AC_INIT([xtables-addons], [1.27])
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_PROG_INSTALL
|
AC_PROG_INSTALL
|
||||||
|
@@ -3,6 +3,11 @@ HEAD
|
|||||||
====
|
====
|
||||||
|
|
||||||
|
|
||||||
|
Xtables-addons 1.27 (May 16 2010)
|
||||||
|
=================================
|
||||||
|
- further updates for the upcoming 2.6.35 changes
|
||||||
|
|
||||||
|
|
||||||
Xtables-addons 1.26 (April 30 2010)
|
Xtables-addons 1.26 (April 30 2010)
|
||||||
===================================
|
===================================
|
||||||
- compat_xtables: fix 2.6.34 compile error due to a typo
|
- compat_xtables: fix 2.6.34 compile error due to a typo
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
.TH xtables-addons 8 "v1.26 (2010-04-30)" "" "v1.26 (2010-04-30)"
|
.TH xtables-addons 8 "v1.27 (2010-05-16)" "" "v1.27 (2010-05-16)"
|
||||||
.SH Name
|
.SH Name
|
||||||
Xtables-addons \(em additional extensions for iptables, ip6tables, etc.
|
Xtables-addons \(em additional extensions for iptables, ip6tables, etc.
|
||||||
.SH Targets
|
.SH Targets
|
||||||
|
Reference in New Issue
Block a user