Package: php-pager version: 2.4.2-2 Severity: serious User: [EMAIL PROTECTED] Usertags: qa-ftbfs-20070806 qa-ftbfs Justification: FTBFS on i386
Hi, During a rebuild of all packages in sid, your package failed to build on i386. Relevant part: -d include_path=/usr/share/php \ -d php_bin=/usr/bin/php \ -d bin_dir=/usr/bin \ -d php_dir=/usr/share/php \ -d data_dir=/usr/share/php/data \ -d doc_dir=/usr/share/php/docs \ -d test_dir=/usr/share/php/tests \ install --nodeps -R /build/user/php-pager-2.4.2/debian/php-pager/ Pager-2.4.2/package.xml install ok: channel://pear.php.net/Pager-2.4.2 # move documentation to correct location mkdir -p /build/user/php-pager-2.4.2/debian/php-pager/usr/share/doc/php-pager if [ -d /build/user/php-pager-2.4.2/debian/php-pager/usr/share/php/docs/Pager ] ; then \ mv -i /build/user/php-pager-2.4.2/debian/php-pager/usr/share/php/docs/Pager/* /build/user/php-pager-2.4.2/debian/php-pager/usr/share/doc/php-pager; \ rmdir /build/user/php-pager-2.4.2/debian/php-pager/usr/share/php/docs/Pager; \ ln -s ../../doc/php-pager /build/user/php-pager-2.4.2/debian/php-pager/usr/share/php/docs/Pager; \ fi ; # create upstream changelog Version 2.4.2 - 2006-06-07 (stable) ---------------------------------------- Notes: - fix double escaping of arg_separator when php.ini's arg_separator.output = "&" Version 2.4.2 - 2006-06-07 (stable) ---------------------------------------- Notes: - fix double escaping of arg_separator when php.ini's arg_separator.output = "&" Version 2.4.1 - 2006-05-06 (stable) ---------------------------------------- Notes: - more flexible implementation of the factory pattern allowing people to use custom renderer classes that are not part of the Pager package (thanks to Martin Jansen) Version 2.4.0 - 2006-04-23 (stable) ---------------------------------------- Notes: - added host to CURRENT_PATHNAME constant - added accesskey option (if true, accesskey attributes are added to the links) - fixed multibyte string issues with httpMethod==POST (bug #6812) - return empty array instead of FALSE in getPageData() on bad pageID (request #6986) - added Pager_HtmlWidgets class containing the methods getPerPageSelectBox() (moved from Pager_Common) and getPageSelectBox() (new, request #6998). The class is lazy-loaded when calling one of the two above methods from Pager. - Improved rewriteCountQuery() function in the Pager Wrapper. - added getOption($name) and getOptions() methods (request #7413) - changed _setOptions() [private] to setOptions() [public] - added build() to refresh the links and the paged data after a new call to setOptions() - added 'attributes' option to set extra attributes for the <a> tag (request #7452) Version 2.3.6 - 2006-02-03 (stable) ---------------------------------------- Notes: - fixed bug #6680: error with fileName parameter having an extra "%" character Version 2.3.5 - 2006-01-20 (stable) ---------------------------------------- Notes: - remove flicker (caused by href="#") during POST requests (request #6005) - added "formID" option to reuse an existing form in POST requests (thanks to Marc Veldman) - fixed bug #6529: problem with fields with quotes during POST requests Version 2.3.4 - 2005-09-28 (stable) ---------------------------------------- Notes: - changed license to BSD - fixed bug #4897 (multibyte chars not handled correctly) Version 2.3.3 - 2005-07-04 (stable) ---------------------------------------- Notes: - improved Pager_Wrapper and added tests - urlencoded square brackets (bug #4337) NB: We recommend that users of Pager < 2.3.0 immediately upgrade the package, otherwise they might be susceptible to XSS attacks Version 2.3.2 - 2005-06-03 (stable) ---------------------------------------- Notes: - autodetect HTTP method used, when not specified, instead of forcing "GET" (bug #4277) - added "altFirst" and "altLast" options to set the "title" attribute of the first and last page links Version 2.3.1 - 2005-05-02 (stable) ---------------------------------------- Notes: - fixed various issues with __http_build_query() and escaped entities - if the value of "arg_separator.output" in php.ini is "&", don't encode it again - tweaked Pager_Wrapper query rewriting function, now it is fully case insensitive Version 2.3.0 - 2005-04-22 (stable) ---------------------------------------- Notes: - tweaked Pager_Wrapper query rewriting function Version 2.3.0RC2 - 2005-04-06 (beta) ---------------------------------------- Notes: - fixed possible querystring duplication with front controllers Version 2.3.0RC1 - 2005-04-01 (beta) ---------------------------------------- Notes: - internal refactoring: added POST support: set the preferred http method ('GET' or 'POST') with the 'httpMethod' option. - used $_GET instead of reparsing the querystring [thanks to Nikolas 'Atrus' Coukouma] (fixed bugs #3450, #3878 and #3451) - added 'importQuery' boolean option to ignore the url vars entirely (bug #3449) - added 'excludeVars' array option to selectively exclude some url vars (bug #2461) - countless code optimizations - added many new test cases to the testsuite Version 2.2.7 - 2005-03-18 (stable) ---------------------------------------- Notes: - added Pager_Wrapper_Eclipse() function in the /examples/Pager_Wrapper example (thanks to Matte Edens) - added support for statements with subqueries in the Pager Wrappers (thanks to Tobias Kuckuck) - fixed bug #3451 (arrays in extraVars not handled correctly) Version 2.2.6 - 2005-02-04 (stable) ---------------------------------------- Notes: - better 'currentPage' option support (thanks to Andrew Nagy) - fixed typo (thanks to Massimiliano Arione) Version 2.2.5 - 2005-01-17 (stable) ---------------------------------------- Notes: - allowed use of a javascript function in the fileName [bugs #2555 and #2754] - added Pager_Wrapper_DBDO() function in the /examples/Pager_Wrapper example (thanks to garak AT studenti DOT it) - replaced urlencode() with htmlentities() because it was too aggressive [bugs #2908, #3043 and #3212] - added 'currentPage' option (patch by Kendrick Vargas) Version 2.2.4 - 2004-11-20 (stable) ---------------------------------------- Notes: - fixed "Notice: Undefined property: _totalPages" [bug #2714] - enforce errors (which weren't displayed at all) - fixed Pager_Wrapper (examples dir) with GROUP BY queries - changed $_GET to $_REQUEST. POST values should be valid too, now. - Pager can be used on a DirectoryIndex script, now (patch by ieure) [bug #2617] Version 2.2.3 - 2004-08-17 (stable) ---------------------------------------- Notes: - just the last one of a set of array values given as GET parameters (i.e. site.php?foo[]=1&foo[]=2&foo[]=3) was carried on (bug #1904). - make 4th parameter of getPerPageSelectBox() an array, and add an "attribute" parameter to allow extra attributes for the select tag. - added an example to show how this class can be used with big database resultsets efficiently. - prevent XSS attacks (bug #2131), thanks to sou_sk at nifty dot com Version 2.2.2 - 2004-05-18 (stable) ---------------------------------------- Notes: - set correct selected value for getPerPageSelectBox even when "useSession" option is false (bug #1263). - added two parameters to getPerPageSelectBox(): * $showAllData (if true, an <option> to show all the data is displayed in the generated <select>); * $optionText (text to show in each <option>; use '%d' where you want to see the number of pages selected) - added showAllText option for alternate text in the $showAllData <option> (the default is the number of total items). - fixed getPageData() when $pageID is specified (bug #1377) (thanks to Ian Eure) - added tests for getPageData() - avoid duplicate vars in querystring when using 'extraVars' option (bug #1383) (thanks to pauluz at gazeta dot pl) Version 2.2.1 - 2004-04-15 (stable) ---------------------------------------- Notes: - PHP5 compatibility (fixed bug #812) - Forced ucfirst() on filename too Version 2.2.0 - 2004-01-23 (stable) ---------------------------------------- Notes: - Fixed handling of errors raised in common base class - Added an 'extraVars' option to add vars to the querystring - Added <link> tags building (patch by Joerg Bruckmann) - Fixed Bug #589 (common.php raise a notice if the querystring has no '=' character) - Use '&' instead of '&' in urls for better XHTML conformance Version 2.1.0 - 2003-12-22 (stable) ---------------------------------------- Notes: - Added getPageRangeByPageId() - Fix getOffsetByPageId() in Pager_Jumping when totalItems == 0. - Fix getOffsetByPageId() in Pager_Sliding for BC with Pager 1.x and Pager_Jumping. N.B.: its previous (not-indended) behaviour is now provided by the new getPageRangeByPageId() method. - Fix isFirstPage() when totalItems == 0 - Added test suite. Version 2.0 - 2003-09-10 (stable) ---------------------------------------- Notes: - New major version. - Pager and Pager_Sliding are now merged in the same package. Every option available in Pager_Sliding is now also available in Pager. The API is the same as the old one, BC is kept 100%. - Switch between "Jumping" and "Sliding" window mode just setting an option. - Improved error handling. Version 1.0.8 - 2003-09-10 (stable) ---------------------------------------- Notes: - Minor patch for script_name vs php_self (not included in v.1.0.7) - Prevent URL modification Version 1.0.7 - 2002-12-01 (stable) ---------------------------------------- Notes: Minor patch for script_name vs php_self Version 1.0.6 - 2002-09-08 (stable) ---------------------------------------- Notes: Updated to no longer require an array of data. Now can be used with just a number of items. Thanks to Christian Dickmann for the patch. Version 1.0.5 - 2002-07-27 (stable) ---------------------------------------- Notes: Changed getCurrentPage() to getCurrentPageID() and added getNextPageID() and getPreviousPageID() Version 1.0.4 - 2002-06-29 (stable) ---------------------------------------- Notes: Changed getCurrentPage() to getCurrentPageID() and added getNextPageID() and getPreviousPageID() Version 1.0.3 - 2002-05-31 (stable) ---------------------------------------- Notes: Couple of minor bugs Version 1.0.2 - 2002-05-31 (stable) ---------------------------------------- Notes: Applied patch from Christian Dickmann adding getCurrentPage(), numItems() and optional CSS class for links. Version 1.0.1 - 2002-05-27 (stable) ---------------------------------------- Notes: o No longer barfs with no querystring o Now works with associative data array Version 1.0 - 2002-02-09 (stable) ---------------------------------------- Notes: This is the initial release of the Pager package. | gzip -9 > /build/user/php-pager-2.4.2/debian/php-pager/usr/share/doc/php-pager/changelog.gz /bin/sh: -c: line 0: syntax error near unexpected token `(' /bin/sh: -c: line 0: `Version 2.4.2 - 2006-06-07 (stable) ---------------------------------------- Notes: - fix double escaping of arg_separator when php.ini's arg_separator.output = "&" Version 2.4.2 - 2006-06-07 (stable) ---------------------------------------- Notes: - fix double escaping of arg_separator when php.ini's arg_separator.output = "&" Version 2.4.1 - 2006-05-06 (stable) ---------------------------------------- Notes: - more flexible implementation of the factory pattern allowing people to use custom renderer classes that are not part of the Pager package (thanks to Martin Jansen) Version 2.4.0 - 2006-04-23 (stable) ---------------------------------------- Notes: - added host to CURRENT_PATHNAME constant - added accesskey option (if true, accesskey attributes are added to the links) - fixed multibyte string issues with httpMethod==POST (bug #6812) - return empty array instead of FALSE in getPageData() on bad pageID (request #6986) - added Pager_HtmlWidgets class containing the methods getPerPageSelectBox() (moved from Pager_Common) and getPageSelectBox() (new, request #6998). The class is lazy-loaded when calling one of the two above methods from Pager. - Improved rewriteCountQuery() function in the Pager Wrapper. - added getOption($name) and getOptions() methods (request #7413) - changed _setOptions() [private] to setOptions() [public] - added build() to refresh the links and the paged data after a new call to setOptions() - added 'attributes' option to set extra attributes for the <a> tag (request #7452) Version 2.3.6 - 2006-02-03 (stable) ---------------------------------------- Notes: - fixed bug #6680: error with fileName parameter having an extra "%" character Version 2.3.5 - 2006-01-20 (stable) ---------------------------------------- Notes: - remove flicker (caused by href="#") during POST requests (request #6005) - added "formID" option to reuse an existing form in POST requests (thanks to Marc Veldman) - fixed bug #6529: problem with fields with quotes during POST requests Version 2.3.4 - 2005-09-28 (stable) ---------------------------------------- Notes: - changed license to BSD - fixed bug #4897 (multibyte chars not handled correctly) Version 2.3.3 - 2005-07-04 (stable) ---------------------------------------- Notes: - improved Pager_Wrapper and added tests - urlencoded square brackets (bug #4337) NB: We recommend that users of Pager < 2.3.0 immediately upgrade the package, otherwise they might be susceptible to XSS attacks Version 2.3.2 - 2005-06-03 (stable) ---------------------------------------- Notes: - autodetect HTTP method used, when not specified, instead of forcing "GET" (bug #4277) - added "altFirst" and "altLast" options to set the "title" attribute of the first and last page links Version 2.3.1 - 2005-05-02 (stable) ---------------------------------------- Notes: - fixed various issues with __http_build_query() and escaped entities - if the value of "arg_separator.output" in php.ini is "&", don't encode it again - tweaked Pager_Wrapper query rewriting function, now it is fully case insensitive Version 2.3.0 - 2005-04-22 (stable) ---------------------------------------- Notes: - tweaked Pager_Wrapper query rewriting function Version 2.3.0RC2 - 2005-04-06 (beta) ---------------------------------------- Notes: - fixed possible querystring duplication with front controllers Version 2.3.0RC1 - 2005-04-01 (beta) ---------------------------------------- Notes: - internal refactoring: added POST support: set the preferred http method ('GET' or 'POST') with the 'httpMethod' option. - used $_GET instead of reparsing the querystring [thanks to Nikolas 'Atrus' Coukouma] (fixed bugs #3450, #3878 and #3451) - added 'importQuery' boolean option to ignore the url vars entirely (bug #3449) - added 'excludeVars' array option to selectively exclude some url vars (bug #2461) - countless code optimizations - added many new test cases to the testsuite Version 2.2.7 - 2005-03-18 (stable) ---------------------------------------- Notes: - added Pager_Wrapper_Eclipse() function in the /examples/Pager_Wrapper example (thanks to Matte Edens) - added support for statements with subqueries in the Pager Wrappers (thanks to Tobias Kuckuck) - fixed bug #3451 (arrays in extraVars not handled correctly) Version 2.2.6 - 2005-02-04 (stable) ---------------------------------------- Notes: - better 'currentPage' option support (thanks to Andrew Nagy) - fixed typo (thanks to Massimiliano Arione) Version 2.2.5 - 2005-01-17 (stable) ---------------------------------------- Notes: - allowed use of a javascript function in the fileName [bugs #2555 and #2754] - added Pager_Wrapper_DBDO() function in the /examples/Pager_Wrapper example (thanks to garak AT studenti DOT it) - replaced urlencode() with htmlentities() because it was too aggressive [bugs #2908, #3043 and #3212] - added 'currentPage' option (patch by Kendrick Vargas) Version 2.2.4 - 2004-11-20 (stable) ---------------------------------------- Notes: - fixed "Notice: Undefined property: _totalPages" [bug #2714] - enforce errors (which weren't displayed at all) - fixed Pager_Wrapper (examples dir) with GROUP BY queries - changed $_GET to $_REQUEST. POST values should be valid too, now. - Pager can be used on a DirectoryIndex script, now (patch by ieure) [bug #2617] Version 2.2.3 - 2004-08-17 (stable) ---------------------------------------- Notes: - just the last one of a set of array values given as GET parameters (i.e. site.php?foo[]=1&foo[]=2&foo[]=3) was carried on (bug #1904). - make 4th parameter of getPerPageSelectBox() an array, and add an "attribute" parameter to allow extra attributes for the select tag. - added an example to show how this class can be used with big database resultsets efficiently. - prevent XSS attacks (bug #2131), thanks to sou_sk at nifty dot com Version 2.2.2 - 2004-05-18 (stable) ---------------------------------------- Notes: - set correct selected value for getPerPageSelectBox even when "useSession" option is false (bug #1263). - added two parameters to getPerPageSelectBox(): * $showAllData (if true, an <option> to show all the data is displayed in the generated <select>); * $optionText (text to show in each <option>; use '%d' where you want to see the number of pages selected) - added showAllText option for alternate text in the $showAllData <option> (the default is the number of total items). - fixed getPageData() when $pageID is specified (bug #1377) (thanks to Ian Eure) - added tests for getPageData() - avoid duplicate vars in querystring when using 'extraVars' option (bug #1383) (thanks to pauluz at gazeta dot pl) Version 2.2.1 - 2004-04-15 (stable) ---------------------------------------- Notes: - PHP5 compatibility (fixed bug #812) - Forced ucfirst() on filename too Version 2.2.0 - 2004-01-23 (stable) ---------------------------------------- Notes: - Fixed handling of errors raised in common base class - Added an 'extraVars' option to add vars to the querystring - Added <link> tags building (patch by Joerg Bruckmann) - Fixed Bug #589 (common.php raise a notice if the querystring has no '=' character) - Use '&' instead of '&' in urls for better XHTML conformance Version 2.1.0 - 2003-12-22 (stable) ---------------------------------------- Notes: - Added getPageRangeByPageId() - Fix getOffsetByPageId() in Pager_Jumping when totalItems == 0. - Fix getOffsetByPageId() in Pager_Sliding for BC with Pager 1.x and Pager_Jumping. N.B.: its previous (not-indended) behaviour is now provided by the new getPageRangeByPageId() method. - Fix isFirstPage() when totalItems == 0 - Added test suite. Version 2.0 - 2003-09-10 (stable) ---------------------------------------- Notes: - New major version. - Pager and Pager_Sliding are now merged in the same package. Every option available in Pager_Sliding is now also available in Pager. The API is the same as the old one, BC is kept 100%. - Switch between "Jumping" and "Sliding" window mode just setting an option. - Improved error handling. Version 1.0.8 - 2003-09-10 (stable) ---------------------------------------- Notes: - Minor patch for script_name vs php_self (not included in v.1.0.7) - Prevent URL modification Version 1.0.7 - 2002-12-01 (stable) ---------------------------------------- Notes: Minor patch for script_name vs php_self Version 1.0.6 - 2002-09-08 (stable) ---------------------------------------- Notes: Updated to no longer require an array of data. Now can be used with just a number of items. Thanks to Christian Dickmann for the patch. Version 1.0.5 - 2002-07-27 (stable) ---------------------------------------- Notes: Changed getCurrentPage() to getCurrentPageID() and added getNextPageID() and getPreviousPageID() Version 1.0.4 - 2002-06-29 (stable) ---------------------------------------- Notes: Changed getCurrentPage() to getCurrentPageID() and added getNextPageID() and getPreviousPageID() Version 1.0.3 - 2002-05-31 (stable) ---------------------------------------- Notes: Couple of minor bugs Version 1.0.2 - 2002-05-31 (stable) ---------------------------------------- Notes: Applied patch from Christian Dickmann adding getCurrentPage(), numItems() and optional CSS class for links. Version 1.0.1 - 2002-05-27 (stable) ---------------------------------------- Notes: o No longer barfs with no querystring o Now works with associative data array Version 1.0 - 2002-02-09 (stable) ---------------------------------------- Notes: This is the initial release of the Pager package. | gzip -9 > /build/user/php-pager-2.4.2/debian/php-pager/usr/share/doc/php-pager/changelog.gz' make: *** [common-install-indep] Error 2 The full build log is available from http://people.debian.org/~lucas/logs/2007/08/06 About the archive rebuild: The rebuild was done on about 50 AMD64 nodes of the Grid'5000 platform, using a clean chroot containing a sid i386 environment. Internet was not accessible from the build systems. -- | Lucas Nussbaum | [EMAIL PROTECTED] http://www.lucas-nussbaum.net/ | | jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |