1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
$ cd ..
$ tree
.
├── debhello-1.8
│ ├── LICENSE
│ ├── MANIFEST.in
│ ├── PKG-INFO
│ ├── debian
│ │ ├── README.Debian
│ │ ├── changelog
│ │ ├── control
│ │ ├── copyright
│ │ ├── patches
│ │ │ └── series
│ │ ├── rules
│ │ ├── source
│ │ │ ├── control
│ │ │ ├── format
│ │ │ ├── local-options
│ │ │ ├── options
│ │ │ └── patch-header
│ │ ├── tests
│ │ │ └── control
│ │ ├── upstream
│ │ │ └── metadata
│ │ └── watch
│ ├── hello_py
│ │ └── __init__.py
│ ├── scripts
│ │ └── hello
│ └── setup.py
├── debhello-1.8.tar.gz
└── debhello_1.8.orig.tar.gz -> debhello-1.8.tar.gz
8 directories, 22 files
|