| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
|
|
|
|
|
|
| |
This now warns about these 2 ports as needing to be marked as resurrected:
archivers/brotli|archivers/py-brotli|2016-11-24|Brotli is a python module
devel/libbrotli|archivers/brotli|2017-07-12|meta project no longer required to build libs
www/rubygem-jquery-rails||2017-01-07|Has expired: Depends on deprecated www/rubygem-railties
www/rubygem-jquery-rails4|www/rubygem-jquery-rails|2017-03-27|Remove PKGNAMESUFFIX
|
|
|
|
| |
With hat: portmgr
|
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
| |
note that multiple revisions should appear chronologically.
|
|
|
|
|
|
| |
Reviewed by: crees (maintainer)
Approved by: rene (portmgr, mentor), adamw (portmgr, mentor), crees (maintainer)
Differential Revision: https://reviews.freebsd.org/D10548
|
|
|
|
|
|
|
| |
Use 'use warnings;' instead.
While here remove distinfochecker. It's not needed anymore as it was written
for a simple purpose eleven years ago.
|
|
|
|
| |
With hat: portmgr-secretary
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
bsd.default-versions.mk can rely on ARCH being defined.
- In bsd.port.mk move inclusion of bsd.default-versions.mk from the
pre-makefile section to the options section so the variables can be used
earlier. Also put the bit of code sitting between the options section and
the pre-makefile section into the options section.
- Remove last few cases where ports set WITH_OPENSSL_PORT. This variable is
handled in bsd.default-versions.mk and some ports were setting it after
including bsd.port.options.mk. After FreeBSD 9 EoL all but a few ports,
and then only when setting non-default options, work without setting that
variable.
PR: 215996
Exp-run by: antoine
Approved by: portmgr (antoine)
|
|
|
|
|
|
|
| |
Also, make the branch argument optional.
Discussed with: swills
Sponsored by: Absolight
|
|
|
|
|
|
|
| |
PR: 212486
Submitted by: mat
Approved by: crees (maintainer)
Sponsored by: Absolight
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Summary:
Currently addport -a ends up running a command line like:
make PORTSDIR="/tmp/ap.BsOuZJBy" clean check-categories
where the temporary directory has only parts of the ports tree
(specifically bits under ${PORTSDIR}/Mk) checked out. This can't work
as 'make check-categories' needs to see the entire ports tree checked
out.
Instead, run the checks specified by '-a' and '-t' with the value of
$PORTSDIR from the environment.
Reviewers: crees
Reviewed By: crees
Subscribers: mat
Differential Revision: https://reviews.freebsd.org/D7525
|
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
the case $? needs to have the exit status of the grep, not the awk line,
so remove the awk line, it was not really helpful anyway.
Also, with slave ports, most of the time, they don't have
(PORT|DIST)VERSION, try to use CATEGORIES, PKGNAMEPREFIX or
PKGNAMESUFFIX.
PR: 211243
Submitted by: mat
Approved by: maintainer timeout
Sponsored by: Absolight
|
|
|
|
|
| |
- build INDEX-12
- remove no longer used scp/ssh
|
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
| |
Differential Revision: https://reviews.freebsd.org/D6827
|
|
|
|
| |
Sponsored by: Absolight
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- allow PORTSDIR to be a symbolic link when looking for expired ports or
dependent ports
- allow for trailing slashes when specifying ports as cat/name. This prevents
the port being a false positive for itself when the Makefile mentions the
port name (e.g., in PLIST_FILES)
- fetch possibly open PRs via Bugzilla, GNATS is long gone. Remove the
version that used freefall. Thanks to crees for pretty-printing the results.
- forcibly delete the temporary checkout to prevent rm(1) from asking for
confirmation on each file in .svn
- add myself as author
Approved by: maintainer (crees)
Differential Revision: https://reviews.freebsd.org/D6396
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
While there replace USE_SQLITE=x by USES=sqlite:x.
PR: 208971
Submitted by: mat
Exp-run by: antoine
With hat: portmgr
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D5951
|
|
|
|
|
| |
This was not meant to be applied yet, as it is not yet completely developed.
See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192706
|
|
|
|
|
|
|
| |
If portmgr@ needs to commit against better advise, two years after this was
first discussed without any motion of the upstream.
Drop a few more maintainerships along the way.
|
|
|
|
|
|
| |
The last change was flawed; for deleted ports it was writing out the
origin, but it should be writing out the appropriate ports cache
database directory.
|
|
|
|
|
|
|
|
|
|
|
| |
The redundant-opt-file scripts assumes that if options are cached,
then the port that it was created by still exists. This, of course, is
a terrible assumption.
If the cached options refer to a port that has since been deleted or
otherwise no longer exists, just print the origin and continue. The
normal use case is that the origin will be piped to xargs rm -rf which
will purge the obsolete directory as desired.
|
|
|
|
|
| |
Before checking validity of $db_dir, verify $portdir is valid and eject if
it is not. This provides a better error message when PORTSDIR is invalid.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
I got a request to make Synth identify "redundant" cached option files,
where "redundant" means the saved port options are identical to the
default options. For Synth (and portmaster?) which use the port's
cache options, these redundant files are somewhat of a liability. At
best they do nothing (Synth assumes default options) and at worst they
will cause a future build to stop if the maintainer changes the port
options later.
This situation is avoidable. Rather than build detection into Synth,
I decided to write a generic shell script for ports. When run, it
will display the full path to the port's options directory if the
cached options are the same as the defaults. This output is suitable
to pipe to "xargs rm -rf" to remove all the redundant options in a
single command.
|
|
|
|
|
|
| |
PR: 205304
Submitted by: Stig Inge Lea Bjoernsen <stiginge@pvv.org>
Sponsored by: DK Hostmaster A/S
|
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
|
|
|
|
| |
1. Check if svnlite is available and use it by default, else: use svn
2. Dehardcode svn binary name in shell calls, to make both svn/svnlite
work
Approved by: crees (maintainer)
|
|
|
|
| |
Approved by: portmgr (mat)
|
|
|
|
| |
Approved by: crees
|
|
|
|
|
| |
Pointy hat to: mat
Sponsored by: Absolight
|
|
|
|
|
| |
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D3553
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now,
we won't have conflicts there.
Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer
is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel
has the correct PKGNAME anyway.
Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called
OPTIONS_FILE now.)
Reviewed by: antoine, bapt
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D3336
|
|
|
|
| |
Sponsored by: DK Hostmaster A/S
|
| |
|
|
|
|
|
|
| |
This is the script that generated the "20 ports account for X% of the
Ports collection by size" report. This shells script is useful to
identify obscenely large ports: top-size-offenders.sh
|
|
|
|
|
|
|
|
|
|
| |
chkdepschain.py: doesn't support pkgng
explicit_lib_depends.sh: doesn't support pkgng
plist: obsolete; searches for /etc/mtree/BSD.local.dist, add @dirrm, doesn't know about man pages in the plist
release: unused and obsolete
resolveportsfromlibs.sh: doesn't support pkgng
Approved by: portmgr (bapt)
|
| |
|
|
|
|
| |
bug tracking systems
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Fix regression mistakenly introduced in r380431
- Handle multiple tabs in PORTREVISION
- Handle PORTREVISION being a variable name
- Handle multiple PORTREVISION values
- Get rid of bash-like syntax
- Grammar corrections
PR: 192910
Reviewed by: danfe, mandree, mat
|
|
|
|
|
|
|
| |
- Write nicer code replacing fix introduced by mandree
- Catch up some more edge cases
PR: 192910
|
|
|
|
|
|
| |
PR: 194423
Submitted by: myself
Approved by: maintainer timeout (4 months), trivial - just fix it
|
|
|
|
| |
Sponsored by: Absolight
|
| |
|
| |
|
|
|
|
|
|
| |
PORTREVISION.
Sponsored by: Absolight
|
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
| |
Hope to see you back! Thank for all the work!
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
- Use only one request to retreive patchs
CR: D400
CR: D401
Submitted by: rakuco
|
|
|
|
|
|
|
|
| |
This script, requested by bapt@, is a pure sh tool to increase one
or more ports PORTREVISION value or to add one, if the port havent
had one already.
Approved by: swills (mentor), bapt
|
|
|
|
|
|
|
|
|
|
|
|
| |
- use proper quoting
- use fewer svn invocations
- optionally drop to a shell before committing,
to manually fix up a botched merge.
- svnserver can be overridden in the environment.
- Finally, we use sh's trap builtin to make sure we always clean up.
PR: 186256
Approved by: portmgr (bapt@)
|
|
|
|
|
|
|
|
| |
tools
Also clean up README a bit more
Discussed with: ak, bapt
|
| |
|
| |
|
|
|
|
|
|
| |
anywhere, so remove it.
OKed by: bapt
|
|
|
|
| |
/usr/bin.
|
|
|
|
|
|
|
|
| |
* Add -e, to cat the pkg-descr for each port found.
* Format with tabs instead of 4-spaces, as the latter made editing
an absolute nightmare and isn't used by anything else.
* Add -h to the option list, as it was missing.
* Use the fields hash in the format instead of hardcoded indices.
|
|
|
|
|
| |
CR: D235
Submitted by: rakuco
|
|
|
|
| |
With hat: portmgr
|
|
|
|
| |
With hat: portmgr
|
|
|
|
| |
- Update with our bugzilla experimental url
|
|
|
|
| |
also solicit improvements. :-)
|
|
|
|
|
|
|
|
| |
doing the real job, not for a dry run. Tweak those instructions a bit.
Assume maintainership.
Approved by: edwin (maintainer)
|
|
|
|
| |
Reported by: swills
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
- Use a variable for the Subversion server
- Consistently use ${} around variables
- Bail out if neither svn(1) nor svnlite(1) are installed
Approved by: bapt
|
| |
|
|
|
|
| |
merging
|
| |
|
|
|
|
|
|
| |
structure and output for the user.
Approved by: maintainer (edwin)
|
|
|
|
|
|
| |
needed in many years.
Reported by: ak
|
| |
|
|
|
|
|
|
|
| |
it is related to infrastructure/framework and a required portmgr-
maintained script
With hat: portmgr
|
|
|
|
|
|
|
| |
falling back on the perl make_index if needed.
With hat: portmgr
Reported by: ade
|
|
|
|
| |
Also mention the latest portmgr blog post.
|
|
|
|
| |
Submitted by: ak
|
| |
|
| |
|
|
|
|
| |
Pointyhat to: eadler
|
| |
|
|
|
|
|
|
|
| |
r231958 and the definition in bsd.port.subdir.mk generates a warning with
bmake, pkgng and no pkg_info.
Approved by: erwin
|
|
|
|
| |
Submitted by: az
|
|
|
|
|
| |
PR: ports/178193
Submitted by: tota
|
|
|
|
|
|
|
| |
Still prefer Created by because we still don't use real
names in MAINTAINER lines (oh please let that change....)
Submitted by: jgh (based on)
|
|
|
|
|
|
|
|
| |
- Add add_patch method [1]
- Update README wording and fix typo
PR: ports/175984 [1]
Submitted by: Christoph Mallon <christoph.mallon at gmx.de>
|
| |
|
|
|
|
| |
Approved by: edwin (maintainer), portmgr (bapt)
|
|
|
|
| |
Requested by: pgollucci
|
|
|
|
| |
Requested by: eadler
|
| |
|
|
|
|
| |
- Properly handle non-default $MCom RCS strings
|
|
|
|
|
|
|
| |
supporting older versions for the stdout/stderr switching
Approved by: Ilya A. Arkhipov <rum1cro@yandex.ru> (maintainer)
With hat: portmgr
|
|
|
|
| |
list, to make the for loop lateron actually work.
|
|
|
|
|
|
|
|
| |
as this change was not backwards compatible. A more robust solution
checking the installed version and auto updating is needed.
Pointyhat to: bdrewery
With hat: portmgr
|
|
|
|
|
|
|
|
|
|
| |
Changes:
- Use stderr as the old dialog did, which fixes usage inside
of jails
- Add D4PMINHEIGHT and D4PALIGNCENTER (see dialog4ports(1))
Approved by: Ilya A. Arkhipov <rum1cro@yandex.ru> (maintainer)
With hat: portmgr
|
|
|
|
|
|
| |
PR: ports/177174
Reported by: Hirohisa Yamaguchi <umq@ueo.co.jp>
With hat: portmgr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
required part of ports 'make config' now. This is seen
as not much different than any other dependency.
- Allow dialog4ports to work with INSTALL_AS_USER
by building and using the port's WRKDIR version
through a Tools/scripts wrapper
- Add NO_DIALOG for 'config' as well.
- Fix D4P environment variables not passing to dialog4ports:
D4PHEIGHT, D4PWIDTH, D4PFULLSCREEN
Reviewed by: miwi, bapt, rum1cro@yandex.ru
Tested by: miwi, bapt, rum1cro@yandex.ru
Tested by: bdrewery (small exp-run)
Requested by: many
|
|
|
|
| |
propose to skip removing a port if anything depends on it, instead of infinite looping on "ignore the issue"
|
| |
|
|
|
|
| |
Submitted by: az
|
|
|
|
|
|
| |
manually extract it from CATEGORIES again.
Discovered by: dinoex
|
| |
|
|
|
|
|
|
| |
Add makc's alternate email
Submitted by: makc
|
| |
|
|
|
|
|
|
|
|
|
|
| |
PR: ports/175331
Submitted by: Christoph Mallon
Approved by: No objections within three weeks from any maintainer
While here, style and duplicate phrase fixes in bsdcflow pkg-descr
Submitted by: mi
|
|
|
|
|
|
| |
ports with subdirectories fails because of scattered .svn directories.
Original issue reported by: netchild
|
|
|
|
| |
Fix regex - I had this locally but forgot to commit
|
|
|
|
|
| |
Add kuriyama to the list
Add bapt's alternate email to the list
|
|
|
|
| |
No objections from: sobomax
|
|
|
|
|
|
|
| |
Add rm's alternate email address
Add wxs
If anyone else wants to be added please email me so we could batch them up into one set.
|
| |
|
|
|
|
| |
the number of wasted bytes in the world
|
|
|
|
| |
Don't remove this when doing the conversion.
|
| |
|
|
|
|
| |
Reported by: db
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
|
| |
PR: ports/173195
Submitted by: rm
Reviewed by: sbz (myself)
Feature safe: yes
|
|
|
|
|
|
|
| |
header.
Suggested by: adamw
Feature safe: yes
|
|
|
|
|
|
| |
headers to the new format.
Feature safe: yes
|
|
|
|
|
| |
Noticed by: thierry
Feature safe: yes
|
|
|
|
|
|
|
| |
to .xml in r39631
Approved by: crees
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
|
| |
- Use Subversion instead of CVS
Approved by: erwin (maintainer)
Feature safe: yes
|
|
|
|
|
|
|
|
|
| |
- be less verbose to be more friendly to running from cron
- I've been running this script for several years now,
not Kris
- Send me a copy of the output for debugging
Feature safe: yes
|
|
|
|
|
|
| |
seen in MOVED lines.
Feature safe: yes
|
|
|
|
| |
Approved by: crees
|
|
|
|
|
|
| |
and instead replace it with "FILE has been deleted"
Reviewed by: crees
|
|
|
|
|
|
| |
PR: ports/171853
Submitted by: ohauer
Approved by: miwi (maintainer) explicit per PM
|
|
|
|
|
|
| |
Since Created by: line appears to be popular, get Submitted by: from that
Old-style Makefile headers should no longer be used
|
| |
|
|
|
|
|
| |
Apologies for the complexity of the code; it's optimised for speed. Soon I
will be able to remove the section working with dates.
|
|
|
|
|
|
| |
Subversion Primer.
Approved by: mandree@ (maintainer)
|
| |
|
|
|
|
| |
Additionally, document the wrapper in the main readme
|
|
|
|
|
|
|
| |
which to acquire the Submitted by: line.
It should be reasonable to simply use the MAINTAINER line; unfortunately we
lose the real name and only get the email address.
|
|
|
|
| |
reported by: crees
|
|
|
|
|
|
|
|
|
|
|
| |
additional features such as:
- extended descriptions
- auto resizing
- compatability with older dialog implementations
Submitted by: wblock
Reviewed by: ports@
|
|
|
|
| |
Submitted by: culot, gahr
|
|
|
|
|
|
| |
modules file that was removed.
It's fast, use it!
|
|
|
|
|
|
|
|
|
| |
to avoid running SVN multiple times with command lines like the
following:
svn co --depth empty svn+ssh://svn.freebsd.org/ports/head ports
Reported by: ak@ (on IRC)
|
|
|
|
| |
Approved by: portmgr (bapt)
|
|
|
|
|
|
|
|
| |
Requested by: several
- Remove older readded ports from MOVED
- Tighten up find syntax (split by null and use -print0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- FIX: all progress and error output goes to fd#2 (stderr)
- FIX: at top level, properly detect commands if preceded by options
- FIX: in checkstatus(), handle ~ (obstructed versioned item)
- FIX: support blanks, leading dashes, and shell meta characters:
+ in file names, so as not to choke the script on difficult file names
+ in command line arguments, so that svn commit -m "commit message" works,
rather than complaining about an unversioned file "message".
- FIX: in checkstatus(), keep leading spaces from svn status
- FIX: in setprop(), detect egrep errors, rather than assuming "no match"
- ADD: die if "check" psvn-specific command has trailing arguments
- CHANGE: replace `...` by more concise $(...) notation
- CHANGE: take maintainership, offered by beat@.
- SPEEDUP: in checkstatus(), use shell built-ins, rather than commands
- SPEEDUP: when checking files, run svn only once, rather than for each file
- SPEEDUP: when skipping "svn rm"-ed files, use ! -e rather than head|awk
- TODO: handle long options for svn commit
- TODO: do not stomp over svn:mime-type if it's already set (binary files!)
Approved by: beat@ (maintainer)
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This was required with CVS, since the category was checked out as a module, but
the directory name is used with svn.
For example:
pcvs co ports_ports_mgmt
svn co $ports/head/ports-mgmt
Submitted by: swills
|
|
|
|
|
|
| |
- Add description what the script actually does
Submitted by: gahr [1]
|
| |
|
|
|
|
| |
Approved by: portmgr (beat)
|
| |
|
|
|
|
| |
Submitted by: crees, miwi
|
|
|
|
| |
The X11BASE variable is long gone, however these ports were not updated.
|
|
|
|
|
| |
The script is very cautious, and may miss some; checking the results by hand
is absolutely vital.
|
|
|
|
|
| |
If you are having trouble with saved OPTIONS not being recognised, just run
this as root and you will have no further trouble!
|
|
|
|
|
|
| |
- Take maintainership
Approved by: garga (maintainer)
|
|
|
|
| |
- Take maintainership
|
|
|
|
| |
Approved by: mharo (maintainer)
|
|
|
|
|
|
|
|
|
|
|
| |
Approved by: vd (maintainer)
- Make the diff output work
- Use cdiff if exists, otherwise stick with $EDITOR
- Stop trying to remove CVSROOT; hasn't been checked out since modules
support was removed by erwin
|
|
|
|
|
|
|
| |
to the spelling of LATEST_LINK.
Submitted by: gerald
Feature safe: yes
|
| |
|
|
|
|
|
| |
PR: ports/154431
Approved by: sobomax (maintainer)
|
|
|
|
| |
Hat: x11
|
|
|
|
| |
Submitted by: dougb@
|
|
|
|
|
|
| |
punctuation.
Discussed with: eadler@
|
|
|
|
| |
ones.
|
|
|
|
|
|
|
|
|
| |
- Fixed some grammatical errors in output messages
PR: ports/162506
Submitted by: "Conrad J. Sabatier" <conrads@cox.net>
Approved by: sobomax (maintainer timeout - 1 month)
Feature safe: yes
|
|
|
|
| |
Submitted by: gjb
|
| |
|
|
|
|
|
|
| |
PR: ports/159841
Submitted by: crees (me)
Approved by: garga (maintainer)
|
|
|
|
| |
- Kill ruby 1.6 related stuff.
|
|
|
|
| |
not symbols).
|
| |
|
| |
|
|
|
|
| |
- Add check that port is in right directory as I've been bitten by this
|
| |
|
| |
|
|
|
|
| |
Submitted by: ohauer
|
| |
|
|
|
|
| |
fail before we stop. This should help avoid spamming people's mboxes.
|
|
|
|
|
|
|
|
|
| |
pointyhat, but is intended for pointyhat-[west|east] to be able to
remove no longer needed specialized -exp runs. (They remain in the
errorlog archive; they can merely be removed from zfs.)
Replace this test with an anti-foot-shooting measure so that you cannot
remove 'latest' unless you have already removed 'previous'.
|
|
|
|
| |
aggresively
|
| |
|
|
|
|
|
| |
While here, move segfault down: sometimes this is a false positive for
a config failure.
|
| |
|
|
|
|
|
|
|
| |
clang". This will probably need to be trimmed down some so as to not
pessimize processing time.
At this time this change will be restricted to pointyhat-west.
|
|
|
|
|
|
|
|
|
|
| |
- deprecate assert, chown, perl5, python, stdio, sysvipc, varargs
- add the existing nested_declaration, termios, utmp_x
While here, fix formatting.
Pointy hat to: linimon, for letting this get so far out of sync
|
|
|
|
|
|
|
|
|
|
|
|
| |
longer see:
chown, perl5, python, stdio, struct changes, sysvipc, USE_XLIB, varargs
Add the following new error types that we are now seeing:
clang-bug, cpusetsize, sem_wait
Tweak the definitions for linker_error and threads to be more accurate.
|
|
|
|
| |
the into the section for obsolete errors.
|
|
|
|
| |
ago to the "obsolete" section.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
to processonelog (not yet committed):
clang
clang-bug
cpusetsize
sem_wait
The former two will show up if an -exp run is done with clang as the default
ports compiler, instead of gcc. The latter two seem to be ports regressions
in 9-CURRENT.
|
|
|
|
|
| |
While here, change the misnomer Full to Previous, but leave the links
alone until we upgrade pointyhat to the latest codebase.
|
|
|
|
|
| |
Submitted by: gerald
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
|
|
|
|
|
| |
was handled the same as "waiting for chroot" and retried. In certain
circumstances (e.g. a prerequisite package shown as being avaialable
when it really wasn't), this would cause a package build to loop
forever.
Note to future generations: I did not write this code.
Feature safe: yes
|
|
|
|
|
|
|
| |
output on package builds.
Pointy hat: self
Feature safe: yes
|
|
|
|
|
| |
Noticed by: Anton Shterenlikht
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
|
| |
bindist-*.tar (so that they can be shared between pointyhat and
pointyhat-west without modification.)
Feature safe: yes
|
|
|
|
|
|
| |
bindist-*.tar files on pointyhat and pointyhat-west.
Feature safe: yes
|
|
|
|
|
|
| |
the comment for bindist-* to match.
Feature safe: yes
|
|
|
|
|
| |
Feature safe: yes (this time for real)
Approved by: portmgr,re
|
|
|
|
|
|
| |
in libcrypto.
Feature safe: yes (really, really not, but we don't have any other option)
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
was being done before the src tree had been mounted.
This was not a problem in the old codebase, since it simply got the
wrong src tree to start with.
This actually simplifies the code.
|
|
|
|
| |
do not attempt to process it.
|
|
|
|
|
|
|
| |
_very_ badly if they aren't.)
Also, track the refactoring of buildenv so that the proper src tree
bits are picked up.
|
| |
|
| |
|
|
|
|
|
|
|
| |
and client-side definitions into common.conf.
While here, slide the 7-stable release to 7.3. This was driving me
crazy while trying to debug the INDEX and duds problems.
|
|
|
|
|
|
|
|
| |
definitions and the client-side definitions.
While here, add ARCHS_SUPPORTING_COMPAT_IA32, which is needed to get
linux emulation ports to be properly detected on head nodes that are
build from first principles (e.g. !pointyhat).
|
|
|
|
|
|
|
|
|
|
|
|
| |
nodes that don't have /usr/src. On pointyhat, this "just happens to
work"; on a cleanly installed system like pointyhat-west, it didn't.
Add overrides for Linux compatibility (again, it "just happened to work"
on pointyhat).
Move the code that sets PORTSDIR and SRC_BASE to the server side only.
The code that overrides OSVERSION, OSREL, and BRANCH _must_ remain in
the common code.
|
|
|
|
|
| |
nodes that don't have /usr/src. On pointyhat, this "just happens to
work"; on a cleanly installed system like pointyhat-west, it didn't.
|
| |
|
|
|
|
|
|
| |
impossble to have merely "server.conf" and "client.conf" control
everything on a head node. Some pieces must be refactored into
"common.conf".
|
|
|
|
| |
create the links for the webserver; add some comments.
|
|
|
|
| |
problem, until it can be correctly understood and fixed.
|
| |
|
|
|
|
| |
from being contaminated by the packages installed on pointyhat-*.
|
|
|
|
|
| |
PR: ports/152358
Submitted by: Volodymyr Kostyrko <c.kworr@gmail.com>
|
|
|
|
| |
being maintained by ehaupt.
|
| |
|
|
|
|
| |
Reported by: wxs
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
|
| |
refactoring. Pick up new CLIENT_MALLOC_OPTIONS parameter. Clean
up comments.
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
|
| |
on both the client side and server side.
Pointy hat to: self
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|