Merge lp:~chipaca/snappy/reduce-manifest into lp:~snappy-dev/snappy/snappy-moved-to-github
Proposed by
John Lenton
on 2015-05-19
| Status: | Merged |
|---|---|
| Approved by: | Michael Vogt on 2015-05-20 |
| Approved revision: | 466 |
| Merged at revision: | 465 |
| Proposed branch: | lp:~chipaca/snappy/reduce-manifest |
| Merge into: | lp:~snappy-dev/snappy/snappy-moved-to-github |
| Diff against target: |
657 lines (+104/-161) 16 files modified
pkg/types.go (+2/-0) pkg/types_test.go (+2/-0) snappy/build_test.go (+0/-2) snappy/click.go (+29/-42) snappy/click_test.go (+10/-10) snappy/config.go (+1/-1) snappy/datadir.go (+2/-2) snappy/datadir_test.go (+3/-3) snappy/install.go (+1/-1) snappy/install_test.go (+1/-0) snappy/parts.go (+2/-2) snappy/purge.go (+3/-3) snappy/snapp.go (+22/-6) snappy/snapp_test.go (+26/-0) snappy/udev.go (+0/-38) snappy/udev_test.go (+0/-51) |
| To merge this branch: | bzr merge lp:~chipaca/snappy/reduce-manifest |
| Related bugs: |
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| Michael Vogt | 2015-05-19 | Approve on 2015-05-20 | |
|
Review via email:
|
|||
Commit Message
Keep the use of clickManifest to a minimum (use packagYaml instead). Also misc cleanups.
Description of the Change
This cuts down on usage of clickManifest, which is now only used from places that need to read or write to it directly. This means it can be an internal detail.
As a nice side effect, it's now painfully obvious which things should actually be methods on SnapPart: if it gets a packageYaml and a namespace, it should be using a SnapPart instead.
Also: random drive-by cleanups.
To post a comment you must log in.
lp:~chipaca/snappy/reduce-manifest
updated
on 2015-05-19
- 465. By John Lenton on 2015-05-19
-
keep the use of clickManifest to a minimum (use packagYaml instead)
| Michael Vogt (mvo) wrote : | # |
lp:~chipaca/snappy/reduce-manifest
updated
on 2015-05-20
- 466. By John Lenton on 2015-05-20
-
qualifiedName, not dirname. Also renamed tests.


Thanks for the branch and the cleanup, really nice. I added some inline comments/ questions/ kudos.