aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorGreg Larkin <glarkin@FreeBSD.org>2009-03-10 21:08:51 +0000
committerGreg Larkin <glarkin@FreeBSD.org>2009-03-10 21:08:51 +0000
commit1ed501948b110177fab93a6a6182fbc01f648114 (patch)
tree0036638879816e24234d266fba2e29b60e587d81 /UPDATING
parent40b8f17b708c80a52f781fdc0ce1c3f2a3f1ad5d (diff)
downloadports-1ed501948b110177fab93a6a6182fbc01f648114.tar.gz
ports-1ed501948b110177fab93a6a6182fbc01f648114.zip
- Updated to 0.21
- Fixed user handling - Added entry to UPDATING for 0.21 to 0.21 version upgrade - Enable build on amd64 - Unbreak, undeprecate, and unexpire PR: ports/126343 Submitted by: Anders Troback <freebsd at troback dot com>
Notes
Notes: svn path=/head/; revision=229856
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING19
1 files changed, 19 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index acaa902ba879..ff1edf1d8a03 100644
--- a/UPDATING
+++ b/UPDATING
@@ -6,6 +6,25 @@ You should get into the habit of checking this file for changes each
time you update your ports collection, before attempting any port
upgrades.
+20090310:
+ AFFECTS: users of multimedia/mythtv
+ AUTHOR: glarkin@FreeBSD.org
+
+ The upgrade from version 0.20 to version 0.21 should be transparent.
+ Any changes to the database structure should be applied automatically.
+
+ However, it is strongly recommended that you back up your database before
+ installing a new version of MythTV.
+
+ Example:
+ $ mysqldump -u mythtv -pmythtv mythconverg -c > mythtv_backup.sql
+
+ To restore: (assuming that you've dropped the database)
+ $ mysql -u root
+ mysql>create database mythconverg;
+ mysql>exit
+ $ mysql -u mythtv -pmythtv mythconverg < mythtv_backup.sql
+
20090309:
AFFECTS: users of devel/libusb on CURRENT
AUTHOR: stas@FreeBSD.org