From 4d8045a3c06de9a01a47d29651dc67a5df0a925b Mon Sep 17 00:00:00 2001 From: Warren Togami Date: Sat, 24 Mar 2007 22:47:36 +0000 Subject: [PATCH 01/30] Initialize branch FC-6 for libnetfilter_queue --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..d5b6362 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +FC-6 From 47d4e80e9b7f3b7df77d44def75a2c6b2d8ad479 Mon Sep 17 00:00:00 2001 From: Paul P Komkoff Jr Date: Fri, 6 Apr 2007 18:26:35 +0000 Subject: [PATCH 02/30] auto-import libnetfilter_queue-0.0.13-3 on branch FC-6 from libnetfilter_queue-0.0.13-3.src.rpm --- .cvsignore | 1 + libnetfilter_queue.spec | 76 +++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 78 insertions(+) create mode 100644 libnetfilter_queue.spec diff --git a/.cvsignore b/.cvsignore index e69de29..767194d 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +libnetfilter_queue-0.0.13.tar.bz2 diff --git a/libnetfilter_queue.spec b/libnetfilter_queue.spec new file mode 100644 index 0000000..eecea30 --- /dev/null +++ b/libnetfilter_queue.spec @@ -0,0 +1,76 @@ +Name: libnetfilter_queue +Version: 0.0.13 +Release: 3%{?dist} +Summary: Netfilter queue userspace library +Group: System Environment/Libraries +License: GPL +URL: http://netfilter.org +Source0: http://netfilter.org/projects/%{name}/files/%{name}-%{version}.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: libnfnetlink-devel, pkgconfig + +%description +libnetfilter_queue is a userspace library providing an API to packets that have +been queued by the kernel packet filter. It is is part of a system that +deprecates the old ip_queue / libipq mechanism. + +libnetfilter_queue has been previously known as libnfnetlink_queue. + +%package devel +Summary: Netfilter queue userspace library +Group: Development/Libraries +Requires: %{name} = %{version}-%{release}, pkgconfig + +%description devel +libnetfilter_queue is a userspace library providing an API to packets that have +been queued by the kernel packet filter. It is is part of a system that +deprecates the old ip_queue / libipq mechanism. + +libnetfilter_queue has been previously known as libnfnetlink_queue. + +%prep +%setup -q + +%build +%configure --disable-static --disable-rpath + +# kill the rpaths +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool + +make %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' + +%clean +rm -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root,-) +%doc COPYING +%{_libdir}/*.so.* + +%files devel +%defattr(-,root,root,-) +%{_libdir}/*.so +%dir %{_includedir}/%{name} +%{_includedir}/%{name}/*.h +%{_libdir}/pkgconfig/%{name}.pc + +%changelog +* Mon Mar 26 2007 Paul P Komkoff Jr - 0.0.13-3 +- own some directories + +* Mon Mar 19 2007 Paul P Komkoff Jr - 0.0.13-2 +- fix source url +- add pkgconfig to -devel Requires + +* Sat Mar 17 2007 Paul P Komkoff Jr - 0.0.13-1 +- Preparing for submission to fedora extras diff --git a/sources b/sources index e69de29..e66bcc1 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +660cbfd3dc8c10bf9b1803cd2b688256 libnetfilter_queue-0.0.13.tar.bz2 From 3589d21befdef105a513940fafa4dc444bd9877a Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Fri, 18 May 2007 05:37:17 +0000 Subject: [PATCH 03/30] Initialize branch F-7 for libnetfilter_queue --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..c48525c --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-7 From 3a4f5d716a69722870b7162fd0ed2905c3ab5d59 Mon Sep 17 00:00:00 2001 From: Paul P Komkoff Jr Date: Tue, 18 Sep 2007 22:27:35 +0000 Subject: [PATCH 04/30] libnetfilter_queue-0.0.15 --- .cvsignore | 2 +- libnetfilter_queue.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.cvsignore b/.cvsignore index 767194d..fc77097 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -libnetfilter_queue-0.0.13.tar.bz2 +libnetfilter_queue-0.0.15.tar.bz2 diff --git a/libnetfilter_queue.spec b/libnetfilter_queue.spec index eecea30..7d937ea 100644 --- a/libnetfilter_queue.spec +++ b/libnetfilter_queue.spec @@ -1,6 +1,6 @@ Name: libnetfilter_queue -Version: 0.0.13 -Release: 3%{?dist} +Version: 0.0.15 +Release: 1%{?dist} Summary: Netfilter queue userspace library Group: System Environment/Libraries License: GPL @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Tue Sep 18 2007 Paul P Komkoff Jr - 0.0.15-1 +- new upstream version + * Mon Mar 26 2007 Paul P Komkoff Jr - 0.0.13-3 - own some directories diff --git a/sources b/sources index e66bcc1..11bc81d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -660cbfd3dc8c10bf9b1803cd2b688256 libnetfilter_queue-0.0.13.tar.bz2 +d8602566c253a9114b19a8b77980d808 libnetfilter_queue-0.0.15.tar.bz2 From a5866c145e1799967f8e878839b2eeaaf2fc2045 Mon Sep 17 00:00:00 2001 From: Paul P Komkoff Jr Date: Fri, 19 Oct 2007 21:59:45 +0000 Subject: [PATCH 05/30] libnetfilter_queue-0.0.15-1 --- libnetfilter_queue.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/libnetfilter_queue.spec b/libnetfilter_queue.spec index eecea30..7d937ea 100644 --- a/libnetfilter_queue.spec +++ b/libnetfilter_queue.spec @@ -1,6 +1,6 @@ Name: libnetfilter_queue -Version: 0.0.13 -Release: 3%{?dist} +Version: 0.0.15 +Release: 1%{?dist} Summary: Netfilter queue userspace library Group: System Environment/Libraries License: GPL @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Tue Sep 18 2007 Paul P Komkoff Jr - 0.0.15-1 +- new upstream version + * Mon Mar 26 2007 Paul P Komkoff Jr - 0.0.13-3 - own some directories diff --git a/sources b/sources index e66bcc1..11bc81d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -660cbfd3dc8c10bf9b1803cd2b688256 libnetfilter_queue-0.0.13.tar.bz2 +d8602566c253a9114b19a8b77980d808 libnetfilter_queue-0.0.15.tar.bz2 From 561a69587b8a91a5b2d1fc940541d3f74f5799a5 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Sat, 20 Oct 2007 23:34:06 +0000 Subject: [PATCH 06/30] Initialize branch F-8 for libnetfilter_queue --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..e9e7ccd --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-8 From eb0ecf6052d4d5177d2758318f87725645db50fe Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 21 Apr 2008 02:54:46 +0000 Subject: [PATCH 07/30] Initialize branch F-9 for libnetfilter_queue --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..1c26f78 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-9 From 3a0c84ed4990ee82a29f7e4163a7084de3c8188e Mon Sep 17 00:00:00 2001 From: Paul P Komkoff Jr Date: Sat, 31 May 2008 20:00:23 +0000 Subject: [PATCH 08/30] libnetfilter_queue-0.0.15-4 --- libnetfilter_queue-linuxtypes.patch | 12 +++ libnetfilter_queue-sysheader.patch | 127 ++++++++++++++++++++++++++++ libnetfilter_queue.spec | 25 +++++- 3 files changed, 160 insertions(+), 4 deletions(-) create mode 100644 libnetfilter_queue-linuxtypes.patch create mode 100644 libnetfilter_queue-sysheader.patch diff --git a/libnetfilter_queue-linuxtypes.patch b/libnetfilter_queue-linuxtypes.patch new file mode 100644 index 0000000..372b600 --- /dev/null +++ b/libnetfilter_queue-linuxtypes.patch @@ -0,0 +1,12 @@ +diff --git a/utils/nfqnl_test.c b/utils/nfqnl_test.c +index af224de..be72974 100644 +--- a/utils/nfqnl_test.c ++++ b/utils/nfqnl_test.c +@@ -3,6 +3,7 @@ + #include + #include + #include ++#include + #include /* for NF_ACCEPT */ + + #include diff --git a/libnetfilter_queue-sysheader.patch b/libnetfilter_queue-sysheader.patch new file mode 100644 index 0000000..8951bd2 --- /dev/null +++ b/libnetfilter_queue-sysheader.patch @@ -0,0 +1,127 @@ +diff --git a/include/libnetfilter_queue/Makefile.am b/include/libnetfilter_queue/Makefile.am +index b0f214b..fc9a2f6 100644 +--- a/include/libnetfilter_queue/Makefile.am ++++ b/include/libnetfilter_queue/Makefile.am +@@ -1,3 +1,3 @@ + +-pkginclude_HEADERS = libnetfilter_queue.h libipq.h linux_nfnetlink_queue.h ++pkginclude_HEADERS = libnetfilter_queue.h libipq.h + +diff --git a/include/libnetfilter_queue/libnetfilter_queue.h b/include/libnetfilter_queue/libnetfilter_queue.h +index 6695c3d..fafcc18 100644 +--- a/include/libnetfilter_queue/libnetfilter_queue.h ++++ b/include/libnetfilter_queue/libnetfilter_queue.h +@@ -14,9 +14,12 @@ + #define __LIBCTNETLINK_H + + #include +-// #include + +-#include ++#ifndef aligned_be64 ++#define aligned_be64 __be64 __attribute__((aligned(8))) ++#endif ++ ++#include + + struct nfq_handle; + struct nfq_q_handle; +diff --git a/include/libnetfilter_queue/linux_nfnetlink_queue.h b/include/libnetfilter_queue/linux_nfnetlink_queue.h +deleted file mode 100644 +index 191b094..0000000 +--- a/include/libnetfilter_queue/linux_nfnetlink_queue.h ++++ /dev/null +@@ -1,93 +0,0 @@ +-#ifndef _NFNETLINK_QUEUE_H +-#define _NFNETLINK_QUEUE_H +- +-#ifndef aligned_u64 +-#define aligned_u64 unsigned long long __attribute__((aligned(8))) +-#endif +- +-#include +- +-enum nfqnl_msg_types { +- NFQNL_MSG_PACKET, /* packet from kernel to userspace */ +- NFQNL_MSG_VERDICT, /* verdict from userspace to kernel */ +- NFQNL_MSG_CONFIG, /* connect to a particular queue */ +- +- NFQNL_MSG_MAX +-}; +- +-struct nfqnl_msg_packet_hdr { +- u_int32_t packet_id; /* unique ID of packet in queue */ +- u_int16_t hw_protocol; /* hw protocol (network order) */ +- u_int8_t hook; /* netfilter hook */ +-} __attribute__ ((packed)); +- +-struct nfqnl_msg_packet_hw { +- u_int16_t hw_addrlen; +- u_int16_t _pad; +- u_int8_t hw_addr[8]; +-} __attribute__ ((packed)); +- +-struct nfqnl_msg_packet_timestamp { +- aligned_u64 sec; +- aligned_u64 usec; +-} __attribute__ ((packed)); +- +-enum nfqnl_attr_type { +- NFQA_UNSPEC, +- NFQA_PACKET_HDR, +- NFQA_VERDICT_HDR, /* nfqnl_msg_verdict_hrd */ +- NFQA_MARK, /* u_int32_t nfmark */ +- NFQA_TIMESTAMP, /* nfqnl_msg_packet_timestamp */ +- NFQA_IFINDEX_INDEV, /* u_int32_t ifindex */ +- NFQA_IFINDEX_OUTDEV, /* u_int32_t ifindex */ +- NFQA_IFINDEX_PHYSINDEV, /* u_int32_t ifindex */ +- NFQA_IFINDEX_PHYSOUTDEV, /* u_int32_t ifindex */ +- NFQA_HWADDR, /* nfqnl_msg_packet_hw */ +- NFQA_PAYLOAD, /* opaque data payload */ +- +- __NFQA_MAX +-}; +-#define NFQA_MAX (__NFQA_MAX - 1) +- +-struct nfqnl_msg_verdict_hdr { +- u_int32_t verdict; +- u_int32_t id; +-} __attribute__ ((packed)); +- +- +-enum nfqnl_msg_config_cmds { +- NFQNL_CFG_CMD_NONE, +- NFQNL_CFG_CMD_BIND, +- NFQNL_CFG_CMD_UNBIND, +- NFQNL_CFG_CMD_PF_BIND, +- NFQNL_CFG_CMD_PF_UNBIND, +-}; +- +-struct nfqnl_msg_config_cmd { +- u_int8_t command; /* nfqnl_msg_config_cmds */ +- u_int8_t _pad; +- u_int16_t pf; /* AF_xxx for PF_[UN]BIND */ +-} __attribute__ ((packed)); +- +-enum nfqnl_config_mode { +- NFQNL_COPY_NONE, +- NFQNL_COPY_META, +- NFQNL_COPY_PACKET, +-}; +- +-struct nfqnl_msg_config_params { +- u_int32_t copy_range; +- u_int8_t copy_mode; /* enum nfqnl_config_mode */ +-} __attribute__ ((packed)); +- +- +-enum nfqnl_attr_config { +- NFQA_CFG_UNSPEC, +- NFQA_CFG_CMD, /* nfqnl_msg_config_cmd */ +- NFQA_CFG_PARAMS, /* nfqnl_msg_config_params */ +- NFQA_CFG_QUEUE_MAXLEN, /* u_int32_t */ +- __NFQA_CFG_MAX +-}; +-#define NFQA_CFG_MAX (__NFQA_CFG_MAX-1) +- +-#endif /* _NFNETLINK_QUEUE_H */ diff --git a/libnetfilter_queue.spec b/libnetfilter_queue.spec index 7d937ea..6618920 100644 --- a/libnetfilter_queue.spec +++ b/libnetfilter_queue.spec @@ -1,14 +1,17 @@ Name: libnetfilter_queue Version: 0.0.15 -Release: 1%{?dist} +Release: 4%{?dist} Summary: Netfilter queue userspace library Group: System Environment/Libraries License: GPL URL: http://netfilter.org Source0: http://netfilter.org/projects/%{name}/files/%{name}-%{version}.tar.bz2 +Patch0: libnetfilter_queue-linuxtypes.patch +Patch1: libnetfilter_queue-sysheader.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libnfnetlink-devel, pkgconfig +BuildRequires: libnfnetlink-devel, pkgconfig, kernel-headers +BuildRequires: autoconf, automake, libtool %description libnetfilter_queue is a userspace library providing an API to packets that have @@ -21,6 +24,7 @@ libnetfilter_queue has been previously known as libnfnetlink_queue. Summary: Netfilter queue userspace library Group: Development/Libraries Requires: %{name} = %{version}-%{release}, pkgconfig +Requires: libnfnetlink-devel, kernel-headers %description devel libnetfilter_queue is a userspace library providing an API to packets that have @@ -31,13 +35,17 @@ libnetfilter_queue has been previously known as libnfnetlink_queue. %prep %setup -q +%patch -p1 +%patch1 -p1 + +autoreconf -i --force %build %configure --disable-static --disable-rpath # kill the rpaths -sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool -sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool +#sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +#sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} @@ -65,6 +73,15 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Fri Feb 22 2008 Paul P Komkoff Jr - 0.0.15-4 +- use system header instead of bundled one + +* Fri Feb 22 2008 Paul P Komkoff Jr - 0.0.15-3 +- fix compilation with newer glibc/headers/whatever + +* Tue Feb 19 2008 Fedora Release Engineering - 0.0.15-2 +- Autorebuild for GCC 4.3 + * Tue Sep 18 2007 Paul P Komkoff Jr - 0.0.15-1 - new upstream version From 52010fbe50ea3d64eed0f0c64b2f6c2779e39ea1 Mon Sep 17 00:00:00 2001 From: Paul P Komkoff Jr Date: Sun, 26 Oct 2008 16:39:10 +0000 Subject: [PATCH 09/30] libnetfilter_queue-0.0.16 --- .cvsignore | 2 +- libnetfilter_queue-linuxtypes.patch | 12 ----------- libnetfilter_queue-sysheader.patch | 6 +++--- libnetfilter_queue.spec | 31 +++++++++++++++++------------ sources | 2 +- 5 files changed, 23 insertions(+), 30 deletions(-) delete mode 100644 libnetfilter_queue-linuxtypes.patch diff --git a/.cvsignore b/.cvsignore index fc77097..8fd8ba8 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -libnetfilter_queue-0.0.15.tar.bz2 +libnetfilter_queue-0.0.16.tar.bz2 diff --git a/libnetfilter_queue-linuxtypes.patch b/libnetfilter_queue-linuxtypes.patch deleted file mode 100644 index 372b600..0000000 --- a/libnetfilter_queue-linuxtypes.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/utils/nfqnl_test.c b/utils/nfqnl_test.c -index af224de..be72974 100644 ---- a/utils/nfqnl_test.c -+++ b/utils/nfqnl_test.c -@@ -3,6 +3,7 @@ - #include - #include - #include -+#include - #include /* for NF_ACCEPT */ - - #include diff --git a/libnetfilter_queue-sysheader.patch b/libnetfilter_queue-sysheader.patch index 8951bd2..7ba17ba 100644 --- a/libnetfilter_queue-sysheader.patch +++ b/libnetfilter_queue-sysheader.patch @@ -8,7 +8,7 @@ index b0f214b..fc9a2f6 100644 +pkginclude_HEADERS = libnetfilter_queue.h libipq.h diff --git a/include/libnetfilter_queue/libnetfilter_queue.h b/include/libnetfilter_queue/libnetfilter_queue.h -index 6695c3d..fafcc18 100644 +index 1a72c51..df9bd72 100644 --- a/include/libnetfilter_queue/libnetfilter_queue.h +++ b/include/libnetfilter_queue/libnetfilter_queue.h @@ -14,9 +14,12 @@ @@ -24,8 +24,8 @@ index 6695c3d..fafcc18 100644 + +#include - struct nfq_handle; - struct nfq_q_handle; + #ifdef __cplusplus + extern "C" { diff --git a/include/libnetfilter_queue/linux_nfnetlink_queue.h b/include/libnetfilter_queue/linux_nfnetlink_queue.h deleted file mode 100644 index 191b094..0000000 diff --git a/libnetfilter_queue.spec b/libnetfilter_queue.spec index 6618920..ae87476 100644 --- a/libnetfilter_queue.spec +++ b/libnetfilter_queue.spec @@ -1,16 +1,16 @@ Name: libnetfilter_queue -Version: 0.0.15 -Release: 4%{?dist} +Version: 0.0.16 +Release: 3%{?dist} Summary: Netfilter queue userspace library Group: System Environment/Libraries -License: GPL +# Most files say GPLv2+, one says v2 only. +License: GPLv2 URL: http://netfilter.org Source0: http://netfilter.org/projects/%{name}/files/%{name}-%{version}.tar.bz2 -Patch0: libnetfilter_queue-linuxtypes.patch -Patch1: libnetfilter_queue-sysheader.patch +Patch0: libnetfilter_queue-sysheader.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libnfnetlink-devel, pkgconfig, kernel-headers +BuildRequires: libnfnetlink-devel >= 0.0.38, pkgconfig, kernel-headers BuildRequires: autoconf, automake, libtool %description @@ -24,7 +24,7 @@ libnetfilter_queue has been previously known as libnfnetlink_queue. Summary: Netfilter queue userspace library Group: Development/Libraries Requires: %{name} = %{version}-%{release}, pkgconfig -Requires: libnfnetlink-devel, kernel-headers +Requires: libnfnetlink-devel >= 0.0.38, kernel-headers %description devel libnetfilter_queue is a userspace library providing an API to packets that have @@ -35,18 +35,13 @@ libnetfilter_queue has been previously known as libnfnetlink_queue. %prep %setup -q -%patch -p1 -%patch1 -p1 +%patch0 -p1 autoreconf -i --force %build %configure --disable-static --disable-rpath -# kill the rpaths -#sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool -#sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool - make %{?_smp_mflags} %install @@ -73,6 +68,16 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Sun Oct 26 2008 Paul P. Komkoff Jr - 0.0.16-3 +- fix patch/patch0 +- depend on specific libnfnetlink version + +* Thu Aug 7 2008 Tom "spot" Callaway - 0.0.16-2 +- fix license tag + +* Wed Jul 16 2008 Paul P. Komkoff Jr - 0.0.16-1 +- new upstream version + * Fri Feb 22 2008 Paul P Komkoff Jr - 0.0.15-4 - use system header instead of bundled one diff --git a/sources b/sources index 11bc81d..955ab81 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d8602566c253a9114b19a8b77980d808 libnetfilter_queue-0.0.15.tar.bz2 +b36664e6cd39edbfe46b416a86118add libnetfilter_queue-0.0.16.tar.bz2 From e48d52eab0bc10bde6023a3252e17b978b8a8ae0 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 7 Nov 2008 03:33:50 +0000 Subject: [PATCH 10/30] Initialize branch F-10 for libnetfilter_queue --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..dc32377 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-10 From 4cc0b197f14eff07ec67d28d6d338e9daed67e84 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 15 Apr 2009 05:04:25 +0000 Subject: [PATCH 11/30] Initialize branch F-11 for libnetfilter_queue --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..25c7708 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-11 From 945bfbfda704f39660cbb4ae88024f0f365167ee Mon Sep 17 00:00:00 2001 From: Paul P Komkoff Jr Date: Sun, 24 May 2009 10:38:35 +0000 Subject: [PATCH 12/30] libnetfilter_queue-0.0.17-1 --- .cvsignore | 2 +- libnetfilter_queue.spec | 16 ++++++++++++---- sources | 2 +- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/.cvsignore b/.cvsignore index 8fd8ba8..82b3193 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -libnetfilter_queue-0.0.16.tar.bz2 +libnetfilter_queue-0.0.17.tar.bz2 diff --git a/libnetfilter_queue.spec b/libnetfilter_queue.spec index ae87476..604b55f 100644 --- a/libnetfilter_queue.spec +++ b/libnetfilter_queue.spec @@ -1,6 +1,8 @@ +%define libnfnetlink 0.0.41 + Name: libnetfilter_queue -Version: 0.0.16 -Release: 3%{?dist} +Version: 0.0.17 +Release: 1%{?dist} Summary: Netfilter queue userspace library Group: System Environment/Libraries # Most files say GPLv2+, one says v2 only. @@ -10,7 +12,7 @@ Source0: http://netfilter.org/projects/%{name}/files/%{name}-%{version}.t Patch0: libnetfilter_queue-sysheader.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libnfnetlink-devel >= 0.0.38, pkgconfig, kernel-headers +BuildRequires: libnfnetlink-devel >= %{libnfnetlink}, pkgconfig, kernel-headers BuildRequires: autoconf, automake, libtool %description @@ -24,7 +26,7 @@ libnetfilter_queue has been previously known as libnfnetlink_queue. Summary: Netfilter queue userspace library Group: Development/Libraries Requires: %{name} = %{version}-%{release}, pkgconfig -Requires: libnfnetlink-devel >= 0.0.38, kernel-headers +Requires: libnfnetlink-devel >= %{libnfnetlink}, kernel-headers %description devel libnetfilter_queue is a userspace library providing an API to packets that have @@ -68,6 +70,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Sat Mar 7 2009 Paul P. Komkoff Jr - 0.0.17-1 +- upstream update + +* Wed Feb 25 2009 Fedora Release Engineering - 0.0.16-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sun Oct 26 2008 Paul P. Komkoff Jr - 0.0.16-3 - fix patch/patch0 - depend on specific libnfnetlink version diff --git a/sources b/sources index 955ab81..c28abb4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b36664e6cd39edbfe46b416a86118add libnetfilter_queue-0.0.16.tar.bz2 +2cde35e678ead3a8f9eb896bf807a159 libnetfilter_queue-0.0.17.tar.bz2 From 2257fad3573b2d8f3eb314365bbe8d7fa5116af8 Mon Sep 17 00:00:00 2001 From: Paul P Komkoff Jr Date: Sun, 21 Jun 2009 11:35:59 +0000 Subject: [PATCH 13/30] libnetfilter_queue-0.0.17-1 --- .cvsignore | 2 +- libnetfilter_queue.spec | 16 ++++++++++++---- sources | 2 +- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/.cvsignore b/.cvsignore index 8fd8ba8..82b3193 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -libnetfilter_queue-0.0.16.tar.bz2 +libnetfilter_queue-0.0.17.tar.bz2 diff --git a/libnetfilter_queue.spec b/libnetfilter_queue.spec index ae87476..604b55f 100644 --- a/libnetfilter_queue.spec +++ b/libnetfilter_queue.spec @@ -1,6 +1,8 @@ +%define libnfnetlink 0.0.41 + Name: libnetfilter_queue -Version: 0.0.16 -Release: 3%{?dist} +Version: 0.0.17 +Release: 1%{?dist} Summary: Netfilter queue userspace library Group: System Environment/Libraries # Most files say GPLv2+, one says v2 only. @@ -10,7 +12,7 @@ Source0: http://netfilter.org/projects/%{name}/files/%{name}-%{version}.t Patch0: libnetfilter_queue-sysheader.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libnfnetlink-devel >= 0.0.38, pkgconfig, kernel-headers +BuildRequires: libnfnetlink-devel >= %{libnfnetlink}, pkgconfig, kernel-headers BuildRequires: autoconf, automake, libtool %description @@ -24,7 +26,7 @@ libnetfilter_queue has been previously known as libnfnetlink_queue. Summary: Netfilter queue userspace library Group: Development/Libraries Requires: %{name} = %{version}-%{release}, pkgconfig -Requires: libnfnetlink-devel >= 0.0.38, kernel-headers +Requires: libnfnetlink-devel >= %{libnfnetlink}, kernel-headers %description devel libnetfilter_queue is a userspace library providing an API to packets that have @@ -68,6 +70,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/%{name}.pc %changelog +* Sat Mar 7 2009 Paul P. Komkoff Jr - 0.0.17-1 +- upstream update + +* Wed Feb 25 2009 Fedora Release Engineering - 0.0.16-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sun Oct 26 2008 Paul P. Komkoff Jr - 0.0.16-3 - fix patch/patch0 - depend on specific libnfnetlink version diff --git a/sources b/sources index 955ab81..c28abb4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b36664e6cd39edbfe46b416a86118add libnetfilter_queue-0.0.16.tar.bz2 +2cde35e678ead3a8f9eb896bf807a159 libnetfilter_queue-0.0.17.tar.bz2 From 44e18bc1b0d74b742e18c500e1737b8eb1f2053d Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 29 Sep 2009 05:21:32 +0000 Subject: [PATCH 14/30] Initialize branch F-12 for libnetfilter_queue --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..06de2d2 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-12 From d40348bccb7c7998e0a5e188af77590671eba3be Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:51:03 +0000 Subject: [PATCH 15/30] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e2631c1..4d566d9 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: libnetfilter_queue -# $Id$ +# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ NAME := libnetfilter_queue SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From b128caa3da71ea243e6b3a4bb5e0ad58d09cbb87 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:51:03 +0000 Subject: [PATCH 16/30] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e2631c1..4d566d9 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: libnetfilter_queue -# $Id$ +# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ NAME := libnetfilter_queue SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 376a31bfef8b4cce8f5bb248b8bbce80a9b04b1d Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:51:04 +0000 Subject: [PATCH 17/30] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e2631c1..4d566d9 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: libnetfilter_queue -# $Id$ +# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ NAME := libnetfilter_queue SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From a6099ef81aa396444699e09c53781d1c33aaab20 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:51:04 +0000 Subject: [PATCH 18/30] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e2631c1..4d566d9 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: libnetfilter_queue -# $Id$ +# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ NAME := libnetfilter_queue SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From e4bbbc91cce81f5e84f4d56b4a6ded52faa97342 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:51:04 +0000 Subject: [PATCH 19/30] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e2631c1..4d566d9 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: libnetfilter_queue -# $Id$ +# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ NAME := libnetfilter_queue SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From f0553539f8bd230290720d100a0ffe9efe3ff573 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:51:04 +0000 Subject: [PATCH 20/30] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e2631c1..4d566d9 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: libnetfilter_queue -# $Id$ +# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ NAME := libnetfilter_queue SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From d8cc99c5d316214b9f5055497ebe948d7879d7aa Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:51:05 +0000 Subject: [PATCH 21/30] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e2631c1..4d566d9 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: libnetfilter_queue -# $Id$ +# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ NAME := libnetfilter_queue SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 369bbfd195a49e160dde7941048bbe56f6a88fff Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 17 Feb 2010 01:53:44 +0000 Subject: [PATCH 22/30] Initialize branch F-13 for libnetfilter_queue --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..baa94ef --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-13 From 911f3caec7c911826a7df4fb8e36cf48242ec075 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 21:21:28 +0000 Subject: [PATCH 23/30] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 4d566d9..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libnetfilter_queue -# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ -NAME := libnetfilter_queue -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index e9e7ccd..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-8 From 054e41ec5b7b87716b3031de12b8600bdf22172d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 21:21:29 +0000 Subject: [PATCH 24/30] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 4d566d9..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libnetfilter_queue -# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ -NAME := libnetfilter_queue -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index c48525c..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-7 From 6392fbe031d266b4e4526069c4103292630f5e2b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 21:21:30 +0000 Subject: [PATCH 25/30] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 4d566d9..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libnetfilter_queue -# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ -NAME := libnetfilter_queue -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index baa94ef..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-13 From 6878e5a3041207b52cc2e084a76bba75f983bcd6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 21:21:31 +0000 Subject: [PATCH 26/30] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 4d566d9..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libnetfilter_queue -# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ -NAME := libnetfilter_queue -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 06de2d2..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-12 From ee9c053775124a2e32913ef9f33b976feca1874a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 21:21:32 +0000 Subject: [PATCH 27/30] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 4d566d9..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libnetfilter_queue -# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ -NAME := libnetfilter_queue -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index dc32377..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-10 From 0180b69083970ff2bb3bb67614ab12a3fd8fa449 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 21:21:33 +0000 Subject: [PATCH 28/30] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 4d566d9..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libnetfilter_queue -# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ -NAME := libnetfilter_queue -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 1c26f78..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-9 From 5a18ddd72e4c87ea60c5f476e42aa3a9ac607d7a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 21:21:34 +0000 Subject: [PATCH 29/30] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 4d566d9..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libnetfilter_queue -# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ -NAME := libnetfilter_queue -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 25c7708..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-11 From 4eb06e9b915ce6238bbba648c955a9eca04da4f1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 21:21:34 +0000 Subject: [PATCH 30/30] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 4d566d9..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libnetfilter_queue -# $Id: Makefile,v 1.1 2007/03/24 22:47:23 wtogami Exp $ -NAME := libnetfilter_queue -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index d5b6362..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -FC-6