public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* MySQL 5.6.19
@ 2014-07-09 10:18 Sascha Kilian
  0 siblings, 0 replies; 3+ messages in thread
From: Sascha Kilian @ 2014-07-09 10:18 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 79 bytes --]

Hi there,

i have build a MySQL patch for MySQL 5.6.19. 

best regards

Sascha

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: lfs-mysql.patch --]
[-- Type: text/x-patch, Size: 1729 bytes --]

27c27
< VER        = 5.0.96
---
> VER        = 5.6.19
30,31c30,31
< DL_FILE    = $(THISAPP).tar.gz
< DL_FROM    = $(URL_IPFIRE)
---
> DL_FILE    = $(THISAPP)-linux-glibc2.5-x86_64.tar.gz
> DL_FROM    = http://dev.mysql.com/get/Downloads/MySQL-5.6/
36c36
< 
---
> DEPS       = "cmake"
47c47
< $(DL_FILE)_MD5 = bf280949049161aa68cf29e600d9ec79
---
> $(DL_FILE)_MD5 = 5e0e455c5a02b661b10561ad60e86a19
79,94c79,89
< @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
< cd $(DIR_APP) && ./configure --prefix=/usr \
<             --sysconfdir=/etc \
<             --libexecdir=/usr/sbin \
<             --localstatedir=/srv/mysql \
<             --enable-thread-safe-client \
<             --enable-assembler \
<             --enable-local-infile \
<             --with-unix-socket-path=/var/run/mysql/mysql.sock \
<             --without-debug \
<             --without-bench \
<             --without-readline \
<             --with-berkeley-db \
<             --with-extra-charsets=all
< cd $(DIR_APP) && make testdir=/tmp/mysql $(MAKETUNING)
< cd $(DIR_APP) && make testdir=/tmp/mysql install
---
> @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xf $(DIR_DL)/$(DL_FILE)
> cd $(DIR_APP) && \
> DEFAULT_CHARSET=utf8 \
> DEFAULT_COLLATION=utf8_generic_ci \
> ENABLE_DOWNLOADS=ON \
> ENABLE_GCOV=ON \
> ENABLE_GPROF=ON \
> ENABLE_PROFILING=OFF \
> WITH_ZLIB=ON \
> cmake .
> cd $(DIR_APP) && make install
99,101c94
< mysql_install_db --user=mysql --force
< chgrp -v mysql /srv/mysql{,/test,/mysql}
< chown mysql.mysql /srv/mysql/
---
> cd /usr/local/mysql/ && scripts/mysql_install_db --user=mysql --force
103,104d95
< install -v -m 644 $(DIR_SRC)/config/backup/includes/mysql \
< /var/ipfire/backup/addons/includes/mysql

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: MySQL 5.6.19
  2014-07-08 10:35 ` MySQL 5.6.19 Sascha Kilian
@ 2014-07-08 13:10   ` Sascha Kilian
  0 siblings, 0 replies; 3+ messages in thread
From: Sascha Kilian @ 2014-07-08 13:10 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 776 bytes --]

Hi,

i have successful compiled and installed MySQL 5.6.19. I provide the
patch after i have runned some tests. I have a little Patch for make.sh
too, to build single packages (little bit tricky if you have a fresh
checkout and not full compiled the entire ipfire.

best regards

Sascha



Am Dienstag, den 08.07.2014, 12:35 +0200 schrieb Sascha Kilian:
> Hi Devs,
> 
> i build actual MySQL 5.6.19 for IPFire. 
> A Question is, how i can bring up the tar.gz to the ipfire repository?
> Did you download and reupload it? or can i safe insert the original url
> for the tar.gz ?
> 
> best regards
> 
> Sascha
> 
> _______________________________________________
> Development mailing list
> Development(a)lists.ipfire.org
> http://lists.ipfire.org/mailman/listinfo/development


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: make.sh.patch --]
[-- Type: text/x-patch, Size: 1441 bytes --]

1130,1169d1129
< buildmodul)
< 	if [ ! -f "$BASEDIR/lfs/$2" ]; then
< 	    echo "LFS File not exist"
< 	    exit 1
< 	fi
< 	clear
<         LOGFILE="$BASEDIR/log/_build.custom.$2.log"
< 	export LOGFILE
< 	PACKAGE=`ls -v -r $BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-$MACHINE.tar.gz 2> /dev/null | head -n 1`
< 	#only restore on a clean disk
< 	if [ ! -f log/cleanup-toolchain-2-tools ]; then
< 		if [ ! -n "$PACKAGE" ]; then
< 			beautify build_stage "Full toolchain compilation - Native GCC: `gcc --version | grep GCC | awk {'print $3'}`"
< 			prepareenv
< 			buildtoolchain
< 		else
< 			PACKAGENAME=${PACKAGE%.tar.gz}
< 			beautify build_stage "Packaged toolchain compilation"
< 			if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then
< 				tar zxf $PACKAGE
< 				prepareenv
< 			else
< 				exiterror "$PACKAGENAME md5 did not match, check downloaded package"
< 			fi
< 		fi
< 	else
< 		echo -n "Using installed toolchain" | tee -a $LOGFILE
< 		beautify message SKIP
< 		prepareenv
< 	fi
< 
< 	beautify build_start
< 	beautify build_stage "Building LFS"
< 	buildbase
< 
< 	beautify build_stage "Building $2"
< 
< 	ipfiremake $2
< 	beautify build_end
<     ;;
1171,1172c1131
< 
< 	echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain|buildmodul}"
---
> 	echo "Usage: $0 {build|changelog|clean|gettoolchain|downloadsrc|shell|sync|toolchain}"


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: make.sh-usage.patch --]
[-- Type: text/x-patch, Size: 153 bytes --]

16,17d15
<    buildmodul : optionally build a single modul from LFS file.
<                 (you have to check the dependencies for this modul by hand)


^ permalink raw reply	[flat|nested] 3+ messages in thread

* MySQL 5.6.19
  2014-07-07  9:18 IPFire Building Packages Michael Tremer
@ 2014-07-08 10:35 ` Sascha Kilian
  2014-07-08 13:10   ` Sascha Kilian
  0 siblings, 1 reply; 3+ messages in thread
From: Sascha Kilian @ 2014-07-08 10:35 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 234 bytes --]

Hi Devs,

i build actual MySQL 5.6.19 for IPFire. 
A Question is, how i can bring up the tar.gz to the ipfire repository?
Did you download and reupload it? or can i safe insert the original url
for the tar.gz ?

best regards

Sascha


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-07-09 10:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-09 10:18 MySQL 5.6.19 Sascha Kilian
  -- strict thread matches above, loose matches on Subject: below --
2014-07-07  9:18 IPFire Building Packages Michael Tremer
2014-07-08 10:35 ` MySQL 5.6.19 Sascha Kilian
2014-07-08 13:10   ` Sascha Kilian

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox