Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-04-11 | Perl mod pkgbuilds use $_ddir now. | Justin Davis | 1 | -20/+30 | |
With pacman 4.1 $srcdir is no longer set outside of PKGBUILD functions. Yipee! This breaks all of my PKGBUILDs. Now we switch to storing the distribution's tarballed directory in the _ddir custom variable. We cd into $srcdir/$_ddir at the beginning of every func. Custom variable mechanics have changed in bin/pbfields as well. Instead of hard-coding _dir as an accepted field, any PKGDATA entry with a name starting with underscore (_) is considered a custom variable and printed in the PKGBUILD. | |||||
2013-04-11 | Remove code for obsolete customvars field. | Justin Davis | 1 | -21/+0 | |
2012-08-15 | Fix typo bug caused by previous correction of typo... | Justin Davis | 1 | -1/+1 | |
2012-08-15 | Notify the user of moding before the fact. | Justin Davis | 1 | -1/+1 | |
This maybe might make errors easier to understand. | |||||
2012-08-15 | injectdigs will use md5/sha512sum or openssl. | Justin Davis | 1 | -8/+39 | |
2012-07-22 | Reorder arguments to "move" modpkg command. | Justin Davis | 1 | -5/+7 | |
2012-06-15 | Cleanup pkg/dest when package is not found. | Justin Davis | 2 | -7/+18 | |
2012-06-15 | Comment was in the wrong spot. | Justin Davis | 1 | -2/+3 | |
2012-06-15 | preps return 100 when they can't find matches. | Justin Davis | 1 | -1/+1 | |
2012-06-06 | Better error handling in genpkg's dupver(). | Justin Davis | 1 | -3/+2 | |
2012-06-06 | Remove old unused tmp var from prepkg. | Justin Davis | 1 | -1/+0 | |
2012-06-02 | Fix bug in modpkg's move command. | Justin Davis | 1 | -1/+1 | |
2012-06-01 | Fix error handling when prepkg fails. | Justin Davis | 3 | -14/+10 | |
Typo fixed in prepkg. Do not duplicate pkgver unless we are going to modify the package. Pipes screw up the error code returned. vervar silently ignores a missing _ver field. | |||||
2012-05-31 | Remove obsolete $templd definition. | Justin Davis | 1 | -1/+0 | |
2012-05-25 | Quote $(...) command expansion properly in pbfields. | Justin Davis | 1 | -0/+1 | |
2012-05-25 | Many changes to get to working order. | Justin Davis | 1 | -28/+44 | |
Tried to normalize style. Renames alot of things. Uses variables to make things easier on the eyes. Fix bugs that I introduced: - pkgdesc does not expand parameters - array fields not printing - generally bad logic in quoting | |||||
2012-05-25 | Prefer single quoting to double quoting strings. | Justin Davis | 1 | -4/+5 | |
2012-05-25 | Don't store packager and maintainer vars. | Justin Davis | 1 | -2/+2 | |
2012-05-25 | Pretty up field init a little bit. | Justin Davis | 1 | -6/+7 | |
2012-05-25 | Print custom variables at the end of the fields list. | Justin Davis | 1 | -4/+6 | |
2012-05-25 | Simplify comment header printing logic. | Justin Davis | 1 | -4/+7 | |
2012-05-25 | Remove old pkgver formatting code. | Justin Davis | 1 | -4/+0 | |
2012-05-25 | Fix typo in bashquote function. | Justin Davis | 1 | -1/+1 | |
2012-05-15 | Fix typo in vervar. | Justin Davis | 1 | -1/+1 | |
When using the ver field, the bash variable must be prefixed with an underscore (i.e. $_ver). | |||||
2012-05-15 | Fix DUMB typo in scanfield() inside genpkg. | Justin Davis | 1 | -1/+1 | |
2012-05-15 | prepkg should only print to stdout. | Justin Davis | 1 | -18/+2 | |
2012-05-15 | Duplicate the version in the prepkg step of genpkg. | Justin Davis | 1 | -3/+5 | |
2012-05-15 | Changes to custom vars in mods must persist. | Justin Davis | 1 | -1/+7 | |
For each var in the customvars PKGDATA field, we must be sure changes to them in a package mod are written to the new PKGDATA stream. | |||||
2012-05-15 | Rename path to dir in vervar script. | Justin Davis | 1 | -1/+1 | |
2012-05-15 | Quote fields with <> chars (again). | Justin Davis | 1 | -1/+1 | |
2012-05-15 | Inject digests before substituting version strings. | Justin Davis | 1 | -1/+1 | |
2012-05-15 | Forgot to add vervar script. | Justin Davis | 1 | -0/+52 | |
2012-05-14 | Add feature to replace ver-strings with $pkgver. | Justin Davis | 2 | -23/+50 | |
Alot of logic was added to allow changing versions in mods while still preserving the version in the $_ver custom variable. | |||||
2012-05-13 | Don't try to seek stdin in scanfields. | Justin Davis | 1 | -1/+0 | |
2012-05-12 | Adds setdep command. | Justin Davis | 1 | -1/+33 | |
Fix bugs when appending to dotinstall files. | |||||
2012-05-06 | TCL version of modpkg seems to be in working order. | Justin Davis | 1 | -20/+58 | |
2012-05-05 | Start of tcl rewrite of modpkg. | Justin Davis | 1 | -332/+102 | |
2012-04-22 | Do not rm the PKGDATA file automatically. | Justin Davis | 1 | -1/+1 | |
2012-04-22 | Add _distdir var to perl PKGBUILDs. | Justin Davis | 1 | -6/+24 | |
pbfields now recognizes a customvars field which names other fields it should print in the PKGBUILD header. These field names are prefixed with an underscore ("_"). | |||||
2012-04-21 | Use test -z just for kicks. | Justin Davis | 1 | -1/+1 | |
2012-04-21 | Emit unknown PKGDATA fields unchanged. | Justin Davis | 1 | -2/+10 | |
Previously unknown fields would be filtered out. | |||||
2012-04-21 | Fix modpkg typo. Don't use old fieldVals method. | Justin Davis | 1 | -5/+4 | |
Also fixes the number of space in the indent. I remember that two is preferred. | |||||
2012-04-21 | Rename METBIN var to PREPSPATH. | Justin Davis | 2 | -7/+7 | |
I meant to do this earlier. Oh well. | |||||
2012-04-21 | PkgDataFields are now just Lists. | Justin Davis | 1 | -28/+24 | |
Since fields are basically just lists of PkgDataFieldVal objects we can use lists. This makes assigning to fields easier in modifier scripts. For example: license = list("GPL2", "LGPL2.1") | |||||
2012-04-21 | Add modpkg call to genpkg. | Justin Davis | 1 | -8/+13 | |
Rename mention of tweaks to mods. | |||||
2012-04-16 | Generate .install files from genpkg as well. | Justin Davis | 1 | -3/+33 | |
2012-04-16 | Rename tweaks/ to preps/. | Justin Davis | 1 | -1/+6 | |
Adds GENPKGDBG env variable. Set it to prevent genpkg from removing PKGTREE and PKGDATA. | |||||
2012-04-16 | Rename the metas/ directory to preps/. | Justin Davis | 1 | -3/+3 | |
This matches the prepkg script name. | |||||
2012-04-16 | Rename mkpkgmeta script to prepkg. | Justin Davis | 2 | -1/+1 | |
2012-04-16 | Remove empty mergepbfields file. I forget what it was for. | Justin Davis | 1 | -0/+0 | |