Per the problems caused by b2b_store_solution, described in #1327314: b2b_store_solution AND NOW onepagecv contains/duplicates many standard modules, I'd like to clean up the dependency database to see if we can fix this. The two release nodes for that project are 1294944, 1294950.

DELETE pdd.* FROM project_dependency_dependency pdd, project_dependency_component pdc WHERE pdc.component_id = pdd.component_id AND pdc.release_nid IN (1294944, 1294950);
DELETE pdc.* FROM project_dependency_component pdc WHERE pdc.release_nid in (1294944, 1294950);

I have tested this locally and think it should work OK.

Comments

rfay’s picture

Status: Active » Fixed

I executed these queries on util and they seem to have resolved the issue.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

rfay’s picture

Title: Resolve issues caused by rogue install profile b2b_store_solution » Resolve issues caused by rogue install profile b2b_store_solution and onepagecv
Status: Closed (fixed) » Active

Reopening this for the onepagecv project. Same thing. They include views.

DELETE pdd.* FROM project_dependency_dependency pdd, project_dependency_component pdc WHERE pdc.component_id = pdd.component_id AND pdc.release_nid IN (1325444);
DELETE pdc.* FROM project_dependency_component pdc WHERE pdc.release_nid in (1325444);

Then, to exclude this in the future, have to exclude onepagecv as described in

#1276914-10: Contrib module may be considered a dependency instead of core module of the same name

rfay’s picture

Removing corporative_site, testbot_exercise, opendeals, rulesmonkey:

DELETE pdd.* FROM project_dependency_dependency pdd, project_dependency_component pdc WHERE pdc.component_id = pdd.component_id AND pdc.release_nid IN (1320296, 1332064, 1332090, 1332090, 507282 );
DELETE pdc.* FROM project_dependency_component pdc WHERE pdc.release_nid in (1320296, 1332064, 1332090, 1332090, 507282);
rfay’s picture

Should be permanently resolved (for install profiles anyway) by #1325654: Profiles and themes should be excluded. Leaving this open as it has the record of how to remove this type of project.

rfay’s picture

Did the deletion for http://drupal.org/project/uberpaltw as well.

rfay’s picture

Don't seem to have done corporative_site successfully.

DELETE pdd.* FROM project_dependency_dependency pdd, project_dependency_component pdc WHERE pdc.component_id = pdd.component_id AND pdc.release_nid IN (1306086, 1344436, 1415102, 1425918, 1302258, 1288158);
delete pdc.* from project_dependency_component pdc where pdc.release_nid in (1306086, 1344436, 1415102, 1425918, 1302258, 1288158);
rfay’s picture

Seem to have failed on deleting uberpaltw completely as well.

DELETE pdd.* FROM project_dependency_dependency pdd, project_dependency_component pdc WHERE pdc.component_id = pdd.component_id AND pdc.release_nid IN (1378410);
delete pdc.* from project_dependency_component pdc where pdc.release_nid in (1378410);
rfay’s picture

Status: Active » Fixed

Deployed 6.x-1.0-beta1, which now ignores all install profiles. Could that be the end of this?

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

rfay’s picture

Status: Closed (fixed) » Active

This doesn't seem to be completely resolved, as just showed up with http://drupal.org/project/elms. However, I don't see the issue there any more... could be that they fixed it.

mysql> DELETE pdd.* FROM project_dependency_dependency pdd, project_dependency_component pdc WHERE pdc.component_id = pdd.component_id AND pdc.release_nid IN (1664670, 1664620, 1664606, 1433300);
Query OK, 177 rows affected (0.01 sec)

mysql> delete pdc.* from project_dependency_component pdc where pdc.release_nid in (1664670, 1664620, 1664606, 1433300);
Query OK, 19 rows affected (0.03 sec)