Commit History - (may be incomplete: see SVNWeb link above for full details) |
Date | By | Description |
27 Oct 2018 18:37:59
3.19_18
 |
se  |
Remove reference to obsolete INDEX files for FreeBSD7-9 and report build
time for successful builds, as suggested by Walter Schwarzenfeld.
Approved by: antoine (implicit) |
22 Oct 2018 12:06:40
3.19_17
 |
se  |
Fix upgrades of moved ports. |
13 Oct 2018 19:22:47
3.19_16
 |
se  |
Make portmaster use "pkg-static" instead of "pkg". This prevents problems
with inconsistent shared library references that may occur when openssl in
base is upgraded to version 1.1.1 with 1.0.x installed from a port.
Approved by: antoine (implicit) |
23 Jul 2018 06:55:52
3.19_15
 |
se  |
Fix quoting of optional FLAVOR argument in some make invocations, which
were uncovered by fixed quoting in the pm_make* functions.
Reported by: tatsuki_makino at hotmail.com (Tatsuki Makino)
Approved by: antoine (implicit) |
22 Jul 2018 07:24:36
3.19_14
 |
se  |
Make some sub-routines use "$@" instead of $* to correctly pass arguments
with blanks to invoked commands. This fixes clean-up of shared library
backups, where only one file was removed due to a parameter list being
terminated by the first blank within one parameter.
Reported by: tatsuki_makino at hotmail.com (Tatsuki Makino)
Approved by: antoine (implicit) |
22 Jun 2018 06:44:44
3.19_13
 |
se  |
Fix building of specific qt4 ports after qt5 has become the default flavor.
The ports infrastructure does not consistently deal with FLAVOR environment
variables set to an empty string. This caused the dependency check in
portmaster to fail for multimedia/phonon.
With FLAVOR="" in the environment, "make -V FLAVOR" returns "qt4", but the
dependency list produced by "make build-depends-list" assumes "qt5", even
though no user preferences for qt5 have been set.
Reported by: Walter Schwarzenfeld <w.schwarzenfeld at utanet.at>
Approved by: antoine (implicit) |
21 May 2018 12:42:17
3.19_12
 |
se  |
Document --package-format=<fmt> option. I had implemented that option some
time ago, but decided to not expose it in the man-page, since portmaster
will not necessarily install the latest version if installing from local
Jpackages is requested and there exist multiple package files that only
differ in archive format. But since a non-standard package format allows
to choose between an optimization for speed or for disk space, this is a
useful option that shall be described in the man page.
Approved by: antoine (implicit) |
20 May 2018 10:56:14
3.19_11
 |
se  |
Fix recursive building of ports (-r option). The match_flavor function was
called before being defined.
The issue and cause has been reported by Herbert J. Skuhra. (Thanks!)
PR: 227882
Reported by: Herbert J. Skuhra <herbert@gojira.at>
Approved by: antoine (implicit) |
18 May 2018 17:26:42
3.19_10
 |
se  |
Fix previous attempt to cache some parameters in environment variables.
The quoting was messed up by use of "eval" and the cached values did not
match what the ports system expected.
Submitted by: tijl
Reported by: tijl
Approved by: antoine (implicit) |
18 May 2018 10:43:33
3.19_9
 |
se  |
Cache some build parameters in the environment that were recalculated over
and over for individual ports. This significantly reduces the time to scan
for updates if many ports with USES=compiler are present.
Based on a suggestion and code fragment provided by Tijl Coosemans.
While here commit a few changes present in my local version that should not
cause any functional change.
Submitted by: tijl
Approved by: antoine (implicit) |
29 Apr 2018 05:56:31
3.19_8
 |
se  |
Make the -n option work better for non-root users.
Approved by: antoine (implicit) |
12 Feb 2018 13:34:21
3.19_7
 |
se  |
Fix problem with debug output from export-flavor garbling the gen_dep_list
result. The solution is different from the patch suggested in the PR, since
the debug message was only meant to be used during early development of
flavors support. In my local development version of portmaster, all output
from pm_v is redirected to STDERR, but that change seemed to disruptive to
apply to the "published" version.
Unrelated changes: make pm_isdir_pd more robust and fix variable name of
BACKUP_FORMAT option in sample file.
PR: 225843
Reported by: John Hein
Approved by: antoine (implicit) |
06 Feb 2018 15:07:11
3.19_6
 |
