summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pkg_install
Commit message (Collapse)AuthorAgeFilesLines
* Add -o/-O options to pkg_version:krion2005-07-274-27/+57
| | | | | | | | | | -o Show the origin recorded on package generation instead of the package name. -O Only list packages whose registered origin is origin. Based on PR: bin/78640 Submitted by: Marcus Grando <marcus at corp dot grupos.com.br>, flz
* Fix an oops on FBSD-version for packages-5-stable I made in previouskensmith2005-07-111-1/+1
| | | | | | | commit. Pointy hat: kensmith Approved by: re (implicit)
* Prepare for packages-7-current. While here retro-fit packages-5.4-releasekensmith2005-07-111-1/+3
| | | | | | which probably should have been done a while ago. Approved by: re (implicit)
* remove a few uses of the word `really'jmg2005-06-272-4/+3
| | | | | | Reviewed by: hrs Approved by: re (scottl) MFC after: 1 week
* Fix last commit.ru2005-06-221-2/+3
| | | | Approved by: re (blanket)
* Implement @noinst field which has at the moment the same meaning andkrion2005-06-145-2/+24
| | | | | | | | function as @comment has. But will be valid only for files and not for md5 sums, rcsid's and comments in the future. Submitted by: flz Approved by: re@ (scottl)
* Markup fixes.ru2005-06-142-4/+5
| | | | Approved by: re (blanket)
* Remove kludges intended to support src trees with partial obj trees.des2005-06-101-7/+1
| | | | Discussed with: ru
* Add -R modifier for the mode when pkg_create(8) creates package filesobomax2005-06-064-9/+70
| | | | | | | | from the locally installed package. When this modifier is specified pkg_create(8) will also create package files for all packages on which that locally installed package depends. MFC after: 5 days
* Add an -I option to pkg_version:cperciva2005-05-244-4/+15
| | | | | | | | | | | | -I Use only the index file for determining if a package is out of date. This is much faster than using the version number from a port's Makefile, at the expense of potentially giving an incor- rect result if the index file is out of date. Without this option, the index file is only consulted if "make -V PKGNAME" cannot be used. Approved by: portmgr (krion)
* Change the PATH for pkg_add to be the same used for pointyhat package builds.marcus2005-03-191-1/+1
| | | | | | | This will give our users and porters a more consistent experience between installing ports and installing packages. Discussed with: portmgr
* Expand contractions.ru2005-02-131-3/+3
|
* Expand *n't contractions.ru2005-02-136-11/+11
|
* Sort sections.ru2005-01-182-46/+46
|
* Added the EXIT STATUS section where appropriate.ru2005-01-171-1/+2
|
* Scheduled mdoc(7) sweep.ru2005-01-111-6/+6
|
* Add -q to usage() and mark the "index" argument as optional.ru2005-01-111-1/+1
|
* Update the INDEX file to INDEX-6paul2005-01-041-5/+5
|
* Use INDEX-6 for versions of FreeBSD > 600000paul2005-01-041-1/+3
|
* NOCRYPT -> NO_CRYPTru2004-12-212-2/+2
|
* For variables that are only checked with defined(), don't provideru2004-10-241-1/+1
| | | | any fake value.
* Add a -q flag to pkg_version. It suppresses the output of <,=,>.obrien2004-10-187-8/+23
| | | | This makes it possible to "portupgrade `pkg_version -q -l '<'`".
* Set the real limits on 5-current, add 5-stable, add 6-current.obrien2004-10-171-1/+3
|
* Don't put DEBUG to CFLAGS, we have the standard DEBUG_FLAGS for this.ru2004-08-127-8/+6
|
* typoeik2004-08-111-1/+1
| | | | Approved by: ru
* FWIIW, make the `test' target in pkg_install/version actually work.eik2004-08-111-1/+1
|
* Join the 21st century: Cryptography is no longer an optional componentcperciva2004-08-062-2/+0
| | | | | | | | | | of releases. The -DNOCRYPT build option still exists for anyone who really wants to build non-cryptographic binaries, but the "crypto" release distribution is now part of "base", and anyone installing from a release will get cryptographic binaries. Approved by: re (scottl), markm Discussed on: freebsd-current, in late April 2004
* Use the length modifier 'll' instead of 'q' to print long longs.stefanf2004-07-283-4/+4
|
* Downgrade WARNS level to more tolerable value. Attempt to fixkan2004-07-287-14/+16
| | | | casts as lvalue usage whenever possible.
* Eliminated double whitespace.ru2004-07-032-2/+2
|
* Mechanically kill hard sentence breaks.ru2004-07-025-70/+139
|
* - pkg_add spawns itself as argv[0] when installing dependent packages, toeik2004-06-2927-61/+97
| | | | | | | | | | | | | | | | | | enable the use as a port on older systems - use absolute paths in all calls to external programs, to account for strange PATH settings - use INDEX or INDEX-5 depending on FreeBSD version, to enable the use on FreeBSD 4.x as a port. - conditionalize all 4.x/5.x differences on __FreeBSD_version, so that the pkg_install tools can be kept in sync on 4.x and 5.x - Bump PKG_INSTALL_VERSION Reviewed by: portmgr (bento run) MFC after: 4 weeks
* - pkg_info: flag -r: (show packages this packages depends on (documentation ↵eik2004-06-2913-81/+110
| | | | | | | | | | | | | | | | change)) - pkg_info: new flag -j (show the requirements script) - pkg_info: fix verbose output when used on packages - better handling of corrupt entries in /var/db/pkg - differ between corrupt entires and packages not installed - various small fixes PR: 56989, 57016, 57029, 26468
* - pkg_create: new flag -S (clean room installation)eik2004-06-295-33/+74
| | | | | | - pkg_create: checksum meta files too PR: 66032
* - match package version numbers with relational operatorseik2004-06-2913-49/+403
| | | | | | | | | | | | | | - use glob patterns when matching packages by origin - csh-style {...} choices in glob matching - pkg_info: new flag -E (list matching package names only) - pkg_version: new flag -T (test if a given name matches a pattern) - new flag -X (interpret pattern as an extended regular expression) PR: 56961
* - complete rewrite of the version number parsing code, restoring ↵eik2004-06-294-87/+265
| | | | | | | | | | compatibiliy of 5.x with 4.x and portupgrade - parse version numbers of ports containing an underscore followed by a number correctly - handle special strings pl, alpha, beta, pre and rc PR: 56961
* Markup and punctuation nits.ru2004-06-051-8/+8
|
* Add 4.10 and 5.2.1 entries so that pkg_add -r fetches from the rightbmah2004-05-081-1/+3
| | | | | | | package sets. PR: 66251 Submitted by: eik
* When invoking tar, make sure the mode option (-x) is first.kientzle2004-04-081-7/+6
|
* Synopsis fixes:cperciva2004-03-302-12/+8
| | | | | | | | | | * `pkg_info -flags' needs either `-a' or a package name. [1] * Add -Q option to manual page. * Update `usage:' to match the manual page. PR: misc/64786 [1] Reviewed by: ru MFC after: 3 days
* Add command line option for chrootdir, all pkg_add(8) operations will bekensmith2004-03-012-3/+39
| | | | | | | | | | done inside of chroot(2) to chrootdir. Added to help with sysinstall(8) support of install to alternate root but possibly useful for setting up jails, etc. No objection from: portmgr@ Style(9) abuse due to: entire program violates style(9) Approved by: rwatson (mentor)
* This is an initial whitespace cleanup commit, new content to follow.kensmith2004-03-011-19/+38
| | | | | | Adding hard line breaks at the end of sentences. Approved by: rwatson (mentor)
* Instead of bogusly complaining about odd file names, handle them properlydes2004-01-241-11/+27
| | | | | | by escaping all suspicious characters. MFC after: 3 days
* Try to apply consistent indentation.des2004-01-241-20/+19
|
* - Properly build both crypto and non-crypto versions of theru2004-01-178-28/+10
| | | | | | | package management tools. - Drop redundant dependency of pkg_create(1) and pkg_delete(1) on crypto libraries now that they do not link with libfetch.
* Replaced black magic with white magic.ru2004-01-171-5/+2
|
* Catch up with reality with respect to the location of 4.8, 4.9,bmah2004-01-021-1/+6
| | | | 5.0, 5.1, 5.2, and CURRENT packages.
* Fix a case of undefined behavior due to overlapping buf objects inschweikh2003-12-231-2/+3
| | | | | | | | snprintf (buf, size, fmt, buf, etc). This only works by chance with our libc, but fails (with a truncated string) on e.g. glibc. Okayed by: sobomax MFC after: 1 week
* Correct truncation detection after use of snprintf: The case wherenectar2003-12-172-5/+5
| | | | exactly one character was truncated was not detected.
* Clarify the order of arguments passed to the pre-/post-install scriptroam2003-08-261-1/+1
| | | | | | | | in the description of the pkg_create -i command-line option. PR: 55477 Submitted by: Eric van Gyzen <vangyzen@stat.duke.edu> MFC after: 5 weeks
OpenPOWER on IntegriCloud