summaryrefslogtreecommitdiff
path: root/pkgtools/pbulk
AgeCommit message (Collapse)AuthorFilesLines
2009-06-14Remove @dirrm entries from PLISTsjoerg1-3/+1
2009-06-08pbulk-0.40:joerg3-8/+7
Use plain sed to extract RCS IDs. GNU ident has issues with unexpanded RCS IDs.
2009-06-08Add forgotten file from pbulk-base split off.joerg1-0/+13
2009-06-07Split pbulk into pbulk-base (the backend programs) and pbulk (rest).joerg3-52/+10
2009-06-07pbulk-0.38:joerg2-3/+5
Skip lines starting with # in the limited list.
2009-04-09Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions.joerg1-4/+1
2009-03-06joergs says the problem is with &&, so revert to revision 1.4 which shouldtnn1-4/+2
be safe everywhere.
2009-03-06Add explicit cast to silence GCC on comparing different signs.joerg1-2/+2
2009-03-06Merge lib/dewey.c rev 1.11 from pkg_install:joerg1-4/+3
Avoid sign comparision issues.
2009-03-06fix previous:tnn1-2/+4
actually, if our /bin/sh has some bug related to set -e, it's better to write the test with if-then-fi instead.
2009-03-06Invert logic of the package timestamp check, as at least ksh and bashtnn1-2/+2
terminate the shell due to "set -e" when the [ ... ] part is false. This behaviour seems correct to me, but I can't explain why this code doesn't fail with our /bin/sh.
2009-02-25Include sys/poll.h and poll.h directly if they exist.joerg1-2/+7
nbcompat/poll.h conflicts with the system header on Solaris and is implicitly included by nbcompat.h already, if needed. Fixes PR 40756.
2009-01-31pbulk-0.37:joerg8-56/+276
- replace libevent dependency with internal event loop to make the pbulk core standalone - open success and error log with O_APPEND, which allows e.g. cleaning up the error build during build without breaking it if done with care.
2008-10-16PKGREVISION bump for libevent shlib name change.wiz1-1/+2
2008-10-08pbulk-0.36:joerg2-8/+12
Avoid grep -q and use awk instead. This has the side effect of parsing presolve only once for each file. grep -q doesn't exist on Solaris.
2008-09-22pbulk-0.35:joerg2-3/+27
Sync Dewey with pkg_install(-renovation) and add a fast check if a pattern could ever match. This reduces the time for pbulk-resolve on a full tree on my laptop from 12.9s to 5.3s.
2008-09-16pbulk-0.34:joerg15-23/+127
- version configuration file, object if the version doesn't match - add an option for pbulk-resolve to ignore unresolvable dependencies similiar to the incremental mode - use this option to run pbulk-resolve again if ignore_missing_depencies is set to yes. Report this explicitly to un-confuse readers and point them to the logfile.
2008-09-14pbulk-0.34:joerg5-60/+41
Isolate rules to compute the restricted subset in the upload script. Make the upload script independent from the report file to allow uploading partial builds. Only depend on NO_BIN_ON_FTP to decide what to upload and what not.
2008-09-06Bump PKGREVISION for libevent users due to 1.4.3->1.4.5 shlib name change.wiz1-2/+2
2008-07-14pbulk-0.33: Don't try to install/deinstall bootstrap packages.joerg2-6/+14
This allows a destdir build to package bootstrap components.
2008-06-20pbulk-0.32:joerg3-25/+13
Make bulkbuild-rebuild over 200 times faster when running against a full tree scan by using awk to filter out the data instead of the while read shell builtin.
2008-06-12Use full path for chown.joerg2-4/+4
2008-06-11pbulk-0.31:joerg2-8/+70
- For direct build failures, make the package location in the first column a hyper link to the last (supposedly failing) phase. - For indirect failures, list the first 10 failing dependencies.
2008-04-18Mark this package MAKE_JOBS_SAFE=no.bjs1-1/+3
2008-04-07pbulk-0.30:joerg2-6/+53
Print the collected PKG_FAIL_REASON in the HTML version of the report.
2008-04-04pbulk-0.29:joerg4-5/+41
Add bulkbuild-restart script that checks if error/success files exist and makes sense and continues the previous build if they do.
2008-03-01Removed trailing white-space.rillig2-6/+6
2008-02-26pbulk-0.28:joerg2-5/+6
- don't try to deinstall (and fail) on packages marked not for uninstall
2008-02-24Improve verbose mode:tnn1-3/+10
- sprinkle whitespace so pkgnames get neatly aligned - prepend a progress counter to printfs
2008-02-21No sin_len on IRIX.tnn1-2/+2
2008-02-13Add horisontal rulers.tnn1-1/+3
2008-02-07Needs GNU nroff to format catpages.tnn1-2/+2
(But for this case it would make life simpler for bulk builders if the catpages were pregenerated.)
2008-02-03Enable compression (-z) in report_rsync_args.tnn1-2/+2
Partially addresses PR pkg/37946.
2008-01-30Fix a limit check.joerg1-2/+2
2008-01-30Add another check for the cross-compiling case.joerg1-1/+5
2008-01-29$${bulklog} -> ${bulklog}tnn1-2/+2
2008-01-27pbulk-0.27:joerg3-32/+84
When running the start script in master mode, already accept incoming connections. This makes the start script more useful when using more clients than the default listen back log.
2008-01-26pbulk-0.26:joerg8-32/+94
Add first pile of patches for cross-compiling support. This still depends on the packages being pre-installed to the normal prefix, but otherwise works. Cross-compiling needs pkg_install-20080126. While here, simplify configuration and allow using one pkg_install installation for everything. As a side effect remove the pkgdb limitation for NetBSD builds. Add a message that tells users to check the configuration file on updates.
2008-01-26Explain unprivileged_user.joerg1-1/+4
2008-01-26pbulk-0.25:joerg4-10/+61
Add bulkbuild-rebuild which can be used to build packages individually. It assumes that all dependencies are built and the results of the scan phase exists. That means it can be used after a bulk build to try to rebuild a failing package. Fixes PR 37407.
2008-01-26pbulk-0.24:joerg3-8/+42
When all jobs are processed in master mode, close the listen socket and shutdown(2) all peers. Give them a second to close(2) the connection themselve, so that the port remains usable on the master. This is the standard compliant fix for PR 37002.
2008-01-21Fixed a problem in pkg-build, bump rev.tnn1-2/+2
2008-01-21Fix a hardcoded path (probably a mistake in rev 1.8)tnn1-2/+2
2008-01-18No revision bump for pkgsrc native tools, update version.joerg1-3/+2
2008-01-18PKGREVISION++ for the invalid definition of shell functions.rillig1-1/+2
2008-01-18Fixed the definition of shell functions, as reported in PR 37795.rillig1-3/+3
See also: http://www.opengroup.org/onlinepubs/000095399/utilities/xcu_chap02.html#tag_02_09_05 http://www.opengroup.org/onlinepubs/000095399/utilities/xcu_chap02.html#tag_02_09_04
2008-01-17pbulk-0.21:joerg3-10/+15
Don't try to remove a non-existing file if no package had an error during the build.
2008-01-17pbulk-0.20:joerg3-7/+12
- run checksum stage of a build with the privileged user, as DISTDIR might not be writeable - create the actual package as privileged user as well - pre-create work.log when using user-destdir - in pre-build, only wait if the meta subdirectory exists. bulklog itself can often be a mount point.
2008-01-16pbulk-0.19:joerg3-13/+46
- add support for building using DESTDIR.
2008-01-15Use %lu + casts instead of depending on size_t's %z. Some Operatingjoerg2-12/+23
Systems like Solaris don't implement %z.