se  |
Fix typo (missing dash in find argument list).
Reported by: Martin Birgmeier
Approved by: antoine (implicit) |
06 Feb 2018 13:12:04
3.19_5
 |
se  |
Fix build for ports that have a LICENSE if DISABLE_LICENSES is defined.
The behavior of the ask-license target should be to silently succeed instead
of returning an error, IMHO, but I can test for this condition and skip the
ask-license phase in portmaster, too.
While here, I'm slightly simplifying the fix implemented in r460294.
PR: 225699
Submitted by: dewayne@heuristicsystems.com.au
Approved by: antoine (implicit) |
29 Jan 2018 12:22:04
3.19_4
 |
se  |
Fix a problem that could result in de-installation of a port that shares
a prefix of the package name with a new port to be installed. The cause of
this bug was that a pattern was applied without anchor at the end.
Testing revealed that "pkg info -x" ignores an anchor at the end of the
pattern (which might be a bug in pkg), therefore the output of the query
is now additionally filtered with egrep to obtain the desired result.
PR: 225496
Reported by: Martin Birgmeier
Approved by: antoine (implicit) |
28 Jan 2018 20:22:04
3.19_3
 |
se  |
Print different action list text for packages that are not going to be
installed (e.g. for make targets "extract", "patch" or "stage" in build
dependencies).
Limit depth of search for empty directories to reduce the scan time if
there are non-empty work directory sub-trees.
Add package format parameters to rc.sample file.
Approved by: antoine (implicit) |
17 Jan 2018 22:43:24
3.19_2
 |
se  |
Fix previous commit (r459202) which introduced dependencies that specify
an optional make target. The patch file contained 2 typoes ("{$" instead
of "${").
Add clean phase for dependencies that are not installed but required when
the dependent port is built (e.g. because of references to source files of
that port, or because of static linking against libraries in the stage area
of such a dependency).
Approved by: antoine (implicit) |
16 Jan 2018 18:49:38
3.19_1
 |
se  |
Add support for dependencies specified with a non-standard make target.
This is required for e.g. net/openntpd, which links against static libressl
libraries in that port's staging area.
In case of a port that is not fully installed, there is no clean phase for
the dependency's port directory. The dependency tracking does not maintain
the necessary state to perform this cleanup when the depending port is
finished.
PR: 213887
Reported by: blackmore@pichove.org (Simeon Simeonov)
Approved by: antoine (implicit) |
16 Jan 2018 18:43:27
3.19
 |
se  |
Test privileges early and complain if privileges are insufficient.
The patch is based on ideas presented in the PR, but implemented
differently. Re-open the PR, if this solution has unexpected side-effects
or proves insufficient.
PR: 174729
Reported by: ngie
Approved by: antoine (implicit) |
14 Jan 2018 22:11:02
3.19
 |
se  |
Update to version 3.19, which is identical to 3.18_12 with all port patches
applied.
Approved by: antoine (implicit) |
12 Jan 2018 21:59:51
3.18_13
 |
se  |
Fix display of license acceptance menu if build logs are hidden with -H.
PR: 206738
Reported by: torsten.eichstaedt@web.de
Approved by: antoine (implicit) |
11 Jan 2018 13:48:12
3.18_12
 |
se  |
Fix problem with ports being converted from a non-flavored to a flavored
version, if PYTHON3_DEFAULT is set to anything but 3.6. Since the MOVED
file sets the new origin and flavor such that a Python-3.6 compatible
package is built, the original Python version for this port is ignored.
Reported by: lev
Approved by: antoine (implicit) |
11 Jan 2018 12:29:24
3.18_11
 |
se  |
Small fix for directory accesses in find_dl_distfiles, which did not take
the optional flavor part of the passed argument into consideration.
Approved by: antoine (implicit) |
09 Jan 2018 12:35:47
3.18_10
 |
se  |
Generally path FLAVOR via the environment, not the "make" command line, to
circumvent a check for an empty FLAVOR parameter being passed to certain
ports.
Reported by: Walter Schwarzenfeld <w.schwarzenfeld@utanet.at>
Approved by: antoine (implicit) |
06 Jan 2018 22:43:20
3.18_9
 |
