Ken Smith
ffd0e88f5d
Add entry for packages-8.3-release directory.
2012-03-03 05:04:47 +00:00
Eitan Adler
2eb318b31d
Fix r231300: Use correct test so we only bail out on error instead of on non-error.
...
Also, fix a style bug.
Submitted by: ache
Approved by: cperciva
MFC after: 1 month
2012-02-10 00:53:39 +00:00
Eitan Adler
839a18b056
Permit the use of relative paths for the prefix argument.
...
Remove an unnecessary cwd from created plists when -p is specified
PR: bin/145000
Submitted by: gcooper
Approved by: portmgr (flo)
MFC after: 1 month
2012-02-09 20:51:03 +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
389ae6c65d
Touch up some more small typos missed in the previous round.
...
Reported by: Ben Kaduk <minimarmot@gmail.com> et al.
2012-01-05 21:36:45 +00:00
Ulrich Spörlein
3df5ecac8c
Spelling fixes for usr.sbin/
2011-12-30 10:58:14 +00:00
Ulrich Spörlein
f76b319989
Reencode files to UTF-8. Drop CP1252 em-dash.
2011-12-30 00:59:08 +00:00
Dimitry Andric
9a3df8edd1
In usr.sbin/pkg_install/updating/main.c, use the size of the destination
...
buffer as size argument to strlcpy(), not the length of the source.
MFC after: 1 week
2011-12-17 23:35:46 +00:00
Eitan Adler
14517324d0
- add a missing "be" and "in"
...
- fix other errors introduced when committing r226436
- add 'function' to a sentence where it makes sense
Submitted by: delphij
Submitted by: dougb
Submitted by: jhb
Approved by: dougb
Approved by: jhb
2011-11-11 22:27:09 +00:00
Xin LI
5b1fd5dbbf
Staticify elide_root() for now to fix build.
2011-10-24 21:38:25 +00:00
Ed Maste
6f8193d2c4
Avoid printing // for packages that install to /
...
I have some packages that install to / (for whatever reason). Right now we
print entries of the form //path/to/file when listing files (pkg_info -L,
pkg_info -g etc.) This change avoids printing the redundant / .
2011-10-24 18:29:50 +00:00
Eitan Adler
36daf0495a
- change "is is" to "is" or "it is"
...
- change "the the" to "the"
Approved by: lstewart
Approved by: sahil (mentor)
MFC after: 3 days
2011-10-16 14:30:28 +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
Sergey Kandaurov
566dafa360
Print the package name on deletion errors.
...
It appears this was already done in NetBSD a decade ago, hence
I just reuse the change (except our code is bad styled).
PR: bin/160516
Approved by: portmgr
Approved by: re (kib)
Obtained from: NetBSD
2011-09-16 09:09:58 +00:00
Florent Thoumie
2eb4b00cbb
Backout libinstall.a -> libpkg commit.
...
Discussed with: erwin, brooks, bapt
2011-05-17 19:11:47 +00:00
Ed Maste
1c56edaf18
Remove $Log$ keyword and associated history, which can cause annoyance in
...
diffs in some cases. Revision control tools have a history command to
obtain this information.
2011-03-31 14:33:27 +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
Ulrich Spörlein
53f563fcfc
mdoc: use mdoc spelling of Umlauts
2010-05-27 13:56:53 +00:00
Ulrich Spörlein
0b31f1f731
mdoc: move remaining sections into consistent order
...
This pertains mostly to FILES, HISTORY, EXIT STATUS and AUTHORS sections.
Found by: mdocml lint run
Reviewed by: ru
2010-05-13 12:08:11 +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
Florent Thoumie
b2d7e80ed1
Bump PKG_INSTALL_VERSION to 20100403.
2010-04-03 10:57:13 +00:00
Florent Thoumie
fc6d543f21
Fix pkg_delete, check if the file we're trying to delete is a
...
symlink before complaining that it doesn't exist. Typical case
would be a leftover library symlink that's left over after the
actual library has been removed.
Reported by: tabthorpe
2010-04-03 10:55:11 +00:00
Florent Thoumie
094f117522
Various fixes.
...
- Replace hardcoded INDEX version. [1]
- Fix a buffer overlap. [2]
- Remove empty package when fetching fails and -K is used. [3]
- Remove useless chmod2() after mkdtemp(3). [4]
- Replace mkdir(1) call with mkdir(2). [5]
- Get rid of some vsystem() calls.
- Switch from lstat(2) to open(2) in fexists().
- Try rename(2) in move_file() first.
- Bump PKG_INSTALL_VERSION to 20100401.
PR: bin/145101 [1], bin/139492 [2], bin/144919 [3]
bin/144920 [4], bin/144921 [5]
Submitted by: gcooper [1,2,3,4,5]
2010-04-01 14:27:29 +00:00
Ulrich Spörlein
63d46d1d5e
Fix several typos in macros or macro misusage.
...
Found by: make manlint
Reviewed by: ru
Approved by: philip (mentor)
2010-03-12 10:01:06 +00:00
Florent Thoumie
7735b3839a
- Add support for UPDATING remote fetching.
...
- Reorganize EXAMPLES section in pkg_updating(1).
- Style fixes.
- Bump PKG_INSTALL_VERSION to 20100122.
Submitted by: beat
MFC after: 1 week
2010-01-22 23:32:10 +00:00
Ed Schouten
71ccf09269
The last big commit: let usr.sbin/ use WARNS=6 by default.
2010-01-02 11:07:44 +00:00
Ed Schouten
7b4f22d5ed
Add missing `void' keywords.
2009-12-29 22:33:53 +00:00
Florent Thoumie
9e545c0216
- Bump PKG_INSTALL_VERSION to 20090902 after dougb's changes.
...
- Change the comment to say that version must be changed when a
non-cosmetic change is made.
2009-09-02 13:58:15 +00:00
Doug Barton
9e2bcb5a69
Add support for INDEX-9 [1]
...
While I'm here, strip off support for FreeBSD 5.x.
Submitted by: Alexey Shuvaev <shuvaev@physik.uni-wuerzburg.de> [1]
2009-08-31 17:50:33 +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
Brian Somers
56991865e3
Disable r194497 for now. It doesn't work well with ports-mgmt/tinderbox.
...
Approved by: re (ken)
2009-07-05 06:14:59 +00:00
Brian Somers
ef26f51cb1
Don't imply that only FTP urls are supported when we can't fetch
...
a package.
Approved by: re (kib)
MFC after: 3 weeks
2009-06-30 20:53:57 +00:00
Brian Somers
f345b422d1
When running pkg_add -r, check & install our dependencies for each
...
package rather than expecting our top level package to get all of
the dependencies correct.
Previously, the code depended on the top level package having all
of the pkgdep lines in +CONTENTS correct and in the right order,
but that doesn't always happen due to code such as this (in
security/gnutls/Makefile):
.if (defined(WITH_LZO) || exists(${LOCALBASE}/lib/liblzo2.so)) && !defined(WITHOUT_LZO)
LIB_DEPENDS+= lzo2:${PORTSDIR}/archivers/lzo2
....
With such conditional dependencies, my 'sophox-packages' package won't
install. The dependency tree looks like this:
sophox-packages
...
x11/gnome2
x11/gnome-applets
net/libgweather
devel/libsoup
security/gnutls
security/libgcrypt
security/libgpg-error
...
x11/gnome2
archivers/file-roller
archivers/gtar
archivers/lzop
archivers/lzo2
...
gnutls doesn't depend on lzo2 initially, but lzo2 is dragged into the
mix via other dependencies and is built by the initial 'make'. The
subsequent package generation for gnutls adds a pkgdep line for lzo2
to gnutls' +CONTENTS but the pkgdeps in sophox-packages' +CONTENTS
has gnutls *before* lzo2.
As a result, sophox-packages cannot install; gnutls fails because lzo2
is missing, 82 more packages fail because gnutls is missing and the
whole thing spirals into a super-confusing mess!
MFC after: 3 weeks
2009-06-19 17:07:38 +00:00
Jilles Tjoelker
75cf69394b
Fix segfault when giving invalid long option to pkg_info.
...
PR: bin/133473
Submitted by: Rafal Grodzinski
Approved by: ed (mentor)
MFC after: 1 week
2009-06-01 21:26:52 +00:00
Florent Thoumie
aa33fa5a86
Skip @pkgdep if there's no argument.
...
Submitted by: pav
MFC after: 1 week
2009-05-19 14:26:41 +00:00
Ken Smith
b0089534da
Add release package directories for 6.4 and 7.2.
2009-04-15 17:14:43 +00:00
Chin-San Huang
1ce9d649ec
Use full name (noticed by: ru@
2009-01-11 13:56:55 +00:00
Florent Thoumie
853e670bb4
- Backout latest changes (follow symlinks: r186496, r186518).
...
- Bump PKG_INSTALL_VER to 20090106.
2009-01-06 19:00:12 +00:00
Chin-San Huang
a2ea8684d7
- s/no-scripts/no-script/
...
PR: docs/127732
Submitted by: TerryP <BigBoss1964@gmail.com>
MFC after: 3 days
2009-01-04 07:29:04 +00:00
Florent Thoumie
7e410be8f0
Fix memory leaks introduced in last commit.
...
Bump version to 20081227.
Reported by: gcooper
Submitted by: Andrea Barberio <insomniac@slackware.it>
MFC after: 1 month
2008-12-27 14:34:33 +00:00
Florent Thoumie
58d93e6134
Follow symlinks when deleting directories.
...
Bump PKG_INSTALL_VER to 20081225 (Merry Christmas \o/).
PR: bin/54446
Submitted by: Andrea Barberio <insomniac@slackware.it>
MFC after: 1 month
2008-12-25 16:59:35 +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
Poul-Henning Kamp
419859bd08
Use humanize_number to report pen-sizes so people don't have to count
...
the digits when trying to install openoffice.
2008-08-07 14:48:35 +00:00
Giorgos Keramidas
ce489a99f0
Enable the -n option of pkg_create(1).
...
The changes to make the option work are already in place, but I missed
the patch hunk that adds it to the getopt() option-handling loop.
Pointy hat: keramida
Approved by: flz
MFC after: 1 week
2008-07-08 03:21:05 +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
7fc2d1dfc0
Style fix (use naked commands).
...
Reported by: obrien
2008-06-16 09:15:27 +00:00