| CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Mon, 22 Dec 2025 12:59:00 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20071121231712
location: https://web.archive.org/web/20071121231712/https://mysql5.darwinports.com/diff/
server-timing: captures_list;dur=0.647723, exclusion.robots;dur=0.067433, exclusion.robots.policy;dur=0.056676, esindex;dur=0.008548, cdx.remote;dur=23.742502, LoadShardBlock;dur=149.031571, PetaboxLoader3.datanode;dur=110.157392, PetaboxLoader3.resolve;dur=31.299992
x-app-server: wwwb-app246-dc8
x-ts: 302
x-tr: 205
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app246; path=/
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Mon, 22 Dec 2025 12:59:00 GMT
content-type: text/html; charset=ISO-8859-1
x-archive-orig-date: Wed, 21 Nov 2007 23:17:52 GMT
x-archive-orig-server: Apache
x-archive-orig-vary: Accept-Encoding
x-archive-orig-content-length: 5050
x-archive-orig-connection: close
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Wed, 21 Nov 2007 23:17:12 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_0_20071121193218_crawl102-c/51_0_20071121231334_crawl109.arc.gz
server-timing: captures_list;dur=0.689067, exclusion.robots;dur=0.030931, exclusion.robots.policy;dur=0.018636, esindex;dur=0.012110, cdx.remote;dur=23.934148, LoadShardBlock;dur=122.779398, PetaboxLoader3.datanode;dur=139.141134, load_resource;dur=121.069765, PetaboxLoader3.resolve;dur=59.425657
x-app-server: wwwb-app242-dc8
x-ts: 200
x-tr: 306
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: HIT
server-timing: HIT
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
Recent Changes for DarwinPort mysql5
Index: databases/mysql5-devel/Portfile
--- databases/mysql5-devel/Portfile (revision 30317)
+++ databases/mysql5-devel/Portfile (revision 30318)
@@ -9,7 +9,7 @@
categories databases
platforms darwin
-maintainers openmaintainer jwa
+maintainers jwa openmaintainer
description Multithreaded SQL database server
long_description MySQL is an open-source, multi-threaded SQL database \
@@ -34,6 +34,11 @@
depends_lib port:zlib \
port:openssl
+#set major_version [strsed ${version} {s/\..*$//}]
+set major_version [strsed ${vers} {s/\..*$//}]
+set mysql mysql${major_version}
+#set dbdir ${prefix}/var/db/${mysql}
+set sysconfdir ${prefix}/etc/${name}
set dbdir ${prefix}/var/db/${name}
set mysqluser mysql
@@ -44,8 +49,7 @@
--bindir=${prefix}/lib/${name}/bin \
--includedir=${prefix}/include/${name} \
--datadir=${prefix}/share/${name} \
- --sysconfdir=${prefix}/etc/${name} \
- --program-suffix=5 \
+ --sysconfdir=${sysconfdir} \
--with-zlib-dir=${prefix} \
--with-ssl=${prefix} \
--with-extra-charsets=complex \
@@ -56,6 +60,8 @@
--with-plugins=all \
--without-server \
--enable-thread-safe-client
+# the following is in store for future
+# --program-suffix=5
post-configure {
reinplace "s;openssl_includes = -I;openssl_includes_includes = -I${prefix}/include/openssl;" ${worksrcpath}/tests/Makefile
@@ -63,16 +69,10 @@
platform darwin 6 {
pre-fetch {
- return -code error "no support for systems prior to 10.4"
+ return -code error "no support for systems prior to 10.3"
}
}
-platform darwin 7 {
- pre-fetch {
- return -code error "no support for systems prior to 10.4"
- }
-}
-
platform darwin 8 {
configure.compiler gcc-4.0
configure.cppflags-append -I${worksrcpath}/include
@@ -86,7 +86,7 @@
startupitem.stop "${prefix}/share/${name}/mysql/mysql.server stop"
}
-# the directory ${prefix}/sql-bench
+# the directories ${prefix}/sql-bench ${prefix}/mysql-test
destroot.violate_mtree yes
pre-destroot {
@@ -113,11 +113,19 @@
}
post-destroot {
- system "rm -rf ${destroot}${prefix}/mysql-test/"
+ delete ${destroot}${prefix}/mysql-test
+ # Fix paths in manpages and sample configuration files
+ foreach manpage [glob -type f ${destroot}${prefix}/share/man/man\[1-9\]/*] {
+ reinplace "s|/etc/my.cnf|${sysconfdir}/my.cnf|g" ${manpage}
+ }
+ foreach samp_conffile [glob -type f ${destroot}${prefix}/share/${name}/mysql/my-*.cnf] {
+ reinplace "s|/etc/my.cnf|${sysconfdir}/my.cnf|g" ${samp_conffile}
+ }
+
# Symlink mysql binaries into bin directory
foreach f [glob -tails -directory ${destroot}${prefix}/lib/${name}/bin my*] {
- ln -sf ${prefix}/lib/${name}/bin/${f} ${destroot}${prefix}/bin
+ ln -sf ${prefix}/lib/${name}/bin/${f} ${destroot}${prefix}/bin/${f}${major_version}
}
}
most recent changes, diff for mysql5
--- databases/mysql5-devel/Portfile (revision 30317)
+++ databases/mysql5-devel/Portfile (revision 30318)
@@ -9,7 +9,7 @@
categories databases
platforms darwin
-maintainers openmaintainer jwa
+maintainers jwa openmaintainer
description Multithreaded SQL database server
long_description MySQL is an open-source, multi-threaded SQL database \
@@ -34,6 +34,11 @@
depends_lib port:zlib \
port:openssl
+#set major_version [strsed ${version} {s/\..*$//}]
+set major_version [strsed ${vers} {s/\..*$//}]
+set mysql mysql${major_version}
+#set dbdir ${prefix}/var/db/${mysql}
+set sysconfdir ${prefix}/etc/${name}
set dbdir ${prefix}/var/db/${name}
set mysqluser mysql
@@ -44,8 +49,7 @@
--bindir=${prefix}/lib/${name}/bin \
--includedir=${prefix}/include/${name} \
--datadir=${prefix}/share/${name} \
- --sysconfdir=${prefix}/etc/${name} \
- --program-suffix=5 \
+ --sysconfdir=${sysconfdir} \
--with-zlib-dir=${prefix} \
--with-ssl=${prefix} \
--with-extra-charsets=complex \
@@ -56,6 +60,8 @@
--with-plugins=all \
--without-server \
--enable-thread-safe-client
+# the following is in store for future
+# --program-suffix=5
post-configure {
reinplace "s;openssl_includes = -I;openssl_includes_includes = -I${prefix}/include/openssl;" ${worksrcpath}/tests/Makefile
@@ -63,16 +69,10 @@
platform darwin 6 {
pre-fetch {
- return -code error "no support for systems prior to 10.4"
+ return -code error "no support for systems prior to 10.3"
}
}
-platform darwin 7 {
- pre-fetch {
- return -code error "no support for systems prior to 10.4"
- }
-}
-
platform darwin 8 {
configure.compiler gcc-4.0
configure.cppflags-append -I${worksrcpath}/include
@@ -86,7 +86,7 @@
startupitem.stop "${prefix}/share/${name}/mysql/mysql.server stop"
}
-# the directory ${prefix}/sql-bench
+# the directories ${prefix}/sql-bench ${prefix}/mysql-test
destroot.violate_mtree yes
pre-destroot {
@@ -113,11 +113,19 @@
}
post-destroot {
- system "rm -rf ${destroot}${prefix}/mysql-test/"
+ delete ${destroot}${prefix}/mysql-test
+ # Fix paths in manpages and sample configuration files
+ foreach manpage [glob -type f ${destroot}${prefix}/share/man/man\[1-9\]/*] {
+ reinplace "s|/etc/my.cnf|${sysconfdir}/my.cnf|g" ${manpage}
+ }
+ foreach samp_conffile [glob -type f ${destroot}${prefix}/share/${name}/mysql/my-*.cnf] {
+ reinplace "s|/etc/my.cnf|${sysconfdir}/my.cnf|g" ${samp_conffile}
+ }
+
# Symlink mysql binaries into bin directory
foreach f [glob -tails -directory ${destroot}${prefix}/lib/${name}/bin my*] {
- ln -sf ${prefix}/lib/${name}/bin/${f} ${destroot}${prefix}/bin
+ ln -sf ${prefix}/lib/${name}/bin/${f} ${destroot}${prefix}/bin/${f}${major_version}
}
}