diff --git a/.gitignore b/.gitignore index 75c7dfd..db9fba7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,14 @@ +*spec~ clog -/wordpress-*.tar.gz +/wordpress-3.7.tar.gz +/wordpress-3.7.1.tar.gz +/wordpress-3.8.tar.gz +/wordpress-3.8.1.tar.gz +/wordpress-3.8.2.tar.gz +/wordpress-3.8.3.tar.gz +/wordpress-3.9.tar.gz +/wordpress-3.9.1.tar.gz +/wordpress-3.9.2.tar.gz +/wordpress-4.0.tar.gz +/wordpress-4.0.1.tar.gz +/wordpress-4.1.tar.gz diff --git a/sources b/sources index 80ec3c6..9f84c78 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wordpress-7.1.tar.gz) = 4bb95bddeb0d30778b9d744e42f7e21507ed3070fda3e34dd41918073618181e350cf77ea8dfaacc48c59a00f50273b4a1b7a6e4c43d2a81ccfd35f27df342bc +5adac1bfc61b793a1ca9bcb4d67b4d28 wordpress-4.1.tar.gz diff --git a/wordpress-3.9-no_swfupload.patch b/wordpress-3.9-no_swfupload.patch new file mode 100644 index 0000000..3d1395d --- /dev/null +++ b/wordpress-3.9-no_swfupload.patch @@ -0,0 +1,19 @@ +diff -up wordpress/wp-includes/script-loader.php.orig wordpress/wp-includes/script-loader.php +--- wordpress/wp-includes/script-loader.php.orig 2014-05-07 15:55:26.485228222 +0200 ++++ wordpress/wp-includes/script-loader.php 2014-05-07 15:55:18.019198073 +0200 +@@ -273,15 +273,6 @@ function wp_default_scripts( &$scripts ) + $scripts->add( 'wp-plupload', "/wp-includes/js/plupload/wp-plupload$suffix.js", array( 'plupload', 'jquery', 'json2', 'media-models' ), false, 1 ); + did_action( 'init' ) && $scripts->localize( 'wp-plupload', 'pluploadL10n', $uploader_l10n ); + +- // keep 'swfupload' for back-compat. +- $scripts->add( 'swfupload', '/wp-includes/js/swfupload/swfupload.js', array(), '2201-20110113'); +- $scripts->add( 'swfupload-swfobject', '/wp-includes/js/swfupload/plugins/swfupload.swfobject.js', array('swfupload', 'swfobject'), '2201a'); +- $scripts->add( 'swfupload-queue', '/wp-includes/js/swfupload/plugins/swfupload.queue.js', array('swfupload'), '2201'); +- $scripts->add( 'swfupload-speed', '/wp-includes/js/swfupload/plugins/swfupload.speed.js', array('swfupload'), '2201'); +- $scripts->add( 'swfupload-all', false, array('swfupload', 'swfupload-swfobject', 'swfupload-queue'), '2201'); +- $scripts->add( 'swfupload-handlers', "/wp-includes/js/swfupload/handlers$suffix.js", array('swfupload-all', 'jquery'), '2201-20110524'); +- did_action( 'init' ) && $scripts->localize( 'swfupload-handlers', 'swfuploadL10n', $uploader_l10n ); +- + $scripts->add( 'comment-reply', "/wp-includes/js/comment-reply$suffix.js", array(), false, 1 ); + + $scripts->add( 'json2', "/wp-includes/js/json2$suffix.js", array(), '2011-02-23'); diff --git a/wordpress-5.4-config.patch b/wordpress-4.0-config.patch similarity index 58% rename from wordpress-5.4-config.patch rename to wordpress-4.0-config.patch index 4f94404..c2579b2 100644 --- a/wordpress-5.4-config.patch +++ b/wordpress-4.0-config.patch @@ -1,8 +1,8 @@ -diff -up wordpress/wp-config.php.rpm wordpress/wp-config.php ---- wordpress/wp-config.php.rpm 2020-10-20 15:05:26.351765085 +0200 -+++ wordpress/wp-config.php 2020-10-20 15:05:48.663684089 +0200 -@@ -66,6 +66,22 @@ define( 'NONCE_SALT', 'put your un - $table_prefix = 'wp_'; +diff -up wordpress/wp-config.php.orig wordpress/wp-config.php +--- wordpress/wp-config.php.orig 2014-09-08 13:12:36.525908423 +0200 ++++ wordpress/wp-config.php 2014-09-08 13:14:33.583402525 +0200 +@@ -62,6 +62,19 @@ define('NONCE_SALT', 'put your uni + $table_prefix = 'wp_'; /** + * See http://make.wordpress.org/core/2013/10/25/the-definitive-guide-to-disabling-auto-updates-in-wordpress-3-7 @@ -11,9 +11,6 @@ diff -up wordpress/wp-config.php.rpm wordpress/wp-config.php +/* Disable all file change, as RPM base installation are read-only */ +define('DISALLOW_FILE_MODS', true); + -+/* Please ensure that this is either 'direct', 'ssh2', 'ftpext', 'ftpsockets' or false */ -+define('FS_METHOD', 'direct'); -+ +/* Disable automatic updater, in case you want to allow + above FILE_MODS for plugins, themes, ... */ +define('AUTOMATIC_UPDATER_DISABLED', true); @@ -24,12 +21,12 @@ diff -up wordpress/wp-config.php.rpm wordpress/wp-config.php * For developers: WordPress debugging mode. * * Change this to true to enable the display of notices during development. -@@ -83,7 +99,7 @@ define( 'WP_DEBUG', false ); +@@ -74,7 +87,7 @@ define('WP_DEBUG', false); /** Absolute path to the WordPress directory. */ - if ( ! defined( 'ABSPATH' ) ) { -- define( 'ABSPATH', __DIR__ . '/' ); + if ( !defined('ABSPATH') ) +- define('ABSPATH', dirname(__FILE__) . '/'); + define('ABSPATH', '/usr/share/wordpress'); - } /** Sets up WordPress vars and included files. */ + require_once(ABSPATH . 'wp-settings.php'); diff --git a/wordpress-4.0-systemlibs.patch b/wordpress-4.0-systemlibs.patch new file mode 100644 index 0000000..9d16ee6 --- /dev/null +++ b/wordpress-4.0-systemlibs.patch @@ -0,0 +1,21 @@ +diff -up wordpress/wp-admin/includes/media.php.old wordpress/wp-admin/includes/media.php +--- wordpress/wp-admin/includes/media.php.old 2014-09-30 08:54:21.666519693 +0200 ++++ wordpress/wp-admin/includes/media.php 2014-09-30 08:55:11.247757421 +0200 +@@ -2907,7 +2907,7 @@ function wp_read_video_metadata( $file ) + $metadata = array(); + + if ( ! class_exists( 'getID3' ) ) +- require( ABSPATH . WPINC . '/ID3/getid3.php' ); ++ require( '/usr/share/php/getid3/getid3.php' ); + $id3 = new getID3(); + $data = $id3->analyze( $file ); + +@@ -2962,7 +2962,7 @@ function wp_read_audio_metadata( $file ) + $metadata = array(); + + if ( ! class_exists( 'getID3' ) ) +- require( ABSPATH . WPINC . '/ID3/getid3.php' ); ++ require( '/usr/share/php/getid3/getid3.php' ); + $id3 = new getID3(); + $data = $id3->analyze( $file ); + diff --git a/wordpress-4.0-tinymce_noflash.patch b/wordpress-4.0-tinymce_noflash.patch new file mode 100644 index 0000000..605df1c --- /dev/null +++ b/wordpress-4.0-tinymce_noflash.patch @@ -0,0 +1,23 @@ +diff -up wordpress/wp-includes/js/tinymce/plugins/media/plugin.js.rpm wordpress/wp-includes/js/tinymce/plugins/media/plugin.js +--- wordpress/wp-includes/js/tinymce/plugins/media/plugin.js.rpm 2014-08-22 01:53:18.000000000 +0200 ++++ wordpress/wp-includes/js/tinymce/plugins/media/plugin.js 2014-09-08 13:10:15.717314458 +0200 +@@ -44,10 +44,6 @@ tinymce.PluginManager.add('media', funct + return 'video/ogg'; + } + +- if (url.indexOf('.swf') != -1) { +- return 'application/x-shockwave-flash'; +- } +- + return ''; + } + +@@ -239,7 +235,7 @@ tinymce.PluginManager.add('media', funct + data.source1mime = guessMime(data.source1); + data.source2mime = guessMime(data.source2); + data.poster = editor.convertURL(data.poster, "poster"); +- data.flashPlayerUrl = editor.convertURL(url + '/moxieplayer.swf', "movie"); ++ data.flashPlayerUrl = false; + + tinymce.each(urlPatterns, function(pattern) { + var match, i, url; diff --git a/wordpress-4.1-mediaelement-noflash_silverlight.patch b/wordpress-4.1-mediaelement-noflash_silverlight.patch new file mode 100644 index 0000000..125eec4 --- /dev/null +++ b/wordpress-4.1-mediaelement-noflash_silverlight.patch @@ -0,0 +1,11 @@ +--- wordpress/wp-includes/js/mediaelement/mediaelement-and-player.min.js.orig 2014-12-22 06:38:12.716225091 +0100 ++++ wordpress/wp-includes/js/mediaelement/mediaelement-and-player.min.js 2014-12-22 06:39:30.045517161 +0100 +@@ -12,7 +12,7 @@ + * License: MIT + * + */ +-function onYouTubePlayerAPIReady(){mejs.YouTubeApi.iFrameReady()}function onYouTubePlayerReady(a){mejs.YouTubeApi.flashReady(a)}var mejs=mejs||{};mejs.version="2.16.2",mejs.meIndex=0,mejs.plugins={silverlight:[{version:[3,0],types:["video/mp4","video/m4v","video/mov","video/wmv","audio/wma","audio/m4a","audio/mp3","audio/wav","audio/mpeg"]}],flash:[{version:[9,0,124],types:["video/mp4","video/m4v","video/mov","video/flv","video/rtmp","video/x-flv","audio/flv","audio/x-flv","audio/mp3","audio/m4a","audio/mpeg","video/youtube","video/x-youtube","application/x-mpegURL"]}],youtube:[{version:null,types:["video/youtube","video/x-youtube","audio/youtube","audio/x-youtube"]}],vimeo:[{version:null,types:["video/vimeo","video/x-vimeo"]}]},mejs.Utility={encodeUrl:function(a){return encodeURIComponent(a)},escapeHTML:function(a){return a.toString().split("&").join("&").split("<").join("<").split('"').join(""")},absolutizeUrl:function(a){var b=document.createElement("div");return b.innerHTML='x',b.firstChild.href},getScriptPath:function(a){for(var b,c,d,e,f,g,h=0,i="",j="",k=document.getElementsByTagName("script"),l=k.length,m=a.length;l>h;h++){for(e=k[h].src,c=e.lastIndexOf("/"),c>-1?(g=e.substring(c+1),f=e.substring(0,c+1)):(g=e,f=""),b=0;m>b;b++)if(j=a[b],d=g.indexOf(j),d>-1){i=f;break}if(""!==i)break}return i},secondsToTimeCode:function(a,b,c,d){"undefined"==typeof c?c=!1:"undefined"==typeof d&&(d=25);var e=Math.floor(a/3600)%24,f=Math.floor(a/60)%60,g=Math.floor(a%60),h=Math.floor((a%1*d).toFixed(3)),i=(b||e>0?(10>e?"0"+e:e)+":":"")+(10>f?"0"+f:f)+":"+(10>g?"0"+g:g)+(c?":"+(10>h?"0"+h:h):"");return i},timeCodeToSeconds:function(a,b,c,d){"undefined"==typeof c?c=!1:"undefined"==typeof d&&(d=25);var e=a.split(":"),f=parseInt(e[0],10),g=parseInt(e[1],10),h=parseInt(e[2],10),i=0,j=0;return c&&(i=parseInt(e[3])/d),j=3600*f+60*g+h+i},convertSMPTEtoSeconds:function(a){if("string"!=typeof a)return!1;a=a.replace(",",".");var b=0,c=-1!=a.indexOf(".")?a.split(".")[1].length:0,d=1;a=a.split(":").reverse();for(var e=0;e0&&(d=Math.pow(60,e)),b+=Number(a[e])*d;return Number(b.toFixed(c))},removeSwf:function(a){var b=document.getElementById(a);b&&/object|embed/i.test(b.nodeName)&&(mejs.MediaFeatures.isIE?(b.style.display="none",function(){4==b.readyState?mejs.Utility.removeObjectInIE(a):setTimeout(arguments.callee,10)}()):b.parentNode.removeChild(b))},removeObjectInIE:function(a){var b=document.getElementById(a);if(b){for(var c in b)"function"==typeof b[c]&&(b[c]=null);b.parentNode.removeChild(b)}}},mejs.PluginDetector={hasPluginVersion:function(a,b){var c=this.plugins[a];return b[1]=b[1]||0,b[2]=b[2]||0,c[0]>b[0]||c[0]==b[0]&&c[1]>b[1]||c[0]==b[0]&&c[1]==b[1]&&c[2]>=b[2]?!0:!1},nav:window.navigator,ua:window.navigator.userAgent.toLowerCase(),plugins:[],addPlugin:function(a,b,c,d,e){this.plugins[a]=this.detectPlugin(b,c,d,e)},detectPlugin:function(a,b,c,d){var e,f,g,h=[0,0,0];if("undefined"!=typeof this.nav.plugins&&"object"==typeof this.nav.plugins[a]){if(e=this.nav.plugins[a].description,e&&("undefined"==typeof this.nav.mimeTypes||!this.nav.mimeTypes[b]||this.nav.mimeTypes[b].enabledPlugin))for(h=e.replace(a,"").replace(/^\s+/,"").replace(/\sr/gi,".").split("."),f=0;f0;)this.removeChild(b[0]);if("string"==typeof a)this.src=a;else{var c,d;for(c=0;c0&&null!==q[0].url&&this.getTypeFromFile(q[0].url).indexOf("audio")>-1&&(r.isVideo=!1),mejs.MediaFeatures.isBustedAndroid&&(a.canPlayType=function(a){return null!==a.match(/video\/(mp4|m4v)/gi)?"maybe":""}),!(!c||"auto"!==b.mode&&"auto_plugin"!==b.mode&&"native"!==b.mode||mejs.MediaFeatures.isBustedNativeHTTPS&&b.httpsBasicAuthSite===!0)){for(d||(o=document.createElement(r.isVideo?"video":"audio"),a.parentNode.insertBefore(o,a),a.style.display="none",r.htmlMediaElement=a=o),f=0;f0&&(r.url=q[0].url),r)},formatType:function(a,b){return a&&!b?this.getTypeFromFile(a):b&&~b.indexOf(";")?b.substr(0,b.indexOf(";")):b},getTypeFromFile:function(a){a=a.split("?")[0];var b=a.substring(a.lastIndexOf(".")+1).toLowerCase();return(/(mp4|m4v|ogg|ogv|m3u8|webm|webmv|flv|wmv|mpeg|mov)/gi.test(b)?"video":"audio")+"/"+this.getTypeFromExtension(b)},getTypeFromExtension:function(a){switch(a){case"mp4":case"m4v":case"m4a":return"mp4";case"webm":case"webma":case"webmv":return"webm";case"ogg":case"oga":case"ogv":return"ogg";default:return a}},createErrorMessage:function(a,b,c){var d=a.htmlMediaElement,e=document.createElement("div");e.className="me-cannotplay";try{e.style.width=d.width+"px",e.style.height=d.height+"px"}catch(f){}e.innerHTML=b.customError?b.customError:""!==c?'':''+mejs.i18n.t("Download File")+"",d.parentNode.insertBefore(e,d),d.style.display="none",b.error(d)},createPlugin:function(a,b,c,d,e,f){var g,h,i,j=a.htmlMediaElement,k=1,l=1,m="me_"+a.method+"_"+mejs.meIndex++,n=new mejs.PluginMediaElement(m,a.method,a.url),o=document.createElement("div");n.tagName=j.tagName;for(var p=0;p0?b.pluginWidth:b.videoWidth>0?b.videoWidth:null!==j.getAttribute("width")?j.getAttribute("width"):b.defaultVideoWidth,l=b.pluginHeight>0?b.pluginHeight:b.videoHeight>0?b.videoHeight:null!==j.getAttribute("height")?j.getAttribute("height"):b.defaultVideoHeight,k=mejs.Utility.encodeUrl(k),l=mejs.Utility.encodeUrl(l)):b.enablePluginDebug&&(k=320,l=240),n.success=b.success,mejs.MediaPluginBridge.registerPluginElement(m,n,j),o.className="me-plugin",o.id=m+"_container",a.isVideo?j.parentNode.insertBefore(o,j):document.body.insertBefore(o,document.body.childNodes[0]),i=["id="+m,"isvideo="+(a.isVideo?"true":"false"),"autoplay="+(d?"true":"false"),"preload="+e,"width="+k,"startvolume="+b.startVolume,"timerrate="+b.timerRate,"flashstreamer="+b.flashStreamer,"height="+l,"pseudostreamstart="+b.pseudoStreamingStartQueryParam],null!==a.url&&i.push("flash"==a.method?"file="+mejs.Utility.encodeUrl(a.url):"file="+a.url),b.enablePluginDebug&&i.push("debug=true"),b.enablePluginSmoothing&&i.push("smoothing=true"),b.enablePseudoStreaming&&i.push("pseudostreaming=true"),f&&i.push("controls=true"),b.pluginVars&&(i=i.concat(b.pluginVars)),a.method){case"silverlight":o.innerHTML='';break;case"flash":mejs.MediaFeatures.isIE?(g=document.createElement("div"),o.appendChild(g),g.outerHTML=''):o.innerHTML='';break;case"youtube":var r;-1!=a.url.lastIndexOf("youtu.be")?(r=a.url.substr(a.url.lastIndexOf("/")+1),-1!=r.indexOf("?")&&(r=r.substr(0,r.indexOf("?")))):r=a.url.substr(a.url.lastIndexOf("=")+1),youtubeSettings={container:o,containerId:o.id,pluginMediaElement:n,pluginId:m,videoId:r,height:l,width:k},mejs.PluginDetector.hasPluginVersion("flash",[10,0,0])?mejs.YouTubeApi.createFlash(youtubeSettings):mejs.YouTubeApi.enqueueIframe(youtubeSettings);break;case"vimeo":var s=m+"_player";if(n.vimeoid=a.url.substr(a.url.lastIndexOf("/")+1),o.innerHTML='',"function"==typeof $f){var t=$f(o.childNodes[0]);t.addEvent("ready",function(){function a(a,b,c,d){var e={type:c,target:b};"timeupdate"==c&&(b.currentTime=e.currentTime=d.seconds,b.duration=e.duration=d.duration),b.dispatchEvent(e.type,e)}$.extend(t,{playVideo:function(){t.api("play")},stopVideo:function(){t.api("unload")},pauseVideo:function(){t.api("pause")},seekTo:function(a){t.api("seekTo",a)},setVolume:function(a){t.api("setVolume",a)},setMuted:function(a){a?(t.lastVolume=t.api("getVolume"),t.api("setVolume",0)):(t.api("setVolume",t.lastVolume),delete t.lastVolume)}}),t.addEvent("play",function(){a(t,n,"play"),a(t,n,"playing")}),t.addEvent("pause",function(){a(t,n,"pause")}),t.addEvent("finish",function(){a(t,n,"ended")}),t.addEvent("playProgress",function(b){a(t,n,"timeupdate",b)}),n.pluginElement=o,n.pluginApi=t,mejs.MediaPluginBridge.initPlugin(m)})}else console.warn("You need to include froogaloop for vimeo to work")}return j.style.display="none",j.removeAttribute("autoplay"),n},updateNative:function(a,b){var c,d=a.htmlMediaElement;for(c in mejs.HtmlMediaElement)d[c]=mejs.HtmlMediaElement[c];return b.success(d,d),d}},mejs.YouTubeApi={isIframeStarted:!1,isIframeLoaded:!1,loadIframeApi:function(){if(!this.isIframeStarted){var a=document.createElement("script");a.src="//www.youtube.com/player_api";var b=document.getElementsByTagName("script")[0];b.parentNode.insertBefore(a,b),this.isIframeStarted=!0}},iframeQueue:[],enqueueIframe:function(a){this.isLoaded?this.createIframe(a):(this.loadIframeApi(),this.iframeQueue.push(a))},createIframe:function(a){var b=a.pluginMediaElement,c=new YT.Player(a.containerId,{height:a.height,width:a.width,videoId:a.videoId,playerVars:{controls:0},events:{onReady:function(){a.pluginMediaElement.pluginApi=c,mejs.MediaPluginBridge.initPlugin(a.pluginId),setInterval(function(){mejs.YouTubeApi.createEvent(c,b,"timeupdate")},250)},onStateChange:function(a){mejs.YouTubeApi.handleStateChange(a.data,c,b)}}})},createEvent:function(a,b,c){var d={type:c,target:b};if(a&&a.getDuration){b.currentTime=d.currentTime=a.getCurrentTime(),b.duration=d.duration=a.getDuration(),d.paused=b.paused,d.ended=b.ended,d.muted=a.isMuted(),d.volume=a.getVolume()/100,d.bytesTotal=a.getVideoBytesTotal(),d.bufferedBytes=a.getVideoBytesLoaded();var e=d.bufferedBytes/d.bytesTotal*d.duration;d.target.buffered=d.buffered={start:function(){return 0},end:function(){return e},length:1}}b.dispatchEvent(d.type,d)},iFrameReady:function(){for(this.isLoaded=!0,this.isIframeLoaded=!0;this.iframeQueue.length>0;){var a=this.iframeQueue.pop();this.createIframe(a)}},flashPlayers:{},createFlash:function(a){this.flashPlayers[a.pluginId]=a;var b,c="//www.youtube.com/apiplayer?enablejsapi=1&playerapiid="+a.pluginId+"&version=3&autoplay=0&controls=0&modestbranding=1&loop=0";mejs.MediaFeatures.isIE?(b=document.createElement("div"),a.container.appendChild(b),b.outerHTML=''):a.container.innerHTML=''},flashReady:function(a){var b=this.flashPlayers[a],c=document.getElementById(a),d=b.pluginMediaElement;d.pluginApi=d.pluginElement=c,mejs.MediaPluginBridge.initPlugin(a),c.cueVideoById(b.videoId);var e=b.containerId+"_callback";window[e]=function(a){mejs.YouTubeApi.handleStateChange(a,c,d)},c.addEventListener("onStateChange",e),setInterval(function(){mejs.YouTubeApi.createEvent(c,d,"timeupdate")},250),mejs.YouTubeApi.createEvent(c,d,"canplay")},handleStateChange:function(a,b,c){switch(a){case-1:c.paused=!0,c.ended=!0,mejs.YouTubeApi.createEvent(b,c,"loadedmetadata");break;case 0:c.paused=!1,c.ended=!0,mejs.YouTubeApi.createEvent(b,c,"ended");break;case 1:c.paused=!1,c.ended=!1,mejs.YouTubeApi.createEvent(b,c,"play"),mejs.YouTubeApi.createEvent(b,c,"playing");break;case 2:c.paused=!0,c.ended=!1,mejs.YouTubeApi.createEvent(b,c,"pause");break;case 3:mejs.YouTubeApi.createEvent(b,c,"progress");break;case 5:}}},window.mejs=mejs,window.MediaElement=mejs.MediaElement,function(a,b){"use strict";var c={locale:{language:b.i18n&&b.i18n.locale.language||"",strings:b.i18n&&b.i18n.locale.strings||{}},ietf_lang_regex:/^(x\-)?[a-z]{2,}(\-\w{2,})?(\-\w{2,})?$/,methods:{}};c.getLanguage=function(){var a=c.locale.language||window.navigator.userLanguage||window.navigator.language;return c.ietf_lang_regex.exec(a)?a:null},"undefined"!=typeof mejsL10n&&(c.locale.language=mejsL10n.language),c.methods.checkPlain=function(a){var b,c,d={"&":"&",'"':""","<":"<",">":">"};a=String(a);for(b in d)d.hasOwnProperty(b)&&(c=new RegExp(b,"g"),a=a.replace(c,d[b]));return a},c.methods.t=function(a,b){return c.locale.strings&&c.locale.strings[b.context]&&c.locale.strings[b.context][a]&&(a=c.locale.strings[b.context][a]),c.methods.checkPlain(a)},c.t=function(a,b){if("string"==typeof a&&a.length>0){var d=c.getLanguage();return b=b||{context:d},c.methods.t(a,b)}throw{name:"InvalidArgumentException",message:"First argument is either not a string or empty."}},b.i18n=c}(document,mejs),function(a){"use strict";"undefined"!=typeof mejsL10n&&(a[mejsL10n.language]=mejsL10n.strings)}(mejs.i18n.locale.strings),/*! ++function onYouTubePlayerAPIReady(){mejs.YouTubeApi.iFrameReady()}function onYouTubePlayerReady(a){mejs.YouTubeApi.flashReady(a)}var mejs=mejs||{};mejs.version="2.16.2",mejs.meIndex=0,mejs.plugins={silverlight:[{version:[3,0],types:["video/mp4","video/m4v","video/mov","video/wmv","audio/wma","audio/m4a","audio/mp3","audio/wav","audio/mpeg"]}],flash:[{version:[9,0,124],types:["video/mp4","video/m4v","video/mov","video/flv","video/rtmp","video/x-flv","audio/flv","audio/x-flv","audio/mp3","audio/m4a","audio/mpeg","video/youtube","video/x-youtube","application/x-mpegURL"]}],youtube:[{version:null,types:["video/youtube","video/x-youtube","audio/youtube","audio/x-youtube"]}],vimeo:[{version:null,types:["video/vimeo","video/x-vimeo"]}]},mejs.Utility={encodeUrl:function(a){return encodeURIComponent(a)},escapeHTML:function(a){return a.toString().split("&").join("&").split("<").join("<").split('"').join(""")},absolutizeUrl:function(a){var b=document.createElement("div");return b.innerHTML='x',b.firstChild.href},getScriptPath:function(a){for(var b,c,d,e,f,g,h=0,i="",j="",k=document.getElementsByTagName("script"),l=k.length,m=a.length;l>h;h++){for(e=k[h].src,c=e.lastIndexOf("/"),c>-1?(g=e.substring(c+1),f=e.substring(0,c+1)):(g=e,f=""),b=0;m>b;b++)if(j=a[b],d=g.indexOf(j),d>-1){i=f;break}if(""!==i)break}return i},secondsToTimeCode:function(a,b,c,d){"undefined"==typeof c?c=!1:"undefined"==typeof d&&(d=25);var e=Math.floor(a/3600)%24,f=Math.floor(a/60)%60,g=Math.floor(a%60),h=Math.floor((a%1*d).toFixed(3)),i=(b||e>0?(10>e?"0"+e:e)+":":"")+(10>f?"0"+f:f)+":"+(10>g?"0"+g:g)+(c?":"+(10>h?"0"+h:h):"");return i},timeCodeToSeconds:function(a,b,c,d){"undefined"==typeof c?c=!1:"undefined"==typeof d&&(d=25);var e=a.split(":"),f=parseInt(e[0],10),g=parseInt(e[1],10),h=parseInt(e[2],10),i=0,j=0;return c&&(i=parseInt(e[3])/d),j=3600*f+60*g+h+i},convertSMPTEtoSeconds:function(a){if("string"!=typeof a)return!1;a=a.replace(",",".");var b=0,c=-1!=a.indexOf(".")?a.split(".")[1].length:0,d=1;a=a.split(":").reverse();for(var e=0;e0&&(d=Math.pow(60,e)),b+=Number(a[e])*d;return Number(b.toFixed(c))},removeSwf:function(a){var b=document.getElementById(a);b&&/object|embed/i.test(b.nodeName)&&(mejs.MediaFeatures.isIE?(b.style.display="none",function(){4==b.readyState?mejs.Utility.removeObjectInIE(a):setTimeout(arguments.callee,10)}()):b.parentNode.removeChild(b))},removeObjectInIE:function(a){var b=document.getElementById(a);if(b){for(var c in b)"function"==typeof b[c]&&(b[c]=null);b.parentNode.removeChild(b)}}},mejs.PluginDetector={hasPluginVersion:function(a,b){var c=this.plugins[a];return b[1]=b[1]||0,b[2]=b[2]||0,c[0]>b[0]||c[0]==b[0]&&c[1]>b[1]||c[0]==b[0]&&c[1]==b[1]&&c[2]>=b[2]?!0:!1},nav:window.navigator,ua:window.navigator.userAgent.toLowerCase(),plugins:[],addPlugin:function(a,b,c,d,e){this.plugins[a]=this.detectPlugin(b,c,d,e)},detectPlugin:function(a,b,c,d){var e,f,g,h=[0,0,0];if("undefined"!=typeof this.nav.plugins&&"object"==typeof this.nav.plugins[a]){if(e=this.nav.plugins[a].description,e&&("undefined"==typeof this.nav.mimeTypes||!this.nav.mimeTypes[b]||this.nav.mimeTypes[b].enabledPlugin))for(h=e.replace(a,"").replace(/^\s+/,"").replace(/\sr/gi,".").split("."),f=0;f0;)this.removeChild(b[0]);if("string"==typeof a)this.src=a;else{var c,d;for(c=0;c0&&null!==q[0].url&&this.getTypeFromFile(q[0].url).indexOf("audio")>-1&&(r.isVideo=!1),mejs.MediaFeatures.isBustedAndroid&&(a.canPlayType=function(a){return null!==a.match(/video\/(mp4|m4v)/gi)?"maybe":""}),!(!c||"auto"!==b.mode&&"auto_plugin"!==b.mode&&"native"!==b.mode||mejs.MediaFeatures.isBustedNativeHTTPS&&b.httpsBasicAuthSite===!0)){for(d||(o=document.createElement(r.isVideo?"video":"audio"),a.parentNode.insertBefore(o,a),a.style.display="none",r.htmlMediaElement=a=o),f=0;f0&&(r.url=q[0].url),r)},formatType:function(a,b){return a&&!b?this.getTypeFromFile(a):b&&~b.indexOf(";")?b.substr(0,b.indexOf(";")):b},getTypeFromFile:function(a){a=a.split("?")[0];var b=a.substring(a.lastIndexOf(".")+1).toLowerCase();return(/(mp4|m4v|ogg|ogv|m3u8|webm|webmv|flv|wmv|mpeg|mov)/gi.test(b)?"video":"audio")+"/"+this.getTypeFromExtension(b)},getTypeFromExtension:function(a){switch(a){case"mp4":case"m4v":case"m4a":return"mp4";case"webm":case"webma":case"webmv":return"webm";case"ogg":case"oga":case"ogv":return"ogg";default:return a}},createErrorMessage:function(a,b,c){var d=a.htmlMediaElement,e=document.createElement("div");e.className="me-cannotplay";try{e.style.width=d.width+"px",e.style.height=d.height+"px"}catch(f){}e.innerHTML=b.customError?b.customError:""!==c?'':''+mejs.i18n.t("Download File")+"",d.parentNode.insertBefore(e,d),d.style.display="none",b.error(d)},createPlugin:function(a,b,c,d,e,f){var g,h,i,j=a.htmlMediaElement,k=1,l=1,m="me_"+a.method+"_"+mejs.meIndex++,n=new mejs.PluginMediaElement(m,a.method,a.url),o=document.createElement("div");n.tagName=j.tagName;for(var p=0;p0?b.pluginWidth:b.videoWidth>0?b.videoWidth:null!==j.getAttribute("width")?j.getAttribute("width"):b.defaultVideoWidth,l=b.pluginHeight>0?b.pluginHeight:b.videoHeight>0?b.videoHeight:null!==j.getAttribute("height")?j.getAttribute("height"):b.defaultVideoHeight,k=mejs.Utility.encodeUrl(k),l=mejs.Utility.encodeUrl(l)):b.enablePluginDebug&&(k=320,l=240),n.success=b.success,mejs.MediaPluginBridge.registerPluginElement(m,n,j),o.className="me-plugin",o.id=m+"_container",a.isVideo?j.parentNode.insertBefore(o,j):document.body.insertBefore(o,document.body.childNodes[0]),i=["id="+m,"isvideo="+(a.isVideo?"true":"false"),"autoplay="+(d?"true":"false"),"preload="+e,"width="+k,"startvolume="+b.startVolume,"timerrate="+b.timerRate,"flashstreamer="+b.flashStreamer,"height="+l,"pseudostreamstart="+b.pseudoStreamingStartQueryParam],null!==a.url&&i.push("flash"==a.method?"file="+mejs.Utility.encodeUrl(a.url):"file="+a.url),b.enablePluginDebug&&i.push("debug=true"),b.enablePluginSmoothing&&i.push("smoothing=true"),b.enablePseudoStreaming&&i.push("pseudostreaming=true"),f&&i.push("controls=true"),b.pluginVars&&(i=i.concat(b.pluginVars)),a.method){case"silverlight":o.innerHTML='';break;case"flash":mejs.MediaFeatures.isIE?(g=document.createElement("div"),o.appendChild(g),g.outerHTML=''):o.innerHTML='';break;case"youtube":var r;-1!=a.url.lastIndexOf("youtu.be")?(r=a.url.substr(a.url.lastIndexOf("/")+1),-1!=r.indexOf("?")&&(r=r.substr(0,r.indexOf("?")))):r=a.url.substr(a.url.lastIndexOf("=")+1),youtubeSettings={container:o,containerId:o.id,pluginMediaElement:n,pluginId:m,videoId:r,height:l,width:k},mejs.PluginDetector.hasPluginVersion("flash",[10,0,0])?mejs.YouTubeApi.createFlash(youtubeSettings):mejs.YouTubeApi.enqueueIframe(youtubeSettings);break;case"vimeo":var s=m+"_player";if(n.vimeoid=a.url.substr(a.url.lastIndexOf("/")+1),o.innerHTML='',"function"==typeof $f){var t=$f(o.childNodes[0]);t.addEvent("ready",function(){function a(a,b,c,d){var e={type:c,target:b};"timeupdate"==c&&(b.currentTime=e.currentTime=d.seconds,b.duration=e.duration=d.duration),b.dispatchEvent(e.type,e)}$.extend(t,{playVideo:function(){t.api("play")},stopVideo:function(){t.api("unload")},pauseVideo:function(){t.api("pause")},seekTo:function(a){t.api("seekTo",a)},setVolume:function(a){t.api("setVolume",a)},setMuted:function(a){a?(t.lastVolume=t.api("getVolume"),t.api("setVolume",0)):(t.api("setVolume",t.lastVolume),delete t.lastVolume)}}),t.addEvent("play",function(){a(t,n,"play"),a(t,n,"playing")}),t.addEvent("pause",function(){a(t,n,"pause")}),t.addEvent("finish",function(){a(t,n,"ended")}),t.addEvent("playProgress",function(b){a(t,n,"timeupdate",b)}),n.pluginElement=o,n.pluginApi=t,mejs.MediaPluginBridge.initPlugin(m)})}else console.warn("You need to include froogaloop for vimeo to work")}return j.style.display="none",j.removeAttribute("autoplay"),n},updateNative:function(a,b){var c,d=a.htmlMediaElement;for(c in mejs.HtmlMediaElement)d[c]=mejs.HtmlMediaElement[c];return b.success(d,d),d}},mejs.YouTubeApi={isIframeStarted:!1,isIframeLoaded:!1,loadIframeApi:function(){if(!this.isIframeStarted){var a=document.createElement("script");a.src="//www.youtube.com/player_api";var b=document.getElementsByTagName("script")[0];b.parentNode.insertBefore(a,b),this.isIframeStarted=!0}},iframeQueue:[],enqueueIframe:function(a){this.isLoaded?this.createIframe(a):(this.loadIframeApi(),this.iframeQueue.push(a))},createIframe:function(a){var b=a.pluginMediaElement,c=new YT.Player(a.containerId,{height:a.height,width:a.width,videoId:a.videoId,playerVars:{controls:0},events:{onReady:function(){a.pluginMediaElement.pluginApi=c,mejs.MediaPluginBridge.initPlugin(a.pluginId),setInterval(function(){mejs.YouTubeApi.createEvent(c,b,"timeupdate")},250)},onStateChange:function(a){mejs.YouTubeApi.handleStateChange(a.data,c,b)}}})},createEvent:function(a,b,c){var d={type:c,target:b};if(a&&a.getDuration){b.currentTime=d.currentTime=a.getCurrentTime(),b.duration=d.duration=a.getDuration(),d.paused=b.paused,d.ended=b.ended,d.muted=a.isMuted(),d.volume=a.getVolume()/100,d.bytesTotal=a.getVideoBytesTotal(),d.bufferedBytes=a.getVideoBytesLoaded();var e=d.bufferedBytes/d.bytesTotal*d.duration;d.target.buffered=d.buffered={start:function(){return 0},end:function(){return e},length:1}}b.dispatchEvent(d.type,d)},iFrameReady:function(){for(this.isLoaded=!0,this.isIframeLoaded=!0;this.iframeQueue.length>0;){var a=this.iframeQueue.pop();this.createIframe(a)}},flashPlayers:{},createFlash:function(a){this.flashPlayers[a.pluginId]=a;var b,c="//www.youtube.com/apiplayer?enablejsapi=1&playerapiid="+a.pluginId+"&version=3&autoplay=0&controls=0&modestbranding=1&loop=0";mejs.MediaFeatures.isIE?(b=document.createElement("div"),a.container.appendChild(b),b.outerHTML=''):a.container.innerHTML=''},flashReady:function(a){var b=this.flashPlayers[a],c=document.getElementById(a),d=b.pluginMediaElement;d.pluginApi=d.pluginElement=c,mejs.MediaPluginBridge.initPlugin(a),c.cueVideoById(b.videoId);var e=b.containerId+"_callback";window[e]=function(a){mejs.YouTubeApi.handleStateChange(a,c,d)},c.addEventListener("onStateChange",e),setInterval(function(){mejs.YouTubeApi.createEvent(c,d,"timeupdate")},250),mejs.YouTubeApi.createEvent(c,d,"canplay")},handleStateChange:function(a,b,c){switch(a){case-1:c.paused=!0,c.ended=!0,mejs.YouTubeApi.createEvent(b,c,"loadedmetadata");break;case 0:c.paused=!1,c.ended=!0,mejs.YouTubeApi.createEvent(b,c,"ended");break;case 1:c.paused=!1,c.ended=!1,mejs.YouTubeApi.createEvent(b,c,"play"),mejs.YouTubeApi.createEvent(b,c,"playing");break;case 2:c.paused=!0,c.ended=!1,mejs.YouTubeApi.createEvent(b,c,"pause");break;case 3:mejs.YouTubeApi.createEvent(b,c,"progress");break;case 5:}}},window.mejs=mejs,window.MediaElement=mejs.MediaElement,function(a,b){"use strict";var c={locale:{language:b.i18n&&b.i18n.locale.language||"",strings:b.i18n&&b.i18n.locale.strings||{}},ietf_lang_regex:/^(x\-)?[a-z]{2,}(\-\w{2,})?(\-\w{2,})?$/,methods:{}};c.getLanguage=function(){var a=c.locale.language||window.navigator.userLanguage||window.navigator.language;return c.ietf_lang_regex.exec(a)?a:null},"undefined"!=typeof mejsL10n&&(c.locale.language=mejsL10n.language),c.methods.checkPlain=function(a){var b,c,d={"&":"&",'"':""","<":"<",">":">"};a=String(a);for(b in d)d.hasOwnProperty(b)&&(c=new RegExp(b,"g"),a=a.replace(c,d[b]));return a},c.methods.t=function(a,b){return c.locale.strings&&c.locale.strings[b.context]&&c.locale.strings[b.context][a]&&(a=c.locale.strings[b.context][a]),c.methods.checkPlain(a)},c.t=function(a,b){if("string"==typeof a&&a.length>0){var d=c.getLanguage();return b=b||{context:d},c.methods.t(a,b)}throw{name:"InvalidArgumentException",message:"First argument is either not a string or empty."}},b.i18n=c}(document,mejs),function(a){"use strict";"undefined"!=typeof mejsL10n&&(a[mejsL10n.language]=mejsL10n.strings)}(mejs.i18n.locale.strings),/*! + * + * MediaElementPlayer + * http://mediaelementjs.com/ diff --git a/wordpress-4.1-noupdate.patch b/wordpress-4.1-noupdate.patch new file mode 100644 index 0000000..9578b76 --- /dev/null +++ b/wordpress-4.1-noupdate.patch @@ -0,0 +1,86 @@ +diff -up wordpress/wp-admin/includes/class-wp-upgrader.php.rpm wordpress/wp-admin/includes/class-wp-upgrader.php +--- wordpress/wp-admin/includes/class-wp-upgrader.php.rpm 2014-12-16 20:54:23.000000000 +0100 ++++ wordpress/wp-admin/includes/class-wp-upgrader.php 2014-12-22 06:46:28.487097611 +0100 +@@ -2141,6 +2141,9 @@ class Core_Upgrader extends WP_Upgrader + } + } + ++ // RPM: nether allow core update ++ return false; ++ + // 1: If we're already on that version, not much point in updating? + if ( $offered_ver == $wp_version ) + return false; +@@ -2372,7 +2375,7 @@ class WP_Automatic_Updater { + */ + public function is_disabled() { + // Background updates are disabled if you don't want file changes. +- if ( defined( 'DISALLOW_FILE_MODS' ) && DISALLOW_FILE_MODS ) ++ if ( !defined( 'DISALLOW_FILE_MODS' ) || DISALLOW_FILE_MODS ) + return true; + + if ( defined( 'WP_INSTALLING' ) ) +diff -up wordpress/wp-admin/includes/update.php.rpm wordpress/wp-admin/includes/update.php +--- wordpress/wp-admin/includes/update.php.rpm 2014-11-30 12:28:24.000000000 +0100 ++++ wordpress/wp-admin/includes/update.php 2014-12-22 06:46:28.487097611 +0100 +@@ -211,8 +211,6 @@ function update_nag() { + } + echo "
$msg
"; + } +-add_action( 'admin_notices', 'update_nag', 3 ); +-add_action( 'network_admin_notices', 'update_nag', 3 ); + + // Called directly from dashboard + function update_right_now_message() { +@@ -227,7 +225,7 @@ function update_right_now_message() { + $cur = get_preferred_from_update_core(); + + if ( isset( $cur->response ) && $cur->response == 'upgrade' ) +- $msg .= " " . sprintf( __('Update to %s'), $cur->current ? $cur->current : __( 'Latest' ) ) . ''; ++ $msg .= ''; + } + + echo "

