debian/0000755000000000000000000000000012264757561007205 5ustar debian/copyright0000644000000000000000000000162611662505626011137 0ustar This package was debianized by Pierre Chifflier on Thu, 02 Apr 2009 10:30:16 +0200. It was downloaded from http://www.open-scap.org/ Upstream Authors: Peter Vrabec Tomas Heinrich Brandon Dixon Brian Kolbay Lukas Kuklinek Riley C. Porter Dan Kopecek Copyright: Copyright 2008 Red Hat Inc., Durham, North Carolina. License: OpenSCAP is licensed under the GNU Lesser General Public License version 2.1 of the License, or (at your option) any later version. See `/usr/share/common-licenses/LGPL-2.1'. The Debian packaging is: Copyright (C) 2009 Pierre Chifflier and is licensed under the GPL version 3, see `/usr/share/common-licenses/GPL-3'. debian/pyversions0000644000000000000000000000000511662505626011336 0ustar 2.4- debian/libopenscap-dev.docs0000644000000000000000000000001211662505626013115 0ustar docs/html debian/compat0000644000000000000000000000000212120641470010361 0ustar 9 debian/libopenscap-dev.install0000644000000000000000000000006612120642474013635 0ustar usr/include/* usr/lib/*/lib*.so usr/lib/*/pkgconfig/* debian/patches/0000755000000000000000000000000012264756416010632 5ustar debian/patches/005_configure_dpkg_probe.patch0000644000000000000000000000160112264756333016410 0ustar Index: openscap/configure.ac =================================================================== --- openscap.orig/configure.ac 2014-01-13 13:32:22.853879081 +0100 +++ openscap/configure.ac 2014-01-13 13:32:22.849879081 +0100 @@ -595,7 +595,7 @@ echo '* Checking for apt_pkg library used by: dpkginfo ' PKG_CHECK_MODULES([apt_pkg], [libapt-pkg >= 0.0],[],[ SAVE_LIBS=$LIBS -AC_SEARCH_LIBS([pkgInitConfig],[apt-pkg],[ +AC_SEARCH_LIBS([pkgVersion],[apt-pkg],[ apt_pkg_CFLAGS=; apt_pkg_LIBS=-lapt-pkg; ],[ @@ -609,7 +609,10 @@ SAVE_LIBS=$LIBS LIBS=$apt_pkg_LIBS AC_LANG_PUSH([C++]) -AC_CHECK_FUNCS([pkgInitConfig pkgInitSystem], [], [ +AC_LINK_IFELSE( + [AC_LANG_PROGRAM([#include ], + [if (pkgInitConfig (*_config) == false) return -1;])], + [TEST_LIBS="$TEST_LIBS -lapt-pkg"], [ probe_dpkginfo_req_deps_ok=no; probe_dpkginfo_req_deps_missing+=", $ac_func func"; ]) debian/patches/008_fix_kfreebsd_ftbfs.patch0000644000000000000000000000240112165265300016041 0ustar Index: openscap/src/OVAL/probes/unix/routingtable.c =================================================================== --- openscap.orig/src/OVAL/probes/unix/routingtable.c 2013-03-15 16:13:48.281739616 +0100 +++ openscap/src/OVAL/probes/unix/routingtable.c 2013-07-04 14:29:42.599865637 +0200 @@ -201,7 +201,9 @@ RT_COND_ADD_FLAG(RTF_UP, "UP"); RT_COND_ADD_FLAG(RTF_GATEWAY, "GATEWAY"); RT_COND_ADD_FLAG(RTF_HOST, "HOST"); +#if !(defined(__FreeBSD__) || defined(__FreeBSD_kernel__)) RT_COND_ADD_FLAG(RTF_REINSTATE, "REINSTATE"); +#endif RT_COND_ADD_FLAG(RTF_DYNAMIC, "DYNAMIC"); RT_COND_ADD_FLAG(RTF_MODIFIED, "MODIFIED"); RT_COND_ADD_FLAG(RTF_REJECT, "REJECT"); @@ -260,11 +262,13 @@ RT_COND_ADD_FLAG(RTF_UP, "UP"); RT_COND_ADD_FLAG(RTF_GATEWAY, "GATEWAY"); RT_COND_ADD_FLAG(RTF_HOST, "HOST"); - RT_COND_ADD_FLAG(RTF_REINSTATE, "REINSTATE"); RT_COND_ADD_FLAG(RTF_DYNAMIC, "DYNAMIC"); RT_COND_ADD_FLAG(RTF_MODIFIED, "MODIFIED"); +#if !(defined(__FreeBSD__) || defined(__FreeBSD_kernel__)) + RT_COND_ADD_FLAG(RTF_REINSTATE, "REINSTATE"); RT_COND_ADD_FLAG(RTF_ADDRCONF, "ADDRCONF"); RT_COND_ADD_FLAG(RTF_CACHE, "CACHE"); +#endif RT_COND_ADD_FLAG(RTF_REJECT, "REJECT"); rt->rt_flags[i] = NULL; debian/patches/007_automake_fix_schema_install.patch0000644000000000000000000000616012224337715017757 0ustar Index: openscap/schemas/Makefile.am =================================================================== --- openscap.orig/schemas/Makefile.am 2013-10-06 21:49:38.775357151 +0200 +++ openscap/schemas/Makefile.am 2013-10-06 21:53:18.971346582 +0200 @@ -21,34 +21,34 @@ cvedir = $(pkgdatadir)/schemas/cve/ commondir = $(pkgdatadir)/schemas/common/ -oval53_DATA = $(wildcard oval/5.3/*.xsd oval/5.3/*.xsl) -oval54_DATA = $(wildcard oval/5.4/*.xsd oval/5.4/*.xsl) -oval55_DATA = $(wildcard oval/5.5/*.xsd oval/5.5/*.xsl) -oval56_DATA = $(wildcard oval/5.6/*.xsd oval/5.6/*.xsl) -oval57_DATA = $(wildcard oval/5.7/*.xsd oval/5.7/*.xsl) -oval58_DATA = $(wildcard oval/5.8/*.xsd oval/5.8/*.xsl) -oval59_DATA = $(wildcard oval/5.9/*.xsd oval/5.9/*.xsl) -oval510_DATA = $(wildcard oval/5.10/*.xsd oval/5.10/*.xsl) -oval5101_DATA = $(wildcard oval/5.10.1/*.xsd oval/5.10.1/*.xsl) +oval53_DATA = $(wildcard $(srcdir)/oval/5.3/*.xsd $(srcdir)/oval/5.3/*.xsl) +oval54_DATA = $(wildcard $(srcdir)/oval/5.4/*.xsd $(srcdir)/oval/5.4/*.xsl) +oval55_DATA = $(wildcard $(srcdir)/oval/5.5/*.xsd $(srcdir)/oval/5.5/*.xsl) +oval56_DATA = $(wildcard $(srcdir)/oval/5.6/*.xsd $(srcdir)/oval/5.6/*.xsl) +oval57_DATA = $(wildcard $(srcdir)/oval/5.7/*.xsd $(srcdir)/oval/5.7/*.xsl) +oval58_DATA = $(wildcard $(srcdir)/oval/5.8/*.xsd $(srcdir)/oval/5.8/*.xsl) +oval59_DATA = $(wildcard $(srcdir)/oval/5.9/*.xsd $(srcdir)/oval/5.9/*.xsl) +oval510_DATA = $(wildcard $(srcdir)/oval/5.10/*.xsd $(srcdir)/oval/5.10/*.xsl) +oval5101_DATA = $(wildcard $(srcdir)/oval/5.10.1/*.xsd $(srcdir)/oval/5.10.1/*.xsl) sce10_DATA = sce/1.0/sce-result-schema.xsd -xccdf11_DATA = $(wildcard xccdf/1.1/*.xsd xccdf/1.1/*.dtd) -xccdf11tailoring_DATA = $(wildcard xccdf/1.1-tailoring/*.xsd xccdf/1.1-tailoring/*.dtd) -xccdf12_DATA = $(wildcard xccdf/1.2/*.xsd xccdf/1.2/*.dtd) - -sds12_DATA = $(wildcard sds/1.2/*.xsd sds/1.2/*.dtd) -arf11_DATA = $(wildcard arf/1.1/*.xsd) - -ocil20_DATA = $(wildcard ocil/2.0/*.xsd sds/2.0/*.dtd) - -cpe20_DATA = $(wildcard cpe/2.0/*.xsd cpe/2.0/*.dtd) -cpe21_DATA = $(wildcard cpe/2.1/*.xsd cpe/2.1/*.dtd) -cpe22_DATA = $(wildcard cpe/2.2/*.xsd cpe/2.2/*.dtd) -cpe23_DATA = $(wildcard cpe/2.3/*.xsd cpe/2.3/*.dtd) +xccdf11_DATA = $(wildcard $(srcdir)/xccdf/1.1/*.xsd $(srcdir)/xccdf/1.1/*.dtd) +xccdf11tailoring_DATA = $(wildcard $(srcdir)/xccdf/1.1-tailoring/*.xsd $(srcdir)/xccdf/1.1-tailoring/*.dtd) +xccdf12_DATA = $(wildcard $(srcdir)/xccdf/1.2/*.xsd $(srcdir)/xccdf/1.2/*.dtd) + +sds12_DATA = $(wildcard $(srcdir)/sds/1.2/*.xsd $(srcdir)/sds/1.2/*.dtd) +arf11_DATA = $(wildcard $(srcdir)/arf/1.1/*.xsd) + +ocil20_DATA = $(wildcard $(srcdir)/ocil/2.0/*.xsd $(srcdir)/sds/2.0/*.dtd) + +cpe20_DATA = $(wildcard $(srcdir)/cpe/2.0/*.xsd $(srcdir)/cpe/2.0/*.dtd) +cpe21_DATA = $(wildcard $(srcdir)/cpe/2.1/*.xsd $(srcdir)/cpe/2.1/*.dtd) +cpe22_DATA = $(wildcard $(srcdir)/cpe/2.2/*.xsd $(srcdir)/cpe/2.2/*.dtd) +cpe23_DATA = $(wildcard $(srcdir)/cpe/2.3/*.xsd $(srcdir)/cpe/2.3/*.dtd) -cve_DATA = $(wildcard cve/*.xsd) -common_DATA = $(wildcard common/*.xsd) +cve_DATA = $(wildcard $(srcdir)/cve/*.xsd) +common_DATA = $(wildcard $(srcdir)/common/*.xsd) EXTRA_DIST = \ $(oval53_DATA) \ debian/patches/006_fix_dpkg_probe.patch0000644000000000000000000000073412120655752015216 0ustar Index: openscap/src/OVAL/probes/unix/linux/dpkginfo.c =================================================================== --- openscap.orig/src/OVAL/probes/unix/linux/dpkginfo.c 2013-03-15 16:13:48.281739616 +0100 +++ openscap/src/OVAL/probes/unix/linux/dpkginfo.c 2013-03-15 18:35:28.729359953 +0100 @@ -54,6 +54,8 @@ #include #include #include +#include +#include "common/debug_priv.h" #include "dpkginfo-helper.h" debian/patches/001_fix_kfreebsd_probe.patch0000644000000000000000000000113612145432376016050 0ustar Index: openscap/src/OVAL/probes/probe/icache.c =================================================================== --- openscap.orig/src/OVAL/probes/probe/icache.c 2013-05-17 15:47:38.656274116 +0200 +++ openscap/src/OVAL/probes/probe/icache.c 2013-05-17 15:47:38.612274115 +0200 @@ -447,6 +447,7 @@ */ static int probe_cobj_memcheck(size_t item_cnt) { +#if !(defined(__FreeBSD__) || defined(__FreeBSD_kernel__)) if (item_cnt > PROBE_RESULT_MEMCHECK_CTRESHOLD) { struct proc_memusage mu_proc; struct sys_memusage mu_sys; @@ -474,6 +475,7 @@ return (1); } } +#endif return (0); } debian/patches/series0000644000000000000000000000023012264756323012037 0ustar 001_fix_kfreebsd_probe.patch 005_configure_dpkg_probe.patch 006_fix_dpkg_probe.patch 007_automake_fix_schema_install.patch 008_fix_kfreebsd_ftbfs.patch debian/control0000644000000000000000000001315312260226017010572 0ustar Source: openscap Priority: extra Maintainer: Pierre Chifflier Build-Depends: debhelper (>= 9), autotools-dev, libpcre3-dev, libxml2-dev, libxslt1-dev, swig, python-all-dev, python-support (>= 0.5.3), libperl-dev, libcurl4-openssl-dev | libcurl4-gnutls-dev | libcurl-dev, libgcrypt11-dev, libapt-pkg-dev, libselinux1-dev [linux-any], libcap-dev [linux-any], libattr1-dev, libldap2-dev, pkg-config, dh-autoreconf XS-Python-Version: all Standards-Version: 3.9.5 Section: libs Homepage: http://www.open-scap.org/ Package: libopenscap-dev Section: libdevel Architecture: linux-any Depends: libopenscap8 (= ${binary:Version}), ${misc:Depends}, libjs-jquery Description: Set of libraries enabling integration of the SCAP line of standards OpenSCAP is a set of open source libraries providing an easier path for integration of the SCAP line of standards. SCAP is a line of standards managed by NIST with the goal of providing a standard language for the expression of Computer Network Defense related information. . The intended scope of this project is to implement working interface wrappers for parsing and querying SCAP content including: * Common Vulnerabilities and Exposures (CVE) * Common Configuration Enumeration (CCE) * Common Platform Enumeration (CPE) * Common Vulnerability Scoring System (CVSS) * Extensible Configuration Checklist Description Format (XCCDF) * Open Vulnerability and Assessment Language (OVAL) . This package contains the development files for OpenSCAP. Package: libopenscap8 Section: libs Architecture: linux-any Conflicts: libopenscap0, libopenscap1, libopenscap3 Replaces: libopenscap0, libopenscap1, libopenscap3 Pre-Depends: multiarch-support Depends: ${shlibs:Depends}, ${misc:Depends} Description: Set of libraries enabling integration of the SCAP line of standards OpenSCAP is a set of open source libraries providing an easier path for integration of the SCAP line of standards. SCAP is a line of standards managed by NIST with the goal of providing a standard language for the expression of Computer Network Defense related information. . The intended scope of this project is to implement working interface wrappers for parsing and querying SCAP content including: * Common Vulnerabilities and Exposures (CVE) * Common Configuration Enumeration (CCE) * Common Platform Enumeration (CPE) * Common Vulnerability Scoring System (CVSS) * Extensible Configuration Checklist Description Format (XCCDF) * Open Vulnerability and Assessment Language (OVAL) Package: python-openscap Section: python Architecture: linux-any Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, libopenscap8 (= ${binary:Version}) XB-Python-Version: ${python:Versions} Provides: ${python:Provides} Description: Set of libraries enabling integration of the SCAP line of standards OpenSCAP is a set of open source libraries providing an easier path for integration of the SCAP line of standards. SCAP is a line of standards managed by NIST with the goal of providing a standard language for the expression of Computer Network Defense related information. . The intended scope of this project is to implement working interface wrappers for parsing and querying SCAP content including: * Common Vulnerabilities and Exposures (CVE) * Common Configuration Enumeration (CCE) * Common Platform Enumeration (CPE) * Common Vulnerability Scoring System (CVSS) * Extensible Configuration Checklist Description Format (XCCDF) * Open Vulnerability and Assessment Language (OVAL) . This package contains the Python bindings for OpenSCAP. Package: libopenscap-perl Section: perl Architecture: linux-any Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}, libopenscap8 (= ${binary:Version}) Description: Set of libraries enabling integration of the SCAP line of standards OpenSCAP is a set of open source libraries providing an easier path for integration of the SCAP line of standards. SCAP is a line of standards managed by NIST with the goal of providing a standard language for the expression of Computer Network Defense related information. . The intended scope of this project is to implement working interface wrappers for parsing and querying SCAP content including: * Common Vulnerabilities and Exposures (CVE) * Common Configuration Enumeration (CCE) * Common Platform Enumeration (CPE) * Common Vulnerability Scoring System (CVSS) * Extensible Configuration Checklist Description Format (XCCDF) * Open Vulnerability and Assessment Language (OVAL) . This package contains the Perl bindings for OpenSCAP. Package: libopenscap8-dbg Section: debug Architecture: linux-any Conflicts: libopenscap0-dbg Replaces: libopenscap0-dbg Depends: ${shlibs:Depends}, libopenscap8 (= ${binary:Version}), ${misc:Depends} Description: Set of libraries enabling integration of the SCAP line of standards OpenSCAP is a set of open source libraries providing an easier path for integration of the SCAP line of standards. SCAP is a line of standards managed by NIST with the goal of providing a standard language for the expression of Computer Network Defense related information. . The intended scope of this project is to implement working interface wrappers for parsing and querying SCAP content including: * Common Vulnerabilities and Exposures (CVE) * Common Configuration Enumeration (CCE) * Common Platform Enumeration (CPE) * Common Vulnerability Scoring System (CVSS) * Extensible Configuration Checklist Description Format (XCCDF) * Open Vulnerability and Assessment Language (OVAL) . This package contains debugging symbols for OpenSCAP. debian/dirs0000644000000000000000000000002111662505626010054 0ustar usr/bin usr/sbin debian/rules0000755000000000000000000000213512257631167010261 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. export DH_VERBOSE=1 DEFAULTPY=$(shell pyversions -v -d) PYVERSIONS=$(shell pyversions -v -r) ALLPY=$(PYVERSIONS) override_dh_auto_test: # disable tests until they work as expected : override_dh_auto_configure: $(ALLPY:%=override_dh_auto_configure-%) override_dh_auto_configure-%: dh_auto_configure -Bbuild-python-$* -- --enable-perl PYTHON=/usr/bin/python$* override_dh_auto_build: $(ALLPY:%=override_dh_auto_build-%) override_dh_auto_build-%: dh_auto_build -Bbuild-python-$* override_dh_auto_install: $(ALLPY:%=override_dh_auto_install-%) find debian/tmp -name "*.la" -delete rm -f debian/libopenscap-dev/usr/share/doc/libopenscap-dev/html/jquery.js override_dh_auto_install-%: dh_auto_install -Bbuild-python-$* --destdir=debian/tmp override_dh_strip: dh_strip -plibopenscap8 --dbg-package=libopenscap8-dbg dh_strip -ppython-openscap --dbg-package=libopenscap8-dbg dh_strip -plibopenscap-perl --dbg-package=libopenscap8-dbg override_dh_auto_clean: rm -rf build-* %: dh $@ --with autotools-dev,autoreconf,python2 debian/libopenscap8.dirs0000644000000000000000000000003111662505626012443 0ustar usr/lib usr/lib/openscap debian/libopenscap8.install0000644000000000000000000000015512120642466013151 0ustar usr/bin/oscap usr/lib/*/lib*.so.* usr/lib/*/openscap/probe_* usr/share/man/man8/oscap.8 usr/share/openscap/* debian/changelog0000644000000000000000000001743012264757426011064 0ustar openscap (1.0.2-1) unstable; urgency=low * Imported Upstream version 1.0.2 * Refreshed quilt patches Removed 004_format_security.patch, merged upstream -- Pierre Chifflier Mon, 13 Jan 2014 13:41:53 +0100 openscap (1.0.1-2) unstable; urgency=low * Add conflicts/replaces on libopenscap3 (Closes: #733589) -- Pierre Chifflier Mon, 30 Dec 2013 09:19:41 +0100 openscap (1.0.1-1) unstable; urgency=low * Imported Upstream version 1.0.1 * Refreshed quilt patches * Bump Standards Version to 3.9.5 * Rename libopenscap3 to libopenscap8 to reflect soname change -- Pierre Chifflier Sat, 28 Dec 2013 21:27:36 +0100 openscap (0.9.12-1) unstable; urgency=low * Imported Upstream version 0.9.12 * Refreshed quilt patches -- Pierre Chifflier Sun, 06 Oct 2013 22:01:45 +0200 openscap (0.9.8-2) unstable; urgency=low * Mark package linux-any (Closes: #721862) -- Pierre Chifflier Mon, 09 Sep 2013 09:55:14 +0200 openscap (0.9.8-1) unstable; urgency=low * Imported Upstream version 0.9.8 * Add patch to guard linux-specific code (Closes: #710906) -- Pierre Chifflier Thu, 04 Jul 2013 14:40:39 +0200 openscap (0.9.7-1) unstable; urgency=low * Imported Upstream version 0.9.7 * Add libldap2-dev to build depends * This version builds fine with eglibc 2.17 and gcc 4.8 (Closes: #701409) -- Pierre Chifflier Sun, 02 Jun 2013 11:20:22 +0200 openscap (0.9.4.1-1) unstable; urgency=low * Update watch file * Imported Upstream version 0.9.4.1 * This version does not require libnl anymore (Closes: #688172) * Bump Standards Version to 3.9.4 * Rename openscap1* packages to openscap3 to reflect ABI/API change * Refreshed quilt patches * New quilt patch: fix build of dpkg probe * New quilt patch: fix installation of schema files in automake scripts * Switch to DH version 9, enable multiarch support and hardening flags -- Pierre Chifflier Mon, 20 May 2013 11:42:44 +0200 openscap (0.8.0-4) unstable; urgency=low * Also mark libcap-dev as Linux only to fix build on kfreebsd (Closes: #649063) -- Pierre Chifflier Fri, 18 Nov 2011 20:03:49 +0100 openscap (0.8.0-3) unstable; urgency=low * Use [linux-any] to mark linux-only build dependencies (Closes: #634689, #649063) -- Pierre Chifflier Thu, 17 Nov 2011 21:36:07 +0100 openscap (0.8.0-2) unstable; urgency=low * Add proper Conflicts/Replaces lines for libopenscap0 (Closes: #645612) -- Pierre Chifflier Mon, 17 Oct 2011 21:11:55 +0200 openscap (0.8.0-1) unstable; urgency=low * Imported Upstream version 0.8.0 * Refreshed quilt patches: - Removed 002_invalid_prototype_probe_process.patch and 003_fix_format_string.patch, merged upstream - Added 004_format_security.patch - Re-run autoconf to fix dpkg probe detection, put result in 005_configure_dpkg_probe.patch * Update package name to libopenscap1 to reflect ABI change * Replace copy of jquery.js file by symlink in documentation * Add libselinux1-dev, libcap-dev, libattr1-dev to build-deps -- Pierre Chifflier Thu, 13 Oct 2011 23:02:21 +0200 openscap (0.7.3-1) unstable; urgency=low * Imported Upstream version 0.7.3 * Add schema files (oval and xccdf) * Enable hardening wrapper * Bump Standards Version to 3.9.2 * Add 003_fix_format_string.patch to fix printf misuse -- Pierre Chifflier Sun, 26 Jun 2011 19:36:22 +0200 openscap (0.7.2-1) unstable; urgency=low * Imported Upstream version 0.7.2 * Refresh quilt patches * Fix FTBFS on kfreebsd-*: conflicting types for 'probe_main' (Closes: #621881) * Remove .la files (Closes: #622483) -- Pierre Chifflier Tue, 26 Apr 2011 21:03:43 +0200 openscap (0.7.1-1) unstable; urgency=low * Imported Upstream version 0.7.1 * No more conversions between pointer and integer detected (Closes: #588255) -- Pierre Chifflier Mon, 28 Mar 2011 13:07:40 +0200 openscap (0.6.6-2) unstable; urgency=low * Fix FTBFS on kfreebsd-*: error: storage size of 'si' isn't known (Closes: #609771) -- Pierre Chifflier Wed, 12 Jan 2011 14:35:07 +0100 openscap (0.6.6-1) unstable; urgency=low * Imported Upstream version 0.6.6 * Drop patch 10_fix_dpkginfo, merged upstream * Add pkgconfig file to dev package -- Pierre Chifflier Wed, 15 Dec 2010 09:51:48 +0100 openscap (0.6.4-2) unstable; urgency=low * Add libxslt1-dev to build-deps (Closes: #603766) -- Pierre Chifflier Wed, 17 Nov 2010 10:45:47 +0100 openscap (0.6.4-1) unstable; urgency=low * Imported Upstream version 0.6.4 * Switch to dpkg-source 3.0 (quilt) format * Add patch 10_fix_dpkginfo to fix build error for dpkginfo probe * Apply patch from Bilal Akhtar to fix build on Ubuntu (Closes: #596666) -- Pierre Chifflier Tue, 16 Nov 2010 15:34:37 +0100 openscap (0.5.12-3) unstable; urgency=low * Fix FTBFS on GNU/kFreeBSD (Closes: #592486) * Bump standards version to 3.9.1 -- Pierre Chifflier Thu, 12 Aug 2010 10:02:20 +0200 openscap (0.5.12-2) unstable; urgency=low * Add libgcrypt11-dev to build-deps (Closes: #588091) -- Pierre Chifflier Mon, 05 Jul 2010 00:48:04 +0200 openscap (0.5.12-1) unstable; urgency=low * Imported Upstream version 0.5.12 * Update watch file * oscap-scan was renamed to oscap * Bump Standards version to 3.9.0 -- Pierre Chifflier Sun, 04 Jul 2010 16:49:58 +0200 openscap (0.5.8-1) unstable; urgency=low * Imported Upstream version 0.5.8 -- Pierre Chifflier Mon, 05 Apr 2010 22:07:11 +0200 openscap (0.5.7-1) unstable; urgency=low * Imported Upstream version 0.5.7 * Update watch URL * Add libcurl-dev and libapt-pkg-dev to build-deps * Bump standards version to 3.8.4 * Install probes in /usr/lib/openscap * Apply patch to fix FTBFS on kfreebsd (Closes: #570277) -- Pierre Chifflier Sun, 28 Feb 2010 10:08:23 +0100 openscap (0.5.6-1) unstable; urgency=low * New upstream release: - OVAL API has been extended - OVAL doxygen documentation is available - migration to new checking mechanism is completed - new logging and error propagating mechanism - many many bugfixes + defensive code * Fix lintian warning debhelper-but-no-misc-depends (libopenscap-dev, libopenscap0-dbg) -- Pierre Chifflier Mon, 04 Jan 2010 20:53:30 +0100 openscap (0.5.5-1) unstable; urgency=low * Add libnl-dev and pkg-config to build-deps * Enable building OVAL bindings and probes * New upstream release: - many fixes in OVAL - new system_info probe in OVAL - CVE is re-implemented - migration to improved testing mechanism has begun (see CPE) - bindings are merged into single module called openscap -- Pierre Chifflier Thu, 17 Dec 2009 11:25:59 +0100 openscap (0.5.4-1) unstable; urgency=low * New upstream release: - new CPE model - evaluation of set objects and system characteristic output - implementation of variable model - bindings clean up - probes tune up, memory leaks fixes -- Pierre Chifflier Tue, 27 Oct 2009 09:46:49 +0100 openscap (0.5.3-1) unstable; urgency=low * New upstream release * Bump standards version to 3.8.3 * Change libopenscap0-dbg section to debug * Add binary package for Perl bindings -- Pierre Chifflier Tue, 13 Oct 2009 09:51:23 +0200 openscap (0.1.4-1) unstable; urgency=low * Initial release (Closes: #522265) -- Pierre Chifflier Thu, 02 Apr 2009 10:30:16 +0200 debian/libopenscap-dev.links0000644000000000000000000000012312121042143013265 0ustar usr/share/javascript/jquery/jquery.js usr/share/doc/libopenscap-dev/html/jquery.js debian/libopenscap-dev.dirs0000644000000000000000000000002411662505626013131 0ustar usr/lib usr/include debian/docs0000644000000000000000000000001411662505626010045 0ustar NEWS README debian/python-openscap.install0000644000000000000000000000003312120643122013672 0ustar usr/lib/python*/*-packages debian/libopenscap-perl.install0000644000000000000000000000003612120644203014006 0ustar usr/lib/perl5 usr/share/perl5 debian/source/0000755000000000000000000000000011662505721010473 5ustar debian/source/format0000644000000000000000000000001411662505721011701 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000037312120635141010215 0ustar # watch control file for uscan # Run the "uscan" command to check for upstream updates and more. # See uscan(1) for format # Compulsory line, this is a version 3 file version=3 https://fedorahosted.org/releases/o/p/openscap/ openscap-(.*)\.tar\.gz