diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-02-05 12:53:02 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-02-05 12:53:02 -0300 |
commit | 44c866b682642e09d5de1c2ffdfe9928e51d8772 (patch) | |
tree | 35c8e5a6ed2f7cc5e11b3b7d802c57b86cb8df4b /doc | |
parent | 62d480116033b09540fe62d32c9ee3da720f35e0 (diff) |
CreateWorkDir creates the dir tree for packaging
Diffstat (limited to 'doc')
-rw-r--r-- | doc/createworkdir | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/doc/createworkdir b/doc/createworkdir new file mode 100644 index 0000000..d74198a --- /dev/null +++ b/doc/createworkdir @@ -0,0 +1,62 @@ +== CreateWorkDir + +This script recreates a proper dir tree for packaging. It's aim is to help +you be organized with the work you do as a packager, and stablish a +certain standard for packages' ubication, so you don't have to loose much +time with them. Just package and upload! + +It will create a dir tree like this: +workdir/ + abslibre/ + .git/ + libre/<PKGBUILDS> + libre-testing/<PKGBUILDS> + staging/ + libre/ + libre-testing/ + repos/ + libre/ + i686/ + x86_64/ + libre-testing/ + i686/ + x86_64/ + +*Related Variables* + - WORKDIR + + +=== staging/ + +This directory contains one dir for each repository, where the resulting +packages are in moved for syncing against the main repository on +Parabola's server. This dir is architecture independent. + +*Related Variables* + - REPOS + + +=== abslibre/ + +This is the git repo for Parabola's PKGBUILDs. Here you can find the ABS +tree for our packages, and also where you'll have to put new ones for +commit. + +(You'll need push access to Parabola's main server, but pulling is +public.) + +*Related Variables* + - ABSLIBREGIT + + +=== repos/ + +Contains the repo dir structure. Probably not useful for uploading +packages, but it will be for creating new repos for public access. + +It contains a dir for every repository, and inside them, a dir for every +supported architecture. + +*Related Variables* + - REPOS + - ARCHES |