summaryrefslogtreecommitdiff
path: root/ports-mgmt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - update to 1.5.0Baptiste Daroussin2012-06-192-3/+3
| | | | | | | | | | | | | | | | | | | - changes: * poudriere ports -u using portsnap can safely be run from cron now * Remove stale repo.sqlite as well to prevent deps constraint error with pkgng * add allow.chflags to jails * Add support for upgrading a jail using freebsd-update (only security upgrades for now) if the jail was created from ftp. * experimental support for creating/upgrading a jail from svn/csup beware that the -v when creating should be adapted to svn branches (stable/8, head) or csup (RELENG_8, .) * do not run make deinstall in case of normal bulk (speeds up a bit the bulk) * Add NOIPV4 and NOIPV6 support * Speed up a bit sanity checking by caching the dep list for each packages * Add some caching to avoid running make -V again and again when possible Notes: svn path=/head/; revision=299634
* Update to 1.7Alex Kozlov2012-06-172-3/+3
| | | | | | | | | - update whitelists Approved by: eadler, itetcu (mentors, implicit) Notes: svn path=/head/; revision=299441
* - Update to 0.1.5.1Michael Scheidell2012-06-162-3/+3
| | | | | | | | PR: ports/169147 Submitted by: David Naylor <naylor.b.david@gmail.com> (maintainer) Notes: svn path=/head/; revision=299403
* - Fix pkg2ng with new options frameworkBaptiste Daroussin2012-06-152-1/+44
| | | | Notes: svn path=/head/; revision=299338
* Upgrade to 3.12.1, removes pgrep since it's not safe to use on olderDoug Barton2012-06-152-5/+5
| | | | | | | versions of FreeBSD Notes: svn path=/head/; revision=299314
* New FeaturesDoug Barton2012-06-132-6/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ============ Print the same progress update that goes to the term title in-line, and apply various improvements to that code. Move 'make clean' to the background. There is no point waiting around for it to finish. In the case of very large work directories this may cause some I/O contention during the unpacking of the next port to build, but in most cases this should be lost in the noise. Other Improvements ================== Speed up the determination of WRKDIRPREFIX, and do not bother looking for empty directories if we exited abnormally. Add code to detect dependency loops created by moving part of a port into another port, and CONFLICT'ing on previous versions of that port (ala textproc/p5-XML-SAX -> p5-XML-SAX-Base). When a loop is detected suggest that the user try pkg_updating. Bug Fixes ========= Improve error handling for mktemp Improve handling of abnormal exits (such as ^C, failed port, etc.), especially when the first exit happens in a child process. If the second argument to -o is something that is completely non-existent, report in the error message what the user typed on the command line. Reported by: avilla In clean_build_only_list() remove ports that are already installed when using --delete-build-only to prevent them from being spuriously removed. Reported by: avilla Notes: svn path=/head/; revision=299191
* - Update to 20120611 snapshotBeech Rintoul2012-06-122-5/+10
| | | | | | | | | | | | | - Store distfiles in portupgrade/ subdir - Fix installation to support staging and mark USE_STAGE for upcoming staging support - Fix pkgng automatic dependency handling - Speed up some make variable lookups PR: ports/168954 Submitted by: Bryan Drewery <bryan@shatow.net> (maintainer) Notes: svn path=/head/; revision=299155
* - Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} orSteve Wills2012-06-101-1/+1
| | | | | | | | | | | RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned about for a while. PR: ports/168208 Approved by: portmgr (miwi) Notes: svn path=/head/; revision=298970
* Get rid of ${SITE_PERL} in *_DEPENDSEmanuel Haupt2012-06-061-1/+1
| | | | | | | Submitted by: az Notes: svn path=/head/; revision=298572
* - Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4Martin Wilke2012-06-064-8/+4
| | | | | | | Review by: bapt, David Naylor (kde team) Notes: svn path=/head/; revision=298557
* - Update to version 2.9Matthew Seaman2012-06-042-6/+7
| | | | | | | | | | | | | | | | Changes: http://www.infracaninophile.co.uk/portindex/ Adjust Endemic and Ubiquitous Makefile settings to account for OPTIONSng - Switch to OPTIONSng Approved by: shaun (mentor) Notes: svn path=/head/; revision=298385
* - Update The Glorious Glasgow Haskell Compiler to version 7.4.1Gabor Pali2012-06-031-1/+1
| | | | | | | | | | | | | | Please note that port revision for all the Haskell ports without version changes are also bumped. Other per-port updates are coming soon (in separate commits)! In addition to that, separate -docs ports are no longer needed so they are now removed. Thanks ashish@ for the assistance. Obtained from: FreeBSD Haskell Notes: svn path=/head/; revision=298155
* Backout reproducible packages.Baptiste Daroussin2012-06-032-1/+33
| | | | | | | | | | | | pkgng tried since beta14 to create reproducible package: aka 1 package build twice will get exactly the same checksums, this revealed some problem with python that were workaround in beta15 but lots of build system seems to really not approciate it, while the feature is good and might be reactivated in the futur, the ports tree and upstream build systems, need a lot of work to be able~ to deal with 100% reproducible packages :( Notes: svn path=/head/; revision=298123
* Add pkg-remove.8 to MLINKS.Koop Mast2012-06-031-0/+2
| | | | | | | Approved by: portmgr (bapt@) Notes: svn path=/head/; revision=298102
* - update to 1.0-beta15Baptiste Daroussin2012-06-033-42/+3
| | | | | | | | | | | | | | | | | | | | - changes: - new -d to pkg fetch to download the dependencies along with the package - fix automatic flag tracking over installs and upgrades - fix hardlink detection (size calculation of git is now sane again :)) - pkg remove is now an alias to pkg delete - fix a bug with shlibs track causing segfault - pkg check -r now updates flatesiz and checksums - all generated yaml now contain a yaml object separator, pkg info -Ra can be pased directly to a yaml parser - pkg query and pkg rquery do not fallback anymore on matching everything if -g -x or -X is passed in arguments - fix python packing on pointyhat/tinderbox with a ugly workaround for now - pkg info '' and pkg search '' now complains about empty pattern - pkg rquery now return 1 if nothing matched Notes: svn path=/head/; revision=298097
* - Update to 0.3.0Sunpoet Po-Chuan Hsieh2012-06-033-9/+8
| | | | | | | | | | | | | - Add BUILD_DEPENDS - Sort *_DEPENDS Changes: http://search.cpan.org/dist/FreeBSD-Pkgs-FindUpdates/Changes PR: ports/168585 Submitted by: sunpoet (myself) Approved by: Zane C. B-H. <vvelox@vvelox.net> (maintainer) Notes: svn path=/head/; revision=298071
* - Update to 0.2.0Sunpoet Po-Chuan Hsieh2012-06-032-3/+6
| | | | | | | | | | Changes: http://search.cpan.org/dist/FreeBSD-Pkgs/Changes PR: ports/168584 Submitted by: sunpoet (myself) Approved by: Zane C. B-H. <vvelox@vvelox.net> (maintainer) Notes: svn path=/head/; revision=298070
* Port changesBaptiste Daroussin2012-06-024-8/+20
| | | | | | | | | | | | | | | | | | - Convert to new options framework - Sync pkg-message with devel/portupgrade portupgrade changes - portupgrade/portinstall -v now lists recursive depends [ports/137958] - portupgrade lists new version after upgrade in results - Fixed failure being seen as success due to broken script(1) [ports/147242, ports/131111] - A fixed script(1) is now included for systems < 8.1 - Expanded pkgng support PR: ports/168548 which fixes: ports/137958 ports/147242 ports/131111 Submitted by: Bryan Drewery <bryan@shatow.net> Notes: svn path=/head/; revision=298002
* Convert to new options frameworkBaptiste Daroussin2012-06-021-19/+14
| | | | | | | | PR= ports/168534 Submitted by: Bryan Drewery <bryan@shatow.net> (maintainer) Notes: svn path=/head/; revision=298000
* - update png to 1.5.10Dirk Meyer2012-06-019-8/+9
| | | | Notes: svn path=/head/; revision=297915
* - Update to 0.1.5Martin Wilke2012-05-293-3/+25
| | | | | | | | PR: 168422 Submitted by: David Naylor <naylor.b.david@gmail.com> (maintainer) Notes: svn path=/head/; revision=297657
* IGNORE= does not build with Qt 4.8Max Brazhnikov2012-05-251-0/+2
| | | | Notes: svn path=/head/; revision=297398
* Update to 1.6Alex Kozlov2012-05-242-3/+3
| | | | | | | | | - update whitelists Approved by: eadler, itetcu (mentors, implicit) Notes: svn path=/head/; revision=297320
* - Fix pkg update adding repo.txz twiceBaptiste Daroussin2012-05-222-0/+39
| | | | | | | | PR: ports/168235 Submitted by: Andriy Syrovenko <andriys@gmail.com> Notes: svn path=/head/; revision=297210
* - update to 1.0-beta14Baptiste Daroussin2012-05-222-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | - changes: * new DEVELOPER_MODE option: it will fail instead of just printing warnings * package creation is now reproductible, the same package built twice will have the same checksum * pkg install, upgrade and fetch now automatically performs the update of the remote metadata if necessary * portmaster patch: use_pkgng is not nessecary anymore * portmaster patch: new format you can just copy it in the ports-mgmt/portmaster/files * portmaster patch: support for portmaster -o * portmaster patch: Enable --check-depends, aliasing pkg check -adv * pkg set -A to mark a package as automatically installed (-a now matches all: better consistency with other commands) * new -D option for pkg info (same as pkg_info -D) * pkg set -o now change origin for a port and everything that depends on it * new -L option for pkg {fetch,install,upgrade} to skip updating metadata. * when a package isn't valid, print human information about what is missing * some fixes in ordering (revealed by p5-XML-Sax mess) Thanks to all contributors Notes: svn path=/head/; revision=297191
* Correct a typo.Joe Marcus Clarke2012-05-202-1/+2
| | | | | | | Reported by: adamw Notes: svn path=/head/; revision=297043
* Upgrade to 2.13.10.Joe Marcus Clarke2012-05-202-10/+17
| | | | | | | | | | | | | | | | * Add a check for over-specific shared lib dependencies [1] * Add support for TEST_DEPENDS [2] * Make the error for NO_CHECKSUM to be scarier [3] PR: 165851 [1] 166173 [2] 167923 [3] Submitted by: matthew [1] sunpoet [2] "Bryan Drewery" <bryan@shatow.net> [3] Notes: svn path=/head/; revision=297000
* - update to 1.4.1Baptiste Daroussin2012-05-192-3/+3
| | | | | | | | - changes: * do not try to sanity check an empty package directory Notes: svn path=/head/; revision=296958
* - update to 1.4Baptiste Daroussin2012-05-172-3/+3
| | | | | | | | | | - changes: * Sanity check, clean all the old package not only the one that are concern by the run * No more recursive cleanup in case of failure * Code cleanup and consistency improved Notes: svn path=/head/; revision=296866
* - Update to 0.1.2Martin Wilke2012-05-162-3/+3
| | | | | | | | | PR: 167410 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> Approved by: maintainer timeout Notes: svn path=/head/; revision=296740
* - update to 1.3.1Baptiste Daroussin2012-05-152-3/+3
| | | | | | | - important bug fix in jail -i and jail -l Notes: svn path=/head/; revision=296677
* - update to 1.3Baptiste Daroussin2012-05-152-3/+4
| | | | | | | | | - changes: * Stop using zfs properties to store the queue to avoid size limitation * Bug fixes Notes: svn path=/head/; revision=296654
* Update to latest portupgrade development snapshot.Eitan Adler2012-05-122-4/+4
| | | | | | | | | | | Changes: Fixe regression which causes pkgdb -u to take a long time without pkgng support. PR: ports/167823 Submitted by: "Bryan Drewery" <bryan@shatow.net> (maintainer) Notes: svn path=/head/; revision=296496
* Update to latest portupgrade development snapshot.Eitan Adler2012-05-123-16/+22
| | | | | | | | | | | | | | | Changes: - Fix portsdb -U crash when building INDEX - All libs are now installed into the pkgtools/ namespace - Experimental PKGNG support. portupgrade -o, pkgdb -F and package upgrades do not work yet. Enable with WITH_PKGNG=yes in /etc/make.conf PR: ports/167811 Submitted by: "Bryan Drewery" <bryan@shatow.net> (maintainer) Notes: svn path=/head/; revision=296468
* - Update to 0.9.8Kris Moore2012-05-112-3/+3
| | | | Notes: svn path=/head/; revision=296460
* - Update to 1.3Jason Helfman2012-05-042-3/+3
| | | | | | | | | | | | | This version adds support for a top-level Makefile.local. Also restored the priority-setting code, but without making it mandatory (if the call to rtprio fails, the program will still runs, rather than aborting as it formerly did, the last time this code was included). PR: ports/167592 Submitted by: maintainer, conrads@cox.net Notes: svn path=/head/; revision=296024
* - update to 1.0-beta13Baptiste Daroussin2012-05-042-3/+3
| | | | | | | | | | | | | | - changes: * -a (all) is now befault behaviour of check, query, rquery * speed up remote repository query * fix excessive CPU usage on fetching * improve man pages documentation * only display filenames on fetching not full url * fix an important bug on jobs ordering calculation * lots of bugs fixes Notes: svn path=/head/; revision=295991
* - update to 1.2Baptiste Daroussin2012-05-032-6/+26
| | | | | | | | | | | | - changes: * jails are now real jail(8) * only have network access during make fetch * poudriere jail -i -j <yourjail> now shows the activity of the jail * csup support for poudriere ports * new poudriere cron and poudriere queue command Notes: svn path=/head/; revision=295976
* Sync -devel port with releaseEitan Adler2012-05-023-5/+5
| | | | | | | | | | | | | Changes: Fixes regression introduced 2.4.9.4 release, causing failed upgrades to be seen as successes. Reported by: Matthew D. Fuller <fullermd@over-yonder.net> PR: ports/167512 Submitted by: "Bryan Drewery" <bryan@shatow.net> (maintainer) Notes: svn path=/head/; revision=295864
* Upgrade to 2.4.9.5Eitan Adler2012-05-022-3/+3
| | | | | | | | | | | | | Changes: Fixes regression introduced 2.4.9.4 release, causing failed upgrades to be seen as successes. Reported by: Matthew D. Fuller PR: ports/167512 Submitted by: Bryan Drewery <bryan@shatow.net> (maintainer) Notes: svn path=/head/; revision=295862
* Convert distinfo to unix format for realBaptiste Daroussin2012-05-011-16/+2
| | | | | | | | | | Set the right checksum and size PR: ports/167502 Submitted by: Bryan Drewery <bryan@shatow.net> (maintainer) Notes: svn path=/head/; revision=295821
* Point to the new homeBaptiste Daroussin2012-05-011-1/+1
| | | | Notes: svn path=/head/; revision=295786
* DOS2UNIXEitan Adler2012-04-301-7/+7
| | | | Notes: svn path=/head/; revision=295701
* Change portupgrade-devel to use a known hash and check distinfoEitan Adler2012-04-302-22/+23
| | | | | | | | Submitted by: bryan@shatow.net (maintainer) Security: b428e6b3-926c-11e1-8d7b-003067b2972c Notes: svn path=/head/; revision=295700
* - Update to 1.1.0Dennis Herrmann2012-04-282-8/+8
| | | | | | | | PR: ports/167388 Submitted by: Mamoru Sakaue <sakaue.mamoru@samurai.mwghennn.net> (maintainer) Notes: svn path=/head/; revision=295652
* - Avoid literal appearances of "$FreeBSD:...$" in patch-util_diff.in.Dennis Herrmann2012-04-282-3/+3
| | | | | | | | | | | | | | | - While we are here: - Make the affected sed pattern more flexible with regard to the repository path from which the port was checked out. - When handling -d <dir>, if the port's directory does not exist, fix the path used in the first check for an alternative path. - Bump PORTREVISION. PR: ports/166593 Submitted by: Johannes Joemann <joemann@beefree.free.de> (maintainer) Notes: svn path=/head/; revision=295643
* Update to 1.0.5Romain Tartière2012-04-273-4/+10
| | | | Notes: svn path=/head/; revision=295609
* - Update to 2.4.9.4Jason Helfman2012-04-273-6/+6
| | | | | | | | PR: ports/167338 Submitted by: maintainer, bryan@shatow.net Notes: svn path=/head/; revision=295595
* pkg.conf.sample is not a PORTEXAMPLEBaptiste Daroussin2012-04-262-4/+1
| | | | Notes: svn path=/head/; revision=295547
* - Update to 0.1.4.1Jason Helfman2012-04-234-21/+19
| | | | | | | | | | | | | | | | | | | 0.1.4 - 2012 April 22: * Support pkgng as an alternative package manager * Support installing packages from a repository * Support port pre-cleaning * Support dynamic defaults from /etc/make.conf (i.e. DEPENDS_(PRE)CLEAN) * Major code cleanup and refactor effort * Switch to a revised milestone schedule * Fixes: * Fix assertion when using PKGINSTALL builder * If kevent fails with EINTR then retry command again PR: ports/167210 Submitted by: maintainer, naylor.b.david@gmail.com Notes: svn path=/head/; revision=295348