Ken Smith
ffd0e88f5d
Add entry for packages-8.3-release directory.
2012-03-03 05:04:47 +00:00
Eitan Adler
2394cc2228
X11BASE has been deprecated for a long time and will die soon
...
Approved by: x11 (eadler)
Approved by: brucec
MFC after: 1 week
2012-01-09 00:48:19 +00:00
Ulrich Spörlein
3df5ecac8c
Spelling fixes for usr.sbin/
2011-12-30 10:58:14 +00:00
Ken Smith
8a3b6cc1e1
Shift head from 9.0-CURRENT to 10.0-CURRENT in preparation for releasing
...
it from the 9.0-RELEASE release cycle code freeze.
Approved by: re (implicit)
2011-09-26 02:27:04 +00:00
Florent Thoumie
2eb4b00cbb
Backout libinstall.a -> libpkg commit.
...
Discussed with: erwin, brooks, bapt
2011-05-17 19:11:47 +00:00
Ken Smith
b3a12a33fd
Add package directories used for the upcoming 8.2 and 7.4 releases,
...
and catch up on a few from previous releases.
2010-12-22 15:44:25 +00:00
Florent Thoumie
1784fdea2e
- Add support for xz compression to pkg_create, bzip2 remains the default
...
compression algorithm.
- Bump PKG_INSTALL_VERSION to 20101012.
Submitted by: mm
MFC after: 1 month
2010-10-12 10:04:44 +00:00
Nathan Whitehorn
89513bce11
Use MACHINE_ARCH instead of MACHINE as the directory to fetch packages
...
from. Packages are architecture dependent, not machine dependent.
2010-08-30 21:58:52 +00:00
Florent Thoumie
762c7db2e8
- Take libinstall.a out of pkg_install and make it a proper shared library.
...
- Rework the wrapper support to check libpkg version as well as pkg_install
version.
- Add libfetch to _prebuild_libs.
- There are no new features introduced.
Notes: the API is not stable, so basically, do not use libpkg in your
projects for now. Also there's no manpage for libpkg yet, because the API
will change drastically. I repeat, do not use libpkg for now.
2010-04-23 11:07:43 +00:00
Ed Schouten
7b4f22d5ed
Add missing `void' keywords.
2009-12-29 22:33:53 +00:00
Ken Smith
521bb8f319
Oops. Needed to adjust a little bit more of the line for packages-8-stable
...
now that we're prepping for 8.0's release.
Submitted by: pluknet at gmail dot com
Pointy hat: kensmith
2009-08-24 03:04:13 +00:00
Ken Smith
cf48cc9f69
Make head 9.0-CURRENT in preparation for lifting code freeze.
...
Approved by: re (implicit)
2009-08-22 23:44:37 +00:00
Ken Smith
b0089534da
Add release package directories for 6.4 and 7.2.
2009-04-15 17:14:43 +00:00
Florent Thoumie
24f6714d86
Add package directory for 7.1-RELEASE in head as well as stable/7.
2008-12-25 15:44:10 +00:00
Brooks Davis
962b77f943
Display usage when pkg_add is called with no arguments.
...
PR: bin/121093
Submitted by: volker
Approved by: portmgr (linimon)
MFC after: 3 days
2008-10-17 15:10:45 +00:00
Florent Thoumie
74572e9e63
Remove support for RELENG_4 (__FreeBSD_version < 500039).
...
MFC after: 1 day
2008-06-16 23:41:11 +00:00
Florent Thoumie
0b99032d09
- Add long options to pkg_install.
...
- Remove check for '-?' as it's not listed in authorized options.
- Bump PKG_INSTALL_VERSION to 20080530.
2008-05-30 14:26:09 +00:00
Ken Smith
ecdaaa7050
Sync list of directories to look for packages in to current releases
...
available.
MFC after: 3 days
2008-02-26 14:35:01 +00:00
Kirill Ponomarev
2cd24b447e
Add -i option for package installation without fetching and
...
installing its dependencies.
PR: bin/117065
Submitted by: Vladimir Ermakov <samflanker@gmail.com>
MFC after: 14 days
2007-11-10 09:40:39 +00:00
Kevin Lo
784bddbc5b
Cleanup of userland __P use
2007-11-07 10:53:41 +00:00
Ken Smith
c15e0967df
To honor the birth of RELENG_7 bump HEAD to 8.0-CURRENT.
...
Approved by: re (implicit)
2007-10-11 04:28:08 +00:00
Pav Lucistnik
103fcbb3ba
Fix previous rev.: don't step behind the end of memory we allocate
2007-02-01 15:52:47 +00:00
Ade Lovett
1bc1069b83
Remove hard-coded limit (200) on maximum number of packages that can be
...
added with a single invocation of pkg_add, replacing it with something
rather more dynamic.
Approved by: portmgr (pav)
Tested by: full pointyhat package run
MFC after: 1 week
2007-01-31 22:34:45 +00:00
Ruslan Ermilov
37085ccacf
Sync usage() with manpage's SYNOPSIS.
2006-09-29 17:17:53 +00:00
Ken Smith
3aaadbcce2
Oops. Catch up on the last couple of releases and prepare for the next
...
one.
2006-09-26 14:51:33 +00:00
David E. O'Brien
3b26c608f8
Allow variable amounts of verbosity.
2006-06-12 22:39:32 +00:00
Poul-Henning Kamp
05380e0125
Add -F option to not fail on already installed packages.
...
Submitted by: Eugene Grosbein <eugen@grosbein.pp.ru>
2006-03-09 14:49:19 +00:00
Florent Thoumie
cd2407daad
Add -K option to pkg_add and pkg_info.
...
This option saves packages to PKGDIR (if defined or current directory by default)
as they are downloaded.
Silent a warning when -n is used and package has a +DISPLAY file.
Approved by: krion
MFC after: 1 week
2006-01-09 18:27:21 +00:00
Kirill Ponomarev
3d4e952eef
Add -P flag, it does the same as the -p option, except that the
...
given prefix is also used recursively for the dependency packages,
if any. If the -P flag appears after any -p flag on the
command line, it overrides it's effect, causing pkg_add to use the
given prefix recursively.
PR: bin/75742
Submitted by: Frerich Raabe <raabe AT kde DOT org>
MFC after: 3 days
2005-11-12 11:45:01 +00:00
Murray Stokely
663f4b128b
Look for packages in packages-6.0-release or packages-6-stable, as
...
appropriate.
Approved by: re (scottl@)
Reviewed by: portmgr (kris@)
2005-10-27 18:34:51 +00:00
Ken Smith
3658b4c610
Fix an oops on FBSD-version for packages-5-stable I made in previous
...
commit.
Pointy hat: kensmith
Approved by: re (implicit)
2005-07-11 16:16:24 +00:00
Ken Smith
f0776623a6
Prepare for packages-7-current. While here retro-fit packages-5.4-release
...
which probably should have been done a while ago.
Approved by: re (implicit)
2005-07-11 15:56:25 +00:00
Joe Marcus Clarke
d19a25b5b3
Change the PATH for pkg_add to be the same used for pointyhat package builds.
...
This will give our users and porters a more consistent experience between
installing ports and installing packages.
Discussed with: portmgr
2005-03-19 19:20:19 +00:00
David E. O'Brien
73f69794ee
Set the real limits on 5-current, add 5-stable, add 6-current.
2004-10-17 14:36:30 +00:00
Alexander Kabaev
617e8b416d
Downgrade WARNS level to more tolerable value. Attempt to fix
...
casts as lvalue usage whenever possible.
2004-07-28 07:19:15 +00:00
Oliver Eikemeier
b9ba84598d
- pkg_add spawns itself as argv[0] when installing dependent packages, to
...
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
2004-06-29 19:06:42 +00:00
Bruce A. Mah
b98176bc0b
Add 4.10 and 5.2.1 entries so that pkg_add -r fetches from the right
...
package sets.
PR: 66251
Submitted by: eik
2004-05-08 23:45:31 +00:00
Ken Smith
e77e03a08a
Add command line option for chrootdir, all pkg_add(8) operations will be
...
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)
2004-03-01 21:58:21 +00:00
Bruce A. Mah
2b5c94a768
Catch up with reality with respect to the location of 4.8, 4.9,
...
5.0, 5.1, 5.2, and CURRENT packages.
2004-01-02 00:13:20 +00:00
Bruce A. Mah
b07931e581
Teach pkg_add -r how to find 4.7-RELEASE packages with an appropriate
...
osreldate.
(Actually, due to differences in package compression formats, I'm
not sure that a -CURRENT pkg_add -r will do the right thing in
this case, once it finds them.)
2002-10-08 05:15:21 +00:00
Bruce A. Mah
7b89cd2657
Fix minor off-by-one error.
...
Submitted by: jhb
2002-09-09 21:21:34 +00:00
Bruce A. Mah
bc49694c45
Make pkg_install go to the right place for 4.6-RELEASE and 4.6.2-RELEASE
...
packages.
Pointed out by: obrien
Reviewed by: jhb
2002-09-09 19:44:17 +00:00
David E. O'Brien
1ab94a83c2
Find remaining hardcoded gzip bits and change to bzip2 bits.
...
Mark with XXX so someone that cares about being able to handle either
bziped or gziped packages knows where the remaining nits are.
2002-08-25 01:00:16 +00:00
David E. O'Brien
0d8875ff46
Fix SCM ID's.
2002-04-01 09:39:07 +00:00
David E. O'Brien
150e0ea706
Increase the number of packages that can be installed by an order of
...
magnitude. Geez, this is Unix, what is with the arbitrary needless
constants.
2001-10-16 06:42:06 +00:00
Maxim Sobolev
d100deb8cc
WARNS=2 cleanup.
...
Tested on: i386, alpha
MFC after: 2 weeks
2001-10-10 06:58:42 +00:00
Maxim Sobolev
9ad4f43281
Fix segfault introduced in previous commit (when adding local packages).
2001-09-17 13:37:50 +00:00
Bill Swingle
0fe2f8cb85
Fixes problem with pkg_add -r when adding multiple pkgs.
...
Reviewed by: chris
2001-09-07 22:32:37 +00:00
David E. O'Brien
0dd1c79320
Reduce private "lesser known" function redirection to improve clarity.
...
Approved by: jkh
2001-08-13 04:18:30 +00:00
David E. O'Brien
43b866b0ed
The security officer requested this be backed out for discussion.
2001-07-28 04:44:09 +00:00