| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
Notes:
svn path=/head/; revision=257444
|
| |
|
|
| |
Notes:
svn path=/head/; revision=228990
|
| |
|
|
|
|
|
| |
Discussed with: erwin, brooks, bapt
Notes:
svn path=/head/; revision=222035
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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.
Notes:
svn path=/head/; revision=207113
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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]
Notes:
svn path=/head/; revision=206043
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=194497
|
| |
|
|
|
|
|
| |
the digits when trying to install openoffice.
Notes:
svn path=/head/; revision=181376
|
| |
|
|
| |
Notes:
svn path=/head/; revision=132799
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=131285
|
| |
|
|
|
|
|
| |
Requested by: jhb
Notes:
svn path=/head/; revision=96392
|
| |
|
|
|
|
|
|
|
|
|
| |
you may not use string concatination with __FUNCTION__, replace all occurances
of:
__FUNCTION__ ": error string"
with:
"%s: error string"
Notes:
svn path=/head/; revision=96388
|
| |
|
|
| |
Notes:
svn path=/head/; revision=93520
|
| |
|
|
|
|
|
|
|
| |
easily browse its contents.
Noted by: Antoine
Notes:
svn path=/head/; revision=86757
|
| |
|
|
|
|
|
|
| |
Submitted by: "Andrew L. Neporada" <andr@dgap.mipt.ru>
MFC after: 3 days
Notes:
svn path=/head/; revision=86402
|
| |
|
|
|
|
|
|
|
| |
PR: 30843
Submitted by: Vladimir B. Grebenschikov <vova@express.ru>
MFC after: 2 weeks
Notes:
svn path=/head/; revision=84795
|
| |
|
|
|
|
|
|
| |
Tested on: i386, alpha
MFC after: 2 weeks
Notes:
svn path=/head/; revision=84745
|
| |
|
|
|
|
|
|
|
|
|
|
| |
- fix a harmless bug in match_installed() function introduced in my last
commit;
- uniformely reorder includes across files.
Submitted by: Garrett Rooney <rooneg@electricjellyfish.net>
Not objected by: jkh, -ports
Notes:
svn path=/head/; revision=74699
|
| |
|
|
|
|
|
|
|
|
|
|
| |
concerning where they're taking place.
Switch from [r]index() to str[r]chr() functions, which are more ISO
compliant.
Prompted by: Edward Welbourne <eddy@vortigen.demon.co.uk>
Notes:
svn path=/head/; revision=67429
|
| |
|
|
| |
Notes:
svn path=/head/; revision=50479
|
| |
|
|
|
|
|
|
| |
stuff was added and nobody seems to have noticed. :)
Noticed by: Josh MacDonald <jmacd@paris.CS.Berkeley.EDU>
Notes:
svn path=/head/; revision=39068
|
| |
|
|
|
|
|
|
| |
PR: bin/3212
Reviewed by: jkh@FreeBSD.ORG
Notes:
svn path=/head/; revision=37900
|
| |
|
|
|
|
|
|
|
| |
this when I changed the playpen code to disallow recursion. I know
this fixes a PR someplace but I can't seem to find it with the GNATs
search tool.
Notes:
svn path=/head/; revision=35160
|
| |
|
|
|
|
|
| |
the code and, in at least one case, made it more dangerous to no gain.
Notes:
svn path=/head/; revision=33427
|
| |
|
|
| |
Notes:
svn path=/head/; revision=32371
|
| |
|
|
| |
Notes:
svn path=/head/; revision=30221
|
| |
|
|
| |
Notes:
svn path=/head/; revision=22997
|
| |
|
|
|
|
|
|
|
|
|
| |
This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.
Boy, I'm glad we're not using sup anymore. This update would have been
insane otherwise.
Notes:
svn path=/head/; revision=21673
|
| |
|
|
|
|
|
|
| |
copies of the ftp support routines. Also some cosmetic and minor
bug fixes I've been meaning to incorporate for awhile.
Notes:
svn path=/head/; revision=16549
|
| |
|
|
| |
Notes:
svn path=/head/; revision=16179
|
| |
|
|
|
|
|
|
| |
to remove the current directory under certain circumstances.
Submitted by: Richard J Kuhns <rjk@watson.grauel.com>
Notes:
svn path=/head/; revision=13994
|
| |
|
|
| |
Notes:
svn path=/head/; revision=11780
|
| |
|
|
| |
Notes:
svn path=/head/; revision=10388
|
| |
|
|
|
|
|
| |
to create a /usr/tmp dir if it makes sense to do so.
Notes:
svn path=/head/; revision=10339
|
| |
|
|
|
|
|
|
|
| |
encountered by someone who had his /tmp on a partition with 3.7GB of
free space!
Spotted by: Francisco Rosich Viana <rosich@power.ci.uv.es>
Notes:
svn path=/head/; revision=10309
|
| |
|
|
|
|
|
| |
Submitted by: jmacd + some of my own fixes.
Notes:
svn path=/head/; revision=10085
|
| |
|
|
|
|
|
| |
Print the right thing, do the right thing. Back to you, Satoshi!
Notes:
svn path=/head/; revision=9953
|
| |
|
|
|
|
|
|
| |
Fix a bug where direct-extract mode would have still invoked the
packing list reordering commands.
Notes:
svn path=/head/; revision=8075
|
| |
|
|
| |
Notes:
svn path=/head/; revision=7999
|
| |
|
|
| |
Notes:
svn path=/head/; revision=7972
|
| |
|
|
| |
Notes:
svn path=/head/; revision=7926
|
| |
|
|
| |
Notes:
svn path=/head/; revision=6501
|
| |
|
|
|
|
|
| |
Suggested by: hsu
Notes:
svn path=/head/; revision=6418
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3578
|
| |
|
|
|
|
|
|
| |
checking code. Fix the free space checking code, while I'm at it! ;)
Thanks to Garrett for spotting the home dir problem.
Notes:
svn path=/head/; revision=3575
|
| |
|
|
|
|
|
| |
whether or not this always works.
Notes:
svn path=/head/; revision=3445
|
| |
|
|
|
|
|
| |
available. Thanks to Michael Elbel for pushing me in the right direction.
Notes:
svn path=/head/; revision=3364
|
| |
|
|
| |
Notes:
svn path=/head/; revision=383
|
| |
|
|
|
|
|
|
| |
intelligent name handling in pkg_create. Most of these files are changed
because of rcsid's being different in my cvs tree and freefall's (foo).
Notes:
svn path=/head/; revision=379
|
|
|
for info.
Notes:
svn path=/cvs2svn/branches/unlabeled-1.1.1/; revision=327
|