diff options
author | P. J. McDermott <pehjota> | 2014-09-02 20:09:01 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-09-02 20:09:01 (EDT) |
commit | dc23739c31d1fb97af94b44054d69354aec66f58 (patch) | |
tree | 5025be9d57b138433a7405aead7c41d1a0a66c20 /doc | |
parent | 01bcffe0355c84d72eaf64c2249467c22557382a (diff) |
doc/pkg/basic-expat: Fix dist rev in pkg version
Diffstat (limited to 'doc')
-rw-r--r-- | doc/pkg/basic-expat.mdwn | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/pkg/basic-expat.mdwn b/doc/pkg/basic-expat.mdwn index 8fda25e..48b8640 100644 --- a/doc/pkg/basic-expat.mdwn +++ b/doc/pkg/basic-expat.mdwn @@ -734,11 +734,11 @@ source and binary packages and cleaning up automatically when we're done. After that finishes, you should see the built packages in the parent directory. $ ls -1 ../*.opk - ../libexpat.1_2.1.0-2_amd64-linux-glibc_all.opk - ../libexpat.1-dev_2.1.0-2_amd64-linux-glibc_all.opk - ../src-expat_2.1.0-2_src_all.opk - ../xmlwf_2.1.0-2_amd64-linux-glibc_all.opk - ../xmlwf-doc_2.1.0-2_all_all.opk + ../libexpat.1_2.1.0-1_amd64-linux-glibc_all.opk + ../libexpat.1-dev_2.1.0-1_amd64-linux-glibc_all.opk + ../src-expat_2.1.0-1_src_all.opk + ../xmlwf_2.1.0-1_amd64-linux-glibc_all.opk + ../xmlwf-doc_2.1.0-1_all_all.opk `src-expat` is a *source binary package* – a binary package installable with the package manager that provides the files in our source package. This binary @@ -748,10 +748,10 @@ You can use the **tar**(1) command to verify that the control information and data files in packages look correct. $ tar -xzO control.tar.gz \ - > <../libexpat.1_2.1.0-2_amd64-linux-glibc_all.opk | tar -xzO ./control + > <../libexpat.1_2.1.0-1_amd64-linux-glibc_all.opk | tar -xzO ./control Package: libexpat.1 Source: expat - Version: 2.1.0-2 + Version: 2.1.0-1 Architecture: amd64-linux-glibc Platform: all Maintainer: "J. Random Hacker" <jrandom@example.com> @@ -762,7 +762,7 @@ data files in packages look correct. XML document (like start tags). Homepage: http://expat.sourceforge.net/ $ tar -xzO data.tar.gz \ - > <../libexpat.1_2.1.0-2_amd64-linux-glibc_all.opk | tar -tz + > <../libexpat.1_2.1.0-1_amd64-linux-glibc_all.opk | tar -tz ./ ./usr/ ./usr/share/ |