diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-12-09 19:47:00 +0000 | 
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-12-09 19:47:00 +0000 | 
| commit | 1d10377b0a3684335bb5cd697336b6625fcca742 (patch) | |
| tree | 5c6e4a0d4dcb4648522e22455422a27266dbf0ba | |
| parent | Assert of email body before asserting its contents (diff) | |
| download | gentoobrowse-api-1d10377b0a3684335bb5cd697336b6625fcca742.tar.bz2 gentoobrowse-api-1d10377b0a3684335bb5cd697336b6625fcca742.tar.xz gentoobrowse-api-1d10377b0a3684335bb5cd697336b6625fcca742.zip | |
Move the +/- flag in IUSE entries into its own field
| -rw-r--r-- | gentoobrowse-api/db/schema.sql | 5 | ||||
| -rw-r--r-- | gentoobrowse-api/domain/portage-models.ice | 1 | ||||
| -rw-r--r-- | gentoobrowse-api/service/maintenance/ebuildMetaProcessor.cpp | 3 | ||||
| -rw-r--r-- | gentoobrowse-api/service/sql/maintenance/ebuildUsesInsert.sql | 7 | ||||
| -rw-r--r-- | gentoobrowse-api/service/sql/portage/getPackageUses.sql | 19 | ||||
| -rw-r--r-- | gentoobrowse-api/unittests/data.sql | 2 | ||||
| -rw-r--r-- | gentoobrowse-api/unittests/fixtures/ebuild_uses.dat | 7090 | ||||
| -rw-r--r-- | gentoobrowse-api/unittests/testMaintenance.cpp | 35 | ||||
| -rw-r--r-- | gentoobrowse-api/unittests/testPortage.cpp | 6 | 
9 files changed, 3605 insertions, 3563 deletions
| diff --git a/gentoobrowse-api/db/schema.sql b/gentoobrowse-api/db/schema.sql index 0a5e109..77dfe3c 100644 --- a/gentoobrowse-api/db/schema.sql +++ b/gentoobrowse-api/db/schema.sql @@ -339,8 +339,9 @@ CREATE TABLE ebuild_rdeps (  ALTER TABLE ebuild_rdeps OWNER TO gentoo;  -- Name: ebuild_uses; Type: TABLE; Schema: gentoobrowse; Owner: gentoo; Tablespace:   CREATE TABLE ebuild_uses ( -    ebuildid integer NOT NULL, -    use text NOT NULL +		ebuildid integer NOT NULL, +		use text NOT NULL, +		defaultflag boolean  );  ALTER TABLE ebuild_uses OWNER TO gentoo;  -- Name: TABLE ebuild_uses; Type: COMMENT; Schema: gentoobrowse; Owner: gentoo diff --git a/gentoobrowse-api/domain/portage-models.ice b/gentoobrowse-api/domain/portage-models.ice index 3636ecf..a66e459 100644 --- a/gentoobrowse-api/domain/portage-models.ice +++ b/gentoobrowse-api/domain/portage-models.ice @@ -117,6 +117,7 @@ module Gentoo {  		bool isdefault = false;  		string use;  		string description; +		optional(2) bool defaultflag;  	};  	[ "slicer:element:category" ] diff --git a/gentoobrowse-api/service/maintenance/ebuildMetaProcessor.cpp b/gentoobrowse-api/service/maintenance/ebuildMetaProcessor.cpp index 0799b5a..3d4ecd7 100644 --- a/gentoobrowse-api/service/maintenance/ebuildMetaProcessor.cpp +++ b/gentoobrowse-api/service/maintenance/ebuildMetaProcessor.cpp @@ -122,6 +122,7 @@ namespace Gentoo {  			Utils::Database::namedTemp(dbc, "tmpEbuildUses", {  					{ "ebuildId", "int" },  					{ "use", "text" }, +					{ "defaultflag", "boolean" },  				});  			useInsert = sql::maintenance::ebuildUsesInsert.modify(dbc);  			Utils::Database::namedTemp(dbc, "tmpEbuildArchs", { @@ -158,7 +159,7 @@ namespace Gentoo {  					t.src = "tmpEbuildUses";  					t.dest = "gentoobrowse.ebuild_uses";  					t.pk = { "ebuildid", "use" }; -					t.cols = { "ebuildid", "use" }; +					t.cols = { "ebuildid", "use", "defaultflag" };  					t.where = &ebuildIds;  					dbc->patchTable(&t);  				} diff --git a/gentoobrowse-api/service/sql/maintenance/ebuildUsesInsert.sql b/gentoobrowse-api/service/sql/maintenance/ebuildUsesInsert.sql index 9d01c96..b6f822e 100644 --- a/gentoobrowse-api/service/sql/maintenance/ebuildUsesInsert.sql +++ b/gentoobrowse-api/service/sql/maintenance/ebuildUsesInsert.sql @@ -1,2 +1,5 @@ -INSERT INTO tmpEbuildUses(ebuildId, use) -SELECT DISTINCT ?::INT, TRIM(REGEXP_SPLIT_TO_TABLE(?, '\s+'), '+') +INSERT INTO tmpEbuildUses(ebuildId, use, defaultflag) +SELECT DISTINCT ?::INT, +			 LTRIM(r, '-+'), +			 CASE WHEN LEFT(r, 1) = '-' THEN FALSE WHEN LEFT(r, 1) = '+' THEN TRUE END +FROM REGEXP_SPLIT_TO_TABLE(?, '\s+') r diff --git a/gentoobrowse-api/service/sql/portage/getPackageUses.sql b/gentoobrowse-api/service/sql/portage/getPackageUses.sql index 9c61bcd..d33204f 100644 --- a/gentoobrowse-api/service/sql/portage/getPackageUses.sql +++ b/gentoobrowse-api/service/sql/portage/getPackageUses.sql @@ -1,20 +1,21 @@ -SELECT SUBSTRING(COALESCE(ugg.use, eu.use), 1, 1) = '+' isdefault, ul.packageid, -		CASE WHEN ugg.usegroupid IS NOT NULL THEN ugs.name END AS group, -		LTRIM(COALESCE(ugg.use, eu.use), '+') AS use, -		COALESCE(ul.description, ugg.description, ug.description) description +SELECT defaultflag = TRUE isdefault, ul.packageid, +			 defaultflag, +			 CASE WHEN ugg.usegroupid IS NOT NULL THEN ugs.name END AS group, +			 COALESCE(ugg.use, eu.use) AS use, +			 COALESCE(ul.description, ugg.description, ug.description) description  FROM gentoobrowse.ebuilds e  	JOIN gentoobrowse.ebuild_uses eu  		ON e.ebuildid = eu.ebuildid  	LEFT OUTER JOIN gentoobrowse.use_global ug -		ON LTRIM(eu.use, '+') = ug.use +		ON eu.use = ug.use  	LEFT OUTER JOIN gentoobrowse.use_local ul -		ON LTRIM(eu.use, '+') = ul.use +		ON eu.use = ul.use  		AND ul.packageid = e.packageid  	LEFT OUTER JOIN gentoobrowse.use_groups ugs -		ON eu.use like ugs.name || '#_%' escape '#' +		ON eu.use LIKE ugs.name || '#_%' escape '#'  	LEFT OUTER JOIN gentoobrowse.use_group ugg  		ON ugg.usegroupid = ugs.usegroupid  		AND eu.use = ugs.name || '_' || ugg.use  WHERE e.packageid = ? -GROUP BY eu.use, ul.use, ul.packageid, ug.use, ugs.name, ugg.usegroupid, ugg.use, ugg.description -ORDER BY ugg.usegroupid IS NOT NULL, ugs.name, LTRIM(COALESCE(ugg.use, eu.use), '+') +GROUP BY eu.use, ul.use, ul.packageid, ug.use, ugs.name, ugg.usegroupid, ugg.use, ugg.description, defaultflag +ORDER BY ugg.usegroupid IS NOT NULL, ugs.name, COALESCE(ugg.use, eu.use) diff --git a/gentoobrowse-api/unittests/data.sql b/gentoobrowse-api/unittests/data.sql index a0fd815..75e5ddf 100644 --- a/gentoobrowse-api/unittests/data.sql +++ b/gentoobrowse-api/unittests/data.sql @@ -15,7 +15,7 @@ COPY gentoobrowse.ebuild_deps (ebuildid, packageid, versionspec, flags, op, slot  COPY gentoobrowse.masksets (setno, person, email, dateadded, message, n, atomspec) FROM '$SCRIPTDIR/fixtures/masksets.dat';  COPY gentoobrowse.ebuild_masks (setno, ebuildid) FROM '$SCRIPTDIR/fixtures/ebuild_masks.dat';  COPY gentoobrowse.ebuild_rdeps (ebuildid, packageid, versionspec, flags, op, slot) FROM '$SCRIPTDIR/fixtures/ebuild_rdeps.dat'; -COPY gentoobrowse.ebuild_uses (ebuildid, use) FROM '$SCRIPTDIR/fixtures/ebuild_uses.dat'; +COPY gentoobrowse.ebuild_uses (ebuildid, use, defaultflag) FROM '$SCRIPTDIR/fixtures/ebuild_uses.dat';  COPY gentoobrowse.license (name, legalbumph) FROM '$SCRIPTDIR/fixtures/license.dat';  COPY gentoobrowse.news (newsid, title, posted, authorname, authoremail, atomspec, body, urls) FROM '$SCRIPTDIR/fixtures/news.dat';  COPY gentoobrowse.package_urls (packageid, url) FROM '$SCRIPTDIR/fixtures/package_urls.dat'; diff --git a/gentoobrowse-api/unittests/fixtures/ebuild_uses.dat b/gentoobrowse-api/unittests/fixtures/ebuild_uses.dat index c8f529a..175ce9d 100644 --- a/gentoobrowse-api/unittests/fixtures/ebuild_uses.dat +++ b/gentoobrowse-api/unittests/fixtures/ebuild_uses.dat @@ -1,3545 +1,3545 @@ -609052	+ocamlopt -609052	debug -609053	+ocamlopt -609053	test -609054	+ocamlopt -609054	doc -609056	+ocamlopt -609056	debug -609057	+ocamlopt -609057	camlp4 -609057	debug -609057	doc -609057	emacs -609058	+ocamlopt -609058	debug -609058	doc -609058	pcre -609058	test -609059	+ocamlopt -609059	doc -609059	examples -609059	gtk -609060	+ocamlopt -609060	debug -609061	+ocamlopt -609061	doc -609061	tk -609063	+ocamlopt -609063	debug -609063	doc -609063	test -609064	+ocamlopt -609064	debug -609064	doc -609064	examples -609065	+ocamlopt -609065	debug -609065	doc -609065	test -609066	+ocamlopt -609066	debug -609068	+ocamlopt -609068	debug -609068	doc -609068	test -609069	+ocamlopt -609069	debug -609069	doc -609069	examples -609070	+deriving -609070	+ocamlopt -609070	doc -609071	+ocamlopt -609071	debug -609071	test -609072	doc -609075	+ocamlopt -609075	debug -609075	doc -609075	test -609076	+deriving -609076	+ocamlopt -609076	doc -609077	+ocamlopt -609077	debug -609077	doc -609078	+ocamlopt -609078	debug -609078	doc -609080	X -609080	doc -609080	exif -609080	gif -609080	gtk -609080	jpeg -609080	png -609080	postscript -609080	tiff -609080	truetype -609080	xpm -609081	+ocamlopt -609081	debug -609081	doc -609081	pcre -609081	test -609083	+ocamlopt -609083	doc -609084	+ocamlopt -609084	debug -609086	+ocamlopt -609086	debug -609088	+ocamlopt -609088	debug -609088	test -609089	+ocamlopt -609089	debug -609089	doc -609089	test -609090	+ocamlopt -609090	debug -609090	doc -609090	test -609091	+ocamlopt -609091	debug -609091	test -609092	+ocamlopt -609092	debug -609092	doc -609093	+ocamlopt -609093	debug -609093	doc -609093	test -609094	+ocamlopt -609097	+ocamlopt -609097	doc -609097	tk -609098	+ocamlopt -609098	debug -609099	+ocamlopt -609099	debug -609099	doc -609099	test -609101	+ocamlopt -609101	debug -609101	test -609103	doc -609105	+ocamlopt -609105	debug -609105	test -609106	+ocamlopt -609106	examples -609107	+ocamlopt -609107	camlp4 -609107	debug -609107	doc -609107	emacs -609108	+ocamlopt -609108	debug -609109	+ocamlopt -609109	+pcre -609109	gtk -609109	httpd -609109	kerberos -609109	ssl -609109	tk -609109	zip -609110	examples -609111	+ocamlopt -609111	debug -609111	doc -609112	+ocamlopt -609112	debug -609112	doc -609113	+ocamlopt -609113	debug -609113	doc -609113	examples -609114	+ocamlopt -609114	debug -609116	+ocamlopt -609116	debug -609118	+ocamlopt -609118	debug -609119	+ocamlopt -609119	debug -609119	doc -609119	examples -609120	+ocamlopt -609120	debug -609120	doc -609120	test -609122	+ocamlopt -609122	examples -609124	+ocamlopt -609124	examples -609125	+ocamlopt -609126	+ocamlopt -609126	debug -609126	doc -609126	examples -609128	+ocamlopt -609129	+ocamlopt -609129	debug -609130	+ocamlopt -609130	doc -609130	test -609130	utftrip -609132	+ocamlopt -609132	debug -609132	doc -609132	test -609132	zlib -609133	doc -609134	+ocamlopt -609134	doc -609134	tk -609136	+ocamlopt -609136	debug -609136	examples -609136	glade -609136	gnomecanvas -609136	opengl -609136	sourceview -609136	spell -609136	svg -609137	+ocamlopt -609137	debug -609137	doc -609137	examples -609140	X -609140	doc -609140	exif -609140	gif -609140	gtk -609140	jpeg -609140	png -609140	postscript -609140	tiff -609140	truetype -609140	xpm -609142	+ocamlopt -609142	debug -609142	doc -609142	examples -609144	+ocamlopt -609144	examples -609147	+ocamlopt -609147	debug -609147	test -609148	+ocamlopt -609148	doc -609149	+ocamlopt -609149	debug -609149	doc -609149	test -609150	+ocamlopt -609150	debug -609150	doc -609150	test -609151	+ocamlopt -609151	+react -609151	+ssl -609151	debug -609151	gtk -609151	test -609151	text -609151	toplevel -609152	+ocamlopt -609152	debug -609152	doc -609153	doc -609154	+ocamlopt -609155	+ocamlopt -609155	debug -609155	doc -609156	+ocamlopt -609156	debug -609156	doc -609156	test -609157	+ocamlopt -609157	debug -609157	doc -609157	examples -609158	+ocamlopt -609158	+parmap -609158	bzip2 -609158	curl -609158	rpm4 -609158	xml -609158	zip -609159	examples -609160	+ocamlopt -609160	doc -609161	+ocamlopt -609161	debug -609161	doc -609162	+ocamlopt -609162	debug -609162	test -609163	+ocamlopt -609163	debug -609163	doc -609163	examples -609164	+ocamlopt -609164	debug -609164	doc -609165	+ocamlopt -609165	debug -609165	doc -609167	+ocamlopt -609167	debug -609167	doc -609167	test -609168	+ocamlopt -609168	debug -609168	doc -609168	examples -609169	+ocamlopt -609169	debug -609169	doc -609169	examples -609176	doc -609177	+ocamlopt -609177	debug -609177	doc -609178	+ocamlopt -609178	debug -609179	+ocamlopt -609179	debug -609179	doc -609182	+ocamlopt -609182	debug -609182	doc -609182	test -609183	+ocamlopt -609183	debug -609184	+ocamlopt -609184	doc -609185	+ocamlopt -609185	doc -609186	+ocamlopt -609186	debug -609186	test -609187	+ocamlopt -609187	debug -609187	doc -609187	test -609188	+ocamlopt -609188	doc -609190	+ocamlopt -609191	doc -609192	+ocamlopt -609192	debug -609192	doc -609193	+ocamlopt -609193	doc -609193	glut -609194	doc -609194	examples -609195	X -609195	doc -609195	exif -609195	gif -609195	gtk -609195	jpeg -609195	png -609195	postscript -609195	tiff -609195	truetype -609195	xpm -609196	+ocamlopt -609196	debug -609196	test -609197	+ocamlopt -609197	debug -609197	doc -609197	test -609198	+ocamlopt -609198	+parmap -609198	bzip2 -609198	curl -609198	rpm4 -609198	test -609198	xml -609198	zip -609199	+ocamlopt -609199	debug -609199	doc -609199	test -609200	doc -609200	test -609202	X -609202	doc -609202	gif -609202	gtk -609202	jpeg -609202	png -609202	postscript -609202	tiff -609202	truetype -609202	xpm -609202	zlib -609203	+ocamlopt -609203	debug -609203	doc -609205	+ocamlopt -609205	debug -609205	test -609206	+ocamlopt -609206	debug -609206	doc -609207	+ocamlopt -609207	debug -609207	doc -609208	doc -609209	+ocamlopt -609209	+react -609209	+ssl -609209	debug -609209	doc -609209	gtk -609209	test -609211	+ocamlopt -609212	+ocamlopt -609213	+ocamlopt -609213	debug -609213	doc -609215	+ocamlopt -609215	doc -609215	opengl -609215	truetype -609216	+ocamlopt -609216	debug -609216	doc -609216	examples -609217	+ocamlopt -609217	debug -609217	test -609218	+ocamlopt -609218	debug -609218	doc -609218	zlib -609219	+ocamlopt -609220	+ocamlopt -609220	debug -609220	doc -609220	test -609222	+ocamlopt -609222	debug -609224	+ocamlopt -609224	debug -609224	doc -609224	test -609225	+deriving-ocsigen -609225	+ocamlopt -609225	doc -609227	+ocamlopt -609227	debug -609227	doc -609227	test -609228	+ocamlopt -609228	debug -609228	doc -609229	+ocamlopt -609229	debug -609230	+ocamlopt -609231	+ocamlopt -609231	debug -609234	+ocamlopt -609234	type-conv -609236	+ocamlopt -609236	debug -609237	doc -609238	+ocamlopt -609238	debug -609239	+ocamlopt -609239	doc -609242	+ocamlopt -609242	debug -609244	+ocamlopt -609244	debug -609244	doc -609244	examples -609245	+ocamlopt -609245	debug -609246	+ocamlopt -609246	debug -609247	+ocamlopt -609247	debug -609247	doc -609247	test -609248	+ocamlopt -609248	debug -609249	+ocamlopt -609249	doc -609249	glut -609249	tk -609250	+ocamlopt -609250	debug -609250	doc -609251	+ocamlopt -609251	debug -609252	+ocamlopt -609252	debug -609252	examples -609252	glade -609252	gnomecanvas -609252	opengl -609252	sourceview -609252	spell -609252	svg -609254	examples -609255	+ocamlopt -609255	+pcre -609255	cryptokit -609255	gtk -609255	httpd -609255	ssl -609255	tk -609255	zip -609256	+ocamlopt -609256	+parmap -609256	bzip2 -609256	curl -609256	rpm4 -609256	test -609256	xml -609256	zip -609257	examples -609258	+ocamlopt -609258	debug -609258	doc -609259	examples -609260	+ocamlopt -609260	debug -609261	+ocamlopt -609261	test -609262	doc -609262	test -609264	+ocamlopt -609264	debug -609264	doc -609264	examples -609265	+ocamlopt -609265	debug -609265	doc -609266	+ocamlopt -609266	debug -609266	examples -609266	glade -609266	gnomecanvas -609266	opengl -609266	sourceview -609266	spell -609266	svg -609269	+ocamlopt -609269	doc -609269	test -609270	+ocamlopt -609270	debug -609270	doc -609270	test -609271	+ocamlopt -609271	debug -609272	+ocamlopt -609272	debug -609273	+ocamlopt -609273	debug -609275	+ocamlopt -609275	doc -609276	+deriving -609276	+ocamlopt -609276	doc -609278	+ocamlopt -609278	doc -609278	examples -609278	gtk -609279	+ocamlopt -609279	debug -609279	doc -609279	examples -609280	doc -609280	examples -609280	gtk -609280	pango -609280	svg -609281	examples -609282	+ocamlopt -609282	debug -609283	+ocamlopt -609283	doc -609284	+ocamlopt -609284	debug -609284	doc -609286	+ocamlopt -609286	batteries -609286	debug -609286	doc -609287	+ocamlopt -609287	debug -609287	doc -609287	test -609288	+ocamlopt -609288	debug -609289	+ocamlopt -609289	debug -609289	doc -609289	test -609291	doc -609291	test -609292	+ocamlopt -609292	X -609293	+ocamlopt -609295	+ocamlopt -609295	debug -609295	doc -609295	test -609297	+ocamlopt -609297	doc -609299	+ocamlopt -609299	+react -609299	+ssl -609299	debug -609299	gtk -609299	test -609300	+ocamlopt -609300	doc -609301	+ocamlopt -609301	debug -609301	doc -609301	examples -609301	test -609302	+ocamlopt -609302	debug -609302	doc -609305	+deriving-ocsigen -609305	+ocamlopt -609305	doc -609308	+ocamlopt -609308	debug -609308	doc -609308	test -609308	zlib -609309	+ocamlopt -609309	debug -609309	doc -609309	emacs -616615	common-lisp -616615	static-libs -616618	+cryptopp -616620	zsh-completion -616621	kernel_linux -616621	minimal -616621	munin -616622	doc -616622	selinux -616624	bzip2 -616624	doc -616624	ldap -616624	mta -616624	nls -616624	readline -616624	selinux -616624	smartcard -616624	static -616624	tools -616624	usb -616628	+usb -616628	twinserial -616630	doc -616633	linguas_cs -616633	linguas_de -616633	linguas_en -616633	linguas_es -616633	linguas_sv -616638	nls -616641	kernel_linux -616642	+fips -616643	abi_mips_n32 -616643	abi_mips_n64 -616643	abi_mips_o32 -616643	abi_ppc_32 -616643	abi_ppc_64 -616643	abi_s390_32 -616643	abi_s390_64 -616643	abi_x86_32 -616643	abi_x86_64 -616643	abi_x86_x32 -616643	static-libs -616644	+asn1 -616644	+libffi -616644	+trust -616644	abi_mips_n32 -616644	abi_mips_n64 -616644	abi_mips_o32 -616644	abi_ppc_32 -616644	abi_ppc_64 -616644	abi_s390_32 -616644	abi_s390_64 -616644	abi_x86_32 -616644	abi_x86_64 -616644	abi_x86_x32 -616644	debug -616645	nls -616650	+dialogs -616650	+gtk -616650	+xpi -616658	video_cards_fglrx -616658	video_cards_nvidia -616658	virtualcl -616661	python_targets_python2_7 -616661	python_targets_python3_3 -616661	python_targets_python3_4 -616662	abi_mips_n32 -616662	abi_mips_n64 -616662	abi_mips_o32 -616662	abi_ppc_32 -616662	abi_ppc_64 -616662	abi_s390_32 -616662	abi_s390_64 -616662	abi_x86_32 -616662	abi_x86_64 -616662	abi_x86_x32 -616662	static-libs -616663	+tables -616663	debug -616663	qt4 -616665	bzip2 -616665	doc -616665	ldap -616665	mta -616665	nls -616665	readline -616665	selinux -616665	smartcard -616665	static -616665	tools -616665	usb -616667	static-libs -616671	python_targets_python2_7 -616671	python_targets_python3_3 -616671	python_targets_python3_4 -616674	debug -616675	ncurses -616677	+3des -616677	+aes -616677	+arcfour -616677	+des -616677	+md -616677	+null -616677	gnutls -616677	idn -616677	ipv6 -616677	nls -616677	pam -616677	static-libs -616678	+cryptopp -616679	test -616681	+introspection -616681	debug -616681	gtk -616681	test -616681	vala -616682	kernel_linux -616683	static -616688	bzip2 -616688	doc -616688	ldap -616688	mta -616688	nls -616688	readline -616688	selinux -616688	smartcard -616688	static -616688	tools -616688	usb -616690	kernel_linux -616690	modules -616690	ssl -616691	debug -616691	ldap -616691	zeroconf -616692	+usb -616692	twinserial -616694	video_cards_fglrx -616694	video_cards_nvidia -616694	virtualcl -616696	doc -616696	selinux -616698	nls -616699	+vistafree -616699	+xpfast -616699	xpsmall -616702	doc -616703	+asm -616703	cpu_flags_x86_aes -616703	cpu_flags_x86_padlock -616703	static -616705	openssl -616706	doc -616709	python_targets_python2_7 -616715	kernel_linux -616716	abi_mips_n32 -616716	abi_mips_n64 -616716	abi_mips_o32 -616716	abi_ppc_32 -616716	abi_ppc_64 -616716	abi_s390_32 -616716	abi_s390_64 -616716	abi_x86_32 -616716	abi_x86_64 -616716	abi_x86_x32 -616716	static-libs -616717	ssl -616720	test -616721	kernel_linux -616721	static-libs -616721	systemd -616724	berkdb -616724	postgres -616726	+asn1 -616726	+libffi -616726	+trust -616726	abi_mips_n32 -616726	abi_mips_n64 -616726	abi_mips_o32 -616726	abi_ppc_32 -616726	abi_ppc_64 -616726	abi_s390_32 -616726	abi_s390_64 -616726	abi_x86_32 -616726	abi_x86_64 -616726	abi_x86_x32 -616726	debug -616727	+asn1 -616727	+libffi -616727	+trust -616727	abi_mips_n32 -616727	abi_mips_n64 -616727	abi_mips_o32 -616727	abi_ppc_32 -616727	abi_ppc_64 -616727	abi_s390_32 -616727	abi_s390_64 -616727	abi_x86_32 -616727	abi_x86_64 -616727	abi_x86_x32 -616727	debug -616730	elibc_FreeBSD -616731	debug -616731	qt4 -616732	+gtk -616732	+xpi -616733	+asm -616733	X -616734	python_targets_python2_7 -616737	caps -616737	gtk -616737	ncurses -616737	qt4 -616737	static -616738	+gtk -616738	+xpi -616739	python_targets_python2_7 -616741	+tables -616741	debug -616741	qt4 -616742	-minimal -616742	cpu_flags_x86_mmx -616742	cpu_flags_x86_sse2 -616742	cuda -616742	custom-cflags -616742	mpi -616742	opencl -616742	openmp -616743	debug -616744	kernel_linux -616744	static-libs -616744	systemd -616745	caps -616745	clipboard -616745	gtk -616745	ncurses -616745	qt4 -616745	static -616748	linguas_ar -616748	linguas_cs -616748	linguas_de -616748	linguas_es -616748	linguas_fr -616748	linguas_ja -616748	linguas_nl -616748	linguas_pl -616748	linguas_pt_BR -616748	linguas_ru -616748	linguas_sv -616748	linguas_tr -616748	linguas_zh_TW -616748	nls -616749	-minimal -616749	cpu_flags_x86_mmx -616749	cpu_flags_x86_sse2 -616749	cuda -616749	custom-cflags -616749	mozilla -616749	mpi -616749	opencl -616749	openmp -616750	+openssl -616750	+qt4 -616750	botan -616750	debug -616750	doc -616750	examples -616750	gcrypt -616750	gpg -616750	logger -616750	nss -616750	pkcs11 -616750	qt5 -616750	sasl -616750	softstore -616750	test -616751	+3des -616751	+aes -616751	+arcfour -616751	+des -616751	+md -616751	+null -616751	gnutls -616751	idn -616751	ipv6 -616751	nls -616751	pam -616751	static-libs -616752	kernel_linux -616752	minimal -616752	munin -616752	usb -616753	+berkdb -616753	+pkinit -616753	X -616753	abi_mips_n32 -616753	abi_mips_n64 -616753	abi_mips_o32 -616753	abi_ppc_32 -616753	abi_ppc_64 -616753	abi_s390_32 -616753	abi_s390_64 -616753	abi_x86_32 -616753	abi_x86_64 -616753	abi_x86_x32 -616753	afs -616753	caps -616753	hdb-ldap -616753	ipv6 -616753	otp -616753	selinux -616753	ssl -616753	static-libs -616753	test -616753	threads -616755	+asm -616755	X -616756	bzip2 -616756	curl -616756	ldap -616756	mta -616756	nls -616756	readline -616756	selinux -616756	smartcard -616756	static -616756	usb -616756	zlib -616762	kernel_linux -616764	+3des -616764	+aes -616764	+arcfour -616764	+des -616764	+md -616764	+null -616764	gnutls -616764	idn -616764	ipv6 -616764	nls -616764	pam -616764	static-libs -616765	kernel_linux -616766	static -616767	+tables -616767	debug -616767	qt4 -616768	doc -616770	python_targets_python2_7 -616772	static-libs -616773	debug -616773	nls -616773	pkcs11 -616778	python_targets_python2_7 -616778	python_targets_python3_3 -616778	python_targets_python3_4 -616779	nls -616779	selinux -616779	static -616779	uclibc -616780	python_targets_python2_7 -616781	X -616781	python_targets_python2_7 -616782	static-libs -616784	+asn1 -616784	+libffi -616784	+trust -616784	abi_mips_n32 -616784	abi_mips_n64 -616784	abi_mips_o32 -616784	abi_ppc_32 -616784	abi_ppc_64 -616784	abi_s390_32 -616784	abi_s390_64 -616784	abi_x86_32 -616784	abi_x86_64 -616784	abi_x86_x32 -616784	debug -616786	static -616787	curl -616791	bindist -616792	linguas_ar -616792	linguas_cs -616792	linguas_de -616792	linguas_es -616792	linguas_fr -616792	linguas_ja -616792	linguas_nl -616792	linguas_pl -616792	linguas_pt_BR -616792	linguas_ru -616792	linguas_sv -616792	linguas_tr -616792	linguas_zh_TW -616792	nls -616793	doc -616795	debug -616795	qt4 -616796	doc -616797	static -616798	abi_mips_n32 -616798	abi_mips_n64 -616798	abi_mips_o32 -616798	abi_ppc_32 -616798	abi_ppc_64 -616798	abi_s390_32 -616798	abi_s390_64 -616798	abi_x86_32 -616798	abi_x86_64 -616798	abi_x86_x32 -616798	static-libs -616799	afs -616800	python_targets_python2_7 -616804	caps -616804	clipboard -616804	emacs -616804	gnome-keyring -616804	gtk -616804	ncurses -616804	qt4 -616804	static -616807	python_targets_python2_7 -616807	python_targets_python3_3 -616807	python_targets_python3_4 -616814	cpu_flags_x86_sse2 -616815	cuda -616815	opencl -616816	test -616817	bzip2 -616817	doc -616817	ldap -616817	mta -616817	nls -616817	readline -616817	selinux -616817	smartcard -616817	static -616817	tools -616817	usb -616819	+3des -616819	+aes -616819	+arcfour -616819	+des -616819	+md -616819	+null -616819	gnutls -616819	idn -616819	ipv6 -616819	nls -616819	pam -616819	static-libs -616820	static -616821	python_targets_python2_7 -616823	X -627955	+tsm_cit -627955	+tsm_hw -627955	acl -627955	java -627955	linguas_cs -627955	linguas_de -627955	linguas_es -627955	linguas_fr -627955	linguas_hu -627955	linguas_it -627955	linguas_ja -627955	linguas_ko -627955	linguas_pl -627955	linguas_pt -627955	linguas_ru -627955	linguas_zh -627955	linguas_zh_TW -628101	acl -628101	xattr -628102	doc -628103	gnome -628103	kde -628103	python_targets_python2_7 -628104	debug -628105	udev -628106	doc -628106	examples -628108	+btrfs -628108	ext4 -628108	lvm -628108	pam -628108	xattr -628109	acl -628109	dar32 -628109	dar64 -628109	doc -628109	gcrypt -628109	lzo -628109	nls -628109	static -628109	static-libs -628110	gnome -628110	kde -628110	python_targets_python2_7 -628111	python_single_target_python3_3 -628111	python_single_target_python3_4 -628111	python_targets_python3_3 -628111	python_targets_python3_4 -628111	qt4 -628115	python_targets_python2_7 -628115	s3 -628115	test -628116	python_targets_python2_7 -628116	s3 -628118	acl -628118	bzip2 -628118	cpu_flags_x86_sse2 -628118	lzma -628118	xattr -628119	python_targets_python2_7 -628121	+handbook -628121	aqua -628121	debug -628121	linguas_cs -628121	linguas_de -628121	linguas_es -628121	linguas_fr -628121	linguas_it -628121	linguas_pt -628121	linguas_pt_BR -628121	linguas_ru -628121	linguas_sk -628121	linguas_sv -628122	doc -628122	python_targets_python2_7 -628125	python_targets_python2_7 -628127	acl -628127	dar32 -628127	dar64 -628127	doc -628127	gcrypt -628127	lzo -628127	nls -628127	static -628127	static-libs -628128	crypt -628130	rss -628130	samba -628130	vhosts -628131	acl -628131	afs -628131	nls -628131	tcpd -628131	xattr -628132	sasl -628134	+sqlite -628134	X -628134	acl -628134	bacula-clientonly -628134	bacula-nodir -628134	bacula-nosd -628134	examples -628134	ipv6 -628134	logwatch -628134	mysql -628134	postgres -628134	qt4 -628134	readline -628134	ssl -628134	static -628134	tcpd -628134	vim-syntax -628135	+mysql -628135	doc -628135	examples -628135	postgres -628135	python_targets_python2_7 -628135	sqlite -628136	client-only -628138	acl -628138	dar32 -628138	dar64 -628138	doc -628138	gcrypt -628138	lzo -628138	nls -628138	static -628138	static-libs -628140	debug -628140	linguas_bs -628140	linguas_ca -628140	linguas_cs -628140	linguas_de -628140	linguas_el -628140	linguas_en -628140	linguas_es -628140	linguas_fr -628140	linguas_it -628140	linguas_nl -628140	linguas_no -628140	linguas_pl -628140	linguas_pt_BR -628140	linguas_ro -628140	linguas_ru -628140	linguas_sk -628140	linguas_sl -628140	linguas_sv -628140	linguas_tr -628140	linguas_zh_TW -628141	acl -628141	dar32 -628141	dar64 -628141	doc -628141	gcrypt -628141	lzo -628141	nls -628141	static -628141	static-libs -628142	curl -628142	gnuplot -628142	ipv6 -628142	kerberos -628142	minimal -628142	nls -628142	readline -628142	s3 -628142	samba -628142	systemd -628142	xfs -628143	examples -628143	python_targets_python2_7 -628144	acl -628144	dar32 -628144	dar64 -628144	doc -628144	gcrypt -628144	lzo -628144	nls -628144	static -628144	static-libs -628145	doc -628145	s3 -628148	+sqlite -628148	X -628148	acl -628148	bacula-clientonly -628148	bacula-nodir -628148	bacula-nosd -628148	examples -628148	ipv6 -628148	logwatch -628148	mysql -628148	postgres -628148	python -628148	python_targets_python2_7 -628148	qt4 -628148	readline -628148	ssl -628148	static -628148	tcpd -628148	vim-syntax -628149	curl -628149	gnuplot -628149	ipv6 -628149	kerberos -628149	minimal -628149	nls -628149	readline -628149	s3 -628149	samba -628149	systemd -628149	xfs -628150	+tsm_cit -628150	+tsm_hw -628150	acl -628150	java -628150	linguas_cs -628150	linguas_de -628150	linguas_es -628150	linguas_fr -628150	linguas_hu -628150	linguas_it -628150	linguas_ja -628150	linguas_ko -628150	linguas_pl -628150	linguas_pt -628150	linguas_ru -628150	linguas_zh -628150	linguas_zh_TW -628151	gnome -628151	kde -628151	python_targets_python2_7 -628152	udev -628154	doc -628154	examples -628155	+tsm_cit -628155	+tsm_hw -628155	acl -628155	java -628155	linguas_cs -628155	linguas_de -628155	linguas_es -628155	linguas_fr -628155	linguas_hu -628155	linguas_it -628155	linguas_ja -628155	linguas_ko -628155	linguas_pl -628155	linguas_pt -628155	linguas_ru -628155	linguas_zh -628155	linguas_zh_TW -628157	doc -628158	linguas_ja -628160	debug -628160	lzma -628160	lzo -628160	static -628162	python_targets_python2_7 -628162	s3 -628162	test -628163	+btrfs -628163	ext4 -628163	lvm -628163	pam -628163	xattr -628165	python_targets_python2_7 -628168	acl -628168	dar32 -628168	dar64 -628168	doc -628168	gcrypt -628168	lzo -628168	nls -628168	static -628168	static-libs -628169	debug -628169	nautilus -628169	test -628170	python_targets_python2_7 -628172	X -628172	dbus -628173	curl -628173	gnuplot -628173	ipv6 -628173	kerberos -628173	minimal -628173	nls -628173	readline -628173	s3 -628173	samba -628173	systemd -628173	xfs -628174	acl -628174	dar32 -628174	dar64 -628174	doc -628174	nls -628174	ssl -628177	python_targets_python2_7 -628179	debug -628179	nautilus -628179	test -628181	X -628181	dbus -628182	+mysqldump -628182	lvm -628182	mysqlhotcopy -628182	python_targets_python2_7 -628183	curl -628183	gnuplot -628183	ipv6 -628183	kerberos -628183	minimal -628183	nls -628183	readline -628183	s3 -628183	samba -628183	systemd -628183	xfs -628184	acl -628184	afs -628184	ipv6 -628184	nls -628184	tcpd -628184	xattr -628185	+director -628185	+sqlite -628185	+storage-daemon -628185	X -628185	acl -628185	clientonly -628185	fastlz -628185	ipv6 -628185	logwatch -628185	mysql -628185	ndmp -628185	postgres -628185	python -628185	python_targets_python2_7 -628185	qt4 -628185	readline -628185	scsi-crypto -628185	sql-pooling -628185	ssl -628185	static -628185	tcpd -628185	vim-syntax -628187	+btrfs -628187	ext4 -628187	lvm -628187	pam -628187	xattr -628188	python_targets_python2_7 -628192	+tsm_cit -628192	+tsm_hw -628192	acl -628192	java -628192	linguas_cs -628192	linguas_de -628192	linguas_es -628192	linguas_fr -628192	linguas_hu -628192	linguas_it -628192	linguas_ja -628192	linguas_ko -628192	linguas_pl -628192	linguas_pt -628192	linguas_ru -628192	linguas_zh -628192	linguas_zh_TW -628193	+btrfs -628193	ext4 -628193	lvm -628193	pam -628193	xattr -628194	python_targets_python2_7 -628194	s3 -628195	acl -628195	dar32 -628195	dar64 -628195	doc -628195	gcrypt -628195	lzo -628195	nls -628195	static -628195	static-libs -628196	acl -628196	xattr -628197	python_targets_python2_7 -628198	doc -628198	python_targets_python2_7 -628199	hsm -628199	linguas_cs -628199	linguas_de -628199	linguas_es -628199	linguas_fr -628199	linguas_hu -628199	linguas_it -628199	linguas_ja -628199	linguas_ko -628199	linguas_pl -628199	linguas_pt -628199	linguas_ru -628199	linguas_zh -628199	linguas_zh_TW -628200	+sqlite -628200	X -628200	acl -628200	bacula-clientonly -628200	bacula-nodir -628200	bacula-nosd -628200	ipv6 -628200	logwatch -628200	mysql -628200	postgres -628200	python -628200	python_targets_python2_7 -628200	qt4 -628200	readline -628200	ssl -628200	static -628200	tcpd -628200	vim-syntax -628201	threads -628201	userland_GNU -628202	python_targets_python2_7 -628355	banlists -628357	+crypt -628357	+pcre -628357	+zlib -628357	examples -628357	pcre-jit -628357	ssl -628357	tools -628357	vim-syntax -628358	+httpd -628358	doc -628359	+htcp -628359	+wccp -628359	+wccpv2 -628359	caps -628359	ecap -628359	elibc_uclibc -628359	esi -628359	ipf-transparent -628359	ipv6 -628359	kerberos -628359	kernel_linux -628359	kqueue -628359	ldap -628359	logrotate -628359	mysql -628359	nis -628359	pam -628359	pf-transparent -628359	postgres -628359	qos -628359	radius -628359	samba -628359	sasl -628359	selinux -628359	snmp -628359	sqlite -628359	ssl -628359	ssl-crtd -628359	test -628359	tproxy -628360	+crypt -628360	+pcre -628360	+zlib -628360	examples -628360	pcre-jit -628360	ssl -628360	tools -628360	vim-syntax -628362	static-libs -628363	doc -628363	examples -628363	python_targets_python2_7 -628363	test -628364	systemd -628365	python_targets_python2_7 -628366	debug -628366	doc -628367	python_targets_python2_7 -628369	doc -628369	selinux -628370	+openssl -628370	debug -628370	polarssl -628371	doc -628371	examples -628371	python_targets_python2_7 -628371	test -628372	python_targets_python2_7 -628374	python_targets_python2_7 -628375	python_targets_python2_7 -628376	tordns -628377	+filter-proxy -628377	+upstream-proxy -628377	+xtinyproxy-header -628377	debug -628377	minimal -628377	reverse-proxy -628377	test -628377	transparent-proxy -628378	debug -628378	kerberos -628378	pam -628378	selinux -628378	static-libs -628378	tcpd -628378	upnp -628380	gnutls -628380	ipv6 -628380	zlib -628381	+htcp -628381	+wccp -628381	+wccpv2 -628381	caps -628381	ecap -628381	elibc_uclibc -628381	esi -628381	ipf-transparent -628381	ipv6 -628381	kerberos -628381	kernel_linux -628381	kqueue -628381	ldap -628381	logrotate -628381	mysql -628381	nis -628381	pam -628381	pf-transparent -628381	postgres -628381	qos -628381	radius -628381	samba -628381	sasl -628381	selinux -628381	snmp -628381	sqlite -628381	ssl -628381	ssl-crtd -628381	test -628381	tproxy -628382	abi_mips_n32 -628382	abi_mips_n64 -628382	abi_mips_o32 -628382	abi_ppc_32 -628382	abi_ppc_64 -628382	abi_s390_32 -628382	abi_s390_64 -628382	abi_x86_32 -628382	abi_x86_64 -628382	abi_x86_x32 -628382	dns -628382	envconf -628382	server-lookups -628382	tordns -628383	berkdb -628383	ipv6 -628383	ldap -628384	doc -628384	examples -628384	python_targets_python2_7 -628384	test -628385	+acl -628385	+fast-redirects -628385	+force -628385	+image-blocking -628385	+stats -628385	+threads -628385	+zlib -628385	editor -628385	external-filters -628385	graceful-termination -628385	ipv6 -628385	lfs -628385	png-images -628385	selinux -628385	toggle -628385	whitelists -628390	+httpd -628390	doc -628392	python_targets_python2_7 -628396	client-only -628396	minimal -628396	mysql -628396	python_targets_python2_7 -628398	xml -628399	clamav -628399	ssl -628401	+fancydm -628401	+lfs -628401	+pcre -628401	avast -628401	backtrace -628401	clamav -628401	commandline -628401	debug -628401	email -628401	icap -628401	kaspersky -628401	logrotate -628401	ntlm -628401	orig-ip -628401	static-libs -628401	trickledm -628402	debug -628402	pam -628402	selinux -628402	tcpd -628403	jpeg2k -628403	sasl -628403	xinetd -628405	systemd -628408	X -628408	debug -628409	+crypt -628409	+pcre -628409	examples -628409	vim-syntax -628410	berkdb -628410	clamav -628413	debug -628413	kerberos -628413	pam -628413	selinux -628413	static-libs -628413	tcpd -628413	upnp -628415	python_targets_python2_7 -628417	debug -628417	doc -628419	ldap -628919	gif -628919	jpeg -628919	nls -628919	png -628919	truetype -628919	zlib -628920	gif -628920	jpeg -628920	nls -628920	png -628920	truetype -628920	zlib -628921	doc -628921	python_targets_python2_7 -628922	python_targets_python2_7 -628922	test -628923	+sftp -628923	curl -628923	doc -628923	linguas_ar -628923	linguas_ast -628923	linguas_bs -628923	linguas_ca -628923	linguas_cs -628923	linguas_de -628923	linguas_el -628923	linguas_en_AU -628923	linguas_en_GB -628923	linguas_es -628923	linguas_fa -628923	linguas_fo -628923	linguas_fr -628923	linguas_gl -628923	linguas_he -628923	linguas_id -628923	linguas_it -628923	linguas_ja -628923	linguas_ko -628923	linguas_ms -628923	linguas_my -628923	linguas_nb -628923	linguas_nl -628923	linguas_oc -628923	linguas_pl -628923	linguas_pt_BR -628923	linguas_ro -628923	linguas_ru -628923	linguas_sco -628923	linguas_si -628923	linguas_sk -628923	linguas_sr -628923	linguas_sv -628923	linguas_tr -628923	linguas_ug -628923	linguas_uk -628923	linguas_vi -628923	linguas_zh_CN -628923	python_targets_python2_7 -628923	test -628925	tools -628925	vim-syntax -628927	python_targets_python2_7 -628927	python_targets_python3_3 -628927	python_targets_python3_4 -628930	python_targets_python2_7 -628931	bugzilla -628931	emacs -628931	gpg -628931	python_targets_python2_7 -628931	test -628931	tk -628933	doc -628933	python_single_target_python2_7 -628933	python_single_target_python3_3 -628933	python_single_target_python3_4 -628933	python_targets_python2_7 -628933	python_targets_python3_3 -628933	python_targets_python3_4 -628933	test -628937	tools -628937	vim-syntax -628938	bugzilla -628938	emacs -628938	gpg -628938	python_targets_python2_7 -628938	test -628938	tk -628939	+qt4 -628939	doc -628939	ncurses -628939	python_targets_python2_7 -628941	+assistant -628941	+cryptohash -628941	+dbus -628941	+desktop-notify -628941	+dns -628941	+feed -628941	+inotify -628941	+pairing -628941	+production -628941	+quvi -628941	+s3 -628941	+tahoe -628941	+tdfa -628941	+testsuite -628941	+webapp -628941	+webapp-secure -628941	+webdav -628941	+xmpp -628941	android -628941	androidsplice -628941	doc -628941	ekg -628944	python_targets_python2_7 -628945	bazaar -628945	cvs -628945	mercurial -628945	monotone -628945	python_targets_python2_7 -628945	subversion -628947	tools -628947	vim-syntax -628950	python_single_target_pypy -628950	python_single_target_python2_7 -628950	python_targets_pypy -628950	python_targets_python2_7 -628951	crypt -628951	doc -628951	emacs -628951	kerberos -628951	nls -628951	pam -628951	server -628952	gnome-keyring -628952	gpg -628952	nautilus -628953	+blksha1 -628953	+curl -628953	+gpg -628953	+iconv -628953	+nls -628953	+pcre -628953	+perl -628953	+python -628953	+threads -628953	+webdav -628953	cgi -628953	cvs -628953	doc -628953	emacs -628953	gnome-keyring -628953	gtk -628953	highlight -628953	mediawiki -628953	ppcsha1 -628953	python_targets_python2_7 -628953	subversion -628953	test -628953	tk -628953	xinetd -628954	gtk -628955	+assistant -628955	+cryptohash -628955	+dbus -628955	+desktop-notify -628955	+dns -628955	+feed -628955	+inotify -628955	+pairing -628955	+production -628955	+quvi -628955	+s3 -628955	+tahoe -628955	+tdfa -628955	+testsuite -628955	+webapp -628955	+webapp-secure -628955	+webdav -628955	+xmpp -628955	android -628955	androidsplice -628955	doc -628955	ekg -628955	torrentparser -628957	+qt4 -628957	doc -628957	ncurses -628957	python_targets_python2_7 -628959	+curl -628959	+http -628959	+terminfo -628959	+threaded -628959	diff -628959	doc -628959	hscolour -628959	profile -628959	test -628962	gnome-keyring -628962	gpg -628962	nautilus -628962	python_targets_python2_7 -628963	crypt -628963	doc -628963	kerberos -628963	nls -628963	pam -628963	server -628964	+curl -628964	+http -628964	+network-uri -628964	+terminfo -628964	+threaded -628964	diff -628964	doc -628964	hscolour -628964	profile -628964	test -628965	python_targets_python2_7 -628966	+assistant -628966	+dbus -628966	+desktop-notify -628966	+dns -628966	+feed -628966	+inotify -628966	+pairing -628966	+production -628966	+quvi -628966	+s3 -628966	+tahoe -628966	+tdfa -628966	+testsuite -628966	+webapp -628966	+webapp-secure -628966	+webdav -628966	+xmpp -628966	android -628966	androidsplice -628966	asciiprogress -628966	doc -628966	ekg -628966	torrentparser -628967	bugzilla -628967	emacs -628967	gpg -628967	python_targets_python2_7 -628967	test -628967	tk -628967	zsh-completion -628968	python_targets_python2_7 -628968	test -628970	+sftp -628970	curl -628970	doc -628970	test -628971	+assistant -628971	+dbus -628971	+desktop-notify -628971	+dns -628971	+feed -628971	+inotify -628971	+pairing -628971	+production -628971	+quvi -628971	+s3 -628971	+tahoe -628971	+tdfa -628971	+testsuite -628971	+webapp -628971	+webapp-secure -628971	+webdav -628971	+xmpp -628971	android -628971	androidsplice -628971	doc -628971	ekg -628971	torrentparser -628973	gtk -628973	python_targets_python2_7 -628974	test -628975	crypt -628975	doc -628975	kerberos -628975	nls -628975	pam -628975	server -628976	cli -628976	diff -628976	gedit -628976	git -628976	nautilus -628976	spell -628976	thunar -628977	contrib -628977	vim-syntax -628978	python_targets_python2_7 -628982	+lineedit -628982	+ssl -628982	json -628982	sqlite -628982	tcl -628984	+blksha1 -628984	+curl -628984	+gpg -628984	+iconv -628984	+nls -628984	+pcre -628984	+perl -628984	+python -628984	+threads -628984	+webdav -628984	cgi -628984	cvs -628984	doc -628984	emacs -628984	gnome-keyring -628984	gtk -628984	highlight -628984	libressl -628984	mediawiki -628984	ppcsha1 -628984	python_targets_python2_7 -628984	subversion -628984	test -628984	tk -628984	xinetd -628987	python_targets_python2_7 -628988	+blksha1 -628988	+curl -628988	+gpg -628988	+iconv -628988	+nls -628988	+pcre -628988	+perl -628988	+python -628988	+threads -628988	+webdav -628988	cgi -628988	cvs -628988	doc -628988	emacs -628988	gnome-keyring -628988	gtk -628988	highlight -628988	mediawiki -628988	ppcsha1 -628988	python_targets_python2_7 -628988	subversion -628988	test -628988	tk -628988	xinetd -628989	gnome-keyring -628989	gpg -628989	nautilus -628990	crypt -628990	doc -628990	kerberos -628990	nls -628990	pam -628990	server -628991	doc -628993	python_targets_python2_7 -628995	doc -628995	python_targets_python2_7 -628996	+assistant -628996	+cryptohash -628996	+dbus -628996	+desktop-notify -628996	+dns -628996	+feed -628996	+inotify -628996	+pairing -628996	+production -628996	+quvi -628996	+s3 -628996	+tahoe -628996	+tdfa -628996	+testsuite -628996	+webapp -628996	+webapp-secure -628996	+webdav -628996	+xmpp -628996	android -628996	androidsplice -628996	doc -628996	ekg -629000	python_targets_python2_7 -629000	python_targets_python3_3 -629000	python_targets_python3_4 -629001	+assistant -629001	+dbus -629001	+desktop-notify -629001	+dns -629001	+feed -629001	+inotify -629001	+pairing -629001	+production -629001	+quvi -629001	+s3 -629001	+tahoe -629001	+tdfa -629001	+testsuite -629001	+webapp -629001	+webapp-secure -629001	+webdav -629001	+xmpp -629001	android -629001	androidsplice -629001	asciiprogress -629001	doc -629001	ekg -629001	torrentparser -629002	+dso -629002	+http -629002	apache2 -629002	berkdb -629002	ctypes-python -629002	debug -629002	doc -629002	elibc_FreeBSD -629002	extras -629002	gnome-keyring -629002	java -629002	kde -629002	nls -629002	perl -629002	python -629002	python_targets_python2_7 -629002	ruby -629002	sasl -629002	test -629002	vim-syntax -629004	selinux -629004	tools -629004	vim-syntax -629005	crypt -629005	doc -629005	kerberos -629005	nls -629005	pam -629005	server -629007	+blksha1 -629007	+curl -629007	+gpg -629007	+iconv -629007	+nls -629007	+pcre -629007	+perl -629007	+python -629007	+threads -629007	+webdav -629007	cgi -629007	cvs -629007	doc -629007	emacs -629007	gnome-keyring -629007	gtk -629007	highlight -629007	mediawiki -629007	ppcsha1 -629007	python_targets_python2_7 -629007	subversion -629007	test -629007	tk -629007	xinetd -629008	test -629008	valgrind -629010	contrib -629010	vim-syntax -629012	doc -629014	python_targets_python2_7 -629017	python_targets_python2_7 -629018	doc -629018	elibc_FreeBSD -629018	ruby_targets_ruby19 -629018	ruby_targets_ruby20 -629018	ruby_targets_ruby21 -629018	test -629019	+assistant -629019	+dbus -629019	+desktop-notify -629019	+dns -629019	+feed -629019	+inotify -629019	+pairing -629019	+production -629019	+quvi -629019	+s3 -629019	+tahoe -629019	+tdfa -629019	+testsuite -629019	+webapp -629019	+webapp-secure -629019	+webdav -629019	+xmpp -629019	android -629019	androidsplice -629019	doc -629019	ekg -629019	torrentparser -629022	doc -629024	python_targets_python2_7 -629027	doc -629028	caja -629028	cli -629028	diff -629028	gedit -629028	git -629028	nautilus -629028	spell -629028	thunar -629030	tools -629030	vim-syntax -629032	doc -629032	hscolour -629032	profile -629032	test -629034	doc -629034	hscolour -629034	profile -629034	test -629036	doc -629036	python_targets_python2_7 -629037	doc -629037	emacs -629039	eds -629040	+handbook -629040	aqua -629040	debug -629040	linguas_cs -629040	linguas_de -629040	linguas_el -629040	linguas_es -629040	linguas_fr -629040	linguas_it -629040	linguas_ja -629040	linguas_lt -629040	linguas_pt_BR -629040	linguas_ro -629040	linguas_ru -629042	doc -629043	doc -629043	hscolour -629043	profile -629043	test -629046	doc -629047	+qt4 -629047	doc -629047	ncurses -629047	python_targets_python2_7 -629049	+color -629049	+curl -629049	+http -629049	+mmap -629049	+network-uri -629049	+optimize -629049	+terminfo -629049	+threaded -629049	doc -629049	hscolour -629049	profile -629049	static -629049	test -629052	python_targets_python2_7 -629052	python_targets_python3_3 -629052	python_targets_python3_4 -629053	elibc_FreeBSD -629053	ruby_targets_ruby19 -629053	ruby_targets_ruby20 -629053	ruby_targets_ruby21 -629053	test -629054	+python -629054	debug -629054	glade -629054	python_targets_python3_3 -629054	python_targets_python3_4 -629055	crypt -629055	doc -629055	emacs -629055	kerberos -629055	nls -629055	pam -629055	server -629056	elibc_FreeBSD -629058	doc -629058	python_targets_python2_7 -629059	tcpd -629060	bugzilla -629060	emacs -629060	gpg -629060	python_targets_python2_7 -629060	test -629060	tk -629064	doc -629064	python_targets_python2_7 -629065	bazaar -629065	git -629065	test -629066	contrib -629066	vim-syntax -629067	+assistant -629067	+cryptohash -629067	+dbus -629067	+desktop-notify -629067	+dns -629067	+feed -629067	+inotify -629067	+pairing -629067	+production -629067	+quvi -629067	+s3 -629067	+tahoe -629067	+tdfa -629067	+testsuite -629067	+webapp -629067	+webapp-secure -629067	+webdav -629067	+xmpp -629067	android -629067	androidsplice -629067	doc -629067	ekg -629069	selinux -629069	tools -629069	vim-syntax -629071	crypt -629071	doc -629071	kerberos -629071	nls -629071	pam -629071	server -629073	tools -629073	vim-syntax -629075	+dso -629075	+http -629075	apache2 -629075	berkdb -629075	ctypes-python -629075	debug -629075	doc -629075	elibc_FreeBSD -629075	extras -629075	gnome-keyring -629075	java -629075	kde -629075	nls -629075	perl -629075	python -629075	python_targets_python2_7 -629075	ruby -629075	sasl -629075	test -629075	vim-syntax -629077	tools -629077	vim-syntax -629078	tcpd -629079	python_targets_python2_7 -629080	doc -629080	elibc_FreeBSD -629080	source -629080	test -629082	doc -629085	tools -629085	vim-syntax -629087	crypt -629087	doc -629087	kerberos -629087	nls -629087	pam -629087	server -629091	doc -629091	ipv6 -629091	nls -629091	test -629094	crypt -629094	doc -629094	kerberos -629094	nls -629094	pam -629094	server -629095	cli -629095	diff -629095	gedit -629095	git -629095	nautilus -629095	spell -629095	thunar -629098	tools -629098	vim-syntax -629100	tools -629100	vim-syntax -629102	python_targets_python2_7 -629105	subversion -629107	tools -629107	vim-syntax -629109	doc -629109	python_targets_python2_7 -629109	static-libs -629111	tools -629111	vim-syntax -629112	doc -629114	crypt -629114	doc -629114	kerberos -629114	nls -629114	pam -629114	server -629116	python_targets_pypy -629116	python_targets_python2_7 -629119	test -629120	test -629121	tools -629121	vim-syntax -629122	+color -629122	+curl -629122	+http -629122	+mmap -629122	+network-uri -629122	+optimize -629122	+terminfo -629122	+threaded -629122	doc -629122	hscolour -629122	profile -629122	static -629122	test -629124	tools -629124	vim-syntax -629126	debug -629126	doc -629127	test -629128	python_targets_python2_7 -629129	python_targets_python2_7 -629133	doc -629133	elibc_FreeBSD -629133	source -629133	test -629135	+sftp -629135	curl -629135	doc -629135	test -629137	+sftp -629137	curl -629137	doc -629137	python_targets_python2_7 -629137	test -629138	python_targets_python2_7 -629143	tools -629143	vim-syntax -629146	python_targets_python2_7 -629147	doc -629147	python_targets_python2_7 -629148	test -629153	python_targets_python2_7 -633845	udev -633848	+dso -633848	+webdav-neon -633848	apache2 -633848	berkdb -633848	ctypes-python -633848	debug -633848	doc -633848	elibc_FreeBSD -633848	extras -633848	gnome-keyring -633848	java -633848	kde -633848	nls -633848	perl -633848	python -633848	python_targets_python2_7 -633848	ruby -633848	sasl -633848	test -633848	vim-syntax -633848	webdav-serf -634223	+director -634223	+sqlite -634223	+storage-daemon -634223	X -634223	acl -634223	cephfs -634223	clientonly -634223	fastlz -634223	glusterfs -634223	ipv6 -634223	lmdb -634223	logwatch -634223	mysql -634223	ndmp -634223	postgres -634223	python -634223	python_targets_python2_7 -634223	qt4 -634223	rados -634223	readline -634223	scsi-crypto -634223	sql-pooling -634223	ssl -634223	static -634223	tcpd -634223	vim-syntax -634225	+assistant -634225	+database -634225	+dbus -634225	+desktopnotify -634225	+dns -634225	+feed -634225	+inotify -634225	+network-uri -634225	+pairing -634225	+quvi -634225	+s3 -634225	+tahoe -634225	+tdfa -634225	+torrentparser -634225	+webapp -634225	+webapp-secure -634225	+webdav -634225	+xmpp -634225	asciiprogress -634225	doc -634225	ekg -634265	+gui -634265	gnome -634265	kde -634265	udev -634335	+usb -634335	twinserial -634336	bindist -634349	+openssl -634349	debug -634349	polarssl -634656	X -634656	debug -634658	python_targets_python2_7 -634658	python_targets_python3_3 -634658	python_targets_python3_4 -652935	+dialogs -652935	+gtk -652935	+xpi -652953	acl -652953	afs -652953	ipv6 -652953	nls -652953	tcpd -652953	xattr -652957	unicode -652998	kernel_linux -653586	+ocamlopt -653586	debug -653586	doc -653586	examples -653687	+xattr -653688	python_targets_python2_7 -653812	elibc_FreeBSD -653833	+btrfs -653833	ext4 -653833	lvm -653833	pam -653833	xattr -653867	+crypt -653867	+introspection -653867	debug -653867	test -653867	vala -654033	+dso -654033	+http -654033	apache2 -654033	berkdb -654033	ctypes-python -654033	debug -654033	doc -654033	elibc_FreeBSD -654033	extras -654033	gnome-keyring -654033	java -654033	kde -654033	nls -654033	perl -654033	python -654033	python_targets_python2_7 -654033	ruby -654033	sasl -654033	test -654033	vim-syntax -654084	X -654084	dbus -654085	+sqlite -654085	X -654085	acl -654085	bacula-clientonly -654085	bacula-nodir -654085	bacula-nosd -654085	examples -654085	ipv6 -654085	logwatch -654085	mysql -654085	postgres -654085	qt4 -654085	readline -654085	ssl -654085	static -654085	tcpd -654085	vim-syntax -654491	+gui -654491	gnome -654491	kde -654491	udev -654757	common-lisp -654757	static-libs -654758	linguas_ar -654758	linguas_cs -654758	linguas_de -654758	linguas_es -654758	linguas_fr -654758	linguas_ja -654758	linguas_nl -654758	linguas_pl -654758	linguas_pt_BR -654758	linguas_ru -654758	linguas_sv -654758	linguas_tr -654758	linguas_zh_TW -654758	nls -654839	bzip2 -654839	doc -654839	ldap -654839	mta -654839	nls -654839	readline -654839	selinux -654839	smartcard -654839	static -654839	tools -654839	usb -654840	+gnutls -654840	bzip2 -654840	doc -654840	ldap -654840	nls -654840	readline -654840	selinux -654840	smartcard -654840	static -654840	tools -654840	usb -655018	examples -655019	+ocamlopt -655019	debug -655019	doc -655019	test -655020	examples -655021	+ocamlopt -655021	debug -655028	kernel_linux -655028	static-libs -655028	systemd -655035	+director -655035	+sqlite -655035	+storage-daemon -655035	X -655035	acl -655035	cephfs -655035	clientonly -655035	fastlz -655035	glusterfs -655035	ipv6 -655035	lmdb -655035	logwatch -655035	mysql -655035	ndmp -655035	postgres -655035	python -655035	python_targets_python2_7 -655035	qt4 -655035	rados -655035	readline -655035	scsi-crypto -655035	sql-pooling -655035	ssl -655035	static -655035	tcpd -655035	vim-syntax -655036	python_targets_python2_7 -655036	s3 -655036	test -655037	+director -655037	+sqlite -655037	+storage-daemon -655037	X -655037	acl -655037	cephfs -655037	clientonly -655037	fastlz -655037	glusterfs -655037	gnutls -655037	ipv6 -655037	jansson -655037	lmdb -655037	logwatch -655037	mysql -655037	ndmp -655037	postgres -655037	python -655037	python_targets_python2_7 -655037	qt4 -655037	rados -655037	rados-striper -655037	readline -655037	scsi-crypto -655037	sql-pooling -655037	ssl -655037	static -655037	tcpd -655037	vim-syntax -655039	doc -655039	python_single_target_python2_7 -655039	python_single_target_python3_3 -655039	python_single_target_python3_4 -655039	python_targets_python2_7 -655039	python_targets_python3_3 -655039	python_targets_python3_4 -655039	test -655076	python_targets_python2_7 -655228	+htcp -655228	+wccp -655228	+wccpv2 -655228	caps -655228	ecap -655228	elibc_uclibc -655228	esi -655228	ipf-transparent -655228	ipv6 -655228	kerberos -655228	kernel_linux -655228	kqueue -655228	ldap -655228	logrotate -655228	mysql -655228	nis -655228	pam -655228	pf-transparent -655228	postgres -655228	qos -655228	radius -655228	samba -655228	sasl -655228	selinux -655228	snmp -655228	sqlite -655228	ssl -655228	ssl-crtd -655228	test -655228	tproxy -655307	python_targets_python2_7 -655338	+ocamlopt -655338	debug -655338	doc -655338	test -655339	+ocamlopt -655339	debug -655340	+ocamlopt -655340	debug -655340	doc -655340	test -655341	+ocamlopt -655341	debug -655341	doc -655341	test -655342	+ocamlopt -655342	debug -655343	+ocamlopt -655343	debug -655344	+ocamlopt -655344	debug -655345	+ocamlopt -655345	debug -655345	doc -655346	+ocamlopt -655346	debug -655347	+ocamlopt -655347	debug -655349	+ocamlopt -655349	debug -655349	doc -655349	test -655350	+ocamlopt -655350	debug -655350	doc -655351	+ocamlopt -655351	doc -655352	+ocamlopt -655352	debug -655352	doc -655353	+ocamlopt -655353	debug -655353	doc -655353	test -655354	+ocamlopt -655354	debug -655355	+ocamlopt -655355	debug -655356	+ocamlopt -655356	debug -655357	+ocamlopt -655357	debug -655357	doc -655358	+ocamlopt -655358	debug -655359	+ocamlopt -655359	debug -655359	doc -655359	test -655360	+ocamlopt -655360	debug -655360	doc -655360	examples -655360	test -655361	+ocamlopt -655361	debug -655361	doc -655362	+ocamlopt -655362	debug -655362	doc -655363	+ocamlopt -655363	debug -655363	doc -655363	test -655391	python_targets_python2_7 -655391	test -655427	+ocamlopt -655428	examples -655710	+htcp -655710	+wccp -655710	+wccpv2 -655710	caps -655710	ecap -655710	elibc_uclibc -655710	esi -655710	ipf-transparent -655710	ipv6 -655710	kerberos -655710	kernel_linux -655710	kqueue -655710	ldap -655710	logrotate -655710	mysql -655710	nis -655710	pam -655710	pf-transparent -655710	postgres -655710	qos -655710	radius -655710	samba -655710	sasl -655710	selinux -655710	snmp -655710	sqlite -655710	ssl -655710	ssl-crtd -655710	test -655710	tproxy -656582	+dso -656582	+http -656582	apache2 -656582	berkdb -656582	ctypes-python -656582	debug -656582	doc -656582	elibc_FreeBSD -656582	extras -656582	gnome-keyring -656582	java -656582	kde -656582	nls -656582	perl -656582	python -656582	python_targets_python2_7 -656582	ruby -656582	sasl -656582	test -656582	vim-syntax -656780	caps -656780	emacs -656780	gnome-keyring -656780	gtk -656780	ncurses -656780	qt4 -656780	static -657023	+ocamlopt -657023	debug -657023	doc -657032	caps -657032	emacs -657032	gnome-keyring -657032	gtk -657032	ncurses -657032	qt4 -657032	qt5 -657032	static -657146	ldap -657150	doc -657150	elibc_FreeBSD -657150	source -657150	test -657282	bugzilla -657282	emacs -657282	gpg -657282	python_targets_python2_7 -657282	test -657282	tk -657432	doc -657432	libressl -657432	selinux -657486	bindist -657487	kernel_linux -657508	+blksha1 -657508	+curl -657508	+gpg -657508	+iconv -657508	+nls -657508	+pcre -657508	+perl -657508	+python -657508	+threads -657508	+webdav -657508	cgi -657508	cvs -657508	doc -657508	emacs -657508	gnome-keyring -657508	gtk -657508	highlight -657508	mediawiki -657508	ppcsha1 -657508	python_targets_python2_7 -657508	subversion -657508	test -657508	tk -657508	xinetd -657509	+blksha1 -657509	+curl -657509	+gpg -657509	+iconv -657509	+nls -657509	+pcre -657509	+perl -657509	+python -657509	+threads -657509	+webdav -657509	cgi -657509	cvs -657509	doc -657509	emacs -657509	gnome-keyring -657509	gtk -657509	highlight -657509	libressl -657509	mediawiki -657509	ppcsha1 -657509	python_targets_python2_7 -657509	subversion -657509	test -657509	tk -657509	xinetd -657594	doc -657594	python_targets_python2_7 -657691	+openssl -657691	+qt4 -657691	botan -657691	debug -657691	doc -657691	examples -657691	gcrypt -657691	gpg -657691	libressl -657691	logger -657691	nss -657691	pkcs11 -657691	qt5 -657691	sasl -657691	softstore -657691	test -657711	static-libs -657740	static -657740	smartcard -657740	doc -657740	+gnutls -657740	bzip2 -657740	tools -657740	nls -657740	ldap -657740	usb -657740	selinux -657740	readline -657848	bindist -659908	+curl -657930	python_targets_python2_7 -659908	+webdav -657930	test -658057	+ocamlopt -658057	doc -658228	sasl -658228	esi -658228	kerberos -658228	kernel_linux -658228	+htcp -658228	radius -658228	test -658228	caps -658228	elibc_uclibc -658228	mysql -658228	samba -658228	sqlite -658228	selinux -658228	snmp -658228	+wccp -658228	pf-transparent -658228	ecap -658228	qos -658228	ipf-transparent -658228	pam -658228	ssl-crtd -658228	kqueue -658228	ldap -658228	nis -658228	+wccpv2 -658228	ssl -658228	ipv6 -658228	logrotate -658228	postgres -658228	tproxy -658322	examples -658322	+ocamlopt -658447	python_targets_python2_7 -658447	test -658511	xinetd -658492	+ounit -658511	+pcre -658511	highlight -658511	tk -658511	+perl -658511	ppcsha1 -658511	subversion -658492	debug -658492	doc -658511	+nls -658511	cvs -658511	gtk -658511	emacs -658511	test -658511	libressl -658511	doc -658511	+curl -658511	python_targets_python2_7 -658511	+python -658492	+ocamlopt -658511	+gpg -658511	+iconv -658511	gnome-keyring -658511	cgi -658511	mediawiki -658511	+blksha1 -658511	+threads -658511	+webdav -658605	test -658604	test -658605	allservices -658605	debug -658605	doc -658604	debug -658606	+ocamlopt -658601	debug -658601	test -658602	doc -658607	doc -658607	debug -658607	test -658603	+ocamlopt -658606	test -658606	debug -658604	+ocamlopt -658605	+ocamlopt -658601	+ocamlopt -658603	test -658602	+ocamlopt -658607	+ocamlopt -658603	debug -658602	mpir -658662	+ocamlopt -658673	ruby_targets_ruby19 -658661	+ocamlopt -658660	+ocamlopt -658662	async -658673	elibc_FreeBSD -658662	test -658662	doc -658662	debug -658673	ruby_targets_ruby20 -658662	+lwt -658660	debug -658660	doc -658661	debug -658661	doc -658660	test -658661	test -658673	test -658661	+lwt -658661	+camlp4 -658673	doc -658673	ruby_targets_ruby21 -658661	async -658822	python_targets_python2_7 -659072	doc -659072	static-libs -659072	python_targets_python2_7 -659186	linguas_pl -659153	+ocamlopt -659186	linguas_es -659187	examples -659187	net_ns -659186	linguas_fr -659154	doc -659187	doc -659186	hsm -659186	linguas_zh_TW -659186	linguas_ja -659187	ssl -659187	+zlib -659186	linguas_ru -659186	linguas_de -659154	tk -659187	tools -659186	linguas_hu -659187	pcre-jit -659186	linguas_ko -659187	+pcre -659187	+crypt -659186	linguas_cs -659187	vim-syntax -659154	+ocamlopt -659186	linguas_it -659186	linguas_pt -659153	examples -659186	linguas_zh -659277	gnome-keyring -659277	static -659277	qt4 -659277	emacs -659277	caps -659277	qt5 -659277	gtk -659277	ncurses -659375	doc -659369	+keyutils -659369	abi_mips_n64 -659369	selinux -659369	openldap -659369	xinetd -659369	+threads -659369	abi_s390_32 -659369	abi_ppc_64 -659375	python_targets_python2_7 -659369	abi_x86_64 -659369	abi_x86_x32 -659369	+pkinit -659369	abi_ppc_32 -659369	abi_mips_o32 -659369	doc -659369	libressl -659369	test -659369	abi_s390_64 -659369	abi_mips_n32 -659369	abi_x86_32 -659411	+ocamlopt -659410	examples -659411	examples -659510	examples -659510	+ocamlopt -659582	test -659709	openldap -659709	+threads -659709	+keyutils -659709	abi_mips_n64 -659709	selinux -659709	abi_x86_64 -659709	abi_ppc_64 -659709	doc -659709	libressl -659709	test -659709	abi_x86_x32 -659709	abi_ppc_32 -659709	+pkinit -659709	abi_mips_o32 -659709	abi_mips_n32 -659709	abi_x86_32 -659709	abi_s390_64 -659709	xinetd -659709	abi_s390_32 -659819	camlp4 -659817	doc -659819	+ocamlopt -659817	mpir -659818	+ocamlopt -659817	+ocamlopt -659819	debug -659819	doc -659819	emacs -659818	examples -659908	+python -659908	cgi -659908	+gpg -659864	+ocamlopt -659908	+iconv -659908	doc -659908	emacs -659908	test -659908	libressl -659908	tk -659908	+perl -659908	+nls -659864	test -659908	cvs -659908	gtk -659864	doc -659864	debug -659908	subversion -659908	ppcsha1 -659908	mediawiki -659908	+blksha1 -659908	xinetd -659908	+threads -659908	highlight -659908	+pcre -659908	python_targets_python2_7 -659908	gnome-keyring -660215	java -660222	gpg -660218	tools -660220	mysql -660216	linguas_cs -660218	pcre-jit -660218	ssl -660222	bugzilla -660220	elibc_uclibc -660216	linguas_it -660218	+zlib -660219	ssl -660213	python_single_target_python3_3 -660216	linguas_pt -660214	linguas_es -660214	linguas_pl -660220	caps -660218	vim-syntax -660216	linguas_zh_TW -660216	linguas_ja -660216	+tsm_cit -660213	python_targets_python3_4 -660220	test -660220	radius -660214	java -660217	java -660215	acl -660220	+htcp -660220	kernel_linux -660219	vim-syntax -660216	linguas_de -660220	kerberos -660215	linguas_fr -660216	linguas_ru -660214	linguas_zh -660218	+pcre -660213	python_targets_python3_3 -660219	+crypt -660216	+tsm_hw -660222	tk -660216	linguas_hu -660218	+crypt -660215	linguas_es -660219	+pcre -660215	linguas_pl -660213	qt4 -660220	sasl -660220	tproxy -660216	linguas_ko -660220	esi -660216	linguas_es -660216	linguas_pl -660215	linguas_ko -660214	linguas_pt -660221	python_targets_python2_7 -660214	linguas_it -660220	postgres -660215	linguas_hu -660215	+tsm_hw -660220	logrotate -660220	ipv6 -660216	acl -660220	ssl -660215	linguas_de -660216	linguas_fr -660220	nis -660220	+wccpv2 -660214	linguas_cs -660215	linguas_ru -660215	linguas_ja -660215	linguas_zh_TW -660220	kqueue -660215	+tsm_cit -660220	ldap -660222	test -660222	emacs -660220	ssl-crtd -660220	pam -660220	ipf-transparent -660220	qos -660214	linguas_ko -660215	linguas_pt -660219	doc -660217	+tsm_hw -660213	python_single_target_python3_4 -660214	linguas_hu -660214	+tsm_hw -660220	ecap -660221	doc -660220	pf-transparent -660215	linguas_it -660217	+tsm_cit -660214	linguas_de -660220	+wccp -660215	linguas_cs -660216	linguas_zh -660214	linguas_ru -660220	selinux -660220	snmp -660219	net_ns -660218	examples -660222	python_targets_python2_7 -660216	java -660214	linguas_ja -660214	linguas_zh_TW -660219	examples -660214	+tsm_cit -660219	pcre-jit -660217	acl -660220	sqlite -660214	linguas_fr -660220	samba -660215	linguas_zh -660219	tools -660214	acl -660219	+zlib -660295	python_single_target_python3_4 -660295	python_single_target_python2_7 -660295	python_targets_python3_3 -660295	test -660295	doc -660295	python_targets_python3_4 -660295	python_targets_python2_7 -660295	python_single_target_python3_3 -679113	+ocamlopt -679041	+gtk -679113	mpir -679041	+xpi -679113	doc -679041	+dialogs -679154	examples -679154	+ocamlopt -679406	ldap -679405	test -679405	vala -679406	debug -679405	gtk -679406	zeroconf -679405	+introspection -679405	debug -679604	glade -679604	python_targets_python3_4 -679604	+python -679604	python_targets_python3_3 -679604	debug -679699	selinux -679700	tools -679699	vim-syntax -679700	selinux -679701	vim-syntax -679700	vim-syntax -679701	selinux -679699	tools -679701	tools -680048	test -680048	doc -680048	abi_mips_o32 -680048	abi_x86_x32 -680048	abi_ppc_32 -680048	+pkinit -680048	abi_x86_32 -680049	doc -680048	abi_mips_n32 -680048	abi_s390_64 -680048	abi_s390_32 -680048	+threads -680048	xinetd -680048	openldap -680048	abi_mips_n64 -680048	+keyutils -680048	selinux -680048	abi_x86_64 -680048	abi_ppc_64 -680048	libressl -680204	selinux -680204	mta -680204	usb -680203	usb -680204	ldap -680203	ldap -680204	nls -680203	tools -680203	nls -680204	tools -680204	bzip2 -680203	+gnutls -680203	bzip2 -680228	doc -680204	doc -680203	smartcard -680203	doc -680204	smartcard -680203	static -680204	static -680204	readline -680228	python_targets_python2_7 -680203	readline -680203	selinux -680266	rados -680266	python_targets_python2_7 -680266	logwatch -680266	mysql -680266	readline -680266	sql-pooling -680266	acl -680266	X -680251	debug -680266	fastlz -680251	doc -680251	test -680266	lmdb -680266	qt4 -680266	scsi-crypto -680266	+director -680266	ipv6 -680266	python -680266	ssl -680250	doc -680266	rados-striper -680266	+storage-daemon -680266	clientonly -680266	postgres -680266	cephfs -680251	+ocamlopt -680266	+sqlite -680266	gnutls -680266	glusterfs -680266	tcpd -680266	vim-syntax -680266	static -680266	ndmp -680266	jansson -680325	+ocamlopt -680325	+lwt -680325	test -680325	doc -680325	debug -680325	async -680387	python_targets_python3_5 -680387	test -680387	python_targets_python2_7 -680479	python_targets_python2_7 -680478	python_targets_python2_7 -680480	python_targets_python2_7 -680602	test -680613	pam -680613	ipf-transparent -680600	python_targets_python2_7 -680613	kqueue -680602	python_targets_python3_4 -680613	ldap -680613	ssl -680613	nis -680613	+wccpv2 -680613	ipv6 -680613	pf-transparent -680602	python_targets_python2_7 -680613	ecap -680613	qos -680617	emacs -680617	test -680600	test -680613	+wccp -680613	selinux -680613	snmp -680613	samba -680613	mysql -680613	sqlite -680613	elibc_uclibc -680617	tk -680613	kerberos -680613	+htcp -680613	kernel_linux -680613	test -680613	radius -680617	gpg -680613	caps -680613	tproxy -680613	sasl -680613	esi -680617	bugzilla -680602	python_targets_python3_5 -680613	logrotate -680613	postgres -680613	ssl-crtd -680617	python_targets_python2_7 -680942	python_targets_python2_7 -680921	python_targets_python3_4 -680921	test -680922	libressl -680921	python_targets_python3_5 -680921	python_targets_python2_7 +609052	ocamlopt	true +609052	debug	\N +609053	ocamlopt	true +609053	test	\N +609054	ocamlopt	true +609054	doc	\N +609056	ocamlopt	true +609056	debug	\N +609057	ocamlopt	true +609057	camlp4	\N +609057	debug	\N +609057	doc	\N +609057	emacs	\N +609058	ocamlopt	true +609058	debug	\N +609058	doc	\N +609058	pcre	\N +609058	test	\N +609059	ocamlopt	true +609059	doc	\N +609059	examples	\N +609059	gtk	\N +609060	ocamlopt	true +609060	debug	\N +609061	ocamlopt	true +609061	doc	\N +609061	tk	\N +609063	ocamlopt	true +609063	debug	\N +609063	doc	\N +609063	test	\N +609064	ocamlopt	true +609064	debug	\N +609064	doc	\N +609064	examples	\N +609065	ocamlopt	true +609065	debug	\N +609065	doc	\N +609065	test	\N +609066	ocamlopt	true +609066	debug	\N +609068	ocamlopt	true +609068	debug	\N +609068	doc	\N +609068	test	\N +609069	ocamlopt	true +609069	debug	\N +609069	doc	\N +609069	examples	\N +609070	deriving	true +609070	ocamlopt	true +609070	doc	\N +609071	ocamlopt	true +609071	debug	\N +609071	test	\N +609072	doc	\N +609075	ocamlopt	true +609075	debug	\N +609075	doc	\N +609075	test	\N +609076	deriving	true +609076	ocamlopt	true +609076	doc	\N +609077	ocamlopt	true +609077	debug	\N +609077	doc	\N +609078	ocamlopt	true +609078	debug	\N +609078	doc	\N +609080	X	\N +609080	doc	\N +609080	exif	\N +609080	gif	\N +609080	gtk	\N +609080	jpeg	\N +609080	png	\N +609080	postscript	\N +609080	tiff	\N +609080	truetype	\N +609080	xpm	\N +609081	ocamlopt	true +609081	debug	\N +609081	doc	\N +609081	pcre	\N +609081	test	\N +609083	ocamlopt	true +609083	doc	\N +609084	ocamlopt	true +609084	debug	\N +609086	ocamlopt	true +609086	debug	\N +609088	ocamlopt	true +609088	debug	\N +609088	test	\N +609089	ocamlopt	true +609089	debug	\N +609089	doc	\N +609089	test	\N +609090	ocamlopt	true +609090	debug	\N +609090	doc	\N +609090	test	\N +609091	ocamlopt	true +609091	debug	\N +609091	test	\N +609092	ocamlopt	true +609092	debug	\N +609092	doc	\N +609093	ocamlopt	true +609093	debug	\N +609093	doc	\N +609093	test	\N +609094	ocamlopt	true +609097	ocamlopt	true +609097	doc	\N +609097	tk	\N +609098	ocamlopt	true +609098	debug	\N +609099	ocamlopt	true +609099	debug	\N +609099	doc	\N +609099	test	\N +609101	ocamlopt	true +609101	debug	\N +609101	test	\N +609103	doc	\N +609105	ocamlopt	true +609105	debug	\N +609105	test	\N +609106	ocamlopt	true +609106	examples	\N +609107	ocamlopt	true +609107	camlp4	\N +609107	debug	\N +609107	doc	\N +609107	emacs	\N +609108	ocamlopt	true +609108	debug	\N +609109	ocamlopt	true +609109	pcre	true +609109	gtk	\N +609109	httpd	\N +609109	kerberos	\N +609109	ssl	\N +609109	tk	\N +609109	zip	\N +609110	examples	\N +609111	ocamlopt	true +609111	debug	\N +609111	doc	\N +609112	ocamlopt	true +609112	debug	\N +609112	doc	\N +609113	ocamlopt	true +609113	debug	\N +609113	doc	\N +609113	examples	\N +609114	ocamlopt	true +609114	debug	\N +609116	ocamlopt	true +609116	debug	\N +609118	ocamlopt	true +609118	debug	\N +609119	ocamlopt	true +609119	debug	\N +609119	doc	\N +609119	examples	\N +609120	ocamlopt	true +609120	debug	\N +609120	doc	\N +609120	test	\N +609122	ocamlopt	true +609122	examples	\N +609124	ocamlopt	true +609124	examples	\N +609125	ocamlopt	true +609126	ocamlopt	true +609126	debug	\N +609126	doc	\N +609126	examples	\N +609128	ocamlopt	true +609129	ocamlopt	true +609129	debug	\N +609130	ocamlopt	true +609130	doc	\N +609130	test	\N +609130	utftrip	\N +609132	ocamlopt	true +609132	debug	\N +609132	doc	\N +609132	test	\N +609132	zlib	\N +609133	doc	\N +609134	ocamlopt	true +609134	doc	\N +609134	tk	\N +609136	ocamlopt	true +609136	debug	\N +609136	examples	\N +609136	glade	\N +609136	gnomecanvas	\N +609136	opengl	\N +609136	sourceview	\N +609136	spell	\N +609136	svg	\N +609137	ocamlopt	true +609137	debug	\N +609137	doc	\N +609137	examples	\N +609140	X	\N +609140	doc	\N +609140	exif	\N +609140	gif	\N +609140	gtk	\N +609140	jpeg	\N +609140	png	\N +609140	postscript	\N +609140	tiff	\N +609140	truetype	\N +609140	xpm	\N +609142	ocamlopt	true +609142	debug	\N +609142	doc	\N +609142	examples	\N +609144	ocamlopt	true +609144	examples	\N +609147	ocamlopt	true +609147	debug	\N +609147	test	\N +609148	ocamlopt	true +609148	doc	\N +609149	ocamlopt	true +609149	debug	\N +609149	doc	\N +609149	test	\N +609150	ocamlopt	true +609150	debug	\N +609150	doc	\N +609150	test	\N +609151	ocamlopt	true +609151	react	true +609151	ssl	true +609151	debug	\N +609151	gtk	\N +609151	test	\N +609151	text	\N +609151	toplevel	\N +609152	ocamlopt	true +609152	debug	\N +609152	doc	\N +609153	doc	\N +609154	ocamlopt	true +609155	ocamlopt	true +609155	debug	\N +609155	doc	\N +609156	ocamlopt	true +609156	debug	\N +609156	doc	\N +609156	test	\N +609157	ocamlopt	true +609157	debug	\N +609157	doc	\N +609157	examples	\N +609158	ocamlopt	true +609158	parmap	true +609158	bzip2	\N +609158	curl	\N +609158	rpm4	\N +609158	xml	\N +609158	zip	\N +609159	examples	\N +609160	ocamlopt	true +609160	doc	\N +609161	ocamlopt	true +609161	debug	\N +609161	doc	\N +609162	ocamlopt	true +609162	debug	\N +609162	test	\N +609163	ocamlopt	true +609163	debug	\N +609163	doc	\N +609163	examples	\N +609164	ocamlopt	true +609164	debug	\N +609164	doc	\N +609165	ocamlopt	true +609165	debug	\N +609165	doc	\N +609167	ocamlopt	true +609167	debug	\N +609167	doc	\N +609167	test	\N +609168	ocamlopt	true +609168	debug	\N +609168	doc	\N +609168	examples	\N +609169	ocamlopt	true +609169	debug	\N +609169	doc	\N +609169	examples	\N +609176	doc	\N +609177	ocamlopt	true +609177	debug	\N +609177	doc	\N +609178	ocamlopt	true +609178	debug	\N +609179	ocamlopt	true +609179	debug	\N +609179	doc	\N +609182	ocamlopt	true +609182	debug	\N +609182	doc	\N +609182	test	\N +609183	ocamlopt	true +609183	debug	\N +609184	ocamlopt	true +609184	doc	\N +609185	ocamlopt	true +609185	doc	\N +609186	ocamlopt	true +609186	debug	\N +609186	test	\N +609187	ocamlopt	true +609187	debug	\N +609187	doc	\N +609187	test	\N +609188	ocamlopt	true +609188	doc	\N +609190	ocamlopt	true +609191	doc	\N +609192	ocamlopt	true +609192	debug	\N +609192	doc	\N +609193	ocamlopt	true +609193	doc	\N +609193	glut	\N +609194	doc	\N +609194	examples	\N +609195	X	\N +609195	doc	\N +609195	exif	\N +609195	gif	\N +609195	gtk	\N +609195	jpeg	\N +609195	png	\N +609195	postscript	\N +609195	tiff	\N +609195	truetype	\N +609195	xpm	\N +609196	ocamlopt	true +609196	debug	\N +609196	test	\N +609197	ocamlopt	true +609197	debug	\N +609197	doc	\N +609197	test	\N +609198	ocamlopt	true +609198	parmap	true +609198	bzip2	\N +609198	curl	\N +609198	rpm4	\N +609198	test	\N +609198	xml	\N +609198	zip	\N +609199	ocamlopt	true +609199	debug	\N +609199	doc	\N +609199	test	\N +609200	doc	\N +609200	test	\N +609202	X	\N +609202	doc	\N +609202	gif	\N +609202	gtk	\N +609202	jpeg	\N +609202	png	\N +609202	postscript	\N +609202	tiff	\N +609202	truetype	\N +609202	xpm	\N +609202	zlib	\N +609203	ocamlopt	true +609203	debug	\N +609203	doc	\N +609205	ocamlopt	true +609205	debug	\N +609205	test	\N +609206	ocamlopt	true +609206	debug	\N +609206	doc	\N +609207	ocamlopt	true +609207	debug	\N +609207	doc	\N +609208	doc	\N +609209	ocamlopt	true +609209	react	true +609209	ssl	true +609209	debug	\N +609209	doc	\N +609209	gtk	\N +609209	test	\N +609211	ocamlopt	true +609212	ocamlopt	true +609213	ocamlopt	true +609213	debug	\N +609213	doc	\N +609215	ocamlopt	true +609215	doc	\N +609215	opengl	\N +609215	truetype	\N +609216	ocamlopt	true +609216	debug	\N +609216	doc	\N +609216	examples	\N +609217	ocamlopt	true +609217	debug	\N +609217	test	\N +609218	ocamlopt	true +609218	debug	\N +609218	doc	\N +609218	zlib	\N +609219	ocamlopt	true +609220	ocamlopt	true +609220	debug	\N +609220	doc	\N +609220	test	\N +609222	ocamlopt	true +609222	debug	\N +609224	ocamlopt	true +609224	debug	\N +609224	doc	\N +609224	test	\N +609225	deriving-ocsigen	true +609225	ocamlopt	true +609225	doc	\N +609227	ocamlopt	true +609227	debug	\N +609227	doc	\N +609227	test	\N +609228	ocamlopt	true +609228	debug	\N +609228	doc	\N +609229	ocamlopt	true +609229	debug	\N +609230	ocamlopt	true +609231	ocamlopt	true +609231	debug	\N +609234	ocamlopt	true +609234	type-conv	\N +609236	ocamlopt	true +609236	debug	\N +609237	doc	\N +609238	ocamlopt	true +609238	debug	\N +609239	ocamlopt	true +609239	doc	\N +609242	ocamlopt	true +609242	debug	\N +609244	ocamlopt	true +609244	debug	\N +609244	doc	\N +609244	examples	\N +609245	ocamlopt	true +609245	debug	\N +609246	ocamlopt	true +609246	debug	\N +609247	ocamlopt	true +609247	debug	\N +609247	doc	\N +609247	test	\N +609248	ocamlopt	true +609248	debug	\N +609249	ocamlopt	true +609249	doc	\N +609249	glut	\N +609249	tk	\N +609250	ocamlopt	true +609250	debug	\N +609250	doc	\N +609251	ocamlopt	true +609251	debug	\N +609252	ocamlopt	true +609252	debug	\N +609252	examples	\N +609252	glade	\N +609252	gnomecanvas	\N +609252	opengl	\N +609252	sourceview	\N +609252	spell	\N +609252	svg	\N +609254	examples	\N +609255	ocamlopt	true +609255	pcre	true +609255	cryptokit	\N +609255	gtk	\N +609255	httpd	\N +609255	ssl	\N +609255	tk	\N +609255	zip	\N +609256	ocamlopt	true +609256	parmap	true +609256	bzip2	\N +609256	curl	\N +609256	rpm4	\N +609256	test	\N +609256	xml	\N +609256	zip	\N +609257	examples	\N +609258	ocamlopt	true +609258	debug	\N +609258	doc	\N +609259	examples	\N +609260	ocamlopt	true +609260	debug	\N +609261	ocamlopt	true +609261	test	\N +609262	doc	\N +609262	test	\N +609264	ocamlopt	true +609264	debug	\N +609264	doc	\N +609264	examples	\N +609265	ocamlopt	true +609265	debug	\N +609265	doc	\N +609266	ocamlopt	true +609266	debug	\N +609266	examples	\N +609266	glade	\N +609266	gnomecanvas	\N +609266	opengl	\N +609266	sourceview	\N +609266	spell	\N +609266	svg	\N +609269	ocamlopt	true +609269	doc	\N +609269	test	\N +609270	ocamlopt	true +609270	debug	\N +609270	doc	\N +609270	test	\N +609271	ocamlopt	true +609271	debug	\N +609272	ocamlopt	true +609272	debug	\N +609273	ocamlopt	true +609273	debug	\N +609275	ocamlopt	true +609275	doc	\N +609276	deriving	true +609276	ocamlopt	true +609276	doc	\N +609278	ocamlopt	true +609278	doc	\N +609278	examples	\N +609278	gtk	\N +609279	ocamlopt	true +609279	debug	\N +609279	doc	\N +609279	examples	\N +609280	doc	\N +609280	examples	\N +609280	gtk	\N +609280	pango	\N +609280	svg	\N +609281	examples	\N +609282	ocamlopt	true +609282	debug	\N +609283	ocamlopt	true +609283	doc	\N +609284	ocamlopt	true +609284	debug	\N +609284	doc	\N +609286	ocamlopt	true +609286	batteries	\N +609286	debug	\N +609286	doc	\N +609287	ocamlopt	true +609287	debug	\N +609287	doc	\N +609287	test	\N +609288	ocamlopt	true +609288	debug	\N +609289	ocamlopt	true +609289	debug	\N +609289	doc	\N +609289	test	\N +609291	doc	\N +609291	test	\N +609292	ocamlopt	true +609292	X	\N +609293	ocamlopt	true +609295	ocamlopt	true +609295	debug	\N +609295	doc	\N +609295	test	\N +609297	ocamlopt	true +609297	doc	\N +609299	ocamlopt	true +609299	react	true +609299	ssl	true +609299	debug	\N +609299	gtk	\N +609299	test	\N +609300	ocamlopt	true +609300	doc	\N +609301	ocamlopt	true +609301	debug	\N +609301	doc	\N +609301	examples	\N +609301	test	\N +609302	ocamlopt	true +609302	debug	\N +609302	doc	\N +609305	deriving-ocsigen	true +609305	ocamlopt	true +609305	doc	\N +609308	ocamlopt	true +609308	debug	\N +609308	doc	\N +609308	test	\N +609308	zlib	\N +609309	ocamlopt	true +609309	debug	\N +609309	doc	\N +609309	emacs	\N +616615	common-lisp	\N +616615	static-libs	\N +616618	cryptopp	true +616620	zsh-completion	\N +616621	kernel_linux	\N +616621	minimal	\N +616621	munin	\N +616622	doc	\N +616622	selinux	\N +616624	bzip2	\N +616624	doc	\N +616624	ldap	\N +616624	mta	\N +616624	nls	\N +616624	readline	\N +616624	selinux	\N +616624	smartcard	\N +616624	static	\N +616624	tools	\N +616624	usb	\N +616628	usb	true +616628	twinserial	\N +616630	doc	\N +616633	linguas_cs	\N +616633	linguas_de	\N +616633	linguas_en	\N +616633	linguas_es	\N +616633	linguas_sv	\N +616638	nls	\N +616641	kernel_linux	\N +616642	fips	true +616643	abi_mips_n32	\N +616643	abi_mips_n64	\N +616643	abi_mips_o32	\N +616643	abi_ppc_32	\N +616643	abi_ppc_64	\N +616643	abi_s390_32	\N +616643	abi_s390_64	\N +616643	abi_x86_32	\N +616643	abi_x86_64	\N +616643	abi_x86_x32	\N +616643	static-libs	\N +616644	asn1	true +616644	libffi	true +616644	trust	true +616644	abi_mips_n32	\N +616644	abi_mips_n64	\N +616644	abi_mips_o32	\N +616644	abi_ppc_32	\N +616644	abi_ppc_64	\N +616644	abi_s390_32	\N +616644	abi_s390_64	\N +616644	abi_x86_32	\N +616644	abi_x86_64	\N +616644	abi_x86_x32	\N +616644	debug	\N +616645	nls	\N +616650	dialogs	true +616650	gtk	true +616650	xpi	true +616658	video_cards_fglrx	\N +616658	video_cards_nvidia	\N +616658	virtualcl	\N +616661	python_targets_python2_7	\N +616661	python_targets_python3_3	\N +616661	python_targets_python3_4	\N +616662	abi_mips_n32	\N +616662	abi_mips_n64	\N +616662	abi_mips_o32	\N +616662	abi_ppc_32	\N +616662	abi_ppc_64	\N +616662	abi_s390_32	\N +616662	abi_s390_64	\N +616662	abi_x86_32	\N +616662	abi_x86_64	\N +616662	abi_x86_x32	\N +616662	static-libs	\N +616663	tables	true +616663	debug	\N +616663	qt4	\N +616665	bzip2	\N +616665	doc	\N +616665	ldap	\N +616665	mta	\N +616665	nls	\N +616665	readline	\N +616665	selinux	\N +616665	smartcard	\N +616665	static	\N +616665	tools	\N +616665	usb	\N +616667	static-libs	\N +616671	python_targets_python2_7	\N +616671	python_targets_python3_3	\N +616671	python_targets_python3_4	\N +616674	debug	\N +616675	ncurses	\N +616677	3des	true +616677	aes	true +616677	arcfour	true +616677	des	true +616677	md	true +616677	null	true +616677	gnutls	\N +616677	idn	\N +616677	ipv6	\N +616677	nls	\N +616677	pam	\N +616677	static-libs	\N +616678	cryptopp	true +616679	test	\N +616681	introspection	true +616681	debug	\N +616681	gtk	\N +616681	test	\N +616681	vala	\N +616682	kernel_linux	\N +616683	static	\N +616688	bzip2	\N +616688	doc	\N +616688	ldap	\N +616688	mta	\N +616688	nls	\N +616688	readline	\N +616688	selinux	\N +616688	smartcard	\N +616688	static	\N +616688	tools	\N +616688	usb	\N +616690	kernel_linux	\N +616690	modules	\N +616690	ssl	\N +616691	debug	\N +616691	ldap	\N +616691	zeroconf	\N +616692	usb	true +616692	twinserial	\N +616694	video_cards_fglrx	\N +616694	video_cards_nvidia	\N +616694	virtualcl	\N +616696	doc	\N +616696	selinux	\N +616698	nls	\N +616699	vistafree	true +616699	xpfast	true +616699	xpsmall	\N +616702	doc	\N +616703	asm	true +616703	cpu_flags_x86_aes	\N +616703	cpu_flags_x86_padlock	\N +616703	static	\N +616705	openssl	\N +616706	doc	\N +616709	python_targets_python2_7	\N +616715	kernel_linux	\N +616716	abi_mips_n32	\N +616716	abi_mips_n64	\N +616716	abi_mips_o32	\N +616716	abi_ppc_32	\N +616716	abi_ppc_64	\N +616716	abi_s390_32	\N +616716	abi_s390_64	\N +616716	abi_x86_32	\N +616716	abi_x86_64	\N +616716	abi_x86_x32	\N +616716	static-libs	\N +616717	ssl	\N +616720	test	\N +616721	kernel_linux	\N +616721	static-libs	\N +616721	systemd	\N +616724	berkdb	\N +616724	postgres	\N +616726	asn1	true +616726	libffi	true +616726	trust	true +616726	abi_mips_n32	\N +616726	abi_mips_n64	\N +616726	abi_mips_o32	\N +616726	abi_ppc_32	\N +616726	abi_ppc_64	\N +616726	abi_s390_32	\N +616726	abi_s390_64	\N +616726	abi_x86_32	\N +616726	abi_x86_64	\N +616726	abi_x86_x32	\N +616726	debug	\N +616727	asn1	true +616727	libffi	true +616727	trust	true +616727	abi_mips_n32	\N +616727	abi_mips_n64	\N +616727	abi_mips_o32	\N +616727	abi_ppc_32	\N +616727	abi_ppc_64	\N +616727	abi_s390_32	\N +616727	abi_s390_64	\N +616727	abi_x86_32	\N +616727	abi_x86_64	\N +616727	abi_x86_x32	\N +616727	debug	\N +616730	elibc_FreeBSD	\N +616731	debug	\N +616731	qt4	\N +616732	gtk	true +616732	xpi	true +616733	asm	true +616733	X	\N +616734	python_targets_python2_7	\N +616737	caps	\N +616737	gtk	\N +616737	ncurses	\N +616737	qt4	\N +616737	static	\N +616738	gtk	true +616738	xpi	true +616739	python_targets_python2_7	\N +616741	tables	true +616741	debug	\N +616741	qt4	\N +616742	minimal	false +616742	cpu_flags_x86_mmx	\N +616742	cpu_flags_x86_sse2	\N +616742	cuda	\N +616742	custom-cflags	\N +616742	mpi	\N +616742	opencl	\N +616742	openmp	\N +616743	debug	\N +616744	kernel_linux	\N +616744	static-libs	\N +616744	systemd	\N +616745	caps	\N +616745	clipboard	\N +616745	gtk	\N +616745	ncurses	\N +616745	qt4	\N +616745	static	\N +616748	linguas_ar	\N +616748	linguas_cs	\N +616748	linguas_de	\N +616748	linguas_es	\N +616748	linguas_fr	\N +616748	linguas_ja	\N +616748	linguas_nl	\N +616748	linguas_pl	\N +616748	linguas_pt_BR	\N +616748	linguas_ru	\N +616748	linguas_sv	\N +616748	linguas_tr	\N +616748	linguas_zh_TW	\N +616748	nls	\N +616749	minimal	false +616749	cpu_flags_x86_mmx	\N +616749	cpu_flags_x86_sse2	\N +616749	cuda	\N +616749	custom-cflags	\N +616749	mozilla	\N +616749	mpi	\N +616749	opencl	\N +616749	openmp	\N +616750	openssl	true +616750	qt4	true +616750	botan	\N +616750	debug	\N +616750	doc	\N +616750	examples	\N +616750	gcrypt	\N +616750	gpg	\N +616750	logger	\N +616750	nss	\N +616750	pkcs11	\N +616750	qt5	\N +616750	sasl	\N +616750	softstore	\N +616750	test	\N +616751	3des	true +616751	aes	true +616751	arcfour	true +616751	des	true +616751	md	true +616751	null	true +616751	gnutls	\N +616751	idn	\N +616751	ipv6	\N +616751	nls	\N +616751	pam	\N +616751	static-libs	\N +616752	kernel_linux	\N +616752	minimal	\N +616752	munin	\N +616752	usb	\N +616753	berkdb	true +616753	pkinit	true +616753	X	\N +616753	abi_mips_n32	\N +616753	abi_mips_n64	\N +616753	abi_mips_o32	\N +616753	abi_ppc_32	\N +616753	abi_ppc_64	\N +616753	abi_s390_32	\N +616753	abi_s390_64	\N +616753	abi_x86_32	\N +616753	abi_x86_64	\N +616753	abi_x86_x32	\N +616753	afs	\N +616753	caps	\N +616753	hdb-ldap	\N +616753	ipv6	\N +616753	otp	\N +616753	selinux	\N +616753	ssl	\N +616753	static-libs	\N +616753	test	\N +616753	threads	\N +616755	asm	true +616755	X	\N +616756	bzip2	\N +616756	curl	\N +616756	ldap	\N +616756	mta	\N +616756	nls	\N +616756	readline	\N +616756	selinux	\N +616756	smartcard	\N +616756	static	\N +616756	usb	\N +616756	zlib	\N +616762	kernel_linux	\N +616764	3des	true +616764	aes	true +616764	arcfour	true +616764	des	true +616764	md	true +616764	null	true +616764	gnutls	\N +616764	idn	\N +616764	ipv6	\N +616764	nls	\N +616764	pam	\N +616764	static-libs	\N +616765	kernel_linux	\N +616766	static	\N +616767	tables	true +616767	debug	\N +616767	qt4	\N +616768	doc	\N +616770	python_targets_python2_7	\N +616772	static-libs	\N +616773	debug	\N +616773	nls	\N +616773	pkcs11	\N +616778	python_targets_python2_7	\N +616778	python_targets_python3_3	\N +616778	python_targets_python3_4	\N +616779	nls	\N +616779	selinux	\N +616779	static	\N +616779	uclibc	\N +616780	python_targets_python2_7	\N +616781	X	\N +616781	python_targets_python2_7	\N +616782	static-libs	\N +616784	asn1	true +616784	libffi	true +616784	trust	true +616784	abi_mips_n32	\N +616784	abi_mips_n64	\N +616784	abi_mips_o32	\N +616784	abi_ppc_32	\N +616784	abi_ppc_64	\N +616784	abi_s390_32	\N +616784	abi_s390_64	\N +616784	abi_x86_32	\N +616784	abi_x86_64	\N +616784	abi_x86_x32	\N +616784	debug	\N +616786	static	\N +616787	curl	\N +616791	bindist	\N +616792	linguas_ar	\N +616792	linguas_cs	\N +616792	linguas_de	\N +616792	linguas_es	\N +616792	linguas_fr	\N +616792	linguas_ja	\N +616792	linguas_nl	\N +616792	linguas_pl	\N +616792	linguas_pt_BR	\N +616792	linguas_ru	\N +616792	linguas_sv	\N +616792	linguas_tr	\N +616792	linguas_zh_TW	\N +616792	nls	\N +616793	doc	\N +616795	debug	\N +616795	qt4	\N +616796	doc	\N +616797	static	\N +616798	abi_mips_n32	\N +616798	abi_mips_n64	\N +616798	abi_mips_o32	\N +616798	abi_ppc_32	\N +616798	abi_ppc_64	\N +616798	abi_s390_32	\N +616798	abi_s390_64	\N +616798	abi_x86_32	\N +616798	abi_x86_64	\N +616798	abi_x86_x32	\N +616798	static-libs	\N +616799	afs	\N +616800	python_targets_python2_7	\N +616804	caps	\N +616804	clipboard	\N +616804	emacs	\N +616804	gnome-keyring	\N +616804	gtk	\N +616804	ncurses	\N +616804	qt4	\N +616804	static	\N +616807	python_targets_python2_7	\N +616807	python_targets_python3_3	\N +616807	python_targets_python3_4	\N +616814	cpu_flags_x86_sse2	\N +616815	cuda	\N +616815	opencl	\N +616816	test	\N +616817	bzip2	\N +616817	doc	\N +616817	ldap	\N +616817	mta	\N +616817	nls	\N +616817	readline	\N +616817	selinux	\N +616817	smartcard	\N +616817	static	\N +616817	tools	\N +616817	usb	\N +616819	3des	true +616819	aes	true +616819	arcfour	true +616819	des	true +616819	md	true +616819	null	true +616819	gnutls	\N +616819	idn	\N +616819	ipv6	\N +616819	nls	\N +616819	pam	\N +616819	static-libs	\N +616820	static	\N +616821	python_targets_python2_7	\N +616823	X	\N +627955	tsm_cit	true +627955	tsm_hw	true +627955	acl	\N +627955	java	\N +627955	linguas_cs	\N +627955	linguas_de	\N +627955	linguas_es	\N +627955	linguas_fr	\N +627955	linguas_hu	\N +627955	linguas_it	\N +627955	linguas_ja	\N +627955	linguas_ko	\N +627955	linguas_pl	\N +627955	linguas_pt	\N +627955	linguas_ru	\N +627955	linguas_zh	\N +627955	linguas_zh_TW	\N +628101	acl	\N +628101	xattr	\N +628102	doc	\N +628103	gnome	\N +628103	kde	\N +628103	python_targets_python2_7	\N +628104	debug	\N +628105	udev	\N +628106	doc	\N +628106	examples	\N +628108	btrfs	true +628108	ext4	\N +628108	lvm	\N +628108	pam	\N +628108	xattr	\N +628109	acl	\N +628109	dar32	\N +628109	dar64	\N +628109	doc	\N +628109	gcrypt	\N +628109	lzo	\N +628109	nls	\N +628109	static	\N +628109	static-libs	\N +628110	gnome	\N +628110	kde	\N +628110	python_targets_python2_7	\N +628111	python_single_target_python3_3	\N +628111	python_single_target_python3_4	\N +628111	python_targets_python3_3	\N +628111	python_targets_python3_4	\N +628111	qt4	\N +628115	python_targets_python2_7	\N +628115	s3	\N +628115	test	\N +628116	python_targets_python2_7	\N +628116	s3	\N +628118	acl	\N +628118	bzip2	\N +628118	cpu_flags_x86_sse2	\N +628118	lzma	\N +628118	xattr	\N +628119	python_targets_python2_7	\N +628121	handbook	true +628121	aqua	\N +628121	debug	\N +628121	linguas_cs	\N +628121	linguas_de	\N +628121	linguas_es	\N +628121	linguas_fr	\N +628121	linguas_it	\N +628121	linguas_pt	\N +628121	linguas_pt_BR	\N +628121	linguas_ru	\N +628121	linguas_sk	\N +628121	linguas_sv	\N +628122	doc	\N +628122	python_targets_python2_7	\N +628125	python_targets_python2_7	\N +628127	acl	\N +628127	dar32	\N +628127	dar64	\N +628127	doc	\N +628127	gcrypt	\N +628127	lzo	\N +628127	nls	\N +628127	static	\N +628127	static-libs	\N +628128	crypt	\N +628130	rss	\N +628130	samba	\N +628130	vhosts	\N +628131	acl	\N +628131	afs	\N +628131	nls	\N +628131	tcpd	\N +628131	xattr	\N +628132	sasl	\N +628134	sqlite	true +628134	X	\N +628134	acl	\N +628134	bacula-clientonly	\N +628134	bacula-nodir	\N +628134	bacula-nosd	\N +628134	examples	\N +628134	ipv6	\N +628134	logwatch	\N +628134	mysql	\N +628134	postgres	\N +628134	qt4	\N +628134	readline	\N +628134	ssl	\N +628134	static	\N +628134	tcpd	\N +628134	vim-syntax	\N +628135	mysql	true +628135	doc	\N +628135	examples	\N +628135	postgres	\N +628135	python_targets_python2_7	\N +628135	sqlite	\N +628136	client-only	\N +628138	acl	\N +628138	dar32	\N +628138	dar64	\N +628138	doc	\N +628138	gcrypt	\N +628138	lzo	\N +628138	nls	\N +628138	static	\N +628138	static-libs	\N +628140	debug	\N +628140	linguas_bs	\N +628140	linguas_ca	\N +628140	linguas_cs	\N +628140	linguas_de	\N +628140	linguas_el	\N +628140	linguas_en	\N +628140	linguas_es	\N +628140	linguas_fr	\N +628140	linguas_it	\N +628140	linguas_nl	\N +628140	linguas_no	\N +628140	linguas_pl	\N +628140	linguas_pt_BR	\N +628140	linguas_ro	\N +628140	linguas_ru	\N +628140	linguas_sk	\N +628140	linguas_sl	\N +628140	linguas_sv	\N +628140	linguas_tr	\N +628140	linguas_zh_TW	\N +628141	acl	\N +628141	dar32	\N +628141	dar64	\N +628141	doc	\N +628141	gcrypt	\N +628141	lzo	\N +628141	nls	\N +628141	static	\N +628141	static-libs	\N +628142	curl	\N +628142	gnuplot	\N +628142	ipv6	\N +628142	kerberos	\N +628142	minimal	\N +628142	nls	\N +628142	readline	\N +628142	s3	\N +628142	samba	\N +628142	systemd	\N +628142	xfs	\N +628143	examples	\N +628143	python_targets_python2_7	\N +628144	acl	\N +628144	dar32	\N +628144	dar64	\N +628144	doc	\N +628144	gcrypt	\N +628144	lzo	\N +628144	nls	\N +628144	static	\N +628144	static-libs	\N +628145	doc	\N +628145	s3	\N +628148	sqlite	true +628148	X	\N +628148	acl	\N +628148	bacula-clientonly	\N +628148	bacula-nodir	\N +628148	bacula-nosd	\N +628148	examples	\N +628148	ipv6	\N +628148	logwatch	\N +628148	mysql	\N +628148	postgres	\N +628148	python	\N +628148	python_targets_python2_7	\N +628148	qt4	\N +628148	readline	\N +628148	ssl	\N +628148	static	\N +628148	tcpd	\N +628148	vim-syntax	\N +628149	curl	\N +628149	gnuplot	\N +628149	ipv6	\N +628149	kerberos	\N +628149	minimal	\N +628149	nls	\N +628149	readline	\N +628149	s3	\N +628149	samba	\N +628149	systemd	\N +628149	xfs	\N +628150	tsm_cit	true +628150	tsm_hw	true +628150	acl	\N +628150	java	\N +628150	linguas_cs	\N +628150	linguas_de	\N +628150	linguas_es	\N +628150	linguas_fr	\N +628150	linguas_hu	\N +628150	linguas_it	\N +628150	linguas_ja	\N +628150	linguas_ko	\N +628150	linguas_pl	\N +628150	linguas_pt	\N +628150	linguas_ru	\N +628150	linguas_zh	\N +628150	linguas_zh_TW	\N +628151	gnome	\N +628151	kde	\N +628151	python_targets_python2_7	\N +628152	udev	\N +628154	doc	\N +628154	examples	\N +628155	tsm_cit	true +628155	tsm_hw	true +628155	acl	\N +628155	java	\N +628155	linguas_cs	\N +628155	linguas_de	\N +628155	linguas_es	\N +628155	linguas_fr	\N +628155	linguas_hu	\N +628155	linguas_it	\N +628155	linguas_ja	\N +628155	linguas_ko	\N +628155	linguas_pl	\N +628155	linguas_pt	\N +628155	linguas_ru	\N +628155	linguas_zh	\N +628155	linguas_zh_TW	\N +628157	doc	\N +628158	linguas_ja	\N +628160	debug	\N +628160	lzma	\N +628160	lzo	\N +628160	static	\N +628162	python_targets_python2_7	\N +628162	s3	\N +628162	test	\N +628163	btrfs	true +628163	ext4	\N +628163	lvm	\N +628163	pam	\N +628163	xattr	\N +628165	python_targets_python2_7	\N +628168	acl	\N +628168	dar32	\N +628168	dar64	\N +628168	doc	\N +628168	gcrypt	\N +628168	lzo	\N +628168	nls	\N +628168	static	\N +628168	static-libs	\N +628169	debug	\N +628169	nautilus	\N +628169	test	\N +628170	python_targets_python2_7	\N +628172	X	\N +628172	dbus	\N +628173	curl	\N +628173	gnuplot	\N +628173	ipv6	\N +628173	kerberos	\N +628173	minimal	\N +628173	nls	\N +628173	readline	\N +628173	s3	\N +628173	samba	\N +628173	systemd	\N +628173	xfs	\N +628174	acl	\N +628174	dar32	\N +628174	dar64	\N +628174	doc	\N +628174	nls	\N +628174	ssl	\N +628177	python_targets_python2_7	\N +628179	debug	\N +628179	nautilus	\N +628179	test	\N +628181	X	\N +628181	dbus	\N +628182	mysqldump	true +628182	lvm	\N +628182	mysqlhotcopy	\N +628182	python_targets_python2_7	\N +628183	curl	\N +628183	gnuplot	\N +628183	ipv6	\N +628183	kerberos	\N +628183	minimal	\N +628183	nls	\N +628183	readline	\N +628183	s3	\N +628183	samba	\N +628183	systemd	\N +628183	xfs	\N +628184	acl	\N +628184	afs	\N +628184	ipv6	\N +628184	nls	\N +628184	tcpd	\N +628184	xattr	\N +628185	director	true +628185	sqlite	true +628185	storage-daemon	true +628185	X	\N +628185	acl	\N +628185	clientonly	\N +628185	fastlz	\N +628185	ipv6	\N +628185	logwatch	\N +628185	mysql	\N +628185	ndmp	\N +628185	postgres	\N +628185	python	\N +628185	python_targets_python2_7	\N +628185	qt4	\N +628185	readline	\N +628185	scsi-crypto	\N +628185	sql-pooling	\N +628185	ssl	\N +628185	static	\N +628185	tcpd	\N +628185	vim-syntax	\N +628187	btrfs	true +628187	ext4	\N +628187	lvm	\N +628187	pam	\N +628187	xattr	\N +628188	python_targets_python2_7	\N +628192	tsm_cit	true +628192	tsm_hw	true +628192	acl	\N +628192	java	\N +628192	linguas_cs	\N +628192	linguas_de	\N +628192	linguas_es	\N +628192	linguas_fr	\N +628192	linguas_hu	\N +628192	linguas_it	\N +628192	linguas_ja	\N +628192	linguas_ko	\N +628192	linguas_pl	\N +628192	linguas_pt	\N +628192	linguas_ru	\N +628192	linguas_zh	\N +628192	linguas_zh_TW	\N +628193	btrfs	true +628193	ext4	\N +628193	lvm	\N +628193	pam	\N +628193	xattr	\N +628194	python_targets_python2_7	\N +628194	s3	\N +628195	acl	\N +628195	dar32	\N +628195	dar64	\N +628195	doc	\N +628195	gcrypt	\N +628195	lzo	\N +628195	nls	\N +628195	static	\N +628195	static-libs	\N +628196	acl	\N +628196	xattr	\N +628197	python_targets_python2_7	\N +628198	doc	\N +628198	python_targets_python2_7	\N +628199	hsm	\N +628199	linguas_cs	\N +628199	linguas_de	\N +628199	linguas_es	\N +628199	linguas_fr	\N +628199	linguas_hu	\N +628199	linguas_it	\N +628199	linguas_ja	\N +628199	linguas_ko	\N +628199	linguas_pl	\N +628199	linguas_pt	\N +628199	linguas_ru	\N +628199	linguas_zh	\N +628199	linguas_zh_TW	\N +628200	sqlite	true +628200	X	\N +628200	acl	\N +628200	bacula-clientonly	\N +628200	bacula-nodir	\N +628200	bacula-nosd	\N +628200	ipv6	\N +628200	logwatch	\N +628200	mysql	\N +628200	postgres	\N +628200	python	\N +628200	python_targets_python2_7	\N +628200	qt4	\N +628200	readline	\N +628200	ssl	\N +628200	static	\N +628200	tcpd	\N +628200	vim-syntax	\N +628201	threads	\N +628201	userland_GNU	\N +628202	python_targets_python2_7	\N +628355	banlists	\N +628357	crypt	true +628357	pcre	true +628357	zlib	true +628357	examples	\N +628357	pcre-jit	\N +628357	ssl	\N +628357	tools	\N +628357	vim-syntax	\N +628358	httpd	true +628358	doc	\N +628359	htcp	true +628359	wccp	true +628359	wccpv2	true +628359	caps	\N +628359	ecap	\N +628359	elibc_uclibc	\N +628359	esi	\N +628359	ipf-transparent	\N +628359	ipv6	\N +628359	kerberos	\N +628359	kernel_linux	\N +628359	kqueue	\N +628359	ldap	\N +628359	logrotate	\N +628359	mysql	\N +628359	nis	\N +628359	pam	\N +628359	pf-transparent	\N +628359	postgres	\N +628359	qos	\N +628359	radius	\N +628359	samba	\N +628359	sasl	\N +628359	selinux	\N +628359	snmp	\N +628359	sqlite	\N +628359	ssl	\N +628359	ssl-crtd	\N +628359	test	\N +628359	tproxy	\N +628360	crypt	true +628360	pcre	true +628360	zlib	true +628360	examples	\N +628360	pcre-jit	\N +628360	ssl	\N +628360	tools	\N +628360	vim-syntax	\N +628362	static-libs	\N +628363	doc	\N +628363	examples	\N +628363	python_targets_python2_7	\N +628363	test	\N +628364	systemd	\N +628365	python_targets_python2_7	\N +628366	debug	\N +628366	doc	\N +628367	python_targets_python2_7	\N +628369	doc	\N +628369	selinux	\N +628370	openssl	true +628370	debug	\N +628370	polarssl	\N +628371	doc	\N +628371	examples	\N +628371	python_targets_python2_7	\N +628371	test	\N +628372	python_targets_python2_7	\N +628374	python_targets_python2_7	\N +628375	python_targets_python2_7	\N +628376	tordns	\N +628377	filter-proxy	true +628377	upstream-proxy	true +628377	xtinyproxy-header	true +628377	debug	\N +628377	minimal	\N +628377	reverse-proxy	\N +628377	test	\N +628377	transparent-proxy	\N +628378	debug	\N +628378	kerberos	\N +628378	pam	\N +628378	selinux	\N +628378	static-libs	\N +628378	tcpd	\N +628378	upnp	\N +628380	gnutls	\N +628380	ipv6	\N +628380	zlib	\N +628381	htcp	true +628381	wccp	true +628381	wccpv2	true +628381	caps	\N +628381	ecap	\N +628381	elibc_uclibc	\N +628381	esi	\N +628381	ipf-transparent	\N +628381	ipv6	\N +628381	kerberos	\N +628381	kernel_linux	\N +628381	kqueue	\N +628381	ldap	\N +628381	logrotate	\N +628381	mysql	\N +628381	nis	\N +628381	pam	\N +628381	pf-transparent	\N +628381	postgres	\N +628381	qos	\N +628381	radius	\N +628381	samba	\N +628381	sasl	\N +628381	selinux	\N +628381	snmp	\N +628381	sqlite	\N +628381	ssl	\N +628381	ssl-crtd	\N +628381	test	\N +628381	tproxy	\N +628382	abi_mips_n32	\N +628382	abi_mips_n64	\N +628382	abi_mips_o32	\N +628382	abi_ppc_32	\N +628382	abi_ppc_64	\N +628382	abi_s390_32	\N +628382	abi_s390_64	\N +628382	abi_x86_32	\N +628382	abi_x86_64	\N +628382	abi_x86_x32	\N +628382	dns	\N +628382	envconf	\N +628382	server-lookups	\N +628382	tordns	\N +628383	berkdb	\N +628383	ipv6	\N +628383	ldap	\N +628384	doc	\N +628384	examples	\N +628384	python_targets_python2_7	\N +628384	test	\N +628385	acl	true +628385	fast-redirects	true +628385	force	true +628385	image-blocking	true +628385	stats	true +628385	threads	true +628385	zlib	true +628385	editor	\N +628385	external-filters	\N +628385	graceful-termination	\N +628385	ipv6	\N +628385	lfs	\N +628385	png-images	\N +628385	selinux	\N +628385	toggle	\N +628385	whitelists	\N +628390	httpd	true +628390	doc	\N +628392	python_targets_python2_7	\N +628396	client-only	\N +628396	minimal	\N +628396	mysql	\N +628396	python_targets_python2_7	\N +628398	xml	\N +628399	clamav	\N +628399	ssl	\N +628401	fancydm	true +628401	lfs	true +628401	pcre	true +628401	avast	\N +628401	backtrace	\N +628401	clamav	\N +628401	commandline	\N +628401	debug	\N +628401	email	\N +628401	icap	\N +628401	kaspersky	\N +628401	logrotate	\N +628401	ntlm	\N +628401	orig-ip	\N +628401	static-libs	\N +628401	trickledm	\N +628402	debug	\N +628402	pam	\N +628402	selinux	\N +628402	tcpd	\N +628403	jpeg2k	\N +628403	sasl	\N +628403	xinetd	\N +628405	systemd	\N +628408	X	\N +628408	debug	\N +628409	crypt	true +628409	pcre	true +628409	examples	\N +628409	vim-syntax	\N +628410	berkdb	\N +628410	clamav	\N +628413	debug	\N +628413	kerberos	\N +628413	pam	\N +628413	selinux	\N +628413	static-libs	\N +628413	tcpd	\N +628413	upnp	\N +628415	python_targets_python2_7	\N +628417	debug	\N +628417	doc	\N +628419	ldap	\N +628919	gif	\N +628919	jpeg	\N +628919	nls	\N +628919	png	\N +628919	truetype	\N +628919	zlib	\N +628920	gif	\N +628920	jpeg	\N +628920	nls	\N +628920	png	\N +628920	truetype	\N +628920	zlib	\N +628921	doc	\N +628921	python_targets_python2_7	\N +628922	python_targets_python2_7	\N +628922	test	\N +628923	sftp	true +628923	curl	\N +628923	doc	\N +628923	linguas_ar	\N +628923	linguas_ast	\N +628923	linguas_bs	\N +628923	linguas_ca	\N +628923	linguas_cs	\N +628923	linguas_de	\N +628923	linguas_el	\N +628923	linguas_en_AU	\N +628923	linguas_en_GB	\N +628923	linguas_es	\N +628923	linguas_fa	\N +628923	linguas_fo	\N +628923	linguas_fr	\N +628923	linguas_gl	\N +628923	linguas_he	\N +628923	linguas_id	\N +628923	linguas_it	\N +628923	linguas_ja	\N +628923	linguas_ko	\N +628923	linguas_ms	\N +628923	linguas_my	\N +628923	linguas_nb	\N +628923	linguas_nl	\N +628923	linguas_oc	\N +628923	linguas_pl	\N +628923	linguas_pt_BR	\N +628923	linguas_ro	\N +628923	linguas_ru	\N +628923	linguas_sco	\N +628923	linguas_si	\N +628923	linguas_sk	\N +628923	linguas_sr	\N +628923	linguas_sv	\N +628923	linguas_tr	\N +628923	linguas_ug	\N +628923	linguas_uk	\N +628923	linguas_vi	\N +628923	linguas_zh_CN	\N +628923	python_targets_python2_7	\N +628923	test	\N +628925	tools	\N +628925	vim-syntax	\N +628927	python_targets_python2_7	\N +628927	python_targets_python3_3	\N +628927	python_targets_python3_4	\N +628930	python_targets_python2_7	\N +628931	bugzilla	\N +628931	emacs	\N +628931	gpg	\N +628931	python_targets_python2_7	\N +628931	test	\N +628931	tk	\N +628933	doc	\N +628933	python_single_target_python2_7	\N +628933	python_single_target_python3_3	\N +628933	python_single_target_python3_4	\N +628933	python_targets_python2_7	\N +628933	python_targets_python3_3	\N +628933	python_targets_python3_4	\N +628933	test	\N +628937	tools	\N +628937	vim-syntax	\N +628938	bugzilla	\N +628938	emacs	\N +628938	gpg	\N +628938	python_targets_python2_7	\N +628938	test	\N +628938	tk	\N +628939	qt4	true +628939	doc	\N +628939	ncurses	\N +628939	python_targets_python2_7	\N +628941	assistant	true +628941	cryptohash	true +628941	dbus	true +628941	desktop-notify	true +628941	dns	true +628941	feed	true +628941	inotify	true +628941	pairing	true +628941	production	true +628941	quvi	true +628941	s3	true +628941	tahoe	true +628941	tdfa	true +628941	testsuite	true +628941	webapp	true +628941	webapp-secure	true +628941	webdav	true +628941	xmpp	true +628941	android	\N +628941	androidsplice	\N +628941	doc	\N +628941	ekg	\N +628944	python_targets_python2_7	\N +628945	bazaar	\N +628945	cvs	\N +628945	mercurial	\N +628945	monotone	\N +628945	python_targets_python2_7	\N +628945	subversion	\N +628947	tools	\N +628947	vim-syntax	\N +628950	python_single_target_pypy	\N +628950	python_single_target_python2_7	\N +628950	python_targets_pypy	\N +628950	python_targets_python2_7	\N +628951	crypt	\N +628951	doc	\N +628951	emacs	\N +628951	kerberos	\N +628951	nls	\N +628951	pam	\N +628951	server	\N +628952	gnome-keyring	\N +628952	gpg	\N +628952	nautilus	\N +628953	blksha1	true +628953	curl	true +628953	gpg	true +628953	iconv	true +628953	nls	true +628953	pcre	true +628953	perl	true +628953	python	true +628953	threads	true +628953	webdav	true +628953	cgi	\N +628953	cvs	\N +628953	doc	\N +628953	emacs	\N +628953	gnome-keyring	\N +628953	gtk	\N +628953	highlight	\N +628953	mediawiki	\N +628953	ppcsha1	\N +628953	python_targets_python2_7	\N +628953	subversion	\N +628953	test	\N +628953	tk	\N +628953	xinetd	\N +628954	gtk	\N +628955	assistant	true +628955	cryptohash	true +628955	dbus	true +628955	desktop-notify	true +628955	dns	true +628955	feed	true +628955	inotify	true +628955	pairing	true +628955	production	true +628955	quvi	true +628955	s3	true +628955	tahoe	true +628955	tdfa	true +628955	testsuite	true +628955	webapp	true +628955	webapp-secure	true +628955	webdav	true +628955	xmpp	true +628955	android	\N +628955	androidsplice	\N +628955	doc	\N +628955	ekg	\N +628955	torrentparser	\N +628957	qt4	true +628957	doc	\N +628957	ncurses	\N +628957	python_targets_python2_7	\N +628959	curl	true +628959	http	true +628959	terminfo	true +628959	threaded	true +628959	diff	\N +628959	doc	\N +628959	hscolour	\N +628959	profile	\N +628959	test	\N +628962	gnome-keyring	\N +628962	gpg	\N +628962	nautilus	\N +628962	python_targets_python2_7	\N +628963	crypt	\N +628963	doc	\N +628963	kerberos	\N +628963	nls	\N +628963	pam	\N +628963	server	\N +628964	curl	true +628964	http	true +628964	network-uri	true +628964	terminfo	true +628964	threaded	true +628964	diff	\N +628964	doc	\N +628964	hscolour	\N +628964	profile	\N +628964	test	\N +628965	python_targets_python2_7	\N +628966	assistant	true +628966	dbus	true +628966	desktop-notify	true +628966	dns	true +628966	feed	true +628966	inotify	true +628966	pairing	true +628966	production	true +628966	quvi	true +628966	s3	true +628966	tahoe	true +628966	tdfa	true +628966	testsuite	true +628966	webapp	true +628966	webapp-secure	true +628966	webdav	true +628966	xmpp	true +628966	android	\N +628966	androidsplice	\N +628966	asciiprogress	\N +628966	doc	\N +628966	ekg	\N +628966	torrentparser	\N +628967	bugzilla	\N +628967	emacs	\N +628967	gpg	\N +628967	python_targets_python2_7	\N +628967	test	\N +628967	tk	\N +628967	zsh-completion	\N +628968	python_targets_python2_7	\N +628968	test	\N +628970	sftp	true +628970	curl	\N +628970	doc	\N +628970	test	\N +628971	assistant	true +628971	dbus	true +628971	desktop-notify	true +628971	dns	true +628971	feed	true +628971	inotify	true +628971	pairing	true +628971	production	true +628971	quvi	true +628971	s3	true +628971	tahoe	true +628971	tdfa	true +628971	testsuite	true +628971	webapp	true +628971	webapp-secure	true +628971	webdav	true +628971	xmpp	true +628971	android	\N +628971	androidsplice	\N +628971	doc	\N +628971	ekg	\N +628971	torrentparser	\N +628973	gtk	\N +628973	python_targets_python2_7	\N +628974	test	\N +628975	crypt	\N +628975	doc	\N +628975	kerberos	\N +628975	nls	\N +628975	pam	\N +628975	server	\N +628976	cli	\N +628976	diff	\N +628976	gedit	\N +628976	git	\N +628976	nautilus	\N +628976	spell	\N +628976	thunar	\N +628977	contrib	\N +628977	vim-syntax	\N +628978	python_targets_python2_7	\N +628982	lineedit	true +628982	ssl	true +628982	json	\N +628982	sqlite	\N +628982	tcl	\N +628984	blksha1	true +628984	curl	true +628984	gpg	true +628984	iconv	true +628984	nls	true +628984	pcre	true +628984	perl	true +628984	python	true +628984	threads	true +628984	webdav	true +628984	cgi	\N +628984	cvs	\N +628984	doc	\N +628984	emacs	\N +628984	gnome-keyring	\N +628984	gtk	\N +628984	highlight	\N +628984	libressl	\N +628984	mediawiki	\N +628984	ppcsha1	\N +628984	python_targets_python2_7	\N +628984	subversion	\N +628984	test	\N +628984	tk	\N +628984	xinetd	\N +628987	python_targets_python2_7	\N +628988	blksha1	true +628988	curl	true +628988	gpg	true +628988	iconv	true +628988	nls	true +628988	pcre	true +628988	perl	true +628988	python	true +628988	threads	true +628988	webdav	true +628988	cgi	\N +628988	cvs	\N +628988	doc	\N +628988	emacs	\N +628988	gnome-keyring	\N +628988	gtk	\N +628988	highlight	\N +628988	mediawiki	\N +628988	ppcsha1	\N +628988	python_targets_python2_7	\N +628988	subversion	\N +628988	test	\N +628988	tk	\N +628988	xinetd	\N +628989	gnome-keyring	\N +628989	gpg	\N +628989	nautilus	\N +628990	crypt	\N +628990	doc	\N +628990	kerberos	\N +628990	nls	\N +628990	pam	\N +628990	server	\N +628991	doc	\N +628993	python_targets_python2_7	\N +628995	doc	\N +628995	python_targets_python2_7	\N +628996	assistant	true +628996	cryptohash	true +628996	dbus	true +628996	desktop-notify	true +628996	dns	true +628996	feed	true +628996	inotify	true +628996	pairing	true +628996	production	true +628996	quvi	true +628996	s3	true +628996	tahoe	true +628996	tdfa	true +628996	testsuite	true +628996	webapp	true +628996	webapp-secure	true +628996	webdav	true +628996	xmpp	true +628996	android	\N +628996	androidsplice	\N +628996	doc	\N +628996	ekg	\N +629000	python_targets_python2_7	\N +629000	python_targets_python3_3	\N +629000	python_targets_python3_4	\N +629001	assistant	true +629001	dbus	true +629001	desktop-notify	true +629001	dns	true +629001	feed	true +629001	inotify	true +629001	pairing	true +629001	production	true +629001	quvi	true +629001	s3	true +629001	tahoe	true +629001	tdfa	true +629001	testsuite	true +629001	webapp	true +629001	webapp-secure	true +629001	webdav	true +629001	xmpp	true +629001	android	\N +629001	androidsplice	\N +629001	asciiprogress	\N +629001	doc	\N +629001	ekg	\N +629001	torrentparser	\N +629002	dso	true +629002	http	true +629002	apache2	\N +629002	berkdb	\N +629002	ctypes-python	\N +629002	debug	\N +629002	doc	\N +629002	elibc_FreeBSD	\N +629002	extras	\N +629002	gnome-keyring	\N +629002	java	\N +629002	kde	\N +629002	nls	\N +629002	perl	\N +629002	python	\N +629002	python_targets_python2_7	\N +629002	ruby	\N +629002	sasl	\N +629002	test	\N +629002	vim-syntax	\N +629004	selinux	\N +629004	tools	\N +629004	vim-syntax	\N +629005	crypt	\N +629005	doc	\N +629005	kerberos	\N +629005	nls	\N +629005	pam	\N +629005	server	\N +629007	blksha1	true +629007	curl	true +629007	gpg	true +629007	iconv	true +629007	nls	true +629007	pcre	true +629007	perl	true +629007	python	true +629007	threads	true +629007	webdav	true +629007	cgi	\N +629007	cvs	\N +629007	doc	\N +629007	emacs	\N +629007	gnome-keyring	\N +629007	gtk	\N +629007	highlight	\N +629007	mediawiki	\N +629007	ppcsha1	\N +629007	python_targets_python2_7	\N +629007	subversion	\N +629007	test	\N +629007	tk	\N +629007	xinetd	\N +629008	test	\N +629008	valgrind	\N +629010	contrib	\N +629010	vim-syntax	\N +629012	doc	\N +629014	python_targets_python2_7	\N +629017	python_targets_python2_7	\N +629018	doc	\N +629018	elibc_FreeBSD	\N +629018	ruby_targets_ruby19	\N +629018	ruby_targets_ruby20	\N +629018	ruby_targets_ruby21	\N +629018	test	\N +629019	assistant	true +629019	dbus	true +629019	desktop-notify	true +629019	dns	true +629019	feed	true +629019	inotify	true +629019	pairing	true +629019	production	true +629019	quvi	true +629019	s3	true +629019	tahoe	true +629019	tdfa	true +629019	testsuite	true +629019	webapp	true +629019	webapp-secure	true +629019	webdav	true +629019	xmpp	true +629019	android	\N +629019	androidsplice	\N +629019	doc	\N +629019	ekg	\N +629019	torrentparser	\N +629022	doc	\N +629024	python_targets_python2_7	\N +629027	doc	\N +629028	caja	\N +629028	cli	\N +629028	diff	\N +629028	gedit	\N +629028	git	\N +629028	nautilus	\N +629028	spell	\N +629028	thunar	\N +629030	tools	\N +629030	vim-syntax	\N +629032	doc	\N +629032	hscolour	\N +629032	profile	\N +629032	test	\N +629034	doc	\N +629034	hscolour	\N +629034	profile	\N +629034	test	\N +629036	doc	\N +629036	python_targets_python2_7	\N +629037	doc	\N +629037	emacs	\N +629039	eds	\N +629040	handbook	true +629040	aqua	\N +629040	debug	\N +629040	linguas_cs	\N +629040	linguas_de	\N +629040	linguas_el	\N +629040	linguas_es	\N +629040	linguas_fr	\N +629040	linguas_it	\N +629040	linguas_ja	\N +629040	linguas_lt	\N +629040	linguas_pt_BR	\N +629040	linguas_ro	\N +629040	linguas_ru	\N +629042	doc	\N +629043	doc	\N +629043	hscolour	\N +629043	profile	\N +629043	test	\N +629046	doc	\N +629047	qt4	true +629047	doc	\N +629047	ncurses	\N +629047	python_targets_python2_7	\N +629049	color	true +629049	curl	true +629049	http	true +629049	mmap	true +629049	network-uri	true +629049	optimize	true +629049	terminfo	true +629049	threaded	true +629049	doc	\N +629049	hscolour	\N +629049	profile	\N +629049	static	\N +629049	test	\N +629052	python_targets_python2_7	\N +629052	python_targets_python3_3	\N +629052	python_targets_python3_4	\N +629053	elibc_FreeBSD	\N +629053	ruby_targets_ruby19	\N +629053	ruby_targets_ruby20	\N +629053	ruby_targets_ruby21	\N +629053	test	\N +629054	python	true +629054	debug	\N +629054	glade	\N +629054	python_targets_python3_3	\N +629054	python_targets_python3_4	\N +629055	crypt	\N +629055	doc	\N +629055	emacs	\N +629055	kerberos	\N +629055	nls	\N +629055	pam	\N +629055	server	\N +629056	elibc_FreeBSD	\N +629058	doc	\N +629058	python_targets_python2_7	\N +629059	tcpd	\N +629060	bugzilla	\N +629060	emacs	\N +629060	gpg	\N +629060	python_targets_python2_7	\N +629060	test	\N +629060	tk	\N +629064	doc	\N +629064	python_targets_python2_7	\N +629065	bazaar	\N +629065	git	\N +629065	test	\N +629066	contrib	\N +629066	vim-syntax	\N +629067	assistant	true +629067	cryptohash	true +629067	dbus	true +629067	desktop-notify	true +629067	dns	true +629067	feed	true +629067	inotify	true +629067	pairing	true +629067	production	true +629067	quvi	true +629067	s3	true +629067	tahoe	true +629067	tdfa	true +629067	testsuite	true +629067	webapp	true +629067	webapp-secure	true +629067	webdav	true +629067	xmpp	true +629067	android	\N +629067	androidsplice	\N +629067	doc	\N +629067	ekg	\N +629069	selinux	\N +629069	tools	\N +629069	vim-syntax	\N +629071	crypt	\N +629071	doc	\N +629071	kerberos	\N +629071	nls	\N +629071	pam	\N +629071	server	\N +629073	tools	\N +629073	vim-syntax	\N +629075	dso	true +629075	http	true +629075	apache2	\N +629075	berkdb	\N +629075	ctypes-python	\N +629075	debug	\N +629075	doc	\N +629075	elibc_FreeBSD	\N +629075	extras	\N +629075	gnome-keyring	\N +629075	java	\N +629075	kde	\N +629075	nls	\N +629075	perl	\N +629075	python	\N +629075	python_targets_python2_7	\N +629075	ruby	\N +629075	sasl	\N +629075	test	\N +629075	vim-syntax	\N +629077	tools	\N +629077	vim-syntax	\N +629078	tcpd	\N +629079	python_targets_python2_7	\N +629080	doc	\N +629080	elibc_FreeBSD	\N +629080	source	\N +629080	test	\N +629082	doc	\N +629085	tools	\N +629085	vim-syntax	\N +629087	crypt	\N +629087	doc	\N +629087	kerberos	\N +629087	nls	\N +629087	pam	\N +629087	server	\N +629091	doc	\N +629091	ipv6	\N +629091	nls	\N +629091	test	\N +629094	crypt	\N +629094	doc	\N +629094	kerberos	\N +629094	nls	\N +629094	pam	\N +629094	server	\N +629095	cli	\N +629095	diff	\N +629095	gedit	\N +629095	git	\N +629095	nautilus	\N +629095	spell	\N +629095	thunar	\N +629098	tools	\N +629098	vim-syntax	\N +629100	tools	\N +629100	vim-syntax	\N +629102	python_targets_python2_7	\N +629105	subversion	\N +629107	tools	\N +629107	vim-syntax	\N +629109	doc	\N +629109	python_targets_python2_7	\N +629109	static-libs	\N +629111	tools	\N +629111	vim-syntax	\N +629112	doc	\N +629114	crypt	\N +629114	doc	\N +629114	kerberos	\N +629114	nls	\N +629114	pam	\N +629114	server	\N +629116	python_targets_pypy	\N +629116	python_targets_python2_7	\N +629119	test	\N +629120	test	\N +629121	tools	\N +629121	vim-syntax	\N +629122	color	true +629122	curl	true +629122	http	true +629122	mmap	true +629122	network-uri	true +629122	optimize	true +629122	terminfo	true +629122	threaded	true +629122	doc	\N +629122	hscolour	\N +629122	profile	\N +629122	static	\N +629122	test	\N +629124	tools	\N +629124	vim-syntax	\N +629126	debug	\N +629126	doc	\N +629127	test	\N +629128	python_targets_python2_7	\N +629129	python_targets_python2_7	\N +629133	doc	\N +629133	elibc_FreeBSD	\N +629133	source	\N +629133	test	\N +629135	sftp	true +629135	curl	\N +629135	doc	\N +629135	test	\N +629137	sftp	true +629137	curl	\N +629137	doc	\N +629137	python_targets_python2_7	\N +629137	test	\N +629138	python_targets_python2_7	\N +629143	tools	\N +629143	vim-syntax	\N +629146	python_targets_python2_7	\N +629147	doc	\N +629147	python_targets_python2_7	\N +629148	test	\N +629153	python_targets_python2_7	\N +633845	udev	\N +633848	dso	true +633848	webdav-neon	true +633848	apache2	\N +633848	berkdb	\N +633848	ctypes-python	\N +633848	debug	\N +633848	doc	\N +633848	elibc_FreeBSD	\N +633848	extras	\N +633848	gnome-keyring	\N +633848	java	\N +633848	kde	\N +633848	nls	\N +633848	perl	\N +633848	python	\N +633848	python_targets_python2_7	\N +633848	ruby	\N +633848	sasl	\N +633848	test	\N +633848	vim-syntax	\N +633848	webdav-serf	\N +634223	director	true +634223	sqlite	true +634223	storage-daemon	true +634223	X	\N +634223	acl	\N +634223	cephfs	\N +634223	clientonly	\N +634223	fastlz	\N +634223	glusterfs	\N +634223	ipv6	\N +634223	lmdb	\N +634223	logwatch	\N +634223	mysql	\N +634223	ndmp	\N +634223	postgres	\N +634223	python	\N +634223	python_targets_python2_7	\N +634223	qt4	\N +634223	rados	\N +634223	readline	\N +634223	scsi-crypto	\N +634223	sql-pooling	\N +634223	ssl	\N +634223	static	\N +634223	tcpd	\N +634223	vim-syntax	\N +634225	assistant	true +634225	database	true +634225	dbus	true +634225	desktopnotify	true +634225	dns	true +634225	feed	true +634225	inotify	true +634225	network-uri	true +634225	pairing	true +634225	quvi	true +634225	s3	true +634225	tahoe	true +634225	tdfa	true +634225	torrentparser	true +634225	webapp	true +634225	webapp-secure	true +634225	webdav	true +634225	xmpp	true +634225	asciiprogress	\N +634225	doc	\N +634225	ekg	\N +634265	gui	true +634265	gnome	\N +634265	kde	\N +634265	udev	\N +634335	usb	true +634335	twinserial	\N +634336	bindist	\N +634349	openssl	true +634349	debug	\N +634349	polarssl	\N +634656	X	\N +634656	debug	\N +634658	python_targets_python2_7	\N +634658	python_targets_python3_3	\N +634658	python_targets_python3_4	\N +652935	dialogs	true +652935	gtk	true +652935	xpi	true +652953	acl	\N +652953	afs	\N +652953	ipv6	\N +652953	nls	\N +652953	tcpd	\N +652953	xattr	\N +652957	unicode	\N +652998	kernel_linux	\N +653586	ocamlopt	true +653586	debug	\N +653586	doc	\N +653586	examples	\N +653687	xattr	true +653688	python_targets_python2_7	\N +653812	elibc_FreeBSD	\N +653833	btrfs	true +653833	ext4	\N +653833	lvm	\N +653833	pam	\N +653833	xattr	\N +653867	crypt	true +653867	introspection	true +653867	debug	\N +653867	test	\N +653867	vala	\N +654033	dso	true +654033	http	true +654033	apache2	\N +654033	berkdb	\N +654033	ctypes-python	\N +654033	debug	\N +654033	doc	\N +654033	elibc_FreeBSD	\N +654033	extras	\N +654033	gnome-keyring	\N +654033	java	\N +654033	kde	\N +654033	nls	\N +654033	perl	\N +654033	python	\N +654033	python_targets_python2_7	\N +654033	ruby	\N +654033	sasl	\N +654033	test	\N +654033	vim-syntax	\N +654084	X	\N +654084	dbus	\N +654085	sqlite	true +654085	X	\N +654085	acl	\N +654085	bacula-clientonly	\N +654085	bacula-nodir	\N +654085	bacula-nosd	\N +654085	examples	\N +654085	ipv6	\N +654085	logwatch	\N +654085	mysql	\N +654085	postgres	\N +654085	qt4	\N +654085	readline	\N +654085	ssl	\N +654085	static	\N +654085	tcpd	\N +654085	vim-syntax	\N +654491	gui	true +654491	gnome	\N +654491	kde	\N +654491	udev	\N +654757	common-lisp	\N +654757	static-libs	\N +654758	linguas_ar	\N +654758	linguas_cs	\N +654758	linguas_de	\N +654758	linguas_es	\N +654758	linguas_fr	\N +654758	linguas_ja	\N +654758	linguas_nl	\N +654758	linguas_pl	\N +654758	linguas_pt_BR	\N +654758	linguas_ru	\N +654758	linguas_sv	\N +654758	linguas_tr	\N +654758	linguas_zh_TW	\N +654758	nls	\N +654839	bzip2	\N +654839	doc	\N +654839	ldap	\N +654839	mta	\N +654839	nls	\N +654839	readline	\N +654839	selinux	\N +654839	smartcard	\N +654839	static	\N +654839	tools	\N +654839	usb	\N +654840	gnutls	true +654840	bzip2	\N +654840	doc	\N +654840	ldap	\N +654840	nls	\N +654840	readline	\N +654840	selinux	\N +654840	smartcard	\N +654840	static	\N +654840	tools	\N +654840	usb	\N +655018	examples	\N +655019	ocamlopt	true +655019	debug	\N +655019	doc	\N +655019	test	\N +655020	examples	\N +655021	ocamlopt	true +655021	debug	\N +655028	kernel_linux	\N +655028	static-libs	\N +655028	systemd	\N +655035	director	true +655035	sqlite	true +655035	storage-daemon	true +655035	X	\N +655035	acl	\N +655035	cephfs	\N +655035	clientonly	\N +655035	fastlz	\N +655035	glusterfs	\N +655035	ipv6	\N +655035	lmdb	\N +655035	logwatch	\N +655035	mysql	\N +655035	ndmp	\N +655035	postgres	\N +655035	python	\N +655035	python_targets_python2_7	\N +655035	qt4	\N +655035	rados	\N +655035	readline	\N +655035	scsi-crypto	\N +655035	sql-pooling	\N +655035	ssl	\N +655035	static	\N +655035	tcpd	\N +655035	vim-syntax	\N +655036	python_targets_python2_7	\N +655036	s3	\N +655036	test	\N +655037	director	true +655037	sqlite	true +655037	storage-daemon	true +655037	X	\N +655037	acl	\N +655037	cephfs	\N +655037	clientonly	\N +655037	fastlz	\N +655037	glusterfs	\N +655037	gnutls	\N +655037	ipv6	\N +655037	jansson	\N +655037	lmdb	\N +655037	logwatch	\N +655037	mysql	\N +655037	ndmp	\N +655037	postgres	\N +655037	python	\N +655037	python_targets_python2_7	\N +655037	qt4	\N +655037	rados	\N +655037	rados-striper	\N +655037	readline	\N +655037	scsi-crypto	\N +655037	sql-pooling	\N +655037	ssl	\N +655037	static	\N +655037	tcpd	\N +655037	vim-syntax	\N +655039	doc	\N +655039	python_single_target_python2_7	\N +655039	python_single_target_python3_3	\N +655039	python_single_target_python3_4	\N +655039	python_targets_python2_7	\N +655039	python_targets_python3_3	\N +655039	python_targets_python3_4	\N +655039	test	\N +655076	python_targets_python2_7	\N +655228	htcp	true +655228	wccp	true +655228	wccpv2	true +655228	caps	\N +655228	ecap	\N +655228	elibc_uclibc	\N +655228	esi	\N +655228	ipf-transparent	\N +655228	ipv6	\N +655228	kerberos	\N +655228	kernel_linux	\N +655228	kqueue	\N +655228	ldap	\N +655228	logrotate	\N +655228	mysql	\N +655228	nis	\N +655228	pam	\N +655228	pf-transparent	\N +655228	postgres	\N +655228	qos	\N +655228	radius	\N +655228	samba	\N +655228	sasl	\N +655228	selinux	\N +655228	snmp	\N +655228	sqlite	\N +655228	ssl	\N +655228	ssl-crtd	\N +655228	test	\N +655228	tproxy	\N +655307	python_targets_python2_7	\N +655338	ocamlopt	true +655338	debug	\N +655338	doc	\N +655338	test	\N +655339	ocamlopt	true +655339	debug	\N +655340	ocamlopt	true +655340	debug	\N +655340	doc	\N +655340	test	\N +655341	ocamlopt	true +655341	debug	\N +655341	doc	\N +655341	test	\N +655342	ocamlopt	true +655342	debug	\N +655343	ocamlopt	true +655343	debug	\N +655344	ocamlopt	true +655344	debug	\N +655345	ocamlopt	true +655345	debug	\N +655345	doc	\N +655346	ocamlopt	true +655346	debug	\N +655347	ocamlopt	true +655347	debug	\N +655349	ocamlopt	true +655349	debug	\N +655349	doc	\N +655349	test	\N +655350	ocamlopt	true +655350	debug	\N +655350	doc	\N +655351	ocamlopt	true +655351	doc	\N +655352	ocamlopt	true +655352	debug	\N +655352	doc	\N +655353	ocamlopt	true +655353	debug	\N +655353	doc	\N +655353	test	\N +655354	ocamlopt	true +655354	debug	\N +655355	ocamlopt	true +655355	debug	\N +655356	ocamlopt	true +655356	debug	\N +655357	ocamlopt	true +655357	debug	\N +655357	doc	\N +655358	ocamlopt	true +655358	debug	\N +655359	ocamlopt	true +655359	debug	\N +655359	doc	\N +655359	test	\N +655360	ocamlopt	true +655360	debug	\N +655360	doc	\N +655360	examples	\N +655360	test	\N +655361	ocamlopt	true +655361	debug	\N +655361	doc	\N +655362	ocamlopt	true +655362	debug	\N +655362	doc	\N +655363	ocamlopt	true +655363	debug	\N +655363	doc	\N +655363	test	\N +655391	python_targets_python2_7	\N +655391	test	\N +655427	ocamlopt	true +655428	examples	\N +655710	htcp	true +655710	wccp	true +655710	wccpv2	true +655710	caps	\N +655710	ecap	\N +655710	elibc_uclibc	\N +655710	esi	\N +655710	ipf-transparent	\N +655710	ipv6	\N +655710	kerberos	\N +655710	kernel_linux	\N +655710	kqueue	\N +655710	ldap	\N +655710	logrotate	\N +655710	mysql	\N +655710	nis	\N +655710	pam	\N +655710	pf-transparent	\N +655710	postgres	\N +655710	qos	\N +655710	radius	\N +655710	samba	\N +655710	sasl	\N +655710	selinux	\N +655710	snmp	\N +655710	sqlite	\N +655710	ssl	\N +655710	ssl-crtd	\N +655710	test	\N +655710	tproxy	\N +656582	dso	true +656582	http	true +656582	apache2	\N +656582	berkdb	\N +656582	ctypes-python	\N +656582	debug	\N +656582	doc	\N +656582	elibc_FreeBSD	\N +656582	extras	\N +656582	gnome-keyring	\N +656582	java	\N +656582	kde	\N +656582	nls	\N +656582	perl	\N +656582	python	\N +656582	python_targets_python2_7	\N +656582	ruby	\N +656582	sasl	\N +656582	test	\N +656582	vim-syntax	\N +656780	caps	\N +656780	emacs	\N +656780	gnome-keyring	\N +656780	gtk	\N +656780	ncurses	\N +656780	qt4	\N +656780	static	\N +657023	ocamlopt	true +657023	debug	\N +657023	doc	\N +657032	caps	\N +657032	emacs	\N +657032	gnome-keyring	\N +657032	gtk	\N +657032	ncurses	\N +657032	qt4	\N +657032	qt5	\N +657032	static	\N +657146	ldap	\N +657150	doc	\N +657150	elibc_FreeBSD	\N +657150	source	\N +657150	test	\N +657282	bugzilla	\N +657282	emacs	\N +657282	gpg	\N +657282	python_targets_python2_7	\N +657282	test	\N +657282	tk	\N +657432	doc	\N +657432	libressl	\N +657432	selinux	\N +657486	bindist	\N +657487	kernel_linux	\N +657508	blksha1	true +657508	curl	true +657508	gpg	true +657508	iconv	true +657508	nls	true +657508	pcre	true +657508	perl	true +657508	python	true +657508	threads	true +657508	webdav	true +657508	cgi	\N +657508	cvs	\N +657508	doc	\N +657508	emacs	\N +657508	gnome-keyring	\N +657508	gtk	\N +657508	highlight	\N +657508	mediawiki	\N +657508	ppcsha1	\N +657508	python_targets_python2_7	\N +657508	subversion	\N +657508	test	\N +657508	tk	\N +657508	xinetd	\N +657509	blksha1	true +657509	curl	true +657509	gpg	true +657509	iconv	true +657509	nls	true +657509	pcre	true +657509	perl	true +657509	python	true +657509	threads	true +657509	webdav	true +657509	cgi	\N +657509	cvs	\N +657509	doc	\N +657509	emacs	\N +657509	gnome-keyring	\N +657509	gtk	\N +657509	highlight	\N +657509	libressl	\N +657509	mediawiki	\N +657509	ppcsha1	\N +657509	python_targets_python2_7	\N +657509	subversion	\N +657509	test	\N +657509	tk	\N +657509	xinetd	\N +657594	doc	\N +657594	python_targets_python2_7	\N +657691	openssl	true +657691	qt4	true +657691	botan	\N +657691	debug	\N +657691	doc	\N +657691	examples	\N +657691	gcrypt	\N +657691	gpg	\N +657691	libressl	\N +657691	logger	\N +657691	nss	\N +657691	pkcs11	\N +657691	qt5	\N +657691	sasl	\N +657691	softstore	\N +657691	test	\N +657711	static-libs	\N +657740	static	\N +657740	smartcard	\N +657740	doc	\N +657740	gnutls	true +657740	bzip2	\N +657740	tools	\N +657740	nls	\N +657740	ldap	\N +657740	usb	\N +657740	selinux	\N +657740	readline	\N +657848	bindist	\N +659908	curl	true +657930	python_targets_python2_7	\N +659908	webdav	true +657930	test	\N +658057	ocamlopt	true +658057	doc	\N +658228	sasl	\N +658228	esi	\N +658228	kerberos	\N +658228	kernel_linux	\N +658228	htcp	true +658228	radius	\N +658228	test	\N +658228	caps	\N +658228	elibc_uclibc	\N +658228	mysql	\N +658228	samba	\N +658228	sqlite	\N +658228	selinux	\N +658228	snmp	\N +658228	wccp	true +658228	pf-transparent	\N +658228	ecap	\N +658228	qos	\N +658228	ipf-transparent	\N +658228	pam	\N +658228	ssl-crtd	\N +658228	kqueue	\N +658228	ldap	\N +658228	nis	\N +658228	wccpv2	true +658228	ssl	\N +658228	ipv6	\N +658228	logrotate	\N +658228	postgres	\N +658228	tproxy	\N +658322	examples	\N +658322	ocamlopt	true +658447	python_targets_python2_7	\N +658447	test	\N +658511	xinetd	\N +658492	ounit	true +658511	pcre	true +658511	highlight	\N +658511	tk	\N +658511	perl	true +658511	ppcsha1	\N +658511	subversion	\N +658492	debug	\N +658492	doc	\N +658511	nls	true +658511	cvs	\N +658511	gtk	\N +658511	emacs	\N +658511	test	\N +658511	libressl	\N +658511	doc	\N +658511	curl	true +658511	python_targets_python2_7	\N +658511	python	true +658492	ocamlopt	true +658511	gpg	true +658511	iconv	true +658511	gnome-keyring	\N +658511	cgi	\N +658511	mediawiki	\N +658511	blksha1	true +658511	threads	true +658511	webdav	true +658605	test	\N +658604	test	\N +658605	allservices	\N +658605	debug	\N +658605	doc	\N +658604	debug	\N +658606	ocamlopt	true +658601	debug	\N +658601	test	\N +658602	doc	\N +658607	doc	\N +658607	debug	\N +658607	test	\N +658603	ocamlopt	true +658606	test	\N +658606	debug	\N +658604	ocamlopt	true +658605	ocamlopt	true +658601	ocamlopt	true +658603	test	\N +658602	ocamlopt	true +658607	ocamlopt	true +658603	debug	\N +658602	mpir	\N +658662	ocamlopt	true +658673	ruby_targets_ruby19	\N +658661	ocamlopt	true +658660	ocamlopt	true +658662	async	\N +658673	elibc_FreeBSD	\N +658662	test	\N +658662	doc	\N +658662	debug	\N +658673	ruby_targets_ruby20	\N +658662	lwt	true +658660	debug	\N +658660	doc	\N +658661	debug	\N +658661	doc	\N +658660	test	\N +658661	test	\N +658673	test	\N +658661	lwt	true +658661	camlp4	true +658673	doc	\N +658673	ruby_targets_ruby21	\N +658661	async	\N +658822	python_targets_python2_7	\N +659072	doc	\N +659072	static-libs	\N +659072	python_targets_python2_7	\N +659186	linguas_pl	\N +659153	ocamlopt	true +659186	linguas_es	\N +659187	examples	\N +659187	net_ns	\N +659186	linguas_fr	\N +659154	doc	\N +659187	doc	\N +659186	hsm	\N +659186	linguas_zh_TW	\N +659186	linguas_ja	\N +659187	ssl	\N +659187	zlib	true +659186	linguas_ru	\N +659186	linguas_de	\N +659154	tk	\N +659187	tools	\N +659186	linguas_hu	\N +659187	pcre-jit	\N +659186	linguas_ko	\N +659187	pcre	true +659187	crypt	true +659186	linguas_cs	\N +659187	vim-syntax	\N +659154	ocamlopt	true +659186	linguas_it	\N +659186	linguas_pt	\N +659153	examples	\N +659186	linguas_zh	\N +659277	gnome-keyring	\N +659277	static	\N +659277	qt4	\N +659277	emacs	\N +659277	caps	\N +659277	qt5	\N +659277	gtk	\N +659277	ncurses	\N +659375	doc	\N +659369	keyutils	true +659369	abi_mips_n64	\N +659369	selinux	\N +659369	openldap	\N +659369	xinetd	\N +659369	threads	true +659369	abi_s390_32	\N +659369	abi_ppc_64	\N +659375	python_targets_python2_7	\N +659369	abi_x86_64	\N +659369	abi_x86_x32	\N +659369	pkinit	true +659369	abi_ppc_32	\N +659369	abi_mips_o32	\N +659369	doc	\N +659369	libressl	\N +659369	test	\N +659369	abi_s390_64	\N +659369	abi_mips_n32	\N +659369	abi_x86_32	\N +659411	ocamlopt	true +659410	examples	\N +659411	examples	\N +659510	examples	\N +659510	ocamlopt	true +659582	test	\N +659709	openldap	\N +659709	threads	true +659709	keyutils	true +659709	abi_mips_n64	\N +659709	selinux	\N +659709	abi_x86_64	\N +659709	abi_ppc_64	\N +659709	doc	\N +659709	libressl	\N +659709	test	\N +659709	abi_x86_x32	\N +659709	abi_ppc_32	\N +659709	pkinit	true +659709	abi_mips_o32	\N +659709	abi_mips_n32	\N +659709	abi_x86_32	\N +659709	abi_s390_64	\N +659709	xinetd	\N +659709	abi_s390_32	\N +659819	camlp4	\N +659817	doc	\N +659819	ocamlopt	true +659817	mpir	\N +659818	ocamlopt	true +659817	ocamlopt	true +659819	debug	\N +659819	doc	\N +659819	emacs	\N +659818	examples	\N +659908	python	true +659908	cgi	\N +659908	gpg	true +659864	ocamlopt	true +659908	iconv	true +659908	doc	\N +659908	emacs	\N +659908	test	\N +659908	libressl	\N +659908	tk	\N +659908	perl	true +659908	nls	true +659864	test	\N +659908	cvs	\N +659908	gtk	\N +659864	doc	\N +659864	debug	\N +659908	subversion	\N +659908	ppcsha1	\N +659908	mediawiki	\N +659908	blksha1	true +659908	xinetd	\N +659908	threads	true +659908	highlight	\N +659908	pcre	true +659908	python_targets_python2_7	\N +659908	gnome-keyring	\N +660215	java	\N +660222	gpg	\N +660218	tools	\N +660220	mysql	\N +660216	linguas_cs	\N +660218	pcre-jit	\N +660218	ssl	\N +660222	bugzilla	\N +660220	elibc_uclibc	\N +660216	linguas_it	\N +660218	zlib	true +660219	ssl	\N +660213	python_single_target_python3_3	\N +660216	linguas_pt	\N +660214	linguas_es	\N +660214	linguas_pl	\N +660220	caps	\N +660218	vim-syntax	\N +660216	linguas_zh_TW	\N +660216	linguas_ja	\N +660216	tsm_cit	true +660213	python_targets_python3_4	\N +660220	test	\N +660220	radius	\N +660214	java	\N +660217	java	\N +660215	acl	\N +660220	htcp	true +660220	kernel_linux	\N +660219	vim-syntax	\N +660216	linguas_de	\N +660220	kerberos	\N +660215	linguas_fr	\N +660216	linguas_ru	\N +660214	linguas_zh	\N +660218	pcre	true +660213	python_targets_python3_3	\N +660219	crypt	true +660216	tsm_hw	true +660222	tk	\N +660216	linguas_hu	\N +660218	crypt	true +660215	linguas_es	\N +660219	pcre	true +660215	linguas_pl	\N +660213	qt4	\N +660220	sasl	\N +660220	tproxy	\N +660216	linguas_ko	\N +660220	esi	\N +660216	linguas_es	\N +660216	linguas_pl	\N +660215	linguas_ko	\N +660214	linguas_pt	\N +660221	python_targets_python2_7	\N +660214	linguas_it	\N +660220	postgres	\N +660215	linguas_hu	\N +660215	tsm_hw	true +660220	logrotate	\N +660220	ipv6	\N +660216	acl	\N +660220	ssl	\N +660215	linguas_de	\N +660216	linguas_fr	\N +660220	nis	\N +660220	wccpv2	true +660214	linguas_cs	\N +660215	linguas_ru	\N +660215	linguas_ja	\N +660215	linguas_zh_TW	\N +660220	kqueue	\N +660215	tsm_cit	true +660220	ldap	\N +660222	test	\N +660222	emacs	\N +660220	ssl-crtd	\N +660220	pam	\N +660220	ipf-transparent	\N +660220	qos	\N +660214	linguas_ko	\N +660215	linguas_pt	\N +660219	doc	\N +660217	tsm_hw	true +660213	python_single_target_python3_4	\N +660214	linguas_hu	\N +660214	tsm_hw	true +660220	ecap	\N +660221	doc	\N +660220	pf-transparent	\N +660215	linguas_it	\N +660217	tsm_cit	true +660214	linguas_de	\N +660220	wccp	true +660215	linguas_cs	\N +660216	linguas_zh	\N +660214	linguas_ru	\N +660220	selinux	\N +660220	snmp	\N +660219	net_ns	\N +660218	examples	\N +660222	python_targets_python2_7	\N +660216	java	\N +660214	linguas_ja	\N +660214	linguas_zh_TW	\N +660219	examples	\N +660214	tsm_cit	true +660219	pcre-jit	\N +660217	acl	\N +660220	sqlite	\N +660214	linguas_fr	\N +660220	samba	\N +660215	linguas_zh	\N +660219	tools	\N +660214	acl	\N +660219	zlib	true +660295	python_single_target_python3_4	\N +660295	python_single_target_python2_7	\N +660295	python_targets_python3_3	\N +660295	test	\N +660295	doc	\N +660295	python_targets_python3_4	\N +660295	python_targets_python2_7	\N +660295	python_single_target_python3_3	\N +679113	ocamlopt	true +679041	gtk	true +679113	mpir	\N +679041	xpi	true +679113	doc	\N +679041	dialogs	true +679154	examples	\N +679154	ocamlopt	true +679406	ldap	\N +679405	test	\N +679405	vala	\N +679406	debug	\N +679405	gtk	\N +679406	zeroconf	\N +679405	introspection	true +679405	debug	\N +679604	glade	\N +679604	python_targets_python3_4	\N +679604	python	true +679604	python_targets_python3_3	\N +679604	debug	\N +679699	selinux	\N +679700	tools	\N +679699	vim-syntax	\N +679700	selinux	\N +679701	vim-syntax	\N +679700	vim-syntax	\N +679701	selinux	\N +679699	tools	\N +679701	tools	\N +680048	test	\N +680048	doc	\N +680048	abi_mips_o32	\N +680048	abi_x86_x32	\N +680048	abi_ppc_32	\N +680048	pkinit	true +680048	abi_x86_32	\N +680049	doc	\N +680048	abi_mips_n32	\N +680048	abi_s390_64	\N +680048	abi_s390_32	\N +680048	threads	true +680048	xinetd	\N +680048	openldap	\N +680048	abi_mips_n64	\N +680048	keyutils	true +680048	selinux	\N +680048	abi_x86_64	\N +680048	abi_ppc_64	\N +680048	libressl	\N +680204	selinux	\N +680204	mta	\N +680204	usb	\N +680203	usb	\N +680204	ldap	\N +680203	ldap	\N +680204	nls	\N +680203	tools	\N +680203	nls	\N +680204	tools	\N +680204	bzip2	\N +680203	gnutls	true +680203	bzip2	\N +680228	doc	\N +680204	doc	\N +680203	smartcard	\N +680203	doc	\N +680204	smartcard	\N +680203	static	\N +680204	static	\N +680204	readline	\N +680228	python_targets_python2_7	\N +680203	readline	\N +680203	selinux	\N +680266	rados	\N +680266	python_targets_python2_7	\N +680266	logwatch	\N +680266	mysql	\N +680266	readline	\N +680266	sql-pooling	\N +680266	acl	\N +680266	X	\N +680251	debug	\N +680266	fastlz	\N +680251	doc	\N +680251	test	\N +680266	lmdb	\N +680266	qt4	\N +680266	scsi-crypto	\N +680266	director	true +680266	ipv6	\N +680266	python	\N +680266	ssl	\N +680250	doc	\N +680266	rados-striper	\N +680266	storage-daemon	true +680266	clientonly	\N +680266	postgres	\N +680266	cephfs	\N +680251	ocamlopt	true +680266	sqlite	true +680266	gnutls	\N +680266	glusterfs	\N +680266	tcpd	\N +680266	vim-syntax	\N +680266	static	\N +680266	ndmp	\N +680266	jansson	\N +680325	ocamlopt	true +680325	lwt	true +680325	test	\N +680325	doc	\N +680325	debug	\N +680325	async	\N +680387	python_targets_python3_5	\N +680387	test	\N +680387	python_targets_python2_7	\N +680479	python_targets_python2_7	\N +680478	python_targets_python2_7	\N +680480	python_targets_python2_7	\N +680602	test	\N +680613	pam	\N +680613	ipf-transparent	\N +680600	python_targets_python2_7	\N +680613	kqueue	\N +680602	python_targets_python3_4	\N +680613	ldap	\N +680613	ssl	\N +680613	nis	\N +680613	wccpv2	true +680613	ipv6	\N +680613	pf-transparent	\N +680602	python_targets_python2_7	\N +680613	ecap	\N +680613	qos	\N +680617	emacs	\N +680617	test	\N +680600	test	\N +680613	wccp	true +680613	selinux	\N +680613	snmp	\N +680613	samba	\N +680613	mysql	\N +680613	sqlite	\N +680613	elibc_uclibc	\N +680617	tk	\N +680613	kerberos	\N +680613	htcp	true +680613	kernel_linux	\N +680613	test	\N +680613	radius	\N +680617	gpg	\N +680613	caps	\N +680613	tproxy	\N +680613	sasl	\N +680613	esi	\N +680617	bugzilla	\N +680602	python_targets_python3_5	\N +680613	logrotate	\N +680613	postgres	\N +680613	ssl-crtd	\N +680617	python_targets_python2_7	\N +680942	python_targets_python2_7	\N +680921	python_targets_python3_4	\N +680921	test	\N +680922	libressl	\N +680921	python_targets_python3_5	\N +680921	python_targets_python2_7	\N diff --git a/gentoobrowse-api/unittests/testMaintenance.cpp b/gentoobrowse-api/unittests/testMaintenance.cpp index e10e7b6..64eef6c 100644 --- a/gentoobrowse-api/unittests/testMaintenance.cpp +++ b/gentoobrowse-api/unittests/testMaintenance.cpp @@ -8,6 +8,7 @@  #include <git2.h>  #include <fstream>  #include <maintenanceimpl.h> +#include <portageimpl.h>  class MaintenanceClientCombined : public Maintenance, public TestClient { }; @@ -148,6 +149,10 @@ class MockPool : public IceTray::DatabasePool {  		}  }; +#define BOOST_TEST_CONTEXT_VAR(VAR, EXPR) \ +	BOOST_TEST_CONTEXT(#EXPR) \ +		for (auto VAR = EXPR, * __context__run = &VAR; __context__run; __context__run = NULL) +  BOOST_AUTO_TEST_CASE( refreshPackageTree )  {  	auto db = DB::ConnectionPtr(DB::MockDatabase::openConnectionTo("GentooBrowseAPI")); @@ -168,6 +173,36 @@ BOOST_AUTO_TEST_CASE( refreshPackageTree )  		m2.applyDiffOfFolders(binDir / "empty", rootDir / "fixtures" / "4156eb45cf3b0ce1d7125b84efd8688c2d6e831d");  		doRefreshPackageTree(db,  				5, 1, 482, 981, 3626, 4593, 501, 393, 238, 50, 1573, 2008, 1543, 81, 152, 7); + +		Gentoo::PortagePtr portage = new Gentoo::Service::Portage(p); +		BOOST_TEST_CONTEXT_VAR(acjtr, portage->findPackage("app-crypt", "johntheripper", Ice::Current())) { +			BOOST_TEST_CONTEXT_VAR(acjtrUses, portage->getPackageUses(acjtr->packageid, Ice::Current())) { +				BOOST_REQUIRE_EQUAL(9, acjtrUses.size()); +				BOOST_REQUIRE_EQUAL("custom-cflags", acjtrUses[1]->use); +				BOOST_REQUIRE(!acjtrUses[1]->defaultflag); +				BOOST_REQUIRE(!acjtrUses[1]->isdefault); +				BOOST_REQUIRE_EQUAL("minimal", acjtrUses[2]->use); +				BOOST_REQUIRE(acjtrUses[2]->defaultflag); +				BOOST_REQUIRE(!*acjtrUses[2]->defaultflag); +				BOOST_REQUIRE(!acjtrUses[2]->isdefault); +				BOOST_REQUIRE(!acjtrUses[2]->group); +				BOOST_REQUIRE_EQUAL("mmx", acjtrUses[7]->use); +				BOOST_REQUIRE(acjtrUses[7]->group); +				BOOST_REQUIRE_EQUAL("cpu_flags_x86", *acjtrUses[7]->group); +			} +		} +		BOOST_TEST_CONTEXT_VAR(nms, portage->findPackage("net-proxy", "squid", Ice::Current())) { +			BOOST_TEST_CONTEXT_VAR(nmsUses, portage->getPackageUses(nms->packageid, Ice::Current())) { +				BOOST_REQUIRE_EQUAL(30, nmsUses.size()); +				BOOST_REQUIRE_EQUAL("caps", nmsUses[0]->use); +				BOOST_REQUIRE(!nmsUses[0]->defaultflag); +				BOOST_REQUIRE(!nmsUses[0]->isdefault); +				BOOST_REQUIRE_EQUAL("htcp", nmsUses[3]->use); +				BOOST_REQUIRE(nmsUses[3]->defaultflag); +				BOOST_REQUIRE(*nmsUses[3]->defaultflag); +				BOOST_REQUIRE(nmsUses[3]->isdefault); +			} +		}  	}  	BOOST_TEST_CONTEXT("756569aa764177340726dd3d40b41d89b11b20c7") { diff --git a/gentoobrowse-api/unittests/testPortage.cpp b/gentoobrowse-api/unittests/testPortage.cpp index 149949f..81d7320 100644 --- a/gentoobrowse-api/unittests/testPortage.cpp +++ b/gentoobrowse-api/unittests/testPortage.cpp @@ -469,9 +469,9 @@ BOOST_AUTO_TEST_CASE( getUseUsage )  BOOST_AUTO_TEST_CASE( getUsePackages )  {  	auto ps = p->getUsePackages("usb"); -	BOOST_REQUIRE_EQUAL(2, ps.size()); -	BOOST_REQUIRE_EQUAL(55373, ps.front()->packageid); -	BOOST_REQUIRE_EQUAL("ekeyd", ps.front()->name); +	BOOST_REQUIRE_EQUAL(3, ps.size()); +	BOOST_REQUIRE_EQUAL(47703, ps.front()->packageid); +	BOOST_REQUIRE_EQUAL("ccid", ps.front()->name);  	BOOST_REQUIRE_EQUAL(47193, ps.back()->packageid);  	BOOST_REQUIRE_EQUAL("gnupg", ps.back()->name);  } | 
