Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | if no packages were built and digests.txz does not exists then rebuild the repository catalog Requested by: rpaulo Ticker: [d0eae39481] |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | trunk |
Files: | files | file ages | folders |
SHA1: |
3aa09e9f826e00631394661737fcf410 |
User & Date: | bapt 2013-06-25 21:42:17 |
Context
2013-06-25
| ||
21:42 | if no packages were built and digests.txz does not exists then rebuild the repository catalog Requested by: rpaulo Ticker: [d0eae39481] Leaf check-in: 3aa09e9f82 user: bapt tags: trunk | |
21:07 | Add preliminary support for cross building mips64 and armv6 This consider you have qemu-mips64 or qemu-arm installed in static version on your system This is also considering you have Stacey Son patches and binmisctl on your system: see: http://people.freebsd.org/~sson/imgact_binmisc/ and https://wiki.freebsd.org/QemuUserModeHowTo This patch consider you condigure binmisc expecting qemu-mips64 or qemu-arm being launch from the following path: /usr/bin/qemu-* check-in: f781dc0560 user: bapt tags: trunk | |
Changes
Changes to src/share/poudriere/bulk.sh.
262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
nbignored=$(bget stats_ignored) nbskipped=$(bget stats_skipped) nbbuilt=$(bget stats_built) [ "$nbfailed" = "-" ] && nbfailed=0 [ "$nbignored" = "-" ] && nbignored=0 [ "$nbskipped" = "-" ] && nbskipped=0 [ "$nbbuilt" = "-" ] && nbbuilt=0 # Package all newly build ports if [ $nbbuilt -eq 0 ]; then if [ $PKGNG -eq 1 ]; then msg "No package built, no need to update the repository" else msg "No package built, no need to update INDEX" fi |
> > > |
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
nbignored=$(bget stats_ignored) nbskipped=$(bget stats_skipped) nbbuilt=$(bget stats_built) [ "$nbfailed" = "-" ] && nbfailed=0 [ "$nbignored" = "-" ] && nbignored=0 [ "$nbskipped" = "-" ] && nbskipped=0 [ "$nbbuilt" = "-" ] && nbbuilt=0 if [ $PKGNG -eq 1 -a ${nbbuilt} -eq 0 ]; then [ -f ${MASTERMNT}/packages/digests.txz ] || nbbuilt=1 fi # Package all newly build ports if [ $nbbuilt -eq 0 ]; then if [ $PKGNG -eq 1 ]; then msg "No package built, no need to update the repository" else msg "No package built, no need to update INDEX" fi |