Merge lp:~stevenk/launchpad/dump-top-level-yui into lp:launchpad

Proposed by Steve Kowalik
Status: Merged
Approved by: William Grant
Approved revision: no longer in the source branch.
Merged at revision: 16572
Proposed branch: lp:~stevenk/launchpad/dump-top-level-yui
Merge into: lp:launchpad
Diff against target: 52 lines (+3/-6)
3 files modified
.bzrignore (+0/-1)
Makefile (+2/-2)
utilities/link-external-sourcecode (+1/-3)
To merge this branch: bzr merge lp:~stevenk/launchpad/dump-top-level-yui
Reviewer Review Type Date Requested Status
William Grant code Approve
Review via email: mp+158837@code.launchpad.net

Commit message

Stop creating the obsolete top-level 'yui' directory.

Description of the change

Dump the now unused for a while top-level 'yui' directory.

To post a comment you must log in.
Revision history for this message
William Grant (wgrant) :
review: Approve (code)
Revision history for this message
William Grant (wgrant) :
review: Approve (code)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file '.bzrignore'
2--- .bzrignore 2012-06-19 13:42:06 +0000
3+++ .bzrignore 2013-04-18 03:01:27 +0000
4@@ -39,7 +39,6 @@
5 *.egg
6 dist
7 ./eggs
8-./yui
9 ./download-cache
10 ./_pythonpath.py
11 ./production-configs
12
13=== modified file 'Makefile'
14--- Makefile 2013-04-11 04:05:38 +0000
15+++ Makefile 2013-04-18 03:01:27 +0000
16@@ -194,7 +194,6 @@
17 # Usually this is linked via link-external-sourcecode, but in
18 # deployment we create this ourselves.
19 mkdir eggs
20- mkdir yui
21
22 buildonce_eggs: $(PY)
23 find eggs -name '*.pyc' -exec rm {} \;
24@@ -344,7 +343,8 @@
25 $(PY) database/schema/fti.py -d launchpad_dev --force
26
27 clean_js:
28- $(RM) -r $(ICING)/yui
29+ $(RM) -r $(JS_BUILD_DIR)
30+ $(RM) -r yui # Remove obsolete top-level directory for now.
31
32 clean_buildout:
33 $(RM) -r build
34
35=== modified file 'utilities/link-external-sourcecode'
36--- utilities/link-external-sourcecode 2012-06-29 08:40:05 +0000
37+++ utilities/link-external-sourcecode 2013-04-18 03:01:27 +0000
38@@ -138,7 +138,7 @@
39 for source, destination in missing_files:
40 link(source, destination)
41
42- for folder_name in ('download-cache', 'eggs', 'yui'):
43+ for folder_name in ('download-cache', 'eggs'):
44 source = abspath(join(options.parent, folder_name))
45 destination = abspath(join(options.target, folder_name))
46 if not exists(destination):
47@@ -148,5 +148,3 @@
48 (source, destination))
49 else:
50 link(source, destination)
51-
52-# End