Changeset 141:c0f48ab79af5
- Timestamp:
- 04/04/07 12:05:54
(2 years ago)
- Author:
- warner@lothar.com
- branch:
- default
- Message:
[foolscap @ add debian packaging support for the ubuntu 'feisty' distribution]
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r105 |
r141 |
|
| 43 | 43 | ^MANIFEST$ |
|---|
| 44 | 44 | ^python-build-stamp-.*$ |
|---|
| 45 | | ^misc/(sid|sarge|dapper)/debian/python-foolscap($|/) |
|---|
| 46 | | ^misc/(sid|sarge|dapper)/debian/python-foolscap\..*$ |
|---|
| 47 | | ^misc/(sid|sarge|dapper)/debian/files$ |
|---|
| | 45 | ^misc/(sid|sarge|dapper|feisty)/debian/python-foolscap($|/) |
|---|
| | 46 | ^misc/(sid|sarge|dapper|feisty)/debian/python-foolscap\..*$ |
|---|
| | 47 | ^misc/(sid|sarge|dapper|feisty)/debian/files$ |
|---|
| r140 |
r141 |
|
| 1 | 1 | 2007-04-04 Brian Warner <warner@lothar.com> |
|---|
| | 2 | |
|---|
| | 3 | * misc/feisty/debian/*: add debian packaging support for the |
|---|
| | 4 | Ubuntu 'feisty' distribution |
|---|
| | 5 | * Makefile: and a way to invoke it |
|---|
| 2 | 6 | |
|---|
| 3 | 7 | * foolscap/test/test_call.py (TestCall.testMegaSchema): add a new |
|---|
| r65 |
r141 |
|
| 1 | 1 | |
|---|
| 2 | | .PHONY: build test debian-sid debian-dapper |
|---|
| | 2 | .PHONY: build test debian-sid debian-dapper debian-feisty debian-sarge |
|---|
| 3 | 3 | |
|---|
| 4 | 4 | build: |
|---|
| … | … | |
| 20 | 20 | debuild -uc -us |
|---|
| 21 | 21 | |
|---|
| | 22 | debian-feisty: |
|---|
| | 23 | rm -f debian |
|---|
| | 24 | ln -s misc/feisty/debian debian |
|---|
| | 25 | chmod a+x debian/rules |
|---|
| | 26 | debuild -uc -us |
|---|
| | 27 | |
|---|
| 22 | 28 | debian-sarge: |
|---|
| 23 | 29 | rm -f debian |
|---|
| … | … | |
| 30 | 36 | lore -p --config template=$(DOC_TEMPLATE) --config ext=.html \ |
|---|
| 31 | 37 | `find doc -name '*.xhtml'` |
|---|
| | 38 | |
|---|