libmodsecurity-vl.spec 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. Name: libmodsecurity
  2. Version: 3.0.3
  3. Release: 4%{?_dist_release}
  4. Summary: A library that loads/interprets rules written in the ModSecurity SecRules
  5. Group: Development/Libraries
  6. Vendor: Project Vine
  7. Distribution: Vine Linux
  8. License: ASL 2.0
  9. URL: https://www.modsecurity.org/
  10. Source0: https://github.com/SpiderLabs/ModSecurity/releases/download/v%{version}/modsecurity-v%{version}.tar.gz
  11. BuildRequires: gcc-c++
  12. BuildRequires: make
  13. BuildRequires: flex
  14. BuildRequires: bison
  15. BuildRequires: git-core
  16. BuildRequires: ssdeep-devel
  17. BuildRequires: pkgconfig(libxml-2.0)
  18. BuildRequires: pkgconfig(yajl)
  19. BuildRequires: curl-devel
  20. BuildRequires: pkgconfig(geoip)
  21. BuildRequires: pkgconfig(libpcre)
  22. BuildRequires: pkgconfig(lmdb)
  23. # libinjection is supposed to be bundled (same as with mod_security 2.x)
  24. # See: https://github.com/client9/libinjection#embedding
  25. Provides: bundled(libinjection) = 3.9.2
  26. %description
  27. Libmodsecurity is one component of the ModSecurity v3 project.
  28. The library codebase serves as an interface to ModSecurity Connectors
  29. taking in web traffic and applying traditional ModSecurity processing.
  30. In general, it provides the capability to load/interpret rules written
  31. in the ModSecurity SecRules format and apply them to HTTP content provided
  32. by your application via Connectors.
  33. %package devel
  34. Summary: Development files for %{name}
  35. Requires: %{name}%{?_isa} = %{version}-%{release}
  36. %description devel
  37. The %{name}-devel package contains libraries and header files for
  38. developing applications that use %{name}.
  39. %package static
  40. Summary: Development files for %{name}
  41. Requires: %{name}%{?_isa} = %{version}-%{release}
  42. %description static
  43. The %{name}-static package contains static libraries for developing
  44. applications that use %{name}.
  45. %prep
  46. %autosetup -n modsecurity-v%{version}
  47. %build
  48. %configure --libdir=%{_libdir} --with-lmdb
  49. %make_build
  50. %install
  51. %make_install
  52. %post -p /sbin/ldconfig
  53. %postun -p /sbin/ldconfig
  54. %files
  55. %license LICENSE
  56. %doc README.md AUTHORS
  57. %doc modsecurity.conf-recommended unicode.mapping
  58. %{_libdir}/*.so.*
  59. %{_bindir}/*
  60. %files devel
  61. %license LICENSE
  62. %doc README.md AUTHORS
  63. %{_includedir}/*
  64. %{_libdir}/*.so
  65. %{_libdir}/pkgconfig/*
  66. %files static
  67. %{_libdir}/*.a
  68. %{_libdir}/*.la
  69. %changelog
  70. * Sun Oct 27 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.0.3-4
  71. - added sample configurations to %%doc.
  72. * Wed Oct 23 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 3.0.3-3
  73. - initial build for Vine Linux.
  74. * Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.3-2
  75. - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
  76. * Sun Mar 31 2019 Athmane Madjoudj <athmane@fedoraproject.org> - 3.0.3-1
  77. - Update to 3.0.3 (rhbz #1672678)
  78. - Remove pkg-config bits since it's included in this release
  79. * Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-5
  80. - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
  81. * Fri Oct 19 2018 Dridi Boukelmoune <dridi@fedoraproject.org> - 3.0.2-4
  82. - Back-port of modsecurity.pc
  83. * Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-3
  84. - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
  85. * Sun Apr 29 2018 Athmane Madjoudj <athmane@fedoraproject.org> - 3.0.2-2
  86. - Rebuild after PR#1
  87. * Sat Apr 14 2018 Athmane Madjoudj <athmane@fedoraproject.org> - 3.0.2-1
  88. - Update to 3.0.2 (rhbz #1563219)
  89. * Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-2
  90. - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
  91. * Sun Jan 21 2018 Athmane Madjoudj <athmane@fedoraproject.org> - 3.0.0-1
  92. - Update to 3.0.0 final release
  93. - Drop upstreamed patch
  94. - Add some new BRs
  95. * Sun Oct 22 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 3.0.0-0.2.rc1
  96. - Add a patch to fix the build on non-x86 arch
  97. * Fri Sep 01 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 3.0.0-0.1.rc1
  98. - Fix release tag
  99. * Wed Aug 30 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 3.0.0-0.rc1
  100. - Update to RC1
  101. - Fix some spec issues
  102. * Mon Feb 22 2016 Athmane Madjoudj <athmane@fedoraproject.org> 3.0-0.git
  103. - Initial release