aboutsummaryrefslogtreecommitdiff
path: root/ports-mgmt
Commit message (Collapse)AuthorAgeFilesLines
* - Update to 1.1Dmitry Marakasov2008-10-132-4/+4
| | | | | | | | PR: 127921 Submitted by: Marin Atanasov <dnaeon at gmail dot com> (maintainer) Notes: svn path=/head/; revision=221541
* Add the pkg_add_it-1.0 utility for easy interactive package selection.Peter Pentchev2008-10-064-0/+49
| | | | | | | | PR: 127883 Submitted by: Marin Atanasov <dnaeon@gmail.com> Notes: svn path=/head/; revision=221281
* - Fix commandline arguments handling (again)Dmitry Marakasov2008-09-242-7/+7
| | | | Notes: svn path=/head/; revision=220696
* - Fix commandline arguments handling for some cases (actualy any case when ↵Dmitry Marakasov2008-09-232-1/+91
| | | | | | | | | | two or more flags are used simultaneously like `port submit -m update -d .orig`) PR: 100771 Submitted by: HASHI Hiroaki <hashiz at tomba dot meridiani dot jp> Notes: svn path=/head/; revision=220565
* - Update to 2.0.4Martin Wilke2008-09-082-8/+9
| | | | | | | | PR: 127203 Submitted by: Andy Kosela <akosela@andykosela.com> (maintainer) Notes: svn path=/head/; revision=220284
* - remove unexisting dirs from plsitIon-Mihai Tetcu2008-09-074-6/+2
| | | | | | | | | | - bump PORTREVISION PR: ports/127177 Submitted by: Sunpoet Po-Chuan Hsieh Notes: svn path=/head/; revision=220186
* - fix PGSQL support [1]Ion-Mihai Tetcu2008-09-0712-2/+212
| | | | | | | | | | | | - use strftime like in 2.x [1] - install rc script in system etc/rc.d - bump PORTREVISION Prompted by: makc@ [1] Obtained from: marcoscom CVS [1] Notes: svn path=/head/; revision=220078
* - Add missing dependency on security/libgnomesu (gnomesu)Chin-San Huang2008-09-061-1/+2
| | | | | | | | | PR: ports/127071 Submitted by: chinsan Approved by: maintainer Notes: svn path=/head/; revision=219971
* Catch up with master 1.604.Mark Linimon2008-09-061-15/+73
| | | | Notes: svn path=/head/; revision=219968
* This is tinderbox 3.0.0 release with patches (see bellow).Ion-Mihai Tetcu2008-09-0318-746/+270
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes in 3.0 include: * The www-exp module has been renamed webui, and a new web frontend has been added called paefchen. * All Tinderbox commands with the exception of tinderd are now performed using the tc utility. * The Hosts system has been removed as it was not really used, and not really suited to the purpose of distributed builds. The ground work has been laid to support distributed builds, but that is not present in 3.0. * A DISTFILE_URI config directive has been introduced to allow for distributed distfile caches. * The latest port fail reasons and patterns have been synced from pointyhat. * The total size taken by a port build (in KB) is now tracked in the database. This can be obtained using the command ``tc getPortTotalSize -d DIRECTORY -b BUILD''. * Port build logs now contain OPTIONS and environment details. * The ``tc addPort'' command assumes a recursive add by default. This can be disabled by passing the -R argument. * Port dependencies are now recorded in the database when ``tc addPort'' is called without -R. The dependency list can be retrieved with ``tc getDependenciesForPort -d DIRECTORY -b BUILD''. * The ``tc tbcleanup'' command now supports pruning stale distfiles, stale packages, and not pruning old error logs. See the README for command line details. * The default update type and update host are configurable at Setup and Upgrade time. The default update type has been changed from CVSUP to CSUP. * The last_fail_reason is now exported to the postPortBuild Hook. * Fix the build time display if a tinderbuild takes longer than 24 hours. * Add a new command, ``tc rescanPorts'' which updates the properties of all ports in the datastore (including dependencies). * Display the remake count in the webui frontends. * Hack around a potential perl-related leftover false positive. * A new -O option has been added to addPort/rescanPorts which enables OPTIONS, but does not run rmconfig before calling config. This way, existing OPTIONS can be preserved. The default behavior is to call rmconfig to maintain POLA. * The webui index page has been enhanced to make it more readable, and more powerful. * The number of ports not built due to dependency failures has been added to the webui's main page. * tc processLog -v now prints the matching text to aid with false positive identification. PLUS: * In webui: - Change tinderd queue view. Field for adding new ports is the first now. - Show target port of current build. - miwi's RSS module - an other patch from miwi for inc_tinderbox.php.dist which should make setting-up the webui easier on non-standard configurations. * Bug-fix: Add o and O to the list of valid options for addPort. Notes: svn path=/head/; revision=219753
* Add a patch to workaround a bug noticed by Doug Barton.Wesley Shields2008-09-032-0/+58
| | | | | | | | | | | | The new code will silently ignore MASTER_SITE_GOOGLE_CODE and MASTER_SITE_DEBIAN_POOL unless specifically asked to sort them, in which case an error message is printed. Most of the patch came from Ryan Steinmetz <rpsfa@rit.edu> with small additions by me. Notes: svn path=/head/; revision=219708
* Update to 2.10.0.Joe Marcus Clarke2008-08-242-144/+164
| | | | | | | | | | | | | | | * Add a check for duplicate CATEGORIES [1] * Be stricter when checking for --mandir and --infodir [2] * Properly check *_DEPENDS both before and after bsd.port.pre.mk [3] PR: 125962 [2] 126681 [3] Requested by: kris [1] Submitted by: Eygene Ryabinkin <rea-fbsd@codelabs.ru> [3] Renato Botelho <garga@FreeBSD.org> [2] Notes: svn path=/head/; revision=219088
* Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.Rong-En Fan2008-08-212-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav) Notes: svn path=/head/; revision=218938
* - Fix a typo in gauge change checking could cause slow gauge update over ↵Martin Wilke2008-08-152-2/+2
| | | | | | | | | | slow links. PR: 126512 Submitted by: Stephen Hurd <shurd@sasktel.net> (maintainer) Notes: svn path=/head/; revision=218621
* - Fix segfaults due to typo in malloc() invocationDmitry Marakasov2008-08-112-1/+2
| | | | | | | | | | PR: ports/126338 Submitted by: Shota Iwazaki <iwazaki8 at yahoo dot co dot jp> Approved by: Stephen Hurd <shurd at sasktel dot net> (maintainer) Approved by: miwi (mentor implicit) Notes: svn path=/head/; revision=218418
* - Fix build on CURRENT: don't include bsd.sys.mk at allPav Lucistnik2008-08-101-0/+13
| | | | | | | Submitted by: Joseph S. Atkinson <jsatkinson@embarqmail.com> Notes: svn path=/head/; revision=218378
* - Update to 2.0.3Martin Wilke2008-08-063-43/+131
| | | | | | | | PR: 126277 Submitted by: Andy Kosela <akosela@andykosela.com> (maintainer) Notes: svn path=/head/; revision=218113
* - Remove perl dependency. perl is not used for some time as it was before.Sergey Matveychuk2008-08-032-2/+0
| | | | Notes: svn path=/head/; revision=217972
* Update my email address to my @FreeBSD.org address.Robert Noland2008-07-301-1/+1
| | | | | | | Approved by: garga (mentor) Notes: svn path=/head/; revision=217856
* Catch up with master 1.600. This also obsoletes a portmk-only patchMark Linimon2008-07-301-5/+7
| | | | | | | that has been around for a while. Notes: svn path=/head/; revision=217842
* Update for version 2.6Doug Barton2008-07-281-1/+1
| | | | Notes: svn path=/head/; revision=217791
* Update to reflect the ability to specify multiple glob patternsDoug Barton2008-07-281-4/+5
| | | | | | | added in version 2.6. Notes: svn path=/head/; revision=217790
* New FeaturesDoug Barton2008-07-281-24/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ============ 1. You can now specify multiple globs for directories in /var/db/pkg on the command line (along with full names of directories/paths from /usr/ports and/or /var/db/pkg, as before) 2. When calling check_interactive or update_port from check_for_updates tell the user what updated version is available. [1] Bug Fixes ========= 1. Don't set show_list to "all" for -a unless there is somthing to show 2. Add K (don't postclean) to getopts [2] Other Improvements ================== 1. In check_dependency_files() don't let ro_opd be empty for the purpose of the egrep expression. It works now, but it apparently violates the spec and could case problems down the road (e.g., for bsdgrep). 2. Since the BSDPAN pseudo-ports do not exist in the ports tree there is nothing for portmaster to do with them. Therefore ignore them when appropriate, notifying the user when necessary. [3] Submitted by: Geraint Edwards <gedge@yadn.org> [1] PR: ports/126006 [2] Submitted by: ahze [2] Pointy hat: moi [2] Problem pointed out by: Bapt <baptiste.daroussin@gmail.com> [3] PR: ports/125428 [3] Notes: svn path=/head/; revision=217788
* Update description of pkg_treeEdwin Groothuis2008-07-281-7/+18
| | | | | | | | | | | The example in the description of pkg_tree shows old package names (imake-4, XFree86-libraries). PR: ports/125990 Submitted by: Carlos Santos <unixmania@gmail.com> Notes: svn path=/head/; revision=217732
* - Update to 2.0.2_1Beech Rintoul2008-07-273-67/+110
| | | | | | | | | | | | - Minor fixes - Bump PORTREVISION - Compatible with BSD KNF PR: ports/125991 Submitted by: Andy Kosela <akosela@andykosela.com> (maintainer) Notes: svn path=/head/; revision=217692
* When doing 'update' and 'diff', use our cvs(1)'s -R feature, this would ↵Xin LI2008-07-272-2/+22
| | | | | | | | | | | | | accelerate on certain configurations. While I'm there, make use of 'SF' macro for SourceForge mirror. PR: ports/116248 Notes: svn path=/head/; revision=217653
* Reset sergei@ due to maintainer-timeouts and no response to email.Mark Linimon2008-07-271-1/+1
| | | | | | | Hat: portmgr Notes: svn path=/head/; revision=217649
* - Remove duplicates from MAKE_ENV after inclusion of CC and CXX in default ↵Pav Lucistnik2008-07-251-1/+2
| | | | | | | MAKE_ENV Notes: svn path=/head/; revision=217477
* - Patch to ports-mgmt/portupdate-scan to deal with problems which have surfacedBeech Rintoul2008-07-242-6/+9
| | | | | | | | | | | | | recently, parsing the files /usr/ports/MOVED and /usr/ports/UPDATING. MOVED had an extra blank line on the end for awhile, and the case of some of the UPDATING lines have changed (e.g., Author: instead of AUTHOR:). This patch allows portupdate-scan to tolerate these variances. PR: ports/125840 Submitted by: Alex Stangl <alex@stangl.us> (maintainer) Notes: svn path=/head/; revision=217434
* Catch up with master 1.598.Mark Linimon2008-07-221-35/+15
| | | | Notes: svn path=/head/; revision=217283
* Catch up with master 1.75.Mark Linimon2008-07-211-8/+74
| | | | Notes: svn path=/head/; revision=217237
* Catch up with master 1.597.Mark Linimon2008-07-211-31/+63
| | | | Notes: svn path=/head/; revision=217236
* Update to 2.9.10.Joe Marcus Clarke2008-07-202-4/+52
| | | | | | | | | | | | | * Add some USE_GCC checks [1] * Check to make sure pkg-descr lines do not end with CRLF [2] * Warn against using != in assignments [2] * Check for a valid WWW syntax in pkg-descr [2] Requested by: gerald [1] kris [2] Notes: svn path=/head/; revision=217166
* - Update to 2.0.2Martin Wilke2008-07-193-325/+381
| | | | | | | | PR: 125773 Submitted by: maintainer Notes: svn path=/head/; revision=217133
* - Update maintainer mail adressMartin Wilke2008-07-173-3/+6
| | | | | | | | PR: 125543 Submitted by: Andy Kosela <akosela@andykosela.com> (maintainer) Notes: svn path=/head/; revision=216965
* - Sync with ports-mgmt/portupgradeSergey Matveychuk2008-07-161-1/+2
| | | | Notes: svn path=/head/; revision=216932
* - Update to 2.4.6Sergey Matveychuk2008-07-164-28/+6
| | | | | | | | | | * Many bugs was fixed * a new pkgdu utility shows installed packages disk usage PR: many Notes: svn path=/head/; revision=216930
* New port: reads the FreeBSD installed packaged DB.Wesley Shields2008-07-145-0/+34
| | | | | | | | PR: ports/125197 Submitted by: "Zane C.B." <vvelox@vvelox.net> Notes: svn path=/head/; revision=216841
* - Update to tb243_template_paefchen_v1Martin Wilke2008-07-124-12/+12
| | | | | | | | Submitted by: Aron Schlesinger Approved by: maintainer Notes: svn path=/head/; revision=216737
* - Update paefchen template [1] (fix bug in firefox3)Martin Wilke2008-07-116-10/+34
| | | | | | | | | | | | | - Fix OPTIONS handling [2] - Bump PORTREVISION PR: 125470 [2] Submitted by: Alex Kozlov <spam@rm-rf.kiev.ua> [2] Aron Schlesigner [1] Approved by: itetcu (maintainer) Notes: svn path=/head/; revision=216722
* - Update to 2.4.6Sergey Matveychuk2008-07-114-4/+7
| | | | | | | | * Bugs fixes. * A new utility - pkgdu. Display a disk usage for installed packages. Notes: svn path=/head/; revision=216691
* New feature: undefine variables.Alex Dupre2008-07-113-4/+6
| | | | | | | | PR: ports/125273 Submitted by: Yi-Jheng Lin <yzlin@cs.nctu.edu.tw> Notes: svn path=/head/; revision=216688
* - Update to 2.0.1Martin Wilke2008-07-073-10/+15
| | | | | | | | PR: 125265 Submitted by: Andy Kosela <andy.kosela@gmail.com> (maintainer) Notes: svn path=/head/; revision=216461
* Update to 2.9.9.Joe Marcus Clarke2008-07-052-3/+9
| | | | | | | | | | | Check for misuse of the %%XXXDIR%% constructs in order to help with the QA Tinderbox build reports. PR: 125037 Submitted by: leeym Notes: svn path=/head/; revision=216360
* Don't try to patch inexistent files if WEB_EXP in not on.Ion-Mihai Tetcu2008-07-016-0/+10
| | | | | | | | | | PR: ports/124929 [1], ports/124762 [2] Submitted by: Jona Joachim <jaj@hcl-club.lu>, Alex Kozlov <spam@rm-rf.kiev.ua> [2], lioux@ [1] Notes: svn path=/head/; revision=216103
* Fix pkg-plist with NOPORTDOCS=yesSergey Matveychuk2008-07-012-10/+10
| | | | Notes: svn path=/head/; revision=216091
* - Update to 2.4.4Sergey Matveychuk2008-07-013-28/+4
| | | | Notes: svn path=/head/; revision=216089
* Catch up with master 1.595.Mark Linimon2008-07-011-0/+30
| | | | Notes: svn path=/head/; revision=216057
* Upgrade ports-mgmt/portsearch from 1.3.1 to 1.3.2Vasil Dimov2008-06-272-4/+4
| | | | Notes: svn path=/head/; revision=215822
* - Drop mention of 4.10Pav Lucistnik2008-06-251-3/+1
| | | | | | | Submitted by: Eygene Ryabinkin <rea-fbsd@codelabs.ru> Notes: svn path=/head/; revision=215762