Merge lp:~percona-core/percona-xtradb-cluster/pxc56-merge into lp:percona-xtradb-cluster

Proposed by Raghavendra D Prabhu
Status: Merged
Approved by: Alexey Kopytov
Approved revision: 797
Merge reported by: Raghavendra D Prabhu
Merged at revision: not available
Proposed branch: lp:~percona-core/percona-xtradb-cluster/pxc56-merge
Merge into: lp:percona-xtradb-cluster
Diff against target: 165209 lines
To merge this branch: bzr merge lp:~percona-core/percona-xtradb-cluster/pxc56-merge
Reviewer Review Type Date Requested Status
Alexey Kopytov (community) Approve
Review via email: mp+219965@code.launchpad.net
To post a comment you must log in.
795. By Raghavendra D Prabhu

Merge changes from pxc56-merge-codership branch

796. By Raghavendra D Prabhu

Merge PS 5.6 upto revno 594

797. By Raghavendra D Prabhu

Remove redhat-lsb from build requirements

Revision history for this message
Alexey Kopytov (akopytov) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== renamed directory 'Percona-Server' => ''
2=== removed file '.bzrignore'
3--- .bzrignore 2013-09-05 13:50:58 +0000
4+++ .bzrignore 1970-01-01 00:00:00 +0000
5@@ -1,3 +0,0 @@
6-build
7-doc
8-doc/*
9
10=== modified file '.bzrignore'
11--- Percona-Server/.bzrignore 2013-09-01 09:27:10 +0000
12+++ .bzrignore 2014-05-21 18:59:03 +0000
13@@ -13,6 +13,7 @@
14 *.dir
15 *.dll
16 *.dylib
17+*.diff
18 *.exe
19 *.exp
20 *.gcda
21@@ -787,9 +788,9 @@
22 libmysql/.deps/viossl.Plo
23 libmysql/.deps/viosslfactories.Plo
24 libmysql/.deps/xml.Plo
25-libmysql/.libs/libmysqlclient.lai
26-libmysql/.libs/libmysqlclient.so.15
27-libmysql/.libs/libmysqlclient.so.15.0.0
28+libmysql/.libs/libperconaserverclient.lai
29+libmysql/.libs/libperconaserverclient.so.15
30+libmysql/.libs/libperconaserverclient.so.15.0.0
31 libmysql/conf_to_src
32 libmysql/debug/libmysql.exp
33 libmysql/libmysql.ver
34@@ -923,9 +924,9 @@
35 libmysql_r/.deps/viossl.Plo
36 libmysql_r/.deps/viosslfactories.Plo
37 libmysql_r/.deps/xml.Plo
38-libmysql_r/.libs/libmysqlclient_r.lai
39-libmysql_r/.libs/libmysqlclient_r.so.15
40-libmysql_r/.libs/libmysqlclient_r.so.15.0.0
41+libmysql_r/.libs/libperconaserverclient_r.lai
42+libmysql_r/.libs/libperconaserverclient_r.so.15
43+libmysql_r/.libs/libperconaserverclient_r.so.15.0.0
44 libmysql_r/acconfig.h
45 libmysql_r/client_settings.h
46 libmysql_r/conf_to_src
47@@ -3148,3 +3149,4 @@
48 storage/perfschema/pfs_lex_token.h
49 storage/perfschema/gen_pfs_lex_token
50 sql/share/bulgarian
51+doc/build
52
53=== modified file 'CMakeLists.txt'
54--- Percona-Server/CMakeLists.txt 2013-12-11 10:42:40 +0000
55+++ CMakeLists.txt 2014-05-21 18:59:03 +0000
56@@ -1,4 +1,4 @@
57-# Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved.
58+# Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
59 #
60 # This program is free software; you can redistribute it and/or modify
61 # it under the terms of the GNU General Public License as published by
62@@ -19,6 +19,11 @@
63 CMAKE_POLICY(VERSION 2.8)
64 endif()
65
66+#fix for http://bugs.mysql.com/bug.php?id=71089
67+IF(NOT(CMAKE_VERSION VERSION_LESS "2.8.12"))
68+ CMAKE_POLICY(SET CMP0022 OLD)
69+ENDIF()
70+
71 MESSAGE(STATUS "Running cmake version ${CMAKE_VERSION}")
72
73 SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake)
74@@ -168,11 +173,7 @@
75 # Whether the maintainer mode compiler options should be enabled.
76 IF(MYSQL_MAINTAINER_MODE)
77 IF(CMAKE_C_COMPILER_ID MATCHES "GNU")
78- IF(WITH_INNODB_MEMCACHED)
79- SET_MYSQL_MAINTAINER_GNU_C_OPTIONS_NO_WERROR()
80- ELSE()
81- SET_MYSQL_MAINTAINER_GNU_C_OPTIONS()
82- ENDIF()
83+ SET_MYSQL_MAINTAINER_GNU_C_OPTIONS()
84 ENDIF()
85 IF(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
86 SET_MYSQL_MAINTAINER_GNU_CXX_OPTIONS()
87@@ -334,6 +335,10 @@
88 OPTION(INNODB_COMPILER_HINTS "Compile InnoDB with compiler hints" ON)
89 MARK_AS_ADVANCED(INNODB_COMPILER_HINTS)
90
91+OPTION(INNODB_PAGE_ATOMIC_REF_COUNT "Use atomics for the page reference count"
92+ ON)
93+MARK_AS_ADVANCED(INNODB_PAGE_ATOMIC_REF_COUNT)
94+
95 IF (NOT MAX_INDEXES)
96 SET(MAX_INDEXES 64)
97 ENDIF()
98@@ -400,6 +405,16 @@
99 SET(DEFAULT_SYSCONFDIR "${SYSCONFDIR}")
100 ENDIF()
101
102+SET(TMPDIR "P_tmpdir"
103+ CACHE PATH
104+ "PATH to MySQL TMP dir. Defaults to the P_tmpdir macro in <stdio.h>")
105+IF(TMPDIR STREQUAL "P_tmpdir")
106+ # Do not quote it, to refer to the P_tmpdir macro.
107+ SET(DEFAULT_TMPDIR "P_tmpdir")
108+ELSE()
109+ # Quote it, to make it a const char string.
110+ SET(DEFAULT_TMPDIR "\"${TMPDIR}\"")
111+ENDIF()
112
113 # Run platform tests
114 INCLUDE(configure.cmake)
115@@ -557,7 +572,7 @@
116 COMPONENT Readme
117 OPTIONAL
118 )
119- INSTALL(FILES README DESTINATION ${INSTALL_DOCREADMEDIR} COMPONENT Readme)
120+ INSTALL(FILES README.MySQL DESTINATION ${INSTALL_DOCREADMEDIR} COMPONENT Readme)
121 INSTALL(FILES ${CMAKE_BINARY_DIR}/Docs/INFO_SRC ${CMAKE_BINARY_DIR}/Docs/INFO_BIN DESTINATION ${INSTALL_DOCDIR})
122 IF(UNIX)
123 INSTALL(FILES Docs/INSTALL-BINARY Docs/README-wsrep DESTINATION ${INSTALL_DOCREADMEDIR} COMPONENT Readme)
124
125=== renamed file 'COPYING.innodb-deadlock-count-patch' => 'COPYING.innodb-deadlock-count-patch'
126=== renamed file 'COPYING.show_temp_51' => 'COPYING.show_temp_51.moved'
127=== renamed file 'Makefile' => 'Makefile-pxc'
128--- Makefile 2014-01-30 11:57:47 +0000
129+++ Makefile-pxc 2014-05-21 18:59:03 +0000
130@@ -1,45 +1,41 @@
131-MYSQL_VERSION=5.6.15
132-PERCONA_SERVER_VERSION=rel63.0
133-PERCONA_XTRADB_CLUSTER ?=Percona-XtraDB-Cluster-$(MYSQL_VERSION)
134-PERCONA_SERVER ?=Percona-Server
135+MYSQL_VERSION=5.6.17
136+PERCONA_SERVER_VERSION=rel65.0
137+PERCONA_XTRADB_CLUSTER ?=Percona-XtraDB-Cluster-$(MYSQL_VERSION)-$(PERCONA_SERVER_VERSION)
138+PERCONA_XTRADB_CLUSTER_SHORT_1 ?=Percona-XtraDB-Cluster-$(MYSQL_VERSION)
139+PERCONA_XTRADB_CLUSTER_SHORT_2 ?=Percona-XtraDB-Cluster
140 DEBUG_DIR ?= $(PERCONA_XTRADB_CLUSTER)-debug
141 RELEASE_DIR ?= $(PERCONA_XTRADB_CLUSTER)-release
142 SERIES ?=series
143
144-CFLAGS=-fPIC -Wall -O3 -g -static-libgcc -fno-omit-frame-pointer -fno-strict-aliasing
145-CXXFLAGS=-fno-exceptions -fPIC -Wall -Wno-unused-parameter -fno-implicit-templates -fno-exceptions -fno-rtti -O3 -g -static-libgcc -fno-omit-frame-pointer -fno-strict-aliasing
146+CFLAGS ?=-fPIC -Wall -O3 -g -static-libgcc -fno-omit-frame-pointer -fno-strict-aliasing
147+CXXFLAGS ?=-fno-exceptions -fPIC -Wall -Wno-unused-parameter -fno-implicit-templates -fno-exceptions -fno-rtti -O3 -g -static-libgcc -fno-omit-frame-pointer -fno-strict-aliasing
148
149 CFLAGS_RELEASE=$(CFLAGS) -DDBUG_OFF -DMY_PTHREAD_FASTMUTEX=1
150 CXXFLAGS_RELEASE=$(CXXFLAGS) -DDBUG_OFF -DMY_PTHREAD_FASTMUTEX=1
151
152-CMAKE=CC=gcc CXX=gcc cmake $(ADDITIONAL)
153+CMAKE=CC=gcc CXX=g++ cmake $(ADDITIONAL)
154 ADDITIONAL ?=
155-CONFIGURE=CFLAGS="-O2 -g -fmessage-length=0 -D_FORTIFY_SOURCE=2" CXXFLAGS="-O2 -g -fmessage-length=0 -D_FORTIFY_SOURCE=2" LIBS=-lrt ./configure --prefix=/usr/local/$(PERCONA_XTRADB_CLUSTER) --with-plugin-innobase --with-plugin-partition
156+CONFIGURE=CFLAGS="-O2 -g -fmessage-length=0 -D_FORTIFY_SOURCE=2" CXXFLAGS="-O2 -g -fmessage-length=0 -D_FORTIFY_SOURCE=2" LIBS=-lrt ./configure --prefix=/usr/local/$(PERCONA_XTRADB_CLUSTER)-$(MYSQL_VERSION) --with-plugin-innobase --with-plugin-partition
157
158 REV = $(shell bzr revno)
159
160-all: main maatkit-udf pxc-tests install-lic
161- @echo ""
162- @echo "Percona Server source code is ready"
163- @echo "Now change directory to $(PERCONA_XTRADB_CLUSTER) define variables as show below"
164- @echo ""
165- export CFLAGS="-O2 -g -fmessage-length=0 -D_FORTIFY_SOURCE=2"
166- export CXXFLAGS="-O2 -g -fmessage-length=0 -D_FORTIFY_SOURCE=2"
167- export LIBS=-lrt
168+all: maatkit-udf
169+ @echo ""
170+ @echo "Percona XtraDB Cluster source code is ready"
171+ @echo "Now define variables as show below"
172+ @echo ""
173+ @echo export CFLAGS="-O2 -g -fmessage-length=0 -D_FORTIFY_SOURCE=2"
174+ @echo export CXXFLAGS="-O2 -g -fmessage-length=0 -D_FORTIFY_SOURCE=2"
175+ @echo export LIBS=-lrt
176 @echo ""
177 @echo "and run cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_CONFIG=mysql_release -DFEATURE_SET=community -DWITH_EMBEDDED_SERVER=OFF && make all install"
178 @echo ""
179
180 maatkit-udf:
181- cp -R UDF "$(PERCONA_XTRADB_CLUSTER)"
182- cd "$(PERCONA_XTRADB_CLUSTER)"/UDF && autoreconf --install
183-
184-pxc-tests:
185- -rm -rf "$(PERCONA_XTRADB_CLUSTER)"/percona-xtradb-cluster-tests
186- cp -R tests "$(PERCONA_XTRADB_CLUSTER)"/percona-xtradb-cluster-tests
187+ cd UDF && autoreconf --install
188
189 configure: all
190- (cd $(PERCONA_XTRADB_CLUSTER); bash BUILD/autorun.sh; $(CONFIGURE))
191+ (bash BUILD/autorun.sh; $(CONFIGURE))
192
193 cmake: cmake_release cmake_debug
194
195@@ -52,24 +48,10 @@
196 (mkdir -p $(DEBUG_DIR); cd $(DEBUG_DIR); CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" $(CMAKE) -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug -DWITH_DEBUG=ON -DMYSQL_MAINTAINER_MODE=OFF ../$(PERCONA_XTRADB_CLUSTER))
197
198 binary:
199- (cd $(PERCONA_XTRADB_CLUSTER); CFLAGS="$(CFLAGS_RELEASE)" CXXFLAGS="$(CXXFLAGS_RELEASE)" ${CMAKE} . -DBUILD_CONFIG=mysql_release \
200+ (CFLAGS="$(CFLAGS_RELEASE)" CXXFLAGS="$(CXXFLAGS_RELEASE)" ${CMAKE} . -DBUILD_CONFIG=mysql_release \
201 -DCMAKE_BUILD_TYPE=RelWithDebInfo \
202- -DCMAKE_INSTALL_PREFIX="/usr/local/$(PERCONA_XTRADB_CLUSTER)-$(REV)" \
203+ -DCMAKE_INSTALL_PREFIX="/usr/local/$(PERCONA_XTRADB_CLUSTER)-$(MYSQL_VERSION)-$(REV)" \
204 -DFEATURE_SET="community" \
205 -DWITH_EMBEDDED_SERVER=OFF \
206- -DCOMPILATION_COMMENT="Percona-Server" \
207+ -DCOMPILATION_COMMENT="Percona-XtraDB-Cluster" \
208 -DMYSQL_SERVER_SUFFIX="-$(REV)" )
209-
210-install-lic:
211- @echo "Installing license files"
212- install -m 644 COPYING.* $(PERCONA_XTRADB_CLUSTER)
213-
214-prepare:
215- @echo "Prepare Percona Server sources"
216- rm -f $(PERCONA_XTRADB_CLUSTER)
217- ln -s $(PERCONA_SERVER) $(PERCONA_XTRADB_CLUSTER)
218-
219-main: prepare
220-
221-clean:
222- rm -rf mysql-$(MYSQL_VERSION) $(PERCONA_XTRADB_CLUSTER) $(RELEASE_DIR) $(DEBUG_DIR)
223
224=== removed file 'Makefile.ps'
225--- Makefile.ps 2014-01-30 11:57:47 +0000
226+++ Makefile.ps 1970-01-01 00:00:00 +0000
227@@ -1,74 +0,0 @@
228-MYSQL_VERSION=5.6.15
229-PERCONA_SERVER_VERSION=rel63.0
230-PERCONA_SERVER ?=Percona-Server-$(MYSQL_VERSION)-$(PERCONA_SERVER_VERSION)
231-PERCONA_SERVER_SHORT_1 ?=Percona-Server-$(MYSQL_VERSION)
232-PERCONA_SERVER_SHORT_2 ?=Percona-Server
233-DEBUG_DIR ?= $(PERCONA_SERVER)-debug
234-RELEASE_DIR ?= $(PERCONA_SERVER)-release
235-SERIES ?=series
236-
237-CFLAGS=-fPIC -Wall -O3 -g -static-libgcc -fno-omit-frame-pointer -fno-strict-aliasing
238-CXXFLAGS=-fno-exceptions -fPIC -Wall -Wno-unused-parameter -fno-implicit-templates -fno-exceptions -fno-rtti -O3 -g -static-libgcc -fno-omit-frame-pointer -fno-strict-aliasing
239-
240-CFLAGS_RELEASE=$(CFLAGS) -DDBUG_OFF -DMY_PTHREAD_FASTMUTEX=1
241-CXXFLAGS_RELEASE=$(CXXFLAGS) -DDBUG_OFF -DMY_PTHREAD_FASTMUTEX=1
242-
243-CMAKE=CC=gcc CXX=gcc cmake $(ADDITIONAL)
244-ADDITIONAL ?=
245-CONFIGURE=CFLAGS="-O2 -g -fmessage-length=0 -D_FORTIFY_SOURCE=2" CXXFLAGS="-O2 -g -fmessage-length=0 -D_FORTIFY_SOURCE=2" LIBS=-lrt ./configure --prefix=/usr/local/$(PERCONA_SERVER)-$(MYSQL_VERSION) --with-plugin-innobase --with-plugin-partition
246-
247-REVS = $(shell bzr log | grep rev | head -1 )
248-REV = $(word 2, $(REVS) )
249-
250-all: main maatkit-udf install-lic
251- @echo ""
252- @echo "Percona Server source code is ready"
253- @echo "Now change directory to $(PERCONA_SERVER) define variables as show below"
254- @echo ""
255- export CFLAGS="-O2 -g -fmessage-length=0 -D_FORTIFY_SOURCE=2"
256- export CXXFLAGS="-O2 -g -fmessage-length=0 -D_FORTIFY_SOURCE=2"
257- export LIBS=-lrt
258- @echo ""
259- @echo "and run cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_CONFIG=mysql_release -DFEATURE_SET=community -DWITH_EMBEDDED_SERVER=OFF && make all install"
260- @echo ""
261-
262-maatkit-udf:
263- cp -R UDF "$(PERCONA_SERVER)"
264- cd "$(PERCONA_SERVER)"/UDF && autoreconf --install
265-
266-configure: all
267- (cd $(PERCONA_SERVER); bash BUILD/autorun.sh; $(CONFIGURE))
268-
269-cmake: cmake_release cmake_debug
270-
271-cmake_release:
272- rm -rf $(RELEASE_DIR)
273- (mkdir -p $(RELEASE_DIR); cd $(RELEASE_DIR); CFLAGS="$(CFLAGS_RELEASE)" CXXFLAGS="$(CXXFLAGS_RELEASE)" $(CMAKE) -G "Unix Makefiles" ../$(PERCONA_SERVER))
274-
275-cmake_debug:
276- rm -rf $(DEBUG_DIR)
277- (mkdir -p $(DEBUG_DIR); cd $(DEBUG_DIR); CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" $(CMAKE) -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug -DWITH_DEBUG=ON -DMYSQL_MAINTAINER_MODE=OFF ../$(PERCONA_SERVER))
278-
279-binary:
280- (cd $(PERCONA_SERVER); CFLAGS="$(CFLAGS_RELEASE)" CXXFLAGS="$(CXXFLAGS_RELEASE)" ${CMAKE} . -DBUILD_CONFIG=mysql_release \
281- -DCMAKE_BUILD_TYPE=RelWithDebInfo \
282- -DCMAKE_INSTALL_PREFIX="/usr/local/$(PERCONA_SERVER)-$(MYSQL_VERSION)-$(REV)" \
283- -DFEATURE_SET="community" \
284- -DWITH_EMBEDDED_SERVER=OFF \
285- -DCOMPILATION_COMMENT="Percona-Server" \
286- -DMYSQL_SERVER_SUFFIX="-$(REV)" )
287-
288-install-lic:
289- @echo "Installing license files"
290- install -m 644 COPYING.* $(PERCONA_SERVER)
291-
292-prepare:
293- @echo "Prepare Percona Server sources"
294- rm -rf $(PERCONA_SERVER) $(PERCONA_SERVER_SHORT_1)
295- ln -s $(PERCONA_SERVER_SHORT_2) $(PERCONA_SERVER)
296- ln -s $(PERCONA_SERVER_SHORT_2) $(PERCONA_SERVER_SHORT_1)
297-
298-main: prepare
299-
300-clean:
301- rm -rf $(RELEASE_DIR) $(DEBUG_DIR)
302
303=== removed file 'Percona-Server/.is_percona_server_bzr'
304=== removed file 'Percona-Server/include/atomic/x86-gcc.h'
305--- Percona-Server/include/atomic/x86-gcc.h 2013-05-10 09:39:17 +0000
306+++ Percona-Server/include/atomic/x86-gcc.h 1970-01-01 00:00:00 +0000
307@@ -1,141 +0,0 @@
308-#ifndef ATOMIC_X86_GCC_INCLUDED
309-#define ATOMIC_X86_GCC_INCLUDED
310-
311-/* Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
312-
313- This program is free software; you can redistribute it and/or modify
314- it under the terms of the GNU General Public License as published by
315- the Free Software Foundation; version 2 of the License.
316-
317- This program is distributed in the hope that it will be useful,
318- but WITHOUT ANY WARRANTY; without even the implied warranty of
319- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
320- GNU General Public License for more details.
321-
322- You should have received a copy of the GNU General Public License
323- along with this program; if not, write to the Free Software
324- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
325-
326-/*
327- XXX 64-bit atomic operations can be implemented using
328- cmpxchg8b, if necessary. Though I've heard that not all 64-bit
329- architectures support double-word (128-bit) cas.
330-*/
331-
332-/*
333- No special support of 8 and 16 bit operations are implemented here
334- currently.
335-*/
336-#undef MY_ATOMIC_HAS_8_AND_16
337-
338-#ifdef __x86_64__
339-# ifdef MY_ATOMIC_NO_XADD
340-# define MY_ATOMIC_MODE "gcc-amd64" LOCK_prefix "-no-xadd"
341-# else
342-# define MY_ATOMIC_MODE "gcc-amd64" LOCK_prefix
343-# endif
344-#else
345-# ifdef MY_ATOMIC_NO_XADD
346-# define MY_ATOMIC_MODE "gcc-x86" LOCK_prefix "-no-xadd"
347-# else
348-# define MY_ATOMIC_MODE "gcc-x86" LOCK_prefix
349-# endif
350-#endif
351-
352-/* fix -ansi errors while maintaining readability */
353-#ifndef asm
354-#define asm __asm__
355-#endif
356-
357-#ifndef MY_ATOMIC_NO_XADD
358-#define make_atomic_add_body(S) make_atomic_add_body ## S
359-#define make_atomic_cas_body(S) make_atomic_cas_body ## S
360-#endif
361-
362-#define make_atomic_add_body32 \
363- asm volatile (LOCK_prefix "; xadd %0, %1;" \
364- : "+r" (v), "=m" (*a) \
365- : "m" (*a) \
366- : "memory")
367-
368-#define make_atomic_cas_body32 \
369- __typeof__(*cmp) sav; \
370- asm volatile (LOCK_prefix "; cmpxchg %3, %0; setz %2;" \
371- : "=m" (*a), "=a" (sav), "=q" (ret) \
372- : "r" (set), "m" (*a), "a" (*cmp) \
373- : "memory"); \
374- if (!ret) \
375- *cmp= sav
376-
377-#ifdef __x86_64__
378-#define make_atomic_add_body64 make_atomic_add_body32
379-#define make_atomic_cas_body64 make_atomic_cas_body32
380-
381-#define make_atomic_fas_body(S) \
382- asm volatile ("xchg %0, %1;" \
383- : "+r" (v), "=m" (*a) \
384- : "m" (*a) \
385- : "memory")
386-
387-/*
388- Actually 32/64-bit reads/writes are always atomic on x86_64,
389- nonetheless issue memory barriers as appropriate.
390-*/
391-#define make_atomic_load_body(S) \
392- /* Serialize prior load and store operations. */ \
393- asm volatile ("mfence" ::: "memory"); \
394- ret= *a; \
395- /* Prevent compiler from reordering instructions. */ \
396- asm volatile ("" ::: "memory")
397-#define make_atomic_store_body(S) \
398- asm volatile ("; xchg %0, %1;" \
399- : "=m" (*a), "+r" (v) \
400- : "m" (*a) \
401- : "memory")
402-
403-#else
404-/*
405- Use default implementations of 64-bit operations since we solved
406- the 64-bit problem on 32-bit platforms for CAS, no need to solve it
407- once more for ADD, LOAD, STORE and FAS as well.
408- Since we already added add32 support, we need to define add64
409- here, but we haven't defined fas, load and store at all, so
410- we can fallback on default implementations.
411-*/
412-#define make_atomic_add_body64 \
413- int64 tmp=*a; \
414- while (!my_atomic_cas64(a, &tmp, tmp+v)) ; \
415- v=tmp;
416-
417-/*
418- cmpxchg8b works on both 32-bit platforms and 64-bit platforms but
419- the code here is only used on 32-bit platforms, on 64-bit
420- platforms the much simpler make_atomic_cas_body32 will work
421- fine.
422-*/
423-#define make_atomic_cas_body64 \
424- asm volatile ("movl %%edi, -4(%%esp);" \
425- "leal %0, %%edi;" \
426- "xchgl %%ebx, %%esi;" \
427- LOCK_prefix "; cmpxchg8b (%%edi);" \
428- "movl %%esi, %%ebx;" \
429- "movl -4(%%esp), %%edi;" \
430- "setz %1;" \
431- : "+m" (*a), "=q" (ret), "+A" (*cmp) \
432- : "S" ((int32)(set & 0xFFFFFFFF)), \
433- "c" ((int32)(set >> 32)) \
434- : "memory", "flags")
435-#endif
436-
437-/*
438- The implementation of make_atomic_cas_body32 is adaptable to
439- the OS word size, so on 64-bit platforms it will automatically
440- adapt to 64-bits and so it will work also on 64-bit platforms
441-*/
442-#define make_atomic_cas_bodyptr make_atomic_cas_body32
443-
444-#ifdef MY_ATOMIC_MODE_DUMMY
445-#define make_atomic_load_body(S) ret=*a
446-#define make_atomic_store_body(S) *a=v
447-#endif
448-#endif /* ATOMIC_X86_GCC_INCLUDED */
449
450=== removed file 'Percona-Server/mysql-test/suite/rpl/t/rpl_gtid_parallel-master.opt'
451--- Percona-Server/mysql-test/suite/rpl/t/rpl_gtid_parallel-master.opt 2012-10-24 08:43:19 +0000
452+++ Percona-Server/mysql-test/suite/rpl/t/rpl_gtid_parallel-master.opt 1970-01-01 00:00:00 +0000
453@@ -1,1 +0,0 @@
454---gtid-mode=on --enforce-gtid-consistency --log-slave-updates
455
456=== removed file 'Percona-Server/mysql-test/suite/rpl/t/rpl_gtid_parallel-slave.opt'
457--- Percona-Server/mysql-test/suite/rpl/t/rpl_gtid_parallel-slave.opt 2012-10-24 08:43:19 +0000
458+++ Percona-Server/mysql-test/suite/rpl/t/rpl_gtid_parallel-slave.opt 1970-01-01 00:00:00 +0000
459@@ -1,1 +0,0 @@
460---gtid-mode=on --enforce-gtid-consistency --log-slave-updates
461
462=== removed file 'Percona-Server/mysql-test/suite/rpl/t/rpl_mysqlbinlog_gtid_on-master.opt'
463--- Percona-Server/mysql-test/suite/rpl/t/rpl_mysqlbinlog_gtid_on-master.opt 2012-10-24 08:43:19 +0000
464+++ Percona-Server/mysql-test/suite/rpl/t/rpl_mysqlbinlog_gtid_on-master.opt 1970-01-01 00:00:00 +0000
465@@ -1,1 +0,0 @@
466---log-bin --gtid-mode=on --log-slave-updates --enforce-gtid-consistency
467
468=== removed file 'Percona-Server/mysql-test/suite/rpl/t/rpl_mysqlbinlog_gtid_on-slave.opt'
469--- Percona-Server/mysql-test/suite/rpl/t/rpl_mysqlbinlog_gtid_on-slave.opt 2012-10-24 08:43:19 +0000
470+++ Percona-Server/mysql-test/suite/rpl/t/rpl_mysqlbinlog_gtid_on-slave.opt 1970-01-01 00:00:00 +0000
471@@ -1,1 +0,0 @@
472---log-bin --gtid-mode=on --log-slave-updates --enforce-gtid-consistency
473
474=== removed file 'Percona-Server/mysql-test/t/warnings_engine_disabled-master.opt'
475--- Percona-Server/mysql-test/t/warnings_engine_disabled-master.opt 2007-03-02 16:43:45 +0000
476+++ Percona-Server/mysql-test/t/warnings_engine_disabled-master.opt 1970-01-01 00:00:00 +0000
477@@ -1,1 +0,0 @@
478---loose-skip-plugin-ndbcluster
479
480=== removed file 'Percona-Server/packaging/rpm-fedora/mysql-embedded-check.c'
481--- Percona-Server/packaging/rpm-fedora/mysql-embedded-check.c 2013-09-13 19:50:42 +0000
482+++ Percona-Server/packaging/rpm-fedora/mysql-embedded-check.c 1970-01-01 00:00:00 +0000
483@@ -1,26 +0,0 @@
484-/* simple test program to see if we can link the embedded server library */
485-
486-#include <stdio.h>
487-#include <stdlib.h>
488-#include <stdarg.h>
489-
490-#include "mysql.h"
491-
492-MYSQL *mysql;
493-
494-static char *server_options[] = \
495- { "mysql_test", "--defaults-file=my.cnf", NULL };
496-int num_elements = (sizeof(server_options) / sizeof(char *)) - 1;
497-
498-static char *server_groups[] = { "libmysqld_server",
499- "libmysqld_client", NULL };
500-
501-int main(int argc, char **argv)
502-{
503- mysql_library_init(num_elements, server_options, server_groups);
504- mysql = mysql_init(NULL);
505- mysql_close(mysql);
506- mysql_library_end();
507-
508- return 0;
509-}
510
511=== removed file 'Percona-Server/packaging/rpm-oel/mysql-embedded-check.c'
512--- Percona-Server/packaging/rpm-oel/mysql-embedded-check.c 2013-09-13 19:50:42 +0000
513+++ Percona-Server/packaging/rpm-oel/mysql-embedded-check.c 1970-01-01 00:00:00 +0000
514@@ -1,26 +0,0 @@
515-/* simple test program to see if we can link the embedded server library */
516-
517-#include <stdio.h>
518-#include <stdlib.h>
519-#include <stdarg.h>
520-
521-#include "mysql.h"
522-
523-MYSQL *mysql;
524-
525-static char *server_options[] = \
526- { "mysql_test", "--defaults-file=my.cnf", NULL };
527-int num_elements = (sizeof(server_options) / sizeof(char *)) - 1;
528-
529-static char *server_groups[] = { "libmysqld_server",
530- "libmysqld_client", NULL };
531-
532-int main(int argc, char **argv)
533-{
534- mysql_library_init(num_elements, server_options, server_groups);
535- mysql = mysql_init(NULL);
536- mysql_close(mysql);
537- mysql_library_end();
538-
539- return 0;
540-}
541
542=== added file 'README'
543--- README 1970-01-01 00:00:00 +0000
544+++ README 2014-05-21 18:59:03 +0000
545@@ -0,0 +1,11 @@
546+Percona Server 5.6
547+------------------
548+
549+Percona Server is a branch of MySQL 5.6 bringing higher performance,
550+reliability and more features.
551+
552+http://www.percona.com/software/percona-server/
553+
554+Documentation: http://www.percona.com/doc/percona-server/5.6
555+
556+Launchpad (bugs, milestones, branches): http://launchpad.net/percona-server
557
558=== renamed file 'Percona-Server/README' => 'README.MySQL'
559--- Percona-Server/README 2013-03-19 04:37:33 +0000
560+++ README.MySQL 2014-05-21 18:59:03 +0000
561@@ -5,7 +5,7 @@
562 is released under the version 2 of the GNU General Public License.
563 MySQL is brought to you by Oracle.
564
565-Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
566+Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
567
568 License information can be found in the COPYING file.
569
570
571=== removed file 'UDF/Makefile.am'
572--- UDF/Makefile.am 2013-05-27 13:46:13 +0000
573+++ UDF/Makefile.am 1970-01-01 00:00:00 +0000
574@@ -1,1 +0,0 @@
575-SUBDIRS = src
576
577=== removed file 'UDF/configure.ac'
578--- UDF/configure.ac 2013-10-28 10:17:22 +0000
579+++ UDF/configure.ac 1970-01-01 00:00:00 +0000
580@@ -1,11 +0,0 @@
581-AC_INIT([maatkit-udf], [0.1], [http://code.google.com/p/maatkit/issues/list])
582-m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
583-AM_INIT_AUTOMAKE([foreign -Wall -Werror])
584-LT INIT
585-AC_PROG_LIBTOOL
586-AC_PROG_CC
587-AC_PROG_CXX
588-AC_PROG_RANLIB
589-AC_CONFIG_HEADERS([config.h])
590-AC_CONFIG_FILES([Makefile src/Makefile])
591-AC_OUTPUT
592
593=== removed directory 'UDF/src'
594=== removed file 'UDF/src/Makefile.am'
595--- UDF/src/Makefile.am 2013-05-27 13:46:13 +0000
596+++ UDF/src/Makefile.am 1970-01-01 00:00:00 +0000
597@@ -1,7 +0,0 @@
598-lib_LTLIBRARIES = libfnv1a_udf.la libfnv_udf.la libmurmur_udf.la
599-libfnv1a_udf_la_SOURCES = fnv1a_udf.cc
600-libfnv_udf_la_SOURCES = fnv_udf.cc
601-libmurmur_udf_la_SOURCES = murmur_udf.cc
602-libfnv1a_udf_la_CPPFLAGS = -I$(includedir)
603-libfnv_udf_la_CPPFLAGS = -I$(includedir)
604-libmurmur_udf_la_CPPFLAGS = -I$(includedir)
605
606=== modified file 'VERSION'
607--- Percona-Server/VERSION 2013-12-16 15:27:12 +0000
608+++ VERSION 2014-05-21 18:59:03 +0000
609@@ -1,4 +1,4 @@
610 MYSQL_VERSION_MAJOR=5
611 MYSQL_VERSION_MINOR=6
612-MYSQL_VERSION_PATCH=15
613-MYSQL_VERSION_EXTRA=
614+MYSQL_VERSION_PATCH=17
615+MYSQL_VERSION_EXTRA=-65.0
616
617=== renamed file 'WSREP-REVISION' => 'WSREP-REVISION'
618--- WSREP-REVISION 2014-03-16 00:36:05 +0000
619+++ WSREP-REVISION 2014-05-21 18:59:03 +0000
620@@ -1,1 +1,1 @@
621-4061
622+4091
623
624=== added symlink 'build'
625=== target is u'build-ps'
626=== renamed directory 'build' => 'build-ps'
627=== modified file 'build-ps/build-binary-nobzr.sh'
628--- build/build-binary-nobzr.sh 2014-02-13 15:51:16 +0000
629+++ build-ps/build-binary-nobzr.sh 2014-05-21 18:59:03 +0000
630@@ -101,10 +101,10 @@
631
632 fi
633
634-WORKDIR_ABS="$(cd "$WORKDIR"; pwd)"
635+WORKDIR="$(cd "$WORKDIR"; pwd)"
636
637 SOURCEDIR="$(cd $(dirname "$0"); cd ..; pwd)"
638-test -e "$SOURCEDIR/Makefile" || exit 2
639+test -e "$SOURCEDIR/Makefile-pxc" || exit 2
640
641 # Test for the galera sources
642 if [[ $COPYGALERA -eq 0 ]] && ! test -d "$SOURCEDIR/percona-xtradb-cluster-galera"
643@@ -122,15 +122,15 @@
644 fi
645
646 # Extract version from the Makefile
647-MYSQL_VERSION="$(grep ^MYSQL_VERSION= "$SOURCEDIR/Makefile" \
648+MYSQL_VERSION="$(grep ^MYSQL_VERSION= "$SOURCEDIR/Makefile-pxc" \
649 | cut -d = -f 2)"
650 RELEASE_TAG=''
651 PERCONA_SERVER_VERSION="$(grep ^PERCONA_SERVER_VERSION= \
652- "$SOURCEDIR/Makefile" | cut -d = -f 2)"
653+ "$SOURCEDIR/Makefile-pxc" | cut -d = -f 2)"
654 WSREP_VERSION="$(grep WSREP_INTERFACE_VERSION \
655- "$SOURCEDIR/Percona-Server/wsrep/wsrep_api.h" |
656+ "$SOURCEDIR/wsrep/wsrep_api.h" |
657 cut -d '"' -f2).$(grep 'SET(WSREP_PATCH_VERSION' \
658- "$SOURCEDIR/Percona-Server/cmake/wsrep.cmake" | cut -d '"' -f2)"
659+ "$SOURCEDIR/cmake/wsrep.cmake" | cut -d '"' -f2)"
660 PRODUCT="Percona-XtraDB-Cluster-$MYSQL_VERSION"
661
662 # Build information
663@@ -159,9 +159,6 @@
664
665 export WSREP_REV="$WSREP_REV"
666
667-# Create a temporary working directory
668-INSTALLDIR="$WORKDIR_ABS/percona-build" # Make it absolute
669-
670 # Test jemalloc directory
671 if test "x$WITH_JEMALLOC" != "x"
672 then
673@@ -188,23 +185,22 @@
674 cd "percona-xtradb-cluster-galera"
675 scons --config=force boost_pool=0 revno="$GALERA_REVISION" $MAKE_JFLAG \
676 garb/garbd libgalera_smm.so
677- mkdir -p "$INSTALLDIR/usr/local/$PRODUCT_FULL/bin" \
678- "$INSTALLDIR/usr/local/$PRODUCT_FULL/lib"
679- cp garb/garbd "$INSTALLDIR/usr/local/$PRODUCT_FULL/bin"
680- cp libgalera_smm.so "$INSTALLDIR/usr/local/$PRODUCT_FULL/lib"
681+ mkdir -p "$WORKDIR/usr/local/$PRODUCT_FULL/bin" \
682+ "$WORKDIR/usr/local/$PRODUCT_FULL/lib"
683+ cp garb/garbd "$WORKDIR/usr/local/$PRODUCT_FULL/bin"
684+ cp libgalera_smm.so "$WORKDIR/usr/local/$PRODUCT_FULL/lib"
685 else
686- mkdir -p "$INSTALLDIR/usr/local/$PRODUCT_FULL/bin" \
687- "$INSTALLDIR/usr/local/$PRODUCT_FULL/lib"
688- cp $WORKDIR_ABS/garbd "$INSTALLDIR/usr/local/$PRODUCT_FULL/bin"
689- cp $WORKDIR_ABS/libgalera_smm.so "$INSTALLDIR/usr/local/$PRODUCT_FULL/lib"
690+ mkdir -p "$WORKDIR/usr/local/$PRODUCT_FULL/bin" \
691+ "$WORKDIR/usr/local/$PRODUCT_FULL/lib"
692+ cp $WORKDIR/garbd "$WORKDIR/usr/local/$PRODUCT_FULL/bin"
693+ cp $WORKDIR/libgalera_smm.so "$WORKDIR/usr/local/$PRODUCT_FULL/lib"
694 fi
695
696 ) || exit 1
697
698
699- make clean all
700+ #make -f Makefile-pxc all
701
702- cd "$PRODUCT"
703 cmake . ${CMAKE_OPTS:-} -DBUILD_CONFIG=mysql_release \
704 -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE:-RelWithDebInfo} \
705 $DEBUG_EXTNAME \
706@@ -222,22 +218,13 @@
707 -DWITH_PAM=ON
708
709 make $MAKE_JFLAG $QUIET
710- make DESTDIR="$INSTALLDIR" install
711-
712- # Build UDF
713- (
714- cd "UDF"
715- CXX=${UDF_CXX:-g++} ./configure --includedir="$SOURCEDIR/Percona-Server/include" \
716- --libdir="/usr/local/$PRODUCT_FULL/mysql/plugin"
717- make $MAKE_JFLAG
718- make DESTDIR="$INSTALLDIR" install
719-
720- )
721+ make DESTDIR="$WORKDIR" install
722+
723
724 (
725 echo "Packaging the test files"
726- # mkdir -p $INSTALLDIR/usr/local/$PRODUCT_FULL
727- cp -R percona-xtradb-cluster-tests $INSTALLDIR/usr/local/$PRODUCT_FULL/
728+ # mkdir -p $WORKDIR/usr/local/$PRODUCT_FULL
729+ cp -R percona-xtradb-cluster-tests $WORKDIR/usr/local/$PRODUCT_FULL/
730 )
731
732 # Build jemalloc
733@@ -249,10 +236,10 @@
734 ./configure --prefix="/usr/local/$PRODUCT_FULL/" \
735 --libdir="/usr/local/$PRODUCT_FULL/lib/mysql/"
736 make $MAKE_JFLAG
737- make DESTDIR="$INSTALLDIR" install_lib_shared
738+ make DESTDIR="$WORKDIR" install_lib_shared
739
740 # Copy COPYING file
741- cp COPYING "$INSTALLDIR/usr/local/$PRODUCT_FULL/COPYING-jemalloc"
742+ cp COPYING "$WORKDIR/usr/local/$PRODUCT_FULL/COPYING-jemalloc"
743
744 )
745 fi
746@@ -261,13 +248,9 @@
747
748 # Package the archive
749 (
750- cd "$INSTALLDIR/usr/local/"
751+ cd "$WORKDIR/usr/local/"
752
753- $TAR czf "$WORKDIR_ABS/$PRODUCT_FULL.tar.gz" \
754+ $TAR czf "$WORKDIR/$PRODUCT_FULL.tar.gz" \
755 --owner=0 --group=0 "$PRODUCT_FULL/"
756
757 )
758-
759-# Clean up
760-rm -rf "$INSTALLDIR"
761-
762
763=== modified file 'build-ps/build-binary.sh'
764--- build/build-binary.sh 2014-02-13 16:10:32 +0000
765+++ build-ps/build-binary.sh 2014-05-21 18:59:03 +0000
766@@ -1,4 +1,4 @@
767-#!/bin/sh
768+#!/bin/bash
769 #
770 # Execute this tool to setup the environment and build binary releases
771 # for Percona XtraDB Cluster starting from a fresh tree.
772@@ -130,10 +130,11 @@
773
774 fi
775
776-WORKDIR_ABS="$(cd "$WORKDIR"; pwd)"
777+# Workdir path should be absolute
778+WORKDIR="$(cd "$WORKDIR"; pwd)"
779
780 SOURCEDIR="$(cd $(dirname "$0"); cd ..; pwd)"
781-test -e "$SOURCEDIR/Makefile" || exit 2
782+test -e "$SOURCEDIR/VERSION" || exit 2
783
784 # Test for the galera sources
785 if ! test -d "$SOURCEDIR/percona-xtradb-cluster-galera"
786@@ -150,40 +151,43 @@
787 PROCESSORS=4
788 fi
789
790-# Extract version from the Makefile
791-MYSQL_VERSION="$(grep ^MYSQL_VERSION= "$SOURCEDIR/Makefile" \
792- | cut -d = -f 2)"
793+
794+# Build information
795+if [[ -z ${REVISION:-} ]];then
796+ REVISION=500
797+else
798+ REVISION=$REVISION
799+ echo "Building with revision $REVISION"
800+fi
801+
802+# Extract version from the VERSION file
803+source "$SOURCEDIR/VERSION"
804+MYSQL_VERSION="$MYSQL_VERSION_MAJOR.$MYSQL_VERSION_MINOR.$MYSQL_VERSION_PATCH"
805+# Extract version from the Makefile-pxc
806+PERCONA_XTRADB_CLUSTER_VERSION="$(echo $MYSQL_VERSION_EXTRA | sed 's/^-/rel/')"
807 RELEASE_TAG=''
808-PERCONA_SERVER_VERSION="$(grep ^PERCONA_SERVER_VERSION= \
809- "$SOURCEDIR/Makefile" | cut -d = -f 2)"
810-WSREP_VERSION="$(grep WSREP_INTERFACE_VERSION \
811- "$SOURCEDIR/Percona-Server/wsrep/wsrep_api.h" |
812- cut -d '"' -f2).$(grep 'SET(WSREP_PATCH_VERSION' \
813- "$SOURCEDIR/Percona-Server/cmake/wsrep.cmake" | cut -d '"' -f2)"
814-PRODUCT="Percona-XtraDB-Cluster-$MYSQL_VERSION"
815+PRODUCT="Percona-XtraDB-Cluster-$MYSQL_VERSION-$PERCONA_XTRADB_CLUSTER_VERSION"
816
817 # Build information
818-REVISION="$(cd "$SOURCEDIR"; bzr revno)"
819-WSREP_REV="$(cd "$SOURCEDIR";test -r WSREP-REVISION && cat WSREP-REVISION || echo "$REVISION")"
820+REVISION="$(cd "$SOURCEDIR"; grep '^revno: ' Docs/INFO_SRC |sed -e 's/revno: //')"
821+WSREP_VERSION="$(grep WSREP_INTERFACE_VERSION wsrep/wsrep_api.h | cut -d '"' -f2).$(grep 'SET(WSREP_PATCH_VERSION' "cmake/wsrep.cmake" | cut -d '"' -f2)"
822 GALERA_REVISION="$(cd "$SOURCEDIR/percona-xtradb-cluster-galera"; test -r GALERA-REVISION && cat GALERA-REVISION || bzr revno)"
823 PRODUCT_FULL="$PRODUCT-$RELEASE_TAG$WSREP_VERSION.$REVISION${BUILD_COMMENT:-}$TAG.$(uname -s).$TARGET"
824-COMMENT="$MYSQL_VERSION-$RELEASE_TAG, Percona XtraDB Cluster - binary (GPL), Release: $WSREP_VERSION"
825-COMMENT="$COMMENT, Revision $REVISION wsrep_$WSREP_VERSION.r$WSREP_REV"
826+COMMENT="Percona XtraDB Cluster binary (GPL) $MYSQL_VERSION-$RELEASE_TAG$WSREP_VERSION"
827+COMMENT="$COMMENT, Revision $REVISION${BUILD_COMMENT:-}"
828
829 # Compilation flags
830 export CC=${CC:-gcc}
831 export CXX=${CXX:-g++}
832-COMMON_FLAGS="-Wall -Wp,-D_FORTIFY_SOURCE=2 -DPERCONA_INNODB_VERSION=$PERCONA_SERVER_VERSION "
833+if [ -n "$(which rpm)" ]; then
834+ export COMMON_FLAGS=$(rpm --eval %optflags | sed -e "s|march=i386|march=i686|g")
835+else
836+ COMMON_FLAGS="-Wall -Wp,-D_FORTIFY_SOURCE=2 -DPERCONA_INNODB_VERSION=$MYSQL_RELEASE "
837+fi
838 export CFLAGS=" $COMMON_FLAGS -static-libgcc $TARGET_CFLAGS ${CFLAGS:-}"
839 export CXXFLAGS=" $COMMON_FLAGS $TARGET_CFLAGS ${CXXFLAGS:-}"
840 export MAKE_JFLAG="${MAKE_JFLAG:--j$PROCESSORS}"
841-
842-export WSREP_REV="$WSREP_REV"
843-
844-# Create a temporary working directory
845-INSTALLDIR="$(cd "$WORKDIR" && TMPDIR="$WORKDIR_ABS" mktemp -d percona-build.XXXXXX)"
846-INSTALLDIR="$WORKDIR_ABS/$INSTALLDIR" # Make it absolute
847-
848+#
849 # Test jemalloc directory
850 if test "x$WITH_JEMALLOC" != "x"
851 then
852@@ -219,19 +223,14 @@
853 scons $MAKE_JFLAG --config=force revno="$GALERA_REVISION" \
854 garb/garbd libgalera_smm.so
855 fi
856- mkdir -p "$INSTALLDIR/usr/local/$PRODUCT_FULL/bin" \
857- "$INSTALLDIR/usr/local/$PRODUCT_FULL/lib"
858- cp garb/garbd "$INSTALLDIR/usr/local/$PRODUCT_FULL/bin"
859- cp libgalera_smm.so "$INSTALLDIR/usr/local/$PRODUCT_FULL/lib"
860+ mkdir -p "$WORKDIR/usr/local/$PRODUCT_FULL/bin" \
861+ "$WORKDIR/usr/local/$PRODUCT_FULL/lib"
862+ cp garb/garbd "$WORKDIR/usr/local/$PRODUCT_FULL/bin"
863+ cp libgalera_smm.so "$WORKDIR/usr/local/$PRODUCT_FULL/lib"
864
865 ) || exit 1
866
867- # Export and cd to a new dir
868- bzr export "$INSTALLDIR/src"
869-
870- cd "$INSTALLDIR/src"
871-
872- make clean all
873+ make -f Makefile-pxc all
874
875 if grep builtin <<< "$STAG";then
876 # builtin
877@@ -239,8 +238,6 @@
878 else
879 SSL_OPT='-DWITH_SSL=system -DWITH_ZLIB=system'
880 fi
881-
882- cd "$PRODUCT"
883 cmake . ${CMAKE_OPTS:-} -DBUILD_CONFIG=mysql_release \
884 -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE:-RelWithDebInfo} \
885 $DEBUG_EXTNAME \
886@@ -250,7 +247,7 @@
887 $SSL_OPT \
888 -DCMAKE_INSTALL_PREFIX="/usr/local/$PRODUCT_FULL" \
889 -DMYSQL_DATADIR="/usr/local/$PRODUCT_FULL/data" \
890- -DMYSQL_SERVER_SUFFIX="-$RELEASE_TAG$PERCONA_SERVER_VERSION" \
891+ -DMYSQL_SERVER_SUFFIX="-$RELEASE_TAG$WSREP_VERSION" \
892 -DWITH_INNODB_DISALLOW_WRITES=ON \
893 -DWITH_WSREP=ON \
894 -DCOMPILATION_COMMENT="$COMMENT" \
895@@ -259,22 +256,13 @@
896 $OPENSSL_INCLUDE $OPENSSL_LIBRARY $CRYPTO_LIBRARY
897
898 make $MAKE_JFLAG $QUIET
899- make DESTDIR="$INSTALLDIR" install
900-
901- # Build UDF
902- (
903- cd "UDF"
904- CXX=${UDF_CXX:-g++} ./configure --includedir="$INSTALLDIR/src/Percona-Server/include" \
905- --libdir="/usr/local/$PRODUCT_FULL/mysql/plugin"
906- make $MAKE_JFLAG
907- make DESTDIR="$INSTALLDIR" install
908-
909- )
910+ make DESTDIR="$WORKDIR" install
911+
912
913 (
914 echo "Packaging the test files"
915- # mkdir -p $INSTALLDIR/usr/local/$PRODUCT_FULL
916- cp -R percona-xtradb-cluster-tests $INSTALLDIR/usr/local/$PRODUCT_FULL/
917+ # mkdir -p $WORKDIR/usr/local/$PRODUCT_FULL
918+ cp -R percona-xtradb-cluster-tests $WORKDIR/usr/local/$PRODUCT_FULL/
919 )
920
921 # Build jemalloc
922@@ -286,10 +274,10 @@
923 CFLAGS= ./autogen.sh --disable-valgrind --prefix="/usr/local/$PRODUCT_FULL/" \
924 --libdir="/usr/local/$PRODUCT_FULL/lib/mysql/"
925 make $MAKE_JFLAG
926- make DESTDIR="$INSTALLDIR" install_lib_shared
927+ make DESTDIR="$WORKDIR" install_lib_shared
928 strip lib/libjemalloc* || true
929 # Copy COPYING file
930- cp COPYING "$INSTALLDIR/usr/local/$PRODUCT_FULL/COPYING-jemalloc"
931+ cp COPYING "$WORKDIR/usr/local/$PRODUCT_FULL/COPYING-jemalloc"
932
933 )
934 fi
935@@ -298,13 +286,10 @@
936
937 # Package the archive
938 (
939- cd "$INSTALLDIR/usr/local/"
940+ cd "$WORKDIR/usr/local/"
941
942- $TAR czf "$WORKDIR_ABS/$PRODUCT_FULL.tar.gz" \
943+ $TAR czf "$WORKDIR/$PRODUCT_FULL.tar.gz" \
944 --owner=0 --group=0 "$PRODUCT_FULL/"
945
946 )
947
948-# Clean up
949-rm -rf "$INSTALLDIR"
950-
951
952=== renamed file 'build/build-dpkg.sh' => 'build-ps/build-dpkg.sh.THIS'
953=== modified file 'build-ps/build-rpm.sh'
954--- build/build-rpm.sh 2014-01-28 23:28:48 +0000
955+++ build-ps/build-rpm.sh 2014-05-21 18:59:03 +0000
956@@ -118,8 +118,8 @@
957 PRODUCT="Percona-XtraDB-Cluster-$MYSQL_VERSION"
958
959 # Build information
960-REDHAT_RELEASE="$(grep -o 'release [0-9][0-9]*' /etc/redhat-release | \
961- cut -d ' ' -f 2)"
962+DISTRO_NAME="$(lsb_release -is)"
963+REDHAT_RELEASE="$(lsb_release -rs)"
964 REVISION="$(cd "$SOURCEDIR"; bzr revno)"
965
966 # Compilation flags
967
968=== modified file 'build-ps/debian/README.source'
969--- build/debian/README.source 2013-05-10 13:29:38 +0000
970+++ build-ps/debian/README.source 2014-05-21 18:59:03 +0000
971@@ -1,4 +1,4 @@
972-percona-server for Debian
973+percona-xtradb-cluster for Debian
974 -------------------------
975
976 <this file describes information about the source package, see Debian policy
977
978=== modified file 'build-ps/debian/changelog'
979--- build/debian/changelog 2014-01-30 11:57:47 +0000
980+++ build-ps/debian/changelog 2014-05-21 18:59:03 +0000
981@@ -1,3 +1,50 @@
982+percona-xtradb-cluster-5.6 (@@MYSQL_VERSION@@-rel@@PERCONA_VERSION@@) unstable; urgency=low
983+
984+ * Packaging updates for PXC 5.6.
985+
986+ -- Raghavendra Prabhu <raghavendra.prabhu@percona.com> Wed, 14 May 2014 16:12:23 -0500
987+
988+percona-server-5.6 (5.6.17-rel65.0) unstable; urgency=low
989+
990+ * Fixed provides/breaks/replaces for client/server debian packages
991+
992+ -- Tomislav Plavcic <tomislav.plavcic@percona.com> Sat, 26 Apr 2014 15:46:48 +0200
993+
994+percona-server-5.6 (5.6.16-rel64.2) unstable; urgency=low
995+
996+ * PT UDFs added
997+ * Removed dependency on mysql-common
998+ * Reverted changes to install_layout.cmake and fixes around that change
999+
1000+ -- Alexey Bychko <alexey.bychko@percona.com> Tue, 25 Mar 2014 13:51:05 +0200
1001+
1002+percona-server-5.6 (5.6.16-rel64.1) unstable; urgency=low
1003+
1004+ * Removed Pre-Depends:multiarch-support from libperconaserverclient
1005+ * Fixed search path for libraries
1006+ * Fixed installation failure if old paths
1007+
1008+ -- Alexey Bychko <alexey.bychko@percona.com> Mon, 17 Mar 2014 13:24:05 +0200
1009+
1010+percona-server-5.6 (5.6.16-rel64.0) unstable; urgency=low
1011+
1012+ * Updated package Uploaders.
1013+ * Fixed control line length issues.
1014+ * Fixed percona-server-common-5.6 to depend on mysql-common and corrected
1015+ Provides and Replaces.
1016+ * Corrected percona-server-client-5.6 to provide only
1017+ virtual-mysql-client.
1018+ * Corrected percona-server-server-5.6 to provide only virtual-mysql-server
1019+ instead of both mysql-server and virtual-mysql-server.
1020+ * Corrected percona-server-client-5.6 and percona-server-server-5.6 to
1021+ follow Breaks/Replaces model.
1022+ * Added mariadb-5.5 and mysql-5.6 to common, client server, and client-dev
1023+ Breaks/Replaces.
1024+ * Modified rules to remove python-for-subunut2junitxml before building
1025+ packages.
1026+
1027+ -- George Lorch <george.lorch@percona.com> Wed, 19 Feb 2014 15:22:30 -0700
1028+
1029 percona-xtradb-cluster-5.6 (5.6.15-rel62.0) unstable; urgency=low
1030
1031 * Release bump.
1032
1033=== modified file 'build-ps/debian/control'
1034--- build/debian/control 2014-05-07 12:16:03 +0000
1035+++ build-ps/debian/control 2014-05-21 18:59:03 +0000
1036@@ -2,18 +2,41 @@
1037 Section: database
1038 Priority: extra
1039 Maintainer: Percona Server Development Team <mysql-dev@percona.com>
1040-Uploaders: Ignacio Nin <ignacio.nin@percona.com>
1041-Build-Depends: debhelper (>= 7.0.50), cmake, libtool, autoconf, libncurses5-dev, perl, bison, fakeroot, devscripts, libaio-dev, libpam-dev, dpatch, automake, libssl-dev
1042+Uploaders: George Lorch <george.lorch@percona.com>,
1043+ Alexey Bychko <alexey.bychko@percona.com>,
1044+ Raghavendra Prabhu <raghavendra.prabhu@percona.com>
1045+Build-Depends: libtool (>= 1.4.2-7),
1046+ procps,
1047+ debhelper (>= 7.0.50~),
1048+ file (>= 3.28),
1049+ libncurses5-dev (>= 5.0-6),
1050+ perl (>= 5.6.0),
1051+ libwrap0-dev (>= 7.6-8.3),
1052+ zlib1g-dev (>= 1:1.1.3-5),
1053+ libreadline-dev,
1054+ psmisc,
1055+ po-debconf,
1056+ chrpath,
1057+ ghostscript,
1058+ gawk,
1059+ bison,
1060+ lsb-release,
1061+ cmake,
1062+ gcc (>= 4.4),
1063+ g++ (>= 4.4),
1064+ libaio-dev[linux-any],
1065+ libpam-dev,
1066+ libssl-dev
1067 Standards-Version: 7.0.0
1068 Homepage: http://www.percona.com/software/percona-xtradb-cluster/
1069 Vcs-Bzr: lp:percona-xtradb-cluster/5.6
1070
1071-Package: libmysqlclient18.1
1072+Package: libperconaserverclient18.1
1073 Section: libs
1074 Architecture: any
1075-Provides: libmysqlclient18
1076-Replaces: libpercona-server-client18
1077-Depends: ${misc:Depends}
1078+Depends: ${misc:Depends}, ${shlibs:Depends}
1079+Provides: libmysqlclient18.1
1080+Replaces: libpercona-server-client16, libperconaserverclient18
1081 Description: Percona XtraDB Cluster database client library
1082 Percona XtraDB Cluster is based on the Percona Server database
1083 server and provides a High Availability solution.
1084@@ -23,25 +46,35 @@
1085 .
1086 This package includes the client library.
1087
1088-Package: libmysqlclient18.1-dev
1089-Architecture: any
1090-Section: libdevel
1091-Depends: libmysqlclient-dev (= ${binary:Version}), ${misc:Depends}
1092-Description: Percona Server database development files - empty transitional
1093- package. This is an empty package that depends on libmysqlclient-dev to ease
1094- the transition for packages with versioned build-deps on libmysqlclient18-dev.
1095-
1096-Package: libmysqlclient-dev
1097-Architecture: any
1098-Section: libdevel
1099-Depends: libmysqlclient18.1 (= ${binary:Version}), zlib1g-dev, ${misc:Depends}
1100-Conflicts: libmysqlclient14-dev, libmysqlclient12-dev, libmysqlclient10-dev, libmysqlclient15-dev, libmysqlclient16-dev, libmysqlclient18-dev
1101-Replaces: libmysqlclient14-dev, libmysqlclient12-dev, libmysqlclient10-dev, libmysqlclient15-dev, libmysqlclient16-dev, libmysqlclient18.1-dev, libpercona-xtradb-client-dev
1102-Description: Percona Server database development files
1103- Percona Server is a fast, stable and true multi-user, multi-threaded SQL
1104- database server. SQL (Structured Query Language) is the most popular
1105- database query language in the world. The main goals of Percona Server are
1106- speed, robustness and ease of use.
1107+Package: libperconaserverclient18.1-dev
1108+Architecture: any
1109+Section: libdevel
1110+Depends: libperconaserverclient18.1 (= ${binary:Version}),
1111+ zlib1g-dev, ${misc:Depends}
1112+Breaks: libperconaserverclient18-dev,
1113+ libperconaserverclient16-dev,
1114+ libperconaserverclient15-dev,
1115+ libperconaserverclient14-dev,
1116+ libperconaserverclient12-dev,
1117+ libperconaserverclient10-dev,
1118+ libmysqlclient-dev,
1119+ libmysqlclient18-dev,
1120+ libmariadbclient-dev
1121+Replaces: libperconaserverclient18-dev,
1122+ libperconaserverclient16-dev,
1123+ libperconaserverclient15-dev,
1124+ libperconaserverclient14-dev,
1125+ libperconaserverclient12-dev,
1126+ libperconaserverclient10-dev,
1127+ libpercona-xtradb-client-dev,
1128+ libmariadbclient-dev
1129+Provides: libmysqlclient-dev
1130+Description: Percona XtraDB Cluster database development files
1131+ Percona XtraDB Cluster is based on the Percona Server database
1132+ server and provides a High Availability solution.
1133+ Percona XtraDB Cluster provides synchronous replication, supports
1134+ multi-master replication, parallel applying on slaves, automatic
1135+ node provisioning with primary focus on data consistency.
1136 .
1137 This package includes development libraries and header files.
1138
1139@@ -50,7 +83,7 @@
1140 Architecture: any
1141 Depends: ${misc:Depends}
1142 Provides: mysql-common
1143-Description: Percona Server database common files (e.g. /etc/mysql/my.cnf)
1144+Description: Percona XtraDB Cluster database common files (e.g. /etc/mysql/my.cnf)
1145 Percona XtraDB Cluster is based on the Percona Server database
1146 server and provides a High Availability solution.
1147 Percona XtraDB Cluster provides synchronous replication, supports
1148@@ -62,11 +95,45 @@
1149
1150 Package: percona-xtradb-cluster-client-5.6
1151 Architecture: any
1152-Depends: debianutils (>=1.6), libdbi-perl, percona-xtradb-cluster-common-5.6 (>= ${source:Version}), libmysqlclient18.1, ${shlib:Depends}, ${misc:Depends}
1153-Provides: mysql-client, mysql-client-core, mysql-client-5.6, mysql-client-core-5.6, virtual-mysql-client
1154-Conflicts: mysql-client (<< ${source:Version}), mysql-client-5.0, mysql-client-5.1, mysql-client-core-5.1, mysql-client-5.6, mysql-client-core-5.6, percona-xtradb-client-5.0, percona-server-client-5.1, percona-server-client-5.5, percona-server-client-5.6
1155-Replaces: mysql-client (<< ${source:Version}), mysql-client-5.0, mysql-client-5.1, mysql-client-core-5.1, mysql-client-5.6, mysql-client-core-5.6, percona-xtradb-client-5.0, percona-server-client-5.1, percona-server-client-5.5, percona-server-client-5.6
1156-Description: Percona Server database client binaries
1157+Depends: debianutils (>=1.6),
1158+ libdbi-perl,
1159+ percona-xtradb-cluster-common-5.6 (>= ${source:Version}),
1160+ ${shlibs:Depends},
1161+ ${misc:Depends}
1162+Provides: mysql-client,
1163+ virtual-mysql-client,
1164+ virtual-mysql-client-core
1165+Breaks: mysql-client-5.0,
1166+ mysql-client-core-5.1,
1167+ mysql-client-core-5.5,
1168+ mysql-client-5.1,
1169+ mysql-client-5.5,
1170+ mysql-client-5.6,
1171+ percona-xtradb-client-5.0,
1172+ percona-server-client-5.1,
1173+ percona-server-client-5.5,
1174+ percona-xtradb-cluster-client-5.5,
1175+ mariadb-client,
1176+ mariadb-client-core-5.5,
1177+ mariadb-client-5.5,
1178+ virtual-mysql-client,
1179+ virtual-mysql-client-core
1180+Replaces: mysql-client-5.0,
1181+ mysql-client-core-5.1,
1182+ mysql-client-core-5.5,
1183+ mysql-client-5.1,
1184+ mysql-client-5.5,
1185+ mysql-client-5.6,
1186+ percona-xtradb-client-5.0,
1187+ percona-server-client-5.1,
1188+ percona-server-client-5.5,
1189+ percona-xtradb-cluster-client-5.5,
1190+ mariadb-client,
1191+ mariadb-client-core-5.5,
1192+ mariadb-client-5.5,
1193+ virtual-mysql-client,
1194+ virtual-mysql-client-core
1195+Description: Percona XtraDB Cluster database client binaries
1196 Percona XtraDB Cluster is based on the Percona Server database
1197 server and provides a High Availability solution.
1198 Percona XtraDB Cluster provides synchronous replication, supports
1199@@ -79,11 +146,56 @@
1200 Package: percona-xtradb-cluster-server-5.6
1201 Architecture: any
1202 Suggests: tinyca, netcat-openbsd, pv, qpress
1203-Depends: percona-xtradb-cluster-client-5.6 (>= ${source:Version}), libdbi-perl, libdbd-mysql-perl, perl (>= 5.6), ${shlibs:Depends}, ${misc:Depends}, psmisc, passwd, lsb-base (>= 3.0-10), percona-xtradb-cluster-common-5.6 (>= ${source:Version}), percona-xtradb-cluster-galera-25, adduser (>= 3.40), debconf, percona-xtrabackup (>= 2.1.6), socat, rsync, iproute
1204-Conflicts: mysql-server (<< ${source:Version}), mysql-server-4.1, mysql-server-5.6, mysql-server-core-5.1, mysql-server-core-5.6, percona-xtradb-server-5.0, percona-server-server-5.1, percona-server-server-5.5, percona-server-server-5.6
1205-Provides: mysql-server, mysql-server-core, mysql-server-5.6, mysql-server-core-5.6
1206-Replaces: mysql-server (<< ${source:Version}), mysql-server-5.0, mysql-server-core-5.1, mysql-server-core-5.5, mysql-server-core-5.6, percona-xtradb-server-5.0, percona-server-server-5.1, percona-server-server-5.5, percona-server-server-5.6
1207-Description: Percona Server database server binaries
1208+Pre-Depends: percona-xtradb-cluster-common-5.6 (>= ${source:Version}),
1209+ adduser (>= 3.4.0),
1210+ debconf
1211+Depends: percona-xtradb-cluster-client-5.6 (>= ${source:Version}),
1212+ libdbi-perl,
1213+ libdbd-mysql-perl,
1214+ perl (>= 5.6),
1215+ ${shlibs:Depends},
1216+ ${misc:Depends},
1217+ psmisc,
1218+ passwd,
1219+ lsb-base (>= 3.0-10),
1220+ percona-xtradb-cluster-galera-25,
1221+ percona-xtrabackup (>= 2.1.6),
1222+ socat,
1223+ lsof,
1224+ rsync,
1225+ iproute
1226+Provides: mysql-server,
1227+ virtual-mysql-server,
1228+ virtual-mysql-server-core
1229+Breaks: mysql-server-5.0,
1230+ mysql-server-5.1,
1231+ mysql-server-5.5,
1232+ mysql-server-5.6,
1233+ mysql-server-core-5.1,
1234+ percona-xtradb-server-5.0,
1235+ percona-server-server-5.1,
1236+ percona-server-server-5.5,
1237+ percona-xtradb-cluster-server-5.5,
1238+ mariadb-server,
1239+ mariadb-server-core-5.5,
1240+ mariadb-server-5.5,
1241+ virtual-mysql-server,
1242+ virtual-mysql-server-core
1243+Replaces: mysql-server-5.0,
1244+ mysql-server-5.1,
1245+ mysql-server-5.5,
1246+ mysql-server-5.6,
1247+ mysql-server-core-5.1,
1248+ percona-xtradb-server-5.0,
1249+ percona-server-server-5.1,
1250+ percona-server-server-5.5,
1251+ percona-xtradb-cluster-server-5.5,
1252+ mariadb-server,
1253+ mariadb-server-core-5.5,
1254+ mariadb-server-5.5,
1255+ virtual-mysql-server,
1256+ virtual-mysql-server-core
1257+Description: Percona XtraDB Cluster database server binaries
1258 Percona XtraDB Cluster is based on the Percona Server database
1259 server and provides a High Availability solution.
1260 Percona XtraDB Cluster provides synchronous replication, supports
1261@@ -95,14 +207,14 @@
1262 Package: percona-xtradb-cluster-56
1263 Section: database
1264 Architecture: any
1265-Depends: percona-xtradb-cluster-server-5.6 (>= ${source:Version}), percona-xtradb-cluster-client-5.6 (>= ${source:Version}), percona-xtradb-cluster-galera-3.x (>= 213), ${misc:Depends}
1266+Depends: percona-xtradb-cluster-server-5.6 (>= ${source:Version}), percona-xtradb-cluster-client-5.6 (>= ${source:Version}), percona-xtradb-cluster-galera-3, ${misc:Depends}
1267 Description: Percona XtraDB Cluster with Galera
1268 This is a meta-package providing PXC56 server, client and galera-3.
1269
1270 Package: percona-xtradb-cluster-full-56
1271 Section: database
1272 Architecture: any
1273-Depends: percona-xtradb-cluster-server-5.6 (>= ${source:Version}), percona-xtradb-cluster-client-5.6 (>= ${source:Version}), percona-xtradb-cluster-galera-3.x (>= 213), percona-xtradb-cluster-test-5.6 (>= ${source:Version}), percona-xtradb-cluster-5.6-dbg (>= ${binary:Version}), libmysqlclient18.1, percona-xtradb-cluster-garbd-3.x (>= 213), percona-xtradb-cluster-galera-3.x-dbg (>= 213), percona-xtradb-cluster-garbd-3.x-dbg (>= 213), ${misc:Depends}
1274+Depends: percona-xtradb-cluster-server-5.6 (>= ${source:Version}), percona-xtradb-cluster-client-5.6 (>= ${source:Version}), percona-xtradb-cluster-galera-3, percona-xtradb-cluster-test-5.6 (>= ${source:Version}), percona-xtradb-cluster-5.6-dbg (>= ${binary:Version}), libmysqlclient18.1, percona-xtradb-cluster-garbd-3, percona-xtradb-cluster-galera-3-dbg, percona-xtradb-cluster-garbd-3-dbg, ${misc:Depends}
1275 Description: Percona XtraDB Cluster with Galera
1276 This is a meta-package providing PXC56 server, client, galera-3, test and debug packages.
1277
1278@@ -130,5 +242,10 @@
1279 multi-master replication, parallel applying on slaves, automatic
1280 node provisioning with primary focus on data consistency.
1281 .
1282- This package contains the debugging symbols for the Percona Server binaries.
1283+ This package contains the debugging symbols for the Percona XtraDB Cluster binaries.
1284
1285+Package: percona-xtradb-cluster-source-5.6
1286+Architecture: any
1287+Depends: ${misc:Depends}, ${shlibs:Depends}
1288+Description: Percona XtraDB Cluster 5.6 source
1289+ This package includes the source code to Percona XtraDB Cluster as configured before building.
1290
1291=== modified file 'build-ps/debian/copyright'
1292--- build/debian/copyright 2013-11-06 18:02:30 +0000
1293+++ build-ps/debian/copyright 2014-05-21 18:59:03 +0000
1294@@ -1,55 +1,787 @@
1295-This work was packaged for Debian by:
1296-
1297- Aleksandr Kuzminsky <aleksandr.kuzminsky@percona.com> on Tue, 11 Jan 2011 07:17:08 -0800
1298-
1299-It was downloaded from:
1300-
1301- http://www.percona.com/downloads/
1302-
1303-Upstream Author(s):
1304-
1305- mysql-dev@percona.com
1306-
1307-Copyright:
1308-
1309- Copyright (C) 2006-2011 Percona Inc.
1310-
1311-License:
1312-
1313- This package is free software; you can redistribute it and/or modify
1314- it under the terms of the GNU General Public License version 2 as
1315- published by the Free Software Foundation.
1316-
1317- This package is distributed in the hope that it will be useful,
1318- but WITHOUT ANY WARRANTY; without even the implied warranty of
1319- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1320- GNU General Public License for more details.
1321-
1322- You should have received a copy of the GNU General Public License
1323- along with this program. If not, see <http://www.gnu.org/licenses/>
1324-
1325-On Debian systems, the complete text of the GNU General
1326-Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
1327-
1328-The Debian packaging is:
1329-
1330- Copyright (C) 2011 Aleksandr Kuzminsky <aleksandr.kuzminsky@percona.com>
1331-
1332-you can redistribute it and/or modify
1333-it under the terms of the GNU General Public License as published by
1334-the Free Software Foundation; either version 2 of the License, or
1335-(at your option) any later version.
1336-
1337-Other copyrights:
1338-
1339-Patch innodb-deadlock-count-patch
1340-
1341-Copyright:
1342-
1343- COPYING.innodb-deadlock-count-patch
1344-
1345-Patch show_temp
1346-
1347-Copyright:
1348-
1349- COPYING.show_temp_51
1350+Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=174
1351+Upstream-Name: Percona Server 5.6
1352+Upstream-Contact: https://bugs.launchpad.net/percona-xtradb-cluster/
1353+Source: http://www.percona.com/downloads/Percona-XtraDB-Cluster-56/
1354+Comments: Modified from original MySQL 5.5 debian/copyright file by
1355+ Stewart Smith and updated for Percona Server.
1356+ .
1357+ Originally produced by a modified version of licensecheck2dep5
1358+ from CDBS by Clint Byrum <clint@ubuntu.com>. Hand modified to reduce
1359+ redundancy in the output and add appropriate license text.
1360+ .
1361+ Also, MySQL carries the "FOSS License Exception" specified in README
1362+ .
1363+ Quoting from README:
1364+ .
1365+ MySQL FOSS License Exception We want free and open source
1366+ software applications under certain licenses to be able to use
1367+ specified GPL-licensed MySQL client libraries despite the fact
1368+ that not all such FOSS licenses are compatible with version
1369+ 2 of the GNU General Public License. Therefore there are
1370+ special exceptions to the terms and conditions of the GPLv2
1371+ as applied to these client libraries, which are identified
1372+ and described in more detail in the FOSS License Exception at
1373+ <http://www.mysql.com/about/legal/licensing/foss-exception.html>.
1374+ .
1375+ The text of the Above URL is quoted below, as of Aug 17, 2011.
1376+ .
1377+ > FOSS License Exception
1378+ > .
1379+ > Updated July 1, 2010
1380+ > .
1381+ > What is the FOSS License Exception? Oracle's Free and Open Source
1382+ > Software ("FOSS") License Exception (formerly known as the FLOSS
1383+ > License Exception) allows developers of FOSS applications to include
1384+ > Oracle's MySQL Client Libraries (also referred to as "MySQL Drivers"
1385+ > or "MySQL Connectors") with their FOSS applications. MySQL Client
1386+ > Libraries are typically licensed pursuant to version 2 of the General
1387+ > Public License ("GPL"), but this exception permits distribution of
1388+ > certain MySQL Client Libraries with a developer's FOSS applications
1389+ > licensed under the terms of another FOSS license listed below,
1390+ > even though such other FOSS license may be incompatible with the GPL.
1391+ > .
1392+ > The following terms and conditions describe the circumstances under
1393+ > which Oracle's FOSS License Exception applies.
1394+ > .
1395+ > Oracle's FOSS License Exception Terms and Conditions Definitions.
1396+ > "Derivative Work" means a derivative work, as defined under applicable
1397+ > copyright law, formed entirely from the Program and one or more
1398+ > FOSS Applications.
1399+ > .
1400+ > "FOSS Application" means a free and open source software application
1401+ > distributed subject to a license listed in the section below titled
1402+ > "FOSS License List."
1403+ > .
1404+ > "FOSS Notice" means a notice placed by Oracle or MySQL in a copy
1405+ > of the MySQL Client Libraries stating that such copy of the MySQL
1406+ > Client Libraries may be distributed under Oracle's or MySQL's FOSS
1407+ > (or FLOSS) License Exception.
1408+ > .
1409+ > "Independent Work" means portions of the Derivative Work that are not
1410+ > derived from the Program and can reasonably be considered independent
1411+ > and separate works.
1412+ > .
1413+ > "Program" means a copy of Oracle's MySQL Client Libraries that
1414+ > contains a FOSS Notice.
1415+ > .
1416+ > A FOSS application developer ("you" or "your") may distribute a
1417+ > Derivative Work provided that you and the Derivative Work meet all
1418+ > of the following conditions: You obey the GPL in all respects for
1419+ > the Program and all portions (including modifications) of the Program
1420+ > included in the Derivative Work (provided that this condition does not
1421+ > apply to Independent Works); The Derivative Work does not include any
1422+ > work licensed under the GPL other than the Program; You distribute
1423+ > Independent Works subject to a license listed in the section below
1424+ > titled "FOSS License List"; You distribute Independent Works in
1425+ > object code or executable form with the complete corresponding
1426+ > machine-readable source code on the same medium and under the same
1427+ > FOSS license applying to the object code or executable forms; All
1428+ > works that are aggregated with the Program or the Derivative Work
1429+ > on a medium or volume of storage are not derivative works of the
1430+ > Program, Derivative Work or FOSS Application, and must reasonably
1431+ > be considered independent and separate works. Oracle reserves all
1432+ > rights not expressly granted in these terms and conditions. If all
1433+ > of the above conditions are not met, then this FOSS License Exception
1434+ > does not apply to you or your Derivative Work.
1435+ > .
1436+ > FOSS License List
1437+ > .
1438+ > License Name Version(s)/Copyright Date
1439+ > Release Early Certified Software
1440+ > Academic Free License 2.0
1441+ > Apache Software License 1.0/1.1/2.0
1442+ > Apple Public Source License 2.0
1443+ > Artistic license From Perl 5.8.0
1444+ > BSD license "July 22 1999"
1445+ > Common Development and Distribution License (CDDL) 1.0
1446+ > Common Public License 1.0
1447+ > Eclipse Public License 1.0
1448+ > European Union Public License (EUPL)[1] 1.1
1449+ > GNU Library or "Lesser" General Public License (LGPL) 2.0/2.1/3.0
1450+ > GNU General Public License (GPL) 3.0
1451+ > IBM Public License 1.0
1452+ > Jabber Open Source License 1.0
1453+ > MIT License (As listed in file MIT-License.txt) -
1454+ > Mozilla Public License (MPL) 1.0/1.1
1455+ > Open Software License 2.0
1456+ > OpenSSL license (with original SSLeay license) "2003" ("1998")
1457+ > PHP License 3.0/3.01
1458+ > Python license (CNRI Python License) -
1459+ > Python Software Foundation License 2.1.1
1460+ > Sleepycat License "1999"
1461+ > University of Illinois/NCSA Open Source License -
1462+ > W3C License "2001"
1463+ > X11 License "2001"
1464+ > Zlib/libpng License -
1465+ > Zope Public License 2.0
1466+ > [1] When an Independent Work is licensed under a "Compatible License"
1467+ > pursuant to the EUPL, the Compatible License rather than the EUPL is
1468+ > the applicable license for purposes of these FOSS License Exception
1469+ > Terms and Conditions.
1470+ .
1471+ The above text is subject to this copyright notice:
1472+ (C) 2010, Oracle and/or its affiliats.
1473+
1474+Files: *
1475+Copyright: 2009-2013 Percona LLC
1476+License: GPL-2
1477+
1478+Files: storage/HandlerSocket-Plugin-for-MySQL/*
1479+Copyright: Copyright (c) 2010 DeNA Co.,Ltd.
1480+License: BSD (3 clause)
1481+
1482+Files: UDF/src/*.cc
1483+Copyright: None, Public Domain
1484+License: PD
1485+
1486+Files: cmd-line-utils/libedit/config.h
1487+ dbug/example1.c
1488+ dbug/example2.c
1489+ dbug/example3.c
1490+ dbug/factorial.c
1491+ dbug/main.c
1492+ dbug/my_main.c
1493+ dbug/remove_function_from_trace.pl
1494+ dbug/tests.c
1495+ dbug/tests-t.pl
1496+ extra/yassl/src/dummy.cpp
1497+ include/probes_mysql_nodtrace.h
1498+ libmysqld/resource.h
1499+ mysql-test/*
1500+ regex/*
1501+ sql-bench/graph-compare-results.sh
1502+ storage/ndb/bin/*
1503+ storage/ndb/demos/*
1504+ support-files/binary-configure.sh
1505+ support-files/my-huge.cnf.sh
1506+ support-files/my-innodb-heavy-4G.cnf.sh
1507+ support-files/my-large.cnf.sh
1508+ support-files/my-medium.cnf.sh
1509+ support-files/my-small.cnf.sh
1510+ support-files/mysqld_multi.server.sh
1511+ support-files/mysql-log-rotate.sh
1512+ support-files/mysql.server-sys5.sh
1513+Copyright: UNKNOWN
1514+Comment: These files fall under the blanket license specified in the file
1515+ COPYING and README
1516+License: GPL-2
1517+ GPLv2 Disclaimer
1518+ For the avoidance of doubt, except that if any license choice
1519+ other than GPL or LGPL is available it will apply instead,
1520+ Oracle elects to use only the General Public License version 2
1521+ (GPLv2) at this time for any software where a choice of GPL
1522+ license versions is made available with the language indicating
1523+ that GPLv2 or any later version may be used, or where a choice
1524+ of which version of the GPL is applied is otherwise unspecified.
1525+
1526+Files: BUILD/*
1527+ client/*
1528+ client/echo.c
1529+ client/get_password.c
1530+ cmake/*
1531+ dbug/dbug_add_tags.pl
1532+ extra/*
1533+ include/*
1534+ libmysql/*
1535+ libmysqld/*
1536+ libservices/*
1537+ mysql-test/include/have_perfschema.inc
1538+ mysql-test/include/have_perfschema.inc
1539+ mysql-test/lib/mtr_cases.pm
1540+ mysql-test/lib/mtr_gcov.pl
1541+ mysql-test/lib/mtr_gprof.pl
1542+ mysql-test/lib/mtr_io.pl
1543+ mysql-test/lib/mtr_match.pm
1544+ mysql-test/lib/mtr_misc.pl
1545+ mysql-test/lib/mtr_process.pl
1546+ mysql-test/lib/mtr_report.pm
1547+ mysql-test/lib/mtr_results.pm
1548+ mysql-test/lib/mtr_stress.pl
1549+ mysql-test/lib/mtr_unique.pm
1550+ mysql-test/lib/My/ConfigFactory.pm
1551+ mysql-test/lib/My/Config.pm
1552+ mysql-test/lib/My/CoreDump.pm
1553+ mysql-test/lib/My/File/*
1554+ mysql-test/lib/My/Find.pm
1555+ mysql-test/lib/My/Handles.pm
1556+ mysql-test/lib/My/Options.pm
1557+ mysql-test/lib/My/Platform.pm
1558+ mysql-test/lib/My/SafeProcess/Base.pm
1559+ mysql-test/lib/My/SafeProcess.pm
1560+ mysql-test/lib/My/SafeProcess/safe_kill_win.cc
1561+ mysql-test/lib/My/SafeProcess/safe_process.cc
1562+ mysql-test/lib/My/SafeProcess/safe_process.pl
1563+ mysql-test/lib/My/SafeProcess/safe_process_win.cc
1564+ mysql-test/lib/My/SysInfo.pm
1565+ mysql-test/lib/My/Test.pm
1566+ mysql-test/lib/t/*
1567+ mysql-test/lib/v1/mtr_cases.pl
1568+ mysql-test/lib/v1/mtr_gcov.pl
1569+ mysql-test/lib/v1/mtr_gprof.pl
1570+ mysql-test/lib/v1/mtr_im.pl
1571+ mysql-test/lib/v1/mtr_io.pl
1572+ mysql-test/lib/v1/mtr_match.pl
1573+ mysql-test/lib/v1/mtr_misc.pl
1574+ mysql-test/lib/v1/mtr_process.pl
1575+ mysql-test/lib/v1/mtr_report.pl
1576+ mysql-test/lib/v1/mtr_stress.pl
1577+ mysql-test/lib/v1/mtr_timer.pl
1578+ mysql-test/lib/v1/mtr_unique.pl
1579+ mysql-test/lib/v1/My/*
1580+ mysql-test/lib/v1/My/*
1581+ mysql-test/lib/v1/mysql-test-run.pl
1582+ mysql-test/mysql-stress-test.pl
1583+ mysql-test/mysql-test-run.pl
1584+ mysql-test/std_data/*
1585+ mysql-test/suite/perfschema/include/*
1586+ mysql-test/suite/perfschema_stress/include/*
1587+ mysql-test/suite/perfschema_stress/include/*
1588+ mysys/*
1589+ packaging/WiX/ca/*
1590+ plugin/audit_null/*
1591+ plugin/auth/*
1592+ plugin/daemon_example/*
1593+ plugin/fulltext/*
1594+ plugin/semisync/semisync_slave.cc
1595+ plugin/semisync/semisync_slave.h
1596+ scripts/*
1597+ sql/*
1598+ sql-common/*
1599+ storage/*
1600+ strings/*
1601+ support-files/config.huge.ini.sh
1602+ support-files/config.medium.ini.sh
1603+ support-files/config.small.ini.sh
1604+ support-files/MacOSX/Description.plist.sh
1605+ support-files/MacOSX/Info.plist.sh
1606+ support-files/MacOSX/StartupParameters.plist.sh
1607+ support-files/MySQL-shared-compat.spec.sh
1608+ support-files/mysql.spec.sh
1609+ support-files/ndb-config-2-node.ini.sh
1610+ tests/*
1611+ unittest/*
1612+ vio/*
1613+Copyright: 1979-2008 MySQL AB
1614+ 1995-2010 MySQL AB Sun Microsystems Inc
1615+ 1994-1997,2000-2011 Oracle and/or its affiliates.
1616+License: GPL-2
1617+
1618+Files: storage/innobase/*
1619+Copyright: 1994-2011 Innobase Oy.
1620+License: GPL-2
1621+
1622+Files: cmd-line-utils/readline/*
1623+Copyright: 1987-2006 Free Software Foundation Inc
1624+License: GPL-2+
1625+
1626+Files: cmd-line-utils/libedit/*
1627+Copyright: 1989-1990,1992-1993 The Regents of the University of California.
1628+License: BSD (3 clause)
1629+
1630+Files: cmd-line-utils/libedit/filecomplete.c
1631+ cmd-line-utils/libedit/filecomplete.h
1632+ cmd-line-utils/libedit/np/fgetln.c
1633+ cmd-line-utils/libedit/read.h
1634+ cmd-line-utils/libedit/readline.c
1635+ cmd-line-utils/libedit/readline/*
1636+Copyright: 1997-2001 The NetBSD Foundation Inc
1637+License: BSD (2 clause)
1638+ This code is derived from software contributed to The NetBSD Foundation
1639+ by Jaromir Dolecek.
1640+ .
1641+ Redistribution and use in source and binary forms, with or without
1642+ modification, are permitted provided that the following conditions
1643+ are met:
1644+ 1. Redistributions of source code must retain the above copyright
1645+ notice, this list of conditions and the following disclaimer.
1646+ 2. Redistributions in binary form must reproduce the above copyright
1647+ notice, this list of conditions and the following disclaimer in the
1648+ documentation and/or other materials provided with the distribution.
1649+ .
1650+ THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
1651+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
1652+ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1653+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
1654+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
1655+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
1656+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
1657+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
1658+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1659+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1660+ POSSIBILITY OF SUCH DAMAGE.
1661+
1662+Files: client/completion_hash.h
1663+ scripts/mysqlaccess.sh
1664+ scripts/mysql_fix_extensions.sh
1665+ scripts/mysql_setpermission.sh
1666+ sql-bench/*
1667+ storage/myisam/ftbench/ft-test-run.sh
1668+ storage/myisam/mi_test_all.sh
1669+ storage/ndb/test/run-test/atrt-analyze-result.sh
1670+ storage/ndb/test/run-test/atrt-clear-result.sh
1671+ storage/ndb/test/run-test/atrt-gather-result.sh
1672+ storage/ndb/test/run-test/atrt-setup.sh
1673+ storage/ndb/test/run-test/make-config.sh
1674+ storage/ndb/test/run-test/make-html-reports.sh
1675+ storage/ndb/test/run-test/make-index.sh
1676+ storage/ndb/test/run-test/ndb-autotest.sh
1677+ strings/strxmov.c
1678+ strings/strxnmov.c
1679+ support-files/MacOSX/postflight.sh
1680+ support-files/MacOSX/preflight.sh
1681+Copyright: 2000-2009 MySQL AB Sun Microsystems Inc
1682+ 2000-2007 MySQL AB
1683+License: LGPL
1684+
1685+Files: storage/archive/azio.c
1686+ storage/archive/azlib.h
1687+ zlib/*
1688+Copyright: 1995-2005 Jean-loup Gailly and Mark Adler
1689+License: zlib/libpng
1690+ This software is provided 'as-is', without any express or implied
1691+ warranty. In no event will the authors be held liable for any damages
1692+ arising from the use of this software.
1693+ .
1694+ Permission is granted to anyone to use this software for any purpose,
1695+ including commercial applications, and to alter it and redistribute it
1696+ freely, subject to the following restrictions:
1697+ .
1698+ 1. The origin of this software must not be misrepresented; you must not
1699+ claim that you wrote the original software. If you use this software
1700+ in a product, an acknowledgment in the product documentation would be
1701+ appreciated but is not required.
1702+ 2. Altered source versions must be plainly marked as such, and must not be
1703+ misrepresented as being the original software.
1704+ 3. This notice may not be removed or altered from any source distribution.
1705+
1706+Files: sql-bench/innotest1.sh
1707+ sql-bench/innotest1a.sh
1708+ sql-bench/innotest1b.sh
1709+ sql-bench/innotest2.sh
1710+ sql-bench/innotest2a.sh
1711+ sql-bench/innotest2b.sh
1712+Copyright: 2000-2002 Innobase Oy & MySQL AB
1713+Comment: These files fall under the blanket license specified in the file COPYING
1714+License: GPL-2
1715+
1716+Files: storage/innobase/btr/btr0sea.c
1717+ storage/innobase/include/log0log.h
1718+ storage/innobase/include/os0sync.h
1719+ storage/innobase/log/log0log.c
1720+ storage/innobase/row/row0sel.c
1721+Copyright: 1995-1997,2009-2010 Innobase Oy.
1722+ 2008-2009 Google Inc
1723+License: GPL-2
1724+
1725+Files: storage/innobase/btr/btr0cur.c
1726+ storage/innobase/buf/buf0buf.c
1727+ storage/innobase/include/sync0rw.h
1728+ storage/innobase/include/sync0sync.h
1729+ storage/innobase/sync/*
1730+Copyright: 1994-2011 Oracle and/or its affiliates.
1731+ 2008 Google Inc
1732+License: GPL-2
1733+
1734+Files: storage/myisam/rt_index.h
1735+ storage/myisam/rt_key.c
1736+ storage/myisam/rt_mbr.c
1737+ storage/myisam/rt_mbr.h
1738+ storage/myisam/sp_defs.h
1739+Copyright: 2000,2002-2006 MySQL AB & Ramil Kalimullin
1740+License: GPL-2
1741+
1742+Files: storage/innobase/include/ut0bh.h
1743+ storage/innobase/trx/trx0rseg.c
1744+ storage/innobase/ut/ut0bh.c
1745+ storage/innobase/ut/ut0ut.c
1746+Copyright: 1996,2010-2011 Oracle Corpn.
1747+License: GPL-2
1748+
1749+Files: plugin/semisync/semisync.cc
1750+ plugin/semisync/semisync.h
1751+ plugin/semisync/semisync_slave_plugin.cc
1752+Copyright: 2008 MySQL AB
1753+ 2007 Google Inc
1754+License: GPL-2
1755+
1756+Files: strings/ctype-bin.c
1757+ strings/ctype-eucjpms.c
1758+ strings/ctype-ujis.c
1759+Copyright: 2000,2002,2005-2011 Oracle and/or its affiliates. & tommy@valley.ne.jp
1760+License: LGPL
1761+ On Debian and systems the full text of the GNU Library General Public
1762+ License version 2 can be found in the file
1763+ `/usr/share/common-licenses/LGPL-2`
1764+
1765+Files: scripts/mysqld_safe.sh
1766+ support-files/mysql-multi.server.sh
1767+ support-files/mysql.server.sh
1768+Copyright: 1996 Abandoned TCX DataKonsult AB & Monty Program KB & Detron HB
1769+License: PD
1770+ This file is public domain and comes with NO WARRANTY of any kind
1771+
1772+Files: sql/sql_yacc.cc
1773+ sql/sql_yacc.h
1774+Copyright: 1984,1989-1990,2000-2006 Free Software Foundation, Inc.
1775+License: GPL-2+
1776+
1777+Files: storage/innobase/include/pars0grm.h
1778+ storage/innobase/pars/pars0grm.c
1779+Copyright: 1995-2009 Innobase Oy.
1780+ 1984,1989-1990,2000-2004 Free Software Foundation Inc.
1781+License: GPL-2
1782+ As a special exception, when this file is copied by Bison into a
1783+ Bison output file, you may use that output file without restriction.
1784+ This special exception was added by the Free Software Foundation
1785+ in version 1.24 of Bison.
1786+ .
1787+ This program is free software; you can redistribute it and/or modify it under
1788+ the terms of the GNU General Public License as published by the Free Software
1789+ Foundation; version 2 of the License.
1790+ .
1791+ This program is distributed in the hope that it will be useful, but WITHOUT
1792+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
1793+ FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
1794+ .
1795+ You should have received a copy of the GNU General Public License along with
1796+ this program; if not, write to the Free Software Foundation, Inc.,
1797+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
1798+
1799+
1800+Files: storage/innobase/include/srv0srv.h
1801+ storage/innobase/srv/srv0start.c
1802+Copyright: 1995-1996,2010-2011 Innobase Oy.
1803+ 2008-2009 Google Inc
1804+ 2009 Percona Inc
1805+License: GPL-2
1806+
1807+Files: plugin/semisync/semisync_master.cc
1808+ plugin/semisync/semisync_master_plugin.cc
1809+Copyright: 2008-2009 MySQL AB Sun Microsystems Inc
1810+ 2007 Google Inc
1811+License: GPL-2
1812+
1813+Files: storage/innobase/include/os0file.h
1814+ storage/innobase/os/os0file.c
1815+Copyright: 1995-2010 Innobase Oy.
1816+ 2009 Percona Inc
1817+License: GPL-2
1818+
1819+Files: include/t_ctype.h
1820+ strings/t_ctype.h
1821+Copyright: 2000 MySQL AB
1822+ 1998 Theppitak Karoonboonyanan
1823+ 1998-1999 Pruet Boonma
1824+License: GPL-2
1825+
1826+Files: cmd-line-utils/libedit/np/strlcat.c
1827+ cmd-line-utils/libedit/np/strlcpy.c
1828+Copyright: 1998 Todd C. Miller <Todd.Miller@courtesan.com>
1829+License: ISC
1830+ Permission to use, copy, modify, and distribute this software for any
1831+ purpose with or without fee is hereby granted, provided that the above
1832+ copyright notice and this permission notice appear in all copies.
1833+ .
1834+ THE SOFTWARE IS PROVIDED "AS IS" AND TODD C. MILLER DISCLAIMS ALL
1835+ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
1836+ OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL TODD C. MILLER BE LIABLE
1837+ FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1838+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
1839+ OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
1840+ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1841+
1842+Files: sql/nt_servc.cc
1843+ sql/nt_servc.h
1844+Copyright: 1998 Abandoned Irena Pancirov - Irnet Snc
1845+License: PD
1846+ This file is public domain and comes with NO WARRANTY of any kind
1847+
1848+Files: dbug/dbug.c
1849+ dbug/dbug_long.h
1850+Copyright: 1987 Abandoned Fred Fish
1851+License: UNKNOWN
1852+ N O T I C E
1853+ .
1854+ Copyright Abandoned, 1987, Fred Fish
1855+ .
1856+ .
1857+ This previously copyrighted work has been placed into the public
1858+ domain by the author and may be freely used for any purpose,
1859+ private or commercial.
1860+ .
1861+ Because of the number of inquiries I was receiving about the use
1862+ of this product in commercially developed works I have decided to
1863+ simply make it public domain to further its unrestricted use. I
1864+ specifically would be most happy to see this material become a
1865+ part of the standard Unix distributions by AT&T and the Berkeley
1866+ Computer Science Research Group, and a standard part of the GNU
1867+ system from the Free Software Foundation.
1868+ .
1869+ I would appreciate it, as a courtesy, if this notice is left in
1870+ all copies and derivative works. Thank you.
1871+ .
1872+ The author makes no warranty of any kind with respect to this
1873+ product and explicitly disclaims any implied warranties of mer-
1874+ chantability or fitness for any particular purpose.
1875+
1876+Files: cmd-line-utils/libedit/np/vis.c
1877+Copyright: 1989-1993 The Regents of the University of California.
1878+ 1999-2005 The NetBSD Foundation Inc
1879+License: BSD (3 clause)
1880+ Redistribution and use in source and binary forms, with or without
1881+ modification, are permitted provided that the following conditions
1882+ are met:
1883+ 1. Redistributions of source code must retain the above copyright
1884+ notice, this list of conditions and the following disclaimer.
1885+ 2. Redistributions in binary form must reproduce the above copyright
1886+ notice, this list of conditions and the following disclaimer in the
1887+ documentation and/or other materials provided with the distribution.
1888+ 3. Neither the name of the University nor the names of its contributors
1889+ may be used to endorse or promote products derived from this software
1890+ without specific prior written permission.
1891+ .
1892+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1893+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1894+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1895+ ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1896+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1897+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1898+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1899+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1900+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1901+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1902+ SUCH DAMAGE.
1903+
1904+Files: scripts/dheadgen.pl
1905+Copyright: 2008-2009 Sun Microsystems Inc
1906+License: BSD (3 clause)
1907+
1908+Files: storage/ndb/test/src/getarg.c
1909+Copyright: 1997-2000 - Kungliga Tekniska Hogskolan
1910+License: BSD (3 clause)
1911+
1912+Files: storage/ndb/test/include/getarg.h
1913+Copyright: 2003 MySQL AB
1914+ 1997-1999 Kungliga Tekniska Hogskolan
1915+License: BSD (3 clause) GPL-2
1916+ This program is free software; you can redistribute it and/or modify
1917+ it under the terms of the GNU General Public License as published by
1918+ the Free Software Foundation; version 2 of the License.
1919+ .
1920+ This program is distributed in the hope that it will be useful,
1921+ but WITHOUT ANY WARRANTY; without even the implied warranty of
1922+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1923+ GNU General Public License for more details.
1924+ .
1925+ You should have received a copy of the GNU General Public License
1926+ along with this program; if not, write to the Free Software Foundation, Inc.,
1927+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */
1928+ .
1929+ Copyright (c) 1997, 1999 Kungliga Tekniska Hogskolan
1930+ (Royal Institute of Technology, Stockholm, Sweden).
1931+ All rights reserved.
1932+ .
1933+ Redistribution and use in source and binary forms, with or without
1934+ modification, are permitted provided that the following conditions
1935+ are met:
1936+ .
1937+ 1. Redistributions of source code must retain the above copyright
1938+ notice, this list of conditions and the following disclaimer.
1939+ .
1940+ 2. Redistributions in binary form must reproduce the above copyright
1941+ notice, this list of conditions and the following disclaimer in the
1942+ documentation and/or other materials provided with the distribution.
1943+ .
1944+ 3. Neither the name of the Institute nor the names of its contributors
1945+ may be used to endorse or promote products derived from this software
1946+ without specific prior written permission.
1947+ .
1948+ THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
1949+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1950+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1951+ ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
1952+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1953+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1954+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1955+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1956+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1957+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1958+ SUCH DAMAGE.
1959+
1960+Files: storage/innobase/handler/ha_innodb.cc
1961+Copyright: 2008-2009 Google Inc
1962+ 2009 Percona Inc
1963+ 2000-2011 MySQL AB & Innobase Oy.
1964+License: GPL-2
1965+
1966+Files: plugin/semisync/semisync_master.h
1967+Copyright: 2008-2009 MySQL AB Sun Microsystems Inc
1968+ 2007 Google Inc
1969+License: GPL-2
1970+
1971+Files: storage/innobase/srv/srv0srv.c
1972+Copyright: 2008-2009 Google Inc
1973+ 1995-2011 Oracle and/or its affiliates.
1974+ 2009 Percona Inc
1975+License: GPL-2
1976+
1977+Files: storage/innobase/ut/ut0rbt.c
1978+Copyright: 2007-2010 Innobase Oy.
1979+ 2007 Oracle/Innobase Oy
1980+License: GPL-2
1981+
1982+Files: strings/ctype-win1250ch.c
1983+Copyright: 2002-2010 Oracle and/or its affiliates.
1984+ 2001 Jan Pazdziora
1985+License: GPL-2
1986+
1987+Files: strings/ctype-tis620.c
1988+Copyright: 1998 Theppitak Karoonboonyanan <thep@links.nectec.or.th>
1989+ 1989-1991 Samphan Raruenrom <samphan@thai.com>
1990+ 2000-2010 Oracle and/or its affiliates.
1991+ 2003 Sathit Jittanupat
1992+ 2001 Korakot Chaovavanich <korakot@iname.com> and
1993+ 1998-1999 Pruet Boonma <pruet@eng.cmu.ac.th>
1994+License: GPL-2
1995+
1996+Files: storage/innobase/handler/ha_innodb.h
1997+Copyright: 2000-2010 MySQL AB & Innobase Oy.
1998+License: GPL-2
1999+
2000+Files: strings/dtoa.c
2001+Copyright: 2007-2010 Oracle and/or its affiliates.
2002+ 1991,2000-2001 Lucent Technologies
2003+License: LGPL
2004+
2005+Files: scripts/mysqldumpslow.sh
2006+Copyright: 2000-2002,2005-2009 MySQL AB Sun Microsystems Inc
2007+License: LGPL
2008+
2009+Files: libmysqld/lib_sql.cc
2010+Copyright: 2000 SWsoft company
2011+License: SWsoft
2012+ This material is provided "as is", with absolutely no warranty expressed
2013+ or implied. Any use is at your own risk.
2014+ .
2015+ Permission to use or copy this software for any purpose is hereby granted
2016+ without fee, provided the above notices are retained on all copies.
2017+ Permission to modify the code and to distribute modified code is granted,
2018+ provided the above notices are retained, and a notice that the code was
2019+ modified is included with the above copyright notice.
2020+
2021+Files: tests/mail_to_db.pl
2022+Copyright: 1998 Abandoned TCX DataKonsult AB & Monty Program KB & Detron HB
2023+License: PD
2024+ This file is public domain and comes with NO WARRANTY of any kind
2025+
2026+Files: dbug/dbug_analyze.c
2027+Copyright: 1987 June Binayak Banerjee
2028+License: PD
2029+ This program may be freely distributed under the same terms and
2030+ conditions as Fred Fish's Dbug package.
2031+
2032+Files: regex/regexp.c
2033+Copyright: 1986 University of Toronto
2034+License: BSD-like
2035+ Permission is granted to anyone to use this software for any
2036+ purpose on any computer system, and to redistribute it freely,
2037+ subject to the following restrictions:
2038+ .
2039+ 1. The author is not responsible for the consequences of use of
2040+ this software, no matter how awful, even if they arise
2041+ from defects in it.
2042+ .
2043+ 2. The origin of this software must not be misrepresented, either
2044+ by explicit claim or by omission.
2045+ .
2046+ 3. Altered versions must be plainly marked as such, and must not
2047+ be misrepresented as being the original software.
2048+
2049+License: PD
2050+ This software is in the Public Domain.
2051+
2052+License: GPL-2
2053+ This program is free software; you can redistribute it and/or modify
2054+ it under the terms of the GNU General Public License as published by
2055+ the Free Software Foundation; version 2 of the License.
2056+ .
2057+ This program is distributed in the hope that it will be useful,
2058+ but WITHOUT ANY WARRANTY; without even the implied warranty of
2059+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2060+ GNU General Public License for more details.
2061+ .
2062+ You should have received a copy of the GNU General Public License
2063+ along with this program; if not, write to the Free Software
2064+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
2065+ .
2066+ On Debian and systems the full text of the GNU General Public
2067+ License version 2 can be found in the file
2068+ `/usr/share/common-licenses/GPL-2`
2069+
2070+License: GPL-2+
2071+ This file is part of GNU Readline, a library for reading lines
2072+ of text with interactive input and history editing.
2073+ .
2074+ Readline is free software; you can redistribute it and/or modify it
2075+ under the terms of the GNU General Public License as published by the
2076+ Free Software Foundation; either version 2, or (at your option) any
2077+ later version.
2078+ .
2079+ Readline is distributed in the hope that it will be useful, but
2080+ WITHOUT ANY WARRANTY; without even the implied warranty of
2081+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2082+ General Public License for more details.
2083+ .
2084+ You should have received a copy of the GNU General Public License
2085+ along with Readline; see the file COPYING. If not, write to the Free
2086+ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
2087+ MA 02110-1301, USA.
2088+ .
2089+ On Debian and systems the full text of the GNU General Public
2090+ License version 2 can be found in the file
2091+ `/usr/share/common-licenses/GPL-2`
2092+
2093+License: LGPL
2094+ This library is free software; you can redistribute it and/or
2095+ modify it under the terms of the GNU Library General Public
2096+ License as published by the Free Software Foundation; version 2
2097+ of the License.
2098+ .
2099+ This library is distributed in the hope that it will be useful,
2100+ but WITHOUT ANY WARRANTY; without even the implied warranty of
2101+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2102+ Library General Public License for more details.
2103+ .
2104+ You should have received a copy of the GNU Library General Public
2105+ License along with this library; if not, write to the Free
2106+ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
2107+ MA 02110-1301, USA
2108+ .
2109+ On Debian and systems the full text of the GNU Library General Public
2110+ License version 2 can be found in the file
2111+ `/usr/share/common-licenses/LGPL-2`
2112+
2113+License: BSD (3 clause)
2114+ Redistribution and use in source and binary forms, with or without
2115+ modification, are permitted provided that the following conditions
2116+ are met:
2117+ 1. Redistributions of source code must retain the above copyright
2118+ notice, this list of conditions and the following disclaimer.
2119+ 2. Redistributions in binary form must reproduce the above copyright
2120+ notice, this list of conditions and the following disclaimer in the
2121+ documentation and/or other materials provided with the distribution.
2122+ 3. Neither the name of the University nor the names of its contributors
2123+ may be used to endorse or promote products derived from this software
2124+ without specific prior written permission.
2125+ .
2126+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2127+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2128+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2129+ ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2130+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2131+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2132+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2133+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2134+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2135+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2136+ SUCH DAMAGE.
2137
2138=== added file 'build-ps/debian/libperconaserverclient18.1-dev.files'
2139--- build-ps/debian/libperconaserverclient18.1-dev.files 1970-01-01 00:00:00 +0000
2140+++ build-ps/debian/libperconaserverclient18.1-dev.files 2014-05-21 18:59:03 +0000
2141@@ -0,0 +1,11 @@
2142+usr/bin/mysql_config
2143+usr/include/mysql/*
2144+usr/lib/*/libmysqlclient.a
2145+usr/lib/*/libmysqlclient.so
2146+usr/lib/*/libmysqlclient_r.a
2147+usr/lib/*/libmysqlclient_r.so
2148+usr/lib/*/mysql/plugin/ha_example.*
2149+usr/lib/*/mysql/plugin/ha_*_plugin.a
2150+usr/lib/*/mysql/plugin/ha_*_plugin.la
2151+usr/share/aclocal/mysql.m4
2152+usr/share/man/man1/mysql_config.1
2153
2154=== renamed file 'build/debian/libmysqlclient18.1.docs' => 'build-ps/debian/libperconaserverclient18.1.docs'
2155=== renamed file 'build/debian/libmysqlclient18.1.install' => 'build-ps/debian/libperconaserverclient18.1.install'
2156--- build/debian/libmysqlclient18.1.install 2013-10-02 19:13:40 +0000
2157+++ build-ps/debian/libperconaserverclient18.1.install 2014-05-21 18:59:03 +0000
2158@@ -1,1 +1,1 @@
2159-usr/lib/libmysqlclient*.so.18.*
2160+usr/lib/*/libmysqlclient*.so.*
2161
2162=== added file 'build-ps/debian/libperconaserverclient18.lintian-overrides'
2163--- build-ps/debian/libperconaserverclient18.lintian-overrides 1970-01-01 00:00:00 +0000
2164+++ build-ps/debian/libperconaserverclient18.lintian-overrides 2014-05-21 18:59:03 +0000
2165@@ -0,0 +1,6 @@
2166+# We are libmysqlclient, so of course we look like it.
2167+embedded-library binary: usr/lib/*/libmysqlclient.so.18.0.0
2168+embedded-library binary: usr/lib/*/libmysqlclient_r.so.18.0.0
2169+
2170+# no wildcards? :(
2171+embedded-library binary: usr/lib/x86_64-linux-gnu/libmysqlclient.so.18.0.0
2172
2173=== renamed file 'build/debian/percona-xtradb-cluster-client-5.6.install' => 'build-ps/debian/percona-xtradb-cluster-client-5.6.files'
2174--- build/debian/percona-xtradb-cluster-client-5.6.install 2013-11-06 14:12:57 +0000
2175+++ build-ps/debian/percona-xtradb-cluster-client-5.6.files 2014-05-21 18:59:03 +0000
2176@@ -14,7 +14,6 @@
2177 usr/bin/mysql_waitpid
2178 usr/bin/mysqlslap
2179 usr/bin/mysql_config_editor
2180-usr/bin/mysqlaccess.conf
2181 usr/share/man/man1/myisam_ftdump.1
2182 usr/share/man/man1/mysql.1
2183 usr/share/man/man1/mysqlaccess.1
2184
2185=== modified file 'build-ps/debian/percona-xtradb-cluster-client-5.6.lintian-overrides'
2186--- build/debian/percona-xtradb-cluster-client-5.6.lintian-overrides 2013-11-06 14:12:57 +0000
2187+++ build-ps/debian/percona-xtradb-cluster-client-5.6.lintian-overrides 2014-05-21 18:59:03 +0000
2188@@ -1,1 +1,12 @@
2189-percona-server-client-5.6: package-has-a-duplicate-relation
2190+package-has-a-duplicate-relation
2191+
2192+# we are MySQL, so we're going to hit false-positives
2193+embedded-library
2194+
2195+# We should get man pages for these binaries.
2196+binary-without-manpage usr/bin/mysqlanalyze
2197+binary-without-manpage usr/bin/mysqloptimize
2198+binary-without-manpage usr/bin/mysqlrepair
2199+
2200+manpage-has-errors-from-man binary: usr/share/man/man1/mysqladmin.1.gz
2201+manpage-has-errors-from-man binary: usr/share/man/man1/mysqldump.1.gz
2202
2203=== added file 'build-ps/debian/percona-xtradb-cluster-common-5.6.lintian-overrides'
2204--- build-ps/debian/percona-xtradb-cluster-common-5.6.lintian-overrides 1970-01-01 00:00:00 +0000
2205+++ build-ps/debian/percona-xtradb-cluster-common-5.6.lintian-overrides 2014-05-21 18:59:03 +0000
2206@@ -0,0 +1,1 @@
2207+empty-binary-package
2208
2209=== modified file 'build-ps/debian/percona-xtradb-cluster-server-5.6.config'
2210--- build/debian/percona-xtradb-cluster-server-5.6.config 2013-11-06 14:12:57 +0000
2211+++ build-ps/debian/percona-xtradb-cluster-server-5.6.config 2014-05-21 18:59:03 +0000
2212@@ -9,7 +9,7 @@
2213
2214 # Beware that there are two ypwhich one of them needs the 2>/dev/null!
2215 if test -n "`which ypwhich 2>/dev/null`" && ypwhich >/dev/null 2>&1; then
2216- db_input high percona-server-server-5.6/nis_warning || true
2217+ db_input high percona-xtradb-cluster-server-5.6/nis_warning || true
2218 db_go
2219 fi
2220
2221@@ -20,27 +20,27 @@
2222 if [ "$1" = "configure" ] && ([ -z "$2" ] && [ ! -e "/var/lib/mysql/debian-5.0.flag" ] ) || [ "$1" = "reconfigure" ]; then
2223 while :; do
2224 RET=""
2225- db_input high percona-server-server/root_password || true
2226+ db_input high percona-xtradb-cluster-server/root_password || true
2227 db_go
2228- db_get percona-server-server/root_password
2229+ db_get percona-xtradb-cluster-server/root_password
2230 # if password isn't empty we ask for password verification
2231 if [ -z "$RET" ]; then
2232- db_fset percona-server-server/root_password seen false
2233- db_fset percona-server-server/root_password_again seen false
2234+ db_fset percona-xtradb-cluster-server/root_password seen false
2235+ db_fset percona-xtradb-cluster-server/root_password_again seen false
2236 break
2237 fi
2238 ROOT_PW="$RET"
2239- db_input high percona-server-server/root_password_again || true
2240+ db_input high percona-xtradb-cluster-server/root_password_again || true
2241 db_go
2242- db_get percona-server-server/root_password_again
2243+ db_get percona-xtradb-cluster-server/root_password_again
2244 if [ "$RET" == "$ROOT_PW" ]; then
2245 ROOT_PW=''
2246 break
2247 fi
2248- db_fset percona-server-server/password_mismatch seen false
2249- db_input critical percona-server-server/password_mismatch
2250- db_set percona-server-server/root_password ""
2251- db_set percona-server-server/root_password_again ""
2252+ db_fset percona-xtradb-cluster-server/password_mismatch seen false
2253+ db_input critical percona-xtradb-cluster-server/password_mismatch
2254+ db_set percona-xtradb-cluster-server/root_password ""
2255+ db_set percona-xtradb-cluster-server/root_password_again ""
2256 db_go
2257 done
2258 fi
2259
2260=== modified file 'build-ps/debian/percona-xtradb-cluster-server-5.6.dirs'
2261--- build/debian/percona-xtradb-cluster-server-5.6.dirs 2013-11-06 14:12:57 +0000
2262+++ build-ps/debian/percona-xtradb-cluster-server-5.6.dirs 2014-05-21 18:59:03 +0000
2263@@ -1,1 +1,3 @@
2264-var/run/mysqld
2265+var/run
2266+etc/mysql/conf.d
2267+
2268
2269=== modified file 'build-ps/debian/percona-xtradb-cluster-server-5.6.docs'
2270--- build/debian/percona-xtradb-cluster-server-5.6.docs 2013-11-06 14:12:57 +0000
2271+++ build-ps/debian/percona-xtradb-cluster-server-5.6.docs 2014-05-21 18:59:03 +0000
2272@@ -3,6 +3,5 @@
2273 README
2274 COPYING*
2275 Docs/INSTALL-BINARY
2276-Docs/mysql.info
2277-release/Docs/INFO_BIN
2278-release/Docs/INFO_SRC
2279+builddir/Docs/INFO_BIN
2280+builddir/Docs/INFO_SRC
2281
2282=== renamed file 'build/debian/percona-xtradb-cluster-server-5.6.install' => 'build-ps/debian/percona-xtradb-cluster-server-5.6.files'
2283--- build/debian/percona-xtradb-cluster-server-5.6.install 2013-11-06 14:12:57 +0000
2284+++ build-ps/debian/percona-xtradb-cluster-server-5.6.files 2014-05-21 18:59:03 +0000
2285@@ -58,7 +58,7 @@
2286 usr/share/man/man1/comp_err.1
2287 usr/share/man/man1/mysqlman.1
2288 usr/share/man/man8/mysqld.8
2289-usr/share/mysql/
2290+usr/share/mysql
2291 etc/xinetd.d/mysqlchk
2292-debian/additions/debian-start etc/mysql/
2293-debian/additions/debian-start.inc.sh usr/share/mysql
2294+etc/mysql/debian-start
2295+usr/share/mysql/debian-start.inc.sh
2296
2297=== modified file 'build-ps/debian/percona-xtradb-cluster-server-5.6.lintian-overrides'
2298--- build/debian/percona-xtradb-cluster-server-5.6.lintian-overrides 2013-11-06 14:12:57 +0000
2299+++ build-ps/debian/percona-xtradb-cluster-server-5.6.lintian-overrides 2014-05-21 18:59:03 +0000
2300@@ -1,4 +1,15 @@
2301-percona-server-server-5.6: possible-bashism-in-maintainer-script postinst:81 'p{("a".."z","A".."Z",0..9)[int(rand(62))]}'
2302-percona-server-server-5.6: possible-bashism-in-maintainer-script preinst:33 '${cmd/ */}'
2303-percona-server-server-5.6: statically-linked-binary ./usr/bin/mysql_tzinfo_to_sql
2304-percona-server-server-5.6: statically-linked-binary ./usr/sbin/mysqld
2305+percona-xtradb-cluster-server-5.6: possible-bashism-in-maintainer-script postinst:81 'p{("a".."z","A".."Z",0..9)[int(rand(62))]}'
2306+percona-xtradb-cluster-server-5.6: possible-bashism-in-maintainer-script preinst:33 '${cmd/ */}'
2307+percona-xtradb-cluster-server-5.6: statically-linked-binary ./usr/bin/mysql_tzinfo_to_sql
2308+percona-xtradb-cluster-server-5.6: statically-linked-binary ./usr/sbin/mysqld
2309+
2310+# we are mysqld, we are going to look like libmysqlclient
2311+embedded-library
2312+
2313+#to supress false positive
2314+duplicate-updaterc.d-calls-in-postrm
2315+
2316+extra-license-file usr/share/doc/percona-xtradb-cluster-server-5.6/COPYING.gz
2317+extra-license-file usr/share/doc/percona-xtradb-cluster-server-5.6/COPYING.innodb-deadlock-count-patch
2318+extra-license-file usr/share/doc/percona-xtradb-cluster-server-5.6/COPYING.show_temp_51
2319+
2320
2321=== modified file 'build-ps/debian/percona-xtradb-cluster-server-5.6.postinst'
2322--- build/debian/percona-xtradb-cluster-server-5.6.postinst 2014-02-18 18:19:54 +0000
2323+++ build-ps/debian/percona-xtradb-cluster-server-5.6.postinst 2014-05-21 18:59:03 +0000
2324@@ -4,9 +4,8 @@
2325
2326 if [ -n "$DEBIAN_SCRIPT_DEBUG" ]; then set -v -x; DEBIAN_SCRIPT_TRACE=1; fi
2327 ${DEBIAN_SCRIPT_TRACE:+ echo "#42#DEBUG# RUNNING $0 $*" 1>&2 }
2328-
2329-PERCONA_PREFIX=/usr
2330-export PATH=$PATH:/sbin:/usr/sbin:/bin:/usr/bin:$PERCONA_PREFIX/bin
2331+
2332+export PATH=$PATH:/sbin:/usr/sbin:/bin:/usr/bin
2333
2334 # This command can be used as pipe to syslog. With "-s" it also logs to stderr.
2335 ERR_LOGGER="logger -p daemon.err -t mysqld_safe -i"
2336@@ -19,7 +18,7 @@
2337 fi
2338 }
2339
2340-MYSQL_BOOTSTRAP="${PERCONA_PREFIX}/sbin/mysqld --bootstrap --user=mysql --skip-grant-tables"
2341+MYSQL_BOOTSTRAP="/usr/sbin/mysqld --bootstrap --user=mysql --skip-grant-tables"
2342
2343 test_mysql_access() {
2344 mysql --no-defaults -u root -h localhost </dev/null >/dev/null 2>&1
2345@@ -28,8 +27,8 @@
2346 # call with $1 = "online" to connect to the server, otherwise it bootstraps
2347 set_mysql_rootpw() {
2348 # forget we ever saw the password. don't use reset to keep the seen status
2349- db_set percona-server-server/root_password ""
2350- db_set percona-server-server/root_password_again ""
2351+ db_set percona-xtradb-cluster-server/root_password ""
2352+ db_set percona-xtradb-cluster-server/root_password_again ""
2353
2354 tfile=`mktemp`
2355 if [ ! -f "$tfile" ]; then
2356@@ -63,7 +62,7 @@
2357
2358 case "$1" in
2359 configure)
2360- mysql_datadir=${PERCONA_PREFIX}/share/mysql
2361+ mysql_datadir=/usr/share/mysql
2362 mysql_statedir=/var/lib/mysql
2363 mysql_rundir=/var/run/mysqld
2364 mysql_logdir=/var/log
2365@@ -119,6 +118,8 @@
2366 set +e
2367 chown -R 0:0 $mysql_datadir
2368 chown -R mysql $mysql_statedir
2369+ chmod 700 $mysql_statedir $mysql_statedir/mysql
2370+ if [ ! -d "$mysql_rundir" ]; then mkdir "$mysql_rundir"; fi
2371 chown -R mysql $mysql_rundir
2372 chown -R mysql:adm $mysql_newlogdir; chmod 2750 $mysql_newlogdir;
2373 for i in log err; do
2374@@ -129,9 +130,9 @@
2375 set -e
2376
2377 # This is important to avoid dataloss when there is a removed
2378- # percona-server-server version from Woody lying around which used the same
2379+ # percona-xtradb-cluster-server version from Woody lying around which used the same
2380 # data directory and then somewhen gets purged by the admin.
2381- db_set percona-server-server/postrm_remove_database false || true
2382+ db_set percona-xtradb-cluster-server/postrm_remove_database false || true
2383
2384 # To avoid downgrades.
2385 touch $mysql_statedir/debian-5.6.flag
2386@@ -140,7 +141,7 @@
2387 # Debian: beware of the bashisms...
2388 # Debian: can safely run on upgrades with existing databases
2389 set +e
2390- ${PERCONA_PREFIX}/bin/mysql_install_db --user=mysql --rpm 2>&1 |
2391+ /usr//bin/mysql_install_db --user=mysql --rpm 2>&1 |
2392 $ERR_LOGGER
2393 if [ "$?" != "0" ]; then
2394 echo "ATTENTION: An error has occured. More info is in the syslog!"
2395@@ -171,42 +172,44 @@
2396 else
2397 pass=`perl -e 'print map{("a".."z","A".."Z",0..9)[int(rand(62))]}(1..16)'`;
2398 if [ ! -d "$mysql_cfgdir" ]; then install -o 0 -g 0 -m 0755 -d $mysql_cfgdir; fi
2399+ umask 066
2400 cat /dev/null > $dc
2401+ umask 022
2402 echo "# Automatically generated for Debian scripts. DO NOT TOUCH!" >>$dc
2403 echo "[client]" >>$dc
2404 echo "host = localhost" >>$dc
2405 echo "user = debian-sys-maint" >>$dc
2406 echo "password = $pass" >>$dc
2407- echo "socket = /var/run/mysqld/mysqld.sock" >>$dc
2408+ echo "socket = $mysql_rundir/mysqld.sock" >>$dc
2409 echo "[mysql_upgrade]" >>$dc
2410 echo "host = localhost" >>$dc
2411 echo "user = debian-sys-maint" >>$dc
2412 echo "password = $pass" >>$dc
2413- echo "socket = /var/run/mysqld/mysqld.sock" >>$dc
2414- echo "basedir = ${PERCONA_PREFIX}" >>$dc
2415+ echo "socket = $mysql_rundir/mysqld.sock" >>$dc
2416+ echo "basedir = /usr" >>$dc
2417 fi
2418 # If this dir chmod go+w then the admin did it. But this file should not.
2419 chown 0:0 $dc
2420 chmod 0600 $dc
2421
2422 # update privilege tables
2423- password_column_fix_query=`/bin/echo -e \
2424+ password_column_fix_query=`echo -e \
2425 "USE mysql\n" \
2426 "ALTER TABLE user CHANGE Password Password char(41) character set latin1 collate latin1_bin DEFAULT '' NOT NULL"`;
2427- replace_query=`/bin/echo -e \
2428+ replace_query=`echo -e \
2429 "USE mysql;\n" \
2430 "REPLACE INTO user SET " \
2431 " host='localhost', user='debian-sys-maint', password=password('$pass'), " \
2432 " Select_priv='Y', Insert_priv='Y', Update_priv='Y', Delete_priv='Y', " \
2433 " Create_priv='Y', Drop_priv='Y', Reload_priv='Y', Shutdown_priv='Y', " \
2434 " Process_priv='Y', File_priv='Y', Grant_priv='Y', References_priv='Y', " \
2435- " Index_priv='Y', Alter_priv='Y', Super_priv='Y', Show_db_priv='Y', "\
2436- " Create_tmp_table_priv='Y', Lock_tables_priv='Y', Execute_priv='Y', "\
2437- " Repl_slave_priv='Y', Repl_client_priv='Y', Create_view_priv='Y', "\
2438- " Show_view_priv='Y', Create_routine_priv='Y', Alter_routine_priv='Y', "\
2439- " Create_user_priv='Y', Event_priv='Y', Trigger_priv='Y', "\
2440- " ssl_cipher='', x509_issuer='', x509_subject=''; "`
2441- fix_privs=`/bin/echo -e \
2442+ " Index_priv='Y', Alter_priv='Y', Super_priv='Y', Show_db_priv='Y', " \
2443+ " Create_tmp_table_priv='Y', Lock_tables_priv='Y', Execute_priv='Y', " \
2444+ " Repl_slave_priv='Y', Repl_client_priv='Y', Create_view_priv='Y', " \
2445+ " Show_view_priv='Y', Create_routine_priv='Y', Alter_routine_priv='Y', " \
2446+ " Create_user_priv='Y', Event_priv='Y', Trigger_priv='Y', Create_tablespace_priv='Y', " \
2447+ " ssl_cipher='', x509_issuer='', x509_subject=''; " `
2448+ fix_privs=`echo -e \
2449 "USE mysql;\n" \
2450 "ALTER TABLE user ADD column Create_view_priv enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N'; " \
2451 "ALTER TABLE user ADD column Show_view_priv enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N'; " \
2452@@ -216,7 +219,7 @@
2453 "ALTER TABLE user ADD column Event_priv enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N'; " \
2454 "ALTER TABLE user ADD column Trigger_priv enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N'; " `
2455
2456- db_get percona-server-server/root_password && rootpw="$RET"
2457+ db_get percona-xtradb-cluster-server/root_password && rootpw="$RET"
2458 if ! set_mysql_rootpw; then
2459 password_error="yes"
2460 fi
2461@@ -228,20 +231,21 @@
2462 ;;
2463
2464 *)
2465- echo "postinst called with unknown argument '$1'" 1>&2
2466+ echo "postinst called with unknown argument $1" 1>&2
2467 exit 1
2468 ;;
2469 esac
2470
2471 # here we check to see if we can connect as root without a password
2472 # this should catch upgrades from previous versions where the root
2473-# password wasn't set. if there is a password, or if the connection
2474+# password was not set. if there is a password, or if the connection
2475 # fails for any other reason, nothing happens.
2476+
2477 if [ "$1" = "configure" ]; then
2478 if test_mysql_access; then
2479- db_input medium percona-server-server/root_password || true
2480+ db_input medium percona-xtradb-cluster-server/root_password || true
2481 db_go
2482- db_get percona-server-server/root_password && rootpw="$RET"
2483+ db_get percona-xtradb-cluster-server/root_password && rootpw="$RET"
2484
2485 if ! set_mysql_rootpw "online"; then
2486 password_error="yes"
2487@@ -249,7 +253,7 @@
2488 fi
2489
2490 if [ "$password_error" = "yes" ]; then
2491- db_input high percona-server-server/error_setting_password || true
2492+ db_input high percona-xtradb-cluster-server/error_setting_password || true
2493 db_go
2494 fi
2495
2496@@ -261,7 +265,7 @@
2497 echo -e "\tmysql -e \"CREATE FUNCTION fnv1a_64 RETURNS INTEGER SONAME 'libfnv1a_udf.so'\""
2498 echo -e "\tmysql -e \"CREATE FUNCTION fnv_64 RETURNS INTEGER SONAME 'libfnv_udf.so'\""
2499 echo -e "\tmysql -e \"CREATE FUNCTION murmur_hash RETURNS INTEGER SONAME 'libmurmur_udf.so'\""
2500-echo -e "\n * See http://www.percona.com/doc/percona-server/5.5/management/udf_percona_toolkit.html for more details\n\n"
2501+echo -e "\n * See http://www.percona.com/doc/percona-xtradb-cluster/5.6/management/udf_percona_toolkit.html for more details\n\n"
2502 #
2503 db_stop # in case invoke failes
2504
2505
2506=== modified file 'build-ps/debian/percona-xtradb-cluster-server-5.6.postrm'
2507--- build/debian/percona-xtradb-cluster-server-5.6.postrm 2013-11-06 14:12:57 +0000
2508+++ build-ps/debian/percona-xtradb-cluster-server-5.6.postrm 2014-05-21 18:59:03 +0000
2509@@ -19,9 +19,9 @@
2510 stop_server() {
2511 set +e
2512 if [ -x /usr/sbin/invoke-rc.d ]; then
2513- invoke-rc.d percona-server stop
2514+ invoke-rc.d mysql stop
2515 else
2516- /etc/init.d/percona-server stop
2517+ /etc/init.d/mysql stop
2518 fi
2519 errno=$?
2520 set -e
2521@@ -47,7 +47,7 @@
2522 esac
2523
2524 #
2525-# - Do NOT purge logs or data if another percona-server-server* package is installed (#307473)
2526+# - Do NOT purge logs or data if another percona-xtradb-cluster-server* package is installed (#307473)
2527 # - Remove the mysql user only after all his owned files are purged.
2528 #
2529 if [ "$1" = "purge" -a ! \( -x /usr/sbin/mysqld -o -L /usr/sbin/mysqld \) ]; then
2530@@ -55,9 +55,9 @@
2531 rm -f /var/log/mysql.{log,err}{,.0,.[1234567].gz}
2532 rm -rf /var/log/mysql
2533
2534- db_input high percona-server-server-5.6/postrm_remove_databases || true
2535+ db_input high percona-xtradb-cluster-server-5.6/postrm_remove_databases || true
2536 db_go || true
2537- db_get percona-server-server-5.6/postrm_remove_databases || true
2538+ db_get percona-xtradb-cluster-server-5.6/postrm_remove_databases || true
2539 if [ "$RET" = "true" ]; then
2540 # never remove the debian.cnf when the databases are still existing
2541 # else we ran into big trouble on the next install!
2542@@ -69,7 +69,7 @@
2543
2544 # (normally) Automatically added by dh_installinit
2545 if [ "$1" = "purge" ] ; then
2546- update-rc.d percona-server remove >/dev/null || exit 0
2547+ update-rc.d mysql remove >/dev/null || exit 0
2548 fi
2549 # (normally) End automatically added section
2550 fi
2551@@ -81,6 +81,6 @@
2552 fi
2553 # (normally) End automatically added section
2554
2555-# no DEBHELPER here, "update-rc.d remove" fails if percona-server-server-5.6 is installed
2556+#DEBHELPER#
2557
2558 exit 0
2559
2560=== modified file 'build-ps/debian/percona-xtradb-cluster-server-5.6.preinst'
2561--- build/debian/percona-xtradb-cluster-server-5.6.preinst 2013-11-06 14:12:57 +0000
2562+++ build-ps/debian/percona-xtradb-cluster-server-5.6.preinst 2014-05-21 18:59:03 +0000
2563@@ -12,10 +12,8 @@
2564 if [ -n "$DEBIAN_SCRIPT_DEBUG" ]; then set -v -x; DEBIAN_SCRIPT_TRACE=1; fi
2565 ${DEBIAN_SCRIPT_TRACE:+ echo "#42#DEBUG# RUNNING $0 $*" 1>&2 }
2566
2567-PERCONA_PREFIX=/usr
2568-export PATH=$PATH:/sbin:/usr/sbin:/bin:/usr/bin:$PERCONA_PREFIX/bin
2569-
2570-MYADMIN="${PERCONA_PREFIX}/bin/mysqladmin --defaults-file=/etc/mysql/debian.cnf"
2571+export PATH=$PATH:/sbin:/usr/sbin:/bin:/usr/bin
2572+MYADMIN="/usr/bin/mysqladmin --defaults-file=/etc/mysql/debian.cnf"
2573 DATADIR=/var/lib/mysql
2574 LOGDIR=/var/log/mysql
2575 UPGRADEDIR=/var/lib/mysql-upgrade
2576@@ -24,13 +22,13 @@
2577 # do it himself. No database directories should be removed while the server
2578 # is running! Another mysqld in e.g. a different chroot is fine for us.
2579 stop_server() {
2580- if [ ! -x /etc/init.d/percona-server ]; then return; fi
2581+ if [ ! -x /etc/init.d/mysql ]; then return; fi
2582
2583 set +e
2584 if [ -x /usr/sbin/invoke-rc.d ]; then
2585- cmd="invoke-rc.d percona-server stop"
2586+ cmd="invoke-rc.d mysql stop"
2587 else
2588- cmd="/etc/init.d/percona-server stop"
2589+ cmd="/etc/init.d/mysql stop"
2590 fi
2591 $cmd
2592 errno=$?
2593@@ -50,22 +48,18 @@
2594
2595 this_version=5.6
2596
2597-# Check kernel version
2598-if dpkg --compare-versions `uname -r` lt 2.6; then
2599- /bin/echo -e "\nPROBLEM: MySQL-5.x is currently incompatible with kernel 2.4. Aborting.";
2600- /bin/echo -e "See http://bugs.debian.org/416841 for more information.\n"
2601- exit 1
2602-fi
2603-
2604 # Abort if an NDB cluster is in use.
2605-if test -d /etc/mysql/ && egrep -q -r '^[^#]*ndb.connectstring' /etc/mysql/; then
2606- db_fset percona-server-server/no_upgrade_when_using_ndb seen false || true
2607- db_input high percona-server-server/no_upgrade_when_using_ndb || true
2608+if egrep -qi -r '^[^#]*ndb.connectstring|^[[:space:]]*\[[[:space:]]*ndb_mgmd' /etc/mysql/; then
2609+ db_fset percona-xtradb-cluster-server/no_upgrade_when_using_ndb seen false || true
2610+ db_input high percona-xtradb-cluster-server/no_upgrade_when_using_ndb || true
2611 db_go
2612 db_stop
2613 exit 1
2614 fi
2615
2616+# Abort if skip-bdb option is enabled, required for 5.0 -> 5.1 upgrades.
2617+#TODO
2618+
2619 # Safe the user from stupidities.
2620 show_downgrade_warning=0
2621 for i in `ls $DATADIR/debian-*.flag 2>/dev/null`; do
2622@@ -76,10 +70,10 @@
2623 fi
2624 done
2625 if [ "$show_downgrade_warning" = 1 ]; then
2626- db_fset percona-server-server-$this_version/really_downgrade seen false || true
2627- db_input medium percona-server-server-$this_version/really_downgrade || true
2628+ db_fset percona-xtradb-cluster-server-$this_version/really_downgrade seen false || true
2629+ db_input medium percona-xtradb-cluster-server-$this_version/really_downgrade || true
2630 db_go
2631- db_get percona-server-server-$this_version/really_downgrade || true
2632+ db_get percona-xtradb-cluster-server-$this_version/really_downgrade || true
2633 if [ "$RET" = "true" ]; then
2634 rm -f $DATADIR/debian-*.flag
2635 touch $DATADIR/debian-$this_version.flag
2636@@ -104,7 +98,7 @@
2637
2638 #
2639 # Now we have to ensure the following state:
2640-# /etc/passwd: mysql:x:100:101:MySQL Server:/var/lib/mysql:/bin/false
2641+# /etc/passwd: mysql:x:100:101:MySQL Server:/nonexistent:/bin/false
2642 # /etc/group: mysql:x:101:
2643 #
2644 # Sadly there could any state be present on the system so we have to
2645@@ -125,7 +119,8 @@
2646 --system \
2647 --disabled-login \
2648 --ingroup mysql \
2649- --home $DATADIR \
2650+ --no-create-home \
2651+ --home /nonexistent \
2652 --gecos "MySQL Server" \
2653 --shell /bin/false \
2654 mysql >/dev/null
2655@@ -169,15 +164,15 @@
2656 | xargs -0 --no-run-if-empty chgrp mysql
2657 set -e
2658
2659-# Some files below /etc/ were possibly in the percona-server-server-5.0/etch package
2660+# Some files below /etc/ were possibly in the percona-xtradb-cluster-server-5.0/etch package
2661 # before. They get overwritten by current ones to avoid unnecessary dpkg questions.
2662 while read md5 file; do
2663 if [ "`md5sum $file 2>/dev/null`" = "$md5 $file" ]; then
2664- cp /usr/share/percona-server-common/internal-use-only/`echo $file | sed 's°/°_°g'` $file
2665+ cp /usr/share/percona-xtradb-cluster-common/internal-use-only/`echo $file | sed 's°/°_°g'` $file
2666 fi
2667 done <<EOT
2668 6691f2fdc5c6d27ff0260eb79813e1bc /etc/init.d/mysql
2669-b53b9552d44661361d39157c3c7c51d3 /etc/logrotate.d/percona-server-server
2670+b53b9552d44661361d39157c3c7c51d3 /etc/logrotate.d/percona-xtradb-cluster-server
2671 57f3e58f72582ca55100dc1ba0f1a8ae /etc/mysql/debian-start
2672 EOT
2673
2674
2675=== modified file 'build-ps/debian/percona-xtradb-cluster-server-5.6.templates'
2676--- build/debian/percona-xtradb-cluster-server-5.6.templates 2013-11-06 14:12:57 +0000
2677+++ build-ps/debian/percona-xtradb-cluster-server-5.6.templates 2014-05-21 18:59:03 +0000
2678@@ -7,19 +7,19 @@
2679 # Even minor modifications require translation updates and such
2680 # changes should be coordinated with translators and reviewers.
2681
2682-Template: percona-server-server-5.6/really_downgrade
2683+Template: percona-xtradb-cluster-server-5.6/really_downgrade
2684 Type: boolean
2685 Default: false
2686 _Description: Really proceed with downgrade?
2687 A file named /var/lib/mysql/debian-*.flag exists on this system.
2688 .
2689- Such file is an indication that a percona-server-server package with a higher
2690+ Such file is an indication that a percona-xtradb-cluster-server package with a higher
2691 version has been installed earlier.
2692 .
2693 There is no guarantee that the version you're currently installing
2694 will be able to use the current databases.
2695
2696-Template: percona-server-server-5.6/nis_warning
2697+Template: percona-xtradb-cluster-server-5.6/nis_warning
2698 Type: note
2699 #flag:translate!:3,5
2700 _Description: Important note for NIS/YP users
2701@@ -34,7 +34,7 @@
2702 .
2703 /var/lib/mysql: drwxr-xr-x mysql mysql
2704
2705-Template: percona-server-server-5.6/postrm_remove_databases
2706+Template: percona-xtradb-cluster-server-5.6/postrm_remove_databases
2707 Type: boolean
2708 Default: false
2709 _Description: Remove all Percona Server databases?
2710@@ -43,17 +43,17 @@
2711 to be removed.
2712 .
2713 If you're removing the Percona Server package in order to later install a more
2714- recent version or if a different percona-server-server package is already
2715+ recent version or if a different percona-xtradb-cluster-server package is already
2716 using it, the data should be kept.
2717
2718-Template: percona-server-server-5.6/start_on_boot
2719+Template: percona-xtradb-cluster-server-5.6/start_on_boot
2720 Type: boolean
2721 Default: true
2722 _Description: Start the Percona Server daemon on boot?
2723 The Percona Server daemon can be launched automatically at boot time or
2724 manually with the '/etc/init.d/mysql start' command.
2725
2726-Template: percona-server-server/root_password
2727+Template: percona-xtradb-cluster-server/root_password
2728 Type: password
2729 _Description: New password for the Percona Server "root" user:
2730 While not mandatory, it is highly recommended that you set a password
2731@@ -61,11 +61,11 @@
2732 .
2733 If that field is left blank, the password will not be changed.
2734
2735-Template: percona-server-server/root_password_again
2736+Template: percona-xtradb-cluster-server/root_password_again
2737 Type: password
2738 _Description: Repeat password for the Percona Server "root" user:
2739
2740-Template: percona-server-server/error_setting_password
2741+Template: percona-xtradb-cluster-server/error_setting_password
2742 Type: error
2743 _Description: Unable to set password for the Percona Server "root" user
2744 An error occurred while setting the password for the Percona Server
2745@@ -75,17 +75,17 @@
2746 .
2747 You should check the account's password after the package installation.
2748 .
2749- Please read the /usr/share/doc/percona-server-server-5.6/README.Debian file
2750+ Please read the /usr/share/doc/percona-xtradb-cluster-server-5.6/README.Debian file
2751 for more information.
2752
2753-Template: percona-server-server/password_mismatch
2754+Template: percona-xtradb-cluster-server/password_mismatch
2755 Type: error
2756 _Description: Password input error
2757 The two passwords you entered were not the same. Please try again.
2758
2759-Template: percona-server-server/no_upgrade_when_using_ndb
2760+Template: percona-xtradb-cluster-server/no_upgrade_when_using_ndb
2761 Type: error
2762 _Description: NDB Cluster seems to be in use
2763- Percona-Server-5.6 has orphaned NDB Cluster support. Please migrate to the
2764+ percona-xtradb-cluster-5.6 has orphaned NDB Cluster support. Please migrate to the
2765 new mysql-cluster package and remove all lines starting with "ndb" from
2766 all config files below /etc/mysql/.
2767
2768=== added file 'build-ps/debian/percona-xtradb-cluster-source-5.6.files'
2769--- build-ps/debian/percona-xtradb-cluster-source-5.6.files 1970-01-01 00:00:00 +0000
2770+++ build-ps/debian/percona-xtradb-cluster-source-5.6.files 2014-05-21 18:59:03 +0000
2771@@ -0,0 +1,1 @@
2772+usr/src/percona-xtradb-cluster/
2773
2774=== renamed file 'build/debian/percona-xtradb-cluster-test-5.6.install' => 'build-ps/debian/percona-xtradb-cluster-test-5.6.files'
2775--- build/debian/percona-xtradb-cluster-test-5.6.install 2013-11-06 14:12:57 +0000
2776+++ build-ps/debian/percona-xtradb-cluster-test-5.6.files 2014-05-21 18:59:03 +0000
2777@@ -1,2 +1,2 @@
2778-usr/share/sql-bench
2779 usr/share/mysql-test
2780+usr/lib/percona-xtradb-cluster-testsuite
2781
2782=== added file 'build-ps/debian/percona-xtradb-cluster-test-5.6.lintian-overrides'
2783--- build-ps/debian/percona-xtradb-cluster-test-5.6.lintian-overrides 1970-01-01 00:00:00 +0000
2784+++ build-ps/debian/percona-xtradb-cluster-test-5.6.lintian-overrides 2014-05-21 18:59:03 +0000
2785@@ -0,0 +1,3 @@
2786+arch-dependent-file-in-usr-share usr/share/mysql-test/lib/My/SafeProcess/my_safe_process
2787+
2788+
2789
2790=== added file 'build-ps/debian/po/POTFILES.in'
2791--- build-ps/debian/po/POTFILES.in 1970-01-01 00:00:00 +0000
2792+++ build-ps/debian/po/POTFILES.in 2014-05-21 18:59:03 +0000
2793@@ -0,0 +1,1 @@
2794+[type: gettext/rfc822deb] percona-xtradb-cluster-server-5.6.templates
2795
2796=== added file 'build-ps/debian/po/ar.po'
2797--- build-ps/debian/po/ar.po 1970-01-01 00:00:00 +0000
2798+++ build-ps/debian/po/ar.po 2014-05-21 18:59:03 +0000
2799@@ -0,0 +1,252 @@
2800+# translation of templates.po to Arabic
2801+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2802+# This file is distributed under the same license as the PACKAGE package.
2803+#
2804+# Ossama M. Khayat <okhayat@yahoo.com>, 2007.
2805+msgid ""
2806+msgstr ""
2807+"Project-Id-Version: templates\n"
2808+"Report-Msgid-Bugs-To: percona-server-5.6@packages.debian.org\n"
2809+"POT-Creation-Date: 2011-11-08 11:42-0800\n"
2810+"PO-Revision-Date: 2007-05-01 13:04+0300\n"
2811+"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
2812+"Language-Team: Arabic <support@arabeyes.org>\n"
2813+"Language: ar\n"
2814+"MIME-Version: 1.0\n"
2815+"Content-Type: text/plain; charset=UTF-8\n"
2816+"Content-Transfer-Encoding: 8bit\n"
2817+"X-Generator: KBabel 1.11.4\n"
2818+"Plural-Forms: nplurals=6; plural=n==1 ? 0 : n==0 ? 1 : n==2 ? 2: n%100>=3 && "
2819+"n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
2820+": n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
2821+": n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
2822+": n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
2823+": n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
2824+": n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
2825+": n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
2826+
2827+#. Type: boolean
2828+#. Description
2829+#: ../percona-server-5.6.templates:2001
2830+msgid "Really proceed with downgrade?"
2831+msgstr "هل �علاً تريد التثبيط؟"
2832+
2833+#. Type: boolean
2834+#. Description
2835+#: ../percona-server-5.6.templates:2001
2836+msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
2837+msgstr "هناك مل� مسمى /var/lib/mysql/debian-*.flag موجود على هذا النظام."
2838+
2839+#. Type: boolean
2840+#. Description
2841+#: ../percona-server-5.6.templates:2001
2842+#, fuzzy
2843+#| msgid ""
2844+#| "Such file is an indication that a mysql-server package with a higher "
2845+#| "version has been installed earlier."
2846+msgid ""
2847+"Such a file is an indication that a mysql-server package with a higher "
2848+"version has been installed previously."
2849+msgstr ""
2850+"هذا المل� دلالة على أن نسخة أحدث من حزمة mysql-server تم تثبيتها مسبقاً."
2851+
2852+#. Type: boolean
2853+#. Description
2854+#: ../percona-server-5.6.templates:2001
2855+msgid ""
2856+"There is no guarantee that the version you're currently installing will be "
2857+"able to use the current databases."
2858+msgstr ""
2859+"ليست هناك أية ضمانة أن النسخة التي تقوم بتثبيتها ستكون قادرة على استخدام "
2860+"قواعد البيانات الحالية."
2861+
2862+#. Type: note
2863+#. Description
2864+#: ../percona-server-5.6.templates:3001
2865+msgid "Important note for NIS/YP users"
2866+msgstr "ملاحظة هامة لمستخدمي NIS/YP"
2867+
2868+#. Type: note
2869+#. Description
2870+#: ../percona-server-5.6.templates:3001
2871+msgid ""
2872+"Using MySQL under NIS/YP requires a mysql user account to be added on the "
2873+"local system with:"
2874+msgstr ""
2875+
2876+#. Type: note
2877+#. Description
2878+#: ../percona-server-5.6.templates:3001
2879+#, fuzzy
2880+#| msgid ""
2881+#| "You should also check the permissions and the owner of the /var/lib/mysql "
2882+#| "directory:"
2883+msgid ""
2884+"You should also check the permissions and ownership of the /var/lib/mysql "
2885+"directory:"
2886+msgstr "عليك أيضاً أن تقوم بالتأكد من صلاحيات مالك المل� /var/lib/mysql: "
2887+
2888+#. Type: boolean
2889+#. Description
2890+#: ../percona-server-5.6.templates:4001
2891+msgid "Remove all MySQL databases?"
2892+msgstr "إزالة جميع قواعد بيانات MySQL؟"
2893+
2894+#. Type: boolean
2895+#. Description
2896+#: ../percona-server-5.6.templates:4001
2897+msgid ""
2898+"The /var/lib/mysql directory which contains the MySQL databases is about to "
2899+"be removed."
2900+msgstr "الدليل /var/lib/mysql الذي يحتوي قواعد بيانات MySQL ستتم إزالته."
2901+
2902+#. Type: boolean
2903+#. Description
2904+#: ../percona-server-5.6.templates:4001
2905+msgid ""
2906+"If you're removing the MySQL package in order to later install a more recent "
2907+"version or if a different mysql-server package is already using it, the data "
2908+"should be kept."
2909+msgstr ""
2910+"إن كنت تقوم بإزالة حزمة MySQL كي تقوم لاحقاً بتثبيت نسخة أحدث أو إن كانت حزمة "
2911+"mysql-server مختل�ة تستخدمها، �يجب إبقاء البيانات."
2912+
2913+#. Type: boolean
2914+#. Description
2915+#: ../percona-server-5.6.templates:5001
2916+msgid "Start the MySQL server on boot?"
2917+msgstr "تشغيل خادم MySQL عند الإقلاع؟"
2918+
2919+#. Type: boolean
2920+#. Description
2921+#: ../percona-server-5.6.templates:5001
2922+msgid ""
2923+"The MySQL server can be launched automatically at boot time or manually with "
2924+"the '/etc/init.d/mysql start' command."
2925+msgstr ""
2926+"يمكن تشغيل خادم MySQL آلياً وقت الإقلاع أو يدوياً باستخدام الأمر '/etc/init.d/"
2927+"mysql start'."
2928+
2929+#. Type: password
2930+#. Description
2931+#: ../percona-server-5.6.templates:6001
2932+msgid "New password for the MySQL \"root\" user:"
2933+msgstr "كلمة المرور الجديدة لمستخد \"root\" الخاص بـMySQL:"
2934+
2935+#. Type: password
2936+#. Description
2937+#: ../percona-server-5.6.templates:6001
2938+msgid ""
2939+"While not mandatory, it is highly recommended that you set a password for "
2940+"the MySQL administrative \"root\" user."
2941+msgstr ""
2942+"مع أنه ليس إجبارياً، ولكن من المستحسن أن تقوم بتعيين كلمة مرور خاصة بمستخدم "
2943+"MySQL الإداري \"root\"."
2944+
2945+#. Type: password
2946+#. Description
2947+#: ../percona-server-5.6.templates:6001
2948+#, fuzzy
2949+#| msgid "If that field is left blank, the password will not be changed."
2950+msgid "If this field is left blank, the password will not be changed."
2951+msgstr "إن ترك الحقل �ارغاً، �لن يتم تغيير كلمة المرور."
2952+
2953+#. Type: password
2954+#. Description
2955+#: ../percona-server-5.6.templates:7001
2956+#, fuzzy
2957+#| msgid "New password for the MySQL \"root\" user:"
2958+msgid "Repeat password for the MySQL \"root\" user:"
2959+msgstr "كلمة المرور الجديدة لمستخد \"root\" الخاص بـMySQL:"
2960+
2961+#. Type: error
2962+#. Description
2963+#: ../percona-server-5.6.templates:8001
2964+msgid "Unable to set password for the MySQL \"root\" user"
2965+msgstr "تعذر تعيين كلمة مرور للمستخدم \"root\" الخاص بـMySQL."
2966+
2967+#. Type: error
2968+#. Description
2969+#: ../percona-server-5.6.templates:8001
2970+msgid ""
2971+"An error occurred while setting the password for the MySQL administrative "
2972+"user. This may have happened because the account already has a password, or "
2973+"because of a communication problem with the MySQL server."
2974+msgstr ""
2975+"حدث خطأ أثناء تعيين كلمة المرور لمستخدم MySQL الإداري. قد يكون هذا حدث بسبب "
2976+"أن حساب المستخدم له كلمة مرور معيّنة مسبقاً، أو بسبب مشكلة �ي الاتصال مع خادم "
2977+"MySQL."
2978+
2979+#. Type: error
2980+#. Description
2981+#: ../percona-server-5.6.templates:8001
2982+#, fuzzy
2983+#| msgid ""
2984+#| "You should check the account's password after tha package installation."
2985+msgid "You should check the account's password after the package installation."
2986+msgstr "يجب عليك التحقق من كلمة مرور الحساب عقب تثبيت الحزمة."
2987+
2988+#. Type: error
2989+#. Description
2990+#: ../percona-server-5.6.templates:8001
2991+#, fuzzy
2992+#| msgid ""
2993+#| "Please read the /usr/share/doc/percona-server-5.6/README.Debian file for "
2994+#| "more information."
2995+msgid ""
2996+"Please read the /usr/share/doc/percona-server-5.6/README.Debian file for more "
2997+"information."
2998+msgstr ""
2999+"الرجاء قراءة المل� /usr/share/doc/percona-server-5.6/README.Debian للمزيد من "
3000+"المعلومات."
3001+
3002+#. Type: error
3003+#. Description
3004+#: ../percona-server-5.6.templates:9001
3005+msgid "Password input error"
3006+msgstr ""
3007+
3008+#. Type: error
3009+#. Description
3010+#: ../percona-server-5.6.templates:9001
3011+msgid "The two passwords you entered were not the same. Please try again."
3012+msgstr ""
3013+
3014+#. Type: error
3015+#. Description
3016+#: ../percona-server-5.6.templates:10001
3017+msgid "NDB Cluster seems to be in use"
3018+msgstr ""
3019+
3020+#. Type: error
3021+#. Description
3022+#: ../percona-server-5.6.templates:10001
3023+msgid ""
3024+"Percona-Server-5.6 no longer provides NDB Cluster support. Please migrate to the new "
3025+"mysql-cluster-server package and remove all lines starting with \"ndb\" from "
3026+"all config files below /etc/mysql/."
3027+msgstr ""
3028+
3029+#~ msgid ""
3030+#~ "To use MySQL, the following entries for users and groups should be added "
3031+#~ "to the system:"
3032+#~ msgstr ""
3033+#~ "كي تستخدم MySQL، يجب إضا�ة الم�دخلات التالية الخاصة بالمستخدمين والمجموعات "
3034+#~ "إلى النظام:"
3035+
3036+#~ msgid ""
3037+#~ "Support MySQL connections from hosts running Debian \"sarge\" or older?"
3038+#~ msgstr ""
3039+#~ "هل تريد دعم اتصالات MySQL من الأجهزة التي تعمل على ديبيان \"sarge\" أو "
3040+#~ "أقدم؟"
3041+
3042+#~ msgid ""
3043+#~ "In old versions of MySQL clients on Debian, passwords were not stored "
3044+#~ "securely. This has been improved since then, however clients (such as "
3045+#~ "PHP) from hosts running Debian 3.1 Sarge will not be able to connect to "
3046+#~ "recent accounts or accounts whose password have been changed."
3047+#~ msgstr ""
3048+#~ "�ي إصدارات عملاء MySQL القديمة من ديبيان، لم تكن كلمات المرور تح�ظ بشكل "
3049+#~ "آمن. ولقد حل هذه المشكلة بعدها، غير أن العملاء (مثل PHP) المتصلين من "
3050+#~ "أجهزة تعمل على ديبيان Sarge 3.1 لن يكونوا قادرين على الاتصال باستخدام "
3051+#~ "الحسابات الحديثة أو الحسابات التي تم تغيير كلمة مرورها."
3052
3053=== added file 'build-ps/debian/po/ca.po'
3054--- build-ps/debian/po/ca.po 1970-01-01 00:00:00 +0000
3055+++ build-ps/debian/po/ca.po 2014-05-21 18:59:03 +0000
3056@@ -0,0 +1,227 @@
3057+# mysql-dfsg (debconf) translation to Catalan.
3058+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
3059+# Aleix Badia i Bosch <abadia@ica.es> 2004
3060+#
3061+msgid ""
3062+msgstr ""
3063+"Project-Id-Version: mysql-dfsg-4.1\n"
3064+"Report-Msgid-Bugs-To: percona-server-5.6@packages.debian.org\n"
3065+"POT-Creation-Date: 2011-11-08 11:42-0800\n"
3066+"PO-Revision-Date: 2004-01-31 19:20GMT\n"
3067+"Last-Translator: Aleix Badia i Bosch <abadia@ica.es>\n"
3068+"Language-Team: Debian L10n Catalan <debian-l10n-catalan@lists.debian.org>\n"
3069+"Language: \n"
3070+"MIME-Version: 1.0\n"
3071+"Content-Type: text/plain; charset=ISO-8859-1\n"
3072+"Content-Transfer-Encoding: 8bit\n"
3073+
3074+#. Type: boolean
3075+#. Description
3076+#: ../percona-server-5.6.templates:2001
3077+msgid "Really proceed with downgrade?"
3078+msgstr ""
3079+
3080+#. Type: boolean
3081+#. Description
3082+#: ../percona-server-5.6.templates:2001
3083+msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
3084+msgstr ""
3085+
3086+#. Type: boolean
3087+#. Description
3088+#: ../percona-server-5.6.templates:2001
3089+msgid ""
3090+"Such a file is an indication that a mysql-server package with a higher "
3091+"version has been installed previously."
3092+msgstr ""
3093+"Aquest fitxer indica que anteriorment s'ha instaŀlat un paquet mysql-server "
3094+"amb una versió posterior."
3095+
3096+#. Type: boolean
3097+#. Description
3098+#: ../percona-server-5.6.templates:2001
3099+msgid ""
3100+"There is no guarantee that the version you're currently installing will be "
3101+"able to use the current databases."
3102+msgstr ""
3103+"No hi ha cap garantia que la versió que esteu instaŀlant actualment puga "
3104+"emprar les bases de dades actuals."
3105+
3106+#. Type: note
3107+#. Description
3108+#: ../percona-server-5.6.templates:3001
3109+#, fuzzy
3110+#| msgid "Important note for NIS/YP users!"
3111+msgid "Important note for NIS/YP users"
3112+msgstr "Nota important pels usuaris de NIS/YP"
3113+
3114+#. Type: note
3115+#. Description
3116+#: ../percona-server-5.6.templates:3001
3117+msgid ""
3118+"Using MySQL under NIS/YP requires a mysql user account to be added on the "
3119+"local system with:"
3120+msgstr ""
3121+"Si empreu MySQL sota NIS/YP, heu d'afegir un compte d'usuari mysql al "
3122+"sistema local amb:"
3123+
3124+#. Type: note
3125+#. Description
3126+#: ../percona-server-5.6.templates:3001
3127+msgid ""
3128+"You should also check the permissions and ownership of the /var/lib/mysql "
3129+"directory:"
3130+msgstr ""
3131+"També hauríeu de comprovar els permisos i propietaris del directori /var/"
3132+"lib/mysql:"
3133+
3134+#. Type: boolean
3135+#. Description
3136+#: ../percona-server-5.6.templates:4001
3137+msgid "Remove all MySQL databases?"
3138+msgstr ""
3139+
3140+#. Type: boolean
3141+#. Description
3142+#: ../percona-server-5.6.templates:4001
3143+msgid ""
3144+"The /var/lib/mysql directory which contains the MySQL databases is about to "
3145+"be removed."
3146+msgstr ""
3147+"El directori /var/lib/mysql que conté les bases de dades de MySQL està a "
3148+"punt deser suprimit."
3149+
3150+#. Type: boolean
3151+#. Description
3152+#: ../percona-server-5.6.templates:4001
3153+msgid ""
3154+"If you're removing the MySQL package in order to later install a more recent "
3155+"version or if a different mysql-server package is already using it, the data "
3156+"should be kept."
3157+msgstr ""
3158+"Si esteu suprimint el paquet MySQL per a posteriorment instaŀlar una versió "
3159+"més recent, o si un paquet mysql-server diferent ja l'està emprant, les "
3160+"dades s'haurien de mantenir."
3161+
3162+#. Type: boolean
3163+#. Description
3164+#: ../percona-server-5.6.templates:5001
3165+#, fuzzy
3166+#| msgid "Should MySQL start on boot?"
3167+msgid "Start the MySQL server on boot?"
3168+msgstr "Voleu que el MySQL s'iniciï a l'arrencada ?"
3169+
3170+#. Type: boolean
3171+#. Description
3172+#: ../percona-server-5.6.templates:5001
3173+#, fuzzy
3174+msgid ""
3175+"The MySQL server can be launched automatically at boot time or manually with "
3176+"the '/etc/init.d/mysql start' command."
3177+msgstr ""
3178+"El MySQL es pot executar automàticament a l'arrencada o manualment amb "
3179+"l'ordre «/etc/init.d/mysql start»."
3180+
3181+#. Type: password
3182+#. Description
3183+#: ../percona-server-5.6.templates:6001
3184+msgid "New password for the MySQL \"root\" user:"
3185+msgstr ""
3186+
3187+#. Type: password
3188+#. Description
3189+#: ../percona-server-5.6.templates:6001
3190+msgid ""
3191+"While not mandatory, it is highly recommended that you set a password for "
3192+"the MySQL administrative \"root\" user."
3193+msgstr ""
3194+"Tot i que no és requerida, és molt recomanable que establiu una "
3195+"contrasenya per a «root», l'usuari administratiu del MySQL."
3196+
3197+#. Type: password
3198+#. Description
3199+#: ../percona-server-5.6.templates:6001
3200+msgid "If this field is left blank, the password will not be changed."
3201+msgstr ""
3202+
3203+#. Type: password
3204+#. Description
3205+#: ../percona-server-5.6.templates:7001
3206+msgid "Repeat password for the MySQL \"root\" user:"
3207+msgstr ""
3208+
3209+#. Type: error
3210+#. Description
3211+#: ../percona-server-5.6.templates:8001
3212+msgid "Unable to set password for the MySQL \"root\" user"
3213+msgstr ""
3214+
3215+#. Type: error
3216+#. Description
3217+#: ../percona-server-5.6.templates:8001
3218+msgid ""
3219+"An error occurred while setting the password for the MySQL administrative "
3220+"user. This may have happened because the account already has a password, or "
3221+"because of a communication problem with the MySQL server."
3222+msgstr ""
3223+"S'ha produït un error en establir la contrasenya de l'usuari administratiu "
3224+"del MySQL. Això pot haver passat perquè el compte ja té una una "
3225+"contrasenya, o per un problema de comunicació amb el servidor de MySQL."
3226+
3227+#. Type: error
3228+#. Description
3229+#: ../percona-server-5.6.templates:8001
3230+msgid "You should check the account's password after the package installation."
3231+msgstr ""
3232+"Hauríeu de comprovar la contrasenya del compte després de la instaŀlació "
3233+"del paquet."
3234+
3235+#. Type: error
3236+#. Description
3237+#: ../percona-server-5.6.templates:8001
3238+#, fuzzy
3239+#| msgid ""
3240+#| "Please read the /usr/share/doc/mysql-server-5.1/README.Debian file for "
3241+#| "more information."
3242+msgid ""
3243+"Please read the /usr/share/doc/percona-server-5.6/README.Debian file for more "
3244+"information."
3245+msgstr ""
3246+"Llegiu el fitxer /usr/share/doc/mysql-server-5.1/README.Debian per a obtenir "
3247+"més informació."
3248+
3249+#. Type: error
3250+#. Description
3251+#: ../percona-server-5.6.templates:9001
3252+msgid "Password input error"
3253+msgstr ""
3254+
3255+#. Type: error
3256+#. Description
3257+#: ../percona-server-5.6.templates:9001
3258+msgid "The two passwords you entered were not the same. Please try again."
3259+msgstr ""
3260+"Les dos contrasenyes que heu introduït no són la mateixa. Proveu-ho de nou."
3261+
3262+#. Type: error
3263+#. Description
3264+#: ../percona-server-5.6.templates:10001
3265+msgid "NDB Cluster seems to be in use"
3266+msgstr ""
3267+
3268+#. Type: error
3269+#. Description
3270+#: ../percona-server-5.6.templates:10001
3271+msgid ""
3272+"Percona-Server-5.6 no longer provides NDB Cluster support. Please migrate to the new "
3273+"mysql-cluster-server package and remove all lines starting with \"ndb\" from "
3274+"all config files below /etc/mysql/."
3275+msgstr ""
3276+
3277+#~ msgid ""
3278+#~ "MySQL-5.1 no longer provides NDB Cluster support. Please migrate to the "
3279+#~ "new "
3280+#~ msgstr ""
3281+#~ "El MySQL-5.1 ja no implementa el clúster NDB. Migreu al nou paquet mysql-"
3282+#~ "cluster i suprimiu totes les línies que comencen per «ndb» de tots els "
3283+#~ "fitxers de configuració sota /etc/mysql/."
3284
3285=== added file 'build-ps/debian/po/cs.po'
3286--- build-ps/debian/po/cs.po 1970-01-01 00:00:00 +0000
3287+++ build-ps/debian/po/cs.po 2014-05-21 18:59:03 +0000
3288@@ -0,0 +1,346 @@
3289+#
3290+# Translators, if you are not familiar with the PO format, gettext
3291+# documentation is worth reading, especially sections dedicated to
3292+# this format, e.g. by running:
3293+# info -n '(gettext)PO Files'
3294+# info -n '(gettext)Header Entry'
3295+#
3296+# Some information specific to po-debconf are available at
3297+# /usr/share/doc/po-debconf/README-trans
3298+# or http://www.debian.org/intl/l10n/po-debconf/README-trans
3299+#
3300+# Developers do not need to manually edit POT or PO files.
3301+#
3302+msgid ""
3303+msgstr ""
3304+"Project-Id-Version: mysql-dfsg-5.5\n"
3305+"Report-Msgid-Bugs-To: percona-server-5.6@packages.debian.org\n"
3306+"POT-Creation-Date: 2011-11-08 11:42-0800\n"
3307+"PO-Revision-Date: 2007-05-01 13:01+0200\n"
3308+"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
3309+"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
3310+"Language: cs\n"
3311+"MIME-Version: 1.0\n"
3312+"Content-Type: text/plain; charset=UTF-8\n"
3313+"Content-Transfer-Encoding: 8bit\n"
3314+
3315+#. Type: boolean
3316+#. Description
3317+#: ../percona-server-5.6.templates:2001
3318+msgid "Really proceed with downgrade?"
3319+msgstr "Opravdu pokra�ovat v degradaci?"
3320+
3321+#. Type: boolean
3322+#. Description
3323+#: ../percona-server-5.6.templates:2001
3324+msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
3325+msgstr "V systému existuje soubor /var/lib/mysql/debian-*.flag."
3326+
3327+#. Type: boolean
3328+#. Description
3329+#: ../percona-server-5.6.templates:2001
3330+#, fuzzy
3331+#| msgid ""
3332+#| "Such file is an indication that a mysql-server package with a higher "
3333+#| "version has been installed earlier."
3334+msgid ""
3335+"Such a file is an indication that a mysql-server package with a higher "
3336+"version has been installed previously."
3337+msgstr "To znamená, že již byl nainstalován balík mysql-server s vyšší verzí."
3338+
3339+#. Type: boolean
3340+#. Description
3341+#: ../percona-server-5.6.templates:2001
3342+msgid ""
3343+"There is no guarantee that the version you're currently installing will be "
3344+"able to use the current databases."
3345+msgstr ""
3346+"Neexistuje žádná záruka, že momentálně instalovaná verze bude umět pracovat "
3347+"se stávajícími databázemi."
3348+
3349+#. Type: note
3350+#. Description
3351+#: ../percona-server-5.6.templates:3001
3352+msgid "Important note for NIS/YP users"
3353+msgstr "Důležitá poznámka pro uživatele NIS/YP"
3354+
3355+#. Type: note
3356+#. Description
3357+#: ../percona-server-5.6.templates:3001
3358+msgid ""
3359+"Using MySQL under NIS/YP requires a mysql user account to be added on the "
3360+"local system with:"
3361+msgstr ""
3362+
3363+#. Type: note
3364+#. Description
3365+#: ../percona-server-5.6.templates:3001
3366+#, fuzzy
3367+#| msgid ""
3368+#| "You should also check the permissions and the owner of the /var/lib/mysql "
3369+#| "directory:"
3370+msgid ""
3371+"You should also check the permissions and ownership of the /var/lib/mysql "
3372+"directory:"
3373+msgstr ""
3374+"Také byste měli zkontrolovat vlastníka a oprávnění adresáře /var/lib/mysql:"
3375+
3376+#. Type: boolean
3377+#. Description
3378+#: ../percona-server-5.6.templates:4001
3379+msgid "Remove all MySQL databases?"
3380+msgstr "Odstranit všechny MySQL databáze?"
3381+
3382+#. Type: boolean
3383+#. Description
3384+#: ../percona-server-5.6.templates:4001
3385+msgid ""
3386+"The /var/lib/mysql directory which contains the MySQL databases is about to "
3387+"be removed."
3388+msgstr ""
3389+"Adresář /var/lib/mysql, ve kterém se nachází MySQL databáze, bude odstraněn."
3390+
3391+#. Type: boolean
3392+#. Description
3393+#: ../percona-server-5.6.templates:4001
3394+msgid ""
3395+"If you're removing the MySQL package in order to later install a more recent "
3396+"version or if a different mysql-server package is already using it, the data "
3397+"should be kept."
3398+msgstr ""
3399+"Jestliže odstraňujete balík MySQL za ú�elem instalace novější verze MySQL, "
3400+"nebo pokud tato data souběžně využívá jiný balík mysql-server, měli byste "
3401+"data ponechat."
3402+
3403+#. Type: boolean
3404+#. Description
3405+#: ../percona-server-5.6.templates:5001
3406+msgid "Start the MySQL server on boot?"
3407+msgstr "Spustit MySQL server při startu systému?"
3408+
3409+#. Type: boolean
3410+#. Description
3411+#: ../percona-server-5.6.templates:5001
3412+msgid ""
3413+"The MySQL server can be launched automatically at boot time or manually with "
3414+"the '/etc/init.d/mysql start' command."
3415+msgstr ""
3416+"MySQL se může spouštět automaticky při startu systému, nebo ru�ně příkazem '/"
3417+"etc/init.d/mysql start'."
3418+
3419+#. Type: password
3420+#. Description
3421+#: ../percona-server-5.6.templates:6001
3422+msgid "New password for the MySQL \"root\" user:"
3423+msgstr "Nové heslo MySQL uživatele \"root\":"
3424+
3425+#. Type: password
3426+#. Description
3427+#: ../percona-server-5.6.templates:6001
3428+msgid ""
3429+"While not mandatory, it is highly recommended that you set a password for "
3430+"the MySQL administrative \"root\" user."
3431+msgstr ""
3432+"Přestože to není nezbytné, je silně doporu�eno nastavit heslo u "
3433+"správcovského MySQL ú�tu \"root\"."
3434+
3435+#. Type: password
3436+#. Description
3437+#: ../percona-server-5.6.templates:6001
3438+#, fuzzy
3439+#| msgid "If that field is left blank, the password will not be changed."
3440+msgid "If this field is left blank, the password will not be changed."
3441+msgstr "Ponecháte-li pole prázdné, heslo se nezmění."
3442+
3443+#. Type: password
3444+#. Description
3445+#: ../percona-server-5.6.templates:7001
3446+#, fuzzy
3447+#| msgid "New password for the MySQL \"root\" user:"
3448+msgid "Repeat password for the MySQL \"root\" user:"
3449+msgstr "Nové heslo MySQL uživatele \"root\":"
3450+
3451+#. Type: error
3452+#. Description
3453+#: ../percona-server-5.6.templates:8001
3454+msgid "Unable to set password for the MySQL \"root\" user"
3455+msgstr "Nelze nastavit heslo MySQL uživatele \"root\""
3456+
3457+#. Type: error
3458+#. Description
3459+#: ../percona-server-5.6.templates:8001
3460+msgid ""
3461+"An error occurred while setting the password for the MySQL administrative "
3462+"user. This may have happened because the account already has a password, or "
3463+"because of a communication problem with the MySQL server."
3464+msgstr ""
3465+"Během nastavování hesla pro správcovského uživatele MySQL se vyskytla chyba. "
3466+"To se mohlo stát třeba proto, protože uživatel již měl heslo nastaveno, nebo "
3467+"protože nastal problém v komunikaci s MySQL serverem."
3468+
3469+#. Type: error
3470+#. Description
3471+#: ../percona-server-5.6.templates:8001
3472+#, fuzzy
3473+#| msgid ""
3474+#| "You should check the account's password after tha package installation."
3475+msgid "You should check the account's password after the package installation."
3476+msgstr "Po instalaci balíku byste měli heslo ověřit."
3477+
3478+#. Type: error
3479+#. Description
3480+#: ../percona-server-5.6.templates:8001
3481+#, fuzzy
3482+#| msgid ""
3483+#| "Please read the /usr/share/doc/percona-server-5.6/README.Debian file for "
3484+#| "more information."
3485+msgid ""
3486+"Please read the /usr/share/doc/percona-server-5.6/README.Debian file for more "
3487+"information."
3488+msgstr ""
3489+"Více informací naleznete v /usr/share/doc/percona-server-5.6/README.Debian."
3490+
3491+#. Type: error
3492+#. Description
3493+#: ../percona-server-5.6.templates:9001
3494+msgid "Password input error"
3495+msgstr ""
3496+
3497+#. Type: error
3498+#. Description
3499+#: ../percona-server-5.6.templates:9001
3500+msgid "The two passwords you entered were not the same. Please try again."
3501+msgstr ""
3502+
3503+#. Type: error
3504+#. Description
3505+#: ../percona-server-5.6.templates:10001
3506+msgid "NDB Cluster seems to be in use"
3507+msgstr ""
3508+
3509+#. Type: error
3510+#. Description
3511+#: ../percona-server-5.6.templates:10001
3512+msgid ""
3513+"Percona-Server-5.6 no longer provides NDB Cluster support. Please migrate to the new "
3514+"mysql-cluster-server package and remove all lines starting with \"ndb\" from "
3515+"all config files below /etc/mysql/."
3516+msgstr ""
3517+
3518+#~ msgid ""
3519+#~ "To use MySQL, the following entries for users and groups should be added "
3520+#~ "to the system:"
3521+#~ msgstr ""
3522+#~ "Abyste mohli MySQL používat, musíte v systému založit následující "
3523+#~ "uživatele a skupiny:"
3524+
3525+#~ msgid "Cannot upgrade if ISAM tables are present!"
3526+#~ msgstr "Aktualizace nelze provést pokud jsou přítomny tabulky ISAM!"
3527+
3528+#~ msgid ""
3529+#~ "Recent versions of MySQL can no longer use the old ISAM table format and "
3530+#~ "it is necessary to convert your tables to e.g. MyISAM before upgrading by "
3531+#~ "using \"mysql_convert_table_format\" or \"ALTER TABLE x ENGINE=MyISAM\". "
3532+#~ "The installation of percona-server-5.6 will now abort. In case your old "
3533+#~ "mysql-server-4.1 gets removed nevertheless just reinstall it to convert "
3534+#~ "those tables."
3535+#~ msgstr ""
3536+#~ "Poslední verze MySQL již nemohou používat starý formát tabulek ISAM a "
3537+#~ "před aktualizací je nutné převést tyto tabulky např. do formátu MyISAM "
3538+#~ "pomocí \"mysql_convert_table_format\" nebo \"ALTER TABLE x ENGINE=MyISAM"
3539+#~ "\". Instalace percona-server-5.6 se nyní přeruší. V případě, že se mezitím "
3540+#~ "odinstaloval původní mysql-server-4.1, jednoduše jej znovu nainstalujte a "
3541+#~ "tabulky převe�te."
3542+
3543+#~ msgid ""
3544+#~ "Support MySQL connections from hosts running Debian \"sarge\" or older?"
3545+#~ msgstr ""
3546+#~ "Podporovat MySQL připojení z po�íta�ů používajících Debian Sarge nebo "
3547+#~ "starší?"
3548+
3549+#~ msgid ""
3550+#~ "In old versions of MySQL clients on Debian, passwords were not stored "
3551+#~ "securely. This has been improved since then, however clients (such as "
3552+#~ "PHP) from hosts running Debian 3.1 Sarge will not be able to connect to "
3553+#~ "recent accounts or accounts whose password have been changed."
3554+#~ msgstr ""
3555+#~ "Způsob, jakým se dříve ukládala hesla, nebyl příliš bezpe�ný. To se nyní "
3556+#~ "zlepšilo, ale nevýhodou je, že se klienti z Debianu 3.1 Sarge (např. PHP) "
3557+#~ "nebudou moci připojit na nové ú�ty, nebo na ú�ty, u nichž se heslo "
3558+#~ "změnilo."
3559+
3560+#~ msgid ""
3561+#~ "To use mysql you must install an equivalent user and group to the "
3562+#~ "following and ensure yourself that /var/lib/mysql has the right "
3563+#~ "permissions (the uid/gid may be different)."
3564+#~ msgstr ""
3565+#~ "Abyste mohli mysql používat, musíte do následujících souborů přidat "
3566+#~ "ekvivalentního uživatele a skupinu a zajistit, že /var/lib/mysql má "
3567+#~ "správná práva (uid/gid se mohou lišit)."
3568+
3569+#~ msgid "Remove the databases used by all MySQL versions?"
3570+#~ msgstr "Odstranit databáze používané všemi verzemi MySQL?"
3571+
3572+#~ msgid ""
3573+#~ "If you do not provide a password no changes will be made to the account."
3574+#~ msgstr "Nezadáte-li heslo, žádné změny se s ú�tem neprovedou."
3575+
3576+#~ msgid ""
3577+#~ "When installation finishes, you should verify that the account is "
3578+#~ "properly protected with a password (see README.Debian for more "
3579+#~ "information)."
3580+#~ msgstr ""
3581+#~ "Po skon�ení instalace byste měli ověřit, že je ú�et chráněn heslem (více "
3582+#~ "informací naleznete v souboru README.Debian)."
3583+
3584+#~ msgid "Update Hints"
3585+#~ msgstr "Poznámky k aktualizaci"
3586+
3587+#~ msgid ""
3588+#~ "You have to run \"mysql_upgrade\" after the upgrade, else tables can be "
3589+#~ "corrupted! This script also enhances the privilege tables but is not "
3590+#~ "supposed to give any user more rights that he had before,"
3591+#~ msgstr ""
3592+#~ "Po aktualizaci ještě musíte spustit \"mysql_upgrade\", protože jinak by "
3593+#~ "se tabulky mohly narušit! Tento skript také rozšiřuje tabulky privilegií, "
3594+#~ "ovšem neměl by uživatelům přidat více práv, než měli dosud."
3595+
3596+#~ msgid "Please also read http://www.mysql.com/doc/en/Upgrade.html"
3597+#~ msgstr "Také si pře�těte http://www.mysql.com/doc/en/Upgrade.html"
3598+
3599+#~ msgid ""
3600+#~ "MySQL will only install if you have a non-numeric hostname that is "
3601+#~ "resolvable via the /etc/hosts file. E.g. if the \"hostname\" command "
3602+#~ "returns \"myhostname\" then there must be a line like \"10.0.0.1 "
3603+#~ "myhostname\"."
3604+#~ msgstr ""
3605+#~ "MySQL se nainstaluje pouze v případě, že používáte nenumerické jméno "
3606+#~ "po�íta�e, které se dá přeložit přes soubor /etc/hosts. Např. když příkaz "
3607+#~ "\"hostname\" vrátí \"diamond\", tak v /etc/hosts musí existovat obdobný "
3608+#~ "řádek jako \"10.0.0.1 diamond\"."
3609+
3610+#~ msgid ""
3611+#~ "A new mysql user \"debian-sys-maint\" will be created. This mysql account "
3612+#~ "is used in the start/stop and cron scripts. Don't delete."
3613+#~ msgstr ""
3614+#~ "Bude vytvořen nový mysql uživatel \"debian-sys-maint\". Tento mysql ú�et "
3615+#~ "se používá ve startovacích, ukon�ovacích a cronových skriptech. Nemažte "
3616+#~ "jej."
3617+
3618+#~ msgid ""
3619+#~ "Please remember to set a PASSWORD for the MySQL root user! If you use a /"
3620+#~ "root/.my.cnf, always write the \"user\" and the \"password\" lines in "
3621+#~ "there, never only the password!"
3622+#~ msgstr ""
3623+#~ "Nezapomeňte nastavit heslo pro ú�et administrátora MySQL! Používáte-li /"
3624+#~ "root/.my.cnf, vždy zde zadejte jak řádek \"user\", tak řádek \"password"
3625+#~ "\". Nikdy zde nezadávejte jenom heslo!"
3626+
3627+#~ msgid ""
3628+#~ "Should I remove the complete /var/lib/mysql directory tree which is used "
3629+#~ "by all MySQL versions, not necessarily only the one you are about to "
3630+#~ "purge?"
3631+#~ msgstr ""
3632+#~ "Mám odstranit kompletní adresářový strom /var/lib/mysql, který se používá "
3633+#~ "pro všechny verze MySQL, tedy ne nutně pouze pro verzi, kterou se "
3634+#~ "chystáte vy�istit?"
3635
3636=== added file 'build-ps/debian/po/da.po'
3637--- build-ps/debian/po/da.po 1970-01-01 00:00:00 +0000
3638+++ build-ps/debian/po/da.po 2014-05-21 18:59:03 +0000
3639@@ -0,0 +1,382 @@
3640+#
3641+# Translators, if you are not familiar with the PO format, gettext
3642+# documentation is worth reading, especially sections dedicated to
3643+# this format, e.g. by running:
3644+# info -n '(gettext)PO Files'
3645+# info -n '(gettext)Header Entry'
3646+# Some information specific to po-debconf are available at
3647+# /usr/share/doc/po-debconf/README-trans
3648+# or http://www.debian.org/intl/l10n/po-debconf/README-trans#
3649+# Developers do not need to manually edit POT or PO files.
3650+#
3651+# Claus Hindsgaul <claus_h@image.dk>, 2005, 2006.
3652+# Claus Hindsgaul <claus.hindsgaul@gmail.com>, 2006, 2007.
3653+msgid ""
3654+msgstr ""
3655+"Project-Id-Version: mysql-dfsg-4.1\n"
3656+"Report-Msgid-Bugs-To: percona-server-5.6@packages.debian.org\n"
3657+"POT-Creation-Date: 2011-11-08 11:42-0800\n"
3658+"PO-Revision-Date: 2007-05-30 22:41+0200\n"
3659+"Last-Translator: Claus Hindsgaul <claus.hindsgaul@gmail.com>\n"
3660+"Language-Team: Danish\n"
3661+"Language: \n"
3662+"MIME-Version: 1.0\n"
3663+"Content-Type: text/plain; charset=ISO-8859-1\n"
3664+"Content-Transfer-Encoding: 8bit\n"
3665+"X-Generator: KBabel 1.11.4\n"
3666+
3667+#. Type: boolean
3668+#. Description
3669+#: ../percona-server-5.6.templates:2001
3670+msgid "Really proceed with downgrade?"
3671+msgstr "Ønsker du virkelig at fortsætte nedgraderingen?"
3672+
3673+#. Type: boolean
3674+#. Description
3675+#: ../percona-server-5.6.templates:2001
3676+msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
3677+msgstr ""
3678+"Der er en fil med navnet /var/lib/mysql/debian-*.flag på dette system."
3679+
3680+#. Type: boolean
3681+#. Description
3682+#: ../percona-server-5.6.templates:2001
3683+#, fuzzy
3684+#| msgid ""
3685+#| "Such file is an indication that a mysql-server package with a higher "
3686+#| "version has been installed earlier."
3687+msgid ""
3688+"Such a file is an indication that a mysql-server package with a higher "
3689+"version has been installed previously."
3690+msgstr ""
3691+"Sådan en fil tyder på at der tidligere har været installeret en højere "
3692+"version af mysql-server-pakken."
3693+
3694+#. Type: boolean
3695+#. Description
3696+#: ../percona-server-5.6.templates:2001
3697+msgid ""
3698+"There is no guarantee that the version you're currently installing will be "
3699+"able to use the current databases."
3700+msgstr ""
3701+"Det kan ikke garanteres at den version, du er ved at installere, kan benytte "
3702+"data fra de eksisterende databaser."
3703+
3704+#. Type: note
3705+#. Description
3706+#: ../percona-server-5.6.templates:3001
3707+msgid "Important note for NIS/YP users"
3708+msgstr "Vigtig oplysning til NIS/YP-brugere"
3709+
3710+#. Type: note
3711+#. Description
3712+#: ../percona-server-5.6.templates:3001
3713+msgid ""
3714+"Using MySQL under NIS/YP requires a mysql user account to be added on the "
3715+"local system with:"
3716+msgstr ""
3717+
3718+#. Type: note
3719+#. Description
3720+#: ../percona-server-5.6.templates:3001
3721+#, fuzzy
3722+#| msgid ""
3723+#| "You should also check the permissions and the owner of the /var/lib/mysql "
3724+#| "directory:"
3725+msgid ""
3726+"You should also check the permissions and ownership of the /var/lib/mysql "
3727+"directory:"
3728+msgstr ""
3729+"Du bør også tjekke filrettighederne og ejerskabet af mappen /var/lib/mysql:"
3730+
3731+#. Type: boolean
3732+#. Description
3733+#: ../percona-server-5.6.templates:4001
3734+msgid "Remove all MySQL databases?"
3735+msgstr "Fjern alle MySQL-databaser?"
3736+
3737+#. Type: boolean
3738+#. Description
3739+#: ../percona-server-5.6.templates:4001
3740+msgid ""
3741+"The /var/lib/mysql directory which contains the MySQL databases is about to "
3742+"be removed."
3743+msgstr ""
3744+"Mappen /var/lib/mysql, der indeholder MySQL-databaserne, er ved at blive "
3745+"fjernet."
3746+
3747+#. Type: boolean
3748+#. Description
3749+#: ../percona-server-5.6.templates:4001
3750+msgid ""
3751+"If you're removing the MySQL package in order to later install a more recent "
3752+"version or if a different mysql-server package is already using it, the data "
3753+"should be kept."
3754+msgstr ""
3755+"Hvis du fjerner MySQL-pakken for senere at installere en nyere version, "
3756+"eller hvis en anden mysql-server-pakke allerede benytter den, bør dataene "
3757+"bevares."
3758+
3759+#. Type: boolean
3760+#. Description
3761+#: ../percona-server-5.6.templates:5001
3762+msgid "Start the MySQL server on boot?"
3763+msgstr "Start MySQL-serveren under systemopstart?"
3764+
3765+#. Type: boolean
3766+#. Description
3767+#: ../percona-server-5.6.templates:5001
3768+msgid ""
3769+"The MySQL server can be launched automatically at boot time or manually with "
3770+"the '/etc/init.d/mysql start' command."
3771+msgstr ""
3772+"MySQL-serveren kan enten startes op automatisk under systemopstarten, eller "
3773+"manuelt med kommandoen '/etc/init.d/mysql start'."
3774+
3775+#. Type: password
3776+#. Description
3777+#: ../percona-server-5.6.templates:6001
3778+msgid "New password for the MySQL \"root\" user:"
3779+msgstr "Ny adgangskode for MySQL's \"root\"-bruger:"
3780+
3781+#. Type: password
3782+#. Description
3783+#: ../percona-server-5.6.templates:6001
3784+msgid ""
3785+"While not mandatory, it is highly recommended that you set a password for "
3786+"the MySQL administrative \"root\" user."
3787+msgstr ""
3788+"Selvom det ikke kræves, anbefales det kraftigt, at du sætter en adgangskode "
3789+"for MySQL's administrationsbruger \"root\"."
3790+
3791+#. Type: password
3792+#. Description
3793+#: ../percona-server-5.6.templates:6001
3794+#, fuzzy
3795+#| msgid "If that field is left blank, the password will not be changed."
3796+msgid "If this field is left blank, the password will not be changed."
3797+msgstr "Hvis du lader dette felt stå tomt, vil adgangskoden ikke blive ændret."
3798+
3799+#. Type: password
3800+#. Description
3801+#: ../percona-server-5.6.templates:7001
3802+#, fuzzy
3803+#| msgid "New password for the MySQL \"root\" user:"
3804+msgid "Repeat password for the MySQL \"root\" user:"
3805+msgstr "Ny adgangskode for MySQL's \"root\"-bruger:"
3806+
3807+#. Type: error
3808+#. Description
3809+#: ../percona-server-5.6.templates:8001
3810+msgid "Unable to set password for the MySQL \"root\" user"
3811+msgstr "Kunne ikke sætte adgangskoden for MySQL's \"root\"-bruger"
3812+
3813+#. Type: error
3814+#. Description
3815+#: ../percona-server-5.6.templates:8001
3816+msgid ""
3817+"An error occurred while setting the password for the MySQL administrative "
3818+"user. This may have happened because the account already has a password, or "
3819+"because of a communication problem with the MySQL server."
3820+msgstr ""
3821+"Der opstod en fejl, da adgangskoden for MySQL's administrationsbruger blev "
3822+"forsøgt ændret. Dette kan være sket, fordi brugeren allerede har en "
3823+"adgangskode, eller fordi der var problemer med at kommunikere med MySQL-"
3824+"serveren."
3825+
3826+#. Type: error
3827+#. Description
3828+#: ../percona-server-5.6.templates:8001
3829+msgid "You should check the account's password after the package installation."
3830+msgstr "Du bør tjekke kontoens adgangskode efter pakkeinstallationen."
3831+
3832+#. Type: error
3833+#. Description
3834+#: ../percona-server-5.6.templates:8001
3835+#, fuzzy
3836+#| msgid ""
3837+#| "Please read the /usr/share/doc/percona-server-5.6/README.Debian file for "
3838+#| "more information."
3839+msgid ""
3840+"Please read the /usr/share/doc/percona-server-5.6/README.Debian file for more "
3841+"information."
3842+msgstr ""
3843+"Se filen /usr/share/doc/percona-server-5.6/README.Debian for yderligere "
3844+"oplysninger."
3845+
3846+#. Type: error
3847+#. Description
3848+#: ../percona-server-5.6.templates:9001
3849+msgid "Password input error"
3850+msgstr ""
3851+
3852+#. Type: error
3853+#. Description
3854+#: ../percona-server-5.6.templates:9001
3855+msgid "The two passwords you entered were not the same. Please try again."
3856+msgstr ""
3857+
3858+#. Type: error
3859+#. Description
3860+#: ../percona-server-5.6.templates:10001
3861+msgid "NDB Cluster seems to be in use"
3862+msgstr ""
3863+
3864+#. Type: error
3865+#. Description
3866+#: ../percona-server-5.6.templates:10001
3867+msgid ""
3868+"Percona-Server-5.6 no longer provides NDB Cluster support. Please migrate to the new "
3869+"mysql-cluster-server package and remove all lines starting with \"ndb\" from "
3870+"all config files below /etc/mysql/."
3871+msgstr ""
3872+
3873+#~ msgid ""
3874+#~ "To use MySQL, the following entries for users and groups should be added "
3875+#~ "to the system:"
3876+#~ msgstr ""
3877+#~ "Nedenstående linjer for brugere og grupper skal tilføjes dette system for "
3878+#~ "at benytte MySQL:"
3879+
3880+#~ msgid "Cannot upgrade if ISAM tables are present!"
3881+#~ msgstr "Kan ikke opgradere hvis der er ISAM-tabeller!"
3882+
3883+#~ msgid ""
3884+#~ "Recent versions of MySQL can no longer use the old ISAM table format and "
3885+#~ "it is necessary to convert your tables to e.g. MyISAM before upgrading by "
3886+#~ "using \"mysql_convert_table_format\" or \"ALTER TABLE x ENGINE=MyISAM\". "
3887+#~ "The installation of percona-server-5.6 will now abort. In case your old "
3888+#~ "mysql-server-4.1 gets removed nevertheless just reinstall it to convert "
3889+#~ "those tables."
3890+#~ msgstr ""
3891+#~ "Nyere versioner af MySQL kan ikke længere benytte det gamle ISAM-"
3892+#~ "tabelformat, og det er derfor nødvendigt at konvertere dine tabeller til "
3893+#~ "f.eks. MyISAM forud for opgraderingen med \"mysql_convert_table_format\" "
3894+#~ "eller \"ALTER TABLE x ENGINE=MyISAM\". Installationen af percona-server-5.6 "
3895+#~ "afbrydes nu. Skulle din gamle mysql-server-4.1 alligevel bliver "
3896+#~ "afinstalleret, så geninstallér den blot og konverter tabellerne."
3897+
3898+#~ msgid ""
3899+#~ "Support MySQL connections from hosts running Debian \"sarge\" or older?"
3900+#~ msgstr ""
3901+#~ "Understøt MySQL-forbindelser fra maskiner, der kører Debian \"Sarge\" "
3902+#~ "eller ældre?"
3903+
3904+#~ msgid ""
3905+#~ "In old versions of MySQL clients on Debian, passwords were not stored "
3906+#~ "securely. This has been improved since then, however clients (such as "
3907+#~ "PHP) from hosts running Debian 3.1 Sarge will not be able to connect to "
3908+#~ "recent accounts or accounts whose password have been changed."
3909+#~ msgstr ""
3910+#~ "Gamle udgaver af MySQL-klienter på Debian gemte ikke adgangskoderne "
3911+#~ "sikkert. Dette er blevet forbedret siden da, men klienter (f.eks. PHP) "
3912+#~ "fra maskiner, der kører Debian 3.1 Sarge vil ikke kunne forbinde til "
3913+#~ "nyere konti eller konti, hvis adgangskode er blevet ændret."
3914+
3915+#~ msgid ""
3916+#~ "To use mysql you must install an equivalent user and group to the "
3917+#~ "following and ensure yourself that /var/lib/mysql has the right "
3918+#~ "permissions (the uid/gid may be different)."
3919+#~ msgstr ""
3920+#~ "For at kunne bruge mysql skal du installere en bruger og en gruppe, der "
3921+#~ "svarer til nedenstående, og sikre dig at /var/lib/mysql har de rigtige "
3922+#~ "adgangsrettigheder (uid/gid kan afvige)."
3923+
3924+#~ msgid ""
3925+#~ "/etc/passwd: mysql:x:100:101:MySQL Server:/var/lib/mysql:/bin/false"
3926+#~ msgstr ""
3927+#~ "etc/passwd: mysql:x:100:101:MySQL Server:/var/lib/mysql:/bin/false"
3928+
3929+#~ msgid "/etc/group: mysql:x:101:"
3930+#~ msgstr "/etc/group: mysql:x:101:"
3931+
3932+#~ msgid "/var/lib/mysql: drwxr-xr-x mysql mysql"
3933+#~ msgstr "/var/lib/mysql: drwxr-xr-x mysql mysql"
3934+
3935+#~ msgid "Remove the databases used by all MySQL versions?"
3936+#~ msgstr "Fjern de databaser, der benyttes af samtlige MySQL-versioner?"
3937+
3938+#~ msgid ""
3939+#~ "If you do not provide a password no changes will be made to the account."
3940+#~ msgstr "Hvis du ikke angiver en adgangskode, vil kontoen ikke blive ændret."
3941+
3942+#~ msgid ""
3943+#~ "When installation finishes, you should verify that the account is "
3944+#~ "properly protected with a password (see README.Debian for more "
3945+#~ "information)."
3946+#~ msgstr ""
3947+#~ "Når installationen afsluttes, bør du tjekke at kontoen er ordentligt "
3948+#~ "beskyttet med en adgangskode (se README.Debian for yderligere "
3949+#~ "oplysninger)."
3950+
3951+#~ msgid "Update Hints"
3952+#~ msgstr "Opdateringstips"
3953+
3954+#~ msgid ""
3955+#~ "You have to run \"mysql_upgrade\" after the upgrade, else tables can be "
3956+#~ "corrupted! This script also enhances the privilege tables but is not "
3957+#~ "supposed to give any user more rights that he had before,"
3958+#~ msgstr ""
3959+#~ "Du skal køre \"mysql_upgrade\" efter opgraderingen, da tabellerne eller "
3960+#~ "kan blive ødelagt! Dette script forbedrer også rettighedstabellerne, men "
3961+#~ "burde ikke give nogen bruger flere rettigheder, end han havde tidligere,"
3962+
3963+#~ msgid "Please also read http://www.mysql.com/doc/en/Upgrade.html"
3964+#~ msgstr "Læs også http://www.mysql.com/doc/en/Upgrade.html"
3965+
3966+#~ msgid "Install Hints"
3967+#~ msgstr "Installationstips"
3968+
3969+#~ msgid ""
3970+#~ "On upgrades from MySQL 3.23, as shipped with Debian Woody, symlinks in "
3971+#~ "place of /var/lib/mysql or /var/log/mysql gets accidently removed and "
3972+#~ "have manually be restored."
3973+#~ msgstr ""
3974+#~ "Ved opgraderinger fra MySQL 3.23, der fulgte med Debian Woody, kan de "
3975+#~ "symbolske /var/lib/mysql or /var/log/mysql blive fjernet ved et uheld, og "
3976+#~ "må genskabes manuelt."
3977+
3978+#~ msgid ""
3979+#~ "MySQL will only install if you have a non-numeric hostname that is "
3980+#~ "resolvable via the /etc/hosts file. E.g. if the \"hostname\" command "
3981+#~ "returns \"myhostname\" then there must be a line like \"10.0.0.1 "
3982+#~ "myhostname\"."
3983+#~ msgstr ""
3984+#~ "MySQL vil kun blive installeret, hvis du har et ikke-numerisk værtsnavn, "
3985+#~ "som kan slås op i filen /ets/hosts. Hvis f.eks. kommandoen \"hostname\" "
3986+#~ "svarer med \"mitvaertsnavn\", skal du have en linje a'la \"10.0.0.1 "
3987+#~ "mitvaertsnavn\" i /etc/hosts."
3988+
3989+#~ msgid ""
3990+#~ "A new mysql user \"debian-sys-maint\" will be created. This mysql account "
3991+#~ "is used in the start/stop and cron scripts. Don't delete."
3992+#~ msgstr ""
3993+#~ "Det vil blive oprettet en ny mysql-bruger, \"debian-sys-maint\". Denne "
3994+#~ "mysql-konto bruges i start/stop-cron-scripterne. Slet den ikke."
3995+
3996+#~ msgid ""
3997+#~ "Please remember to set a PASSWORD for the MySQL root user! If you use a /"
3998+#~ "root/.my.cnf, always write the \"user\" and the \"password\" lines in "
3999+#~ "there, never only the password!"
4000+#~ msgstr ""
4001+#~ "Husk at sætte en ADGANGSKODE for MySQLs root-bruger! Hvis du bruger en /"
4002+#~ "etc/.my.cnf, så skriv altid \"user\"- og \"password\"-linjer ind her, "
4003+#~ "ikke kun adgangskoden!"
4004+
4005+#~ msgid ""
4006+#~ "Should I remove the complete /var/lib/mysql directory tree which is used "
4007+#~ "by all MySQL versions, not necessarily only the one you are about to "
4008+#~ "purge?"
4009+#~ msgstr ""
4010+#~ "Skal jeg fjerne hele mappetræet /var/lib/mysql, som benyttes af alle "
4011+#~ "MySQL-versioner, ikke kun den version, du er ved at slette?"
4012+
4013+#~ msgid ""
4014+#~ "Rarely, e.g. on new major versions, the privilege system is improved. To "
4015+#~ "make use of it mysql_fix_privilege_tables must be executed manually. The "
4016+#~ "script is not supposed to give any user more rights that he had before,"
4017+#~ msgstr ""
4018+#~ "En sjælden gang imellem, f.eks. ved nye hovedversioner, sker det at "
4019+#~ "rettighedssystemet forbedres. For at gøre brug af dette, skal "
4020+#~ "mysql_fix_privilege_tables køres manuelt. Scriptet vil ikke give nogen "
4021+#~ "bruger flere rettigheder, end vedkommende havde tidligere,"
4022
4023=== added file 'build-ps/debian/po/de.po'
4024--- build-ps/debian/po/de.po 1970-01-01 00:00:00 +0000
4025+++ build-ps/debian/po/de.po 2014-05-21 18:59:03 +0000
4026@@ -0,0 +1,239 @@
4027+# translation of mysql-dfsg-5.5_5.5.37-1_de.po to Deutsch
4028+#
4029+# Translators, if you are not familiar with the PO format, gettext
4030+# documentation is worth reading, especially sections dedicated to
4031+# this format, e.g. by running:
4032+# info -n '(gettext)PO Files'
4033+# info -n '(gettext)Header Entry'
4034+# Some information specific to po-debconf are available at
4035+# /usr/share/doc/po-debconf/README-trans
4036+# or http://www.debian.org/intl/l10n/po-debconf/README-trans#
4037+# Developers do not need to manually edit POT or PO files.
4038+#
4039+# Alwin Meschede <ameschede@gmx.de>, 2006, 2007.
4040+# Thomas Mueller <thomas.mueller@tmit.eu>, 2009.
4041+msgid ""
4042+msgstr ""
4043+"Project-Id-Version: mysql-dfsg-5.5_5.5.37-1_de\n"
4044+"Report-Msgid-Bugs-To: percona-server-5.6@packages.debian.org\n"
4045+"POT-Creation-Date: 2011-11-08 11:42-0800\n"
4046+"PO-Revision-Date: 2009-08-27 22:41+0200\n"
4047+"Last-Translator: Thomas Mueller <thomas.mueller@tmit.eu>\n"
4048+"Language-Team: german <debian-l10n-german@lists.debian.org>\n"
4049+"Language: \n"
4050+"MIME-Version: 1.0\n"
4051+"Content-Type: text/plain; charset=UTF-8\n"
4052+"Content-Transfer-Encoding: 8bit\n"
4053+"X-Generator: KBabel 1.11.4\n"
4054+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
4055+
4056+#. Type: boolean
4057+#. Description
4058+#: ../percona-server-5.6.templates:2001
4059+msgid "Really proceed with downgrade?"
4060+msgstr "Möchten Sie wirklich eine ältere Version einspielen?"
4061+
4062+#. Type: boolean
4063+#. Description
4064+#: ../percona-server-5.6.templates:2001
4065+msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
4066+msgstr ""
4067+"Auf diesem System existiert eine Datei mit dem Namen /var/lib/mysql/debian-*."
4068+"flag"
4069+
4070+#. Type: boolean
4071+#. Description
4072+#: ../percona-server-5.6.templates:2001
4073+msgid ""
4074+"Such a file is an indication that a mysql-server package with a higher "
4075+"version has been installed previously."
4076+msgstr ""
4077+"Diese Datei ist ein Hinweis darauf, dass früher ein MySQL-Server-Paket mit "
4078+"einer höheren Version installiert war."
4079+
4080+#. Type: boolean
4081+#. Description
4082+#: ../percona-server-5.6.templates:2001
4083+msgid ""
4084+"There is no guarantee that the version you're currently installing will be "
4085+"able to use the current databases."
4086+msgstr ""
4087+"Es kann nicht garantiert werden, dass die gegenwärtig zu installierende "
4088+"Version dessen Daten benutzen kann."
4089+
4090+#. Type: note
4091+#. Description
4092+#: ../percona-server-5.6.templates:3001
4093+msgid "Important note for NIS/YP users"
4094+msgstr "Wichtige Anmerkung für NIS/YP-Benutzer!"
4095+
4096+#. Type: note
4097+#. Description
4098+#: ../percona-server-5.6.templates:3001
4099+msgid ""
4100+"Using MySQL under NIS/YP requires a mysql user account to be added on the "
4101+"local system with:"
4102+msgstr ""
4103+"Falls MySQL mit NIS/YP genutzt wird, ist ein »mysql«-Benutzerkonto auf dem "
4104+"lokalen System notwendig:"
4105+
4106+#. Type: note
4107+#. Description
4108+#: ../percona-server-5.6.templates:3001
4109+msgid ""
4110+"You should also check the permissions and ownership of the /var/lib/mysql "
4111+"directory:"
4112+msgstr ""
4113+"Sie sollten außerdem Besitzer und Zugriffsrechte des Verzeichnisses /var/lib/"
4114+"mysql überprüfen:"
4115+
4116+#. Type: boolean
4117+#. Description
4118+#: ../percona-server-5.6.templates:4001
4119+msgid "Remove all MySQL databases?"
4120+msgstr "Alle MySQL-Datenbanken entfernen?"
4121+
4122+#. Type: boolean
4123+#. Description
4124+#: ../percona-server-5.6.templates:4001
4125+msgid ""
4126+"The /var/lib/mysql directory which contains the MySQL databases is about to "
4127+"be removed."
4128+msgstr ""
4129+"Das Verzeichnis /var/lib/mysql mit den MySQL-Datenbanken soll entfernt "
4130+"werden."
4131+
4132+#. Type: boolean
4133+#. Description
4134+#: ../percona-server-5.6.templates:4001
4135+msgid ""
4136+"If you're removing the MySQL package in order to later install a more recent "
4137+"version or if a different mysql-server package is already using it, the data "
4138+"should be kept."
4139+msgstr ""
4140+"Falls geplant ist, nur eine höhere Version von MySQL zu installieren oder "
4141+"ein anderes mysql-server-Paket dieses bereits benutzt, sollten die Daten "
4142+"behalten werden."
4143+
4144+#. Type: boolean
4145+#. Description
4146+#: ../percona-server-5.6.templates:5001
4147+msgid "Start the MySQL server on boot?"
4148+msgstr "Soll der MySQL-Server automatisch beim Booten starten?"
4149+
4150+#. Type: boolean
4151+#. Description
4152+#: ../percona-server-5.6.templates:5001
4153+msgid ""
4154+"The MySQL server can be launched automatically at boot time or manually with "
4155+"the '/etc/init.d/mysql start' command."
4156+msgstr ""
4157+"Der MySQL-Dienst kann entweder automatisch beim Systemstart oder manuell "
4158+"durch Eingabe des Befehls »/etc/init.d/mysql start« gestartet werden."
4159+
4160+#. Type: password
4161+#. Description
4162+#: ../percona-server-5.6.templates:6001
4163+msgid "New password for the MySQL \"root\" user:"
4164+msgstr "Neues Passwort für den MySQL »root«-Benutzer:"
4165+
4166+#. Type: password
4167+#. Description
4168+#: ../percona-server-5.6.templates:6001
4169+msgid ""
4170+"While not mandatory, it is highly recommended that you set a password for "
4171+"the MySQL administrative \"root\" user."
4172+msgstr ""
4173+"Obwohl es nicht zwingend erforderlich ist, wird nachdrücklich empfohlen für "
4174+"den administrativen MySQL »root«-Benutzer ein Passwort zu setzen."
4175+
4176+#. Type: password
4177+#. Description
4178+#: ../percona-server-5.6.templates:6001
4179+msgid "If this field is left blank, the password will not be changed."
4180+msgstr "Wenn dieses Feld freigelassen wird, wird das Passwort nicht geändert."
4181+
4182+#. Type: password
4183+#. Description
4184+#: ../percona-server-5.6.templates:7001
4185+msgid "Repeat password for the MySQL \"root\" user:"
4186+msgstr "Wiederholen Sie das Passwort für den MySQL-»root«-Benutzer:"
4187+
4188+#. Type: error
4189+#. Description
4190+#: ../percona-server-5.6.templates:8001
4191+msgid "Unable to set password for the MySQL \"root\" user"
4192+msgstr "Konnte für den MySQL-»root«-Benutzer kein Passwort setzen"
4193+
4194+#. Type: error
4195+#. Description
4196+#: ../percona-server-5.6.templates:8001
4197+msgid ""
4198+"An error occurred while setting the password for the MySQL administrative "
4199+"user. This may have happened because the account already has a password, or "
4200+"because of a communication problem with the MySQL server."
4201+msgstr ""
4202+"Beim setzen des Passworts für den administrativen MySQL-Benutzer ist ein "
4203+"Fehler aufgetreten. Dies könnte daran liegen, dass der Benutzer bereits ein "
4204+"Passwort hat oder dass es ein Problem mit der Kommunikation mit dem MySQL-"
4205+"Server gibt."
4206+
4207+#. Type: error
4208+#. Description
4209+#: ../percona-server-5.6.templates:8001
4210+msgid "You should check the account's password after the package installation."
4211+msgstr ""
4212+"Sie sollten das Passwort des administrativen Benutzers nach der "
4213+"Paketinstallation prüfen."
4214+
4215+#. Type: error
4216+#. Description
4217+#: ../percona-server-5.6.templates:8001
4218+#, fuzzy
4219+#| msgid ""
4220+#| "Please read the /usr/share/doc/percona-server-5.6/README.Debian file for "
4221+#| "more information."
4222+msgid ""
4223+"Please read the /usr/share/doc/percona-server-5.6/README.Debian file for more "
4224+"information."
4225+msgstr ""
4226+"Für weitere Informationen lesen Sie /usr/share/doc/percona-server-5.6/README."
4227+"Debian."
4228+
4229+#. Type: error
4230+#. Description
4231+#: ../percona-server-5.6.templates:9001
4232+msgid "Password input error"
4233+msgstr "Passwort-Eingabefehler"
4234+
4235+#. Type: error
4236+#. Description
4237+#: ../percona-server-5.6.templates:9001
4238+msgid "The two passwords you entered were not the same. Please try again."
4239+msgstr ""
4240+"Die beiden von Ihnen eingegebenen Passwörter sind nicht identisch. Bitte "
4241+"erneut versuchen."
4242+
4243+#. Type: error
4244+#. Description
4245+#: ../percona-server-5.6.templates:10001
4246+msgid "NDB Cluster seems to be in use"
4247+msgstr "NDB-Cluster scheint gerade benutzt zu werden"
4248+
4249+#. Type: error
4250+#. Description
4251+#: ../percona-server-5.6.templates:10001
4252+#, fuzzy
4253+#| msgid ""
4254+#| "Percona-Server-5.6 no longer provides NDB Cluster support. Please migrate to the "
4255+#| "new mysql-cluster package and remove all lines starting with \"ndb\" from "
4256+#| "all config files below /etc/mysql/."
4257+msgid ""
4258+"Percona-Server-5.6 no longer provides NDB Cluster support. Please migrate to the new "
4259+"mysql-cluster-server package and remove all lines starting with \"ndb\" from "
4260+"all config files below /etc/mysql/."
4261+msgstr ""
4262+"Percona-Server-5.6 bietet keine NDB-Clusterunterstützung mehr. Bitte migrieren Sie "
4263+"Ihr System zum neuen »mysql-cluster«-Paket und entfernen Sie alle Zeilen, "
4264+"die mit »ndb« beginnen aus allen Konfigurationsdateien im Verzeichnis /etc/"
4265+"mysql/."
4266
4267=== added file 'build-ps/debian/po/es.po'
4268--- build-ps/debian/po/es.po 1970-01-01 00:00:00 +0000
4269+++ build-ps/debian/po/es.po 2014-05-21 18:59:03 +0000
4270@@ -0,0 +1,390 @@
4271+# mysql-dfsg-5 translation to spanish
4272+# Copyright (C) 2005-2007 Software in the Public Interest, SPI Inc.
4273+# This file is distributed under the same license as the XXXX package.
4274+#
4275+# Changes:
4276+# - Initial translation
4277+# Jesus Aneiros, 2006
4278+# - Updated
4279+# Javier Fernandez-Sanguino, 2006-2007
4280+# - Revision
4281+# Nacho Barrientos Arias
4282+# Fernando Cerezal
4283+# David Martínez Moreno
4284+# Ricardo Mones
4285+# Carlos Galisteo
4286+# Javier Fernandez-Sanguino
4287+#
4288+#
4289+# Traductores, si no conoce el formato PO, merece la pena leer la
4290+# documentación de gettext, especialmente las secciones dedicadas a este
4291+# formato, por ejemplo ejecutando:
4292+# info -n '(gettext)PO Files'
4293+# info -n '(gettext)Header Entry'
4294+#
4295+# Equipo de traducción al español, por favor lean antes de traducir
4296+# los siguientes documentos:
4297+#
4298+# - El proyecto de traducción de Debian al español
4299+# http://www.debian.org/intl/spanish/
4300+# especialmente las notas y normas de traducción en
4301+# http://www.debian.org/intl/spanish/notas
4302+#
4303+# - La guía de traducción de po's de debconf:
4304+# /usr/share/doc/po-debconf/README-trans
4305+# o http://www.debian.org/intl/l10n/po-debconf/README-trans
4306+#
4307+# Si tiene dudas o consultas sobre esta traducción consulte con el último
4308+# traductor (campo Last-Translator) y ponga en copia a la lista de
4309+# traducción de Debian al español (<debian-l10n-spanish@lists.debian.org>)
4310+msgid ""
4311+msgstr ""
4312+"Project-Id-Version: mysql-dfsg-5.5_5.0.24-3\n"
4313+"Report-Msgid-Bugs-To: percona-server-5.6@packages.debian.org\n"
4314+"POT-Creation-Date: 2011-11-08 11:42-0800\n"
4315+"PO-Revision-Date: 2007-05-28 22:21+0200\n"
4316+"Last-Translator: Javier Fernández-Sanguino <jfs@debian.org>\n"
4317+"Language-Team: Debian l10 Spanish <debian-l10n-spanish@lists.debian.org>\n"
4318+"Language: \n"
4319+"MIME-Version: 1.0\n"
4320+"Content-Type: text/plain; charset=UTF-8\n"
4321+"Content-Transfer-Encoding: 8bit\n"
4322+
4323+#. Type: boolean
4324+#. Description
4325+#: ../percona-server-5.6.templates:2001
4326+msgid "Really proceed with downgrade?"
4327+msgstr "¿Desea realmente continuar con la desactualización?"
4328+
4329+#. Type: boolean
4330+#. Description
4331+#: ../percona-server-5.6.templates:2001
4332+msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
4333+msgstr ""
4334+"Existe un archivo con el nombre /var/lib/mysql/debian-*.flag en este sistema."
4335+
4336+#. Type: boolean
4337+#. Description
4338+#: ../percona-server-5.6.templates:2001
4339+#, fuzzy
4340+#| msgid ""
4341+#| "Such file is an indication that a mysql-server package with a higher "
4342+#| "version has been installed earlier."
4343+msgid ""
4344+"Such a file is an indication that a mysql-server package with a higher "
4345+"version has been installed previously."
4346+msgstr ""
4347+"Este fichero indica que se instaló previamente una versión superior del "
4348+"paquete mysql-server."
4349+
4350+#. Type: boolean
4351+#. Description
4352+#: ../percona-server-5.6.templates:2001
4353+msgid ""
4354+"There is no guarantee that the version you're currently installing will be "
4355+"able to use the current databases."
4356+msgstr ""
4357+"No se puede garantizar que la versión que está instalando pueda usar la base "
4358+"de datos actual."
4359+
4360+#. Type: note
4361+#. Description
4362+#: ../percona-server-5.6.templates:3001
4363+msgid "Important note for NIS/YP users"
4364+msgstr "Nota importante para los usuarios de NIS/YP"
4365+
4366+#. Type: note
4367+#. Description
4368+#: ../percona-server-5.6.templates:3001
4369+msgid ""
4370+"Using MySQL under NIS/YP requires a mysql user account to be added on the "
4371+"local system with:"
4372+msgstr ""
4373+
4374+#. Type: note
4375+#. Description
4376+#: ../percona-server-5.6.templates:3001
4377+#, fuzzy
4378+#| msgid ""
4379+#| "You should also check the permissions and the owner of the /var/lib/mysql "
4380+#| "directory:"
4381+msgid ""
4382+"You should also check the permissions and ownership of the /var/lib/mysql "
4383+"directory:"
4384+msgstr ""
4385+"También debería comprobar los permisos y el propietario del directorio /var/"
4386+"lib/mysql:"
4387+
4388+#. Type: boolean
4389+#. Description
4390+#: ../percona-server-5.6.templates:4001
4391+msgid "Remove all MySQL databases?"
4392+msgstr "¿Desea eliminar todas las bases de datos MySQL?"
4393+
4394+#. Type: boolean
4395+#. Description
4396+#: ../percona-server-5.6.templates:4001
4397+msgid ""
4398+"The /var/lib/mysql directory which contains the MySQL databases is about to "
4399+"be removed."
4400+msgstr ""
4401+"El directorio /var/lib/mysql contiene bases de datos MySQL que van a "
4402+"eliminarse."
4403+
4404+#. Type: boolean
4405+#. Description
4406+#: ../percona-server-5.6.templates:4001
4407+msgid ""
4408+"If you're removing the MySQL package in order to later install a more recent "
4409+"version or if a different mysql-server package is already using it, the data "
4410+"should be kept."
4411+msgstr ""
4412+"Debería mantener los datos si tiene planificado instalar una versión de "
4413+"MySQL más reciente o si hay un paquete «mysql-server» distinto que los está "
4414+"utilizando."
4415+
4416+#. Type: boolean
4417+#. Description
4418+#: ../percona-server-5.6.templates:5001
4419+msgid "Start the MySQL server on boot?"
4420+msgstr "¿Debería ejecutarse el servidor MySQL al iniciarse el sistema?"
4421+
4422+#. Type: boolean
4423+#. Description
4424+#: ../percona-server-5.6.templates:5001
4425+msgid ""
4426+"The MySQL server can be launched automatically at boot time or manually with "
4427+"the '/etc/init.d/mysql start' command."
4428+msgstr ""
4429+"El servidor MySQL puede iniciarse en el momento de arranque del sistema o "
4430+"manualmente si escribe la orden «/etc/init.d/mysql start»."
4431+
4432+#. Type: password
4433+#. Description
4434+#: ../percona-server-5.6.templates:6001
4435+msgid "New password for the MySQL \"root\" user:"
4436+msgstr "Nueva contraseña para el usuario «root» de MySQL:"
4437+
4438+#. Type: password
4439+#. Description
4440+#: ../percona-server-5.6.templates:6001
4441+msgid ""
4442+"While not mandatory, it is highly recommended that you set a password for "
4443+"the MySQL administrative \"root\" user."
4444+msgstr ""
4445+"Se recomienda que configure una contraseña para el usuario "
4446+"«root» (administrador) de MySQL, aunque no es obligatorio."
4447+
4448+#. Type: password
4449+#. Description
4450+#: ../percona-server-5.6.templates:6001
4451+#, fuzzy
4452+#| msgid "If that field is left blank, the password will not be changed."
4453+msgid "If this field is left blank, the password will not be changed."
4454+msgstr "No se modificará la contraseña si deja el espacio en blanco."
4455+
4456+#. Type: password
4457+#. Description
4458+#: ../percona-server-5.6.templates:7001
4459+#, fuzzy
4460+#| msgid "New password for the MySQL \"root\" user:"
4461+msgid "Repeat password for the MySQL \"root\" user:"
4462+msgstr "Nueva contraseña para el usuario «root» de MySQL:"
4463+
4464+#. Type: error
4465+#. Description
4466+#: ../percona-server-5.6.templates:8001
4467+msgid "Unable to set password for the MySQL \"root\" user"
4468+msgstr "No se pudo fijar la contraseña para el usuario «root» de MySQL"
4469+
4470+#. Type: error
4471+#. Description
4472+#: ../percona-server-5.6.templates:8001
4473+msgid ""
4474+"An error occurred while setting the password for the MySQL administrative "
4475+"user. This may have happened because the account already has a password, or "
4476+"because of a communication problem with the MySQL server."
4477+msgstr ""
4478+"Se produjo un error mientras intentaba fijar la contraseña para el usuario "
4479+"administrador de MySQL. Esto puede haber sucedido porque la cuenta ya tenía "
4480+"una contraseña o porque se produjo un error de comunicación con el servidor "
4481+"MySQL."
4482+
4483+#. Type: error
4484+#. Description
4485+#: ../percona-server-5.6.templates:8001
4486+msgid "You should check the account's password after the package installation."
4487+msgstr ""
4488+"Debería comprobar la contraseña de la cuenta después de la instalación del "
4489+"paquete."
4490+
4491+#. Type: error
4492+#. Description
4493+#: ../percona-server-5.6.templates:8001
4494+#, fuzzy
4495+#| msgid ""
4496+#| "Please read the /usr/share/doc/percona-server-5.6/README.Debian file for "
4497+#| "more information."
4498+msgid ""
4499+"Please read the /usr/share/doc/percona-server-5.6/README.Debian file for more "
4500+"information."
4501+msgstr ""
4502+"Consulte /usr/share/doc/percona-server-5.6/README.Debian para más información."
4503+
4504+#. Type: error
4505+#. Description
4506+#: ../percona-server-5.6.templates:9001
4507+msgid "Password input error"
4508+msgstr ""
4509+
4510+#. Type: error
4511+#. Description
4512+#: ../percona-server-5.6.templates:9001
4513+msgid "The two passwords you entered were not the same. Please try again."
4514+msgstr ""
4515+
4516+#. Type: error
4517+#. Description
4518+#: ../percona-server-5.6.templates:10001
4519+msgid "NDB Cluster seems to be in use"
4520+msgstr ""
4521+
4522+#. Type: error
4523+#. Description
4524+#: ../percona-server-5.6.templates:10001
4525+msgid ""
4526+"Percona-Server-5.6 no longer provides NDB Cluster support. Please migrate to the new "
4527+"mysql-cluster-server package and remove all lines starting with \"ndb\" from "
4528+"all config files below /etc/mysql/."
4529+msgstr ""
4530+
4531+#~ msgid ""
4532+#~ "To use MySQL, the following entries for users and groups should be added "
4533+#~ "to the system:"
4534+#~ msgstr ""
4535+#~ "Deben añadirse las siguientes entradas para usuarios y grupos en el "
4536+#~ "sistema para poder utilizar MySQL:"
4537+
4538+#~ msgid "Cannot upgrade if ISAM tables are present!"
4539+#~ msgstr "¡No se puede actualizar si ya hay tablas ISAM!"
4540+
4541+#~ msgid ""
4542+#~ "Recent versions of MySQL can no longer use the old ISAM table format and "
4543+#~ "it is necessary to convert your tables to e.g. MyISAM before upgrading by "
4544+#~ "using \"mysql_convert_table_format\" or \"ALTER TABLE x ENGINE=MyISAM\". "
4545+#~ "The installation of percona-server-5.6 will now abort. In case your old "
4546+#~ "mysql-server-4.1 gets removed nevertheless just reinstall it to convert "
4547+#~ "those tables."
4548+#~ msgstr ""
4549+#~ "Las versiones recientes de MySQL ya no soportan el antiguo formato de "
4550+#~ "tabla ISAM. Antes de realizar la actualización es necesario convertir sus "
4551+#~ "tablas a por ejemplo, MyISAM, usando «mysql_convert_table_format» o "
4552+#~ "«ALTER TABLE x ENGINE=MyISAM». Se va a interrumpir ahora la instalación "
4553+#~ "de percona-server-5.6. Si aún así su mysql-server-4.1 se elimina aún así, "
4554+#~ "puede reinstalarlo para convertir ese tipo de tablas."
4555+
4556+#~ msgid ""
4557+#~ "Support MySQL connections from hosts running Debian \"sarge\" or older?"
4558+#~ msgstr ""
4559+#~ "¿Soportar las conexiones MySQL establecidadas desde sistemas que ejecutan "
4560+#~ "Debian Sarge o versiones anteriores?"
4561+
4562+#~ msgid ""
4563+#~ "In old versions of MySQL clients on Debian, passwords were not stored "
4564+#~ "securely. This has been improved since then, however clients (such as "
4565+#~ "PHP) from hosts running Debian 3.1 Sarge will not be able to connect to "
4566+#~ "recent accounts or accounts whose password have been changed."
4567+#~ msgstr ""
4568+#~ "No era muy segura la forma en la que se almacenaban las contraseñas en "
4569+#~ "versiones anteriores del cliente de MySQL en Debian. Este problema se ha "
4570+#~ "mejorado posteriormente con el inconveniente, sin embargo, de que "
4571+#~ "clientes (por ejemplo, PHP) en sistemas que ejecutan Debian 3.1 «Sarge» "
4572+#~ "no podrán conectarse a cuentas que son nuevas o a las que se le haya "
4573+#~ "cambiado la contraseña."
4574+
4575+#~ msgid ""
4576+#~ "To use mysql you must install an equivalent user and group to the "
4577+#~ "following and ensure yourself that /var/lib/mysql has the right "
4578+#~ "permissions (the uid/gid may be different)."
4579+#~ msgstr ""
4580+#~ "Para utilizar mysql debe instalar un usuario y grupo equivalente al "
4581+#~ "siguiente y asegurarse de que /var/lib/mysql tiene los permisos correctos "
4582+#~ "(los valores del «uid» y del «gid» pueden ser diferentes)."
4583+
4584+#~ msgid ""
4585+#~ "/etc/passwd: mysql:x:100:101:MySQL Server:/var/lib/mysql:/bin/false"
4586+#~ msgstr ""
4587+#~ "/etc/passwd: mysql:x:100:101:MySQL Server:/var/lib/mysql:/bin/false"
4588+
4589+#~ msgid "/etc/group: mysql:x:101:"
4590+#~ msgstr "/etc/group: mysql:x:101:"
4591+
4592+#~ msgid "/var/lib/mysql: drwxr-xr-x mysql mysql"
4593+#~ msgstr "/var/lib/mysql: drwxr-xr-x mysql mysql"
4594+
4595+#~ msgid "Remove the databases used by all MySQL versions?"
4596+#~ msgstr ""
4597+#~ "¿Eliminar las bases de datos utilizadas por todas las versiones de MySQL?"
4598+
4599+#~ msgid ""
4600+#~ "If you do not provide a password no changes will be made to the account."
4601+#~ msgstr ""
4602+#~ "No se hará ningún cambio en la cuenta si no introduce una contraseña."
4603+
4604+#~ msgid ""
4605+#~ "When installation finishes, you should verify that the account is "
4606+#~ "properly protected with a password (see README.Debian for more "
4607+#~ "information)."
4608+#~ msgstr ""
4609+#~ "Debería confirmar que la contraseña está correctamente protegida con una "
4610+#~ "contraseña cuando termine la instalación (consulte el fichero README."
4611+#~ "Debian si desea más información)."
4612+
4613+#~ msgid "Install Hints"
4614+#~ msgstr "Sugerencias para la instalación"
4615+
4616+#~ msgid ""
4617+#~ "On upgrades from MySQL 3.23, as shipped with Debian Woody, symlinks in "
4618+#~ "place of /var/lib/mysql or /var/log/mysql gets accidently removed and "
4619+#~ "have manually be restored."
4620+#~ msgstr ""
4621+#~ "Al actualizar a la versión de MySQL 3.23, la vrsión proporcionada en "
4622+#~ "Debian Woody, se eliminan de manera accidental, los enlaces simbólicos a "
4623+#~ "«/var/lib/mysql» o «/var/log/mysql» y tienen que restaurarse manualmente."
4624+
4625+#~ msgid ""
4626+#~ "MySQL will only install if you have a non-numeric hostname that is "
4627+#~ "resolvable via the /etc/hosts file. E.g. if the \"hostname\" command "
4628+#~ "returns \"myhostname\" then there must be a line like \"10.0.0.1 "
4629+#~ "myhostname\"."
4630+#~ msgstr ""
4631+#~ "Sólo se instalará MySQL si tiene un nombre de equipo que no sea una "
4632+#~ "dirección IP y pueda resolverse a través del archivo /etc/hosts. Por "
4633+#~ "ejemplo, si la orden «hostname» devuelve «MiNombreEquipo» entonces deberá "
4634+#~ "existir una línea «10.0.0.1 MiNombreEquipo» en dicho archivo."
4635+
4636+#~ msgid ""
4637+#~ "A new mysql user \"debian-sys-maint\" will be created. This mysql account "
4638+#~ "is used in the start/stop and cron scripts. Don't delete."
4639+#~ msgstr ""
4640+#~ "Se creará un nuevo usuario «debian-sys-maint». Esta cuenta de mysql se "
4641+#~ "utilizará en los scripts de inicio y parada y en los scripts «cron». No "
4642+#~ "la elimine."
4643+
4644+#~ msgid ""
4645+#~ "Please remember to set a PASSWORD for the MySQL root user! If you use a /"
4646+#~ "root/.my.cnf, always write the \"user\" and the \"password\" lines in "
4647+#~ "there, never only the password!"
4648+#~ msgstr ""
4649+#~ "¡Por favor, recuerde crear una CONTRASEÑA para el usuario «root» de "
4650+#~ "MySQL! ¡Si utiliza /root/.my.cnf debe escribir las líneas «user» y "
4651+#~ "«password» en dicho archivo, no incluya sólo la contraseña!"
4652+
4653+#~ msgid ""
4654+#~ "Should I remove the complete /var/lib/mysql directory tree which is used "
4655+#~ "by all MySQL versions, not necessarily only the one you are about to "
4656+#~ "purge?"
4657+#~ msgstr ""
4658+#~ "¿Debería eliminar el árbol de directorio /var/lib/mysql completo? Tenga "
4659+#~ "en cuenta que lo utilizan todas las versiones de MySQL y no sólo la que "
4660+#~ "está a punto de purgar."
4661
4662=== added file 'build-ps/debian/po/eu.po'
4663--- build-ps/debian/po/eu.po 1970-01-01 00:00:00 +0000
4664+++ build-ps/debian/po/eu.po 2014-05-21 18:59:03 +0000
4665@@ -0,0 +1,236 @@
4666+# translation of eu.po to Euskara
4667+# Piarres BEobide <pi@beobide.net>, 2006.
4668+# Piarres Beobide <pi@beobide.net>, 2009.
4669+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
4670+# This file is distributed under the same license as the PACKAGE package.
4671+msgid ""
4672+msgstr ""
4673+"Project-Id-Version: eu\n"
4674+"Report-Msgid-Bugs-To: percona-server-5.6@packages.debian.org\n"
4675+"POT-Creation-Date: 2011-11-08 11:42-0800\n"
4676+"PO-Revision-Date: 2009-07-29 11:59+0200\n"
4677+"Last-Translator: Piarres Beobide <pi@beobide.net>\n"
4678+"Language-Team: Euskara <debian-l10n-eu@lists.debian.org>\n"
4679+"Language: \n"
4680+"MIME-Version: 1.0\n"
4681+"Content-Type: text/plain; charset=UTF-8\n"
4682+"Content-Transfer-Encoding: 8bit\n"
4683+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
4684+"X-Generator: KBabel 1.11.4\n"
4685+
4686+#. Type: boolean
4687+#. Description
4688+#: ../percona-server-5.6.templates:2001
4689+msgid "Really proceed with downgrade?"
4690+msgstr "Benetan bertsio zaharragora itzuli nahi duzu?"
4691+
4692+#. Type: boolean
4693+#. Description
4694+#: ../percona-server-5.6.templates:2001
4695+msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
4696+msgstr "Sisteman badago /var/lib/mysql/debian-*.flag izeneko fitxategi bat."
4697+
4698+#. Type: boolean
4699+#. Description
4700+#: ../percona-server-5.6.templates:2001
4701+#, fuzzy
4702+#| msgid ""
4703+#| "Such file is an indication that a mysql-server package with a higher "
4704+#| "version has been installed earlier."
4705+msgid ""
4706+"Such a file is an indication that a mysql-server package with a higher "
4707+"version has been installed previously."
4708+msgstr ""
4709+"Fitxategi honek aurretik bertsio berriagoko mysql-zerbitzari pakete bat "
4710+"instalatu dela adierazten du."
4711+
4712+#. Type: boolean
4713+#. Description
4714+#: ../percona-server-5.6.templates:2001
4715+msgid ""
4716+"There is no guarantee that the version you're currently installing will be "
4717+"able to use the current databases."
4718+msgstr ""
4719+"Ezin da ziurtatu instalatzen ari zaren bertsio honek dauden datubaseak "
4720+"erabili ahal izango dituenik."
4721+
4722+#. Type: note
4723+#. Description
4724+#: ../percona-server-5.6.templates:3001
4725+msgid "Important note for NIS/YP users"
4726+msgstr "NIS/YP erabiltzaileentzat ohar garrantzitsua"
4727+
4728+#. Type: note
4729+#. Description
4730+#: ../percona-server-5.6.templates:3001
4731+msgid ""
4732+"Using MySQL under NIS/YP requires a mysql user account to be added on the "
4733+"local system with:"
4734+msgstr ""
4735+
4736+#. Type: note
4737+#. Description
4738+#: ../percona-server-5.6.templates:3001
4739+#, fuzzy
4740+#| msgid ""
4741+#| "You should also check the permissions and the owner of the /var/lib/mysql "
4742+#| "directory:"
4743+msgid ""
4744+"You should also check the permissions and ownership of the /var/lib/mysql "
4745+"directory:"
4746+msgstr ""
4747+"Honetaz gain /var/lib/mysql direktorioaren jabea eta baimenak egiaztatu "
4748+"beharko zenituzke:"
4749+
4750+#. Type: boolean
4751+#. Description
4752+#: ../percona-server-5.6.templates:4001
4753+msgid "Remove all MySQL databases?"
4754+msgstr "Ezabatu MySQL datubase guztiak?"
4755+
4756+#. Type: boolean
4757+#. Description
4758+#: ../percona-server-5.6.templates:4001
4759+msgid ""
4760+"The /var/lib/mysql directory which contains the MySQL databases is about to "
4761+"be removed."
4762+msgstr "MySQL datubaseak dituen /var/lib/mysql direktorioa ezabatua izango da."
4763+
4764+#. Type: boolean
4765+#. Description
4766+#: ../percona-server-5.6.templates:4001
4767+msgid ""
4768+"If you're removing the MySQL package in order to later install a more recent "
4769+"version or if a different mysql-server package is already using it, the data "
4770+"should be kept."
4771+msgstr ""
4772+"MySQL paketea beranduago bertsio berriago bat instalatzeko kentzen ari "
4773+"bazara, edo beste mysql-server pakete bat berau erabiltzen ari bada, datuak "
4774+"mantendu egin beharko lirateke."
4775+
4776+#. Type: boolean
4777+#. Description
4778+#: ../percona-server-5.6.templates:5001
4779+msgid "Start the MySQL server on boot?"
4780+msgstr "Abioan MySQL zerbitzaria abiarazi?"
4781+
4782+#. Type: boolean
4783+#. Description
4784+#: ../percona-server-5.6.templates:5001
4785+msgid ""
4786+"The MySQL server can be launched automatically at boot time or manually with "
4787+"the '/etc/init.d/mysql start' command."
4788+msgstr ""
4789+"Sistema abioan MySQL automatikoki abiarazi daiteke edo eskuz '/etc/init.d/"
4790+"mysql start' eginaz."
4791+
4792+#. Type: password
4793+#. Description
4794+#: ../percona-server-5.6.templates:6001
4795+msgid "New password for the MySQL \"root\" user:"
4796+msgstr "MySQL \"root\" erabiltzailearen pasahitz berria:"
4797+
4798+#. Type: password
4799+#. Description
4800+#: ../percona-server-5.6.templates:6001
4801+msgid ""
4802+"While not mandatory, it is highly recommended that you set a password for "
4803+"the MySQL administrative \"root\" user."
4804+msgstr ""
4805+"Derrigorrezkoa ez denean, oso gomendagarria da MySQL administratzaile \"root"
4806+"\" erabiltzaileari pasahitz bat ezartzea."
4807+
4808+#. Type: password
4809+#. Description
4810+#: ../percona-server-5.6.templates:6001
4811+#, fuzzy
4812+#| msgid "If that field is left blank, the password will not be changed."
4813+msgid "If this field is left blank, the password will not be changed."
4814+msgstr "Eremua hau zurian utziaz gero ez da pasahitza aldatuko."
4815+
4816+#. Type: password
4817+#. Description
4818+#: ../percona-server-5.6.templates:7001
4819+msgid "Repeat password for the MySQL \"root\" user:"
4820+msgstr "Errepikatu MySQL \"root\" erabiltzailearen pasahitza:"
4821+
4822+#. Type: error
4823+#. Description
4824+#: ../percona-server-5.6.templates:8001
4825+msgid "Unable to set password for the MySQL \"root\" user"
4826+msgstr "Ezin da MySQL \"root\" erabiltzailearen pasahitza ezarri"
4827+
4828+#. Type: error
4829+#. Description
4830+#: ../percona-server-5.6.templates:8001
4831+msgid ""
4832+"An error occurred while setting the password for the MySQL administrative "
4833+"user. This may have happened because the account already has a password, or "
4834+"because of a communication problem with the MySQL server."
4835+msgstr ""
4836+"Errore bat gertatu da MySQL administratzaile kontuaren pasahitza ezartzean. "
4837+"Hau erabiltzaileak dagoeneko pasahitz bat duelako edo MySQL "
4838+"zerbitzariarekiko konexioan erroreak daudelako gertatu daiteke."
4839+
4840+#. Type: error
4841+#. Description
4842+#: ../percona-server-5.6.templates:8001
4843+msgid "You should check the account's password after the package installation."
4844+msgstr ""
4845+"Kontuaren pasahitza egiaztatu beharko zenuke paketea instalatu aurretik."
4846+
4847+#. Type: error
4848+#. Description
4849+#: ../percona-server-5.6.templates:8001
4850+#, fuzzy
4851+#| msgid ""
4852+#| "Please read the /usr/share/doc/percona-server-5.6/README.Debian file for "
4853+#| "more information."
4854+msgid ""
4855+"Please read the /usr/share/doc/percona-server-5.6/README.Debian file for more "
4856+"information."
4857+msgstr ""
4858+"Mesedez irakurri /usr/share/doc/percona-server-5.6/README.Debian fitxategia "
4859+"xehetasun gehiagorako."
4860+
4861+#. Type: error
4862+#. Description
4863+#: ../percona-server-5.6.templates:9001
4864+msgid "Password input error"
4865+msgstr "Pasahitz sarrera errorea"
4866+
4867+#. Type: error
4868+#. Description
4869+#: ../percona-server-5.6.templates:9001
4870+msgid "The two passwords you entered were not the same. Please try again."
4871+msgstr "Idatzi dituzun bi pasahitzak ez dira berdina. Mesedez saiatu berriz."
4872+
4873+#. Type: error
4874+#. Description
4875+#: ../percona-server-5.6.templates:10001
4876+msgid "NDB Cluster seems to be in use"
4877+msgstr "Dirudienez NDB Cluster-a erabilia dago"
4878+
4879+#. Type: error
4880+#. Description
4881+#: ../percona-server-5.6.templates:10001
4882+#, fuzzy
4883+#| msgid ""
4884+#| "Percona-Server-5.6 has orphaned NDB Cluster support. Please migrate to the new "
4885+#| "mysql-cluster package and remove all lines starting with \"ndb\" from all "
4886+#| "config files below /etc/mysql/."
4887+msgid ""
4888+"Percona-Server-5.6 no longer provides NDB Cluster support. Please migrate to the new "
4889+"mysql-cluster-server package and remove all lines starting with \"ndb\" from "
4890+"all config files below /etc/mysql/."
4891+msgstr ""
4892+"Percona-Server-5.6-ek NDB cluster euskarri umezurtz bat behar du. Mesedez migratu "
4893+"mysql-cluster pakete berrira eta /etc/mysql/ azpiko konfigurazio fitxategi "
4894+"guztietan \"ndb\"-ez hasten diren lerro guztiak ezabatu."
4895+
4896+#~ msgid ""
4897+#~ "To use MySQL, the following entries for users and groups should be added "
4898+#~ "to the system:"
4899+#~ msgstr ""
4900+#~ "MySQL erabili ahal izateko, hurrengo erabiltzaile eta taldeak gehitu "
4901+#~ "behar dira sisteman:"
4902
4903=== added file 'build-ps/debian/po/fr.po'
4904--- build-ps/debian/po/fr.po 1970-01-01 00:00:00 +0000
4905+++ build-ps/debian/po/fr.po 2014-05-21 18:59:03 +0000
4906@@ -0,0 +1,251 @@
4907+# Translation of mysql-dfsg-* debconf templates to French
4908+# Copyright (C) 2004-2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
4909+# This file is distributed under the same license as the mysql-dfsg-* packages.
4910+#
4911+# Translators:
4912+# Christian Perrier <bubulle@debian.org>, 2004, 2006, 2007, 2009.
4913+msgid ""
4914+msgstr ""
4915+"Project-Id-Version: fr\n"
4916+"Report-Msgid-Bugs-To: percona-server-5.6@packages.debian.org\n"
4917+"POT-Creation-Date: 2011-11-08 11:42-0800\n"
4918+"PO-Revision-Date: 2009-08-08 14:56+0200\n"
4919+"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
4920+"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
4921+"Language: fr\n"
4922+"MIME-Version: 1.0\n"
4923+"Content-Type: text/plain; charset=UTF-8\n"
4924+"Content-Transfer-Encoding: 8bit\n"
4925+"debian.org>\n"
4926+"X-Generator: Lokalize 0.3\n"
4927+"Plural-Forms: Plural-Forms: nplurals=2; plural=n>1;\n"
4928+
4929+#. Type: boolean
4930+#. Description
4931+#: ../percona-server-5.6.templates:2001
4932+msgid "Really proceed with downgrade?"
4933+msgstr "Faut-il vraiment revenir à la version précédente ?"
4934+
4935+#. Type: boolean
4936+#. Description
4937+#: ../percona-server-5.6.templates:2001
4938+msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
4939+msgstr "Un fichier /var/lib/mysql/debian-*.flag est présent sur ce système."
4940+
4941+#. Type: boolean
4942+#. Description
4943+#: ../percona-server-5.6.templates:2001
4944+msgid ""
4945+"Such a file is an indication that a mysql-server package with a higher "
4946+"version has been installed previously."
4947+msgstr ""
4948+"Cela indique qu'une version plus récente du paquet mysql-server a été "
4949+"précédemment installée."
4950+
4951+#. Type: boolean
4952+#. Description
4953+#: ../percona-server-5.6.templates:2001
4954+msgid ""
4955+"There is no guarantee that the version you're currently installing will be "
4956+"able to use the current databases."
4957+msgstr "Il n'est pas garanti que cette version puisse en utiliser les données."
4958+
4959+#. Type: note
4960+#. Description
4961+#: ../percona-server-5.6.templates:3001
4962+msgid "Important note for NIS/YP users"
4963+msgstr "Note importante pour les utilisateurs NIS/YP"
4964+
4965+#. Type: note
4966+#. Description
4967+#: ../percona-server-5.6.templates:3001
4968+msgid ""
4969+"Using MySQL under NIS/YP requires a mysql user account to be added on the "
4970+"local system with:"
4971+msgstr ""
4972+"L'utilisation de MySQL avec NIS/YP impose l'ajout d'un compte local "
4973+"« mysql » avec la commande :"
4974+
4975+#. Type: note
4976+#. Description
4977+#: ../percona-server-5.6.templates:3001
4978+msgid ""
4979+"You should also check the permissions and ownership of the /var/lib/mysql "
4980+"directory:"
4981+msgstr ""
4982+"Vous devez également vérifier le propriétaire et les permissions du "
4983+"répertoire /var/lib/mysql :"
4984+
4985+#. Type: boolean
4986+#. Description
4987+#: ../percona-server-5.6.templates:4001
4988+msgid "Remove all MySQL databases?"
4989+msgstr "Faut-il supprimer toutes les bases de données MySQL ?"
4990+
4991+#. Type: boolean
4992+#. Description
4993+#: ../percona-server-5.6.templates:4001
4994+msgid ""
4995+"The /var/lib/mysql directory which contains the MySQL databases is about to "
4996+"be removed."
4997+msgstr ""
4998+"Le répertoire /var/lib/mysql qui contient les bases de données de MySQL va "
4999+"être supprimé."
5000+
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: