summaryrefslogtreecommitdiff
path: root/pkgtools/pkgdepgraph
AgeCommit message (Collapse)AuthorFilesLines
2004-10-07* Make PKGSRC_TOPDIR a private variable by renaming it to _PKGSRC_TOPDIR,jlam1-3/+3
as it's only used internally by bsd.prefs.mk. * Make _PKGSRCDIR a public variable by renaming it to PKGSRCDIR. Also, generate its value from ${_PKGSRC_TOPDIR} so it's less fragile than the old method of stripping off the last two components of ${.CURDIR}. PKGSRCDIR may now be used after bsd.prefs.mk is defined. * Change all references to _PKGSRCDIR to PKGSRCDIR.
2004-07-28Bump date for previous.wiz2-3/+3
2004-07-28Teach pkgdepgraph now to understand the output of lintpkgsrc -g. Thisatatat4-13/+36
particular data set has the current directories under ${pkgsrc} for all known packages, unlike the location of where the package lived when you built it. It may have moved, you see. This makes it possible for pkgdepgraph to rebuild (so to speak) packages that have moved. And now there are 2.7.
2004-06-06regen.wiz1-7/+7
2004-06-06Fix two xrefs, and remove trailing whitespace.wiz1-5/+5
2004-06-05Add "impact" as a consideration for rebuilding packages. Impact canatatat4-23/+186
either indicate how involved the rebuild process is (how many interrelated packages can be deleted/rebuilt at once) or specific packages you do not want to impact (like...perl?). Welcome to 2.6.
2004-04-11Add a pre-generated .0 manpage; only regen under SunOS or AIX.jschauma2-13/+328
2004-01-29Put post-install message into MESSAGE, so that people usingsnj3-26/+12
PKGSRC_MESSAGE_RECIPIENTS will get a copy mailed to them. Okayed by jmmv and wiz.
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2003-08-30Prepare for pkgviews by making sure that passing VIEW-INSTALL orjlam1-9/+1
VIEW-DEINSTALL to the INSTALL/DEINSTALL scripts don't cause errors.
2003-07-17s/netbsd.org/NetBSD.org/grant1-3/+3
2003-04-30Add a new -m option that prints sh script which invokes make for eachatatat3-67/+274
"interesting" package, where "interesting" is defined by the other options given on the command line. Rework the "rebuild", "delete", and "fetch" output modes to use a new generic routine invoked with (the new) -m option. Other new options are: -a all packages (to make more packages becoming "interesting") -e adds an "existence check" to each of the lines of sh(1) style output (ala the current rebuild output) -r reverses the order in which the packages are listed -S package selects a subgraph of the installed package base -s print a simple list of packages instead of sh commands Also: fix a dreadful bug in the group number assignment loop. Groups are now assigned more properly, meaning that wholely selected subgraphs (via the new -S option) work. Welcome to version 2.5.
2003-04-16Drop a trailing space, and simplify some mdoc.wiz1-4/+4
2003-03-29Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz.jmmv1-2/+2
2003-03-26Stuffing the value of MAKE into the environment seems to haveatatat2-8/+6
undesirable side-effects, so simply call $make directly. Jump to 2.4.
2003-03-25Add -F for "fetch" output, so that you can pre-fetch all the distfilesatatat3-41/+129
you need and then build off-line (suggested by smb). Add -M to set the name/location of the make program (for the -F and -R output formats) to be used on systems where the make program is not the one you want (suggested by seb). Clean up a bug with subgraph assignment and counting. Move to 2.3.
2003-03-14Add -A, which causes -R to print a list of pkg_add commands (insteadatatat3-79/+142
of commands to rebuild directly from pkgsrc), -K (as with lintpkgsrc) as a way of specifying the PKG_PATH (the environment is also checked), and convert to using Getopt::Long, so that we can stuff multiple values for "out of date" packages or packages to be "updated" into arrays. Now you can make more than one package be out of date, etc.
2003-03-10Bump pkgdepgraph to 2.1. New stuff:atatat2-30/+74
* label the graph and the subgraphs (feature) * rework subgraph identification in the main loop (feature) * better handling of recoloring graphs that contain subgraphs (bugfix) * be a little more picky about what *might* be a pkg directory (bugfix via seb) * fix a bug in error reporting in canonification routine (bugfix via seb) * add comments (bugfix? feature?)
2003-03-06Jump to pkgdepgraph v2.0.atatat4-58/+306
New features (excerpts from the man page, not in proper order, so that you can better see how it fits together): -L Limit the graph to those packages that are out of date or ulti- mately depend on some package that is. -D Instead of the standard graph output, pkgdepgraph lists the packages that need to be deleted, in ``least required first'' order, so that they can be deleted without any dependency prob- lems. -R Instead of the standard graph output, emits a series of sh(1) commands that will rebuild all the out of date packages by re- building all the deleted leaf packages. -U package Generates a graph with only the out of date dependencies of package marked in red (ie, packages that are out of date but not dependencies of package will not be considered out of date). -f Force a rebuild of all dependent packages. This option is for use in conjunction with the -U option to force a rebuild of all the dependencies of a package to be updated. -O package Marks package as out of date so that you can see the impact of deleting dependent packages and rebuilding everything. -t target Changes the target of the -R output from ``install'' to target in case you want to ``make package'' or some other target. -c Inserts a ``make clean'' command in the set of instructions to rebuild packages (see the -R option) after they are installed. -C Asserts -c and adds ``CLEANDEPENDS=YES'' so that all rebuilt de- pendencies are cleaned as well. The code was also cleaned up a bit, some unused or otherwise useless variables were culled, the "multiple box" phenomenon of subgroups is fixed, and the examples were all cleaned up to take advantage of all the new features. Hey ma! Now I can update my pkgs in four easy steps! $ lintpkgsrc -i > pkgdepgraph.in $ pkgdepgraph -R pkgdepgraph.in > rebuild.sh $ pkg_delete `pkgdepgraph -D pkgdepgraph.in` $ sh rebuild.sh
2003-01-31Make excessive use of :Q in MAKE_ENV to placate pkglintabs1-2/+2
2002-12-29Remove NO_PATCH, add a "do-extract" target, and tweak the "do-build"atatat1-5/+8
target in a related manner. This allows one to maintain local patches vs this pkg.
2002-12-26Drop a traling space, add abbreviation dots to an abbreviation, and replacewiz1-12/+12
"\>" with (better convertible) "\*[Gt]".
2002-12-26Upgrade pkgdepgraph to 1.1. New features are:atatat4-44/+191
(1) Graph recoloring, so that as you delete and rebuild bunches of packages, you can see how far along you are (I use this a *lot*). (2) Subgraph grouping (based on work done by David Maxwell) which clusters groups of packages with common prefixes in their names inside a box. (3) The explicit dependency on the graphviz pkg has been removed so that pkgdepgraph can be run on "client machines" that only wish to generate graph data, not to view it (ie, machines that have packages installed but which do not wish to incur the overhead of X or the other stuff that graphviz requires). The fact that you should install graphviz *somewhere* so that you can view the data is noted by the new INSTALL script. Some useless comments have also been removed.
2002-11-07pkgdepgraph prints out a "dot" language specification of theatatat5-0/+433
inter-dependencies of your installed packages. The "dot" language is interpreted by the graphviz package to make graphs. There are several uses for such information. (1) A graphical representation of information is always good to look at. (2) The output itself can be sorted and filtered to provide a list of packages to delete in order that they can be rebuilt (to replace out-of-date components). (3) You can visually estimate the work involved in (or impact of) removing a given component in order to replace it.