summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-04-15Switch metas back to printing to stdout.Justin Davis3-12/+5
2012-04-15Fix typo which adds misplaced perl code to PKGBUILD.Justin Davis2-2/+0
2012-03-07Change perl-pkgbuild to use new PKGTREE.Justin Davis6-129/+199
Updates genpkg as well. Adds func to genpkg for merging files back together from PKGTREE dir.
2012-03-05Make pkgtree scripts simpler still.Justin Davis3-63/+21
2012-03-05Replace old pkgtree scripts with new simpler ones.Justin Davis5-125/+88
2012-02-24Start dir-based package trees. Adds catpkgtree.Justin Davis1-0/+67
2012-02-13Start of Io version of modpkgmeta.Justin Davis1-0/+74
2012-02-05Start of big rewrite of pkg tweaking.Justin Davis14-533/+376
The current setup is only really good for modifying PKGBUILD fields. The modification of PKGBUILD funcs is hackish. Instead, the tweaks will be written in a scripting language (like Io) where both PKGBUILD fields and function code can be easily modified. Fields should be able to be modified just like arrays, but with easier package matching going on. PKGBUILD bash functions are simply arrays of lines, but they are not as sophisticated. Instead they can only be appended to. Package files are represented as trees. Each file (PKGBUILD pkg.install) is a child of the top-level node of the tree. Each child of the file node is a section of the file (intro, body, end). Each section can also have its own intro, body, and end node. In this way each bash function is a node with its own intro, body, and end node. Prepending to a function appends to its intro node. Appending to a function appends to its end child node. The body cannot be modified.
2012-02-05Use new ~/.genpkg dir in scrapecore.Justin Davis1-2/+2
Reads ~/.genpkg/var/cpanmods by default now.
2012-01-21Force perl-http-message dep to be >= 6.Justin Davis1-0/+2
2012-01-21Fix bug where deps on core modules barfed.Justin Davis1-8/+25
https://bugs.archlinux.org/task/27998 This also adds a simple form of tracing that is enabled with the GENDBG environment variable is set to any value.
2012-01-17Change output of genpkg to be less spammy.Justin Davis1-3/+5
Move message about tweaking the PKGDATA to stderr.
2012-01-17Renamed makepkgbuild to mkpkgbuild.Justin Davis2-3/+3
2012-01-17setup script echos to stderr now.Justin Davis1-3/+3
2012-01-17Better error check/report in genpkg and perl-dist.Justin Davis4-10/+17
metas/perl was not returning the right error. metas/perl.d/perl-dist now reports a better error when ~/.genpkg/var/corelist is missing. genpkg was also not examining the right error code.
2012-01-17Rename makepkgmeta to mkpkgdata.Justin Davis5-36/+46
Use files named PKGDATA instead of files named PKGMETA.
2012-01-16Fix hard-coded directories in makepkgbuild.Justin Davis1-6/+6
2012-01-16Move metas/ and templ/ under ~/.genpkg.Justin Davis8-8/+8
2012-01-14Remove pkg directory.Justin Davis1-1/+0
2012-01-14Use sub-shells in perl PKGBUILDs.Justin Davis1-8/+8
2012-01-14Use case statement for pattern matching.Justin Davis1-1/+1
2012-01-14Keep epoch in perl-anyevent forever.Justin Davis1-1/+1
2012-01-14Use a script instead of Makefile to install.Justin Davis2-15/+71
2012-01-14Explicit return value in templ/perk-pkg.Justin Davis1-1/+2
2012-01-14Hardcode templates dir. No pipelines in template cmd.Justin Davis1-35/+23
2012-01-14Better error-checking in genpkg.Justin Davis1-9/+14
2012-01-14Fix missing $forcechk var. Cleanup.Justin Davis1-19/+23
Make sure return values are consistent. Use err func when appropriate.
2012-01-07Merge changed from other puter.Justin Davis5-47/+77
Fix return value snafus, etc.
2012-01-07Add name overrides for packages that bend the rules.Justin Davis1-3/+7
2012-01-07Dont ignore makepkgmetas return value.Justin Davis1-1/+4
2011-12-29Relocate pkgverfmt logic in pbfields.Justin Davis1-3/+4
2011-12-29Add perl-guard tweak for unknown license.Justin Davis1-0/+1
2011-12-29Add pkgverfmt value for use by pbfields.Justin Davis2-3/+10
2011-12-29Consider "unknown" abstracts as undefined.Justin Davis1-1/+1
2011-12-29Remove period from optdepends in perl-anyevent.Justin Davis1-1/+1
2011-12-29Filter out deps on core modules, again.Justin Davis1-4/+9
The extra dependencies bug me...
2011-12-29Fix tabs characters.Justin Davis1-8/+8
2011-12-29Remove unnecessary regexp anchor.Justin Davis1-1/+1
2011-12-29Remove profiling code.Justin Davis1-3/+0
2011-12-29Update old perl-anyevent tweak.Justin Davis1-4/+5
2011-12-29Add perl-package-stash tweak.Justin Davis1-0/+1
2011-12-29Fix $tweakd in genpkg.Justin Davis2-1/+1
2011-11-20Default to ~/var for var path. Always print Config mod which has no .pm file.Justin Davis1-1/+5
2011-11-20More fine-tuning of errors and messages.Justin Davis4-8/+22
Cleanup package dirs when meta building fails, in genpkg.
2011-11-20Add special logic to avoid deps on core-only modules to perl-dist.Justin Davis2-19/+40
2011-11-20Fix error messages and error codes.Justin Davis3-18/+20
2011-11-12Remove profiling/timing code.Justin Davis1-3/+0
2011-11-10Adds perl.d/scrapecore script to find core-only modules in perl source.Justin Davis1-0/+237
2011-11-10Rename cpandists to fetchcpan. Don't fetch core perl dists.Justin Davis2-15/+9
2011-10-22Move main logic from Makefile to bin/genpkg.Justin Davis2-41/+70
Scripts were all reorganized and genpkg is made to be run with all scripts installed under the users home directory. Makefile now is used to install the scripts under the home directory.