$msg

"; +diff -up wordpress/wp-includes/capabilities.php.rpm wordpress/wp-includes/capabilities.php +--- wordpress/wp-includes/capabilities.php.rpm 2014-12-01 02:34:24.000000000 +0100 ++++ wordpress/wp-includes/capabilities.php 2014-12-22 06:46:28.487097611 +0100 +@@ -1255,7 +1255,7 @@ function map_meta_cap( $cap, $user_id ) + // Disallow the file editors. + if ( defined( 'DISALLOW_FILE_EDIT' ) && DISALLOW_FILE_EDIT ) + $caps[] = 'do_not_allow'; +- elseif ( defined( 'DISALLOW_FILE_MODS' ) && DISALLOW_FILE_MODS ) ++ elseif ( !defined( 'DISALLOW_FILE_MODS' ) || DISALLOW_FILE_MODS ) + $caps[] = 'do_not_allow'; + elseif ( is_multisite() && ! is_super_admin( $user_id ) ) + $caps[] = 'do_not_allow'; +@@ -1273,7 +1273,7 @@ function map_meta_cap( $cap, $user_id ) + case 'update_core': + // Disallow anything that creates, deletes, or updates core, plugin, or theme files. + // Files in uploads are excepted. +- if ( defined( 'DISALLOW_FILE_MODS' ) && DISALLOW_FILE_MODS ) { ++ if ( !defined( 'DISALLOW_FILE_MODS' ) || DISALLOW_FILE_MODS ) { + $caps[] = 'do_not_allow'; + } elseif ( is_multisite() && ! is_super_admin( $user_id ) ) { + $caps[] = 'do_not_allow'; +diff -up wordpress/wp-includes/update.php.rpm wordpress/wp-includes/update.php +--- wordpress/wp-includes/update.php.rpm 2014-12-22 06:48:34.883575009 +0100 ++++ wordpress/wp-includes/update.php 2014-12-22 06:48:44.144609988 +0100 +@@ -626,9 +626,6 @@ function _maybe_update_themes() { + * @since 3.1.0 + */ + function wp_schedule_update_checks() { +- if ( !wp_next_scheduled('wp_version_check') && !defined('WP_INSTALLING') ) +- wp_schedule_event(time(), 'twicedaily', 'wp_version_check'); +- + if ( !wp_next_scheduled('wp_update_plugins') && !defined('WP_INSTALLING') ) + wp_schedule_event(time(), 'twicedaily', 'wp_update_plugins'); + +@@ -671,8 +668,6 @@ if ( ( ! is_main_site() && ! is_network_ + } + + add_action( 'admin_init', '_maybe_update_core' ); +-add_action( 'wp_version_check', 'wp_version_check' ); +-add_action( 'upgrader_process_complete', 'wp_version_check', 10, 0 ); + + add_action( 'load-plugins.php', 'wp_update_plugins' ); + add_action( 'load-update.php', 'wp_update_plugins' ); diff --git a/wordpress-5.1-tinymce_noflash.patch b/wordpress-5.1-tinymce_noflash.patch deleted file mode 100644 index 0d0e79c..0000000 --- a/wordpress-5.1-tinymce_noflash.patch +++ /dev/null @@ -1,35 +0,0 @@ -diff -up wordpress/wp-includes/js/tinymce/plugins/media/plugin.js.orig wordpress/wp-includes/js/tinymce/plugins/media/plugin.js ---- wordpress/wp-includes/js/tinymce/plugins/media/plugin.js.orig 2019-02-21 14:59:28.793415420 +0100 -+++ wordpress/wp-includes/js/tinymce/plugins/media/plugin.js 2019-02-21 15:00:14.319647286 +0100 -@@ -166,7 +166,6 @@ var media = (function () { - mp4: 'video/mp4', - webm: 'video/webm', - ogg: 'video/ogg', -- swf: 'application/x-shockwave-flash' - }; - var fileEnd = url.toLowerCase().split('.').pop(); - var mime = mimes[fileEnd]; -@@ -424,14 +423,6 @@ var media = (function () { - var allowFullscreen = data.allowFullscreen ? ' allowFullscreen="1"' : ''; - return ''; - }; -- var getFlashHtml = function (data) { -- var html = ''; -- if (data.poster) { -- html += ''; -- } -- html += ''; -- return html; -- }; - var getAudioHtml = function (data, audioTemplateCallback) { - if (audioTemplateCallback) { - return audioTemplateCallback(data); -@@ -494,8 +485,6 @@ var media = (function () { - }); - if (data.type === 'iframe') { - return getIframeHtml(data); -- } else if (data.source1mime === 'application/x-shockwave-flash') { -- return getFlashHtml(data); - } else if (data.source1mime.indexOf('audio') !== -1) { - return getAudioHtml(data, audioTemplateCallback); - } else if (data.type === 'script') { diff --git a/wordpress-5.6-mediaelement_no_swf.patch b/wordpress-5.6-mediaelement_no_swf.patch deleted file mode 100644 index 4ee0eec..0000000 --- a/wordpress-5.6-mediaelement_no_swf.patch +++ /dev/null @@ -1,38 +0,0 @@ -diff -up wordpress/wp-includes/js/mediaelement/mediaelement-and-player.js.no wordpress/wp-includes/js/mediaelement/mediaelement-and-player.js ---- wordpress/wp-includes/js/mediaelement/mediaelement-and-player.js.no 2020-09-29 17:53:06.000000000 +0200 -+++ wordpress/wp-includes/js/mediaelement/mediaelement-and-player.js 2020-12-09 09:44:27.954254919 +0100 -@@ -6135,6 +6135,7 @@ if (hasFlash) { - } - }); - -+/* swf files removed from RPM - var FlashMediaElementVideoRenderer = { - name: 'flash_video', - options: { -@@ -6219,6 +6220,7 @@ if (hasFlash) { - create: FlashMediaElementRenderer.create - }; - _renderer.renderer.add(FlashMediaElementAudioOggRenderer); -+*/ - } - - },{"2":2,"25":25,"27":27,"28":28,"3":3,"5":5,"7":7,"8":8}],21:[function(_dereq_,module,exports){ -diff -up wordpress/wp-includes/js/mediaelement/mediaelement.js.no wordpress/wp-includes/js/mediaelement/mediaelement.js ---- wordpress/wp-includes/js/mediaelement/mediaelement.js.no 2020-09-29 17:53:06.000000000 +0200 -+++ wordpress/wp-includes/js/mediaelement/mediaelement.js 2020-12-09 09:44:38.532227178 +0100 -@@ -1842,6 +1842,7 @@ if (hasFlash) { - } - }); - -+/* swf files removed from RPM - var FlashMediaElementVideoRenderer = { - name: 'flash_video', - options: { -@@ -1926,6 +1927,7 @@ if (hasFlash) { - create: FlashMediaElementRenderer.create - }; - _renderer.renderer.add(FlashMediaElementAudioOggRenderer); -+*/ - } - - },{"16":16,"18":18,"19":19,"2":2,"3":3,"5":5,"7":7,"8":8}],12:[function(_dereq_,module,exports){ diff --git a/wordpress-7.1-noupdate.patch b/wordpress-7.1-noupdate.patch deleted file mode 100644 index d327e71..0000000 --- a/wordpress-7.1-noupdate.patch +++ /dev/null @@ -1,91 +0,0 @@ -diff -up wordpress/wp-admin/includes/admin-filters.php.orig wordpress/wp-admin/includes/admin-filters.php ---- wordpress/wp-admin/includes/admin-filters.php.orig 2026-03-09 00:49:37.395081000 +0100 -+++ wordpress/wp-admin/includes/admin-filters.php 2026-08-25 07:30:05.010828032 +0200 -@@ -130,7 +130,6 @@ add_action( 'personal_options_update', ' - add_action( 'load-plugins.php', 'wp_plugin_update_rows', 20 ); // After wp_update_plugins() is called. - add_action( 'load-themes.php', 'wp_theme_update_rows', 20 ); // After wp_update_themes() is called. - --add_action( 'admin_notices', 'update_nag', 3 ); - add_action( 'admin_notices', 'deactivated_plugins_notice', 5 ); - add_action( 'admin_notices', 'paused_plugins_notice', 5 ); - add_action( 'admin_notices', 'paused_themes_notice', 5 ); -diff -up wordpress/wp-admin/includes/class-core-upgrader.php.orig wordpress/wp-admin/includes/class-core-upgrader.php ---- wordpress/wp-admin/includes/class-core-upgrader.php.orig 2026-02-13 19:34:41.944764000 +0100 -+++ wordpress/wp-admin/includes/class-core-upgrader.php 2026-08-25 07:30:05.010951923 +0200 -@@ -277,6 +277,9 @@ class Core_Upgrader extends WP_Upgrader - * @return bool True if we should update to the offered version, otherwise false. - */ - public static function should_update_to_version( $offered_ver ) { -+ // RPM: nether allow core update -+ return false; -+ - require ABSPATH . WPINC . '/version.php'; // $wp_version; // x.y.z - - $current_branch = implode( '.', array_slice( preg_split( '/[.-]/', $wp_version ), 0, 2 ) ); // x.y -diff -up wordpress/wp-admin/includes/class-wp-automatic-updater.php.orig wordpress/wp-admin/includes/class-wp-automatic-updater.php ---- wordpress/wp-admin/includes/class-wp-automatic-updater.php.orig 2026-07-29 10:01:50.858475000 +0200 -+++ wordpress/wp-admin/includes/class-wp-automatic-updater.php 2026-08-25 07:30:05.011078018 +0200 -@@ -41,7 +41,7 @@ class WP_Automatic_Updater { - } - - // More fine grained control can be done through the WP_AUTO_UPDATE_CORE constant and filters. -- $disabled = defined( 'AUTOMATIC_UPDATER_DISABLED' ) && AUTOMATIC_UPDATER_DISABLED; -+ $disabled = !defined( 'AUTOMATIC_UPDATER_DISABLED' ) || AUTOMATIC_UPDATER_DISABLED; - - /** - * Filters whether to entirely disable background updates. -diff -up wordpress/wp-admin/includes/file.php.orig wordpress/wp-admin/includes/file.php ---- wordpress/wp-admin/includes/file.php.orig 2026-07-29 10:01:50.858475000 +0200 -+++ wordpress/wp-admin/includes/file.php 2026-08-25 07:30:05.011274367 +0200 -@@ -2270,7 +2270,7 @@ function WP_Filesystem( $args = false, $ - */ - function get_filesystem_method( $args = array(), $context = '', $allow_relaxed_file_ownership = false ) { - // Please ensure that this is either 'direct', 'ssh2', 'ftpext', or 'ftpsockets'. -- $method = defined( 'FS_METHOD' ) ? FS_METHOD : false; -+ $method = defined( 'FS_METHOD' ) ? FS_METHOD : 'direct'; - - if ( ! $context ) { - $context = WP_CONTENT_DIR; -diff -up wordpress/wp-admin/includes/update.php.orig wordpress/wp-admin/includes/update.php ---- wordpress/wp-admin/includes/update.php.orig 2026-07-30 16:55:49.613388000 +0200 -+++ wordpress/wp-admin/includes/update.php 2026-08-25 07:31:37.114050011 +0200 -@@ -382,12 +382,7 @@ function update_right_now_message() { - $cur = get_preferred_from_update_core(); - - if ( isset( $cur->response ) && 'upgrade' === $cur->response ) { -- $msg .= sprintf( -- '%s', -- network_admin_url( 'update-core.php' ), -- /* translators: %s: WordPress version number, or 'Latest' string. */ -- sprintf( __( 'Update to %s' ), $cur->current ? $cur->current : __( 'Latest' ) ) -- ); -+ $msg .= ''; - } - } - -diff -up wordpress/wp-includes/load.php.orig wordpress/wp-includes/load.php ---- wordpress/wp-includes/load.php.orig 2026-08-07 21:13:51.810460000 +0200 -+++ wordpress/wp-includes/load.php 2026-08-25 07:30:05.011640399 +0200 -@@ -1835,7 +1835,7 @@ function wp_is_file_mod_allowed( $contex - * @param bool $file_mod_allowed Whether file modifications are allowed. - * @param string $context The usage context. - */ -- return apply_filters( 'file_mod_allowed', ! defined( 'DISALLOW_FILE_MODS' ) || ! DISALLOW_FILE_MODS, $context ); -+ return apply_filters( 'file_mod_allowed', defined( 'DISALLOW_FILE_MODS' ) && ! DISALLOW_FILE_MODS, $context ); - } - - /** -diff -up wordpress/wp-includes/update.php.orig wordpress/wp-includes/update.php ---- wordpress/wp-includes/update.php.orig 2026-07-06 23:09:52.376708000 +0200 -+++ wordpress/wp-includes/update.php 2026-08-25 07:30:05.011769619 +0200 -@@ -1087,10 +1087,6 @@ function _maybe_update_themes() { - * @since 3.1.0 - */ - function wp_schedule_update_checks() { -- if ( ! wp_next_scheduled( 'wp_version_check' ) && ! wp_installing() ) { -- wp_schedule_event( time(), 'twicedaily', 'wp_version_check' ); -- } -- - if ( ! wp_next_scheduled( 'wp_update_plugins' ) && ! wp_installing() ) { - wp_schedule_event( time(), 'twicedaily', 'wp_update_plugins' ); - } diff --git a/wordpress-7.1-remove-jshint-refs.patch b/wordpress-7.1-remove-jshint-refs.patch deleted file mode 100644 index 61d3b6b..0000000 --- a/wordpress-7.1-remove-jshint-refs.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -up wordpress/wp-includes/script-loader.php.orig wordpress/wp-includes/script-loader.php ---- wordpress/wp-includes/script-loader.php.orig 2026-08-25 07:26:03.212320361 +0200 -+++ wordpress/wp-includes/script-loader.php 2026-08-25 07:26:08.488274508 +0200 -@@ -1205,7 +1205,6 @@ function wp_default_scripts( $scripts ) - $scripts->add( 'wp-codemirror', '/wp-includes/js/codemirror/codemirror.min.js', array(), '5.65.20' ); - $scripts->add( 'csslint', '/wp-includes/js/codemirror/csslint.js', array(), '1.0.5' ); - $scripts->add( 'esprima', '/wp-includes/js/codemirror/esprima.js', array(), '4.0.1' ); // Deprecated. -- $scripts->add( 'jshint', '/wp-includes/js/codemirror/fakejshint.js', array( 'esprima' ), '2.9.5' ); // Deprecated. - $scripts->add( 'jsonlint', '/wp-includes/js/codemirror/jsonlint.js', array(), '1.6.3' ); - $scripts->add( 'htmlhint', '/wp-includes/js/codemirror/htmlhint.js', array(), '1.9.2' ); - $scripts->add( 'htmlhint-kses', '/wp-includes/js/codemirror/htmlhint-kses.js', array( 'htmlhint' ) ); diff --git a/wordpress-6.8-hello.patch b/wordpress-debian_patches_hello.patch similarity index 72% rename from wordpress-6.8-hello.patch rename to wordpress-debian_patches_hello.patch index 32bdca9..8555d70 100644 --- a/wordpress-6.8-hello.patch +++ b/wordpress-debian_patches_hello.patch @@ -1,17 +1,15 @@ -diff -up wordpress/wp-content/plugins/hello.php.dolly wordpress/wp-content/plugins/hello.php ---- wordpress/wp-content/plugins/hello.php.dolly 2025-04-16 08:21:31.710644174 +0200 -+++ wordpress/wp-content/plugins/hello.php 2025-04-16 08:23:15.011000365 +0200 -@@ -6,7 +6,7 @@ +--- wordpress/wp-content/plugins/hello.php 2013-05-22 14:08:40.000000000 -0700 ++++ wordpress/wp-content/plugins/hello.php.new 2013-08-22 23:46:04.594788007 -0700 +@@ -6,42 +6,26 @@ /* Plugin Name: Hello Dolly Plugin URI: http://wordpress.org/plugins/hello-dolly/ -Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page. +Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Richard M. Stallman: Free Software. When activated you will randomly see a lyric from the Free Software Song in the upper right of your admin screen on every page. Author: Matt Mullenweg - Version: 1.7.2 + Version: 1.6 Author URI: http://ma.tt/ -@@ -18,34 +18,19 @@ if ( ! defined( 'ABSPATH' ) ) { - } + */ function hello_dolly_get_lyric() { - /** These are the lyrics to Hello Dolly */ @@ -22,11 +20,12 @@ diff -up wordpress/wp-content/plugins/hello.php.dolly wordpress/wp-content/plugi -I can tell, Dolly -You're still glowin', you're still crowin' -You're still goin' strong --I feel the room swayin' +-We feel the room swayin' -While the band's playin' --One of our old favorite songs from way back when +-One of your old favourite songs from way back when -So, take her wrap, fellas --Dolly, never go away again +-Find her an empty lap, fellas +-Dolly'll never go away again -Hello, Dolly -Well, hello, Dolly -It's so nice to have you back where you belong @@ -34,16 +33,16 @@ diff -up wordpress/wp-content/plugins/hello.php.dolly wordpress/wp-content/plugi -I can tell, Dolly -You're still glowin', you're still crowin' -You're still goin' strong --I feel the room swayin' +-We feel the room swayin' -While the band's playin' --One of our old favorite songs from way back when --So, golly, gee, fellas --Have a little faith in me, fellas --Dolly, never go away --Promise, you'll never go away +-One of your old favourite songs from way back when +-Golly, gee, fellas +-Find her a vacant knee, fellas +-Dolly'll never go away +-Dolly'll never go away -Dolly'll never go away again"; + // These are the lyrics to the Free Software Song -+ $lyrics = "Join us now and share the software; ++$lyrics = "Join us now and share the software; +You'll be free, hackers, you'll be free. +Hoarders may get piles of money, +That is true, hackers, that is true. @@ -56,5 +55,5 @@ diff -up wordpress/wp-content/plugins/hello.php.dolly wordpress/wp-content/plugi +Join us now and share the software; +You'll be free, hackers, you'll be free."; - // Here we split it into lines. + // Here we split it into lines $lyrics = explode( "\n", $lyrics ); diff --git a/wordpress-httpd-conf b/wordpress-httpd-conf index dbefe97..c4266b4 100644 --- a/wordpress-httpd-conf +++ b/wordpress-httpd-conf @@ -1,23 +1,23 @@ Alias /wordpress /usr/share/wordpress -# Access is only allowed via local access -# Change this once configured - AllowOverride Options + + # Apache 2.4 Require local - - - - # Deny access to any php file in the uploads directory - - Require all denied - + + + # Apache 2.2 + Order Deny,Allow + Deny from All + Allow from 127.0.0.1 + Allow from ::1 + - # Deny access to any php file in the akismet directory - Require all denied + Order Deny,Allow + Deny from all diff --git a/wordpress-minify.php b/wordpress-minify.php deleted file mode 100644 index d8e18c4..0000000 --- a/wordpress-minify.php +++ /dev/null @@ -1,16 +0,0 @@ -squeeze($in); -if ($out) { - printf("+ minify from %s to %s: %2d%% of %6d\n", - basename($_SERVER['argv'][1]), basename($_SERVER['argv'][2]), - round(strlen($out)*100/strlen($in)), strlen($in)); - file_put_contents($_SERVER['argv'][2], $out); -} else { - exit(2); -} - diff --git a/wordpress-move-wp-content.patch b/wordpress-move-wp-content.patch new file mode 100644 index 0000000..54eb921 --- /dev/null +++ b/wordpress-move-wp-content.patch @@ -0,0 +1,30 @@ +diff -up wordpress/wp-includes/default-constants.php.rhbz522897 wordpress/wp-includes/default-constants.php +--- wordpress/wp-includes/default-constants.php.rhbz522897 2010-05-26 04:42:15.000000000 +0200 ++++ wordpress/wp-includes/default-constants.php 2011-06-02 12:29:57.919714584 +0200 +@@ -39,7 +39,7 @@ function wp_initial_constants( ) { + @ini_set('memory_limit', WP_MEMORY_LIMIT); + + if ( !defined('WP_CONTENT_DIR') ) +- define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' ); // no trailing slash, full paths only - WP_CONTENT_URL is defined further down ++ define( 'WP_CONTENT_DIR', '/var/www/wordpress/wp-content' ); // no trailing slash, full paths only - WP_CONTENT_URL is defined further down + + // Add define('WP_DEBUG', true); to wp-config.php to enable display of notices during development. + if ( !defined('WP_DEBUG') ) +@@ -75,7 +75,7 @@ function wp_initial_constants( ) { + */ + function wp_plugin_directory_constants( ) { + if ( !defined('WP_CONTENT_URL') ) +- define( 'WP_CONTENT_URL', get_option('siteurl') . '/wp-content'); // full url - WP_CONTENT_DIR is defined further up ++ define( 'WP_CONTENT_URL', get_option('siteurl')); // full url - WP_CONTENT_DIR is defined further up + + /** + * Allows for the plugins directory to be moved from the default location. +@@ -100,7 +100,7 @@ function wp_plugin_directory_constants( + * @deprecated + */ + if ( !defined('PLUGINDIR') ) +- define( 'PLUGINDIR', 'wp-content/plugins' ); // Relative to ABSPATH. For back compat. ++ define( 'PLUGINDIR', WP_CONTENT_DIR . 'plugins' ); // Relative to ABSPATH. For back compat. + + /** + * Allows for the mu-plugins directory to be moved from the default location. diff --git a/wordpress-nginx-conf b/wordpress-nginx-conf deleted file mode 100644 index e41cc6a..0000000 --- a/wordpress-nginx-conf +++ /dev/null @@ -1,35 +0,0 @@ -# Wordpress - -location = /wordpress { - alias /usr/share/wordpress/; -} - -location /wordpress/ { - root /usr/share; - index index.php; - - location ~ ^/wordpress/wp-content/uploads/(.+)\.php$ { - # Deny access to any php file in the uploads directory - deny all; - } - location ~ ^/wordpress/wp-content/plugins/akismet/(.+)\.php$ { - # Deny access to any php file in the akismet directory - deny all; - } - - # Access is only allowed via local access - # Change this once configured - location ~ ^/wordpress/(.+\.php)$ { - allow 127.0.0.1; - allow ::1; - deny all; - - try_files $uri =404; - fastcgi_intercept_errors on; - include fastcgi_params; - fastcgi_param SERVER_NAME $host; - fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; - fastcgi_pass php-fpm; - } -} - diff --git a/wordpress.spec b/wordpress.spec index e2d9f03..2dd32ad 100644 --- a/wordpress.spec +++ b/wordpress.spec @@ -1,106 +1,111 @@ -# Fedora spec file for wordpress -# -# License: MIT -# http://opensource.org/licenses/MIT -# -# Please preserve changelog entries -# +%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} %global wp_content %{_datadir}/wordpress/wp-content -%global upstream_version 7.1 -#global upstream_prever RC5 -#global upstream_lower rc5 +%if 0%{?rhel} == 5 +%global with_cacert 0 +%else +%global with_cacert 1 +%endif +# https://bugzilla.redhat.com/1147817 php53-getid3 review +%if 0%{?fedora} >= 17 || 0%{?rhel} >= 6 +%global with_getid3 1 +%else +%global with_getid3 0 +%endif Summary: Blog tool and publishing platform -URL: https://wordpress.org/ +URL: http://www.wordpress.org Name: wordpress -Version: %{upstream_version}%{?upstream_prever:~%upstream_lower} +Version: 4.1 +Group: Applications/Publishing Release: 1%{?dist} -# Wordpress is GPL-2.0-or-later -# php-simplepie is BSD-3-Clause -# php-getid3 is LGPL-3.0-or-later (or some others) -# php-mailer is LGPL-2.1-only -License: GPL-2.0-or-later AND BSD-3-Clause AND LGPL-3.0-or-later AND LGPL-2.1-only +License: GPLv2 -Source0: https://wordpress.org/%{name}-%{upstream_version}%{?upstream_prever:-%{upstream_prever}}.tar.gz +Source0: http://wordpress.org/%{name}-%{version}.tar.gz Source1: wordpress-httpd-conf Source2: README.fedora.wordpress Source3: README.fedora.wordpress-mu -Source4: wordpress-nginx-conf -# To minify JS assets -Source5: wordpress-minify.php # Patch out copyrighted text of Hello, Dolly # (and replace it with Free Software Song) -Patch0: wordpress-6.8-hello.patch +Patch0: wordpress-debian_patches_hello.patch +# Move wp-content to /var/www/wordpress/ +# This patch doesn’t work well, see bugzilla.redhat.com/522897 +Patch1: wordpress-move-wp-content.patch +# Drop swfupload: not built from source, not reasonably possible to do +Patch2: wordpress-3.9-no_swfupload.patch # Adjust tinymce's media plugin not to use its SWF plugin. This changes # 'p.getParam("flash_video_player_url",u.convertUrl(u.url+"/moxieplayer.swf"))' # to 'false' -Patch3: wordpress-5.1-tinymce_noflash.patch -# We drop the SWF files from mediaelement -Patch4: wordpress-5.6-mediaelement_no_swf.patch +Patch3: wordpress-4.0-tinymce_noflash.patch +# Adjust mediaelement not to use its SWF and Silverlight plugins. This +# changes 'plugins:["flash,"silverlight","youtube","vimeo"]' to +# 'plugins:["youtube","vimeo"]' +Patch4: wordpress-4.1-mediaelement-noflash_silverlight.patch # RPM configuration: # Path to installation # Disable auto-updater -Patch5: wordpress-5.4-config.patch +Patch5: wordpress-4.0-config.patch # RPM are readonly # disable version check and updated # change DISALLOW_FILE_MODS default value to true # ignore WP_AUTO_UPDATE_CORE (always false) -Patch6: wordpress-7.1-noupdate.patch -# Debian patch for jshint -Patch8: wordpress-7.1-remove-jshint-refs.patch - +Patch6: wordpress-4.1-noupdate.patch +# Use system libraries +Patch7: wordpress-4.0-systemlibs.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -BuildRequires: php-cli -BuildRequires: php-patchwork-jsqueeze -BuildRequires: php(language) >= 7.2 -Requires: webserver -Requires: php(httpd) -Suggests: httpd -# For directory ownership -Requires: httpd-filesystem -Requires: nginx-filesystem -Requires: php(language) >= 7.2 -Requires: php-sodium -Requires: php-ctype -Requires: php-filter -Requires: php-mysqli - -# From phpcompatinfo report for version 4.5.3 +%if 0%{?rhel} == 5 +Requires: php53 >= 5.2.4 +Requires: php53-simplepie >= 1.3.1 +%if %{with_getid3} +Requires: php53-getid3 +%endif +%else +Requires: php >= 5.2.4 +Requires: php-simplepie >= 1.3.1 +%if %{with_getid3} +Requires: php-getid3 +%endif +%endif +# From phpcompatinfo report for version 3.8 Requires: php-curl +Requires: php-date Requires: php-dom +Requires: php-enchant +Requires: php-ereg Requires: php-exif Requires: php-fileinfo +Requires: php-ftp Requires: php-gd Requires: php-gettext +Requires: php-hash Requires: php-iconv -Requires: php-intl Requires: php-json Requires: php-libxml Requires: php-mbstring +Requires: php-mysql Requires: php-openssl +Requires: php-pcre +Requires: php-posix Requires: php-simplexml +Requires: php-sockets +Requires: php-spl +Requires: php-tokenizer Requires: php-xml -Requires: php-xmlreader Requires: php-zip Requires: php-zlib +# Unbundled libraries +Requires: php-PHPMailer Requires: httpd -# Unbundled -Requires: /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem -# Bundled -# grep "SIMPLEPIE_VERSION'" wordpress/wp-includes/class-simplepie.php -Provides: bundled(php-simplepie) = 1.9.0 -# grep ' VERSION ' wordpress/wp-includes/ID3/getid3.php -Provides: bundled(php-getid3) = 1.9.25 -# grep ' VERSION ' wordpress/wp-includes/PHPMailer/PHPMailer.php -Provides: bundled(php-phpmailer) = 7.1.1 +%if %{with_cacert} +Requires: ca-certificates +%endif Provides: wordpress-mu = %{version}-%{release} Obsoletes: wordpress-mu < 2.9.3 - %description Wordpress is an online publishing / weblog package that makes it very easy, almost trivial, to get information out to people on the web. @@ -111,37 +116,48 @@ Important information in %{_pkgdocdir}/README.fedora %prep %setup -q -n wordpress +# Drop pre-compiled binary lumps: Flash and Silverlight +# This means that Flash video fallbacks in Wordpress' media support +# and the tinymce plugin, the plupload Flash and Silverlight +# uploaders, and swfupload are not available. +# To re-introduce these they would have to be built from the +# ActionScript source as part of this package build, they cannot be +# shipped pre-compiled. Removing plupload.flash.js and +# plupload.silverlight.js causes plupload only to try and use the html4 +# or html5 uploaders; if you just wipe the binaries but leave the +# .js files, it will try and use the Flash or Silverlight uploaders +# and draw a non-functional button. - AdamW, 2013/08 +# https://fedoraproject.org/wiki/Packaging:Guidelines#No_inclusion_of_pre-built_binaries_or_libraries + +rm wp-includes/js/mediaelement/silverlightmediaelement.xap +rm wp-includes/js/mediaelement/flashmediaelement.swf +rm wp-includes/js/tinymce/plugins/media/moxieplayer.swf +rm wp-includes/js/plupload/plupload.silverlight.xap +rm wp-includes/js/plupload/plupload.flash.swf + # swfupload can just die in its entirety rm -rf wp-includes/js/swfupload # remove .htaccess, protected by httpd config file rm wp-content/plugins/akismet/.htaccess -# only for PHP < 7.0 without random_int -rm -rf wp-includes/random_compat -# only for PHP < 7.2 without sodium_crypto_box -rm -rf wp-includes/sodium_compat +%patch0 -p1 -b .dolly +#patch1 -p1 -b .rhbz522897 +%patch2 -p1 +%patch3 -p1 +%patch4 -p1 +%if %{with_getid3} +%patch7 -p1 +%endif -%patch -P0 -p1 -b .dolly -%patch -P3 -p1 -# Adjust mediaelement not to use its SWF -%patch -P4 -p1 -%patch -P8 -p1 - -# We patch .js files, so minify them -php %{SOURCE5} \ - wp-includes/js/tinymce/plugins/media/plugin.js \ - wp-includes/js/tinymce/plugins/media/plugin.min.js -php %{SOURCE5} \ - wp-includes/js/mediaelement/mediaelement-and-player.js \ - wp-includes/js/mediaelement/mediaelement-and-player.min.js -php %{SOURCE5} \ - wp-includes/js/mediaelement/mediaelement.js \ - wp-includes/js/mediaelement/mediaelement.min.js +# We patch a .js file, used patched file instead of unpatch minified one +ln -sf plugin.js wp-includes/js/tinymce/plugins/media/plugin.min.js # Re-Generated the archive arc=wp-includes/js/tinymce/wp-tinymce.js -grep "^// Source" $arc | while read a b c +gunzip -dc $arc.gz | \ + grep "^// Source" | \ + while read a b c do if [ -f $c ]; then echo -e "\n$a $b $c" @@ -149,28 +165,18 @@ do else exit 1 fi -done >$arc.tmp -if [ -s $arc.tmp ]; then - gzip -c $arc > $arc.gz - ls -l $arc* - mv $arc.tmp $arc -else - exit 1 -fi +done >$arc +gzip --force $arc +ls -l $arc.gz # Create RPM configuration -sed -e 's/\r//' wp-config-sample.php >wp-config.php -%patch -P5 -p1 -%patch -P6 -p1 +cp wp-config-sample.php wp-config.php +%patch5 -p1 +%patch6 -p1 # fix file encoding sed -i -e 's/\r//' license.txt -: Bundled library versions -grep ' VERSION ' wp-includes/SimplePie/src/SimplePie.php -grep ' VERSION ' wp-includes/ID3/getid3.php -grep ' VERSION ' wp-includes/PHPMailer/PHPMailer.php - %build @@ -178,8 +184,6 @@ grep ' VERSION ' wp-includes/PHPMailer/PHPMailer.php # Apache configuration install -m 0644 -D -p %{SOURCE1} ${RPM_BUILD_ROOT}%{_sysconfdir}/httpd/conf.d/wordpress.conf -install -m 0644 -D -p %{SOURCE4} ${RPM_BUILD_ROOT}%{_sysconfdir}/nginx/default.d/wordpress.conf - # Application mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/wordpress cp -pr * ${RPM_BUILD_ROOT}%{_datadir}/wordpress @@ -199,38 +203,70 @@ find ${RPM_BUILD_ROOT} -type f -empty -exec rm -vf {} \; # These are docs, remove them from here, docify them later rm -f ${RPM_BUILD_ROOT}%{_datadir}/wordpress/{license.txt,readme.html} +# Remove bundled php-simplepie and link to system copy +rm ${RPM_BUILD_ROOT}%{_datadir}/wordpress/wp-includes/class-simplepie.php +rm -r ${RPM_BUILD_ROOT}%{_datadir}/wordpress/wp-includes/SimplePie +%if 0%{?rhel} == 5 +ln -s /usr/share/php/php53-simplepie/autoloader.php \ +%else +ln -s /usr/share/php/php-simplepie/autoloader.php \ +%endif + ${RPM_BUILD_ROOT}%{_datadir}/wordpress/wp-includes/class-simplepie.php + +# Remove bundled PHPMailer and link to system one +# Note POP3 is not from PHPMailer but from SquirrelMail +for fic in phpmailer smtp; do + rm ${RPM_BUILD_ROOT}%{_datadir}/wordpress/wp-includes/class-$fic.php + ln -sf /usr/share/php/PHPMailer/class.$fic.php \ + ${RPM_BUILD_ROOT}%{_datadir}/wordpress/wp-includes/class-$fic.php +done + +%if %{with_getid3} +# Remove bundled php-getid3 +rm -r ${RPM_BUILD_ROOT}%{_datadir}/wordpress/wp-includes/ID3 +%endif + # Remove bundled ca-bundle.crt +%if %{with_cacert} rm ${RPM_BUILD_ROOT}%{_datadir}/wordpress/wp-includes/certificates/ca-bundle.crt -ln -s %{_sysconfdir}/pki/ca-trust/extracted/pem/tls-ca-bundle.pem \ +ln -s /etc/pki/tls/certs/ca-bundle.crt \ ${RPM_BUILD_ROOT}%{_datadir}/wordpress/wp-includes/certificates/ca-bundle.crt +%endif # Remove backup copies of patches find ${RPM_BUILD_ROOT} \( -name \*.dolly -o -name \*.rhbz522897 -o -name \*.orig \) \ -print -delete +## Move wp-content directory to /var/www location +#mkdir -p ${RPM_BUILD_ROOT}%{_localstatedir}/www/wordpress +#mv -v ${RPM_BUILD_ROOT}%{wp_content}/ \ +# ${RPM_BUILD_ROOT}%{_localstatedir}/www/wordpress -%pretrans -p --- Remove link to system library -path = "%{_datadir}/wordpress/wp-includes/PHPMailer" -st = posix.stat(path) -if st and st.type == "link" then - os.remove(path) -end +#%post +#if [ $1 -eq 2 ] ; then +## In case user has old wp-content from previous version, move it to +## the new location. +#mv -uf %{wp_content}/* %{_localstatedir}/www/wordpress/ +#/sbin/restorecon -R %{_localstatedir}/www/wordpress/ +#fi +%clean +rm -rf ${RPM_BUILD_ROOT} + %files +%defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/httpd/conf.d/wordpress.conf -%config(noreplace) %{_sysconfdir}/nginx/default.d/wordpress.conf %dir %{_datadir}/wordpress %{_datadir}/wordpress/wp-admin %{_datadir}/wordpress/wp-includes %{_datadir}/wordpress/index.php %dir %{wp_content}/ %{wp_content}/index.php -%dir %attr(2775,apache,ftp) %{wp_content}/plugins -%dir %attr(2775,apache,ftp) %{wp_content}/themes -%dir %attr(2775,apache,ftp) %{wp_content}/upgrade -%dir %attr(2775,apache,ftp) %{wp_content}/uploads +%dir %attr(0775,apache,ftp) %{wp_content}/plugins +%dir %attr(0775,apache,ftp) %{wp_content}/themes +%dir %attr(0775,apache,ftp) %{wp_content}/upgrade +%dir %attr(0775,apache,ftp) %{wp_content}/uploads %{wp_content}/plugins/* %{wp_content}/themes/* %{!?_licensedir:%global license %%doc} @@ -243,467 +279,12 @@ end %attr(640,root,apache) %config(noreplace) %{_sysconfdir}/wordpress/wp-config.php %{_datadir}/wordpress/xmlrpc.php - %changelog -* Tue Aug 25 2026 Remi Collet -7.1-1 -- WordPress 7.1 “Mary Lou” - -* Thu Aug 13 2026 Remi Collet -7.0.4-1 -- WordPress 7.0.4 Release - -* Fri Aug 7 2026 Remi Collet -7.0.3-1 -- WordPress 7.0.3 Release - -* Tue Jul 21 2026 Remi Collet -7.0.2-1 -- WordPress 7.0.2 Release - -* Fri Jul 17 2026 Fedora Release Engineering - 7.0.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild - -* Fri Jul 10 2026 Remi Collet -7.0.1-1 -- WordPress 7.0.1 Maintenance Release - -* Tue May 26 2026 Remi Collet -7.0-1 -- WordPress 7.0 “Armstrong” - -* Thu Mar 12 2026 Remi Collet - 6.9.4-1 -- WordPress 6.9.4 Release - -* Wed Mar 11 2026 Remi Collet - 6.9.3-1 -- WordPress 6.9.3 Release - -* Wed Feb 4 2026 Remi Collet - 6.9.1-1 -- WordPress 6.9.1 Maintenance Release - -* Sat Jan 17 2026 Fedora Release Engineering - 6.9-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild - -* Wed Dec 3 2025 Remi Collet - 6.9-1 -- WordPress 6.9 “Gene” - -* Wed Oct 1 2025 Remi Collet - 6.8.3-1 -- WordPress 6.8.3 Security Release - -* Mon Jul 28 2025 Remi Collet - 6.8.2-3 -- fix system certificates path - -* Fri Jul 25 2025 Fedora Release Engineering - 6.8.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild - -* Tue Jul 22 2025 Remi Collet - 6.8.2-1 -- WordPress 6.8.2 Maintenance Release - -* Mon May 5 2025 Remi Collet - 6.8.1-1 -- WordPress 6.8.1 Maintenance Release - -* Wed Apr 16 2025 Remi Collet - 6.8-1 -- WordPress 6.8 “Cecil” - -* Wed Feb 12 2025 Remi Collet - 6.7.2-1 -- WordPress 6.7.2 Maintenance Release - -* Sun Jan 19 2025 Fedora Release Engineering - 6.7.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild - -* Fri Nov 22 2024 Remi Collet - 6.7.1-1 -- WordPress 6.7.1 Maintenance Release - -* Wed Nov 13 2024 Remi Collet - 6.7-1 -- WordPress 6.7 “Rollins” - -* Wed Sep 11 2024 Remi Collet - 6.6.2-1 -- WordPress 6.6.2 Maintenance Release - -* Wed Jul 24 2024 Remi Collet - 6.6.1-1 -- WordPress 6.6.1 Maintenance Release - -* Sat Jul 20 2024 Fedora Release Engineering - 6.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild - -* Wed Jul 17 2024 Remi Collet - 6.6-1 -- WordPress 6.6 “Dorsey” - -* Tue Jul 2 2024 Remi Collet - 6.5.5-1 -- WordPress 6.4.2 Maintenance & Security Release - -* Thu Jun 6 2024 Remi Collet - 6.5.4-1 -- WordPress 6.5.4 Maintenance Release - -* Mon May 13 2024 Remi Collet - 6.5.3-1 -- WordPress 6.5.3 Maintenance Release - -* Wed Apr 10 2024 Remi Collet - 6.5.2-1 -- WordPress 6.5.2 Maintenance and Security Release - -* Wed Apr 3 2024 Remi Collet - 6.5-1 -- WordPress 6.5 “Regina” - -* Thu Feb 1 2024 Remi Collet - 6.4.3-1 -- WordPress 6.4.3 Maintenance & Security Release - -* Sat Jan 27 2024 Fedora Release Engineering - 6.4.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Thu Dec 7 2023 Remi Collet - 6.4.2-1 -- WordPress 6.4.2 Maintenance & Security Release - -* Thu Nov 9 2023 Remi Collet - 6.4.1-1 -- WordPress 6.4.1 Maintenance Release - -* Wed Nov 8 2023 Remi Collet - 6.4-1 -- WordPress 6.4 “Shirley” - -* Mon Oct 16 2023 Remi Collet - 6.3.2-1 -- WordPress 6.3.2 – Maintenance and Security release - -* Thu Aug 31 2023 Remi Collet - 6.3.1-1 -* WordPress 6.3.1 Maintenance Release - -* Sun Aug 20 2023 Remi Collet - 6.3-1 -- WordPress 6.3 “Lionel” - -* Sat Jul 22 2023 Fedora Release Engineering - 6.2.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Sun May 21 2023 Remi Collet - 6.2.2-1 -- WordPress 6.2.2 Security Release - -* Wed May 17 2023 Remi Collet - 6.2.1-1 -- WordPress 6.2.1 Maintenance & Security Release - -* Thu Mar 30 2023 Remi Collet - 6.2-1 -- WordPress 6.2 “Dolphy” -- use SPDX license IDs - -* Sat Jan 21 2023 Fedora Release Engineering - 6.1.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Wed Nov 16 2022 Remi Collet - 6.1.1-1 -- WordPress 6.1.1 Maintenance Release - -* Wed Nov 2 2022 Remi Collet - 6.1-1 -- WordPress 6.1 “Misha” - -* Tue Oct 18 2022 Remi Collet - 6.0.3-1 -- WordPress 6.0.3 Security Release - -* Thu Sep 8 2022 Remi Collet - 6.0.2-1 -- WordPress 6.0.2 Security and Maintenance Release - -* Sat Jul 23 2022 Fedora Release Engineering - 6.0.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Wed Jul 13 2022 Remi Collet - 6.0.1-1 -- WordPress 6.0.1 Maintenance Release - -* Wed May 25 2022 Remi Collet - 6.0-1 -- WordPress 6.0 “Arturo” - -* Wed Apr 6 2022 Remi Collet - 5.9.3-1 -- WordPress 5.9.3 Maintenance Release - -* Fri Mar 11 2022 Remi Collet - 5.9.2-1 -- WordPress 5.9.2 Security & Maintenance Release - -* Wed Feb 23 2022 Remi Collet - 5.9.1-1 -- WordPress 5.9.1 Maintenance Release - -* Wed Jan 26 2022 Remi Collet - 5.9-1 -- WordPress 5.9 Josephine - -* Sat Jan 22 2022 Fedora Release Engineering - 5.8.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Jan 7 2022 Remi Collet - 5.8.3-1 -- WordPress 5.8.3 Security Release - -* Tue Dec 7 2021 Remi Collet - 5.8.2-2 -- use bundled libraries - -* Thu Nov 11 2021 Remi Collet - 5.8.2-1 -- WordPress 5.8.2 Security and Maintenance Release - -* Thu Sep 9 2021 Remi Collet - 5.8.1-1 -- WordPress 5.8.1 Security and Maintenance Release - -* Fri Jul 23 2021 Fedora Release Engineering - 5.8-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Wed Jul 21 2021 Remi Collet - 5.8-1 -- WordPress 5.8 Tatum - -* Thu May 13 2021 Remi Collet - 5.7.2-1 -- WordPress 5.7.2 Security Release - -* Thu Apr 15 2021 Remi Collet - 5.7.1-1 -- WordPress 5.7.1 Security and Maintenance Release - -* Wed Mar 10 2021 Remi Collet - 5.7-1 -- WordPress 5.7 “Esperanza” - -* Tue Feb 23 2021 Remi Collet - 5.6.2-1 -- WordPress 5.6.2 Maintenance Release - -* Fri Feb 5 2021 Remi Collet - 5.6.1-1 -- WordPress 5.6.1 Maintenance Release - -* Wed Jan 27 2021 Fedora Release Engineering - 5.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Wed Dec 9 2020 Remi Collet - 5.6-1 -- WordPress 5.6 “Simone” - -* Sat Oct 31 2020 Remi Collet - 5.5.3-1 -- WordPress 5.5.3 Maintenance Release - -* Fri Oct 30 2020 Remi Collet - 5.5.2-1 -- WordPress 5.5.2 Security and Maintenance Release - -* Tue Oct 20 2020 Remi Collet - 5.5.1-2 -- Change FS_METHOD default to 'direct' to allow enabling FILE_MODS #1889644 - -* Wed Sep 2 2020 Remi Collet - 5.5.1-1 -- WordPress 5.5.1 Maintenance Release - -* Wed Aug 12 2020 Remi Collet - 5.5-1 -- WordPress 5.5 “Eckstine” -- requires php-phpmailer6 instead of old php-PHPMailer - -* Wed Jul 29 2020 Fedora Release Engineering - 5.4.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Thu Jun 11 2020 Remi Collet - 5.4.2-1 -- WordPress 5.4.2 Security and Maintenance Release - -* Thu Apr 30 2020 Remi Collet - 5.4.1-1 -- WordPress 5.4.1 Security and Maintenance Release - -* Wed Apr 1 2020 Remi Collet - 5.4-1 -- WordPress 5.4 “Adderley” - -* Mon Mar 30 2020 Remi Collet - 5.4~rc5-1 -- WordPress 5.4 RC 5 - -* Wed Mar 25 2020 Remi Collet - 5.4~rc4-1 -- WordPress 5.4 RC 4 - -* Fri Jan 31 2020 Fedora Release Engineering - 5.3.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Thu Dec 19 2019 Remi Collet - 5.3.2-1 -- WordPress 5.3.2 Maintenance Release - -* Fri Dec 13 2019 Remi Collet - 5.3.1-1 -- WordPress 5.3.1 Security and Maintenance Release - -* Wed Nov 13 2019 Remi Collet - 5.3-1 -- WordPress 5.3 “Kirk” - -* Tue Oct 15 2019 Remi Collet - 5.2.4-1 -- WordPress 5.2.4 Security Release - -* Thu Sep 5 2019 Remi Collet - 5.2.3-1 -- WordPress 5.2.3 Security and Maintenance Release - -* Sat Jul 27 2019 Fedora Release Engineering - 5.2.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Wed Jun 19 2019 Remi Collet - 5.2.2-1 -- WordPress 5.2.2 Maintenance Release - -* Wed May 22 2019 Remi Collet - 5.2.1-1 -- WordPress 5.2.1 Maintenance Release - -* Wed May 8 2019 Remi Collet - 5.2.0-1 -- WordPress 5.2 “Jaco” - -* Fri Apr 26 2019 Remi Collet - 5.2.0~rc1-1 -- WordPress 5.2 RC 1 - -* Wed Apr 17 2019 Remi Collet - 5.2.0~beta3-1 -- WordPress 5.2 Beta 3 - -* Tue Apr 9 2019 Remi Collet - 5.2.0~beta2-1 -- WordPress 5.2 Beta 2 - -* Thu Mar 28 2019 Remi Collet - 5.2.0~beta1-1 -- WordPress 5.2 Beta 1 -- raise dependency on PHP 7.2 - -* Fri Mar 22 2019 Remi Collet - 5.1.1-4 -- fix wp-tinymce.js is missing, wp-tinymce.js.gz is empty #1691524 - -* Wed Mar 13 2019 Remi Collet - 5.1.1-1 -- WordPress 5.1.1 Security and Maintenance Release - -* Fri Feb 22 2019 Remi Collet - 5.1-1 -- WordPress 5.1 “Betty” - -* Thu Feb 21 2019 Remi Collet - 5.1~RC2-1 -- WordPress 5.1-RC2 - -* Sun Feb 03 2019 Fedora Release Engineering - 5.0.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Fri Jan 11 2019 Remi Collet - 5.0.3-1 -- WordPress 5.0.3 Maintenance Release - -* Thu Dec 20 2018 Remi Collet - 5.0.2-1 -- WordPress 5.0.2 Maintenance Release - -* Thu Dec 13 2018 Remi Collet - 5.0.1-1 -- WordPress 5.0.1 Security Release - -* Wed Dec 12 2018 Remi Collet - 5.0-1 -- WordPress 5.0 “Bebo” - -* Fri Aug 03 2018 Kevin Fenzi - 4.9.8-1 -- Update to 4.9.8. Fixes bug #1611877 - -* Sat Jul 14 2018 Fedora Release Engineering - 4.9.7-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Thu Jul 05 2018 Kevin Fenzi - 4.9.7-1 -- Update to 4.9.7 security update. Fixes bug #1598612 -- Fixes CVE-2018-12895 bugs #1595584 and #1595585 - -* Fri May 18 2018 Kevin Fenzi - 4.9.6-1 -- Update to 4.9.6. Fixes bug #1579584 - -* Wed Apr 4 2018 Remi Collet - 4.9.5-1 -- WordPress 4.9.5 Security and Maintenance Release - -* Wed Feb 7 2018 Remi Collet - 4.9.4-1 -- WordPress 4.9.4 Maintenance Release - -* Wed Jan 17 2018 Remi Collet - 4.9.2-1 -- WordPress 4.9.2 Security and Maintenance Release -- drop non-free jshint.js file #1528765 - -* Thu Nov 30 2017 Remi Collet - 4.9.1-1 -- WordPress 4.9.1 Security and Maintenance Release - -* Thu Nov 16 2017 Remi Collet - 4.9-1 -- WordPress 4.9 “Tipton” -- minify patched JS files - -* Tue Oct 31 2017 Kevin Fenzi - 4.8.3-1 -- Update to 4.8.3. Security release. Fixes bug #1508255 - -* Wed Sep 20 2017 Remi Collet - 4.8.2-1 -- Update to 4.8.2 Security and Maintenance Release - -* Thu Aug 3 2017 Remi Collet - 4.8.1-1 -- Update to 4.8.1 Maintenance Release. - -* Thu Jul 27 2017 Fedora Release Engineering - 4.8-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Jun 9 2017 Remi Collet - 4.8-1 -- WordPress 4.8 “Evans” - -* Wed May 17 2017 Remi Collet - 4.7.5-1 -- WordPress 4.7.5 Security and Maintenance Release - -* Wed May 10 2017 Remi Collet - 4.7.4-2 -- protect .phar from being executed from uploads directory - -* Sat Apr 22 2017 Kevin Fenzi - 4.7.4-1 -- Update to 4.7.4. Maintenance Release. - -* Tue Mar 7 2017 Remi Collet - 4.7.3-1 -- WordPress 4.7.3 Security and Maintenance Release - -* Sat Feb 11 2017 Fedora Release Engineering - 4.7.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Fri Jan 27 2017 Remi Collet - 4.7.2-1 -- WordPress 4.7.2 Security Release - -* Thu Jan 12 2017 Remi Collet - 4.7.1-1 -- WordPress 4.7.1 Security and Maintenance Release - -* Wed Dec 7 2016 Remi Collet - 4.7.0-1 -- WordPress 4.7 “Vaughan” - -* Thu Sep 8 2016 Remi Collet - 4.6.1-1 -- WordPress 4.6.1 Security and Maintenance Release - -* Sat Sep 3 2016 Remi Collet - 4.6-2 -- WordPress 4.6 “Pepper” -- fix directory permissions #1305687 - -* Mon Jun 27 2016 Remi Collet - 4.5.3-2 -- add patch to drop ereg dependency, see - https://core.trac.wordpress.org/ticket/37194 - -* Wed Jun 22 2016 Remi Collet - 4.5.3-1 -- WordPress 4.5.3 Maintenance and Security Release - -* Sat May 14 2016 Remi Collet - 4.5.2-2 -- never bundle ca-bundle.crt (EL-5) -- provide nginx configuration (fedora) -- drop mandatory dependency on httpd (suggested) #1336091 -- protect php files in uploads directory - -* Tue May 10 2016 Remi Collet - 4.5.2-1 -- WordPress 4.5.2 Security Release - -* Wed Apr 27 2016 Remi Collet - 4.5.1-1 -- WordPress 4.5.1 Maintenance Release - -* Wed Apr 13 2016 Remi Collet - 4.5-1 -- WordPress 4.5 “Coleman” - -* Fri Mar 25 2016 Remi Collet - 4.5-0.1.RC1 -- WordPress 4.5 Release Candidate - -* Wed Feb 3 2016 Remi Collet - 4.4.2-1 -- WordPress 4.4.2 Security and Maintenance Release - -* Thu Jan 7 2016 Remi Collet - 4.4.1-1 -- WordPress 4.4.1 Security and Maintenance Release - -* Wed Dec 9 2015 Remi Collet - 4.4-1 -- WordPress 4.4 “Clifford” - -* Wed Sep 16 2015 Remi Collet - 4.3.1-1 -- WordPress 4.3.1 Security and Maintenance Release - -* Wed Aug 26 2015 Remi Collet - 4.3-1 -- WordPress 4.3 “Billie” - -* Tue Aug 4 2015 Remi Collet - 4.2.4-1 -- WordPress 4.2.4 Security and Maintenance Release - -* Fri Jul 24 2015 Remi Collet - 4.2.3-1 -- WordPress 4.2.3 Security and Maintenance Release - -* Fri Jun 19 2015 Fedora Release Engineering - 4.2.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Thu May 7 2015 Remi Collet - 4.2.2-1 -- WordPress 4.2.2 Security and Maintenance Release - -* Tue Apr 28 2015 Remi Collet - 4.2.1-1 -- WordPress 4.2.1 Security Release - -* Fri Apr 24 2015 Remi Collet - 4.2-1 -- WordPress 4.2 “Powell” - -* Thu Apr 23 2015 Remi Collet - 4.1.2-1 -- WordPress 4.1.2 Security Release - -* Thu Feb 19 2015 Remi Collet - 4.1.1-1 -- WordPress 4.1.1 Maintenance Release - * Mon Dec 22 2014 Remi Collet - 4.1-1 - WordPress 4.1 “Dinah” * Fri Nov 21 2014 Remi Collet - 4.0.1-1 - WordPress 4.0.1 Security Release - -* Tue Sep 30 2014 Remi Collet - 4.0-3 - use system php-getid3 when available #1145574 * Mon Sep 8 2014 Remi Collet - 4.0-1 @@ -717,9 +298,6 @@ end - update to 3.9.2 Security Release #1127547 - config file only readable by apache user (httpd or php-fpm) #1124582 -* Sun Jun 08 2014 Fedora Release Engineering - 3.9.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - * Fri May 9 2014 Remi Collet - 3.9.1-1 - update to 3.9.1 Maintenance Release