- 19 Jan, 2018 1 commit
-
-
Mike Hibler authored
-
- 02 Jun, 2017 1 commit
-
-
Mike Hibler authored
-
- 09 Jul, 2015 1 commit
-
-
Mike Hibler authored
-
- 26 Jun, 2015 1 commit
-
-
Mike Hibler authored
* add www/p5-CGI package which is deprecated in CORE and will be removed in perl 5.22, * rename xerces-c2-devel port to xerces-c2 to avoid needing to fix our scripts that check for a particular package
-
- 24 Jun, 2015 1 commit
-
-
Mike Hibler authored
Big changes a comin' to try to get us back on the supported path. * perl 5.14 -> 5.20 * mysql 5.1 -> 5.5 * php 5.4 -> 5.6 * tcl 8.4 -> 8.6 * number of vim patches up to 683. Not everything tested yet, but getting there. Specific changes: * New install/ports directory. New packages for FreeBSD 10.1 are version 6.1. Cleaned up the ports' Makefiles getting rid of conditionals for all older versions. Also got rid of ports we don't use. Old ports tree is now install/oports. * Install script changes. Make sure /usr/bin/perl and /usr/local/bin/python links exist. Ports no longer make these but we use them in '#!'. Changes to mysql install and startup script--mysql has changed a LOT since we did the support in 4.x. Create syslog entry for named.log. Make sure php.conf loads the legacy "mysql" module rather than using "mysqli". * Elabinelab support. reflect new packages, remove all old packages (except perl) before installing new versions, install "extras" package, make sure sendmail cert get regenerated, make sure /usr/bin/perl link exists, make sure /usr/local/bin/python link exists. * Custom ports. otcl and xerces-c2 have both been removed from the ports tree as of Q2 2015. ipmitool-devel is a port for the latest version of ipmitool. The FreeBSD port is still a rev behind here. We need the newer version as it appears to make our SOL consoles more stable. * Random. Fixed prerender as neato output has changed again. Tweak to sslxmlrpc_server to reflect change in an underlying library. Tweak to db/libdb.py.in to turn on autocommit which matters now as mysql 5.5 will hang on a metadata lock otherwise. Remade eventsys perl/python stubs with SWIG 2.0. SWIG 1.3 did not produce working stubs for perl 5.20. Specific un-changes: * Apache is still at 2.2. I lack the guts and skilz to upgrade to 2.4. * Xerces library is still at (now unsupported) 2.8. Assign will need changes before we can move to 3.x. * Python is still 2.7. Thanks to Keith Sklower for all the work he did converting ports!
-
- 28 Oct, 2014 1 commit
-
-
Leigh B Stoller authored
-
- 09 May, 2014 1 commit
-
-
Leigh B Stoller authored
-
- 03 Apr, 2014 1 commit
-
-
Mike Hibler authored
The biggest changes were related to 10.0's replacing gcc with clang and the switch to a new package system. The former required various fixes to Makefiles that hardwired "gcc" and also missing prototypes in source files that clang is particularly obnoxious about. There was also accomodating the normal evolution of the ports tree. New variables were needed in many of the Makefiles for this. Hopefully, all the changes I made are backward compatible, but I don't actually care that much since I hope to never, ever have to remake those older packages! A new emulab version of the m2crypto port was needed to reflect that m2crypto is no longer installed as an .egg file. Casualties: * Emulab assign. As of this commit, assign does not build with clang. It will build, but immediately core dumps if built with a gcc port (gcc46 below). THIS NEEDS TO BE FIXED! * Emulab nsverify. This requires building a pure ns-2.34, which is old and does not compile with clang. Yo...
-
- 12 Oct, 2013 1 commit
-
-
Mike Hibler authored
Works for 32-bit build.
-
- 06 Dec, 2012 1 commit
-
-
Mike Hibler authored
Uses the "5.0" package set (like FBSD 9.0, but unlike FBSD 8.2) which includes perl 5.12, python 2.7 and apache 2.22. This is what will be installed on our boss and ops later this month. Some additional updates to the meta ports as well to make them "work better".
-
- 14 Nov, 2012 1 commit
-
-
Leigh B Stoller authored
-
- 01 Aug, 2012 1 commit
-
-
Mike Hibler authored
NOTE: currently only for FreeBSD 7.3 installs because that is the only set of boss/ops/fs packages I have built so far! This mostly involved minor changes to event agents. Too often we were passing a pointer to a "long" to *get_int32, which on a 64-bit x86 OS would fill the wrong half of a 64-bit variable. There was also one instance of TCL code that had to be tweaked to account for 32- vs 64-bit. These changes also required regeneration of SWIG stubs and an ugly change to the SWIG generated code to use va_copy rather than direct assignment in a couple of places. Also related to SWIG is ensuring that the components that go into the perl/python stub .so files are built with PIC. The amd64 linker requires this. The meta-ports had to be changed to reflect that linuxthreads and ulsshxmlrpcpp don't work on amd64. The former had little effect as we had mostly eliminated uses of linuxthreads already. The one thing that did change was that we do not build nfstrace on amd64 (and we don't currently use this anyway). Removing ulsshxmlrpcpp required switching to the new event scheduler (event/new_sched) that Ryan did awhile back. Note that it is only "new" in the sense that it uses a standard XMLRPC package, there should be no functional differences. However, to be safe we only use new_sched as the standard scheduler on 64-bit server installs. Finally, added support to elabinelab setup to do a 64-bit server install. Just specify FBSD73-64-STD as the boss/ops/fs osid and rc.mkelab should do the rest. That is pretty much it other than some random nits here and there.
-
- 30 Apr, 2012 1 commit
-
-
Mike Hibler authored
Upgrade to perl 5.12 means no more "suidperl" (setuid perl scripts). So we now have yet another little wrapper (security/runsuid.c) which runs suid and whose sole function is to exec the perl script of the same name in the /usr/testbed/suidbin directory. So a formerly setuid perl script install now goes like: create /usr/testbed/sbin/mkproj as a symlink to /usr/testbed/libexec/runsuid install real mkproj perl script in /usr/testbed/suidbin/mkproj When the setuid-wrapper is invoked under the name "mkproj" it execs /usr/testbed/suidbin/mkproj. We could almost use sudo for this purpose instead (see security/sudoers.in) but sudo loses one of the groups in the group list. /usr/include/utmp.h is gone in FreeBSD 9.0. In most places we nevered needed it, but in the one case that did (tg source), it just used a couple of the constants exposed (UT_*) and not the struct, so I just hardwired values for the constants. The usual tweakage to the install stuff to reflect yet another set of packages!
-
- 06 Jan, 2012 1 commit
-
-
Mike Hibler authored
Still a work in progress.
-
- 22 Dec, 2010 1 commit
-
-
Mike Hibler authored
-
- 21 Dec, 2010 1 commit
-
-
Mike Hibler authored
Mostly some missing dependencies that turned up during our upgrade.
-
- 22 Sep, 2010 1 commit
-
-
Mike Hibler authored
Mostly this means a new package set emulab-*-3.1 and some corresponding tweaks to the install scripts and elabinelab scripts. PLEASE NOTE: a 7.3 install uses PHP5, Perl 5.10.1 and Python 2.6.
-
- 09 Feb, 2010 4 commits
-
-
Mike Hibler authored
-
Mike Hibler authored
All we really do is apply one non-standard patch to avoid SSL certificate mismatches due to "www.emulab.net" vs. "boss.emulab.net". In older versions of m2crypto we just patched the installed library files, but the newer versions get installed as a .egg file, so it is easiest to just patch it while the port is being built. I really don't like creating a separate port for this, but the alternative was to modify the standard port, adding a new option. That seemed even worse.
-
Mike Hibler authored
-
Mike Hibler authored
-
- 14 Aug, 2008 1 commit
-
-
Mike Hibler authored
-
- 30 Jul, 2008 1 commit
-
-
Mike Hibler authored
This will stay until we get rid of the old hacky "Mysql" interface usage. THIS HAS NOT BEEN TESTED!
-
- 23 Jul, 2008 1 commit
-
-
Mike Hibler authored
-
- 10 May, 2007 1 commit
-
-
Mike Hibler authored
-
- 07 May, 2007 1 commit
-
-
Leigh B. Stoller authored
with pubsub stuff now.
-
- 21 Sep, 2006 1 commit
-
-
Kirk Webb authored
Fix typo in dependancy for p5-GD-Graph: groups -> graphics
-
- 29 Aug, 2006 1 commit
-
-
Leigh B. Stoller authored
-
- 05 Jul, 2006 1 commit
-
-
Leigh B. Stoller authored
Apparently that port is long (long) dead, and somewhere along the line the stuff that sits below it changed, which caused our stuff to break. The modern and maintained version of the same API is now /usr/ports/databases/p5-DBD-mysql (/usr/ports/databases/p5-DBD-mysql50 when using mysql 5.0).
-
- 16 Jun, 2006 1 commit
-
-
Kirk Webb authored
Fix up emulab-boss and emulab-ops port Makefiles to work with FreeBSD 6 and also to look for it instead of 5 when deciding what to do.
-
- 28 Apr, 2006 1 commit
-
-
Leigh B. Stoller authored
-
- 06 Mar, 2006 1 commit
-
-
Leigh B. Stoller authored
version of TWiki, which will not run on ops until it is updated.
-
- 02 Mar, 2006 1 commit
-
-
Leigh B. Stoller authored
thought it would be cause of our current hacked up source code. I also chased a cookie bug that is caused by domain confusion between inner and outer emulab. No solutions for this yet, but its not likely to bother anyone, except the dope that is trying to debug the inner flyspray web site.
-
- 26 Feb, 2006 1 commit
-
-
Leigh B. Stoller authored
public stuff needed on ops (cvsd).
-
- 22 Feb, 2006 1 commit
-
-
Leigh B. Stoller authored
-
- 21 Feb, 2006 1 commit
-
-
Leigh B. Stoller authored
tagged from the 6.0 release. Also lots of changes to the install scripts to handle inatlling boss/ops/fs on 5.4. All changes are conditionalized so that things will continue to work on 4.10, but hopefully we will move away from that before the year is out.
-
- 17 May, 2005 1 commit
-
-
Robert Ricci authored
dependancies.
-
- 04 May, 2005 1 commit
-
-
Leigh B. Stoller authored
-
- 26 Jan, 2005 1 commit
-
-
Robert Ricci authored
number.
-
- 23 Sep, 2004 1 commit
-
-
Robert Ricci authored
-