se  |
Fix version number ... I have to remember to manually fix-up this string
before each commit and I'll whether I can create a pre-commit script that
checks this for me.
Reported by: Walter Schwarzenfeld <w.schwarzenfeld@utanet.at>
Approved by: antoine (implicit) |
06 Jan 2018 10:15:17
3.18_8
 |
se  |
Remove spurious trace output left over from debugging.
Reported by: Walter Schwarzenfeld <w.schwarzenfeld@utanet.at>
Approved by: antoine (implicit) |
03 Jan 2018 11:10:33
3.18_7
 |
se  |
Fix pm_islocked function, which could lead to a spurious error message if
used for a port that is not found in the package database.
Reported by: Tatsuki Makino <tatsuki_makino@hotmail.com>
Approved by: antoine (implicit) |
02 Jan 2018 22:44:39
3.18_6
 |
se  |
Add undocumented option --package-format=<fmt>. I'm not sure, that this is
a useful feature, and the txz-format is currently hard-wired in a lot of
places in portmaster, but there has been a request to allow creation of
packages in a non-standard archive format.
Approved by: antoine (implicit) |
02 Jan 2018 14:26:20
3.18_5
 |
se  |
Fix package name: the pattern that gets replaced with the actual version
string at build time had been replaced by a version string from a test
version.
Reported by: herbert@gojira.at (Herbert J. Skuhra)
Approved by: antoine (implicit) |
02 Jan 2018 14:05:09
3.18_5
 |
se  |
Increment PORTREVISION, forgotten in previous commit.
Approved by: antoine (implicit) |
02 Jan 2018 14:03:36
3.18_4
 |
se  |
Add --backup-format=<fmt> option to allow faster creation of package
backups with no or less compression than the default of "txz" provides.
Support for different archive format for packages in general could be
provided, but not added at this time, since I'm not convinced that this
would be a useful feature (please let me know, if you disagree ...).
Approved by: antoine (implicit) |
30 Dec 2017 22:14:59
3.18_4
 |
se  |
----------------------------------------------------------------------------
Fix spelling of OPTIONS_FILE.
Approved by: antoine (implicit) |
29 Dec 2017 22:14:24
3.18_3
 |
se  |
Bump PORT_REVISION, forgotten in previous commit.
Approved by: antoine (implicit) |
29 Dec 2017 22:13:22
3.18_2
 |
se  |
Fix regression in kill_bad_children: add missing $ before progcmd ...
Approved by: antoine (implicit) |
23 Dec 2017 16:36:51
3.18_2
 |
se  |
Fix installation from local or remote package including the --packages-build
case. Partially based on patches supplied by Alexander Leidinger.
Reported by: phk, netchild
Approved by: antoine (implicit) |
21 Dec 2017 21:44:46
3.18_1
 |
se  |
Add PKG_DEPENDS, EXTRACT_DEPENDS, PATCH_DEPENDS and FETCH_DEPENDS to the
make_dep_list function when called with parameter build-depends-list or
all-depends-list.
Reported by: phk
Approved by: antoine (implicit) |
21 Dec 2017 09:14:45
3.18
 |
bapt  |
Remove useless MASTER_SITES entries |
21 Dec 2017 09:11:48
3.18
 |
se  |
Update to version 3.18, which already contains all patches required for the
previous version.
Approved by: antoine (implicit) |
21 Dec 2017 08:25:55
3.17.11_12
 |
se  |
Patch package version into the port and install man-page with patched path
for non-standard LOCALBASE. The port used to patch the man-page, but then
installed the unpatched version.
Approved by: antoine (implicit) |
20 Dec 2017 20:05:27
3.17.11_11
 |
se  |
Fix execution of portmaster in a port directory without any port or package
parameters.
Reported by: lenzi.sergio@gmail.com
Approved by: antoine (implicit) |
20 Dec 2017 12:17:47
3.17.11_10
 |
se  |
Add flavor support to routines that convert port origins to shell variable
names. The character '@' is illegal in such names and must be converted to
a legal character same as [-+./].
remobve post processing of "pkg check -dn" output, which was a left-over
from pre-PKG_NG times.
Reported by: koobs (invalid @), tatsuki_makino@hotmail.com (pkg check)
Approved by: antoine (implicit) |
19 Dec 2017 12:25:35
3.17.11_9
 |
