| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
| |
8.4 release
Approved by: re (implicit)
Notes:
svn path=/stable/8/; revision=248147
|
| |
|
|
| |
Notes:
svn path=/stable/8/; revision=241977
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
if a file in plist starts with / then do not prefix it with "prefix" [1]
pkg info -g returns 1 if a file mismatch [2]
flush stdout in pkg info -g [3]
clean up quiet mode (-q | --quiet) output of pkg_version(1) [4]
fix missing error call in uname check added to pkg_version(1) [5]
fix pkg_add(1) fails to install with -C from bad path [6]
only resolve path from pkg_add(1) -p if the given prefix do not start with a '/' [7]
PR: bin/13128 [1]
bin/139015 [2]
bin/113702 [3]
bin/142570 [4]
bin/146857 [5]
bin/157543 [6]
Submitted by: cy [1]
Anton Yuzhaninov <citrin@citrin.ru> [2]
Ighighi <ighighi@gmail.com> [3]
"N.J. Mann" <njm@njm.me.uk> [4]
gcooper [5]
David Naylor <naylor.b.david@gmail.com> [6]
netchild [7]
Notes:
svn path=/stable/8/; revision=241136
|
| |
|
|
|
|
|
|
|
|
|
| |
- Let pkg_add use the ENV variable PACKAGESUFFIX
- Make sure that each va_start has one and only one matching va_end
- Do not change owner, group, or mode when package database directory and
its contents are created with pkg_add(1). It may happen when the packing
list contains @owner, @group, or @mode.
Notes:
svn path=/stable/8/; revision=240674
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
r228670
- Add support for UPDATING remote fetching.
- Reorganize EXAMPLES section in pkg_updating(1).
- Style 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.
- 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.
- Print the package name on deletion errors.
- Staticify elide_root()
- 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
PR: bin/145101 [1], bin/139492 [2], bin/144919 [3]
bin/144920 [4], bin/144921 [5]
Submitted by: gcooper [1,2,3,4,5]
Approved by: des (mentor)
Notes:
svn path=/stable/8/; revision=235721
|
| |
|
|
|
|
|
|
|
|
| |
Catch up to head and stable/9 for what combination of __FreeBSD_version
values map to package directories.
Approved by: re (implicit)
Notes:
svn path=/stable/8/; revision=232437
|
| |
|
|
|
|
|
|
|
| |
8.2/7.4 releases.
Approved by: re (implicit)
Notes:
svn path=/stable/8/; revision=216655
|
| |
|
|
|
|
|
|
|
|
|
|
| |
- Add support for xz compression to pkg_create, bzip2 remains the default
compression algorithm.
- Bump PKG_INSTALL_VERSION to 20101012.
Submitted by: mm
Approved by: portmgr (flz)
Notes:
svn path=/stable/8/; revision=215738
|
| |
|
|
|
|
|
| |
Approved by: re (implicit)
Notes:
svn path=/stable/8/; revision=208571
|
| |
|
|
| |
Notes:
svn path=/stable/8/; revision=202840
|
| |
|
|
|
|
|
|
|
| |
is coming.
Approved by: re (implicit)
Notes:
svn path=/stable/8/; revision=196115
|
| |
|
|
|
|
|
| |
Approved by: re (ken)
Notes:
svn path=/head/; revision=195346
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
| |
Notes:
svn path=/head/; revision=191110
|
| |
|
|
| |
Notes:
svn path=/head/; revision=187056
|
| |
|
|
|
|
|
|
|
| |
PR: docs/127732
Submitted by: TerryP <BigBoss1964@gmail.com>
MFC after: 3 days
Notes:
svn path=/head/; revision=186732
|
| |
|
|
| |
Notes:
svn path=/head/; revision=186494
|
| |
|
|
|
|
|
|
|
|
| |
PR: bin/121093
Submitted by: volker
Approved by: portmgr (linimon)
MFC after: 3 days
Notes:
svn path=/head/; revision=183979
|
| |
|
|
|
|
|
| |
MFC after: 1 day
Notes:
svn path=/head/; revision=179835
|
| |
|
|
|
|
|
|
|
|
|
|
| |
- updating: terminating '\n' is not part of the package origin.
- bump PKG_INSTALL_VERSION to 20080612.
PR: bin/119368 [1], bin/124459 [2]
Submitted by: gcooper [1], Beat Gatzi <beat@chruetertee.ch> [2]
MFC after: 3 days
Notes:
svn path=/head/; revision=179760
|
| |
|
|
|
|
|
|
| |
- Remove check for '-?' as it's not listed in authorized options.
- Bump PKG_INSTALL_VERSION to 20080530.
Notes:
svn path=/head/; revision=179433
|
| |
|
|
|
|
|
|
|
|
| |
multiple installed packages with the same PKGORIGIN.
Reported by: marcus
MFC after: 1 month
Notes:
svn path=/head/; revision=178753
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
package name for the origin of a dependency, all entries in /var/db/pkg were
traversed for each dependency of added/removed package. Now, gather all the
origins first, then do the lookup in a single pass over /var/db/pkg.
This should provide a major speedup for packages with hundreds of dependencies.
Submitted by: rdivacky (earlier version)
MFC after: 1 month
Notes:
svn path=/head/; revision=178103
|
| |
|
|
|
|
|
|
| |
Approved by: portmgr (pav)
Approved by: kib (mentor)
Notes:
svn path=/head/; revision=177741
|
| |
|
|
|
|
|
|
|
| |
available.
MFC after: 3 days
Notes:
svn path=/head/; revision=176593
|
| |
|
|
| |
Notes:
svn path=/head/; revision=176108
|
| |
|
|
|
|
|
| |
Reviewed by: skv
Notes:
svn path=/head/; revision=175177
|
| |
|
|
|
|
|
|
|
|
| |
approval. These changes were approved by adding it as port to
ports/ tree, but not for src/. I talked to PR submitter and miwi@
some days ago and explained the reasons for it, the both were agree
to add it to ports/ only.
Notes:
svn path=/head/; revision=174475
|
| |
|
|
|
|
|
|
|
| |
This makes it easier to figure what packages you want to install.
Submitted by: Matthias Schmidt <schmidtm @ mathematik . uni-marburg . de>
Notes:
svn path=/head/; revision=174472
|
| |
|
|
|
|
|
|
|
|
|
| |
installing its dependencies.
PR: bin/117065
Submitted by: Vladimir Ermakov <samflanker@gmail.com>
MFC after: 14 days
Notes:
svn path=/head/; revision=173513
|
| |
|
|
| |
Notes:
svn path=/head/; revision=173412
|
| |
|
|
|
|
|
| |
Approved by: re (implicit)
Notes:
svn path=/head/; revision=172531
|
| |
|
|
|
|
|
|
|
|
| |
PR: bin/93915 bin/109134
Submitted by: Jason Heiss <heissj@yahoo-inc.com>, Constantin Stefanov<cstef@mail.ru>
Approved by: re@ (kensmith)
MFC after: 7 days
Notes:
svn path=/head/; revision=171934
|
| |
|
|
| |
Notes:
svn path=/head/; revision=166402
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=166374
|
| |
|
|
| |
Notes:
svn path=/head/; revision=162802
|
| |
|
|
|
|
|
| |
one.
Notes:
svn path=/head/; revision=162663
|
| |
|
|
| |
Notes:
svn path=/head/; revision=159554
|
| |
|
|
|
|
|
| |
Submitted by: Eugene Grosbein <eugen@grosbein.pp.ru>
Notes:
svn path=/head/; revision=156497
|
| |
|
|
| |
Notes:
svn path=/head/; revision=155011
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=154145
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
prefix later, but doing so with @cwd %%OLDPREFIX%% (having
PLIST_SUB+="OLDPREFIX=${PREFIX}") hardcodes the value in the packing
list. That's not really a problem when dealing with ports but that's
a problem with packages since pkg_add -p option only overrides the
first @cwd occurrence.
This patch allow us to use @cwd without any argument. If no
directory argument is given, it will set current working directory
to the first prefix given by the @cwd command.
PR: bin/77212
Submitted by: flz
Notes:
svn path=/head/; revision=154102
|
| |
|
|
| |
Notes:
svn path=/head/; revision=152569
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=152329
|
| |
|
|
|
|
|
|
|
|
| |
appropriate.
Approved by: re (scottl@)
Reviewed by: portmgr (kris@)
Notes:
svn path=/head/; revision=151754
|
| |
|
|
|
|
|
|
|
|
| |
commit.
Pointy hat: kensmith
Approved by: re (implicit)
Notes:
svn path=/head/; revision=147939
|
| |
|
|
|
|
|
|
|
| |
which probably should have been done a while ago.
Approved by: re (implicit)
Notes:
svn path=/head/; revision=147932
|
| |
|
|
|
|
|
|
|
|
|
| |
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)
Notes:
svn path=/head/; revision=147381
|
| |
|
|
|
|
|
|
|
|
| |
This will give our users and porters a more consistent experience between
installing ports and installing packages.
Discussed with: portmgr
Notes:
svn path=/head/; revision=143849
|
| |
|
|
| |
Notes:
svn path=/head/; revision=141846
|