Alex 'AdUser' Z
8 years ago
8 changed files with 83 additions and 0 deletions
@ -0,0 +1,5 @@
|
||||
f2b (0.2-1) unstable; urgency=low |
||||
|
||||
* Initial release |
||||
|
||||
-- Alex 'AdUser' Z <ad_user@runbox.com> Sun, 21 Aug 2016 15:56:52 +1000 |
@ -0,0 +1,20 @@
|
||||
Source: f2b |
||||
Section: net |
||||
Priority: optional |
||||
Maintainer: Alex 'AdUser' Z <ad_user@runbox.com> |
||||
Build-Depends: debhelper (>= 9), cmake |
||||
Standards-Version: 3.9.5 |
||||
Homepage: https://github.com/AdUser/f2b |
||||
Vcs-Git: https://github.com/AdUser/f2b.git |
||||
Vcs-Browser: https://github.com/AdUser/f2b |
||||
|
||||
Package: f2b |
||||
Architecture: any |
||||
Depends: ${shlibs:Depends}, ${misc:Depends} |
||||
Description: f2b is lightweight fail2ban alternative |
||||
Features: |
||||
. |
||||
* written in pure C |
||||
* small memory footprint |
||||
* minimum dependencies (req: libc, libdl; optional: pcre) |
||||
* pluggable filters / backends (you may write custom one) |
@ -0,0 +1,28 @@
|
||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ |
||||
Upstream-Name: f2b |
||||
Source: https://github.com/AdUser/f2b |
||||
|
||||
Files: * |
||||
Copyright: 2015-2016 Alex 'AdUser' Z <ad_user@runbox.com> |
||||
License: GPL-2.0+ |
||||
|
||||
Files: debian/* |
||||
Copyright: 2016 Alex 'AdUser' Z <ad_user@runbox.com> |
||||
License: GPL-2.0+ |
||||
|
||||
License: GPL-2.0+ |
||||
This package is free software; you can redistribute it and/or modify |
||||
it under the terms of the GNU General Public License as published by |
||||
the Free Software Foundation; either version 2 of the License, or |
||||
(at your option) any later version. |
||||
. |
||||
This package is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU General Public License for more details. |
||||
. |
||||
You should have received a copy of the GNU General Public License |
||||
along with this program. If not, see <http://www.gnu.org/licenses/> |
||||
. |
||||
On Debian systems, the complete text of the GNU General |
||||
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". |
@ -0,0 +1,4 @@
|
||||
# This is a POSIX shell fragment |
||||
|
||||
# Additional options that are passed to the Daemon. |
||||
DAEMON_OPTS="" |
@ -0,0 +1,21 @@
|
||||
#!/usr/bin/make -f |
||||
# See debhelper(7) (uncomment to enable) |
||||
# output every command that modifies files on the build system. |
||||
#DH_VERBOSE = 1 |
||||
|
||||
DPKG_EXPORT_BUILDFLAGS = 1 |
||||
include /usr/share/dpkg/default.mk |
||||
|
||||
export DEB_BUILD_MAINT_OPTIONS = hardening=+all |
||||
|
||||
export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic |
||||
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed |
||||
|
||||
%: |
||||
dh $@ |
||||
|
||||
# debmake generated override targets |
||||
# This is example for Cmake (See http://bugs.debian.org/641051 ) |
||||
override_dh_auto_configure: |
||||
dh_auto_configure -- \ |
||||
-DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) |
Loading…
Reference in new issue