se  |
Add back local package installation support, which was disabled for PKG_NG.
The patch attached to PR 181450 did no longer apply cleanly, therefore I
edited portmaster to follow the intent and in part the letter of the patch.
This patch should not affect port building in any way. I have no use for
the feature (and I'm still considering to completely remove support for the
installation of packages in portmaster), and therefore did not test that
it performs as expected by the submitter.
PR: 181450
Submitted by: rozhuk.im@gmail.com
Approved by: antoine (implicit) |
18 Dec 2017 22:22:07
3.17.11_8
 |
se  |
Add all-depends-list case required for portmaster -t.
Approved by: antoine (implicit) |
17 Dec 2017 13:36:53
3.17.11_7
 |
se  |
Remove stray double-quote character left from an incomplete edit of that
line (result of directly editing the patch for a trivial change ...)
Approved by: antoine (implicit) |
17 Dec 2017 13:32:29
3.17.11_6
 |
se  |
Add LIB_DEPENDS to dependencies relevant for installation of a package.
Approved by: antoine (implicit) |
17 Dec 2017 13:01:28
3.17.11_5
 |
se  |
Add support for ports that have been upgraded with a change of both
origin and package name (sans version), as was the case for e.g. the
lang/cython3 port, which was moved to lang/cython@py36 with a package
name change from cython3-$version to py36-cython-$version.
Approved by: antoine (implicit) |
16 Dec 2017 15:17:58
3.17.11_5
 |
se  |
Fix query for package to be replaced: This could lead to a wrong package
being identified and replaced when the new package is installed.
Add library dependencies to the list of build dependencies to consider.
Reported by: Robert Huff
Approved by: antoine (implicit) |
16 Dec 2017 14:05:37
3.17.11_4
 |
se  |
USe correct origin in multiport case (several packages specified on the
command line, which is different from passing "-a").
Reported by: Robert Huff
Approved by: antoine (implicit) |
15 Dec 2017 21:01:14
3.17.11_3
 |
se  |
Add another check for a flavor passed attached to the port directory.
Without this fix, the default flavor was built in specific situations.
Approved by: antoine (implicit) |
15 Dec 2017 20:13:39
3.17.11_2
 |
se  |
Fix patch: The patch had been created from the version used to debug the
previous version's problem and I forgot to
Fix shbang: Remove the -x that had been added for debugging.
Reported by: (Walter Schwarzenfeld) w.schwarzenfeld@utanet.at
Approved by: antoine (implicit) |
15 Dec 2017 17:55:50
3.17.11_1
 |
se  |
Fix regression: The find_new_port function is now invoked from an earlier
place than before flavor support was added. Move its definition to an
appropriate place.
Silence one pkq query command that may be called for a non-existing
package name.
Approved by: antoine (implicit)
Reported by: Milan Obuch, Paul Beard |
14 Dec 2017 20:32:26
3.17.11
 |
se  |
Add flavor support to portmaster. This version has been lightly tested and
supports upgrades from non-flavored port versions based on the information
in the MOVED file.
For initial installations of flavored ports, the flavor must be specified
as part of the port origin, e.g. "devel/py-py@py36" for the Python-3.6
version of that port. Dependent ports will automatically be installed with
the correct flavor passed via the dependency mechanism.
It is planned to add a --flavor option to ease flavor selection for ports
that are initially installed with portmaster.
Approved by: antoine (implicit) |
08 Dec 2017 14:00:02
3.17.10
 |
tz  |
ports-mgmt/portmaster: Pass maintainer-ship to se@
Stefan will continue to maintain portmaster. |
03 Feb 2017 22:12:53
3.17.10
 |
bdrewery  |
- Update to 3.17.10
Fixes --clean-distfiles trying to read in base/ [1]
Saves port failures to TMPDIR/portmasterfail.txt [2]
PR: 212376 [1]
Reported by: wblock [1]
Tested by: wblock [1]
Submitted by: Torsten Zuhlsdorff <t.zuehlsdorff@anymotion.de> [2] |
24 Jul 2016 14:21:14
3.17.9_4
 |
se  |
Fix "portmaster --check-port-dbdir" broken by the previous commit. While
the variable $unique_list was created with identical content, its value was
only set within the implicit sub-shell (2nd command in a pipe) and lost on
exit from the while loop.
Reported by: Jakub Laach |
16 Jul 2016 13:03:56
3.17.9_3
 |
se  |
Bump PORTREVISION to have portmaster be re-installed with the fix commited
as SVN rev. 418619.
Reported by: Herbert J. Skuhra (herbert at mailbox.org) |
16 Jul 2016 07:13:24
3.17.9_2
 |
se  |
A read lock on the sqlite file used by pkg can lock out writers for
indefinite amounts of time, preventing installation or upgrade of
ports with portmaster. Instead of using a pipe to read pkg query
input to be consumed by a shell loop, buffer the query result in a
shell variable and let the loop iterate over the contents of this
variable.
While here, use a call to all_pkgs_by_origin() instead of an inline
versin of equivalent code.
Reviewed by: tz
Approved by: tz |
10 Jun 2016 09:08:02
3.17.9_2
 |
tz  |
Change MAINTAINER from ports@toco-domains.de to tz@FreeBSD.org
Approved by: junovitch (mentor) |
04 Mar 2016 16:50:48
3.17.9_2
 |
adamw  |
Enable BASH and ZSH options (install their completions) by default.
Also, add NO_ARCH. PORTREVISION bump for pkg change.
PR: 207075
Submitted by: maintainer |
12 Feb 2016 15:46:04
3.17.9_1
 |
mat  |
Remove unneeded dependencies on bash and zsh.
With hat: portmgr
Sponsored by: Absolight |
10 Feb 2016 18:41:02
3.17.9
 |
marino  |
ports-mgmt/portmaster: Assign maintainership to Torsten Z.
Torsten has accepted the challenge of whipping portmaster back into
shape. In addition to changing MAINTAINER, he's starting with fixing
both non-default options by providing their necessary RUN_DEPENDS.
PR: 207075 |
05 Feb 2016 22:38:15
3.17.9
 |
bdrewery  |
Update to 3.17.9
Changes:
- Update manpage for rebuilding ports with pkg.
PR: 191166
Submitted by: wblock |
27 Jan 2016 15:19:51
3.17.8_1
 |
marino  |
Under strong objection and mandate by portmgr, remove DEPRECATION
I've been ordered by portmgr to remove DEPRECATION designation because
others have indicated they believe people should not be so directly
informed of its poor state. Despite the fact that there was no expiration
date set and that functionality was not affected in any way (leaving now
informed people free to use this unmaintained port), it was considered a
disruptive change.
Let the record show that I strongly object to this decision and that I
firmly believe that portmaster is a port that *must* have a competent
maintainer that can *develop* it. It should *not* be allowed to be
unmaintained and still maintain a presence in FreeBSD documentation. |
26 Jan 2016 11:23:38
3.17.8_1
 |
marino  |
ports-mgmt/portmaster: DEPRECATE without expiration date
The portmaster script hasn't had an official maintainer in 9 months and 2
years before that it was only patched in reaction to changes in the ports
framework. There are many unclaimed PRs in the bugzilla database, many
known bugs, and several areas where portmaster no longer aligns with how
ports work today. The problem isn't simply getting a maintainer; that
person has to be a ports framework expert and it appears that the people
with these qualifications don't want anything to do with this port.
Moreover, there are better options available. All FreeBSD platforms
support ports-mgmt/poudriere (although some many struggle under the load)
and the most common amd64 and i386 platform users have the additional
option of ports-mgmt/synth which is user-friendly, lightweight, and aimed
at users of portmaster, portupgrade, and even poudriere.
Unless something drastic regarding portmaster occurs, it's nearing its
natural EOL, so it's users should evaluate alternatives and try to
migrate off of it. |
10 Oct 2015 16:40:35
3.17.8_1
 |
bapt  |
Remove obsolete pkg-message |
03 Sep 2015 17:13:54
3.17.8
 |
bdrewery  |
Update to 3.17.8.
Changes:
- Fixes handling of PORTSDIR when /usr/ports is a symlink after head
r272363 and stable/10 r287334.
Reported by: dhw |
20 Aug 2015 18:52:02
3.17.7
 |
adamw  |
Use OPTIONS helpers, add a newline to quiet a half dozen portlint
fatal messages, and make the installation commands more consistent. |
09 Apr 2015 15:20:32
3.17.7
 |
bdrewery  |
I'm really not working on this. Please direct questions to ports@FreeBSD.org.
If someone else would like to maintain this please discuss with me and I will
get you access to the github account where the code lives. |
20 Mar 2015 20:07:51
3.17.7
 |
bdrewery  |
For the new USE_GITHUB with only GH_TAGNAME set default DISTNAME to
include GH_PROJECT/GH_ACCOUNT/GH_TAGNAME. This prevents the distfile
having the same name despite changing one of these values and causing
a bad checksum.
Differential Revision: https://reviews.freebsd.org/D2103
Reviewed by: mat
With hat: bdrewery |
20 Mar 2015 01:42:37
3.17.7
 |
bdrewery  |
Convert my ports to the new USE_GITHUB |
19 Mar 2015 16:44:59
3.17.7
 |
bdrewery  |
Update USE_GITHUB so it does not require GH_COMMIT.
Using this new scheme allows only setting the _tag_ or _commit hash_ in
GH_TAGNAME and not having to know the hash for a tag. This scheme will
download a tarball that has a different checksum than before due to a changed
directory name for extraction.
The following MASTER_SITES are provided to retain the old checksum and
directory structure (that require GH_COMMIT):
GH -> GHL
GITHUB -> GITHUB_LEGACY
Differential Revision: https://reviews.freebsd.org/D748
Submitted by: amdmi3
Reviewed by: mat, swills, antoine, bdrewery
With hat: portmgr |
20 Dec 2014 19:30:54
3.17.7
 |
bapt  |
cleanup plist |
27 Aug 2014 16:33:21
3.17.7
 |
bdrewery  |
- Update to 3.17.7
Changes:
* Use PM_SU_CMD for pkg set -o |
19 Jun 2014 00:36:18
3.17.6
 |
bdrewery  |
- Update to 3.17.6
Changes:
* Speedup --list-origins with pkg
* Use proper /usr/local/etc/portmaster.rc path in portmaster.8
* Fix running from deleted dirs.
* Fix losing control of building run-depends of staged ports
(thus breaking -g and counts). [1]
PR: 189398 [1] |
24 May 2014 19:04:31
3.17.5
 |
bdrewery  |
- Update to 3.17.5
Changes:
* Fix some issues with killing child processes
* Use builtin kill(1) |
15 Mar 2014 18:29:42
3.17.4
 |
bdrewery  |
- Update to 3.17.4
Changes:
- Fix --check-depends with pkg [1]
- Allow installing DEPRECATED ports
PR: ports/186915 [1]
Submitted by: kaltheat <kaltheat@gmail.com> [1] (based on) |
19 Nov 2013 15:05:21
3.17.3
 |
bdrewery  |
- Update to 3.17.3
Changes:
* Fix with pkg-devel which has broken pkg-info -O compatibility |
23 Sep 2013 11:23:48
3.17.2
 |
bdrewery  |
- Support STAGEDIR |
20 Sep 2013 15:58:09
3.17.2
 |
bdrewery  |
- Add NO_STAGE until validated to be safe for upcoming staging support |
14 Sep 2013 12:32:14
3.17.2
 |
bdrewery  |
- Update to 3.17.2
Changes:
- Fix detection of pkg-devel
PR: ports/181813 [1]
Reported by: Takanori Saneto <sanewo@ba2.so-net.ne.jp> [1], eadler |
22 Jul 2013 00:41:45
3.17.1
 |
bdrewery  |
- Update to 3.17.1
Changes:
* Fix --check-port-dbdir support after ports r321785 changed
to /var/db/ports/category_port (OPTIONS_NAME) instead of
UNIQUENAME [1]
Reported by: many |
22 Jun 2013 16:38:09
3.17
 |
bdrewery  |
- Update to 3.17
Changes:
- Fix completion scripts when ports are not checked out.
PR: ports/179098
Reported by: Doug Barton <dougb@dougbarton.us> |
08 Jun 2013 11:28:14
3.16
 |
bdrewery  |
- Remove temporary WRKSRC hack
- Rename distfile and fix checksum errors. These errors
were due to renaming the upstream account, which changed
which directory the distfile untarred in.
- Shuffle MASTER_SITES so that FreeBSD.org and other more
reliable mirrors come before github |
04 Jun 2013 01:47:19
3.16
 |
bdrewery  |
- Fix build with temporary fix
Reported by: John Ko <john@johnko.ca> |
03 Jun 2013 10:49:42
3.16
 |
bdrewery  |
Update MASTER_SITE to github.com/freebsd |
29 Mar 2013 23:48:02
3.16
 |
bdrewery  |
- Update to 3.16
This fixes a regression with non-pkgng usage that would invoke
the bootstrapper when upgrading ports. My testing did not
cover systems with the bootstrapper that did not use pkgng, so
this was missed.
The impact of this was just a hung build during deinstall.
Reported by: mandree
Pointyhat to: bdrewery |
29 Mar 2013 23:31:25
3.15
 |
bdrewery  |
Mark BROKEN as I fix a reported regression |
29 Mar 2013 20:43:55
3.15
 |
bdrewery  |
- Update to 3.15
- Add extra mirror
- Remove PKGNGPATCH option
Changes:
- The pkgng patch has been fully integrated upstream with its
history copied from the pkgng repo over to portmaster's repo
- Add extra messages before/after killing background processes so
that 'Terminated' messages look less unexpected
- Fix running from / trying to build the entire tree
- pkgng: Fix -s not respecting the automatic flag
- Fix "Argument list too long" errors
- Add PM_SU_CMD documentation to the sample config file [1]
- Fix -o not showing the specified origin [pkgng patch bug]
Submitted by: Oleg Pudeyev <oleg@bsdpower.com> [1] |
23 Mar 2013 11:21:51
3.14_9
 |
bdrewery  |
Remove standard descriptions for BASH/ZSH
Suggested by: danfe |
23 Mar 2013 02:07:27
3.14_9
 |
bdrewery  |
- Enable pkgng support by default. This is safe for
non-pkgng users as well. |
14 Mar 2013 22:11:47
3.14_9
 |
bdrewery  |
- Remove use of bsd.port.pre.mk
- Reword pkg-message to try to be more clear |
06 Feb 2013 02:35:30
3.14_9
 |
eadler  |
Make it clear that pkgng is optional
Submitted by: wblock
Approved by: bdrewery (maintainer) |
01 Feb 2013 15:04:01
3.14_9
 |
ak  |
- Fix all cases of 'No newline at end of file' in ports tree
Approved by: portmgr (bapt) |
25 Jan 2013 19:30:26
3.14_9
 |
bdrewery  |
- Don't force pkg as a RUN_DEPENDS. The patch should be
safe for non-pkgng usage.
I am in the process of testing this and will be fully
integrating the patch upstream soon. |
06 Dec 2012 17:46:10
3.14_8
 |
bdrewery  |
- Add upstream patch for fixing bash completions with PKGNG
and to respect env PORTSDIR/PKG_DBDIR
Feature safe: yes |
29 Oct 2012 19:06:13
3.14_7
 |
bdrewery  |
- Fix PKGNG patch trying to call pkg(8) when not
actually using pkgng due to improper short-circuit
logic
Submitted by: John Hein <jhein@symmetricom.com>
Feature safe: yes |
20 Oct 2012 19:26:34
3.14_6
 |
bdrewery  |
- Update ZSH completions to work on CURRENT with pkgng [1]
- Don't depend on ports-mgmt/pkg on 7.x with PKGNGPATCH option
Submitted by: ume [1]
Feature safe: yes |
18 Oct 2012 16:02:30
3.14_5
 |
bdrewery  |
- Fix WITH_PKGNG detection on CURRENT, as it may
not be defined in /etc/make.conf.
Submitted by: dim
Feature safe: yes |
16 Oct 2012 03:00:01
3.14_4
 |
bdrewery  |
- Update ZSH completions with pkgng support [1]
- Enable the PKGNG patch by default if WITH_PKGNG
is defined.
Submitted by: ume [1]
Feature safe: yes |
15 Oct 2012 16:14:36
3.14_3
 |
bdrewery  |
- Add ports-mgmt/pkg as a RUN_DEPENDS if enabling pkgng support
- Add UPDATING entry and pkg-message to assist in converting
Feature safe: yes |