ChangeLog.txt 560 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789
  1. Sat Apr 30 06:54:56 UTC 2022
  2. academic/AlphaPlot: Added (data analysis and visualization)
  3. academic/avogadroapp: Fix DOWNLOAD.
  4. academic/avogadroapp: Provide option to build shared/static.
  5. academic/dakota: Update BUILD.
  6. academic/getdp: Update README.
  7. academic/getfem: Fix slack-desc.
  8. academic/gmsh: Updated for version 4.10.0.
  9. academic/x48: Added (HP48 Calculator emulator)
  10. audio/flacon: Updated for version 8.3.0.
  11. audio/pulseaudio-ctl: Updated for version 1.70.
  12. audio/rack: Added (The Eurorack Simulator)
  13. desktop/BlockstreamGreen: Added (A Bitcoin Wallet).
  14. desktop/doctest: Added (C++ testing framework).
  15. desktop/dunst: Updated for version 1.8.1
  16. desktop/gfi: Added (GTK Flatpak Installer)
  17. desktop/gmrun: Updated for version 1.3w.
  18. desktop/jgmenu: Updated for version 4.4.0.
  19. desktop/qt5ct: Updated for version 1.5.
  20. desktop/sl-fortune: Added (fortune in X with a slack-ish icon)
  21. desktop/waybar: Added (bar for wlroots based compositors).
  22. desktop/wayfire: Added (3D wayland compositor).
  23. desktop/wcm: Added (config manager for wayfire).
  24. desktop/wf-config: Added (Configuration library).
  25. desktop/wf-shell: Added (GTK3-based panel for wayfire).
  26. desktop/xfce4-windowck-plugin: add upstream patch
  27. desktop/yambar: Fix slack-desc.
  28. desktop/zenity: Update for 3.42.1; update website.
  29. development/avr-binutils: Updated for version 2.38.
  30. development/avrdude: Updated for version 6.4.
  31. development/composer: Updated for version 2.3.5
  32. development/dbeaver-ce: Updated for version 22.0.3.
  33. development/dpkg: Updated for version 1.21.7.
  34. development/gedit-plugins: Updated for version 42.0. New maintainer.
  35. development/gedit: Updated for version 42.0. New maintainer.
  36. development/ghidra: Updated for version 10.1.3
  37. development/git-lfs: Updated for version 3.1.4.
  38. development/github-cli: Updated for version 2.9.0
  39. development/hugo: Updated for version 0.98.0
  40. development/idea: Updated for version 2022.1.
  41. development/jupyter-nbclient: Update for 0.6.0
  42. development/jupyter-nbconvert: Update for 6.5.0
  43. development/jupyter-notebook_shim: Added (shim for Jupyter Notebook)
  44. development/jupyter_client: Update for 7.3.0
  45. development/jupyter_packaging: Added (Jupyter Packaging Utilities)
  46. development/jupyter_server: Added (Jupyter Backend)
  47. development/jupyterlab: Added (Jupyter next-gen user interface)
  48. development/jupyterlab_server: Added (Launch a JupyterLab app)
  49. development/mdbook: Strip binaries.
  50. development/mysql-workbench: Updated for version 8.0.29.
  51. development/pgmodeler: Added (PostgreSQL Database Modeler)
  52. development/postman: Updated for version 9.16.0
  53. development/protobuf3: Updated for version 3.20.1.
  54. development/recutils: Added (tools/libraries to access recfiles).
  55. development/rstudio-desktop: Update for 2022.02.2+485
  56. development/universal-ctags: Updated for version p5.9.20211205.0
  57. development/xmake: Updated for version 2.6.5.
  58. games/ZEsarUX: Updated for version 10.0.
  59. games/devilutionx: Updated for version 1.4.0.
  60. games/dwarffortress: Added (A single-player fantasy adventure game)
  61. games/nestopia: Add newline at EOF to README.
  62. games/openttd: Updated for version 12.2.
  63. games/trigger-rally: Updated for version 0.6.6.1. New maintainer.
  64. games/worldofpadman: Remove cruft, fix icons, desktop, add wrappers.
  65. graphics/farbfeld: Added (lossless image format)
  66. graphics/peek: Added (an animated GIF recorder).
  67. graphics/vuescan: Updated MD5SUMs.
  68. graphics/vuescan: Updated for version 9.7.84.
  69. graphics/yed: Updated for version 3.22
  70. libraries/aqbanking: Updated for version 6.5.0.
  71. libraries/audioread: Updated for version 2.1.9.
  72. libraries/bullet: Updated for version 3.24.
  73. libraries/date: Added (date and time library)
  74. libraries/gtk-layer-shell: Added (Layer Shell GTK appls libs).
  75. libraries/gtkglext: Fix docs.
  76. libraries/gtkmm-utils: Fix docs.
  77. libraries/gwenhywfar: Updated for version 5.9.0.
  78. libraries/hoel: updated for version 1.4.22
  79. libraries/iddawc: updated for version 1.1.3
  80. libraries/levmar: Fix docs.
  81. libraries/libchamplain: Fix typo in the build script
  82. libraries/libdbi-drivers: Fix docs.
  83. libraries/libde265: Remove tests. Update README.
  84. libraries/libdmapsharing: Fix docs.
  85. libraries/libfprint: Strip library; fix docs.
  86. libraries/libg3d: Fix docs.
  87. libraries/libgdata: Make sure we use the correct switch for tests
  88. libraries/libgnomeuimm: Fix docs.
  89. libraries/libgweather: Remove unused options
  90. libraries/libheif: Updated for version 1.12.0.
  91. libraries/libmrss: Strip library.
  92. libraries/libquicktime: Fix docs.
  93. libraries/libskk: Fix docs.
  94. libraries/libticalcs2: Strip library, fix docs.
  95. libraries/libtifiles2: Strip library, fix docs.
  96. libraries/libtorrent-rasterbar: Update for 1.2.16
  97. libraries/libtpms: Updated for version 0.9.4
  98. libraries/libucil: Fix docs.
  99. libraries/libvirt: Strip binaries.
  100. libraries/libxdg-basedir: Updated for version 1.2.3.
  101. libraries/lua-cjson: Strip library, use SLKCFLAGS.
  102. libraries/lua-md5: Fix doc permissions.
  103. libraries/mowitz: Fix docs.
  104. libraries/munkres: Updated for version 1.1.4.
  105. libraries/musicbrainzngs: New maintainer.
  106. libraries/nlohmann_json: Fix slack-desc.
  107. libraries/opendht: Fix docs.
  108. libraries/php-redis: updated for version 5.3.7, new maintainer
  109. libraries/process-cpp: Fix docs.
  110. libraries/properties-cpp: Fix docs.
  111. libraries/pyacoustid: Updated for version 1.2.2.
  112. libraries/qt-assistant-compat: Fix doc permissions.
  113. libraries/rabbitmq-c: Updated for version 0.11.0.
  114. libraries/raylib: Added (Game development library).
  115. libraries/rhonabwy: updated for version 1.1.5
  116. libraries/simbody: Fix docs.
  117. libraries/slib: Fix docs, make noarch.
  118. libraries/slv2: Strip binaries.
  119. libraries/spdlog: Updated for version 1.10.0.
  120. libraries/tolua++: Fix doc permissions.
  121. libraries/webkit2gtk4.1: Updated for version 2.36.1.
  122. libraries/webkit2gtk: Updated for version 2.36.1.
  123. libraries/wxPython4: Fix docs.
  124. libraries/xalan-c: Fix doc permissions.
  125. libraries/xmlrpc-c: Fix doc perms, add -j1 to make.
  126. misc/discount: New Maintainer.
  127. misc/dos2unix: Updated for version 7.4.2
  128. misc/ghostpcl: Updated for version 9.56.1.
  129. misc/gprename: Updated for version 20220206, new maintainer.
  130. misc/sbo-templates: Updated for version 1.3.4.
  131. misc/tal: New maintainer.
  132. multimedia/MuseScore: build and README update
  133. multimedia/QMPlay2: Updated for version 22.03.19.
  134. multimedia/parole: Updated for version 4.16.0.
  135. network/AdGuardHome: Update script.
  136. network/AdGuardHome: Updated for version 0.107.6.
  137. network/bitcoin: Updated for version 23.0.
  138. network/brave-browser: Updated for version 1.38.109
  139. network/clipgrab: Updated for version 3.9.7.
  140. network/deluge: Update for 2.0.5
  141. network/dropbox: Updated for version 147.4.4800.
  142. network/elinks: Add Patches: disable suspend, -no-connect
  143. network/fdns: Updated for version 0.9.68.
  144. network/haproxy: Updated for version 2.5.6.
  145. network/js185: Added (SpiderMonkey - Mozilla's JavaScript Engine).
  146. network/mattermost-desktop: Update BUILD. New maintainer.
  147. network/mattermost-desktop: Updated for version 5.0.4.
  148. network/mosh: New maintainer, bash completion, ufw support.
  149. network/opera-developer: Updated for version 88.0.4395.0.
  150. network/opera: Updated for version 86.0.4363.23.
  151. network/quassel-qt5: Removed (redundant; use quassel).
  152. network/quassel: New maintainer.
  153. network/rclone: Updated for version 1.58.1
  154. network/seadrive-fuse: Added (SeaDrive daemon with FUSE interface)
  155. network/signal-desktop: Updated for version 5.41.0
  156. network/snownews: Removed (part of slackWare).
  157. network/teamviewer: Updated for version 15.29.4
  158. network/telegram: Updated for version 3.7.1.
  159. network/telegram: Updated for version 3.7.3.
  160. network/vdirsyncer: Added (cli calendar/address book sync tool)
  161. network/wsdd2: Updated for version 1.8.6.
  162. network/zoom-linux: Updated for version 5.10.4.2845
  163. office/JabRef: Updated for version 5.6.
  164. office/anorack: New Maintainer.
  165. office/calibre-bin: Updated for version 5.41.0.
  166. office/evolution-ews: Added (Exchange Web Services)
  167. office/evolution: Added (Email and calendaring application)
  168. office/gmdb2: Added (official GUI for mdbtools).
  169. office/khal: Added (terminal/cli calendar program)
  170. office/khard: Added (an address book for the Unix console)
  171. office/leafpad: New Maintainer.
  172. office/mdbtools: Updated for version 1.0.0.
  173. office/qpdfview-qt5: Removed (redundant; use qpdfview).
  174. office/qpdfview: New maintainer.
  175. perl/MoarVM: Updated for version 2022.04
  176. perl/nqp: Updated for version 2022.04
  177. perl/perl-Devel-Trace: Added (Print each line before execution)
  178. perl/perl-JSON-XS: Updated for version 4.03. New maintainer.
  179. perl/perl-Types-Serialiser: Updated for v 1.01. New maintainer.
  180. perl/perl-common-sense: Remove empty man page. New maintainer.
  181. perl/perl-extutils-depends: Updated for version 0.8001.
  182. perl/perl-file-basedir: Updated for version 0.09.
  183. perl/perl-file-mimeinfo: Updated for version 0.32.
  184. perl/rakudo: Updated for version 2022.04
  185. python/bleach: updated for version 5.0.0
  186. python/doit: Updated for version 0.36.0.
  187. python/ipython: Update for 8.3.0
  188. python/jellyfish: Updated for version 0.9.0.
  189. python/python-confuse: Added (painless YAML config files)
  190. python/python-mediafile: Added (read and write audio files' tags)
  191. python/python3-aiohttp: Remove gunicorn from DEPs
  192. python/python3-amqp: updated for version 5.1.1
  193. python/python3-anyio: Added (Asynchronous framework)
  194. python/python3-babel: updated for version 2.10.1
  195. python/python3-celery: updated for version 5.2.6
  196. python/python3-deprecation: Added (lib for handling deprecations)
  197. python/python3-json5: Added (Python implementation of JSON5)
  198. python/python3-prompt_toolkit: updated for version 3.0.29
  199. python/python3-psycopg3: Added (python3 PostgreSQL database adapter)
  200. python/python3-pytest: Update for 7.1.2
  201. python/python3-requests-unixsocket: Added (talk to HTTP)
  202. python/python3-sniffio: Added (detect async library)
  203. python/python3-tomlkit: Added (Style-preserving TOML library)
  204. ruby/3llo: Added (The interactive CLI application for Trello)
  205. ruby/pastel: Added (independent coloring component f/ TTY toolkit.)
  206. ruby/tty-color: Added (Terminal color capabilities detection.)
  207. ruby/tty-cursor: Added (move the cursor and manipulate text)
  208. ruby/tty-prompt: Added (A powerful interactive command line prompt)
  209. ruby/tty-reader: Added (process keyboard input in character)
  210. ruby/tty-screen: Added (Terminal screen size detection)
  211. ruby/wisper: Added (Ruby objects w/ Publish-Subscribe capabilities.)
  212. system/backintime: Added (simple backup tool)
  213. system/bitrot: New Maintainer.
  214. system/bleachbit: Updated for version 4.4.2.
  215. system/bulk_extractor: Updated to v2.0.0
  216. system/dosbox-dev: updated for version 0.75_pre4474
  217. system/dump: New maintainer.
  218. system/f3: Updated for version 8.0.
  219. system/fprintd: Added (fingerprint scanning daemon over D-Bus)
  220. system/linkchecker: Update DEP for GUI.
  221. system/makeself: Don't put files directly in /usr/share.
  222. system/monitorix: Fix download URL.
  223. system/munin-node: Add doc directory.
  224. system/netdata: Update README.
  225. system/netdata: Update source to fix build with protobuf3.
  226. system/nsca-ng: Exit nonzero if user/group don't exist.
  227. system/nvidia-driver: Updated for version 510.68.02.
  228. system/nvidia-kernel: Updated for version 510.68.02.
  229. system/openrazer-kernel: Fix PRINT_PACKAGE_NAME & docs dir.
  230. system/openrc-services: Updated for version 20210926.
  231. system/passwordsafe: Fix doinst.sh.
  232. system/phoronix-test-suite: Updated for version 10.8.3.
  233. system/piper: Add doinst.sh.
  234. system/powershell: Update for version 7.2.3.
  235. system/python-urwid: Strip binaries.
  236. system/razerCommander: Fix doinst.sh.
  237. system/redis-py: updated for version 4.2.2, python3, new maintainer
  238. system/redis: updated for version 6.2.6, new maintainer
  239. system/sakura: New Maintainer.
  240. system/slackrepo-hints: Updated for version 20220429.
  241. system/sleuthkit: Updated for version 4.11.1
  242. system/swtpm: Added (libtpms-based TPM emulator)
  243. system/trmaid: removed, upstream disappeared, removed from pypi
  244. system/veracrypt: Remove empty /usr/share/doc dir.
  245. system/zsh-completions: Updated for version 0.33.0.
  246. +--------------------------+
  247. Sat Apr 23 18:49:13 UTC 2022
  248. academic/FreeFem: Updated for version 4.11.
  249. academic/avogadroapp: Added (graphic user interface of Avogadro 2)
  250. academic/avogadrolibs: Added (Libraries for Avogadro 2)
  251. academic/dakota: Added documentation.
  252. academic/gcompris-qt: Updated for version 2.4.
  253. academic/getfem: Added (finite element modeling software)
  254. academic/gwyddion: Updated for version 2.60.
  255. academic/molequeue: Updated for version 0.9.0.
  256. academic/petsc: Added (toolkit for scientific computation).
  257. academic/rpy2: Updated to version 3.5.1.
  258. audio/JDSP4Linux: Added (Pipewire system equalizer).
  259. audio/ncmpcpp: Updated for version 0.9.2.
  260. audio/opustags: Added (View and edit Ogg Opus comments.)
  261. desktop/Tela-icon-theme: Fix github tarball handling.
  262. desktop/anki: Fix DOWNLOAD url.
  263. desktop/bottles: Updated for version 2022.4.14.trento.2.
  264. desktop/foot: Added (native wayland terminal emulator)
  265. desktop/fuzzel: Added (wayland native application launcher)
  266. desktop/qtile: Updated README.
  267. desktop/yambar: Added (status panel for X11 and Wayland)
  268. development/Catch: Fix docs; make self-test optional.
  269. development/ghex: Update for 42.1
  270. development/jupyter-notebook: Updated for version 6.4.11.
  271. development/jupyter_core: Updated for version 4.10.0.
  272. development/jupyterlab_pygments: Revert to version 0.1.2.
  273. development/kotlin: Updated for version 1.6.21.
  274. development/mongodb-compass: Updated for version 1.31.2.
  275. development/mysql-workbench: Add upstream patch.
  276. development/neovim: Updated for version 0.7.0.
  277. development/openjdk7: Fix script.
  278. development/openjdk8: Updated for version 8u322.
  279. development/portaudio: new maintainer.
  280. development/protobuf3: Updated for version 3.20.0.
  281. development/valgrind: Updated for version .
  282. games/0ad-data: Updated for version 0.0.25b.
  283. games/0ad: Updated for version 0.0.25b.
  284. games/lutris: Updated to 0.5.10
  285. games/mgba: Updated for version 0.9.3.
  286. games/nestopia: Updated for version 1.51.1.
  287. games/ppsspp: Updated for version 1.12.3.
  288. gis/google-earth: Use correct VERSION.
  289. gis/python3-pyproj: Updated for version 3.3.1
  290. graphics/vuescan: Updated for version 9.7.83.
  291. ham/qt-dab: Added (Software DAB Decoder)
  292. libraries/Botan: Fix docs.
  293. libraries/CCfits: Fix docs.
  294. libraries/CGAL: Fix man page location.
  295. libraries/DevIL: Fix docs.
  296. libraries/FormEncode: Fix docs.
  297. libraries/GLee: Fix docs.
  298. libraries/Geraldo: Fix docs.
  299. libraries/HawkNL: Fix symlinks, rm static lib.
  300. libraries/Impacket: Fix docs.
  301. libraries/SDL_gfx: Fix docs.
  302. libraries/VitaMTP: Fix docs.
  303. libraries/antlr4: Updated for version 4.10.1.
  304. libraries/avr-libc: Fix PRINT_PACKAGE_NAME.
  305. libraries/barry: Fix docs.
  306. libraries/belle-sip: Fix docs.
  307. libraries/bullet: Updated for version 3.22b.
  308. libraries/bzrtp: Fix docs.
  309. libraries/cloog: Fix PRINT_PACKAGE_NAME.
  310. libraries/clutter-gtk: Added (GTK+ Integration library for Clutter).
  311. libraries/clutter: Added (OpenGL based interactive canvas library).
  312. libraries/cogl: Fix build with multiple jobs.
  313. libraries/compface: Strip libraries.
  314. libraries/ctemplate: Strip libraries.
  315. libraries/edelib: Fix docs.
  316. libraries/fcft: Added (font loading and glyph rasterization library)
  317. libraries/fcgi: Fix docs.
  318. libraries/ffms2: Fix docs.
  319. libraries/fmt: Updated for version 8.1.1.
  320. libraries/gconfmm: Fix docs.
  321. libraries/gdata: Fix docs.
  322. libraries/genshi: Strip library.
  323. libraries/gf2x: Fix docs, mention SSE2 in README.
  324. libraries/giblib: Fix docs.
  325. libraries/gmtk: Fix docs.
  326. libraries/goffice0.8: Fix docs.
  327. libraries/goffice: Fix docs.
  328. libraries/grx: Fix docs, disable parallel builds.
  329. libraries/gsm: Fix build.
  330. libraries/gsound: Fix docs.
  331. libraries/gspell: Fix PRINT_PACKAGE_NAME.
  332. libraries/gtk-sharp: Fix docs.
  333. libraries/gtkhtml: Fix doc, doinst.sh.
  334. libraries/htslib: Fix MD5SUM.
  335. libraries/iniparser: Use SLKCFLAGS, fix shared lib, rm static.
  336. libraries/jbigkit: Strip binaries.
  337. libraries/libEMF: Remove .la files.
  338. libraries/libasr: Fix man page permissions.
  339. libraries/libchamplain: Added (C library).
  340. libraries/libcitadel: Strip library.
  341. libraries/libclaw: Fix docs, rm static libs.
  342. libraries/libcoap: Make API docs optional.
  343. libraries/libcryptui: Add doinst.sh, fix icons.
  344. libraries/libdatrie: Fix docs.
  345. libraries/libdbi-drivers: fixup the postgres flags
  346. libraries/libdbus-c++: Fix docs.
  347. libraries/libdca: Fix docs, broken symlink.
  348. libraries/libdca: New maintainer.
  349. libraries/libeatmydata: Fix PRINT_PACKAGE_NAME.
  350. libraries/libetpan: Fix docs.
  351. libraries/libfastjson: Fix docs.
  352. libraries/libgaminggear: Fix docs.
  353. libraries/libgnomecups: Strip library.
  354. libraries/libgringotts: Fix docs.
  355. libraries/libhtp: Fix docs.
  356. libraries/libiptcdata: Fix docs.
  357. libraries/libircclient: Fix PRINT_PACKAGE_NAME.
  358. libraries/libkate: Remove static lib, fix docs.
  359. libraries/libmaa: Strip binaries.
  360. libraries/libmimic: Fix docs.
  361. libraries/libmms: Fix docs.
  362. libraries/libmspack: Fix docs.
  363. libraries/liboauth: Strip lib, fix PRINT_PACKAGE_NAME.
  364. libraries/liboglappth: Fix docs.
  365. libraries/libopenshot-audio: Make API doc optional.
  366. libraries/liborigin: Fix docs.
  367. libraries/libotf: Fix docs.
  368. libraries/libpar2: Fix docs.
  369. libraries/libpgf: Remove dos2unix dep; fix docs.
  370. libraries/libprelude: Strip binaries.
  371. libraries/librcd: Fix docs.
  372. libraries/libshout: New maintainer.
  373. libraries/libsieve: Strip binaries, fix tarball handling.
  374. libraries/libsmdev: Fix docs.
  375. libraries/libsoup3: Fix PRINT_PACKAGE_NAME.
  376. libraries/libticables2: Strip binaries.
  377. libraries/libticonv: Strip lib, fix docs.
  378. libraries/libtorrent-rasterbar: Fix PRINT_PACKAGE_NAME, strip.
  379. libraries/libtorrent: Fix docs.
  380. libraries/libtpms: Added (library for emulating TPM 1.2 and 2.0)
  381. libraries/libuchardet: Fix docs.
  382. libraries/libuinputplus: Fix PRINT_PACKAGE_NAME.
  383. libraries/libxfcegui4: Fix docs.
  384. libraries/libxlsxwriter: Fix docs.
  385. libraries/libxmi: Fix docs.
  386. libraries/libxmp: Fix PRINT_PACKAGE_NAME.
  387. libraries/libxnvctrl: Strip shared libary.
  388. libraries/live555: Update maintainer.
  389. libraries/lksctp-tools: Fix docs.
  390. libraries/log4shib: Fix conflict with graphviz.
  391. libraries/lua-luv: Updated for version 1.43.0_0.
  392. libraries/lxqt-notificationd: Fix .desktop, add doinst.sh.
  393. libraries/mbedtls: Fix PRINT_PACKAGE_NAME.
  394. libraries/meanwhile: Fix docs.
  395. libraries/msgpack-c: Fix docs.
  396. libraries/mujs: Fix docs.
  397. libraries/mxml: Fix docs, rm static lib.
  398. libraries/mysql-connector-c++: Fix docs.
  399. libraries/mysqltcl: Fix docs.
  400. libraries/nlohmann_json: Added (JSON for Modern C++)
  401. libraries/nlopt: Fix (gzip) man pages.
  402. libraries/ogre: Fix docs.
  403. libraries/onevpl: Fix docs.
  404. libraries/opencl-amd: Fix package filename, docs.
  405. libraries/paho-mqtt: Fix PRINT_PACKAGE_NAME.
  406. libraries/pangox-compat: Fix docs.
  407. libraries/pidgin-mra: Fix icon permissions.
  408. libraries/podofo: Fix PRINT_PACKAGE_NAME.
  409. libraries/progressbar: Fix PRINT_PACKAGE_NAME.
  410. libraries/ptypes: Fix docs.
  411. libraries/qt3: Fix docs, doinst, symlink.
  412. libraries/qwt: Don't build examples by defalt.
  413. libraries/rapidjson: Fix docs.
  414. libraries/spdlog: Strip binaries.
  415. libraries/tDOM: Fix tarball handling.
  416. libraries/tclap: Make API docs optional.
  417. libraries/tcllib: Fix docs.
  418. libraries/tllist: Added (typed linked list c header file)
  419. libraries/tlsh: Fix docs.
  420. libraries/totem-pl-parser: Strip binaries.
  421. libraries/udunits: Fix docs.
  422. libraries/ulfius: Fix docs.
  423. libraries/vdk: Fix man page.
  424. libraries/vigra: Fix docs.
  425. libraries/wcslib: Fix permissions, rm static lib.
  426. libraries/webkit2gtk4.1: Fix PRINT_PACKAGE_NAME.
  427. libraries/webkit2gtk: Fix PRINT_PACKAGE_NAME.
  428. libraries/wxGTK3: Make API docs optional.
  429. libraries/xapian-bindings: Do not include /tmp in the package.
  430. libraries/xforms: Strip demos.
  431. libraries/xlt: Fix docs.
  432. libraries/xmpppy: Fix docs.
  433. libraries/xview: Fix docs.
  434. misc/fcitx-mozc: Updated for version 2.26.4220.102.1.
  435. misc/simh-classic: Gzip patch to preserve line endings.
  436. multimedia/haruna: Updated for version 0.8.0.
  437. multimedia/openshot: Fix doinst.sh, stop spamming /usr.
  438. multimedia/zvbi: Update maintainer. Template fixes.
  439. network/axel: Updated for version 2.17.11.
  440. network/brave-browser: Fix BUILD variable usage.
  441. network/dropbear: Updated for version 2022.82.
  442. network/element-desktop: Updated for version 1.10.10.
  443. network/franz: Updated for version 5.9.2.
  444. network/hostapd: Updated for version 2.10.
  445. network/isync: Updated for version 1.4.4.
  446. network/mailspring: Updated for version 1.10.3
  447. network/microsoft-edge: Update for version 100.0.1185.50.
  448. network/mrtg: Update maintainer email
  449. network/signal-desktop: Updated for version 5.40.1.
  450. network/skypeforlinux: Updated for version 8.83.0.408.
  451. network/sslscan: Updated for version 2.0.13.
  452. network/strongswan: Updated for version 5.9.5.
  453. network/teamviewer: Added (remote control application).
  454. network/telegram: Updated for version 3.7.0.
  455. network/zoom-linux: Updated for version 5.10.3.2778.
  456. office/MasterPDFEditor: Updated for version 5.8.49.
  457. office/etmtk: Updated for version 3.2.39.
  458. office/gnucash: Update DEP.
  459. office/hunspell-en: Update for 2020.12.07 (+new maintainer)
  460. office/pdfarranger: moved from python; adapted doinst.sh for icons
  461. office/tudu: Updated for version 0.10.4.
  462. python/objgraph: Added (Python Module).
  463. python/pikepdf: Updated to version 5.1.2.
  464. python/python-xkbcommon: Fix github tarball handling.
  465. python/python3-pytest-cov: Added (coverage plugin for pytest)
  466. ruby/ruby-build: Updated for version 20220324.
  467. ruby/sequel: Updated for version 5.55.0.
  468. system/brlaser: Added (CUPS driver for Brother laser printers).
  469. system/efiboots: Added (GTK3 frontend for efibootmgr).
  470. system/evolution-data-server: Fix script.
  471. system/fish: Remove /usr/share/doc, fix doinst.sh.
  472. system/fswatch: Updated for version 1.16.0.
  473. system/mpollux-digisign-client: Added (smart card middleware).
  474. system/netdata: Updated for version 1.34.1.
  475. system/osquery-bin: Updated for version 5.2.3.
  476. system/pcem: update to version f4a1ab9.20220418
  477. system/prometheus: Updated for version 2.35.0.
  478. system/scdoc: Updated for version 1.11.2.
  479. system/swapinzram: Added (Configure a swap block device in RAM).
  480. system/trash-cli: Update for 0.22.4.16 (+new maintainer)
  481. system/trousers: Added (TSS implementation by IBM)
  482. system/winetricks: Update for 20220411 (+new maintainer)
  483. system/xen: Updated for version 4.16.1.
  484. system/yelp: Update README.
  485. +--------------------------+
  486. Sat Apr 16 05:25:03 UTC 2022
  487. academic/R: Updated for version 4.1.3.
  488. academic/bcftools: Updted to version 1.15.1
  489. academic/bibletime: Updated for version 3.0.2.
  490. academic/openboard: Fix build for current.
  491. academic/rpy2: Updated to version 3.5.0
  492. academic/samtools: Updated to version 1.15.1
  493. academic/sword-data-kjv: Updated for version 1.9.0_1.
  494. academic/sword: Updated for version 1.9.0.
  495. academic/xflr5: Updated for version 6.54.
  496. academic/xiphos: Fix build.
  497. audio/rplay: Fix /usr/include permissions.
  498. audio/sayonara-player: Updated for version 1.7.0_stable3.
  499. desktop/Matcha-gtk-theme: Added (flat design theme).
  500. desktop/Matcha-gtk-theme: Fix Github URL.
  501. desktop/Tela-icon-theme: Added (flat icon theme).
  502. desktop/bemenu: Add missing scdoc dependency.
  503. desktop/bottles: Added (easily manage wineprefix using environments)
  504. desktop/flatpak: Updated for version 1.12.7.
  505. desktop/sway: Added (wayland i3 clone)
  506. desktop/xwallpaper: Added (X wallpaper utility).
  507. development/THE: Updated for version 3.3RC8.
  508. development/dotnet-runtime-3.1: Update for version 3.1.24.
  509. development/dotnet-runtime-5.0: Update for version 5.0.16.
  510. development/dotnet-runtime-6.0: Update for version 6.0.4.
  511. development/dotnet-sdk-3.1: Update for version 3.1.418.
  512. development/dotnet-sdk-5.0: Update for version 5.0.407.
  513. development/dotnet-sdk-6.0: Update for version 6.0.202.
  514. development/erlang-otp: Strip binaries.
  515. development/fpc: Clean up /usr/bin dir.
  516. development/github-cli: Updated for version 2.8.0
  517. development/gnustep-base: Strip binaries.
  518. development/google-go-lang: Updated for version 1.17.9.
  519. development/gtest: Fix docs, shared lib perms.
  520. development/hugo: Updated for version 0.97.0.
  521. development/jupyter-ipykernel: Update for 6.13.0
  522. development/jupyter_client: Update for 7.2.2
  523. development/jupyterlab_pygments: Update for 0.2.0
  524. development/kotlin: Updated for version 1.6.20.
  525. development/lazarus: Fix PRINT_PACKAGE_NAME, doinst, docs, symlink.
  526. development/micro: Fix installing doinst.sh.
  527. development/mongodb-compass: Updated for version 1.31.1.
  528. development/nodejs: Updated for version 17.9.0.
  529. development/ocaml: Fix docs.
  530. development/rr: Added (Record and Replay Framework).
  531. development/rstudio-desktop: Fix github tarball handling.
  532. development/rstudio-desktop: Use zulu-openjdk8.
  533. development/vscode-bin: Updated for version 1.66.1.
  534. games/ags: Strip binary.
  535. games/devilutionx: Fix github tarball handling.
  536. games/freeciv: updated for version 3.0.1
  537. graphics/OpenVSP: Add missing dependency fltk.
  538. graphics/fontforge: Fix doc location.
  539. graphics/mangohud: Fix github tarball handling.
  540. graphics/tuxpaint-stamps: Updated for version 2021.11.25.
  541. libraries/PDCurses: Remove file libpdcurses-x11.pc.
  542. libraries/QtUsb: Fix /usr/include permissions.
  543. libraries/adns: Fix empty package.
  544. libraries/aspnetcore-runtime-3.1: Update for version 3.1.24.
  545. libraries/aspnetcore-runtime-5.0: Update for version 5.0.16.
  546. libraries/aspnetcore-runtime-6.0: Update for version 6.0.4.
  547. libraries/cogl: Added (3D Graphics API).
  548. libraries/confuse: Fix docs.
  549. libraries/cppzmq: Add missing Catch dependency.
  550. libraries/htslib: Updted to version 1.15.1
  551. libraries/iddawc: Updated for version 1.1.2.
  552. libraries/lablgtk: Fix docs.
  553. libraries/libaal: Fix docs.
  554. libraries/libbonoboui: Fix doc, .desktop.
  555. libraries/libchewing: /usr/share/info => /usr/info.
  556. libraries/libcsv: Fix docs.
  557. libraries/libfilezilla: Updated for version 0.37.1.
  558. libraries/libgdata: Added (online services APIs access)
  559. libraries/libgksu: Fix docs and .desktop.
  560. libraries/libgnomecanvas: Fix docs.
  561. libraries/libgweather: Added (weather library for GNOME)
  562. libraries/libgweather: Fix doinst.sh typo.
  563. libraries/libpaper: Updated for version 1.1.28build2.
  564. libraries/qmltermwidget: Fix build on 32bit.
  565. libraries/rhonabwy: Updated for version 1.1.4.
  566. libraries/seatd: Fix alternative tarball name handling.
  567. libraries/stormlib: Use correct github URL.
  568. libraries/ulfius: Updated for version 2.7.9.
  569. libraries/vcglib: Make noarch; put docs in doc dir.
  570. libraries/wxGTK3: Install generated HTML docs, not source.
  571. libraries/wxPython3: Fix doc and include permissions.
  572. libraries/wxPython: Fix permissions and .desktop.
  573. misc/cwiid: Fix /usr/include permissions.
  574. misc/gnome-mime-data: Make noarch, fix docs.
  575. misc/recode: Strip binaries.
  576. multimedia/intel-gmmlib: Fix github tarball handling.
  577. multimedia/intel-media-driver: Fix github tarball handling.
  578. multimedia/intel-media-sdk: Fix github tarball handling.
  579. multimedia/l-smash: Fix /installpkg-* mess.
  580. multimedia/plexmediaserver: Updated for v 1.25.9.5721_965587f64.
  581. multimedia/strawberry: Updated for version 1.0.4.
  582. network/argus-clients: Fix /usr/include permissions.
  583. network/avahi: No empty /run dir in package.
  584. network/brave-browser: Updated for version 1.37.116.
  585. network/clusterit: Fix ordering of info file entries.
  586. network/cni-plugins: Updated for version 1.1.1.
  587. network/dropbear: Don't overwrite /usr/bin/scp by default; fix docs.
  588. network/element-desktop: Added (secure + independent communication).
  589. network/filezilla: Updated for version 3.59.0.
  590. network/franz: Updated for version 5.9.1.
  591. network/haproxy: Updated for version 2.5.5.
  592. network/ipxnet: Fix /installpkg-* mess.
  593. network/nextcloud-desktop: Fix URL.
  594. network/nordvpn: Fix ARCH handling.
  595. network/prosody-mod-http-upload: Updated for version hg4906.
  596. network/snownews: Added (feed reader).
  597. network/tor-browser: Updated for version 11.0.10.
  598. network/zabbix_agentd: Updated for version 6.0.3.
  599. network/zabbix_java_gateway: Updated for version 6.0.3.
  600. network/zabbix_proxy: Updated for version 6.0.3.
  601. network/zabbix_server: Updated for version 6.0.3.
  602. office/fop: Update README, symlink.
  603. office/pandoc-bin: Updated for versoin 2.18.
  604. perl/perl-Curses: Fix docs.
  605. perl/perl-File-Slurp: Make noarch, fix docs.
  606. perl/perl-Locale-Codes: Fix slack-desc to be valid.
  607. python/click-log: Added (Python Module).
  608. python/click-threading: Added (add multithreading).
  609. python/debugpy: Fix MD5SUM.
  610. python/doit: Updated for version 0.35.0.
  611. python/dulwich: removed, unused and replaced by python3 version
  612. python/foolscap: Fix DOWNLOAD/HOMEPAGE.
  613. python/hg-git: updated for version 1.0.0, new maintainer
  614. python/nest_asyncio: Update for 1.5.5
  615. python/pdfarranger: Fix installing doinst.sh.
  616. python/pygsl: Updated for version 2.3.2.
  617. python/python-evdev: Update README.
  618. python/python-prometheus_client: Update for 0.14.1
  619. python/python-xkbcommon: Added (Python bindings for libxkbcommon)
  620. python/python2-automat: Add missing python-m2r dependency.
  621. python/python2-soupsieve: Fix docs.
  622. python/python3-automat: Add missing python-m2r dependency.
  623. python/python3-build: Added (Python module).
  624. python/python3-pep517: Added (API to call PEP 517 hooks).
  625. python/python3-pythran: Fix lib dir usage on 32bit.
  626. python/python3-pyzmq: Updated for version 22.3.0
  627. python/python3-soupsieve: Fix docs.
  628. python/python3-twisted: Updated for version 22.4.0.
  629. python/pywayland: Added (Python bindings for the libwayland library)
  630. python/pywlroots: Added (Python binding to the wlroots library)
  631. system/ccrypt: Fix docs.
  632. system/cdemu-client: Fix docs.
  633. system/cdemu-daemon: Fix docs.
  634. system/cdrkit: Fix docs.
  635. system/clamsmtp: Fix docs.
  636. system/cnijfilter2: Strip binaries.
  637. system/conky: Fix doinst.sh.
  638. system/courier-prime: Fix docs.
  639. system/cpu-g: Fix permissions.
  640. system/crashplan: Fix .desktop, respect environment ARCH.
  641. system/crmsh: Fix docs.
  642. system/crunch: Fix permissions.
  643. system/csh: Fix doinst.sh.
  644. system/culmus: Fix ARCH, docs.
  645. system/curlftpfs: Fix docs.
  646. system/cutecom: Fix build.
  647. system/d-feet: Fix doinst.sh, symlinks.
  648. system/dar: Fix docs.
  649. system/ddrescueview: Fix man page path.
  650. system/docker-cli: Strip binary.
  651. system/docker-machine-kvm: Strip binary.
  652. system/docker-proxy: Strip binary.
  653. system/dosbox-dev: Fix icon and .desktop.
  654. system/driconf: Fix icon path, add doinst.sh.
  655. system/dtach: Updated for version 0.9, strip binary.
  656. system/dvdisaster: Fix doinst.sh.
  657. system/evolution-data-server: Added (Desktop Information Store)
  658. system/execline: Fix docs.
  659. system/f3: Strip binary.
  660. system/fatsort: Fix man page permission.
  661. system/fileschanged: Don't spam /usr/lib.
  662. system/firejail: Add SlackBuild to doc dir.
  663. system/firetools: Add SlackBuild to doc dir.
  664. system/fish: Updated for version 3.4.0.
  665. system/font-manager: Fix doinst.sh.
  666. system/foomatic-db: Fix doc perms, PPD symlink.
  667. system/freeipmi: Fix /installpkg-* mess, symlinks.
  668. system/freeswitch: Fix docs.
  669. system/fuse-exfat: Fix doinst.sh.
  670. system/fuse-zip: Remove /usr/share/doc.
  671. system/fuseiso: Fix docs.
  672. system/gdmap: Fix .desktop.
  673. system/gencfs: Fix .desktop.
  674. system/gentoo: Fix icon and .desktop.
  675. system/geoclue: Add doinst.sh (glib schemas).
  676. system/gnome-commander: Fix icon and symlinks.
  677. system/gnome-online-accounts: Added (access GNOME online accounts)
  678. system/goaccess: Fix docs.
  679. system/hdapsd: Don't step on existing config file.
  680. system/heartbeat: Fix doinst.sh.
  681. system/hfsprogs: Strip binaries.
  682. system/iscan: Fix .desktop, symlink, docs.
  683. system/kafka: Fix symlink.
  684. system/lcdf-typetools: Added (Program for Font Manipulation).
  685. system/letsencrypt: Updated for version 1.26.0.
  686. system/libratbag: Strip binaries.
  687. system/lilyterm: Add doinst.sh, fix .desktop.
  688. system/lvm2-cluster: Strip library.
  689. system/lxsession: Fix docs.
  690. system/multipath-tools: Strip binaries, fix docs.
  691. system/musl: Updated for version 1.2.3.
  692. system/nagvis: Fix docs, symlinks.
  693. system/nss_ldap: Strip library, fix docs.
  694. system/openrazer-daemon: Updated for version 3.3.0.
  695. system/openrazer-kernel: Updated for version 3.3.0.
  696. system/opensc: Fix doinst.sh.
  697. system/pass-import: Fix man page dir.
  698. system/pcmanfm: Fix docs.
  699. system/pcsc-perl: Strip shared lib.
  700. system/pgbadger: updated for version 11.8, new maintainer
  701. system/pgsanity: updated for version 0.2.9, python3, new maintainer
  702. system/pommed-light: Strip binary.
  703. system/postgresql: Strip pg_config binary.
  704. system/qterminal: Fix .desktop and doinst.sh.
  705. system/qtgzmanager: Fix doinst.sh and .desktop.
  706. system/rabbitmq-server: Fix docs.
  707. system/rar2fs: Strip binaries.
  708. system/reiser4progs: Fix docs, static libs.
  709. system/restic: Updated for version 0.13.1
  710. system/runc: Strip binary.
  711. system/s3fs-fuse: Updated for version 1.91.
  712. system/s6-linux-init: Fix docs.
  713. system/s6-rc: Fix docs.
  714. system/s6: Fix docs.
  715. system/scalpel: Fix docs.
  716. system/scanmem: Updated for version 0.17, use python3.
  717. system/smem: updated for version 1.5, python3, new maintainer
  718. system/squashfuse: Added (FUSE filesystem to mount squashfs).
  719. system/telegraf: Updated for version 1.22.1
  720. system/ticpp: Fix /usr/include permissions.
  721. system/tmsu-bin: Only x86_64 is supported.
  722. system/unetbootin: Fix icon perms and .desktop.
  723. system/wmfsm: Fix docs.
  724. system/xorgxrdp: Fix docs.
  725. system/xrdp: Fix doinst.sh.
  726. system/yelp: Updated for version 42.1.
  727. system/yelp: Use WebKit 4.0 API.
  728. +--------------------------+
  729. Sat Apr 9 08:47:00 UTC 2022
  730. academic/Gabedit: Added (Graphical UI to computational chemistry)
  731. academic/Gridcoin-Research: Remove NUMJOBS per maillist
  732. academic/Gridcoin-Research: Upgraded for version 5.3.3.0
  733. academic/OpenFOAM: Updated for version 9.
  734. academic/aeskulap: Fix shebang.
  735. academic/amplifx: Fix download URL.
  736. academic/armadillo: Fix download URL, doc dir.
  737. academic/bedGraphToBigWig: Strip binary.
  738. academic/cap3: Fix docs.
  739. academic/convertall: Fix docs.
  740. academic/genpak: Fix docs.
  741. academic/scipy3: Updated for version 1.8.0. New maintainer.
  742. academic/suitesparse: Updated for version 5.11.0
  743. academic/xsimd: Added (C++ wrappers for SIMD intrinsics)
  744. audio/MusicMixer: Add doinst.sh.
  745. audio/aacplusenc: Fix docs.
  746. audio/alsa-tools: Remove bad symlinks, empty /etc dir.
  747. audio/alsamixergui: Fix docs and PRINT_PACKAGE_NAME.
  748. audio/amSynth: Fix doinst.sh.
  749. audio/ario: Fix docs.
  750. audio/atunes: Make arch-dependent (not noarch).
  751. audio/celt051: Fix docs.
  752. audio/celt: Fix docs.
  753. audio/qmmp-plugin-pack-qt5: Updated for version 1.5.3.
  754. audio/qmmp-qt5: Updated for version 1.5.4.
  755. audio/wireplumber: Added (policy manager for PipeWire).
  756. business/beancount: Fix docs.
  757. desktop/afterstep: Fix minor conflict with dpkg.
  758. desktop/arandr: Add doinst.sh to support .desktop file.
  759. desktop/areao43-icon-theme: Fix icon perms, don't write to $CWD.
  760. desktop/aweather: Add doinst.sh.
  761. desktop/bashrun2: Fix docs.
  762. desktop/bemenu: Gzip man page, use SLKCFLAGS.
  763. desktop/birdtray: Fix .desktop file.
  764. desktop/cairo-clock: Fix docs.
  765. desktop/crystalcursors: Fix permmissions, broken symlinks.
  766. desktop/mint-themes: Align to template.
  767. desktop/recoll: Updated for version 1.32.0.
  768. desktop/swaybg: Wrap README at 72 columns.
  769. desktop/xss-lock: fix cmake policy obsoloscence warning
  770. development/4th: Fix docs.
  771. development/Fennel: Updated for version 1.0.0.
  772. development/OpenJDK11: Fix github tarball handling.
  773. development/OpenJDK17: Fix github tarball handling.
  774. development/REDasm: Added (Cross Platform Dissassembler).
  775. development/amazon-corretto: Fix PRINT_PACKAGE_NAME support.
  776. development/apache-jmeter: Fix docs, symlinks.
  777. development/apache-log4cxx: Fix docs, rm static lib.
  778. development/arm-binutils: Fix docs.
  779. development/asem51: Clean up package.
  780. development/avr8-burn-o-mat: Make noarch, fix .desktop.
  781. development/bed: Remove some cruft.
  782. development/binwalk: Fix docs.
  783. development/bzr: Remove INSTALL from doc dir.
  784. development/cc65: Fix docs.
  785. development/ccl: Fix download URL.
  786. development/clojure: Added (Dynamic programming language for JVM).
  787. development/colordiff: Fix download URL, fix docs.
  788. development/cppcheck: Add doinst, fix translations.
  789. development/cppcheck: Fix icon size (65x65 => 64x64).
  790. development/cream: Fix icons, .desktop, doinst.sh.
  791. development/cunit: Fix docs.
  792. development/ghex: Update for 42.0; new maintainer
  793. development/ghidra: Added (Reverse Engineering Tool).
  794. development/jupyter-ipykernel: Update README
  795. development/jupyter-nbconvert: Fix REQUIRES.
  796. development/jupyter-nbformat: Updated for version 5.3.0.
  797. development/micro: Added (Text Editor).
  798. development/mmtf-cpp: Remove template comment.
  799. development/rstudio-desktop-legacy: Added (R Statistical IDE).
  800. development/rstudio-desktop: Updated for version 2022.02.1+461.
  801. development/ruff: install missing diagram.tcl file.
  802. development/squeak-vm: Added (squeak virtual machine).
  803. development/tiled: updated for version 1.8.4
  804. development/xmake: Added (cross-platform build utility based on Lua)
  805. games/FlightGear-data: Updated for version 2020.3.13.
  806. games/FlightGear: Updated for version 2020.3.13.
  807. games/SpaceZero: Fix doc permissions.
  808. games/adl: Fix doc permissions.
  809. games/ags: updated for version 3.5.1.17
  810. games/alienarena: Fix docs.
  811. games/antares: Fix .desktop file.
  812. games/antimicrox: Fix docs, doinst.sh.
  813. games/armagetronad: Fix docs, doinst.sh.
  814. games/arnold-cpc: Fix docs.
  815. games/arx-libertatis: Fix doinst.sh.
  816. games/assaultcube-reloaded: Strip binaries.
  817. games/atari800: Strip binary.
  818. games/bomberclone: Fix icon, .desktop.
  819. games/briquolo: Add SlackBuild to doc dir.
  820. games/cgames: Fix build.
  821. games/devilutionx: Added (Port of Diablo).
  822. games/edgar: Updated for version 1.35.
  823. games/epsxe: Add missing file.
  824. games/fceux: Updated for version 2.6.4.
  825. games/mupen64plus-video-gliden64: Added (Plugin for mupen64plus).
  826. games/protontricks: Added (winetricks wrapper for proton).
  827. games/steamtinkerlaunch: Added (Linux wrapper tool for Steam client)
  828. games/waterCloset: Update README.
  829. games/wesnoth: Update for version 1.16.2
  830. gis/gdal: fix download file.
  831. gis/google-earth: Fix MD5SUM.
  832. graphics/OpenVSP: Update DOWNLOAD URL.
  833. graphics/apitrace: Fix conflict with dpkg.
  834. graphics/birdfont: Added (free font editor).
  835. graphics/blender: Fix doc and icon dirs, strip python stuff.
  836. graphics/brlcad: Fix broken symlink in doc dir.
  837. graphics/fontforge: Fix doc dir and PRINT_PACKAGE_NAME.
  838. graphics/gscan2pdf: fix missing dependency
  839. graphics/hugin: Updated for version 2021.0.0.
  840. graphics/kColorPicker: Added (Qt based Color Picker).
  841. graphics/kImageAnnotator: Added (Tool for annotating images).
  842. graphics/ksnip: Added (Screenshot Tool).
  843. graphics/mangohud: Add missing patch.
  844. ham/ax25-apps: Strip binaries.
  845. ham/ax25-tools: Strip binaries.
  846. ham/baudline: Actually set ARCH.
  847. ham/libax25: Strip libraries.
  848. ham/tucnak: Install doinst.
  849. libraries/PDCurses: Updated for version 3.9.
  850. libraries/SimGear: Updated for version 2020.3.13.
  851. libraries/activemq-cpp: Fix docs, rm static lib.
  852. libraries/adns: Strip binaries.
  853. libraries/afflib: Strip library.
  854. libraries/allegro4: Use correct doc dir.
  855. libraries/alure: Remove empty /usr/share from package.
  856. libraries/aqbanking: Fix docs.
  857. libraries/cloog: Added (code generation library).
  858. libraries/cppzmq: Remove tabs from README.
  859. libraries/dcmtk: Fix docs.
  860. libraries/gnome-autoar: Added (Archives library)
  861. libraries/libmpdclient: Fix docs.
  862. libraries/libmsym: Align to template.
  863. libraries/libpano13: Updated for version 2.9.21.
  864. libraries/libxmlbird: Remove template comments.
  865. libraries/luadbi: Updated for version 0.7.2.
  866. libraries/miniupnnpc: Remove python3 check.
  867. libraries/qmltermwidget: Updated for version 20220109_6322802.
  868. libraries/qt4: Fix docs, icon, .desktop.
  869. libraries/seatd: Added (Seat management library and daemon).
  870. libraries/setproctitle: Remove python3 check.
  871. libraries/soci: Added (Database Access Library for C++).
  872. libraries/stormlib: Added (Library to handle MPQ).
  873. libraries/uhttpmock: Added (Library for Mocking web service API's).
  874. libraries/wimlib: Updated for version 1.13.5.
  875. libraries/wlroots: Added (wayland compositor library).
  876. libraries/ytnef: Added (Yerase's TNEF Stream Reader).
  877. misc/ardesia: Remove /usr/share/doc, don't write to /root.
  878. misc/asterixInspector: Strip binary, fix .desktop.
  879. misc/bbrun: Use SLKCFLAGS, strip binary.
  880. misc/bodr: Fix docs.
  881. misc/bsdsfv: COLOR=yes by default, fix docs.
  882. misc/dex: Fix slack-desc.
  883. misc/simh-classic (SimH Simulator).
  884. multimedia/aegisub: Add SlackBuild to doc dir.
  885. multimedia/audio-recorder: Fix template order (PRINT_PACKAGE_NAME).
  886. multimedia/avidemux: Fix man page.
  887. multimedia/bdtools: Fix docs.
  888. multimedia/bdtools: Fix docs.
  889. multimedia/haruna: Added (Video Player).
  890. network/Electrum: Updated for version 4.2.1.
  891. network/MEGAcmd: Fix slack-desc.
  892. network/aoetools: Fix permissions.
  893. network/arping: Fix docs.
  894. network/asciinema: Install docs to correct dir.
  895. network/awstats: Install SlackBuild in doc dir.
  896. network/axel: Strip binary.
  897. network/bollux: Make noarch, fix manpage perms.
  898. network/ckermit: Fix doc and man permissions.
  899. network/clipgrab: Fix docs.
  900. network/clipgrab: Fix download URL and docs.
  901. network/clusterit: Added (distributed shell)
  902. network/mailspring: Updated for version 1.10.2.
  903. network/microsoft-edge: Added (browser).
  904. network/neomutt: Updated for version 20220408.
  905. network/nextcloud-desktop: Fix Tarball.
  906. network/nextcloud-desktop: Updated for version 3.4.4.
  907. network/nordvpn: Updated for version 3.12.5.
  908. network/openconnect-sso: Added (Wrapper for OpenConnect).
  909. network/owncloud-client: Update for 2.10.1.7187
  910. network/sfeed: Updated for version 1.4.
  911. network/signal-desktop: Updated for version 5.38.0.
  912. network/syncthing: Revert maintainer.
  913. network/syncthing: Update for 1.19.2
  914. office/MasterPDFEditor: Updated for version 5.8.46.
  915. office/aigaion: Fix doc ownership.
  916. office/apvlv: Fix doinst.sh.
  917. office/basket: Fix .desktop perm, HTML doc path.
  918. office/basket: Fix icon.
  919. office/bibutils: Use SLKCFLAGS, strip binaries.
  920. office/gnucash-docs: Updated for version 4.10.1.
  921. office/gnucash: Updated for version 4.10.
  922. office/keepassxc: updated for version 2.7.1
  923. office/pstoedit: Updated for version 3.77.
  924. perl/perl-GooCanvas2: fix missing dependency
  925. perl/perl-Locale-Codes: Added (modules to handle locale codes)
  926. perl/perl-PDF-Builder: Updated for version 3.023
  927. python/artifacts: Fix docs.
  928. python/buildbot-badges: Added (Plugin for buildbot).
  929. python/cppy: Added (C++ header library)
  930. python/cryptography: Fix docs.
  931. python/icalendar: Added (parser / generator for iCalendar).
  932. python/iniconfig: Added (INI file parsing).
  933. python/psutil: Remove python3 check.
  934. python/pyinotify: Build Python3 by default.
  935. python/python-beniget: Added (static analyzer for Python code)
  936. python/python-bitstring: Updated for version 3.1.9.
  937. python/python-gast: Added (AST abstracts underlying Python version)
  938. python/python-prometheus_client: Update for 0.14.0
  939. python/python-watchdog: Added (Filesystem events monitoring).
  940. python/python2-automat: updated REQUIRES (wheel needed for build)
  941. python/python2-pyhamcrest: Added (Python module).
  942. python/python2-twisted: updated for version 20.3.0
  943. python/python3-automat: updated REQUIRES (wheel needed for build)
  944. python/python3-fastjsonschema: Added (Fast JSON schema validator).
  945. python/python3-kiwisolver: Updated for v. 1.4.2. New maintainer.
  946. python/python3-klein: Added (micro-framework for web services).
  947. python/python3-panda: Updated for version 1.4.2.
  948. python/python3-pytest: Updated for version 7.1.1.
  949. python/python3-pythran: Added (AOT compiler for numeric kernels)
  950. python/typing-extensions: Fix docs.
  951. system/afuse: Clean up doc dir.
  952. system/alien: Remove perllocal.pod.
  953. system/android-udev-rules: Added (udev rules and permissions).
  954. system/andromeda: Fix .desktop file.
  955. system/apache-activemq: Remove wrong-architecture binaries.
  956. system/apcupsd: Fix icons and .desktop.
  957. system/argyllcms: Fix doc permissions.
  958. system/autoarchive: Fix broken man page symlink.
  959. system/autojump: Don't install python modules to /usr/bin.
  960. system/autoslackpkg: Removed (use slackupdr).
  961. system/babeltrace: Remove static libs and /usr/share/doc.
  962. system/bcache-tools: Strip binaries, move to /usr/sbin.
  963. system/blake2: Strip binary, use SLKCFLAGS.
  964. system/bogofilter: Fix doc dir.
  965. system/bottom: Added (system/process monitor).
  966. system/btrbk: Make noarch, gzip man pages.
  967. system/bulk_extractor: Fix docs.
  968. system/byobu: Fix doc dir and .desktop.
  969. system/cfengine: Fix build when avahi installed.
  970. system/cool-retro-term: Updated for version 1.2.0.
  971. system/ddrescueview: Added (GUI For ddrescue).
  972. system/dosbox: Fix icon and .desktop.
  973. system/fzf: Updated for version 0.30.0.
  974. system/hexcompare: Added (console-mode visual binary diff)
  975. system/hyperfine: Added (command-line benchmarking tool).
  976. system/iotop-c: Added (I/O top).
  977. system/jenkins: Updated for version 2.332.2.
  978. system/nvidia-legacy390-kernel: Remove unneeded patch.
  979. system/pcem-roms: Fix github tarball handling.
  980. system/piper: Update HOMEPAGE
  981. system/powerline-status: Updated for version 2.8.2.
  982. system/s6-rc: Updated for version 0.5.3.1.
  983. system/sane-airscan: Added (Scanner Access Now Easy).
  984. system/sbo-maintainer-tools: Added (lint tools for SBo maintainers)
  985. system/slackupdr: Added (slackpkg automation).
  986. system/slpkg: Updated for version 3.9.6.
  987. system/smpq: Added (StormLib MPQ archiving utility).
  988. system/tmsu-bin: Added (tool for tagging files)
  989. system/watchdog: Moved from python.
  990. +--------------------------+
  991. Sat Apr 2 11:20:15 UTC 2022
  992. academic/aeskulap: Added (medical image viewer)
  993. academic/fet: Updated for versio 6.3.1.
  994. academic/mathics: Updated for version 4.0.0.
  995. academic/molequeue: Added (Desktop integration of hq resources)
  996. academic/ngspice: Updated for version 36.
  997. audio/fantasia: Removed (redundant; use JSampler instead).
  998. audio/google-musicmanager: Handle 32 bit version.
  999. audio/ncspot: Added (cross-platform ncurses Spotify client)
  1000. audio/pipewire-native-jack: Added (PipeWire JACK API).
  1001. audio/qmmp-plugin-pack-qt5: Updated for version 1.5.2.
  1002. audio/qmmp-qt5: Updated for version 1.5.3.
  1003. desktop/NsCDE: Added (CDE Desktop).
  1004. desktop/bashmount: Added (manage removeable media).
  1005. desktop/bemenu: Added (Dynamic Menu Library).
  1006. desktop/clearlooks-phenix-theme: Updated for version 7.0.1.
  1007. desktop/gromit-mpx: Added (On-screen Annotation tool).
  1008. desktop/herbstluftwm: Updated for version 0.9.4
  1009. desktop/i3-gaps: Updated for version 4.20.1.
  1010. desktop/mint-themes: Added (Linux Mint theme)
  1011. desktop/mint-x-icons: Added (Mint Linux default icon theme)
  1012. desktop/mint-y-icons: Added (Mint Linux default icon theme)
  1013. desktop/qtile: Update for 0.21.0
  1014. desktop/swaybg: Added (sway background setter)
  1015. desktop/ufetch: Added (displays system information)
  1016. desktop/weston: Updated for version 10.0.0.
  1017. desktop/zenity: Update for 3.42.0
  1018. development/CVSTools: Move cvslib.pl to private dir.
  1019. development/OpenJDK11: Added (open implementation of JDK 11).
  1020. development/OpenJDK17: Added (open implementation of JDK 17 LTS).
  1021. development/SQLAlchemy: Updated for version 1.4.34.
  1022. development/adms: Strip binaries/libraries.
  1023. development/dotnet-runtime-3.1: Updated for version 3.1.23.
  1024. development/dotnet-runtime-5.0: Added (Runtime for .NET 5.0).
  1025. development/dotnet-runtime-6.0: Added (Runtime for .NET 6.0).
  1026. development/dotnet-sdk-3.1: Updated for version 3.1.417.
  1027. development/dotnet-sdk-5.0: Added (Development Framework).
  1028. development/dotnet-sdk-6.0: Added (Development framework).
  1029. development/eclipse-cpp: Updated for version 4.23.
  1030. development/eclipse-java: Updated for version 4.23.
  1031. development/eclipse-jee: Updated for version 4.23.
  1032. development/eclipse-php: Updated for version 4.23.
  1033. development/flawfinder: Fix download URL, ARCH=noarch.
  1034. development/github-cli: Updated for version 2.7.0
  1035. development/jupyter-ipykernel: Updated for version 6.10.0.
  1036. development/jupyter-nbconvert: Updated for version 6.4.5.
  1037. development/jupyter-qtconsole: Updated for version 5.3.0.
  1038. development/latrace: Fix download URL.
  1039. development/lepton-eda: Updated for version 1.9.17.
  1040. development/mmtf-cpp: Added (pure C++ implementation of MMTF API)
  1041. development/mongodb-compass: Updated for version 1.31.0.
  1042. development/nodejs: Updated for version 17.8.0.
  1043. development/regina-rexx: Updated for version 3.9.4.
  1044. development/robotframework: Updated for version 5.0.
  1045. development/s51dude: Fix download URL.
  1046. development/sbt: Updated for version 1.6.2.
  1047. development/sdcc: Updated for version 4.2.0
  1048. development/terraform: Added (IaC Tool).
  1049. development/tiled: updated for version 1.8.3
  1050. development/vscode-bin: Updated for version 1.66.0.
  1051. development/vscodium: Updated for version 1.65.2.
  1052. development/vstudio: Updated for version 12.1.
  1053. development/zig: Added (toolchain).
  1054. games/FlightGear-data: Updated for version 2020.3.12.
  1055. games/FlightGear: Updated for version 2020.3.12.
  1056. games/SpaceZero: Strip binary, fix icon & .desktop.
  1057. games/advancemame: Add SlackBuild to doc dir.
  1058. games/aisleriot: Updated for version 3.22.22
  1059. games/angband: Updated for version 4.2.4.
  1060. games/beetle-psx-libretro: Added (libretro fork of Mednafen PSX).
  1061. games/crispy-doom: Updated for version 5.11.1.
  1062. games/darkplaces: Don't use precompiled binaries.
  1063. games/epsxe: Added (PSX Emulator)
  1064. games/fceux: Updated for version 2.6.3.
  1065. games/joy2key: Added (control applications with joystick/gamepad)
  1066. games/larn: Updated for version 14.1.5.
  1067. games/pychess: Updated for version 1.0.3.
  1068. games/rejoystick: Added (translates joystick movement/buttons)
  1069. games/rogue: Updated for version 5.4.5.
  1070. games/scid_vs_pc: Updated for version 4.23.
  1071. games/stone_soup: Updated for version 0.28.0.
  1072. games/tome-ah: Updated for version 20220224_d25bdae.
  1073. games/vkQuake: Updated for version 1.13.0.
  1074. gis/GMT: Updated for version 6.3.0.
  1075. gis/gdal: Updated for version 3.4.2
  1076. gis/google-earth-legacy: Added (Google Virtual Globe).
  1077. gis/google-earth: Updated for version 7.3.4.
  1078. gis/gpsbabel: Updated for version 1.8.0
  1079. gis/python3-basemap: Updated for version 1.3.2.
  1080. graphics/LDView: Fix .desktop, doinst.sh.
  1081. graphics/OpenVSP: Added (3D Aircraft Modeling Tool).
  1082. graphics/gscan2pdf: Updated for version 2.12.4
  1083. graphics/lilypond: Updated for version 2.22.2
  1084. graphics/mangohud: Added (Vulkan/OpenGL Overlay).
  1085. graphics/paraview: Updated for version 5.10.1
  1086. graphics/vuescan: Updated MD5SUMs.
  1087. ham/tucnak: Added (Ham Radio - VHF/HF contest logbook)
  1088. libraries/SimGear: Updated for version 2020.3.12.
  1089. libraries/VTK: Fix MPI option
  1090. libraries/aspnetcore-runtime-3.1: Updated for version 3.1.23.
  1091. libraries/aspnetcore-runtime-5.0: Added (Runtime for ASP.NET 5.0).
  1092. libraries/aspnetcore-runtime-6.0: Added (Runtime for ASP.NET 6.0).
  1093. libraries/cppzmq: Added (C++ binding for zmq)
  1094. libraries/geocode-glib: Added (library for geocoding)
  1095. libraries/hoel: updated for version 1.4.20
  1096. libraries/libEMF: Updated for version 1.0.13.
  1097. libraries/libaal: HOMEPAGE Updated.
  1098. libraries/libcoap: Updated for version 4.3.0.
  1099. libraries/liblxqt: Added (LXQT library).
  1100. libraries/libmseed: Updated for version 2.19.7.
  1101. libraries/libmsym: Added (molecular point group symmetry)
  1102. libraries/liboop Update to 1.0.1.
  1103. libraries/libopenshot-audio: Updated for version 0.2.2
  1104. libraries/libopenshot: Updated for version 0.2.7
  1105. libraries/libsoup3: Updated for version 3.0.6.
  1106. libraries/libvdpau-va-gl: New maintainer + cleanup
  1107. libraries/libxmlb: Updated for version 0.3.8.
  1108. libraries/libxmlbird: Added (XML parser written in Vala)
  1109. libraries/libxnvctrl: Updated for version 510.60.02.
  1110. libraries/libzia: Added (Support lib for tucnak4)
  1111. libraries/lxqt-notificationd: Added (LXQt notification daemon).
  1112. libraries/lxqt-sudo: Added (GUI frontend for sudo/su).
  1113. libraries/msgpack-c: Updated for version 3.3.0.
  1114. libraries/rhonabwy: updated for version 1.1.3
  1115. libraries/spglib: Added (ibrary for crystal symmetry search)
  1116. libraries/tree-sitter: Updated for version 0.20.6.
  1117. libraries/webkit2gtk4.1: Updated for version 2.36.0.
  1118. libraries/webkit2gtk: Updated for version 2.36.0.
  1119. misc/dex: Added (dex:)
  1120. multimedia/AtomicParsley: Fix ownership in doc dir.
  1121. multimedia/DivFix++: Fix doc dir, desktop, README, slack-desc.
  1122. multimedia/HandBrake: Strip ghb binary.
  1123. multimedia/JSampler: Add doinst, CLI launcher, fix jdk detection.
  1124. multimedia/JSampler: Fail if no jdk package installed.
  1125. multimedia/intel-gmmlib: Added (The Intel Graphics MML)
  1126. multimedia/intel-media-driver: Added (ntel Media Driver for VAAPI)
  1127. multimedia/intel-media-sdk: Added (Intel(R) Media SDK)
  1128. multimedia/jlscp: Fix jdk detection.
  1129. multimedia/lives: Update HOMEPAGE URL.
  1130. multimedia/openshot: Updated for version 2.6.1
  1131. multimedia/plexmediaserver: Updated for v 1.25.8.5663_e071c3d62.
  1132. network/2ping: Add SlackBuild to doc dir.
  1133. network/MEGAcmd: Added (MEGA CLI Interactive/Scriptable Application)
  1134. network/WhatWeb: Updated for version 0.5.5.
  1135. network/XD: Updated for version 0.4.2.
  1136. network/acme: Updated for version 3.0.2.
  1137. network/bitchx: Added (IRC client).
  1138. network/brave-browser: Updated for version 1.37.109
  1139. network/csync: Fix download URL.
  1140. network/dropbox: Updated for version 145.4.4921
  1141. network/glewlwyd: updated for version 2.6.2
  1142. network/i2pd: Updated for version 2.41.0.
  1143. network/keepalived: Enable nftables and libipset support.
  1144. network/linksys-tftp: Add more patches.
  1145. network/lurch: Updated for version 0.7.0
  1146. network/mod_auth_kerb: Fix download URL.
  1147. network/mod_geoip2: Fix download URL.
  1148. network/modsecurity-apache: remove gpg detection.
  1149. network/nbd: Updated for version 3.24
  1150. network/neomutt: Updated for version 20211029.
  1151. network/newsboat: Updated for version 2.27.
  1152. network/nextcloud-client: Removed (use nextcloud-desktop).
  1153. network/nextcloud-desktop: Added (Nextcloud Desktop Client).
  1154. network/nginx: Update nginx.logrotate.
  1155. network/pgbouncer: Fix download URL.
  1156. network/scapy: Updated for version 2.4.5.
  1157. network/signal-desktop: Updated for version 5.36.0.
  1158. network/signal-desktop: Updated for version 5.37.0.
  1159. network/sniffjoke: Fix download URL.
  1160. network/sslstrip: Fix download URL.
  1161. network/unicornscan: Fix DOWNLOAD url.
  1162. network/webalizer: Fix download URL, man page path.
  1163. network/wp-cli: Updated for version 2.6.0.
  1164. office/LibreOffice: Updated for version 7.3.2.2
  1165. office/adobe-reader: Fix .desktop, symlinks.
  1166. office/gnucash-docs: Updated for version 4.9.
  1167. office/gnucash: Updated for version 4.9.
  1168. office/hunspell-gr: Added (Greek hunspell dictionary).
  1169. office/keepassxc: Updated for version 2.7.0
  1170. office/libreoffice-helppack: Updated for version 7.3.2.
  1171. office/libreoffice-langpack: Updated for version 7.3.2.
  1172. office/libreoffice: Updated for version 7.3.2.
  1173. office/mate-calc: Updated for version 1.26.0
  1174. office/treesheets: Fixed MD5SUM.
  1175. office/xournalpp: Updated for version 1.1.1.
  1176. perl/MoarVM: Updated for version 2022.03.
  1177. perl/nqp: Updated for version 2022.03
  1178. perl/perl-Gtk3-ImageView: Added (Image viewer widget for Gtk3).
  1179. perl/perl-Gtk3-SimpleList: Added (interface to Gtk3's Widget).
  1180. perl/perl-gnome2-gconf: Updated for version 1.047.
  1181. perl/rakudo: Updated for version 2022.03
  1182. python/PyGreSQL: Updated for version 5.2.4
  1183. python/buildbot: updated for version 3.5.0, updated dependencies
  1184. python/cloudpickle: Added (Python Module).
  1185. python/debugpy: Updated for version 1.6.0.
  1186. python/doit: Added (task management tool).
  1187. python/ipython: Update for 8.2.0
  1188. python/pdfarranger: Added (Arrange PDF Pages).
  1189. python/pikepdf: Added (Python library).
  1190. python/pluggy: Updated for version 0.13.1.
  1191. python/py: Updated for version 1.11.0.
  1192. python/pybind11: Updated for version 2.9.2
  1193. python/pyfeed: Fix download URL.
  1194. python/python-colour: Added (python library).
  1195. python/python-daemonize: Added (python library).
  1196. python/python-evdev: Update for 1.5.0
  1197. python/python-mysql-replication: Updated for version 0.28.
  1198. python/python2-attrs: updated for version 21.4.0
  1199. python/python2-automat: removed unused python-m2r requirement
  1200. python/python3-alembic: updated for version 1.7.7
  1201. python/python3-amqp: updated for version 5.1.0
  1202. python/python3-autobahn: updated for version 22.3.2
  1203. python/python3-automat: removed unused python-m2r requirement
  1204. python/python3-characteristic: Added (Python module).
  1205. python/python3-dulwich: updated for version 0.20.35
  1206. python/python3-kombu: updated for version 5.2.4
  1207. python/python3-obspy: Updated for version 1.3.0.
  1208. python/python3-service-identity: Added (SIV for PyOpenSSL).
  1209. python/python3-tubes: Added (micro-framework for web services).
  1210. python/python3-twisted: updated for version 22.2.0, updated dependencies
  1211. python/python3-waitress: updated for version 2.1.1
  1212. python/python3-websockets: Added (WebSocket servers & clients)
  1213. python/xe: Fix download URL.
  1214. ruby/ruby-build: Updated for version 20220324.
  1215. system/CPU-X: Updated for version 4.3.0.
  1216. system/I-Nex: Fix symlimk, .desktop perms.
  1217. system/apache-tomcat: Updated for version 10.0.20.
  1218. system/bat: Updated for version 0.20.0.
  1219. system/chronograf: Updated for version 1.9.4
  1220. system/duperemove: Added (Find duplicate extents).
  1221. system/dust: Updated for version 0.8.0.
  1222. system/fcron: Updated for version 3.3.1.
  1223. system/fuse-zip: Added (FUSE filesystem).
  1224. system/kapacitor: Updated for version 1.6.4
  1225. system/libratbag: Added (daemon for gaming mice).
  1226. system/mkslack: Removed.
  1227. system/musl: Updated for version 1.2.2
  1228. system/noto-emoji: Updated for version 2.034.
  1229. system/nvidia-driver: Updated for version 510.60.02.
  1230. system/nvidia-kernel: Updated for version 510.60.02.
  1231. system/nvidia-legacy390-driver: Updated for version 390.147.
  1232. system/nvidia-legacy390-kernel: Updated for version 390.147.
  1233. system/nvidia-legacy470-driver: Added (Nvidia 470 driver).
  1234. system/nvidia-legacy470-kernel: Added (Nvidia 470 kernel module).
  1235. system/openrazer-daemon: Added (Razer Drivers for Linux).
  1236. system/openrazer-kernel: Added (kernel modules for openrazer).
  1237. system/pam-gnupg: Added (Unlock GnuPG keys on login).
  1238. system/passwordsafe: Updated for version 1.14.0.
  1239. system/pcem-roms: Added (rom files for the pcem emulator)
  1240. system/pcem: Added (low-level emulator for IBM compatibles)
  1241. system/piper: Added (configure gaming mice).
  1242. system/polychromatic: Added (GUI frontend for openrazer).
  1243. system/powershell: Updated for version 7.2.2.
  1244. system/pytrash: Updated for version 1.1.5.
  1245. system/razerCommander: Added (Razer device manager).
  1246. system/razergenie: Added (Razer device configuration tool).
  1247. system/reiser4progs: Updated for version 1.2.2.
  1248. system/restic: Updated for version 0.13.0
  1249. system/rmw: Update email.
  1250. system/sboui: Updated for version 2.2.
  1251. system/slpkg: Updated for version 3.9.4.
  1252. system/spman: Updated for version 2.2.3.
  1253. system/tagainijisho: Updated for version 1.1.94.
  1254. system/telegraf: Updated for version 1.22.0
  1255. system/ttf-charis-sil: Updated for version 6.101.
  1256. system/ttf-doulos-sil: Updated for version 6.101.
  1257. system/xen: Updated for version 4.15.2.
  1258. system/yelp-tools: Updated for version 42.0.
  1259. system/yelp-xsl: Updated for version 42.0.
  1260. system/yelp: Updated for version 42.0.
  1261. +--------------------------+
  1262. Sat Mar 26 01:58:27 UTC 2022
  1263. academic/SU2: Mark as 64-bit only.
  1264. academic/arpack: Disable parallel build.
  1265. academic/qucs: Align to template.
  1266. academic/ugene: Mark 32bit as UNSUPPORTED.
  1267. academic/z3: Updated for version 4.8.12.
  1268. audio/deadbeef: Fix 32-bit build.
  1269. audio/google-musicmanager: Fix 32-bit build.
  1270. audio/google-musicmanager: Fix VERSION+MD5SUM.
  1271. audio/guitarix: Fix 32-bit build.
  1272. audio/helm: Fix 32-bit build.
  1273. audio/sbagen: Fix 32-bit build.
  1274. desktop/bumblebee-status: Fix SLKCFLAGS -02 typo.
  1275. desktop/kwalletcli: Fix 32-bit build.
  1276. development/atom-amd64: Updated for version 1.60.0.
  1277. development/avr8-gnu-toolchain: Fix download URL.
  1278. development/cf-cli: Fix ARCH detection.
  1279. development/crystal-lang: Fix ARCH detection.
  1280. development/crystal-lang: Fix BUILD usage.
  1281. development/energia: Update ARCH handling.
  1282. development/gforth: Disable parallel build.
  1283. development/guile1.8: Fix build on 32 bit.
  1284. development/icon: Disable parallel build.
  1285. development/jupyter-ipykernel: Update for 6.9.2
  1286. development/jupyter-nbconvert: Update for 6.4.4
  1287. development/jupyter-nbformat: Update for 5.2.0
  1288. development/jupyter-notebook: Update for 6.4.10
  1289. development/jupyter_core: Update for 4.9.2
  1290. development/maude: Fix 32-bit build.
  1291. development/neovim: Updated for version 0.6.1.
  1292. development/nodejs: Updated for version 17.7.2.
  1293. development/nsis: Removed (FTBFS; not updated since 2010).
  1294. development/perf: Fix build with x86 -smp kernel.
  1295. development/postman: Updated for version 9.15.2
  1296. development/ruff: Updated for version 2.2.0.
  1297. development/sonarqube: i486 => i586.
  1298. development/vis: Updated for version 0.7.
  1299. development/xmlcopyeditor: Fix wxPython/wxGTK3 conflict.
  1300. games/bluez-sixaxis: Remove .la files.
  1301. games/d1x-rebirth: Fix 32-bit build.
  1302. games/d2x-rebirth: Fix 32-bit build.
  1303. games/eduke32: Fix 32-bit build.
  1304. games/ffgo: Fix doinst.sh.
  1305. games/fgo: Fix doinst.sh.
  1306. games/hedgewars: Document different dep on 32-bit.
  1307. games/hexglass: Fix 32-bit build.
  1308. games/speed-dreams: Updated MD5SUM.
  1309. games/waterCloset: Fix 32-bit build.
  1310. graphics/Blender: Fix 32-bit build (make embree optional).
  1311. graphics/brlcad: Fix 32bit build.
  1312. graphics/darktable: Mark as 64-bit only (it really is).
  1313. graphics/embree: Mark as 64-bit only.
  1314. graphics/fotowall: Fix 32-bit build.
  1315. graphics/luminance-hdr: Fix 32-bit build.
  1316. graphics/mitsuba2: Fix 32-bit build.
  1317. graphics/nsxiv: Use correct github URL.
  1318. graphics/opencolorio: Fix 32-bit build.
  1319. graphics/vuescan: Updated for version 9.7.82.
  1320. libraries/OpenBLAS: Fix Build on 32 bit.
  1321. libraries/antlr4: Update DEP.
  1322. libraries/bctoolbox: Update DOWNLOAD.
  1323. libraries/belle-sip: Updated DOWNLOAD.
  1324. libraries/bzrtp: Fix download URL.
  1325. libraries/libhoard: i486 => i586.
  1326. libraries/libindi-drivers: Mark 32bit as unsupported.
  1327. libraries/libpri: Removed (No maintainer and not used).
  1328. libraries/libsoup3: Updated for version 3.0.5.
  1329. libraries/lua-lpeg: install lpeg for all luas
  1330. libraries/msgpack-c: Updated for version 4.0.0.
  1331. libraries/onevpl: Mark as 64-bit only.
  1332. libraries/qt5-postgresql: Fix DOWNLOAD url.
  1333. libraries/xmpppy: Fix SLKCFLAGS -02 typo.
  1334. misc/moedict-desktop.app: Fix ARCH detection.
  1335. misc/sbo-templates: Wrap README at 72 columns.
  1336. misc/stardict: Updated for version 3.0.6 (3.0.6.2 segfaults).
  1337. multimedia/Gem: Fix build on 32bit.
  1338. multimedia/HandBrake: Fix 32-bit build.
  1339. multimedia/cantata: Updated for version 2.5.0.
  1340. multimedia/minitube: Fix 32-bit build.
  1341. multimedia/tvheadend: Fix 32-bit build.
  1342. network/heimdal: Fix 32-bit build.
  1343. network/icecat: Fix ARCH detection and support.
  1344. network/opendmarc: Remove .la files.
  1345. network/opera-legacy: Fix ARCH detection and support.
  1346. network/pdns-recursor: Fix 32-bit build (until 2038!).
  1347. network/pdns: Fix 32-bit build (until 2038!).
  1348. network/pidgin-musictracker: Fix 32-bit build.
  1349. network/rclone: Updated for version 1.58.0
  1350. network/riot-web: Removed at maintainer's request (mailing list).
  1351. network/rspamd: Add missing patch.
  1352. network/rspamd: Fix 32-bit build.
  1353. network/seafile-server: Remove .la files.
  1354. network/slurm: Fix 32-bit build.
  1355. network/suricata: Remove .la files.
  1356. network/teams: Fix glibc compatibility.
  1357. network/tntnet: Remove .la files.
  1358. network/tor-browser: Updated for version 11.0.9.
  1359. network/varnish: Remove .la files.
  1360. network/wireshark: Updated for version 3.6.3.
  1361. network/zoom-linux: Updated for version 5.10.0.2450
  1362. office/lout: Updated for version 3.42.1.
  1363. office/pandoc: i486 => i586.
  1364. python/jedi: Fix renamed dependency reference.
  1365. python/nbxmpp: Updated for version 2.0.6.
  1366. python/python3-aiorpcX: Update for 0.22.1
  1367. python/terminado: Update for 0.13.3
  1368. python/terminado: Wrap README at 72 columns.
  1369. system/afdko: Fix downloading during build.
  1370. system/bacula-client: Updated for version 9.6.7.
  1371. system/bacula: Exit with failure status if user/group don't exist.
  1372. system/bacula: Updated for version 9.6.7.
  1373. system/bulk_extractor: Fix 32-bit build.
  1374. system/commons-daemon: Fix download URLs.
  1375. system/dahdi-complete: Removed (no maintainer and ftbfs).
  1376. system/ksh-openbsd: Fix DOWNLOAD.
  1377. system/libtrash: Align to template.
  1378. system/multipath-tools: Fix 32-bit build.
  1379. system/nix: Fix 32-bit build; stop spamming /usr.
  1380. system/pax: Update EMAIL.
  1381. system/pixma: Fix 32bit build
  1382. system/qemu: Update README.
  1383. system/samsung-mfp-drivers: Updated for version 1.00.39.
  1384. system/slackrepo-hints: Updated for version 20220325.
  1385. system/slackrepo: Updated for version 20220325.
  1386. system/sysdig: Mark 32bit as UNSUPPORTED.
  1387. system/system76-power: Mark 32bit as unsupported.
  1388. system/virtualbox-kernel: Mark as 64-bit only.
  1389. system/virtualbox: Mark as 64-bit only.
  1390. +--------------------------+
  1391. Sun Mar 20 13:46:41 UTC 2022
  1392. academic/cap3: Fix 32-bit build when ARCH set in environment.
  1393. academic/karma: Allow ARCH=i586 in environment.
  1394. academic/ncbi-rmblastn: Allow ARCH=i586 in environment.
  1395. audio/tta++: Removed (redundant; use tta).
  1396. desktop/libqtxdg: Updated for version 3.8.0.
  1397. development/autogen: Fix 32-bit build.
  1398. development/edb-debugger: Fix PKG assignment.
  1399. development/frobtads: Fix 32-bit build.
  1400. development/kforth: Fix build on 15.0.
  1401. development/mysql-workbench: Fix 32-bit build.
  1402. development/pforth: Fix 32-bit build.
  1403. development/phantomjs: Fix 32-bit build.
  1404. development/xvile: Do not write to /usr/lib during build.
  1405. development/zope.interface: new maintainer, updated for version 5.4.0
  1406. games/beetle-psx-libretro: Fix file permissions.
  1407. games/dgen: Fix 32-bit build.
  1408. games/gzdoom: Fix 32-bit build (require SSE2).
  1409. games/odamex: Fix 32-bit build.
  1410. games/zdoom: Fix 32-bit build.
  1411. graphics/mozjpeg: Fix 32-bit build.
  1412. graphics/screengrab: Updated for version 2.3.0.
  1413. graphics/vuescan: Updated for version 9.7.81.
  1414. libraries/lxqt-build-tools: Updated for version 0.10.0.
  1415. libraries/qt3: Fix 32-bit build.
  1416. misc/sbo-templates: Updated for version 1.3.3.
  1417. network/avahi: Included several patches from Debian
  1418. network/haproxy: Avoid specifying CFLAGS.
  1419. network/libnfsidmap: Removed (included in Slackware).
  1420. network/palemoon-bin: updated for version 30.0.0
  1421. network/palemoon: updated for version 30.0.0
  1422. network/tor: Updated for version 0.4.6.10
  1423. network/uudeview: Fix 32-bit build.
  1424. perl/perl-MIME-Types: Updated for version 2.22.
  1425. perl/perl-Math-BigInt-GMP: Updated for version 1.6010.
  1426. perl/perl-Math-BigInt: Updated for version 1.999829.
  1427. perl/perl-Math-GMPq: Updated for version 0.51.
  1428. perl/perl-Math-GMPz: Updated for version 0.54.
  1429. perl/perl-Math-Int128: Mark as unsupported on 32-bit (it really is).
  1430. perl/perl-Math-MPC: Updated for version 1.15.
  1431. perl/perl-Math-MPFR: Updated for version 4.21.
  1432. perl/perl-Sidef: Updated for version 3.99.
  1433. python/python2-automat: Fix MD5SUM.
  1434. python/python2-twisted: reverted to version 17.9.0
  1435. python/python3-pythondialog: Updated for version 3.5.3.
  1436. system/Iosevka-slab: Updated for version 15.0.2.
  1437. system/capstone: Fix .pc file and 32-bit build.
  1438. system/cnijfilter2: Fix permission.
  1439. system/cnijfilter2: Updated for version 6.30.1.
  1440. system/dosemu: Fix segfaults on 15.0 (use gcc5).
  1441. system/hddtemp: Fix 32-bit build.
  1442. system/ksh-openbsd: Use correct github URL.
  1443. system/mediaextract: Fix 32-bit build.
  1444. system/mksh: Allow tests to pass without controlling tty.
  1445. system/scangearmp2: Updated for version 4.30.1.
  1446. +--------------------------+
  1447. Thu Mar 17 17:28:01 UTC 2022
  1448. academic/bowtie2: Mark x86 as unsupported.
  1449. academic/bowtie: Mark x86 as unsupported.
  1450. academic/celestia: Wrap README at 72 columns.
  1451. academic/ds9: Wrap README at 72 columns.
  1452. academic/fiji: Fix 32bit build.
  1453. academic/fiji: Fix source name on 32bit.
  1454. academic/gcompris-qt: Updated for version 2.3.1.
  1455. academic/labplot2: Wrap README at 72 columns.
  1456. academic/ladr: Wrap README at 72 columns.
  1457. academic/ncbi-blast+: Fix build on i586.
  1458. academic/octave: Wrap README at 72 columns.
  1459. academic/qrupdate: Wrap README at 72 columns.
  1460. academic/root: Actually install doinst.sh.
  1461. academic/scipy3: Wrap README at 72 columns.
  1462. academic/spqr: Wrap README at 72 columns.
  1463. academic/suitesparse: Wrap README at 72 columns.
  1464. academic/treebest-ensembl: Wrap README at 72 columns.
  1465. academic/ugene: Wrap README at 72 columns.
  1466. academic/umfpack: Wrap README at 72 columns.
  1467. academic/verilator: Make slack-desc ASCII.
  1468. academic/xflr5: Wrap README at 72 columns.
  1469. accessibility/eflite: Wrap README at 72 columns.
  1470. audio/TiMidity++: Handle content-disposition download.
  1471. audio/amSynth: Wrap README at 72 columns.
  1472. audio/clementine: Wrap README at 72 columns.
  1473. audio/clockchimes: Wrap README at 72 columns.
  1474. audio/cmus: Wrap README at 72 columns.
  1475. audio/darkice: Wrap README at 72 columns.
  1476. audio/deadbeef: Wrap README at 72 columns.
  1477. audio/gnump3d: Wrap README at 72 columns.
  1478. audio/google-musicmanager: Fix broken symlink.
  1479. audio/jack_capture: Wrap README at 72 columns.
  1480. audio/rhythmbox: Wrap README at 72 columns.
  1481. audio/tta: Fix 32-bit build.
  1482. desktop/Qogir-icon-theme: Fix VERSION in script.
  1483. desktop/Surfn: Fix VERSION in script.
  1484. desktop/bumblebee-status: Wrap README at 72 columns.
  1485. desktop/e16: Remove template comment.
  1486. desktop/obshutdown: Fix DOWNLOAD/HOMEPAGE.
  1487. desktop/xdm-slackware-theme: Wrap README at 72 columns.
  1488. development/J-Link: Wrap README at 72 columns.
  1489. development/android-tools: Add network warning to README.
  1490. development/apache-maven: Updated for version 3.8.5.
  1491. development/bluefish: Wrap README at 72 columns.
  1492. development/dfu-programmer: Move setup instructions to README.SBo.
  1493. development/f2c: Remove template comment.
  1494. development/gcc5: Fix sbolint nitpicks.
  1495. development/git-extras: Wrap README at 72 columns.
  1496. development/github-cli: Updated for version 2.6.0
  1497. development/golang-googlecode-gotools: Wrap README at 72 columns.
  1498. development/hugo: Updated for version 94.2.
  1499. development/jdk11: Wrap README at 72 columns.
  1500. development/jupyter-nbclient: Update for 0.5.13
  1501. development/jupyter-nbconvert: Update for 6.4.3
  1502. development/jupyterlab_pygments: Wrap README at 72 columns.
  1503. development/lighttable: Add network warning to README.
  1504. development/mysql-workbench: Wrap README at 72 columns.
  1505. development/nodejs: Updated for version 17.7.1.
  1506. development/openjdk7: Move template preamble to top of script.
  1507. development/php-xdebug: Fix PRGNAM in script.
  1508. development/racer: Add network warning to README.
  1509. development/racer: Wrap README at 72 columns.
  1510. development/sbcl: Updated for version 2.2.2
  1511. development/shc: Fix DOWNLOAD.
  1512. development/shc: Wrap README at 72 columns.
  1513. development/shiboken2: Wrap README at 72 columns.
  1514. development/sqlcl: Wrap README at 72 columns.
  1515. development/sqlitebrowser: Wrap README at 72 columns.
  1516. development/tora: Fix VERSION in script.
  1517. development/vscode-bin: Updated for version 3.6.1.
  1518. games/beetle-psx-libretro: updated for version 2022.02.11 + new maintainer
  1519. games/clksignal-roms: Host 2 of the downloads under sane names.
  1520. games/dmagnetic: gzip the man pages.
  1521. games/jin: Update email
  1522. games/lutris: Updated for version 0.5.9.1, new maintainer
  1523. games/m64py: Remove template comment.
  1524. games/scid_vs_pc: Wrap README at 72 columns.
  1525. games/scummvm: Wrap README at 72 columns.
  1526. games/sl: Wrap README at 72 columns.
  1527. games/smashbattle: Wrap README at 72 columns.
  1528. games/solarus-quest-editor: Wrap README at 72 columns.
  1529. games/speed-dreams: Wrap README at 72 columns.
  1530. games/steam: Wrap README at 72 columns.
  1531. games/tintin: Wrap README at 72 columns.
  1532. games/tome-ah: Wrap README at 72 columns.
  1533. games/trigger-rally: Wrap README at 72 columns.
  1534. games/tuxnes: Wrap README at 72 columns.
  1535. games/uligo: Wrap README at 72 columns.
  1536. games/ut2004: Wrap README at 72 columns.
  1537. games/vcmi: updated for version 0.99_git20220314
  1538. games/voxelands: Wrap README at 72 columns.
  1539. games/warzone2100: Wrap README at 72 columns.
  1540. games/warzone2100: updated for version 4.2.7
  1541. games/wesnoth: Wrap README at 72 columns.
  1542. games/worldofgoo: Wrap README at 72 columns.
  1543. games/xroar-roms: Get rid of duplicate ROMs.
  1544. games/xye: Wrap README at 72 columns.
  1545. games/yamagi-quake2: Wrap README at 72 columns.
  1546. games/zaz: Wrap README at 72 columns.
  1547. games/zelda-roth-se: Wrap README at 72 columns.
  1548. games/zseal: Wrap README at 72 columns.
  1549. gis/Fiona: Wrap README at 72 columns.
  1550. gis/Geohash: Wrap README at 72 columns.
  1551. gis/OTB: Wrap README at 72 columns.
  1552. gis/SFCGAL: Wrap README at 72 columns.
  1553. gis/TauDEM: Wrap README at 72 columns.
  1554. gis/geographiclib-python: Wrap README at 72 columns.
  1555. gis/geopandas: Changed REQUIRES for python3-psycopg2
  1556. gis/geopandas: Wrap README at 72 columns.
  1557. gis/gpsbabel: Wrap README at 72 columns.
  1558. gis/grass: Wrap README at 72 columns.
  1559. gis/josm: Wrap README at 72 columns.
  1560. gis/laszip: Wrap README at 72 columns.
  1561. gis/libspatialindex: Wrap README at 72 columns.
  1562. gis/libspatialite: Wrap README at 72 columns.
  1563. gis/mapnik: Wrap README at 72 columns.
  1564. gis/opengrads: Wrap README at 72 columns.
  1565. gis/openorienteering-mapper: Wrap README at 72 columns.
  1566. gis/osgEarth: Wrap README at 72 columns.
  1567. gis/osm-gps-map: Wrap README at 72 columns.
  1568. gis/ossim: Wrap README at 72 columns.
  1569. gis/pdal: Wrap README at 72 columns.
  1570. gis/pgrouting: Wrap README at 72 columns.
  1571. gis/pgsql-ogr-fdw: Wrap README at 72 columns.
  1572. gis/pktools: Wrap README at 72 columns.
  1573. gis/pointcloud: Wrap README at 72 columns.
  1574. gis/polyline: Wrap README at 72 columns.
  1575. gis/postgis: Wrap README at 72 columns.
  1576. gis/python-mapnik: Fix VERSION in script.
  1577. gis/python-pygeos: Wrap README at 72 columns.
  1578. gis/python3-cartopy: Wrap README at 72 columns.
  1579. gis/python3-pyproj: Wrap README at 72 columns.
  1580. gis/python3-pyshp: Wrap README at 72 columns.
  1581. gis/python3-xarray: Wrap README at 72 columns.
  1582. gis/qgis: Changed REQUIRES for python3-psycopg2
  1583. gis/qgis: Wrap README at 72 columns.
  1584. gis/rasterio: Wrap README at 72 columns.
  1585. gis/routino: Wrap README at 72 columns.
  1586. gis/saga-gis: Wrap README at 72 columns.
  1587. gis/spatialite-tools: Wrap README at 72 columns.
  1588. gis/tangogps: Wrap README at 72 columns.
  1589. gis/whitebox-tools: Wrap README at 72 columns.
  1590. gis/xplanet: Wrap README at 72 columns.
  1591. graphics/Blender: Wrap README at 72 columns.
  1592. graphics/FreeCAD: Wrap README at 72 columns.
  1593. graphics/LDView: Wrap README at 72 columns.
  1594. graphics/SweetHome3D: Update email
  1595. graphics/VariCAD: Wrap README at 72 columns.
  1596. graphics/XnViewMP: Wrap README at 72 columns.
  1597. graphics/abcm2ps: Wrap README at 72 columns.
  1598. graphics/aewan: Wrap README at 72 columns.
  1599. graphics/apitrace: Wrap README at 72 columns.
  1600. graphics/brlcad: Wrap README at 72 columns.
  1601. graphics/converseen: Updated for version 0.9.9.5.
  1602. graphics/darktable: Wrap README at 72 columns.
  1603. graphics/dia: Wrap README at 72 columns.
  1604. graphics/dvisvgm: Wrap README at 72 columns.
  1605. graphics/embree: Make slack-desc ASCII.
  1606. graphics/embree: Wrap README at 72 columns.
  1607. graphics/enblend-enfuse: Wrap README at 72 columns.
  1608. graphics/fbpic: Wrap README at 72 columns.
  1609. graphics/fig2sxd: Wrap README at 72 columns.
  1610. graphics/fotowall: Wrap README at 72 columns.
  1611. graphics/frescobaldi: Wrap README at 72 columns.
  1612. graphics/fritzing: Wrap README at 72 columns.
  1613. graphics/gliv: Wrap README at 72 columns.
  1614. graphics/gnome-themes-extras: Wrap README at 72 columns.
  1615. graphics/gpicview: Wrap README at 72 columns.
  1616. graphics/gpscorrelate: Wrap README at 72 columns.
  1617. graphics/graph-easy: Wrap README at 72 columns.
  1618. graphics/gthumb: Wrap README at 72 columns.
  1619. graphics/img2pdf: Remove tabs from README.
  1620. graphics/imgmin: Wrap README at 72 columns.
  1621. graphics/jp2a: Wrap README at 72 columns.
  1622. graphics/jpeg2ps: Wrap README at 72 columns.
  1623. graphics/leocad_pieces: Wrap README at 72 columns.
  1624. graphics/maim: Wrap README at 72 columns.
  1625. graphics/meshlab: Wrap README at 72 columns.
  1626. graphics/nsxiv: Updated for version 29
  1627. graphics/nvidia-texture-tools: Wrap README at 72 columns.
  1628. graphics/openclipart: Wrap README at 72 columns.
  1629. graphics/opencollada: Wrap README at 72 columns.
  1630. graphics/openscad-mcad: Fix VERSION in script.
  1631. graphics/openscad: Wrap README at 72 columns.
  1632. graphics/paraview: Wrap README at 72 columns.
  1633. graphics/pdf2png: Wrap README at 72 columns.
  1634. graphics/pencil3: Wrap README at 72 columns.
  1635. graphics/pho: Wrap README at 72 columns.
  1636. graphics/png2ico: Wrap README at 72 columns.
  1637. graphics/pngcrush: Wrap README at 72 columns.
  1638. graphics/potrace: Wrap README at 72 columns.
  1639. graphics/pygraphviz: Wrap README at 72 columns.
  1640. graphics/qcad: Wrap README at 72 columns.
  1641. graphics/rawtherapee: Wrap README at 72 columns.
  1642. graphics/scrot: Wrap README at 72 columns.
  1643. graphics/tesseract: Wrap README at 72 columns.
  1644. graphics/tgif-QPL: Wrap README at 72 columns.
  1645. graphics/tkpng: Wrap README at 72 columns.
  1646. graphics/trimage: Wrap README at 72 columns.
  1647. graphics/ueberzug: Make slack-desc ASCII.
  1648. graphics/ufraw: Wrap README at 72 columns.
  1649. graphics/unpaper: Wrap README at 72 columns.
  1650. graphics/vuescan: Updated for version 9.7.80.
  1651. graphics/wavelet-denoise: Wrap README at 72 columns.
  1652. graphics/whyteboard: Wrap README at 72 columns.
  1653. graphics/xcalib: Wrap README at 72 columns.
  1654. graphics/xdot: Wrap README at 72 columns.
  1655. graphics/yafaray-blender: Wrap README at 72 columns.
  1656. graphics/zgv: Wrap README at 72 columns.
  1657. ham/ax25-apps: Wrap README at 72 columns.
  1658. ham/baudline: Wrap README at 72 columns.
  1659. ham/csdr: Wrap README at 72 columns.
  1660. ham/cwdaemon: Wrap README at 72 columns.
  1661. ham/ebook2cw: Wrap README at 72 columns.
  1662. ham/grig: Wrap README at 72 columns.
  1663. ham/libax25: Wrap README at 72 columns.
  1664. ham/svxlink-sounds-en_US-heather-16k: Wrap README at 72 columns.
  1665. ham/svxlink: Wrap README at 72 columns.
  1666. ham/tlf: Wrap README at 72 columns.
  1667. ham/tqsl: Wrap README at 72 columns.
  1668. ham/xfhell: Wrap README at 72 columns.
  1669. ham/xpsk31: Wrap README at 72 columns.
  1670. ham/xwxapt: Wrap README at 72 columns.
  1671. haskell/ghc: Wrap README at 72 columns.
  1672. haskell/haskell-HTTP: Wrap README at 72 columns.
  1673. haskell/haskell-HUnit: Wrap README at 72 columns.
  1674. haskell/haskell-ShellCheck: Wrap README at 72 columns.
  1675. haskell/haskell-base16-bytestring: Wrap README at 72 columns.
  1676. haskell/haskell-cgi: Wrap README at 72 columns.
  1677. haskell/haskell-cmark: Wrap README at 72 columns.
  1678. haskell/haskell-colour: Wrap README at 72 columns.
  1679. haskell/haskell-digest: Wrap README at 72 columns.
  1680. haskell/haskell-fail: Wrap README at 72 columns.
  1681. haskell/haskell-graphviz: Wrap README at 72 columns.
  1682. haskell/haskell-lpeg: Make slack-desc ASCII.
  1683. haskell/haskell-memory: Wrap README at 72 columns.
  1684. haskell/haskell-pandoc-types: Wrap README at 72 columns.
  1685. haskell/haskell-polyparse: Wrap README at 72 columns.
  1686. haskell/haskell-regex-applicative: Wrap README at 72 columns.
  1687. haskell/haskell-texmath: Wrap README at 72 columns.
  1688. haskell/haskell-zlib: Wrap README at 72 columns.
  1689. libraries/BeautifulSoup: Wrap README at 72 columns.
  1690. libraries/CGAL: Wrap README at 72 columns.
  1691. libraries/CondConfigParser: Wrap README at 72 columns.
  1692. libraries/ConfigParser: Wrap README at 72 columns.
  1693. libraries/DevIL: Wrap README at 72 columns.
  1694. libraries/FreeImage: Wrap README at 72 columns.
  1695. libraries/Geraldo: Wrap README at 72 columns.
  1696. libraries/Nevow: Wrap README at 72 columns.
  1697. libraries/OpenBLAS: Wrap README at 72 columns.
  1698. libraries/OpenCSG: Wrap README at 72 columns.
  1699. libraries/OpenSceneGraph: Remove tabs from README.
  1700. libraries/OpenSceneGraph: Wrap README at 72 columns.
  1701. libraries/PyOpenGL: Wrap README at 72 columns.
  1702. libraries/Pykka: Wrap README at 72 columns.
  1703. libraries/SFML: Wrap README at 72 columns.
  1704. libraries/Smarty: Wrap README at 72 columns.
  1705. libraries/VTK: Wrap README at 72 columns.
  1706. libraries/adodb: Wrap README at 72 columns.
  1707. libraries/agg: Wrap README at 72 columns.
  1708. libraries/allegro: Wrap README at 72 columns.
  1709. libraries/antlr4: Add network warning to README.
  1710. libraries/antlr4: Wrap README at 72 columns.
  1711. libraries/barry: Wrap README at 72 columns.
  1712. libraries/batinfo: Wrap README at 72 columns.
  1713. libraries/bctoolbox: Wrap README at 72 columns.
  1714. libraries/bitstream: Wrap README at 72 columns.
  1715. libraries/blas: Wrap README at 72 columns.
  1716. libraries/bluez-alsa: Wrap README at 72 columns.
  1717. libraries/bzrtp: Wrap README at 72 columns.
  1718. libraries/cal3d: Wrap README at 72 columns.
  1719. libraries/cdk: Wrap README at 72 columns.
  1720. libraries/cffi: Wrap README at 72 columns.
  1721. libraries/confuse: Wrap README at 72 columns.
  1722. libraries/console_bridge: Wrap README at 72 columns.
  1723. libraries/crossguid: Wrap README at 72 columns.
  1724. libraries/curses_ex: Wrap README at 72 columns.
  1725. libraries/dcadec: Wrap README at 72 columns.
  1726. libraries/dcmtk: Wrap README at 72 columns.
  1727. libraries/edelib: Wrap README at 72 columns.
  1728. libraries/efl: Wrap README at 72 columns.
  1729. libraries/eris: Wrap README at 72 columns.
  1730. libraries/evernote-python: Wrap README at 72 columns.
  1731. libraries/exiftool: Wrap README at 72 columns.
  1732. libraries/facebook-python: Wrap README at 72 columns.
  1733. libraries/fcgi: Wrap README at 72 columns.
  1734. libraries/fifechan: Wrap README at 72 columns.
  1735. libraries/fltk: Wrap README at 72 columns.
  1736. libraries/fox-toolkit-devel: Wrap README at 72 columns.
  1737. libraries/freexl: Wrap README at 72 columns.
  1738. libraries/ftplib: Wrap README at 72 columns.
  1739. libraries/futures: Wrap README at 72 columns.
  1740. libraries/gitdb2: Wrap README at 72 columns.
  1741. libraries/gitdb: Wrap README at 72 columns.
  1742. libraries/gl2ps: Wrap README at 72 columns.
  1743. libraries/goffice0.8: Wrap README at 72 columns.
  1744. libraries/grpc: Wrap README at 72 columns.
  1745. libraries/gspell: Wrap README at 72 columns.
  1746. libraries/gtkdatabox: Wrap README at 72 columns.
  1747. libraries/gtkglarea: Wrap README at 72 columns.
  1748. libraries/hdf: Wrap README at 72 columns.
  1749. libraries/hoel: updated for version 1.4.19
  1750. libraries/http-parser: Wrap README at 72 columns.
  1751. libraries/hurry-filesize: Wrap README at 72 columns.
  1752. libraries/iddawc: Wrap README at 72 columns.
  1753. libraries/ignition-transport: Wrap README at 72 columns.
  1754. libraries/iksemel: Wrap README at 72 columns.
  1755. libraries/imlib: Wrap README at 72 columns.
  1756. libraries/irrlicht: Wrap README at 72 columns.
  1757. libraries/isodate: Wrap README at 72 columns.
  1758. libraries/itcl: Wrap README at 72 columns.
  1759. libraries/lablgtk: Wrap README at 72 columns.
  1760. libraries/lapack: Wrap README at 72 columns.
  1761. libraries/levmar: Wrap README at 72 columns.
  1762. libraries/libEMF: Wrap README at 72 columns.
  1763. libraries/libaacs: Wrap README at 72 columns.
  1764. libraries/libass: Wrap README at 72 columns.
  1765. libraries/libavc1394: Update email
  1766. libraries/libavc1394: Wrap README at 72 columns.
  1767. libraries/libb64: Wrap README at 72 columns.
  1768. libraries/libbde: Wrap README at 72 columns.
  1769. libraries/libbdplus: Wrap README at 72 columns.
  1770. libraries/libbsd: Wrap README at 72 columns.
  1771. libraries/libbtbb: Wrap README at 72 columns.
  1772. libraries/libcangjie: Wrap README at 72 columns.
  1773. libraries/libcbor: Wrap README at 72 columns.
  1774. libraries/libcec: Wrap README at 72 columns.
  1775. libraries/libchewing: Wrap README at 72 columns.
  1776. libraries/libcli: Wrap README at 72 columns.
  1777. libraries/libdbh2: Wrap README at 72 columns.
  1778. libraries/libdc1394: Wrap README at 72 columns.
  1779. libraries/libdca: Wrap README at 72 columns.
  1780. libraries/libdv: Wrap README at 72 columns.
  1781. libraries/libeatmydata: Wrap README at 72 columns.
  1782. libraries/libesedb: Wrap README at 72 columns.
  1783. libraries/libesmtp: Wrap README at 72 columns.
  1784. libraries/libexe: Wrap README at 72 columns.
  1785. libraries/libfaketime: Wrap README at 72 columns.
  1786. libraries/libg15: Wrap README at 72 columns.
  1787. libraries/libg15render: Wrap README at 72 columns.
  1788. libraries/libgit2-glib: Wrap README at 72 columns.
  1789. libraries/libgit2: Wrap README at 72 columns.
  1790. libraries/libgnomecanvas: Wrap README at 72 columns.
  1791. libraries/libgnomecups: Wrap README at 72 columns.
  1792. libraries/libgsasl: Wrap README at 72 columns.
  1793. libraries/libharu: Wrap README at 72 columns.
  1794. libraries/libhid: Wrap README at 72 columns.
  1795. libraries/libhtp: Wrap README at 72 columns.
  1796. libraries/libiec61883: Update email
  1797. libraries/libiec61883: Wrap README at 72 columns.
  1798. libraries/libindi-drivers: Update email
  1799. libraries/libindi: Update email
  1800. libraries/libindi: Wrap README at 72 columns.
  1801. libraries/libiptcdata: Wrap README at 72 columns.
  1802. libraries/libircclient: Wrap README at 72 columns.
  1803. libraries/libisoburn: Wrap README at 72 columns.
  1804. libraries/libkate: Wrap README at 72 columns.
  1805. libraries/libkml: Wrap README at 72 columns.
  1806. libraries/liblightgrep: Wrap README at 72 columns.
  1807. libraries/liblxi: Wrap README at 72 columns.
  1808. libraries/libmicrohttpd: Wrap README at 72 columns.
  1809. libraries/libmimic: Wrap README at 72 columns.
  1810. libraries/libmpdclient: Wrap README at 72 columns.
  1811. libraries/libmsiecf: Wrap README at 72 columns.
  1812. libraries/libmspack: Wrap README at 72 columns.
  1813. libraries/libmusicbrainz3: Wrap README at 72 columns.
  1814. libraries/libmusicbrainz5: Wrap README at 72 columns.
  1815. libraries/libnids: Wrap README at 72 columns.
  1816. libraries/liboglappth: Wrap README at 72 columns.
  1817. libraries/libolecf: Wrap README at 72 columns.
  1818. libraries/libotr: Wrap README at 72 columns.
  1819. libraries/libp11: Wrap README at 72 columns.
  1820. libraries/libpar2: Wrap README at 72 columns.
  1821. libraries/libpff: Wrap README at 72 columns.
  1822. libraries/libpri: Wrap README at 72 columns.
  1823. libraries/libqcow: Wrap README at 72 columns.
  1824. libraries/librapi2: Wrap README at 72 columns.
  1825. libraries/libraqm: Wrap README at 72 columns.
  1826. libraries/libreadline-java: Wrap README at 72 columns.
  1827. libraries/librsync: Wrap README at 72 columns.
  1828. libraries/libscrypt: Wrap README at 72 columns.
  1829. libraries/libshout: Wrap README at 72 columns.
  1830. libraries/libslack: Wrap README at 72 columns.
  1831. libraries/libsmraw: Wrap README at 72 columns.
  1832. libraries/libsoup3: Update to 15.0 template.
  1833. libraries/libsrtp: Wrap README at 72 columns.
  1834. libraries/libsynce: Wrap README at 72 columns.
  1835. libraries/libtermkey: Wrap README at 72 columns.
  1836. libraries/libthai: Wrap README at 72 columns.
  1837. libraries/libticonv: Wrap README at 72 columns.
  1838. libraries/libtubo0: Wrap README at 72 columns.
  1839. libraries/libucil: Wrap README at 72 columns.
  1840. libraries/libversion: Wrap README at 72 columns.
  1841. libraries/libvhdi: Wrap README at 72 columns.
  1842. libraries/libvirt: Wrap README at 72 columns.
  1843. libraries/libvmime: Wrap README at 72 columns.
  1844. libraries/libvorbisidec: Wrap README at 72 columns.
  1845. libraries/libvshadow: Wrap README at 72 columns.
  1846. libraries/libvslvm: Wrap README at 72 columns.
  1847. libraries/libvterm: Wrap README at 72 columns.
  1848. libraries/libwebsockets: Wrap README at 72 columns.
  1849. libraries/libwhisker2: Wrap README at 72 columns.
  1850. libraries/libxmi: Wrap README at 72 columns.
  1851. libraries/libxml++: Wrap README at 72 columns.
  1852. libraries/libxmp: Wrap README at 72 columns.
  1853. libraries/live555: Wrap README at 72 columns.
  1854. libraries/lockdev: Wrap README at 72 columns.
  1855. libraries/log4net: Wrap README at 72 columns.
  1856. libraries/lua-lpeg: Wrap README at 72 columns.
  1857. libraries/lua-luv: Wrap README at 72 columns.
  1858. libraries/lua-mpack: Wrap README at 72 columns.
  1859. libraries/lua-posix: Wrap README at 72 columns.
  1860. libraries/lunatic-python: Wrap README at 72 columns.
  1861. libraries/meanwhile: Wrap README at 72 columns.
  1862. libraries/menu-cache: Wrap README at 72 columns.
  1863. libraries/mowitz: Wrap README at 72 columns.
  1864. libraries/mpir: Wrap README at 72 columns.
  1865. libraries/msgpack-c: Wrap README at 72 columns.
  1866. libraries/mujs: Wrap README at 72 columns.
  1867. libraries/mysql++: Wrap README at 72 columns.
  1868. libraries/nextaw: Wrap README at 72 columns.
  1869. libraries/nini: Wrap README at 72 columns.
  1870. libraries/ocaml-batteries: Wrap README at 72 columns.
  1871. libraries/ocaml-camomile: Wrap README at 72 columns.
  1872. libraries/ocaml-findlib: Wrap README at 72 columns.
  1873. libraries/opencl-amd: Wrap README at 72 columns.
  1874. libraries/orcania: updated for version 2.2.2
  1875. libraries/paho-mqtt: Update to 15.0 template.
  1876. libraries/paho-mqtt: Wrap README at 72 columns.
  1877. libraries/pcl: Wrap README at 72 columns.
  1878. libraries/pexpect: Wrap README at 72 columns.
  1879. libraries/pgtcl-ng: Wrap README at 72 columns.
  1880. libraries/physfs: Wrap README at 72 columns.
  1881. libraries/plplot: Wrap README at 72 columns.
  1882. libraries/progressbar: Wrap README at 72 columns.
  1883. libraries/pycparser: Wrap README at 72 columns.
  1884. libraries/pyftpdlib: Wrap README at 72 columns.
  1885. libraries/pylast: Wrap README at 72 columns.
  1886. libraries/pymdstat: Wrap README at 72 columns.
  1887. libraries/pysendfile: Wrap README at 72 columns.
  1888. libraries/python-efl: Wrap README at 72 columns.
  1889. libraries/python-gnupg: Wrap README at 72 columns.
  1890. libraries/python-meld3: Wrap README at 72 columns.
  1891. libraries/rarfile: Wrap README at 72 columns.
  1892. libraries/reportlab: Wrap README at 72 columns.
  1893. libraries/rhino: Wrap README at 72 columns.
  1894. libraries/robin-map: Wrap README at 72 columns.
  1895. libraries/rpyc: Wrap README at 72 columns.
  1896. libraries/rrdtool: Wrap README at 72 columns.
  1897. libraries/rtorrent-python: Wrap README at 72 columns.
  1898. libraries/rudiments: Wrap README at 72 columns.
  1899. libraries/setproctitle: Wrap README at 72 columns.
  1900. libraries/skalibs: Updated for version 2.11.2.0
  1901. libraries/soundtouch: Wrap README at 72 columns.
  1902. libraries/spread-sheet-widget: Wrap README at 72 columns.
  1903. libraries/sqlpp11: Add network warning to README.
  1904. libraries/tDOM: Wrap README at 72 columns.
  1905. libraries/tbb: Wrap README at 72 columns.
  1906. libraries/tinyxml2: Wrap README at 72 columns.
  1907. libraries/totem-pl-parser: Wrap README at 72 columns.
  1908. libraries/tsocks: Wrap README at 72 columns.
  1909. libraries/ulfius: updated for version 2.7.8
  1910. libraries/unibilium: Wrap README at 72 columns.
  1911. libraries/unixODBC: Wrap README at 72 columns.
  1912. libraries/urdfdom_headers: Wrap README at 72 columns.
  1913. libraries/varconf: Wrap README at 72 columns.
  1914. libraries/volk: Wrap README at 72 columns.
  1915. libraries/web.py: Wrap README at 72 columns.
  1916. libraries/wv: Wrap README at 72 columns.
  1917. libraries/wxGTK3: Wrap README at 72 columns.
  1918. libraries/wxGTK: Wrap README at 72 columns.
  1919. libraries/wxPython3: Wrap README at 72 columns.
  1920. libraries/wxPython4: Wrap README at 72 columns.
  1921. libraries/wxPython: Wrap README at 72 columns.
  1922. libraries/wxX11: Wrap README at 72 columns.
  1923. libraries/xerces-c: Fix 32bit build.
  1924. libraries/xforms: Wrap README at 72 columns.
  1925. libraries/xmlrpc-c: Wrap README at 72 columns.
  1926. libraries/yaz: Wrap README at 72 columns.
  1927. libraries/yder: updated for version 1.4.15
  1928. libraries/zfec: Wrap README at 72 columns.
  1929. libraries/zziplib: Wrap README at 72 columns.
  1930. misc/ardesia: Wrap README at 72 columns.
  1931. misc/asr-manpages: Wrap README at 72 columns.
  1932. misc/bchunk: Wrap README at 72 columns.
  1933. misc/beep: Wrap README at 72 columns.
  1934. misc/biosdisk: Wrap README at 72 columns.
  1935. misc/boncuk: Wrap README at 72 columns.
  1936. misc/bsdmainutils: Wrap README at 72 columns.
  1937. misc/ccze: Wrap README at 72 columns.
  1938. misc/chm2pdf: Wrap README at 72 columns.
  1939. misc/cksfv: Wrap README at 72 columns.
  1940. misc/clawsker: Wrap README at 72 columns.
  1941. misc/dcc: Wrap README at 72 columns.
  1942. misc/dmg2img: Update email
  1943. misc/drg2sbg: Wrap README at 72 columns.
  1944. misc/dvtm: Wrap README at 72 columns.
  1945. misc/dwdiff: Wrap README at 72 columns.
  1946. misc/figlet-contributed: Wrap README at 72 columns.
  1947. misc/funny-manpages: Wrap README at 72 columns.
  1948. misc/g15composer: Wrap README at 72 columns.
  1949. misc/g15daemon: Wrap README at 72 columns.
  1950. misc/gcp: Wrap README at 72 columns.
  1951. misc/goldencheetah: Wrap README at 72 columns.
  1952. misc/gramps: Wrap README at 72 columns.
  1953. misc/heimdall: Wrap README at 72 columns.
  1954. misc/hoorex: Wrap README at 72 columns.
  1955. misc/kasumi: Wrap README at 72 columns.
  1956. misc/keychain: Wrap README at 72 columns.
  1957. misc/kronometer: Wrap README at 72 columns.
  1958. misc/ltunify: Wrap README at 72 columns.
  1959. misc/mdic: Wrap README at 72 columns.
  1960. misc/megatunix: Wrap README at 72 columns.
  1961. misc/moedict-desktop.app: Wrap README at 72 columns.
  1962. misc/mosquitto: Wrap README at 72 columns.
  1963. misc/myclippings: Wrap README at 72 columns.
  1964. misc/par2cmdline-tbb: Wrap README at 72 columns.
  1965. misc/par2cmdline: Wrap README at 72 columns.
  1966. misc/projectM: Wrap README at 72 columns.
  1967. misc/recode: Wrap README at 72 columns.
  1968. misc/rsnapshot: Wrap README at 72 columns.
  1969. misc/solunar: Wrap README at 72 columns.
  1970. misc/subsurface: Wrap README at 72 columns.
  1971. misc/sunwait: Wrap README at 72 columns.
  1972. misc/torrentinfo: Wrap README at 72 columns.
  1973. misc/weather: Wrap README at 72 columns.
  1974. misc/xdelta: Wrap README at 72 columns.
  1975. misc/xwinwrap: Wrap README at 72 columns.
  1976. misc/yara: Wrap README at 72 columns.
  1977. misc/ykpers: Wrap README at 72 columns.
  1978. multimedia/HandBrake: Wrap README at 72 columns.
  1979. multimedia/Mopidy: Wrap README at 72 columns.
  1980. multimedia/OpenLP: Wrap README at 72 columns.
  1981. multimedia/SimpleSysexxer: Wrap README at 72 columns.
  1982. multimedia/abcMIDI: Wrap README at 72 columns.
  1983. multimedia/anyremote: Wrap README at 72 columns.
  1984. multimedia/audiopreview: Wrap README at 72 columns.
  1985. multimedia/avidemux: Wrap README at 72 columns.
  1986. multimedia/castnow: Add network warning to README.
  1987. multimedia/ccxstream: Wrap README at 72 columns.
  1988. multimedia/dirac: Wrap README at 72 columns.
  1989. multimedia/droidcam: Wrap README at 72 columns.
  1990. multimedia/dsmidiwifi: Wrap README at 72 columns.
  1991. multimedia/dvblast: Wrap README at 72 columns.
  1992. multimedia/dvdrip: Wrap README at 72 columns.
  1993. multimedia/exaile: Wrap README at 72 columns.
  1994. multimedia/flvtool2: Wrap README at 72 columns.
  1995. multimedia/gaupol: Wrap README at 72 columns.
  1996. multimedia/genpuid: Wrap README at 72 columns.
  1997. multimedia/gmidimonitor: Wrap README at 72 columns.
  1998. multimedia/gmtp: Wrap README at 72 columns.
  1999. multimedia/gnome-mplayer: Wrap README at 72 columns.
  2000. multimedia/gnupod: Wrap README at 72 columns.
  2001. multimedia/gpac: Wrap README at 72 columns.
  2002. multimedia/gst-plugins-ugly: Wrap README at 72 columns.
  2003. multimedia/gst0-plugins-ugly: Wrap README at 72 columns.
  2004. multimedia/iat: Wrap README at 72 columns.
  2005. multimedia/inputstream.adaptive: Remove template comment.
  2006. multimedia/ivtv-utils: Wrap README at 72 columns.
  2007. multimedia/jlscp: Wrap README at 72 columns.
  2008. multimedia/minitube: Wrap README at 72 columns.
  2009. multimedia/mjpegtools: Update email
  2010. multimedia/mjpegtools: Wrap README at 72 columns.
  2011. multimedia/mjpegtools: fix email
  2012. multimedia/mp3fm: Wrap README at 72 columns.
  2013. multimedia/mpgtx: Wrap README at 72 columns.
  2014. multimedia/musixmatch: Make slack-desc ASCII.
  2015. multimedia/obs-studio: Updated for version 27.2.3
  2016. multimedia/obs-studio: Wrap README at 72 columns.
  2017. multimedia/oggconvert: Wrap README at 72 columns.
  2018. multimedia/oggvideotools: Wrap README at 72 columns.
  2019. multimedia/opencaster: Wrap README at 72 columns.
  2020. multimedia/parole: Wrap README at 72 columns.
  2021. multimedia/ripperX: Wrap README at 72 columns.
  2022. multimedia/smpeg: Wrap README at 72 columns.
  2023. multimedia/spek: Wrap README at 72 columns.
  2024. multimedia/subtitleeditor: Wrap README at 72 columns.
  2025. multimedia/subtitleripper: Wrap README at 72 columns.
  2026. multimedia/tovid: Update email
  2027. multimedia/tovid: Wrap README at 72 columns.
  2028. multimedia/transcode: Wrap README at 72 columns.
  2029. multimedia/tstools: Wrap README at 72 columns.
  2030. multimedia/tvtime: Wrap README at 72 columns.
  2031. multimedia/ucview: Wrap README at 72 columns.
  2032. multimedia/vcdimager: Wrap README at 72 columns.
  2033. multimedia/vlc: Wrap README at 72 columns.
  2034. multimedia/wxcam: Update email
  2035. multimedia/wxcam: Wrap README at 72 columns.
  2036. multimedia/xjadeo: Wrap README at 72 columns.
  2037. multimedia/xmltv: Wrap README at 72 columns.
  2038. multimedia/xvid4conf: Wrap README at 72 columns.
  2039. multimedia/yarock: Wrap README at 72 columns.
  2040. multimedia/zvbi: Wrap README at 72 columns.
  2041. network/3proxy: Wrap README at 72 columns.
  2042. network/CherryMusic: Wrap README at 72 columns.
  2043. network/ClusterSSH: Wrap README at 72 columns.
  2044. network/DarTui: Wrap README at 72 columns.
  2045. network/Flootty: Wrap README at 72 columns.
  2046. network/Free-Cinema: Wrap README at 72 columns.
  2047. network/GhostInTheMail: Wrap README at 72 columns.
  2048. network/LOIC: Wrap README at 72 columns.
  2049. network/NetworkManager-l2tp: Wrap README at 72 columns.
  2050. network/Pafy: Wrap README at 72 columns.
  2051. network/PyRSS2Gen: Wrap README at 72 columns.
  2052. network/Pyrit: Wrap README at 72 columns.
  2053. network/SoulseekQt: Wrap README at 72 columns.
  2054. network/TeamSpeak3: Update email
  2055. network/WhatWeb: Wrap README at 72 columns.
  2056. network/aMule: Wrap README at 72 columns.
  2057. network/amap: Wrap README at 72 columns.
  2058. network/amavisd-new: Wrap README at 72 columns.
  2059. network/arno-iptables-firewall: Wrap README at 72 columns.
  2060. network/avahi: Wrap README at 72 columns.
  2061. network/awstats: Wrap README at 72 columns.
  2062. network/bip: Wrap README at 72 columns.
  2063. network/bitlbee: Wrap README at 72 columns.
  2064. network/brave-browser: Updated for version 1.35.112
  2065. network/btpd: Wrap README at 72 columns.
  2066. network/c-toxcore: Wrap README at 72 columns.
  2067. network/cacti: Wrap README at 72 columns.
  2068. network/cadaver: Wrap README at 72 columns.
  2069. network/cherokee: Wrap README at 72 columns.
  2070. network/clamav-unofficial-sigs: Wrap README at 72 columns.
  2071. network/claws-mail: Wrap README at 72 columns.
  2072. network/cmdiag: Wrap README at 72 columns.
  2073. network/cni-plugins: Add network warning to README.
  2074. network/cni-plugins: Wrap README at 72 columns.
  2075. network/comgt: Wrap README at 72 columns.
  2076. network/corkscrew: Wrap README at 72 columns.
  2077. network/csync: Wrap README at 72 columns.
  2078. network/ctorrent: Wrap README at 72 columns.
  2079. network/darkhttpd: Wrap README at 72 columns.
  2080. network/darkstat: Wrap README at 72 columns.
  2081. network/ddgr: Wrap README at 72 columns.
  2082. network/deluge: Wrap README at 72 columns.
  2083. network/dillo: Wrap README at 72 columns.
  2084. network/dirb: Wrap README at 72 columns.
  2085. network/dma: Wrap README at 72 columns.
  2086. network/dmitry: Wrap README at 72 columns.
  2087. network/dnscrypt-proxy: Wrap README at 72 columns.
  2088. network/dnscrypt-wrapper: Wrap README at 72 columns.
  2089. network/dnsmap: Wrap README at 72 columns.
  2090. network/dnstop: Wrap README at 72 columns.
  2091. network/dovecot-pigeonhole: Wrap README at 72 columns.
  2092. network/driftnet: Wrap README at 72 columns.
  2093. network/dropbox: Updated for version 144.4.4491.
  2094. network/dsniff: Wrap README at 72 columns.
  2095. network/easyrsa: Wrap README at 72 columns.
  2096. network/efax-gtk: Wrap README at 72 columns.
  2097. network/efax: Remove template comment.
  2098. network/efax: Wrap README at 72 columns.
  2099. network/eiskaltdcpp: Wrap README at 72 columns.
  2100. network/emailrelay: Wrap README at 72 columns.
  2101. network/enet: Wrap README at 72 columns.
  2102. network/etherape: Wrap README at 72 columns.
  2103. network/etherpad-lite: Add network warning to README.
  2104. network/ettercap: Wrap README at 72 columns.
  2105. network/exim: Wrap README at 72 columns.
  2106. network/fdm: Wrap README at 72 columns.
  2107. network/filezilla: Wrap README at 72 columns.
  2108. network/firehol: Wrap README at 72 columns.
  2109. network/flvstreamer: Wrap README at 72 columns.
  2110. network/fping: Wrap README at 72 columns.
  2111. network/freeradius-server: Wrap README at 72 columns.
  2112. network/gajim: Wrap README at 72 columns.
  2113. network/geoipupdate: Wrap README at 72 columns.
  2114. network/glewlwyd: Wrap README at 72 columns.
  2115. network/gns3: Wrap README at 72 columns.
  2116. network/googler: Wrap README at 72 columns.
  2117. network/gophernicus: Move setup instructions to README.SBo.
  2118. network/graphite-carbon: Wrap README at 72 columns.
  2119. network/gtk-gnutella: Wrap README at 72 columns.
  2120. network/gui-ufw: Fix broken wrapper scripts.
  2121. network/hamachi: Wrap README at 72 columns.
  2122. network/haproxy: Wrap README at 72 columns.
  2123. network/haskell-network-multicast: Wrap README at 72 columns.
  2124. network/havp: Wrap README at 72 columns.
  2125. network/host-sflow: Wrap README at 72 columns.
  2126. network/hostsblock: Wrap README at 72 columns.
  2127. network/hping3: Wrap README at 72 columns.
  2128. network/httpie: Wrap README at 72 columns.
  2129. network/icinga2: Wrap README at 72 columns.
  2130. network/identicurse: Wrap README at 72 columns.
  2131. network/inadyn: Wrap README at 72 columns.
  2132. network/iodine: Wrap README at 72 columns.
  2133. network/ipcalc: Wrap README at 72 columns.
  2134. network/iperf: Wrap README at 72 columns.
  2135. network/ircd-hybrid: Wrap README at 72 columns.
  2136. network/isync: Wrap README at 72 columns.
  2137. network/jabberd2: Wrap README at 72 columns.
  2138. network/jboss-as: Wrap README at 72 columns.
  2139. network/jitsi: Wrap README at 72 columns.
  2140. network/kivy-garden: Wrap README at 72 columns.
  2141. network/knock: Wrap README at 72 columns.
  2142. network/leafnode: Wrap README at 72 columns.
  2143. network/libmaxminddb: Wrap README at 72 columns.
  2144. network/libnatpmp: Wrap README at 72 columns.
  2145. network/libnfsidmap: Wrap README at 72 columns.
  2146. network/light-firefox: Wrap README at 72 columns.
  2147. network/linphone: Wrap README at 72 columns.
  2148. network/linssid: Wrap README at 72 columns.
  2149. network/livestreamer: Wrap README at 72 columns.
  2150. network/lizardfs: Wrap README at 72 columns.
  2151. network/lxi-tools: Wrap README at 72 columns.
  2152. network/mailman: Wrap README at 72 columns.
  2153. network/mailspring: Updated for version 1.10.1
  2154. network/malheur: Wrap README at 72 columns.
  2155. network/masscan: Wrap README at 72 columns.
  2156. network/megatools: Wrap README at 72 columns.
  2157. network/memcached: Wrap README at 72 columns.
  2158. network/mitmproxy-bin: Update to 15.0 template.
  2159. network/mod_auth_kerb: Wrap README at 72 columns.
  2160. network/mod_chroot: Wrap README at 72 columns.
  2161. network/mod_evasive: Wrap README at 72 columns.
  2162. network/mod_geoip2: Wrap README at 72 columns.
  2163. network/mod_ruid2: Wrap README at 72 columns.
  2164. network/mod_wsgi: Wrap README at 72 columns.
  2165. network/monkey: Wrap README at 72 columns.
  2166. network/mumble-server: Wrap README at 72 columns.
  2167. network/mysecureshell: Wrap README at 72 columns.
  2168. network/nagios: Wrap README at 72 columns.
  2169. network/ncrack: Wrap README at 72 columns.
  2170. network/netcat-openbsd: Update download URL
  2171. network/netcat: Wrap README at 72 columns.
  2172. network/netdiscover: Wrap README at 72 columns.
  2173. network/netdrive-connector: Wrap README at 72 columns.
  2174. network/netqmail: Wrap README at 72 columns.
  2175. network/netsurf: Wrap README at 72 columns.
  2176. network/newsboat: Wrap README at 72 columns.
  2177. network/nextcloud-client: Wrap README at 72 columns.
  2178. network/nginx: Wrap README at 72 columns.
  2179. network/ngrep: Wrap README at 72 columns.
  2180. network/ngrok: Wrap README at 72 columns.
  2181. network/nikto: Wrap README at 72 columns.
  2182. network/nrpe: Wrap README at 72 columns.
  2183. network/nsca: Wrap README at 72 columns.
  2184. network/nsd: Wrap README at 72 columns.
  2185. network/nss-mdns: Wrap README at 72 columns.
  2186. network/nweb: Fix VERSION in script.
  2187. network/oidentd: Wrap README at 72 columns.
  2188. network/onedrive: Updated to version 2.4.16
  2189. network/onionshare: Wrap README at 72 columns.
  2190. network/openconnect: Wrap README at 72 columns.
  2191. network/opendchub: Wrap README at 72 columns.
  2192. network/opendkim: Wrap README at 72 columns.
  2193. network/opendmarc: Wrap README at 72 columns.
  2194. network/openntpd: Wrap README at 72 columns.
  2195. network/opensmtpd: Wrap README at 72 columns.
  2196. network/openvswitch-utils: Wrap README at 72 columns.
  2197. network/owncloud-client: Wrap README at 72 columns.
  2198. network/owncloud-server: Wrap README at 72 columns.
  2199. network/p0f: Wrap README at 72 columns.
  2200. network/pCloudDrive: Wrap README at 72 columns.
  2201. network/packit: Wrap README at 72 columns.
  2202. network/palemoon-bin: Wrap README at 72 columns.
  2203. network/pdns: Remove tabs from README.
  2204. network/periscope: Wrap README at 72 columns.
  2205. network/pflogsumm: Wrap README at 72 columns.
  2206. network/pfqueue: Wrap README at 72 columns.
  2207. network/pgpool-II: Wrap README at 72 columns.
  2208. network/phpmyadmin: Wrap README at 72 columns.
  2209. network/pidgin-nudge: Wrap README at 72 columns.
  2210. network/pidgin-otr: Wrap README at 72 columns.
  2211. network/pidgin-privacy-please: Wrap README at 72 columns.
  2212. network/pidgin-sound: Wrap README at 72 columns.
  2213. network/plowshare: Wrap README at 72 columns.
  2214. network/pmacct: Wrap README at 72 columns.
  2215. network/policyd2: Wrap README at 72 columns.
  2216. network/polipo: Wrap README at 72 columns.
  2217. network/postgrey: Wrap README at 72 columns.
  2218. network/pptpd: Wrap README at 72 columns.
  2219. network/prosody-mod-turncredentials: Wrap README at 72 columns.
  2220. network/prosody-mod-vcard-muc: Wrap README at 72 columns.
  2221. network/protonvpn-cli: Remove template comment.
  2222. network/protonvpn-cli: Update homepage and download link.
  2223. network/proxymini: Wrap README at 72 columns.
  2224. network/proxytunnel: Wrap README at 72 columns.
  2225. network/psad: Wrap README at 72 columns.
  2226. network/psi-plus: Add network warning to README.
  2227. network/qTox: Wrap README at 72 columns.
  2228. network/radvd: Wrap README at 72 columns.
  2229. network/reaver: Wrap README at 72 columns.
  2230. network/rejik: Wrap README at 72 columns.
  2231. network/republicanywhere: Wrap README at 72 columns.
  2232. network/retroshare: Wrap README at 72 columns.
  2233. network/riot-web: Remove tabs from README.
  2234. network/riot-web: Wrap README at 72 columns.
  2235. network/rtl8821ce: Make slack-desc ASCII.
  2236. network/seahub: Wrap README at 72 columns.
  2237. network/shibboleth-sp: Wrap README at 72 columns.
  2238. network/sickrage: Wrap README at 72 columns.
  2239. network/siege: Wrap README at 72 columns.
  2240. network/signal-desktop: Updated for version 5.35.0
  2241. network/silc-toolkit: Wrap README at 72 columns.
  2242. network/skypeforlinux: Wrap README at 72 columns.
  2243. network/slirp4netns: Wrap README at 72 columns.
  2244. network/slowhttptest: Wrap README at 72 columns.
  2245. network/smcroute: Wrap README at 72 columns.
  2246. network/sniffjoke: Wrap README at 72 columns.
  2247. network/snort: Wrap README at 72 columns.
  2248. network/spamassassin: Wrap README at 72 columns.
  2249. network/spambayes: Wrap README at 72 columns.
  2250. network/speedometer: Wrap README at 72 columns.
  2251. network/speedtest-cli: Wrap README at 72 columns.
  2252. network/sqlninja: Wrap README at 72 columns.
  2253. network/sqlrelay: Wrap README at 72 columns.
  2254. network/squid: Wrap README at 72 columns.
  2255. network/squidanalyzer: Wrap README at 72 columns.
  2256. network/sshguard: Wrap README at 72 columns.
  2257. network/sstp-client: Wrap README at 72 columns.
  2258. network/strongswan: Wrap README at 72 columns.
  2259. network/sylpheed: Wrap README at 72 columns.
  2260. network/tahoe-lafs: Wrap README at 72 columns.
  2261. network/tcpflow: Wrap README at 72 columns.
  2262. network/teams: Make slack-desc ASCII.
  2263. network/telegram: Updated for version 3.6.1.
  2264. network/telegram: Wrap README at 72 columns.
  2265. network/thrift: Wrap README at 72 columns.
  2266. network/thttpd: Wrap README at 72 columns.
  2267. network/tinc: Wrap README at 72 columns.
  2268. network/tinyproxy: Wrap README at 72 columns.
  2269. network/tmate: Wrap README at 72 columns.
  2270. network/tor: New maintainer.
  2271. network/toxcore: Wrap README at 72 columns.
  2272. network/translate-shell: Wrap README at 72 columns.
  2273. network/ttcp: Wrap README at 72 columns.
  2274. network/ttdnsd: Wrap README at 72 columns.
  2275. network/tunctl: Wrap README at 72 columns.
  2276. network/turbolift: Wrap README at 72 columns.
  2277. network/ubertooth: Wrap README at 72 columns.
  2278. network/ucspi-tcp: Wrap README at 72 columns.
  2279. network/udpcast: Wrap README at 72 columns.
  2280. network/ufw: Wrap README at 72 columns.
  2281. network/uget-chrome-wrapper: Wrap README at 72 columns.
  2282. network/uget-integrator: Wrap README at 72 columns.
  2283. network/urlgrabber: Wrap README at 72 columns.
  2284. network/urlscan: Wrap README at 72 columns.
  2285. network/urlview: Wrap README at 72 columns.
  2286. network/uudeview: Wrap README at 72 columns.
  2287. network/verlihub: Wrap README at 72 columns.
  2288. network/vmware-horizon-client: Wrap README at 72 columns.
  2289. network/vnstat: Move setup instructions to README.SBo.
  2290. network/vnstat: Wrap README at 72 columns.
  2291. network/vrrpd: Wrap README at 72 columns.
  2292. network/w3af: Wrap README at 72 columns.
  2293. network/webhook: Wrap README at 72 columns.
  2294. network/weighmail: Wrap README at 72 columns.
  2295. network/wendzelnntpd: Remove template comment.
  2296. network/wildfly: Wrap README at 72 columns.
  2297. network/wireshark: Wrap README at 72 columns.
  2298. network/wmget: Wrap README at 72 columns.
  2299. network/wmnotify: Wrap README at 72 columns.
  2300. network/wp-cli: Remove tabs from README.
  2301. network/wrk: Wrap README at 72 columns.
  2302. network/wvdial: Wrap README at 72 columns.
  2303. network/x11spice: Wrap README at 72 columns.
  2304. network/x11vnc: Wrap README at 72 columns.
  2305. network/x2goserver: Wrap README at 72 columns.
  2306. network/xinetd: Wrap README at 72 columns.
  2307. network/xl2tpd: Wrap README at 72 columns.
  2308. network/xnetload: Wrap README at 72 columns.
  2309. network/yadifa: Remove tabs from README.
  2310. network/yate: Wrap README at 72 columns.
  2311. network/youtube-dl-gui: Wrap README at 72 columns.
  2312. network/zabbix_agentd: Wrap README at 72 columns.
  2313. network/zabbix_java_gateway: Wrap README at 72 columns.
  2314. network/zabbix_proxy: Wrap README at 72 columns.
  2315. network/zabbix_server: Wrap README at 72 columns.
  2316. network/zmap: Wrap README at 72 columns.
  2317. network/znc: Wrap README at 72 columns.
  2318. network/zoom-linux: Make slack-desc ASCII.
  2319. office/FreeOffice: Make slack-desc ASCII.
  2320. office/JabRef: Fix BUILD usage.
  2321. office/LanguageTool: Wrap README at 72 columns.
  2322. office/LibreOffice: Remove tabs from README.
  2323. office/LibreOffice: Wrap README at 72 columns.
  2324. office/Ted: Wrap README at 72 columns.
  2325. office/adobe-reader-fontpacks: Wrap README at 72 columns.
  2326. office/aigaion: Wrap README at 72 columns.
  2327. office/anorack: Remove tabs from README.
  2328. office/apvlv: Wrap README at 72 columns.
  2329. office/basket: Wrap README at 72 columns.
  2330. office/briss: Wrap README at 72 columns.
  2331. office/broffice.org: Wrap README at 72 columns.
  2332. office/calibre: Wrap README at 72 columns.
  2333. office/cups-pdf: Wrap README at 72 columns.
  2334. office/devtodo: Wrap README at 72 columns.
  2335. office/ding: Wrap README at 72 columns.
  2336. office/docx2txt: Wrap README at 72 columns.
  2337. office/elyxer: Wrap README at 72 columns.
  2338. office/epdfview: Wrap README at 72 columns.
  2339. office/flowkeeper: Wrap README at 72 columns.
  2340. office/ghostwriter: Remove template comment.
  2341. office/homebank: Wrap README at 72 columns.
  2342. office/htmldoc: Wrap README at 72 columns.
  2343. office/jstock: Wrap README at 72 columns.
  2344. office/keepassxc: Wrap README at 72 columns.
  2345. office/keepnote: Wrap README at 72 columns.
  2346. office/latex2rtf: Wrap README at 72 columns.
  2347. office/lcal: Wrap README at 72 columns.
  2348. office/libreoffice-langpack: Wrap README at 72 columns.
  2349. office/minidjvu: Wrap README at 72 columns.
  2350. office/moneydance: Wrap README at 72 columns.
  2351. office/msee: Add network warning to README.
  2352. office/msee: Wrap README at 72 columns.
  2353. office/mu: Wrap README at 72 columns.
  2354. office/multivalent-tool-pdf: Wrap README at 72 columns.
  2355. office/odt2txt: Wrap README at 72 columns.
  2356. office/pandoc: Wrap README at 72 columns.
  2357. office/pdfpc: Wrap README at 72 columns.
  2358. office/pdftk: Wrap README at 72 columns.
  2359. office/ps2eps: Wrap README at 72 columns.
  2360. office/pstoedit: Wrap README at 72 columns.
  2361. office/pstotext: Wrap README at 72 columns.
  2362. office/pyspread: Wrap README at 72 columns.
  2363. office/scribus: Wrap README at 72 columns.
  2364. office/t-prot: Wrap README at 72 columns.
  2365. office/taskjuggler: Wrap README at 72 columns.
  2366. office/taskopen: Wrap README at 72 columns.
  2367. office/tellico: Wrap README at 72 columns.
  2368. office/text2pdf: Wrap README at 72 columns.
  2369. office/tpp: Wrap README at 72 columns.
  2370. office/traduisons: Wrap README at 72 columns.
  2371. office/trello-cli: Add network warning to README.
  2372. office/tudu: Wrap README at 72 columns.
  2373. office/verbiste: Wrap README at 72 columns.
  2374. office/vmd: Wrap README at 72 columns.
  2375. office/watson: Wrap README at 72 columns.
  2376. office/xmind: Wrap README at 72 columns.
  2377. perl/perl-Bit-Vector: Wrap README at 72 columns.
  2378. perl/perl-CGI: Wrap README at 72 columns.
  2379. perl/perl-CPAN-Changes: Wrap README at 72 columns.
  2380. perl/perl-Carp-Clan: Wrap README at 72 columns.
  2381. perl/perl-Class-Gomor: Wrap README at 72 columns.
  2382. perl/perl-Config-File: Wrap README at 72 columns.
  2383. perl/perl-Config-IniFiles: Wrap README at 72 columns.
  2384. perl/perl-Convert-ASN1: Wrap README at 72 columns.
  2385. perl/perl-Crypt-Blowfish_PP: Wrap README at 72 columns.
  2386. perl/perl-Crypt-CAST5: Wrap README at 72 columns.
  2387. perl/perl-Crypt-CBC: Wrap README at 72 columns.
  2388. perl/perl-Crypt-IDEA: Wrap README at 72 columns.
  2389. perl/perl-Crypt-OpenSSL-AES: Wrap README at 72 columns.
  2390. perl/perl-Crypt-OpenSSL-Guess: Wrap README at 72 columns.
  2391. perl/perl-Crypt-OpenSSL-RSA: Wrap README at 72 columns.
  2392. perl/perl-Crypt-Rijndael: Wrap README at 72 columns.
  2393. perl/perl-Data-UUID: Wrap README at 72 columns.
  2394. perl/perl-Date-Calc: Wrap README at 72 columns.
  2395. perl/perl-DateTime-Format-Builder: Wrap README at 72 columns.
  2396. perl/perl-DateTime-Format-ISO8601: Wrap README at 72 columns.
  2397. perl/perl-DateTime-Format-Strptime: Wrap README at 72 columns.
  2398. perl/perl-Devel-PartialDump: Wrap README at 72 columns.
  2399. perl/perl-Encode-Detect: Wrap README at 72 columns.
  2400. perl/perl-ExtUtils-Install: Wrap README at 72 columns.
  2401. perl/perl-ExtUtils-ModuleMaker: Wrap README at 72 columns.
  2402. perl/perl-File-Copy-Recursive: Wrap README at 72 columns.
  2403. perl/perl-File-Finder: Wrap README at 72 columns.
  2404. perl/perl-File-Remove: Wrap README at 72 columns.
  2405. perl/perl-File-ShareDir-Install: Wrap README at 72 columns.
  2406. perl/perl-File-Slurp: Wrap README at 72 columns.
  2407. perl/perl-Geo-IP: Wrap README at 72 columns.
  2408. perl/perl-Geography-Countries: Wrap README at 72 columns.
  2409. perl/perl-Gtk2-Ex-Simple-List: Wrap README at 72 columns.
  2410. perl/perl-HTML-HTMLDoc: Wrap README at 72 columns.
  2411. perl/perl-IO-All: Wrap README at 72 columns.
  2412. perl/perl-IO-CaptureOutput: Wrap README at 72 columns.
  2413. perl/perl-IO-Socket-INET6: Wrap README at 72 columns.
  2414. perl/perl-IO-Socket-Multicast: Wrap README at 72 columns.
  2415. perl/perl-IO-Tty: Wrap README at 72 columns.
  2416. perl/perl-IO-stringy: Wrap README at 72 columns.
  2417. perl/perl-Inline-C: Wrap README at 72 columns.
  2418. perl/perl-List-AllUtils: Wrap README at 72 columns.
  2419. perl/perl-Log-Dispatch: Wrap README at 72 columns.
  2420. perl/perl-MIME-tools: Wrap README at 72 columns.
  2421. perl/perl-Mail-SPF-Query: Wrap README at 72 columns.
  2422. perl/perl-MailTools: Wrap README at 72 columns.
  2423. perl/perl-Math-Base85: Wrap README at 72 columns.
  2424. perl/perl-Module-Build: Wrap README at 72 columns.
  2425. perl/perl-Mojolicious-Plugin-Humane: Wrap README at 72 columns.
  2426. perl/perl-MooX-StrictConstructor: Wrap README at 72 columns.
  2427. perl/perl-Net-CIDR-Lite: Wrap README at 72 columns.
  2428. perl/perl-Net-CIDR: Wrap README at 72 columns.
  2429. perl/perl-Net-IPv4Addr: Wrap README at 72 columns.
  2430. perl/perl-Net-IPv6Addr: Wrap README at 72 columns.
  2431. perl/perl-Net-Jabber: Wrap README at 72 columns.
  2432. perl/perl-Net-LibIDN: Wrap README at 72 columns.
  2433. perl/perl-Net-Libdnet: Wrap README at 72 columns.
  2434. perl/perl-Net-Pcap: Wrap README at 72 columns.
  2435. perl/perl-Net-RawIP: Wrap README at 72 columns.
  2436. perl/perl-Net-SNMP: Wrap README at 72 columns.
  2437. perl/perl-Net-Telnet: Wrap README at 72 columns.
  2438. perl/perl-Net-Write: Wrap README at 72 columns.
  2439. perl/perl-NetPacket: Wrap README at 72 columns.
  2440. perl/perl-Pegex: Wrap README at 72 columns.
  2441. perl/perl-Proc-PID-File: Wrap README at 72 columns.
  2442. perl/perl-Scope-Guard: Wrap README at 72 columns.
  2443. perl/perl-Socket6: Wrap README at 72 columns.
  2444. perl/perl-Statistics-Descriptive: Wrap README at 72 columns.
  2445. perl/perl-String-PerlIdentifier: Wrap README at 72 columns.
  2446. perl/perl-Switch: Wrap README at 72 columns.
  2447. perl/perl-Syntax-Highlight-Engine-Kate: Wrap README at 72 columns.
  2448. perl/perl-Sys-Mmap: Wrap README at 72 columns.
  2449. perl/perl-TeX-Hyphen: Wrap README at 72 columns.
  2450. perl/perl-Term-ProgressBar: Wrap README at 72 columns.
  2451. perl/perl-Test-LongString: Wrap README at 72 columns.
  2452. perl/perl-Test-PerlTidy: Wrap README at 72 columns.
  2453. perl/perl-Test-RequiresInternet: Wrap README at 72 columns.
  2454. perl/perl-Test-Simple: Wrap README at 72 columns.
  2455. perl/perl-Test-SubCalls: Wrap README at 72 columns.
  2456. perl/perl-Text-CSV_XS: Wrap README at 72 columns.
  2457. perl/perl-Text-Tabs+Wrap: Wrap README at 72 columns.
  2458. perl/perl-TryCatch: Wrap README at 72 columns.
  2459. perl/perl-Unicode-Map8: Wrap README at 72 columns.
  2460. perl/perl-Unicode-Map: Wrap README at 72 columns.
  2461. perl/perl-X11-Protocol-Other: Disable test by default (requires X).
  2462. perl/perl-X11-Protocol-Other: Wrap README at 72 columns.
  2463. perl/perl-XML-XPath: Wrap README at 72 columns.
  2464. perl/perl-YAML-LibYAML: Wrap README at 72 columns.
  2465. perl/perl-digest-hmac: Wrap README at 72 columns.
  2466. perl/perl-encode-locale: Wrap README at 72 columns.
  2467. perl/perl-file-desktopentry: Wrap README at 72 columns.
  2468. perl/perl-file-listing: Wrap README at 72 columns.
  2469. perl/perl-html-parser: Wrap README at 72 columns.
  2470. perl/perl-http-tiny: Wrap README at 72 columns.
  2471. perl/perl-inc-latest: Wrap README at 72 columns.
  2472. perl/perl-x11-protocol: Wrap README at 72 columns.
  2473. python/Baker: Wrap README at 72 columns.
  2474. python/PyGreSQL: Wrap README at 72 columns.
  2475. python/PyInstaller: Wrap README at 72 columns.
  2476. python/PyPDF2: Wrap README at 72 columns.
  2477. python/PyStemmer: Wrap README at 72 columns.
  2478. python/PythonQt: Wrap README at 72 columns.
  2479. python/RBTools: Wrap README at 72 columns.
  2480. python/WebHelpers: Removed, replaced by WebHelpers2 on python3-webhelpers2
  2481. python/XlsxWriter: Wrap README at 72 columns.
  2482. python/affine: Wrap README at 72 columns.
  2483. python/anyjson: Removed, very old and not in any more REQUIRES
  2484. python/apsw: Wrap README at 72 columns.
  2485. python/argcomplete: Wrap README at 72 columns.
  2486. python/argh: Wrap README at 72 columns.
  2487. python/arrow: Wrap README at 72 columns.
  2488. python/artifacts: Wrap README at 72 columns.
  2489. python/asgiref: Wrap README at 72 columns.
  2490. python/atomicwrites: Wrap README at 72 columns.
  2491. python/backcall: Wrap README at 72 columns.
  2492. python/backports.lzma: Wrap README at 72 columns.
  2493. python/bencode: Wrap README at 72 columns.
  2494. python/biplist: Wrap README at 72 columns.
  2495. python/bleach: Wrap README at 72 columns.
  2496. python/boto3: Wrap README at 72 columns.
  2497. python/boto: Wrap README at 72 columns.
  2498. python/buildbot-worker: updated for version 3.5.0, updated dependencies
  2499. python/cddb-py: Wrap README at 72 columns.
  2500. python/cfgparse: Wrap README at 72 columns.
  2501. python/cheetah3: Make slack-desc ASCII.
  2502. python/cheroot: Wrap README at 72 columns.
  2503. python/click-default-group: Wrap README at 72 columns.
  2504. python/click-didyoumean: Make slack-desc ASCII.
  2505. python/click: Wrap README at 72 columns.
  2506. python/clint: Wrap README at 72 columns.
  2507. python/colorama: Wrap README at 72 columns.
  2508. python/construct: Wrap README at 72 columns.
  2509. python/contextlib2: Make slack-desc ASCII.
  2510. python/contextlib2: Wrap README at 72 columns.
  2511. python/coverage: Wrap README at 72 columns.
  2512. python/cryptography: Wrap README at 72 columns.
  2513. python/cssselect: Wrap README at 72 columns.
  2514. python/defusedxml: Wrap README at 72 columns.
  2515. python/dfdatetime: Wrap README at 72 columns.
  2516. python/dfvfs: Wrap README at 72 columns.
  2517. python/dfwinreg: Wrap README at 72 columns.
  2518. python/django-debug-toolbar: Wrap README at 72 columns.
  2519. python/dotty: Wrap README at 72 columns.
  2520. python/dtfabric: Wrap README at 72 columns.
  2521. python/dukpy: Wrap README at 72 columns.
  2522. python/easygui: Wrap README at 72 columns.
  2523. python/elasticsearch5: Wrap README at 72 columns.
  2524. python/entrypoints: Wrap README at 72 columns.
  2525. python/feedparser: Remove tabs from README.
  2526. python/feedparser: Wrap README at 72 columns.
  2527. python/flask-paginate: Wrap README at 72 columns.
  2528. python/frosted: Wrap README at 72 columns.
  2529. python/hachoir-core: Wrap README at 72 columns.
  2530. python/hachoir-metadata: Wrap README at 72 columns.
  2531. python/hachoir-parser: Wrap README at 72 columns.
  2532. python/hachoir: Wrap README at 72 columns.
  2533. python/ipython_genutils: Wrap README at 72 columns.
  2534. python/josepy: Updated for version 1.13.0.
  2535. python/json-py: Wrap README at 72 columns.
  2536. python/llfuse: Wrap README at 72 columns.
  2537. python/mini-amf: Wrap README at 72 columns.
  2538. python/monotonic: Wrap README at 72 columns.
  2539. python/more-itertools: Wrap README at 72 columns.
  2540. python/mpmath: Wrap README at 72 columns.
  2541. python/msgpack-python: Wrap README at 72 columns.
  2542. python/ndg_httpsclient: Wrap README at 72 columns.
  2543. python/nest_asyncio: Wrap README at 72 columns.
  2544. python/numexpr: Wrap README at 72 columns.
  2545. python/odoo: Changed REQUIRES for python3-psycopg2
  2546. python/parso: Wrap README at 72 columns.
  2547. python/pefile: Wrap README at 72 columns.
  2548. python/phply: Wrap README at 72 columns.
  2549. python/pickleshare: Wrap README at 72 columns.
  2550. python/pillowfight: Wrap README at 72 columns.
  2551. python/pkginfo: Wrap README at 72 columns.
  2552. python/plaso: Changed REQUIRES for python2-pyzmq
  2553. python/poster: Wrap README at 72 columns.
  2554. python/psutil: Wrap README at 72 columns.
  2555. python/pyamf: Wrap README at 72 columns.
  2556. python/pybind11: Updated for version 2.9.1
  2557. python/pybind11: Wrap README at 72 columns.
  2558. python/pycdio: Wrap README at 72 columns.
  2559. python/pychecker: Wrap README at 72 columns.
  2560. python/pycryptopp: Wrap README at 72 columns.
  2561. python/pycxx: Wrap README at 72 columns.
  2562. python/pyflakes: Wrap README at 72 columns.
  2563. python/pygpgme: Wrap README at 72 columns.
  2564. python/pyjwt: Wrap README at 72 columns.
  2565. python/pynzb: Wrap README at 72 columns.
  2566. python/pyqode.cobol: Wrap README at 72 columns.
  2567. python/pyresample: Wrap README at 72 columns.
  2568. python/pysha3: Wrap README at 72 columns.
  2569. python/pysqlite: Wrap README at 72 columns.
  2570. python/pysvn: Wrap README at 72 columns.
  2571. python/pytest-cov: Wrap README at 72 columns.
  2572. python/pytest: Changed REQUIRES for python2-attrs
  2573. python/python-PySnooper: Wrap README at 72 columns.
  2574. python/python-argopt: Wrap README at 72 columns.
  2575. python/python-emoji: Wrap README at 72 columns.
  2576. python/python-fonttools: Updated for version 4.30.0.
  2577. python/python-importlib_metadata: Wrap README at 72 columns.
  2578. python/python-joblib: Wrap README at 72 columns.
  2579. python/python-jsonrpclib: Updated for verson 0.4.3.2.
  2580. python/python-kerberos: Wrap README at 72 columns.
  2581. python/python-ly: Wrap README at 72 columns.
  2582. python/python-magic: Wrap README at 72 columns.
  2583. python/python-markdown-math: Wrap README at 72 columns.
  2584. python/python-musicbrainz2: Wrap README at 72 columns.
  2585. python/python-nbxmpp: Wrap README at 72 columns.
  2586. python/python-neovim: Wrap README at 72 columns.
  2587. python/python-pcapy: Wrap README at 72 columns.
  2588. python/python-precis-i18n: Wrap README at 72 columns.
  2589. python/python-prometheus_client: Wrap README at 72 columns.
  2590. python/python-sh: Wrap README at 72 columns.
  2591. python/python2-attrs: renamed from attrs, updated for version 21.2.0
  2592. python/python2-automat: renamed from Automat, updated for version 20.2.0
  2593. python/python2-pycrypto: Fix PRGNAM in script.
  2594. python/python2-pyzmq: renamed from pyzmq
  2595. python/python2-selectors2: Wrap README at 72 columns.
  2596. python/python2-twisted: updated for version 20.3.0, updated REQUIRES
  2597. python/python3-amqp: Wrap README at 72 columns.
  2598. python/python3-defusedxml: Wrap README at 72 columns.
  2599. python/python3-django: Wrap README at 72 columns.
  2600. python/python3-gitdb2: Wrap README at 72 columns.
  2601. python/python3-hupper: Wrap README at 72 columns.
  2602. python/python3-ipaddr: Wrap README at 72 columns.
  2603. python/python3-isort: Wrap README at 72 columns.
  2604. python/python3-jedi: Changed REQUIRES for python3-parso
  2605. python/python3-kiwisolver: Wrap README at 72 columns.
  2606. python/python3-monotonic: Wrap README at 72 columns.
  2607. python/python3-nltk: Wrap README at 72 columns.
  2608. python/python3-nxt-python: Wrap README at 72 columns.
  2609. python/python3-paginate: Wrap README at 72 columns.
  2610. python/python3-pandas: Wrap README at 72 columns.
  2611. python/python3-parso: renamed from parso
  2612. python/python3-paste: Wrap README at 72 columns.
  2613. python/python3-pexpect: Wrap README at 72 columns.
  2614. python/python3-prompt_toolkit: Wrap README at 72 columns.
  2615. python/python3-psycopg2: renamed from psycopg2
  2616. python/python3-pyjwt: Wrap README at 72 columns.
  2617. python/python3-pylint: Wrap README at 72 columns.
  2618. python/python3-pyparted: Wrap README at 72 columns.
  2619. python/python3-rsa: Make slack-desc ASCII.
  2620. python/python3-setuptools_autover: Wrap README at 72 columns.
  2621. python/python3-tekore: Make slack-desc ASCII.
  2622. python/python3-twisted: Wrap README at 72 columns.
  2623. python/python3-urlobject: Wrap README at 72 columns.
  2624. python/python3-uth: Wrap README at 72 columns.
  2625. python/python3-waitress: Wrap README at 72 columns.
  2626. python/python3-webhelpers2: Wrap README at 72 columns.
  2627. python/pyudev: Wrap README at 72 columns.
  2628. python/readme_renderer: Wrap README at 72 columns.
  2629. python/requirements-detector: Wrap README at 72 columns.
  2630. python/rfc6555: Wrap README at 72 columns.
  2631. python/rsa: Wrap README at 72 columns.
  2632. python/salt: Changed REQUIRES for python2-pyzmq
  2633. python/scikit-learn: Wrap README at 72 columns.
  2634. python/selenium: Wrap README at 72 columns.
  2635. python/send2trash: Wrap README at 72 columns.
  2636. python/service_identity: Changed REQUIRES for python2-attrs
  2637. python/setuptools-scm-git-archive: Wrap README at 72 columns.
  2638. python/simplejson: Wrap README at 72 columns.
  2639. python/snowballstemmer: Wrap README at 72 columns.
  2640. python/sphinxcontrib-applehelp: Wrap README at 72 columns.
  2641. python/sphinxcontrib-devhelp: Wrap README at 72 columns.
  2642. python/sphinxcontrib-jsmath: Wrap README at 72 columns.
  2643. python/sphinxcontrib-qthelp: Wrap README at 72 columns.
  2644. python/sphinxcontrib-serializinghtml: Wrap README at 72 columns.
  2645. python/sphinxcontrib-websupport: Wrap README at 72 columns.
  2646. python/sqlparse: Wrap README at 72 columns.
  2647. python/stopit: Wrap README at 72 columns.
  2648. python/subprocess32: Wrap README at 72 columns.
  2649. python/subuser: Wrap README at 72 columns.
  2650. python/testpath: Wrap README at 72 columns.
  2651. python/timehash: Wrap README at 72 columns.
  2652. python/tinycss: Wrap README at 72 columns.
  2653. python/tox: Wrap README at 72 columns.
  2654. python/traitlets: Wrap README at 72 columns.
  2655. python/trezor: Wrap README at 72 columns.
  2656. python/typed_ast: Wrap README at 72 columns.
  2657. python/vinetto: Wrap README at 72 columns.
  2658. python/waitress: Wrap README at 72 columns.
  2659. python/websocket-client: Wrap README at 72 columns.
  2660. python/werkzeug: Wrap README at 72 columns.
  2661. python/xlutils: Wrap README at 72 columns.
  2662. python/yara-python: Wrap README at 72 columns.
  2663. python/zxcvbn-python: Wrap README at 72 columns.
  2664. ruby/ncurses-ruby: Wrap README at 72 columns.
  2665. ruby/rbenv: Wrap README at 72 columns.
  2666. ruby/ruby-native-package-installer: Wrap README at 72 columns.
  2667. ruby/rubygem-activesupport: Wrap README at 72 columns.
  2668. ruby/rubygem-coderay: Wrap README at 72 columns.
  2669. ruby/rubygem-concurrent-ruby: Wrap README at 72 columns.
  2670. ruby/rubygem-cool.io: Wrap README at 72 columns.
  2671. ruby/rubygem-daemons: Wrap README at 72 columns.
  2672. ruby/rubygem-diff-lcs: Wrap README at 72 columns.
  2673. ruby/rubygem-fastercsv: Wrap README at 72 columns.
  2674. ruby/rubygem-file-tail: Wrap README at 72 columns.
  2675. ruby/rubygem-fluentd: Wrap README at 72 columns.
  2676. ruby/rubygem-gtk2: Wrap README at 72 columns.
  2677. ruby/rubygem-highline: Wrap README at 72 columns.
  2678. ruby/rubygem-http_parser.rb: Wrap README at 72 columns.
  2679. ruby/rubygem-manpages: Wrap README at 72 columns.
  2680. ruby/rubygem-msgpack: Wrap README at 72 columns.
  2681. ruby/rubygem-mustache: Wrap README at 72 columns.
  2682. ruby/rubygem-net-ssh: Wrap README at 72 columns.
  2683. ruby/rubygem-optimist: Wrap README at 72 columns.
  2684. ruby/rubygem-ronn: Wrap README at 72 columns.
  2685. ruby/rubygem-rspec-mocks: Wrap README at 72 columns.
  2686. ruby/rubygem-rspec: Wrap README at 72 columns.
  2687. ruby/rubygem-ruby2ruby: Wrap README at 72 columns.
  2688. ruby/rubygem-ruby_parser: Wrap README at 72 columns.
  2689. ruby/rubygem-sass: Wrap README at 72 columns.
  2690. ruby/rubygem-sexp_processor: Wrap README at 72 columns.
  2691. ruby/rubygem-slop3: Wrap README at 72 columns.
  2692. ruby/rubygem-sourcify: Wrap README at 72 columns.
  2693. ruby/rubygem-trogdoro-el4r: Wrap README at 72 columns.
  2694. ruby/rubygem-tzinfo-data: Wrap README at 72 columns.
  2695. ruby/rubygem-xiki: Wrap README at 72 columns.
  2696. system/AnonymousPro: Wrap README at 72 columns.
  2697. system/GentiumPlus: Wrap README at 72 columns.
  2698. system/Iosevka: Updated for version 15.0.2
  2699. system/SavvyCAN: Wrap README at 72 columns.
  2700. system/Sl: Silence sbolint doinst.sh warning.
  2701. system/TLP: Wrap README at 72 columns.
  2702. system/ZoneMinder: Wrap README at 72 columns.
  2703. system/acpi: Wrap README at 72 columns.
  2704. system/adobe-source-code-pro-font: Wrap README at 72 columns.
  2705. system/adobe-source-sans-pro-font: Wrap README at 72 columns.
  2706. system/afuse: Wrap README at 72 columns.
  2707. system/amanda: Wrap README at 72 columns.
  2708. system/apache-activemq: Wrap README at 72 columns.
  2709. system/apache-tomcat: Updated for version 10.0.18.
  2710. system/apache-tomcat: Wrap README at 72 columns.
  2711. system/apachetop: Wrap README at 72 columns.
  2712. system/apcupsd: Wrap README at 72 columns.
  2713. system/apparmor: Wrap README at 72 columns.
  2714. system/artwiz-aleczapka: Wrap README at 72 columns.
  2715. system/artwiz-cursor: Wrap README at 72 columns.
  2716. system/asbt: Wrap README at 72 columns.
  2717. system/aterm: Wrap README at 72 columns.
  2718. system/audit: Wrap README at 72 columns.
  2719. system/augeas: Wrap README at 72 columns.
  2720. system/avfs: Wrap README at 72 columns.
  2721. system/bacula-client: Wrap README at 72 columns.
  2722. system/bacula: Wrap README at 72 columns.
  2723. system/barman: Changed REQUIRES for python3-psycopg2 and python3-dateutil
  2724. system/bcache-tools: Wrap README at 72 columns.
  2725. system/binfmt-support: Wrap README at 72 columns.
  2726. system/bootchart: Wrap README at 72 columns.
  2727. system/btop: Update to 15.0 template.
  2728. system/bubblewrap: Wrap README at 72 columns.
  2729. system/buildah: Wrap README at 72 columns.
  2730. system/bulk_extractor: Wrap README at 72 columns.
  2731. system/burp: Wrap README at 72 columns.
  2732. system/byobu: Wrap README at 72 columns.
  2733. system/capabilities: Wrap README at 72 columns.
  2734. system/caprice32: Wrap README at 72 columns.
  2735. system/ccd2iso: Wrap README at 72 columns.
  2736. system/ccid: Wrap README at 72 columns.
  2737. system/cdemu-client: Wrap README at 72 columns.
  2738. system/cdrkit: Wrap README at 72 columns.
  2739. system/cdw: Update email
  2740. system/cdw: Wrap README at 72 columns.
  2741. system/chronograf: Make slack-desc ASCII.
  2742. system/clamav: Wrap README at 72 columns.
  2743. system/cndrvcups-capt: Wrap README at 72 columns.
  2744. system/cndrvcups-common: Wrap README at 72 columns.
  2745. system/cnijfilter2: Wrap README at 72 columns.
  2746. system/cntlm: Wrap README at 72 columns.
  2747. system/commons-daemon: Wrap README at 72 columns.
  2748. system/conmon: Wrap README at 72 columns.
  2749. system/containerd: Add network warning to README.
  2750. system/coolkey: Wrap README at 72 columns.
  2751. system/corosync: Wrap README at 72 columns.
  2752. system/crashplan: Wrap README at 72 columns.
  2753. system/crmsh: Wrap README at 72 columns.
  2754. system/cronie: Wrap README at 72 columns.
  2755. system/cwtex-q-fonts-TTFs: Wrap README at 72 columns.
  2756. system/daemontools: Wrap README at 72 columns.
  2757. system/dahdi-complete: Wrap README at 72 columns.
  2758. system/davfs2: Wrap README at 72 columns.
  2759. system/debootstrap: Wrap README at 72 columns.
  2760. system/diskscan: Wrap README at 72 columns.
  2761. system/disksearch: Wrap README at 72 columns.
  2762. system/displaylink: Wrap README at 72 columns.
  2763. system/dlm: Wrap README at 72 columns.
  2764. system/dosbox-dev: Move setup instructions to README.SBo.
  2765. system/dosbox-dev: Wrap README at 72 columns.
  2766. system/dosbox-dev: updated for version 0.75_pre4473
  2767. system/drbd-utils: Wrap README at 72 columns.
  2768. system/driconf: Wrap README at 72 columns.
  2769. system/dstat: Wrap README at 72 columns.
  2770. system/duplicity: Wrap README at 72 columns.
  2771. system/dust: Wrap README at 72 columns.
  2772. system/dvdisaster: Wrap README at 72 columns.
  2773. system/ecryptfs-utils: Wrap README at 72 columns.
  2774. system/efitools: Wrap README at 72 columns.
  2775. system/eibd: Wrap README at 72 columns.
  2776. system/elasticsearch: Wrap README at 72 columns.
  2777. system/eltclsh: Wrap README at 72 columns.
  2778. system/eventlog: Wrap README at 72 columns.
  2779. system/execline: Updated for version 2.8.3.0
  2780. system/exfat-utils: Wrap README at 72 columns.
  2781. system/fence-agents: Wrap README at 72 columns.
  2782. system/findpkg: Wrap README at 72 columns.
  2783. system/fio: Wrap README at 72 columns.
  2784. system/firejail: Wrap README at 72 columns.
  2785. system/firmware-gobi-2000: Wrap README at 72 columns.
  2786. system/foomatic-db-engine: Wrap README at 72 columns.
  2787. system/foomatic-db: Wrap README at 72 columns.
  2788. system/foremost: Wrap README at 72 columns.
  2789. system/freeswitch: Wrap README at 72 columns.
  2790. system/fslint: Wrap README at 72 columns.
  2791. system/fswatch: Wrap README at 72 columns.
  2792. system/fuse-exfat: Wrap README at 72 columns.
  2793. system/gammu: Wrap README at 72 columns.
  2794. system/gconf-editor: Wrap README at 72 columns.
  2795. system/gdmap: Wrap README at 72 columns.
  2796. system/gigolo: Wrap README at 72 columns.
  2797. system/glances: Wrap README at 72 columns.
  2798. system/gnu-unifont: Updated for version 14.0.02.
  2799. system/gnu-unifont: Wrap README at 72 columns.
  2800. system/go-mtree: Add network warning to README.
  2801. system/gpart: Wrap README at 72 columns.
  2802. system/heartbeat: Wrap README at 72 columns.
  2803. system/hstr: Wrap README at 72 columns.
  2804. system/hwinfo: Wrap README at 72 columns.
  2805. system/i8kutils: Wrap README at 72 columns.
  2806. system/icingaweb2: Wrap README at 72 columns.
  2807. system/idle3-tools: Wrap README at 72 columns.
  2808. system/influxdb: Wrap README at 72 columns.
  2809. system/irqbalance: Wrap README at 72 columns.
  2810. system/isight-firmware-tools: Wrap README at 72 columns.
  2811. system/isomaster: Wrap README at 72 columns.
  2812. system/jdiskreport: Wrap README at 72 columns.
  2813. system/kapacitor: Wrap README at 72 columns.
  2814. system/kbfs: Wrap README at 72 columns.
  2815. system/kc: Remove tabs from README.
  2816. system/kc: Wrap README at 72 columns.
  2817. system/ksh-openbsd: Wrap README at 72 columns.
  2818. system/laptop-mode-tools: Wrap README at 72 columns.
  2819. system/letsencrypt: Updated for version 1.25.0.
  2820. system/letsencrypt: Wrap README at 72 columns.
  2821. system/libnatspec: Wrap README at 72 columns.
  2822. system/local-persist: Add network warning to README.
  2823. system/locust: Wrap README at 72 columns.
  2824. system/logkeys: Wrap README at 72 columns.
  2825. system/luckybackup: Wrap README at 72 columns.
  2826. system/lxsplit: Wrap README at 72 columns.
  2827. system/mailfromd: Wrap README at 72 columns.
  2828. system/mailutils: Wrap README at 72 columns.
  2829. system/makepp: Fix broken symlinks.
  2830. system/makeself: Wrap README at 72 columns.
  2831. system/mcrypt: Wrap README at 72 columns.
  2832. system/memtest86+: Wrap README at 72 columns.
  2833. system/memtest86: Wrap README at 72 columns.
  2834. system/microcode_ctl: Wrap README at 72 columns.
  2835. system/monit: Wrap README at 72 columns.
  2836. system/monitoring-plugins: Wrap README at 72 columns.
  2837. system/motion: Wrap README at 72 columns.
  2838. system/mpich: Wrap README at 72 columns.
  2839. system/msr-tools: Wrap README at 72 columns.
  2840. system/multiload-ng: Wrap README at 72 columns.
  2841. system/multitail: Wrap README at 72 columns.
  2842. system/munin-node: Wrap README at 72 columns.
  2843. system/musl: Wrap README at 72 columns.
  2844. system/nagios-plugins: Wrap README at 72 columns.
  2845. system/nagvis: Wrap README at 72 columns.
  2846. system/nano-syntax-highlighting: Wrap README at 72 columns.
  2847. system/nbench: Wrap README at 72 columns.
  2848. system/netatop: Wrap README at 72 columns.
  2849. system/nix: Wrap README at 72 columns.
  2850. system/nmon: Wrap README at 72 columns.
  2851. system/noto-emoji: Wrap README at 72 columns.
  2852. system/nsca-ng: Wrap README at 72 columns.
  2853. system/nss_ldap: Wrap README at 72 columns.
  2854. system/nut: Wrap README at 72 columns.
  2855. system/nvidia-legacy340-kernel: Wrap README at 72 columns.
  2856. system/ohsnap: Wrap README at 72 columns.
  2857. system/opendoas: Handle environment BUILD better.
  2858. system/openrc: Wrap README at 72 columns.
  2859. system/opensc: Wrap README at 72 columns.
  2860. system/ossec-agent: Wrap README at 72 columns.
  2861. system/ossec-local: Wrap README at 72 columns.
  2862. system/ossec-server: Wrap README at 72 columns.
  2863. system/otf-hermit: Wrap README at 72 columns.
  2864. system/pacemaker: Wrap README at 72 columns.
  2865. system/pass-otp: Wrap README at 72 columns.
  2866. system/passwdqc: Wrap README at 72 columns.
  2867. system/password-store: Wrap README at 72 columns.
  2868. system/patool: Wrap README at 72 columns.
  2869. system/pause: Wrap README at 72 columns.
  2870. system/pbzip2: Wrap README at 72 columns.
  2871. system/pcsc-lite: Wrap README at 72 columns.
  2872. system/pcsc-tools: Wrap README at 72 columns.
  2873. system/percona-toolkit: Wrap README at 72 columns.
  2874. system/phpsysinfo: Wrap README at 72 columns.
  2875. system/picocom: Wrap README at 72 columns.
  2876. system/pixma: Remove tabs from README.
  2877. system/pixma: Wrap README at 72 columns.
  2878. system/plan9port: Remove tabs from README.
  2879. system/plan9port: Wrap README at 72 columns.
  2880. system/podman: Wrap README at 72 columns.
  2881. system/porg: Wrap README at 72 columns.
  2882. system/procinfo-ng: Wrap README at 72 columns.
  2883. system/prometheus: Updated to version 2.34.0
  2884. system/pwgen: Wrap README at 72 columns.
  2885. system/pwman: Wrap README at 72 columns.
  2886. system/pwsafe: Wrap README at 72 columns.
  2887. system/qdirstat: Wrap README at 72 columns.
  2888. system/qemu: Wrap README at 72 columns.
  2889. system/qtgzmanager: Wrap README at 72 columns.
  2890. system/ranger: Wrap README at 72 columns.
  2891. system/rar2fs: Wrap README at 72 columns.
  2892. system/rear: Wrap README at 72 columns.
  2893. system/recoverdm: Wrap README at 72 columns.
  2894. system/refind: Wrap README at 72 columns.
  2895. system/rename: Wrap README at 72 columns.
  2896. system/resource-agents: Wrap README at 72 columns.
  2897. system/rhash: Wrap README at 72 columns.
  2898. system/rkhunter: Wrap README at 72 columns.
  2899. system/rng-tools: Wrap README at 72 columns.
  2900. system/runit-services: Wrap README at 72 columns.
  2901. system/runit: Wrap README at 72 columns.
  2902. system/rush: Wrap README at 72 columns.
  2903. system/s3ql: Wrap README at 72 columns.
  2904. system/s6-linux-init: Updated for version 1.0.7.3
  2905. system/s6: Updated for version 2.11.1.0
  2906. system/saleae-logic: Wrap README at 72 columns.
  2907. system/samhain: Wrap README at 72 columns.
  2908. system/sargon: Add network warning to README.
  2909. system/sbbdep: Wrap README at 72 columns.
  2910. system/sbotools: Wrap README at 72 columns.
  2911. system/sboui: Wrap README at 72 columns.
  2912. system/scalpel: Wrap README at 72 columns.
  2913. system/scangearmp2: Wrap README at 72 columns.
  2914. system/scanmem: Wrap README at 72 columns.
  2915. system/schedtool: Wrap README at 72 columns.
  2916. system/sdltrs: Wrap README at 72 columns.
  2917. system/sentimental-skk: Wrap README at 72 columns.
  2918. system/signify: Wrap README at 72 columns.
  2919. system/skim: Wrap README at 72 columns.
  2920. system/skopeo: Wrap README at 72 columns.
  2921. system/slack-osquery: Fix HOMEPAGE.
  2922. system/slack-osquery: Wrap README at 72 columns.
  2923. system/smart: Wrap README at 72 columns.
  2924. system/socklog: Wrap README at 72 columns.
  2925. system/softhsm: Wrap README at 72 columns.
  2926. system/splix: Wrap README at 72 columns.
  2927. system/sqlcipher: Wrap README at 72 columns.
  2928. system/sqldiff: Wrap README at 72 columns.
  2929. system/squidclamav: Move setup instructions to README.SBo.
  2930. system/srm: Wrap README at 72 columns.
  2931. system/sudosh2: Wrap README at 72 columns.
  2932. system/sunflower: Fix VERSION in script.
  2933. system/sysdig: Wrap README at 72 columns.
  2934. system/syslog-ng: Wrap README at 72 columns.
  2935. system/system76-io-dkms: Wrap README at 72 columns.
  2936. system/tagainijisho: Updated for version 1.1.93.
  2937. system/telegraf: Make slack-desc ASCII.
  2938. system/telegraf: Wrap README at 72 columns.
  2939. system/termenu: Wrap README at 72 columns.
  2940. system/terminator: Wrap README at 72 columns.
  2941. system/terminology: Wrap README at 72 columns.
  2942. system/thermald: Wrap README at 72 columns.
  2943. system/thin-provisioning-tools: Wrap README at 72 columns.
  2944. system/thinkfan: Wrap README at 72 columns.
  2945. system/tinycdb: Wrap README at 72 columns.
  2946. system/tm: Move setup instructions to README.SBo.
  2947. system/tm: Wrap README at 72 columns.
  2948. system/trashy: Clean up build.
  2949. system/ts: Wrap README at 72 columns.
  2950. system/ttf-lato: Wrap README at 72 columns.
  2951. system/ttop: Wrap README at 72 columns.
  2952. system/tty2gif: Wrap README at 72 columns.
  2953. system/ttygif: Wrap README at 72 columns.
  2954. system/twin: Wrap README at 72 columns.
  2955. system/unace: Wrap README at 72 columns.
  2956. system/unhide: Wrap README at 72 columns.
  2957. system/unison: Wrap README at 72 columns.
  2958. system/unp: Wrap README at 72 columns.
  2959. system/uptimed: Wrap README at 72 columns.
  2960. system/usbrelay: Wrap README at 72 columns.
  2961. system/usbview: Wrap README at 72 columns.
  2962. system/vagrant: Wrap README at 72 columns.
  2963. system/vhba-module: Wrap README at 72 columns.
  2964. system/virt-manager: Wrap README at 72 columns.
  2965. system/volatility: Wrap README at 72 columns.
  2966. system/wangfonts: Wrap README at 72 columns.
  2967. system/webcore-fonts: Wrap README at 72 columns.
  2968. system/webmin: Wrap README at 72 columns.
  2969. system/wiimms-iso-tools: Wrap README at 72 columns.
  2970. system/wmconfig: Wrap README at 72 columns.
  2971. system/wmfsm: Wrap README at 72 columns.
  2972. system/wqy-microhei-font-ttf: Wrap README at 72 columns.
  2973. system/x86_energy_perf_policy: Wrap README at 72 columns.
  2974. system/xbindkeys: Wrap README at 72 columns.
  2975. system/xen: Wrap README at 72 columns.
  2976. system/xen: x86 is unsupported.
  2977. system/xjobs: Wrap README at 72 columns.
  2978. system/xorgxrdp: Wrap README at 72 columns.
  2979. system/xosd: Wrap README at 72 columns.
  2980. system/xrdp: Wrap README at 72 columns.
  2981. system/xstow: Wrap README at 72 columns.
  2982. system/xtrs: Wrap README at 72 columns.
  2983. system/yaft: Wrap README at 72 columns.
  2984. system/yelp-tools: Wrap README at 72 columns.
  2985. system/yelp: Wrap README at 72 columns.
  2986. system/zfs-auto-snapshot: Wrap README at 72 columns.
  2987. system/zookeeper: Wrap README at 72 columns.
  2988. system/zopfli: Wrap README at 72 columns.
  2989. system/zpaq: Wrap README at 72 columns.
  2990. system/zsh-syntax-highlighting: Wrap README at 72 columns.
  2991. +--------------------------+
  2992. Sat Mar 12 02:29:40 UTC 2022
  2993. academic/cufflinks: Fix info file.
  2994. academic/fiji: Fix VERSION.
  2995. academic/kurso: x86 is unsupported.
  2996. academic/openboard: Fix slack-desc.
  2997. academic/siril: Fix VERSION.
  2998. academic/verilator: Fix slack-desc.
  2999. audio/drumstick: Install doinst.sh.
  3000. audio/nekobee: Fix README.
  3001. audio/non: Fix README.
  3002. audio/wavbreaker: Fix slack-desc.
  3003. desktop/bukubrow: Fix duplicate DOWNLOAD_x86_64 in info file.
  3004. desktop/rofi: Fix DOWNLOAD.
  3005. desktop/zenity: Fix slack-desc.
  3006. development/dotnet-sdk-6.0: Fix slack-desc.
  3007. development/fly: Fix .info file.
  3008. development/jupyter-nbclient: Fix slack-desc.
  3009. development/jupyterlab_pygments: Fix slack-desc.
  3010. development/mdbook: Fix missing closing quote.
  3011. development/minikube: Fix .info file.
  3012. development/octant: Fix .info file.
  3013. development/postman: Fix slack-desc.
  3014. development/scikit-build: Fix .info file.
  3015. development/velero: Fix .info file.
  3016. games/0ad: Fix VERSION.
  3017. games/antimicrox: Fix .info file.
  3018. games/endgame-singularity: Fix slack-desc.
  3019. games/sauerbraten: Fix shebang.
  3020. games/zseal: Fix slack-desc.
  3021. graphics/fbgrab: Fix slack-desc.
  3022. graphics/gthumb: Fix slack-desc.
  3023. graphics/img2pdf: Fix slack-desc.
  3024. graphics/mypaint: Fix .info file.
  3025. graphics/nsxiv: Fix shebang.
  3026. graphics/xmedcon: Fix slack-desc.
  3027. graphics/yed: Fix slack-desc.
  3028. haskell/haskell-commonmark: Fix slack-desc.
  3029. haskell/haskell-path: Fix REQUIRES.
  3030. haskell/haskell-th-compat: Fix slack-desc.
  3031. libraries/aspnetcore-runtime-3.1: Fix slack-desc.
  3032. libraries/cyrus-sasl-xoauth2: Fix slack-desc.
  3033. libraries/fuzzylite: Remove empty doinst.sh.
  3034. libraries/libart-lgpl: Fix slack-desc.
  3035. libraries/libeditline: Fix README.
  3036. libraries/libopenmpt: Fix slack-desc.
  3037. libraries/libsoup3: Fix shebang.
  3038. libraries/nv-codec-headers: Fix slack-desc.
  3039. libraries/paho-mqtt: Fix PRGNAM.
  3040. libraries/paho-mqtt: Fix shebang.
  3041. libraries/paho-mqtt: Fix slack-desc.
  3042. libraries/pytaglib: Fix slack-desc.
  3043. libraries/rasqal: Fix slack-desc.
  3044. libraries/toxext: Fix slack-desc.
  3045. misc/gourmet: Fix slack-desc.
  3046. misc/klibc: Fix .info file.
  3047. multimedia/MuseScore: Remove stray trailing spaces.
  3048. multimedia/droidcam: Fix slack-desc.
  3049. multimedia/gstreamer0: Fix slack-desc.
  3050. multimedia/kaffeine: Fix slack-desc.
  3051. multimedia/spotify: Fix doinst.sh.
  3052. multimedia/srt-to-vtt-cl: Fix .info file.
  3053. network/bombadillo: Fix doinst.sh.
  3054. network/bombadillo: Fix slack-desc.
  3055. network/efax: Fix .info file.
  3056. network/freedownloadmanager: Fix slack-desc.
  3057. network/ngrok: Fix slack-desc.
  3058. network/palemoon: Fix DOWNLOAD.
  3059. network/prettyping: Fix slack-desc.
  3060. network/prettyping: Fix slack-desc.
  3061. network/tixati: Fix md5sum.
  3062. network/wavemon: Fix overriding VERSION.
  3063. network/x11spice: Fix slack-desc.
  3064. network/zeek: Fix slack-desc.
  3065. office/JabRef: Align to template.
  3066. office/kbibtex: Fix slack-desc.
  3067. perl/perl-Test-Memory-Cycle: Fix slack-desc.
  3068. python/Kallithea: Fix README.
  3069. python/async-timeout: Fix shebang.
  3070. python/async_generator: Fix slack-desc.
  3071. python/cheetah3: Fix slack-desc.
  3072. python/click-repl: Fix slack-desc.
  3073. python/kallithea-frontend: Fix download URL.
  3074. python/nest_asyncio: Fix slack-desc.
  3075. python/python-dbus-next: Fix shebang.
  3076. python/python-socks: Fix shebang.
  3077. python/python-uritemplate: Fix slack-desc.
  3078. python/python2-BeautifulSoup4: Fix slack-desc.
  3079. python/python2-Safe: Fix slack-desc.
  3080. python/python2-Safe: Fix slack-desc.
  3081. python/python2-cryptography: Fix shebang.
  3082. python/python2-mimeparse: Fix slack-desc.
  3083. python/python2-pkgconfig: Fix shebang.
  3084. python/python3-MutatorMath: Fix .info file.
  3085. python/python3-MutatorMath: Fix PRGNAM usage.
  3086. python/python3-aiohttp-socks: Fix shebang.
  3087. python/python3-aiohttp: Fix shebang.
  3088. python/python3-autobahn: Fix slack-desc.
  3089. python/python3-automat: Fix slack-desc.
  3090. python/python3-defcon: Fix .info file.
  3091. python/python3-defcon: Fix PRGNAM usage.
  3092. python/python3-editor: Fix shebang.
  3093. python/python3-fontMath: Fix .info file.
  3094. python/python3-fontMath: Fix PRGNAM usage.
  3095. python/python3-fontParts: Fix .info file.
  3096. python/python3-fontParts: Fix PRGNAM usage.
  3097. python/python3-fontPens: Fix .info file.
  3098. python/python3-fs: Fix .info file.
  3099. python/python3-fs: Fix PRGNAM usage.
  3100. python/python3-ipaddr: Fix slack-desc.
  3101. python/python3-multidict: Fix shebang.
  3102. python/python3-psautohint: Fix PRGNAM usage.
  3103. python/python3-pyclipper: Fix .info file.
  3104. python/python3-pyclipper: Fix PRGNAM usage.
  3105. python/python3-pyjwt: Fix slack-desc.
  3106. python/python3-turbogears2: Fix slack-desc.
  3107. python/python3-twisted: Fix slack-desc.
  3108. python/python3-ufoProcessor: Fix .info file.
  3109. python/python3-ufoProcessor: Fix PRGNAM usage.
  3110. python/python3-ufonormalizer: Fix PRGNAM usage.
  3111. python/python3-waitress: Fix shebang.
  3112. python/python3-webob: Fix slack-desc.
  3113. python/python3-zopfli: Fix .info file.
  3114. python/python3-zopfli: Fix PRGNAM usage.
  3115. python/reedsolo: Fix slack-desc.
  3116. system/btop: Fix shebang.
  3117. system/chkrootkit: Fix VERSION.
  3118. system/conky: Add newline at EOF.
  3119. system/libcloudproviders: Fix shebang.
  3120. system/megacli: Fix slack-desc.
  3121. system/nvidia-legacy390-driver: Adjust slack-desc.
  3122. system/pce: Fix VERSION.
  3123. system/prometheus: Fix slack-desc.
  3124. system/restic: Fix slack-desc.
  3125. system/ticpp: Fix slack-desc.
  3126. +--------------------------+
  3127. Fri Mar 11 13:59:59 UTC 2022
  3128. SlackBuilds repository for Slackware 15.0 is now officially available.
  3129. Here it is! The launch of the SlackBuilds.org repository into the 15.0 era.
  3130. With the help of our amazing community we spent the last year testing, fixing,
  3131. and updating the scripts in the repository for the latest
  3132. Slackware release. We are happy to say that we think it has never been
  3133. better (yes, we say this every time) :-)
  3134. We've made some changes to the template script so be sure to check those out
  3135. before starting to submit new scripts.
  3136. We'd like to take this time to welcome the newest member of our admin team,
  3137. Andrew Clemons (aclemons)
  3138. Thanks to all of our users and maintainers for continuing to do what you
  3139. do - your dedication and attention to detail is greatly appreciated.
  3140. Pull requests and merge requests are welcome
  3141. https://github.com/SlackBuildsOrg/slackbuilds/
  3142. https://gitlab.com/groups/SlackBuilds.org
  3143. Enjoy!
  3144. All: Change SlackBuild shebang to /bin/bash
  3145. All: SlackBuilds run in the directory they are in
  3146. All: Support $PRINT_PACKAGE_NAME env var
  3147. Edits to .mailmap to update entries
  3148. Kvantum-Qt5: Added (Optional kwindowsystem Engine)
  3149. Revert 18dea74a4fc97 - go back to openbabel-2.4.1
  3150. Update CDEmu software series
  3151. Updated to latest upstream 18.0.4
  3152. Upgrade hyperscan slackbuild to 5.4.0
  3153. academic/CAFS_divergence: update Copyright year
  3154. academic/CAPS_coevolution: update Copyright years and README
  3155. academic/Data2FCS: Handle url-encoded filenames.
  3156. academic/Data2FCS: Use zulu-openjdk11.
  3157. academic/Data2FCS: update Copyright year and REQUIRES to adoptopenjdk
  3158. academic/DendroPy: update Copyright year
  3159. academic/EMBASSY: Remove .la files.
  3160. academic/EMBASSY: fix x86 arch and add -fcommon for PHYLIPNEW
  3161. academic/EMBOSS: Remove .la files.
  3162. academic/EMBOSS: Use zulu-openjdk11.
  3163. academic/EMBOSS: fix x86 arch and REQUIRES="adoptopenjdk"
  3164. academic/FCSalyzer: Handle url-encoded filenames.
  3165. academic/FCSalyzer: Use zulu-openjdk11.
  3166. academic/FCSalyzer: update for version 0.9.22-alpha, switch to adoptopenjdk
  3167. academic/Gblocks: Fix download.
  3168. academic/Gblocks: update Copyright year + misc cleanups
  3169. academic/GeoGebra: Use zulu-openjdk7.
  3170. academic/Gridcoin-Research: Fixed dep info in README
  3171. academic/Gridcoin-Research: Patched for boost >= 1.73.0.
  3172. academic/Gridcoin-Research: Updated deps README email
  3173. academic/Gridcoin-Research: Updated for version 5.3.2.0
  3174. academic/Gridcoin-Research: Use MAKEFLAGS to pass numjobs.
  3175. academic/HMMER: Fixed dep info
  3176. academic/HMMER: update for version 3.3.2
  3177. academic/IGV: update for version 2.9.4
  3178. academic/ITK: Downgrade and add GCC 10 support.
  3179. academic/ITK: Update the internal patch for gcc 11.x.
  3180. academic/Kst: Fixed dep info in README
  3181. academic/Kst: Updated for version 20220116_2b8e03e.
  3182. academic/Kst: patch to fix the path for H5Cpp.h file
  3183. academic/MetaPhlAn2: update for version 20201202_git4e4416
  3184. academic/Mnemosyne: Fixed dep info
  3185. academic/Mnemosyne: Removed (requires nonexistent PyQtWebEngine dep).
  3186. academic/PhyML: update Copyright years
  3187. academic/QtiPlot: Removed.
  3188. academic/R: Fixed dep info
  3189. academic/R: Updated for version 4.1.2.
  3190. academic/RAxML: update Copyright year
  3191. academic/RepeatMasker: update for version 4.1.2_p1
  3192. academic/STAR: Updated for version 2.7.9a.
  3193. academic/STAR: Updated to version 2.7.10a
  3194. academic/SeqMonk: update Copyright years
  3195. academic/Shark: Updated for version 4.0.1.
  3196. academic/TreeGraph: Use zulu-openjdk11.
  3197. academic/TreeGraph: switch to adoptopenjdk
  3198. academic/ViennaRNA: Fixed dep info
  3199. academic/ViennaRNA: Remove .la files.
  3200. academic/ViennaRNA: Updated for version 2.4.18.
  3201. academic/ViennaRNA: Updated to version 2.5.0
  3202. academic/WEVOTE: update Copyright years
  3203. academic/Xyce: Removed (ftb).
  3204. academic/ZeGrapher: Fixed dep info
  3205. academic/abella: Removed (ftb).
  3206. academic/abntex: Updated for version 20200715_f0a4d3c.
  3207. academic/aline: update README
  3208. academic/aliview: Use zulu-openjdk11.
  3209. academic/aliview: update for version 1.27 + switch to adoptopenjdk
  3210. academic/amplicon: update README
  3211. academic/amplifx: update Copyright years + web-site
  3212. academic/antiprism: Added -fpermissive to the CXXFLAGS.
  3213. academic/antiprism: Remove .la files.
  3214. academic/archaeopteryx: Use zulu-openjdk11.
  3215. academic/archaeopteryx: update copyright year + switch to adoptopenjdk
  3216. academic/aris: Fix for gcc >= 10.x.
  3217. academic/arka: fix build + misc cleanups
  3218. academic/artha: Updated for version 1.0.5.
  3219. academic/avogadro: Removed.
  3220. academic/bcftools: Update to version 1.15
  3221. academic/bcftools: Updated for version 1.13
  3222. academic/bcftools: Updated to version 1.14
  3223. academic/bedGraphToBigWig: update copyright year
  3224. academic/bedtools: update for version 2.30.0
  3225. academic/bibletime: Fixed dep info
  3226. academic/biopython: update for version 1.78 + fix build with python3
  3227. academic/boinc: Fix wxPython/wxGTK3 conflict.
  3228. academic/boinc: Remove .la files.
  3229. academic/boinc: Updated README and email
  3230. academic/boinc: Use MAKEFLAGS to pass numjobs.
  3231. academic/bowtie2-legacy: Patch source.
  3232. academic/bowtie2: Fixed dep info
  3233. academic/bowtie2: Updated for version 2.4.4.
  3234. academic/bowtie2: Updated to version 2.4.5
  3235. academic/bowtie: update for version 1.3.0
  3236. academic/bpp-core: Removed (ftb + no active maintainer).
  3237. academic/bpp-core: update copyright year
  3238. academic/bpp-phyl-omics: Removed (ftb + no active maintainer).
  3239. academic/bpp-phyl-omics: update copyright year
  3240. academic/bpp-phyl: Removed (ftb + no active maintainer).
  3241. academic/bpp-phyl: update copyright year
  3242. academic/bpp-popgen: Removed (ftb + no active maintainer).
  3243. academic/bpp-popgen: update copyright year
  3244. academic/bpp-seq-omics: Removed (ftb + no active maintainer).
  3245. academic/bpp-seq-omics: update copyright year
  3246. academic/bpp-seq: Removed (ftb + no active maintainer).
  3247. academic/bpp-seq: update copyright year
  3248. academic/bpp1.9-* update copyright year
  3249. academic/bpp1.9-numcalc: Removed (ftb + no active maintainer).
  3250. academic/bpp1.9-phyl: Removed (ftb + no active maintainer).
  3251. academic/bpp1.9-seq: Removed (ftb + no active maintainer).
  3252. academic/bpp1.9-utils: Removed (ftb + no active maintainer).
  3253. academic/bppsuite: Removed (ftb + no active maintainer).
  3254. academic/bppsuite: update copyright year
  3255. academic/bwa: fix build -fcommon
  3256. academic/cadabra2: Fixed dep info
  3257. academic/calc: Updated for version 2.12.9.1.
  3258. academic/calc: Updated for version 2.14.0.14.
  3259. academic/calcoo: Updated copyright
  3260. academic/cap3: Note the need to download the tarballs manually.
  3261. academic/cap3: use x84_64 not opteron64 binary
  3262. academic/cblas: Updated for version 3.10.0
  3263. academic/cdo: Updated for version 2.0.0
  3264. academic/cdo: Updated for version 2.0.1
  3265. academic/cdo: Updated for version 2.0.2
  3266. academic/cdo: Updated for version 2.0.3
  3267. academic/cdo: Updated for version 2.0.4.
  3268. academic/celestia: Updated for version 1.6.2.2
  3269. academic/celestia: Updated maintainer email
  3270. academic/chartgeany: Fixed dep info in README
  3271. academic/chemtool: Change ARCH to i586
  3272. academic/chemtool: Fix build failure with gcc10.
  3273. academic/chemtool: Updated copyright
  3274. academic/cistrome-CEAS: update copyright year
  3275. academic/cistrome-MACS: Handle content-disposition download.
  3276. academic/cistrome-MACS: update copyright years
  3277. academic/cistrome-conductGO: update copyright years
  3278. academic/cistrome-extra: fix download link
  3279. academic/cistrome-mdseqpos: Fix REQUIRES for python2.
  3280. academic/cistrome-mdseqpos: Fix dependency.
  3281. academic/cistrome-mdseqpos: Update DEP.
  3282. academic/cistrome-mdseqpos: fis REQUIRES and build with python2
  3283. academic/clark-ugene: update copyright year
  3284. academic/clustalo: Remove .la files.
  3285. academic/clustalo: update copyright years
  3286. academic/clustalw: misc cleanups
  3287. academic/clustalx: Patch for qt5.
  3288. academic/colin: Fixed dep info
  3289. academic/colin: Use qt4.
  3290. academic/convertall: Fixed dep info
  3291. academic/coq: Removed (ftb).
  3292. academic/coq: Updated for version 8.12.2.
  3293. academic/cufflinks: use binaries
  3294. academic/cutadapt: update copyright years
  3295. academic/cvc4: Fix download.
  3296. academic/dakota: Updated for version 6.15.0.
  3297. academic/datamash: update copyright years
  3298. academic/diamond: update copyright years
  3299. academic/drawtiming: Removed (incompatible with the newer gcc).
  3300. academic/ed-v6: Fix github tarball handling.
  3301. academic/edsim51di: Update DOWNLOAD to https.
  3302. academic/edsim51di: Use zulu-openjdk7.
  3303. academic/engauge: Fixed dep info
  3304. academic/engauge: Updated for version 12.1.
  3305. academic/ent: remove template comment.
  3306. academic/equalx: Fix build for qt5.
  3307. academic/evopedia_qt: Use qt4.
  3308. academic/exonerate: update copyright years
  3309. academic/extrema: Remove .la files.
  3310. academic/fet: Fixed dep info
  3311. academic/fiji: update for version 20201104_1356
  3312. academic/finchtv: update webpage link
  3313. academic/fityk: Fix wxPython/wxGTK3 conflict.
  3314. academic/fityk: Fixed dep info in README
  3315. academic/fityk: Remove .la files.
  3316. academic/fityk: Updated for version 20210925_e022356.
  3317. academic/flann: Fix building with the newer cmake, cleanups.
  3318. academic/flashqard: Removed (no qt4-webkit available).
  3319. academic/flexbar: Update copyright year.
  3320. academic/g3data: Update github tarball handling.
  3321. academic/gchemutils: Disable mozilla/gnumeric plugins (broken).
  3322. academic/gchemutils: Fix typo in script.
  3323. academic/gchemutils: Remove .la files.
  3324. academic/gchemutils: Use the C++14 standard.
  3325. academic/gchemutils: update copyright info
  3326. academic/gcompris-qt: Fixed dep info
  3327. academic/gcompris-qt: Switch to https.
  3328. academic/gcompris-qt: Updated for version 2.0.
  3329. academic/gcompris-qt: Updated for version 2.1.
  3330. academic/gcompris-qt: Updated for version 2.3.
  3331. academic/gcompris: Removed.
  3332. academic/gcompris: Switch to https.
  3333. academic/geda-gaf: Added the new dependency guile1.8.
  3334. academic/geda-gaf: Remove .la files.
  3335. academic/geda-gaf: Updated for version 1.10.2.
  3336. academic/gelemental: Patch for the newer gcc.
  3337. academic/gelemental: Remove .la files.
  3338. academic/gelemental: remove unnecessary patch
  3339. academic/geneconv: misc cleanups
  3340. academic/genius: Added the new dependency vte2.
  3341. academic/genius: Updated for version 1.0.27.
  3342. academic/genometools: Disabled some warnings-as-errors.
  3343. academic/genometools: add patch for gcc10 and fix build
  3344. academic/genpak: misc cleanups
  3345. academic/geomview: Remove .la files.
  3346. academic/gerbv: Fix for gcc >= 10.x.
  3347. academic/gerbv: Remove .la files.
  3348. academic/getdp: Updated for version 3.4.0
  3349. academic/ggobi: Remove .la files.
  3350. academic/ggobi: Updated for version 2.1.11.
  3351. academic/ghemical: Fix build.
  3352. academic/glpk: Don't ship *.la files.
  3353. academic/glpk: Remove .la files.
  3354. academic/gmsh: Updated for version 4.9.2
  3355. academic/gp2fasta: Use qt4.
  3356. academic/gpredict: Fix for gcc >= 10.x.
  3357. academic/gpredict: revert to latest stable version 2.2.1
  3358. academic/gretl: Fixed dep info
  3359. academic/gretl: Remove .la files.
  3360. academic/gretl: Updated for version 2022a.
  3361. academic/gspiceui: Depend on wxGTK3 instead of wxPython3
  3362. academic/gtkwave: Updated for version 3.3.111.
  3363. academic/gwyddion: Fixed dep info in README
  3364. academic/gwyddion: Remove .la files.
  3365. academic/harminv: Remove .la files.
  3366. academic/hyphy/: update for version 2.5.31
  3367. academic/iTest: Use qt4.
  3368. academic/io_lib. update for version 1.14.14
  3369. academic/io_lib: Remove .la files.
  3370. academic/isoelectric-point: Use qt4.
  3371. academic/jalview: Use zulu-openjdk11.
  3372. academic/jalview: update for version 2.11.1.4
  3373. academic/jellyfish_k-mer: Remove .la files.
  3374. academic/jellyfish_k-mer: update copyright years
  3375. academic/jpicedt: Align with template
  3376. academic/kile: Removed (added to Slackware).
  3377. academic/klavaro: Updated for version 3.11.
  3378. academic/kraken: update copyright year
  3379. academic/ktikz: Updated for version 0.13.2.
  3380. academic/kurso: Updated for version 5.2.
  3381. academic/labplot2: Fixed dep info
  3382. academic/labplot2: Fixed dep info in README
  3383. academic/labplot2: Updated for version 2.8.2
  3384. academic/ladr: Don't install *.la file
  3385. academic/ladr: Updated maintainer email
  3386. academic/lalnview: update copyright years
  3387. academic/lapacke: Updated for version 3.10.0
  3388. academic/libghemical: Remove .la files.
  3389. academic/libqalculate: Removed (added to Slackware).
  3390. academic/link-grammar: Remove .la files.
  3391. academic/locarna: Remove .la files.
  3392. academic/locarna: Update copyright year.
  3393. academic/loggerpro: Removed (upstream removed linux builds)
  3394. academic/mafft: update for version 7.475
  3395. academic/mathics: Fix REQUIRES for python2.
  3396. academic/mathics: Fix dependency.
  3397. academic/mathics: Fixed dep info
  3398. academic/mathjax2: Added mathjax2
  3399. academic/mathjax2: Fix github tarball handling.
  3400. academic/matio: Remove .la files.
  3401. academic/meep: Remove .la files.
  3402. academic/megax: update for version 10.2.5_1
  3403. academic/meme-db-gomo: update copyright years
  3404. academic/meme-db-motif: update for version 12.21
  3405. academic/meme-db-tgene: update copyright years
  3406. academic/meme-suite: Fixed dep info
  3407. academic/meme-suite: Remove python3 dep (part of slackware).
  3408. academic/meme-suite: update for version 5.3.3
  3409. academic/mendeleydesktop: Fixed dep info
  3410. academic/mkDSSP. update for version 4.0_git6338c83
  3411. academic/mkDSSP: Updated for version 4.0.3, switch to cmake.
  3412. academic/mpb: Remove .la files.
  3413. academic/mrbayes: update copyright years
  3414. academic/muscle: update copyright years
  3415. academic/ncbi-blast+. update for version 2.11.0
  3416. academic/ncbi-blast+: Fixed dep info
  3417. academic/ncbi-blast: update copyright years
  3418. academic/ncbi-rmblastn: updated copyright years
  3419. academic/nco: Remove .la files.
  3420. academic/nco: Updated for version 5.0.2
  3421. academic/nco: Updated for version 5.0.4
  3422. academic/nco: Updated for version 5.0.5
  3423. academic/nco: Updated for version 5.0.6.
  3424. academic/nco: updated for version 5.0.1
  3425. academic/nco: updated to version 5.0.3
  3426. academic/novocraft: files update.
  3427. academic/octave: Remove Qt4 support
  3428. academic/octave: Updated for version 6.3.0
  3429. academic/octave: Updated for version 6.4.0
  3430. academic/openboard: Added.
  3431. academic/openboard: Fix build on current.
  3432. academic/openboard: Removed quazip-qt5 dep. (part of slackware).
  3433. academic/pal2nal: update copyright years
  3434. academic/paml: fix build (-fcommon)
  3435. academic/pamlX: Use qt4.
  3436. academic/papi: Updated for version 6.0.0.1.
  3437. academic/patsy: Fixed dep info
  3438. academic/perlprimer: update copyright years
  3439. academic/pianobooster: Added the dependency ftgl.
  3440. academic/pianobooster: Updated for version 1.0.0.
  3441. academic/plasmidomics: update copyright years
  3442. academic/prank-msa: Removed (ftb + no active maintainer).
  3443. academic/prank-msa: update copyright years
  3444. academic/primer3: Respect our CFLAGS, added -fpermissive.
  3445. academic/primer3: update copyright years
  3446. academic/pspp: Fixed dep info
  3447. academic/pspp: Updated for version 1.4.1.
  3448. academic/pulseview: Fixed dep info
  3449. academic/pulseview: Updated for version 20210103_d023660.
  3450. academic/pulseview: Updated for version 20220225_4efbe9b.
  3451. academic/pyCRAC: Fixed dep info
  3452. academic/pyCRAC: Update MD5SUM.
  3453. academic/pyCRAC: Updated for version 1.5.1.
  3454. academic/pysam: Fixed dep info
  3455. academic/pysam: Updated for version 0.17.0
  3456. academic/pysam: Updated to version 0.18.0
  3457. academic/pysam: Use internal htslib-1.14
  3458. academic/pysam: use packaged htslib 1.13
  3459. academic/qalculate-gtk: Fixed dep information
  3460. academic/qrupdate: Workaround to build with gcc >= 10.x.
  3461. academic/qucs: minor change + update DEPS
  3462. academic/root: Switch to cmake
  3463. academic/root: Updated for version 6.10.02.
  3464. academic/rpy2: Update DEP.
  3465. academic/rpy2: Updated for version 3.4.5.
  3466. academic/sage-bin: Fix quote.
  3467. academic/sage-bin: Updated for version 9.4
  3468. academic/sage: Updated for version 9.2.
  3469. academic/sage: Updated for version 9.3.
  3470. academic/sage: Updated for version 9.4
  3471. academic/samtools-legacy: update copyright years
  3472. academic/samtools: Update to version 1.15
  3473. academic/samtools: Updated for version 1.13
  3474. academic/samtools: Updated to version 1.14
  3475. academic/scidavis: Fixed dep info in README
  3476. academic/scidavis: Update DEPS and infomation in the build script
  3477. academic/scidavis: Update DEPS.
  3478. academic/scidavis: Updated for version 2.4.0.
  3479. academic/scilab: Note that the download url is not wget-friendly.
  3480. academic/scilab: Updated for version 6.1.1
  3481. academic/scipy3: Add missing dependency.
  3482. academic/scipy3: Updated for version 1.5.4.
  3483. academic/scipy: Updated for version 1.2.2.
  3484. academic/seaview: Removed the treerecs dependency (ftb).
  3485. academic/seaview: update copyright years
  3486. academic/seqkit: update for version 0.16.0
  3487. academic/sequence-analysis: Use zulu-openjdk11.
  3488. academic/sequence-analysis: switch to adoptopenjdk
  3489. academic/sigrok-cli: Updated for version 20220222_525f481.
  3490. academic/siril: Fixed dep info
  3491. academic/siril: Updated for version 1.0.0_rc2, switch to meson.
  3492. academic/slatec: Removed (No maintainer).
  3493. academic/smath-studio: Updated email
  3494. academic/snpEff: Use zulu-openjdk11.
  3495. academic/snpEff: switch to adoptopenjdk
  3496. academic/spades: 3.15.2
  3497. academic/speedcrunch: Fixed dep info
  3498. academic/spidey: update copyright years
  3499. academic/squizz: Remove .la files.
  3500. academic/squizz: update copyright years
  3501. academic/staden: update copyright years
  3502. academic/stellarium: Fixed dep info
  3503. academic/stellarium: Updated for version 0.21.0.
  3504. academic/stringtie: update copyright years
  3505. academic/suitesparse: Updated for version 5.10.0
  3506. academic/suitesparse: Updated for version 5.10.1
  3507. academic/sundials: Fixed dep info
  3508. academic/sword: Remove .la files.
  3509. academic/t_coffee: Updated for version 13.45.58.c355d11.
  3510. academic/t_coffee: update copyright years
  3511. academic/tabix-legacy: update copyright years
  3512. academic/tilem: Fix for gcc >= 10.x.
  3513. academic/topdraw: update copyright years
  3514. academic/tophat: Patched for gcc >= 6.x.
  3515. academic/tophat: Use -std=c++14.
  3516. academic/tophat: update copyright years
  3517. academic/treebest-ensembl: fix build (-fcommon)
  3518. academic/treerecs: Removed (ftb + no active maintainer).
  3519. academic/treerecs: update copyright years
  3520. academic/treeviewx: update copyright years
  3521. academic/trfind: update copyright years
  3522. academic/trimmomatic: Use zulu-openjdk11.
  3523. academic/trimmomatic: switch to adoptopenjdk
  3524. academic/tuxmath: Rename blits. Remove dupe lan player.
  3525. academic/tuxmath: Use -std=gnu11 and -fcommon.
  3526. academic/ucsc-blat: update copyright years
  3527. academic/ugene: Fixed dep info
  3528. academic/ugene: Patch to avoid hardcoding headers location.
  3529. academic/ugene: Use -std=c++11.
  3530. academic/ugene: update for version 38.1
  3531. academic/units: updated for version 2.21
  3532. academic/vCAPS_coevolution: Removed (ftb + no active maintainer).
  3533. academic/vCAPS_coevolution: update README
  3534. academic/vcftools: update copyright years
  3535. academic/verilator: Fixed dep info
  3536. academic/verilator: Updated for version 4.218.
  3537. academic/verilog: Updated for version 11.0.
  3538. academic/veusz: Fixed dep info
  3539. academic/veusz: Use sip as provided by current.
  3540. academic/wehi-*: switch to adoptopenjdk
  3541. academic/wehi-cellsymphony: Use zulu-openjdk11.
  3542. academic/wehi-deid: Use zulu-openjdk11.
  3543. academic/wehi-hackit: Use zulu-openjdk11.
  3544. academic/wehi-weasel: Use zulu-openjdk11.
  3545. academic/wmcalc: remove template comment.
  3546. academic/wxMaxima: Fix github tarball handling.
  3547. academic/wxMaxima: Fixed dep info
  3548. academic/wxmacmolplt: Removed (ming dep is gone)
  3549. academic/xflr5: Fixed dep info
  3550. academic/xflr5: Update DOWNLOAD.
  3551. academic/xfoil: Updated the patch to fix build.
  3552. academic/xiphos: Fix build on current.
  3553. academic/xiphos: Fixed dep info
  3554. academic/xoscope: Updated for version 2.3
  3555. academic/z3: Fix github tarball handling.
  3556. academid/ngspice: Fix URLs.
  3557. accessibility/Synkron: Add qt4 dependency.
  3558. accessibility/easystroke: Patched for gcc >= 7.x.
  3559. accessibility/espeak: remove template comment.
  3560. accessibility/espeakup: Remove espeak dep.
  3561. accessibility/flite: Added the new dependency texi2html.
  3562. accessibility/flite: Updated for version 2.2.
  3563. accessibility/fonts-opendyslexic: remove template comment.
  3564. accessibility/jpilot: Fix build with newer gcc.
  3565. accessibility/jpilot: Updated for version 1.8.2.
  3566. accessibility/mag: Fix all-black window bug.
  3567. accessibility/mag: remove template comment.
  3568. accessibility/magnus: Added (screen magnifier for X)
  3569. accessibility/pastebinit: remove template comment.
  3570. accessibility/picospeaker: Added (CLI frontend to svox).
  3571. accessibility/speech-dispatcher: Removed (added to Slackware).
  3572. accessibility/svkbd: Updated for version 0.4.
  3573. accessibility/svox: Add man page for pico2audio.
  3574. accessibility/unclutter-xfixes: Fix README.
  3575. accessibility/unclutter-xfixes: remove template comment.
  3576. accessibility/unclutter: remove template comment.
  3577. accessibility/wgetpaste: remove template comment.
  3578. accessibility/xdotool: Fixed dep info
  3579. accessibility/xdotool: remove template comment.
  3580. accessibility/xsel: Disabled some warnings-as-errors.
  3581. accessibility/xsel: remove template comment.
  3582. accessibility/xzoom: remove template comment.
  3583. accessibility/ydotool: Added (fake key/mouse events, no X).
  3584. audio/*various*: Killed ttaenc mentions
  3585. audio/DPF-Plugins: Updated for version 1.5.
  3586. audio/FAudio: Update DEP.
  3587. audio/HamsiManager: Removed (No maintainer).
  3588. audio/Luppp: Fix github tarball handling.
  3589. audio/Luppp: Fix slack-desc.
  3590. audio/Luppp: Updated for version 0a55b49.
  3591. audio/MP3Diags: Add qt4 dependency.
  3592. audio/Pd-extended: Fixed dep info
  3593. audio/Pd-extended: Removed (ftbfs)
  3594. audio/SAM: Fix build with newer gcc.
  3595. audio/SuperCollider: Fixed dep info
  3596. audio/SuperCollider: Updated for version 3.12.2.
  3597. audio/TiMidity++: Fixed dep info in README
  3598. audio/a2jmidid: Fixed dep info
  3599. audio/a2jmidid: Support alternatives for ninja
  3600. audio/aacgain: Pass -fpermissive and disable narrowing warnings.
  3601. audio/aacgain: Updated maintainer email
  3602. audio/aacplusenc: Added (High-Efficency AAC )
  3603. audio/aacplusenc: Removed (no maintainer)
  3604. audio/acousticbrainz-client: Switch to https.
  3605. audio/acousticbrainz-gui: Fixed dep info
  3606. audio/acousticbrainz-music-extractor: Fix DOWNLOAD URL.
  3607. audio/aeolus: Fix download URL.
  3608. audio/alsa-plugin-ffmpeg: Removed (added to Slackware).
  3609. audio/alsa-plugin-jack: Updated for version 1.2.5.
  3610. audio/alsa-tools: Fix README.
  3611. audio/alsa-tools: Remove .la files.
  3612. audio/alsa-tools: Updated for version 1.2.5.
  3613. audio/alsacap: remove template comment.
  3614. audio/alsaequal: Update DOWNLOAD.
  3615. audio/alsamixergui: Fix for gcc >= 10.x.
  3616. audio/alsamodularsynth: Switch to clang, cleanups.
  3617. audio/alsamodularsynth: Updated for version 2.2.0.
  3618. audio/amSynth: Updated for version 1.12.4.
  3619. audio/amrnb: Don't install *.la files
  3620. audio/amrnb: Updated maintainer email
  3621. audio/amrwb: Don't install *.la files
  3622. audio/amrwb: Updated maintainer email
  3623. audio/apulse: remove template comment.
  3624. audio/ardour: Fix support for PRINT_PACKAGE_NAME
  3625. audio/ardour: Updated for version 6.9.
  3626. audio/ario: Fix 15.0 build.
  3627. audio/aseqview: Add missing patches.
  3628. audio/aseqview: Build with gtk2, not gtk1.
  3629. audio/asunder: Fixed dep info
  3630. audio/audacious-aac: Updated for version 3.8.2.
  3631. audio/audacious-aac: Updated for version 4.1.
  3632. audio/audacious-cue: Removed (added to Slackware).
  3633. audio/audacious-cue: Updated for version 3.8.2.
  3634. audio/audacious-ffmpeg: Removed (added to Slackware).
  3635. audio/audacity: Add a missing include for gcc >= 11.x.
  3636. audio/audacity: Fixed dep info
  3637. audio/audacity: Updated for version 2.4.1.
  3638. audio/audacity: Updated for version 3.0.2.
  3639. audio/audacity: Use the bundled sqlite.
  3640. audio/audenc: Fixed dep info
  3641. audio/audenc: Updated for version 3.3.5.
  3642. audio/audioconvert: Fixed dep info in README
  3643. audio/audioconvert: Patched.
  3644. audio/bristol: Fix build, add launcher.
  3645. audio/butt: Added -fpermissive to the CXXFLAGS.
  3646. audio/butt: Fixed dep info
  3647. audio/butt: Updated for version 0.1.32.
  3648. audio/calf-ladspa: Clean up README and slack-desc.
  3649. audio/calf-ladspa: Move HTML docs to subdir.
  3650. audio/calf-ladspa: Uncomment patch for gcc >= 7.x.
  3651. audio/calf: Fixed dep info
  3652. audio/calf: Move HTML docs to subdir.
  3653. audio/caps: Fix permission on shared lib.
  3654. audio/carla: Fixed README re optional deps
  3655. audio/carla: Fixed dep info
  3656. audio/carla: Updated for version 2.4.1.
  3657. audio/celt051: Remove .la files.
  3658. audio/celt: Don't install *.la files
  3659. audio/celt: Updated maintainer email
  3660. audio/chuck: Align with template
  3661. audio/chuck: Updated for version 1.4.1.0.
  3662. audio/clam: Fixed dep info
  3663. audio/clam: Removed (nobody cared).
  3664. audio/clam_annotator: Removed (nobody cared).
  3665. audio/clam_voice2midi: Removed (nobody cared).
  3666. audio/clementine: Fixed dep info
  3667. audio/clementine: Fixed dep info in README
  3668. audio/clementine: New maintainer.
  3669. audio/clementine: REQUIRES protobuf => protobuf3.
  3670. audio/clementine: Updated for version 1.4.0rc1_420_g596cd9b0a.
  3671. audio/clyrics: Removed (no maintainer)
  3672. audio/cmt: Fix MD5SUM.
  3673. audio/cmt: Updated for version 1.18.
  3674. audio/cmus: Fixed dep info in README
  3675. audio/connie: New-style icons.
  3676. audio/creox4: Removed (requires KDE4, use guitarix instead).
  3677. audio/cuberok: Removed (unmaintained, qt4).
  3678. audio/darkice: Added -fpermissive to the CXXFLAGS.
  3679. audio/darkice: Fixed dep info in README
  3680. audio/darkice: Use the C++14 standard.
  3681. audio/dcaenc: Remove .la files.
  3682. audio/dcaenc: Updated for version 3.
  3683. audio/deadbeef: Fixed dep info
  3684. audio/deadbeef: Updated for version 1.8.7.
  3685. audio/decibel-audio-player: Removed (no maintainer)
  3686. audio/distrho-mini-series: Updated for version 1.1.
  3687. audio/distrho-ports: Updated for version 20180416.
  3688. audio/drumkv1: Fixed dep info
  3689. audio/drumkv1: Updated for version 0.9.23.
  3690. audio/drumstick: Fixed dep info
  3691. audio/drumstick: Updated for version 2.4.1.
  3692. audio/dssi-vst: i486 => i586.
  3693. audio/easytag: Removed (added to Slackware).
  3694. audio/eawpats: Remove template comment.
  3695. audio/ecasound: Add python3 support.
  3696. audio/ecasound: Fix README.
  3697. audio/ecasound: Fixed dep info in README
  3698. audio/exhale: Updated for version 1.1.9.
  3699. audio/fIcy: Remove template comment.
  3700. audio/faac: Remove .la files.
  3701. audio/faad2: Remove .la files.
  3702. audio/fantasia: New-style icons.
  3703. audio/fantasia: Use zulu-openjdk8.
  3704. audio/faust: Fix download URL.
  3705. audio/ff8dls: Remove template comment.
  3706. audio/flacon: Fixed dep info
  3707. audio/flacon: Fixed dep info in README
  3708. audio/flake: Removed (no maintainer)
  3709. audio/fluid-soundfont: Fixed dep info
  3710. audio/fluid-soundfont: Remove template comment.
  3711. audio/fluidsynth-dssi: Fixed dep info
  3712. audio/fluidsynth-dssi: Update soundfont path.
  3713. audio/fluidsynth: Removed (added to Slackware).
  3714. audio/fmit: Updated for version 1.2.14.
  3715. audio/fmmidi: Remove template comment.
  3716. audio/foo-yc20: Fix README.
  3717. audio/foo-yc20: New-style icons.
  3718. audio/freac: Removed (no maintainer)
  3719. audio/fst: i486 => i586.
  3720. audio/ghostess: Updated for version 20210101.
  3721. audio/gimmix: Fix build.
  3722. audio/gmpc-plugins: Delete refs to AWN
  3723. audio/gmpc-plugins: Fix download URL.
  3724. audio/gmpc-plugins: Fixed dep info
  3725. audio/gmpc-plugins: Kill awn notes in README
  3726. audio/gmpc: Fixed dep info
  3727. audio/gmpc: i486 => i586.
  3728. audio/gmusicbrowser: Killed gst0-plugins-bad note
  3729. audio/gnomad2: Fix 15.0 build.
  3730. audio/google-musicmanager: Updated for version 1.0.467.4929.
  3731. audio/grip2: Removed (replaced with grip).
  3732. audio/grip2: remove template comment.
  3733. audio/grip: Added (GTK+ CD player/ripper; replaces grip2)
  3734. audio/gtklick: New-style icons.
  3735. audio/guitarix: New-style icons, fix perms.
  3736. audio/guitarix: Remove Slackware 14.2 dep note for the README.
  3737. audio/guitarix: Updated for version 0.42.1.
  3738. audio/gvolwheel: Fix 15.0 build.
  3739. audio/helm: Patch for gcc >= 9.
  3740. audio/herrie: Fix download URL.
  3741. audio/horgand: New-style icons.
  3742. audio/hydrogen: Updated for version 1.0.2.
  3743. audio/hydrogen: Updated for version 1.1.1.
  3744. audio/icecast: Fix typo.
  3745. audio/icecast: Fixed dep info in README
  3746. audio/ices-cc: Fixed dep info in README
  3747. audio/id3tool: Remove template comment.
  3748. audio/id3v2: Fixed dep info
  3749. audio/invada_studio_plugins_lv2: Remove template comment.
  3750. audio/jaaa: New-style icons, expand man page.
  3751. audio/jack-keyboard: New-style icons.
  3752. audio/jack-rack: New-style icon.
  3753. audio/jack-tools: Updated for version 20210917_ab297f4.
  3754. audio/jack1: Remove .la files.
  3755. audio/jack1: remove template comment.
  3756. audio/jack: Fixed dep info
  3757. audio/jack: Fixed dep info in README
  3758. audio/jack: Updated for version 1.9.19.
  3759. audio/jack_delay: Remove template comment.
  3760. audio/jackmeter: Remove template comment.
  3761. audio/jalv: Updated for version 1.6.6.
  3762. audio/jamin: Fix 15.0 build.
  3763. audio/jamulus: Switch to Qt5.
  3764. audio/jamulus: Updated for version 3.8.1.
  3765. audio/japa: New-style icons, expand man page.
  3766. audio/jkmeter: New-style icons.
  3767. audio/jnoise: Add man page.
  3768. audio/jokosher: Fixed dep info
  3769. audio/jokosher: Removed (literally a joke app; nobody uses it).
  3770. audio/kid3: Removed (added to Slackware).
  3771. audio/klick: Fix -current build.
  3772. audio/kradio: Fixed dep info
  3773. audio/kradio: Patch in extra #include.
  3774. audio/kradio: Updated for version 5.0.0_beta1.
  3775. audio/ladspa_sdk: Fix MD5SUM.
  3776. audio/ladspa_sdk: Updated for version 1.17
  3777. audio/ladspa_sdk: Updated maintainer email
  3778. audio/lash: Avoid a linking issue and use libtirpc.
  3779. audio/lash: Remove %README% from REQUIRES.
  3780. audio/lash: Remove .la files.
  3781. audio/lash: Update README optional dep.
  3782. audio/lash: Update for new texi2html.
  3783. audio/lastfm: Fixed dep info
  3784. audio/lastfm: Removed (because libraries/lastfm was removed).
  3785. audio/libbs2b: Remove .la files.
  3786. audio/libebur128: Fixed dep info
  3787. audio/libebur128: Updated for version 1.2.6.
  3788. audio/lingot: Updated for version 1.1.1.
  3789. audio/linuxsampler: Updated for version 2.2.0.
  3790. audio/listener: Fix for latest portaudio.
  3791. audio/listener: Fix homepage/download URLs.
  3792. audio/llcon: Removed (abandoned, ftbfs).
  3793. audio/lmms: Fixup README re optional deps
  3794. audio/lmms: Updated for version 1.2.2, use qt5.
  3795. audio/lsmi: Remove template comment.
  3796. audio/lv2-mda-metapiano: Fix homepage and download.
  3797. audio/lv2dynparam1: Remove .la file.
  3798. audio/lv2file: Remove template comment.
  3799. audio/lyvi: Fixed dep info
  3800. audio/lyvi: Removed (no maintainer)
  3801. audio/lyvi: Update DEP.
  3802. audio/mac: Man page, other enhancements.
  3803. audio/mac: Patch for gcc >= 6.x.
  3804. audio/match-vamp-plugin: Remove template comment.
  3805. audio/mda-lv2: Update README, URLs.
  3806. audio/mhwaveedit: Build enhancements.
  3807. audio/mididings: Fix configure.
  3808. audio/mididings: Updated for version 20151117_bbec99a.
  3809. audio/midillo: Remove .la files.
  3810. audio/milkytracker: Fix github tarball handling.
  3811. audio/millennium-plugins: Remove template comment.
  3812. audio/miniAudicle: Use c++14.
  3813. audio/mixxx: Fix for a python3-based scons.
  3814. audio/mixxx: Fixed dep info
  3815. audio/mixxx: Updated for version 2.3.0, switch to cmake.
  3816. audio/mixxx: Updated for version 2.3.1.
  3817. audio/mixxx: Updated for version 2.3.2.
  3818. audio/mkcue: Updated for debian pkg version 7.
  3819. audio/mktoc: Remove template comment.
  3820. audio/mktoc: Update DEP.
  3821. audio/mp3blaster: Force linking against libncursesw.
  3822. audio/mp3check: Fix build.
  3823. audio/mp3gain: Update man page.
  3824. audio/mp3splt-gtk: New-style icons.
  3825. audio/mp3splt-gtk: Pass -fcommon for gcc >= 10.x.
  3826. audio/mp3splt: Remove template comment.
  3827. audio/mp3val: New-style icons.
  3828. audio/mp4tools: Removed (no maintainer)
  3829. audio/mpd: Add missing required dep.
  3830. audio/mpd: Fix build when Sphinx not installed.
  3831. audio/mpd: Fixed dep info
  3832. audio/mpd: Fixed dep info in README
  3833. audio/mpd: Fixed ninja build.
  3834. audio/mpd: Support alternatives for ninja
  3835. audio/mpd: Updated for version 0.23.5.
  3836. audio/multimidicast: Updated for version 1.4.
  3837. audio/muse: Fixed dep info
  3838. audio/muse: Fixed dep info in README
  3839. audio/museeks: Removed (no maintainer)
  3840. audio/musepack-tools: Patch for gcc >= 10.x.
  3841. audio/nas: Patch for llvm 11.
  3842. audio/nas: Updated for version 1.9.5.
  3843. audio/ncmpcpp: Patch for gcc >= 10.x.
  3844. audio/nekobee: Fix build.
  3845. audio/nekobee: Fix github tarball handling.
  3846. audio/nekobee: Updated for version 56187f6
  3847. audio/ngjackspa: Disable Qt4 UI by default.
  3848. audio/nnls-chroma: Remove template comment.
  3849. audio/non: Avoid an fs loop error with find.
  3850. audio/non: Fix tarball handling.
  3851. audio/non: Updated for version 1.3.0.
  3852. audio/ntk: Avoid an fs loop error with find.
  3853. audio/ntk: Fix tarball handling.
  3854. audio/ntk: Updated for version 1.3.1001
  3855. audio/ocp: Fix build.
  3856. audio/ocp: Fix for gcc >= 10.x.
  3857. audio/ogmtools: patch for gcc >= 11.x.
  3858. audio/opencore-amr: Remove .la files.
  3859. audio/opus-tools: Removed (added to Slackware).
  3860. audio/opus: Removed (added to Slackware).
  3861. audio/opusfile: Removed (added to Slackware).
  3862. audio/oss: Removed (won't build on recent kernels).
  3863. audio/oss: Updated for version 4.2.2019, patched for glibc >= 2.23.
  3864. audio/padthv1: Fixed dep info
  3865. audio/padthv1: Updated for version 0.9.23.
  3866. audio/paprefs: Fix VERSION
  3867. audio/paprefs: Updated for version 1.2
  3868. audio/patchage: Updated for version 1.0.4.
  3869. audio/phat: Remove .la files.
  3870. audio/pianobar: Updated for version 2020.11.28, fixed dep info.
  3871. audio/pithos: Align with new template.
  3872. audio/pithos: Fix ninja usage
  3873. audio/pithos: Fixed dep info
  3874. audio/pithos: Updated for version 1.4.0.
  3875. audio/pithos: Updated for version 1.5.1
  3876. audio/playmp3list: Removed.
  3877. audio/podget: Updated for version 0.8.10.
  3878. audio/portmidi: Drop symlinking libporttime to libportmidi.
  3879. audio/portmidi: Fix dependents looking for libporttime.
  3880. audio/portmidi: Updated for version 2.0.2.
  3881. audio/puddletag: Fix copying docs.
  3882. audio/puddletag: Fix copying docs.
  3883. audio/puddletag: Fixed dep info
  3884. audio/puddletag: Killed gst0-plugins-bad note + fix dep info
  3885. audio/puddletag: Updated for version 2.1.1.
  3886. audio/pyalsaaudio: Fixed dep info
  3887. audio/qastools: Fixed dep info
  3888. audio/qastools: Updated for version 0.23.0.
  3889. audio/qjackctl: Fixed dep info
  3890. audio/qjackctl: Updated for version 0.9.5.
  3891. audio/qm-vamp-plugins: Remove template comment.
  3892. audio/qmidiarp: Added qt4 dependency.
  3893. audio/qmidinet: Add qt4 dependency.
  3894. audio/qmidiroute: Fix -current build.
  3895. audio/qmmp-plugin-pack-qt5: Updated for version 1.5.1.
  3896. audio/qmmp-qt5: Fixed dep info
  3897. audio/qmmp-qt5: Updated for version 1.5.1.
  3898. audio/qmmp: Fixed dep info in README
  3899. audio/qmmp: Updated for version 0.12.14.
  3900. audio/qsynth: Fixed dep info
  3901. audio/qtractor: Fix build.
  3902. audio/qtractor: Updated for version 0.9.23, added a license.
  3903. audio/quodlibet: Remove gst-plugins-bad dependency.
  3904. audio/quodlibet: Update DEP.
  3905. audio/quodlibet: Updated for version 4.4.0.
  3906. audio/rakarrack: New-style icons.
  3907. audio/rebmp: Fix build with newer glibc.
  3908. audio/rebmp: Remove .la files.
  3909. audio/retrovol: Updated for version 0.14.2.
  3910. audio/rev-plugins: Remove template comment.
  3911. audio/rezound: Fixed dep info
  3912. audio/rhythmbox: Fixed dep info
  3913. audio/rhythmbox: Remove .la files.
  3914. audio/rhythmbox: Updated for version 3.4.3.
  3915. audio/rosegarden: Bumped version to 20.12 to fix compile errors.
  3916. audio/rosegarden: Changed ARCH to i586
  3917. audio/rosegarden: Updated for version 21.06.1
  3918. audio/rosegarden: Updated maintainer email
  3919. audio/rubberband: Updated for version 2.0.0.
  3920. audio/rubyripper: Align with template
  3921. audio/rubyripper: Fixed dep info in README
  3922. audio/rubyripper: Updated for version 0.8.3.rc3.
  3923. audio/rumor: Patched for gcc >= 7.x.
  3924. audio/samplv1: Fixed dep info
  3925. audio/samplv1: Updated for version 0.9.23.
  3926. audio/sayonara-player: Fixed dep info
  3927. audio/sayonara-player: Remove gst-plugins-bad dependency.
  3928. audio/sbagen: Fix build.
  3929. audio/sfc: Icons, .desktop.
  3930. audio/sfc: Install doinst.sh.
  3931. audio/shell-fm: Removed (not working anymore).
  3932. audio/sidplayfp: Updated for version 1.4.3.
  3933. audio/snd: Fix download URL.
  3934. audio/sonata: Fix REQUIRES for python2. Add -fcommon.
  3935. audio/sonic-visualiser: Fixed dep info
  3936. audio/sonic-visualiser: Updated for version 4.4.
  3937. audio/sooperlooper: Updated for version 1.7.8.
  3938. audio/soundconverter: Fixed dep info
  3939. audio/soundconverter: Killed gst0-plugins-bad note
  3940. audio/soundkonverter: Updated for version 3.0.1.
  3941. audio/spandsp: Fix DOWNLOAD in the spandsp.info file.
  3942. audio/spandsp: Fix support for PRINT_PACKAGE_NAME
  3943. audio/spandsp: Removed (roger-router is removed).
  3944. audio/speex: Removed (added to Slackware).
  3945. audio/stretchplayer: Added (audio player with pitch/speed control).
  3946. audio/sunvox: Updated MD5SUM.
  3947. audio/swami: Fixed dep info in README
  3948. audio/swh-plugins-lv2: Update README, slack-desc.
  3949. audio/synthv1: Fixed dep info
  3950. audio/synthv1: Updated for version 0.9.23.
  3951. audio/tap_plugins: Updated for version 1.0.1.
  3952. audio/tapiir: New-style icons, capabilities.
  3953. audio/taunmb: Fix permission.
  3954. audio/tauonmb: Deploy .desktop from source.
  3955. audio/tauonmb: Fix for version 6.8.0.
  3956. audio/tauonmb: Fix locale.
  3957. audio/tauonmb: Fixed dep info
  3958. audio/tauonmb: Revert Presence back.
  3959. audio/tauonmb: Updated for version 6.6.0.
  3960. audio/tauonmb: Updated for version 6.8.3.
  3961. audio/tauonmb: Updated for version 7.0.1.
  3962. audio/tauonmb: Updated for version 7.1.1.
  3963. audio/tauonmb: Updated for version 7.1.2.
  3964. audio/tauonmb: Updated for version 7.1.3.
  3965. audio/tauonmb: Updated for version v6.8.0.
  3966. audio/transcribe: Updated for version 8.80.
  3967. audio/tta++: Added (TTA lossless audio codec written in C++)
  3968. audio/tta: Fix i486 -> i586.
  3969. audio/tta: Update DOWNLOAD. Remove static lib.
  3970. audio/ttaenc: Removed (no maintainer)
  3971. audio/twolame: Remove .la files.
  3972. audio/unsf: Updated for version 1.1+git20201107.
  3973. audio/vamp-plugin-sdk: Add -j1 to make command.
  3974. audio/vcf_plugins: Reformat slack-desc.
  3975. audio/vmpk: Updated for version 0.8.5
  3976. audio/vocoder-ladspa: Remove template comment.
  3977. audio/vocoder: New-style icons.
  3978. audio/volumeicon: Fix download URL.
  3979. audio/volwheel: Removed (no maintainer)
  3980. audio/vorbisgain: Updated maintainer email
  3981. audio/waon: Fix icons.
  3982. audio/wavbreaker: Updated for version 0.13.
  3983. audio/whipper: Fixed dep info
  3984. audio/whipper: Removed dependency.
  3985. audio/whipper: Updated for version 0.10.0.
  3986. audio/whysynth: Updated for version 20170701.
  3987. audio/wineasio: Updated for version 1.0.0.
  3988. audio/wmusic-xmms: Remove template comment.
  3989. audio/wmusic: Fix build for updated playerctl.
  3990. audio/xcfa: Fix for gcc 10.
  3991. audio/xcfa: Kill aacplusenc mention in README
  3992. audio/xfca: Fixed dep info
  3993. audio/xforge: Cleanup SlackBuild.
  3994. audio/xmms-jack: Remove template comment.
  3995. audio/xmms-ladspa: Remove template comment.
  3996. audio/xmms-mp4: Update URLS, README.
  3997. audio/xmms-wma: Fix build with newer gcc.
  3998. audio/xmms2: Updated for version 20170827_dedc33d.
  3999. audio/xsynth-dssi: Remove .la file.
  4000. audio/xwax: Fixed dep info in README
  4001. audio/yoshimi: Add missing jack dependency.
  4002. audio/zita-ajbridge: Remove template comment.
  4003. audio/zita-dpl1: New-style icons.
  4004. audio/zita-rev1: New-style icons, man page.
  4005. audio/zynaddsubfx: Updated for version 3.0.6.
  4006. audio/zynjacku: Fix lockups when guitarix installed.
  4007. audio/zynjacku: Remove template comment.
  4008. audio:eyeD3: Updated for version 0.9.6, switch to python3.
  4009. business/AssociationSubscribersManager: Removed (abandoned, ftbfs).
  4010. business/ledger: Fix conflict with utfcpp.
  4011. business/ledger: Fix for boost >= 1.76.0.
  4012. business/ledger: Note utfcpp incompatibility in current.
  4013. business/lemonpos: Removed (requires KDE4).
  4014. business/maltego: Fix download URL.
  4015. business/openerp-client: Removed.
  4016. business/openerp-server: Removed.
  4017. business/skrooge: Updated for version 2.27.0.
  4018. business/stansoft: Fix download URLs.
  4019. business/stansoft: Updated for version 7.26.
  4020. business/trytond: Fix build if Sphinx installed.
  4021. business/trytond: Fix dependency.
  4022. business/trytond: changed REQUIRES to python2-psycopg2
  4023. desktop/2bwm: Kill rxvt-unicode dep mention
  4024. desktop/9menu: Remove template comment.
  4025. desktop/Alphacube-GTK: Switch to a no-spaces tarball name.
  4026. desktop/LX-Colors-Revival: Fix permission.
  4027. desktop/LX-Colors-Revival: Removed (no maintainer)
  4028. desktop/LX-Colors-Revival: added back + new maintainer
  4029. desktop/LX-Colors-themes: Removed (no maintainer)
  4030. desktop/Window_Manager_Scripts: Removed (No maintainer).
  4031. desktop/XDecorations: Patch for the newer gcc.
  4032. desktop/Zafiro-icons: Removed (no maintainer)
  4033. desktop/adapta-gtk-theme: Fixed dep info
  4034. desktop/adwaita-qt: Updated for version 1.3.1.
  4035. desktop/afterstep: Updated for version 20201113_f6da4b7.
  4036. desktop/alltray: Update DEP.
  4037. desktop/anki: Fixed dep info in README
  4038. desktop/anki: Update DEP.
  4039. desktop/anki: Update DEP.
  4040. desktop/arandr: Fixed dep info
  4041. desktop/arandr: Updated for version 0.1.10, switch to python3.
  4042. desktop/arc-openbox: Removed (no maintainer)
  4043. desktop/arc-theme-Red: Removed (no maintainer)
  4044. desktop/arc-theme: Fixed dep info
  4045. desktop/arc-theme: Updated for version 20201121_81130a2.
  4046. desktop/avant-window-navigator: Removed (no maintainer)
  4047. desktop/awemenugen: Removed (no maintainer)
  4048. desktop/awesome-extra: Removed (no maintainer)
  4049. desktop/awesome: Fix for gcc >= 10.x.
  4050. desktop/awesome: Fixed dep info
  4051. desktop/awesome: Fixed dep info.
  4052. desktop/awn-extras: Fixed dep info
  4053. desktop/awn-extras: Removed (no active maintainer, no reverse deps)
  4054. desktop/awoken-icon-theme: Removed (no maintainer)
  4055. desktop/bashish: Removed (no maintainer)
  4056. desktop/bashrun2: Use systemwide dir for bash completion files
  4057. desktop/boje-themes: Removed (no maintainer)
  4058. desktop/breath-gtk-theme: Fix tarball handling.
  4059. desktop/breath-gtk-theme: Fixed dep info
  4060. desktop/breath-gtk-theme: Quote the cmake variables.
  4061. desktop/bspwm: Pass -fcommon for gcc >= 10.x.
  4062. desktop/buku: Update DEP.
  4063. desktop/buku: Updated for version 4.6.
  4064. desktop/buku: Use systemwide dir for bash completion files
  4065. desktop/bukubrow: Updated for version 5.3.0.
  4066. desktop/bukubrow: Updated for version 5.4.0.
  4067. desktop/bumblebee-status: Updated for version 2.1.5.
  4068. desktop/bunsen-themes: Removed (no maintainer)
  4069. desktop/buttonmaker: Fix for gcc >= 10.x.
  4070. desktop/buttonmaker: New maintainer.
  4071. desktop/caffeine-ng: Update DEP.
  4072. desktop/cairo-compmgr: Removed.
  4073. desktop/cairo-dock-plugins: Fixed dep info
  4074. desktop/cairo-dock-plugins: Updated for version 20201022_a0d3415.
  4075. desktop/cairo-dock: Updated for version 20201103_0836f5d.
  4076. desktop/catfish: Updated for version 4.16.0.
  4077. desktop/catfish: Updated for version 4.16.3.
  4078. desktop/cathexis-suite-themes: Removed (no maintainer)
  4079. desktop/ccsm: Updated for version 0.8.18.
  4080. desktop/cellwriter: Fix for gcc >= 10.x.
  4081. desktop/ceti-2-theme: Removed (incompatible with the newer gtk+3).
  4082. desktop/clearlooks-classic-themes: small cleanup
  4083. desktop/clipmenu: Remove template comment.
  4084. desktop/compton-conf: Removed (no maintainer)
  4085. desktop/conky-manager: Fixed dep info
  4086. desktop/copyq: Add the dependency qt4.
  4087. desktop/crystal: Removed (no more kde4).
  4088. desktop/ctwm: Remove template comment.
  4089. desktop/cwm: Remove template comment.
  4090. desktop/cwp: Removed (this is KDE4-only software)
  4091. desktop/cycler: Update DEP.
  4092. desktop/dark-aurora-gtk-theme: Removed (no maintainer)
  4093. desktop/dbgl-legacy: Use zulu-openjdk8.
  4094. desktop/dbgl: Fix DOWNLOAD.
  4095. desktop/dbgl: Use zulu-openjdk8.
  4096. desktop/devilspie: Disabled some warnings-as-errors.
  4097. desktop/dmenu: Updated for version 4.9.
  4098. desktop/docfetcher: Updated for version 1.1.25.
  4099. desktop/docfetcher: Use zulu-openjdk7.
  4100. desktop/draco: Remove NUMJOBS.
  4101. desktop/dunst: Updated for version 1.6.1
  4102. desktop/dunst: Updated for version 1.7.3
  4103. desktop/dwm: Remove a patch not necessary on current.
  4104. desktop/dzen2: Fix DOWNLOAD.
  4105. desktop/e16.theme.pack: New maintainer.
  4106. desktop/echinus: Add missing xinitrc.
  4107. desktop/ee: Fix for gcc >= 10.x.
  4108. desktop/elementary-xfce: Removed (added to Slackware).
  4109. desktop/emerald-themes: Updated for version 0.8.18.
  4110. desktop/emerald: Fixed dep info
  4111. desktop/emerald: Updated for version 0.8.18.
  4112. desktop/enlightenment: Align with new template.
  4113. desktop/enlightenment: Fixed ninja build.
  4114. desktop/enlightenment: Updated for version 0.25.1.
  4115. desktop/faba-icon-theme: Align with new template.
  4116. desktop/faba-icon-theme: Fixed dep info
  4117. desktop/faba-icon-theme: Fixed ninja build.
  4118. desktop/faba-mono-icons: Removed (no maintainer)
  4119. desktop/faenza-cupertino: Removed (no maintainer)
  4120. desktop/faenza-icon-theme: Removed (no maintainer)
  4121. desktop/faenza-xfce: Removed (No maintainer).
  4122. desktop/faience-icon-theme: Removed (no maintainer)
  4123. desktop/fbpanel: Updated for version 7.2, cleanups.
  4124. desktop/fehlstart: Added the dependency keybinder.
  4125. desktop/ffmpegthumbnailer: Removed (added to Slackware).
  4126. desktop/find-cursor: Updated for version 1.7.
  4127. desktop/find-cursor: Updated for version 1.8.
  4128. desktop/flatpak: Don't ship *.la files.
  4129. desktop/flatpak: Fixed dep info
  4130. desktop/flatpak: Remove useless docs.
  4131. desktop/flatpak: Update DEP.
  4132. desktop/flatpak: Updated for version 1.10.2.
  4133. desktop/flatpak: Updated for version 1.8.3.
  4134. desktop/florence: Remove .la files.
  4135. desktop/fusion-icon: Build with python3 instead of python2
  4136. desktop/fvwm-crystal: Updated for version 3.7.5.
  4137. desktop/fvwm3: Fixed dep info.
  4138. desktop/fvwm3: Updated for version 1.0.4.
  4139. desktop/glabels: Fix for gcc >= 10.x.
  4140. desktop/glabels: Fixed dep info
  4141. desktop/glabels: Remove .la files.
  4142. desktop/gnome-menus: Remove .la files.
  4143. desktop/gnome-menus: Updated to version 3.36.0
  4144. desktop/gntp-send: Remove .la files.
  4145. desktop/grits: Remove .la files.
  4146. desktop/grun: Cleanup SlackBuild.
  4147. desktop/grun: Fix DOWNLOAD.
  4148. desktop/gsimplecal: Updated for version 2.2.
  4149. desktop/gtk-chtheme: Removed (unmaintained).
  4150. desktop/gtk-kde4: Removed (no more kde4).
  4151. desktop/gtk-theme-Albatross: Removed (no maintainer)
  4152. desktop/gtk-theme-Blackbird: Removed (no maintainer)
  4153. desktop/gtk-theme-Greybird: Removed (added to Slackware).
  4154. desktop/gtk-theme-Orion: Removed (no maintainer)
  4155. desktop/gtk1-industrial-engine: misc cleanups
  4156. desktop/gtk1-theme-switch: misc cleanups
  4157. desktop/homerun: Removed (no more kde4).
  4158. desktop/hushboard: Kill py3cairo dep
  4159. desktop/hushboard: Update DEP.
  4160. desktop/i3-gaps: Fixed dep info
  4161. desktop/i3-gaps: Support alternatives for ninja
  4162. desktop/i3-gaps: Updated for version 4.19.1.
  4163. desktop/i3: Fixed dep info
  4164. desktop/i3: Removed patch for 14.2.
  4165. desktop/i3blocks: Force a single job during "make install".
  4166. desktop/i3lock: Fixed dep info
  4167. desktop/i3lock: Updated for version 2.13.
  4168. desktop/i3minator: Update DEP.
  4169. desktop/i3situation: Update DEP.
  4170. desktop/icewm: Updated for version 2.3.2.
  4171. desktop/idesk: Remove template comment.
  4172. desktop/j4-dmenu-desktop: Remove template comment.
  4173. desktop/kbdd: Fix github tarball handling.
  4174. desktop/kcometen4: Removed (no more kde4).
  4175. desktop/kde-gtk-config: Removed (added to Slackware).
  4176. desktop/kfaenza-icon-theme: Updated for version 0.8.9_19
  4177. desktop/kolorcontrol: Fixed dep info
  4178. desktop/kover: Removed (no more kde4).
  4179. desktop/kupfer: Fixed dep info
  4180. desktop/kwalletcli: Support for KDE 5.
  4181. desktop/libqtxdg: Updated for version 3.6.0.
  4182. desktop/light: Compress man pages.
  4183. desktop/light: Updated for version 1.2.2, fix for gcc >= 10.x.
  4184. desktop/lumina: Fixed dep info
  4185. desktop/lumina: Patch for gcc >= 6.x.
  4186. desktop/lxpanel: Add the new dependency keybinder.
  4187. desktop/macopix: Updated for version 3.4.0, fix for gcc >= 10.x.
  4188. desktop/materia-theme: Updated for version 20200916.
  4189. desktop/mcwm: Remove template comment.
  4190. desktop/menulibre: Patch to avoid conflict with gtk+4.
  4191. desktop/menumaker: Updated for version 0.99.12.
  4192. desktop/mh5000: New maintainer.
  4193. desktop/mhsetroot: New maintainer.
  4194. desktop/mimi: Fix support for PRINT_PACKAGE_NAME
  4195. desktop/moka-icon-theme: Align with new template.
  4196. desktop/moka-icon-theme: Fixed ninja build.
  4197. desktop/moka-minimal: Removed (no maintainer)
  4198. desktop/moka-themes: Removed (no maintainer)
  4199. desktop/mousepad: Removed (added to Slackware).
  4200. desktop/murrine-themes: update copyright years
  4201. desktop/neofetch: Removed (added to Slackware).
  4202. desktop/neutral: Removed (no maintainer)
  4203. desktop/nitrokey-app: Updated for version 1.4.2.
  4204. desktop/noice: Updated for version 0.8.
  4205. desktop/obconf: Fixups for Slackware 15.0
  4206. desktop/obsession: Fixed dep info
  4207. desktop/obshutdown: Fix 15.0 build.
  4208. desktop/oomox: Fixed dep info
  4209. desktop/openbox-simple-theme: Removed (no maintainer)
  4210. desktop/openbox: Remove .la files.
  4211. desktop/openbox: Various fixups for Slackware 15.0
  4212. desktop/oranchelo-icon-theme: Removed (no maintainer)
  4213. desktop/orchis-gtk-theme: Removed (no maintainer)
  4214. desktop/paper-gtk-theme: Removed (no maintainer)
  4215. desktop/paper-icon-theme: Align with new template.
  4216. desktop/paper-icon-theme: Fixed dep info
  4217. desktop/paper-icon-theme: Fixed ninja build.
  4218. desktop/papirus-icon-theme: Updated for version 20201031.
  4219. desktop/peksystray: Remove template comment, add WTFPL.
  4220. desktop/pekwm: Updated for version 0.1.18.
  4221. desktop/pekwm: Updated for version 0.2.1
  4222. desktop/picom: Added (fork of compton).
  4223. desktop/picom: Align with new template.
  4224. desktop/picom: Fixed ninja build.
  4225. desktop/picom: Update parameter name.
  4226. desktop/picom: Updated for version 9.
  4227. desktop/pidgin-window_merge: Fix github tarball handling.
  4228. desktop/plank: Fixed dep info
  4229. desktop/plank: Remove .la files.
  4230. desktop/plasma-adjustable-clock: Removed (no more kde4).
  4231. desktop/plasma-applet-daisy: Removed (no more kde4).
  4232. desktop/plasma-eyasdp: Removed (no more kde4).
  4233. desktop/plasma-geek-clock: Removed (no more kde4).
  4234. desktop/plasma-runner-browsefirefoxbookmarks: Removed.
  4235. desktop/plasma-widget-menubar: Removed (abandonded ftbfs).
  4236. desktop/plasmaxplanet: Removed (KDE 4 only).
  4237. desktop/polar-cursor-themes: misc cleanups
  4238. desktop/polybar: Fix for the newer xcb-proto.
  4239. desktop/polybar: Updated for version 3.5.7.
  4240. desktop/protozoa-cursor-themes: misc cleanups
  4241. desktop/pspshrink: Removed (no maintainer)
  4242. desktop/ptbatterysystemtray: Removed (abandoned upstream).
  4243. desktop/ptwit: Fix dependency.
  4244. desktop/py3status: Updated for version 3.40.
  4245. desktop/python3-cycler: Update DEP.
  4246. desktop/q4wine: Updated for version 1.3.12.
  4247. desktop/qt-recordmydesktop: Removed (needs PyQt4).
  4248. desktop/qtcurve: Removed (no more kde4).
  4249. desktop/qtile: Update README - Add python-dbus-next as optional dependency
  4250. desktop/qtile: Update for 0.20.0 (+new maintainer)
  4251. desktop/quadkonsole4: Removed (no more kde4).
  4252. desktop/quickaccess: Removed (no more kde4).
  4253. desktop/razorqt: Add the dependency qt4.
  4254. desktop/recoll: Updated for version 1.31.0.
  4255. desktop/recorditnow: Removed (no more kde4).
  4256. desktop/recorditnow: Update DEP.
  4257. desktop/rodent: Updated for version 5.3.16.3.
  4258. desktop/rofi-calc: Fixed dep info
  4259. desktop/rofi-pass: Fix github tarball handling.
  4260. desktop/rofi: Updated for version 1.7.3
  4261. desktop/rsl: Remove .la files.
  4262. desktop/rsl: Use libtrpc.
  4263. desktop/rss-glx: Add a patch for gcc >= 11.x.
  4264. desktop/rss-glx: Added patches from debian and gentoo.
  4265. desktop/rss-glx: Fixed dep info in README
  4266. desktop/rss-glx: Remove .la files.
  4267. desktop/rss-glx: Remove .la files.
  4268. desktop/rss-glx: Remove reference to non-existing directory.
  4269. desktop/rss-guard: Updated for version 3.5.9.
  4270. desktop/salmon: Remove template comment.
  4271. desktop/sawfish-extras: Removed (no maintainer)
  4272. desktop/sawfish-pager: Removed (no maintainer)
  4273. desktop/sawfish-session-dialog: Removed (no maintainer)
  4274. desktop/sawfish: Removed (no maintainer)
  4275. desktop/screenkey: Fix MD5SUM.
  4276. desktop/screenkey: Updated dependencies.
  4277. desktop/screensaver-icon: Removed (source does not exist).
  4278. desktop/seafile-client: Added (Seafile Desktop applet)
  4279. desktop/seafile-client: Updated for version 8.0.4.
  4280. desktop/seafile-gui: Removed (replaced by seafile-client).
  4281. desktop/searchmonkey: Patch for gcc >= 6.x.
  4282. desktop/searchmonkey: Removed.
  4283. desktop/sgsearch: Updated for version 1.2.3.
  4284. desktop/simon: Removed (no more kde4).
  4285. desktop/simplenote: Removed (abandoned by SBo maintainer)
  4286. desktop/siva-flat-themes: Removed (no maintainer)
  4287. desktop/skulpture: Add the dependency qt4.
  4288. desktop/smaragd: Fixed download link
  4289. desktop/smaragd: Updated for version 0.1.1.
  4290. desktop/ssr: Removed (added to Slackware).
  4291. desktop/stoken: Remove .la files.
  4292. desktop/stoken: Remove .la files.
  4293. desktop/subtle: Fix 15.0 build.
  4294. desktop/sun: Update DEP.
  4295. desktop/sun: Updated for version 1.3.2.
  4296. desktop/sun: Updated for version 1.3.3.
  4297. desktop/sun: Updated for version 1.3.5.
  4298. desktop/suru-plus-icon-theme: Added (icon theme).
  4299. desktop/sxhkd: Updated for version 0.6.2.
  4300. desktop/thunar-archive-plugin: Updated for version 0.4.0.
  4301. desktop/thunar-archive-plugin: Various fixups for Slackware 15.0
  4302. desktop/thunar-dropbox: Removed (unmaintained upstream).
  4303. desktop/thunar-media-tags-plugin: Fixed homepage in info file
  4304. desktop/thunar-media-tags-plugin: Updated for version 0.3.0.
  4305. desktop/thunar-sendto-clamtk: update copyright year
  4306. desktop/thunar-thumbnailers: Fixed dep info
  4307. desktop/thunar-thumbnailers: Removed (abandoned upstream)
  4308. desktop/thunar-vcs-plugin: Misc fixups for Slackware 15.0
  4309. desktop/thunar-vcs-plugin: Updated for version 0.2.0.
  4310. desktop/trayer-srg: Grammar/spelling fixes.
  4311. desktop/tty-clock: Fix i486 -> i586.
  4312. desktop/tty-clock: Updated for version 2.3.
  4313. desktop/unsaver: Remove template comment.
  4314. desktop/unsaver: Updated for version 0.4.1.
  4315. desktop/uwm: Removed (no maintainer)
  4316. desktop/vala-panel-appmenu: Fixed dep info
  4317. desktop/vala-panel-appmenu: Updated for version 0.7.6.
  4318. desktop/vala-panel-appmenu: Updated for version 20191009_060f7ac.
  4319. desktop/variety: Change BeautifulSoup4 DEP to python2-BeautifulSoup4
  4320. desktop/variety: Fixed dep info
  4321. desktop/vbox-runner: Update download URL
  4322. desktop/vbox-runner: Updated for version git_20200604_e2306271
  4323. desktop/vbox-runner: Updated maintainer email
  4324. desktop/vertex-maia-themes: Removed.
  4325. desktop/vertex-theme: Removed (not suitable for current).
  4326. desktop/vivacious-colors-gtk-icon-theme: Removed (does not work well with xfce 4.16)
  4327. desktop/vivacious-colors-gtk-theme: Removed (does not work well with xfce 4.16)
  4328. desktop/vwm: Fix build. Again.
  4329. desktop/vwm: Move to system/vwm.
  4330. desktop/vwm: Relicense.
  4331. desktop/vwm: Update DEP.
  4332. desktop/vwm: Updated for version 3.3.2+20200112_207d888.
  4333. desktop/wally: Add the dependency qt4.
  4334. desktop/wbar: Disabled some warnings-as-errors.
  4335. desktop/wbar: Removed (no maintainer)
  4336. desktop/weston: Align with new template.
  4337. desktop/weston: Cleanups to docs and SlackBuild.
  4338. desktop/weston: Updated for version 9.0.0, use PAM.
  4339. desktop/wmCalClock: Pass -fcommon for gcc >= 10.x.
  4340. desktop/wmMoonClock: Pass -fcommon for gcc >= 10.x.
  4341. desktop/wmSun: Pass -fcommon for gcc >= 10.x.
  4342. desktop/wmSunMoon: Pass -fcommon with the CFLAGS for gcc >= 10.x.
  4343. desktop/wmakerconf: Use (amended) freebsd patches, fix linking.
  4344. desktop/wmbackground: Fix for gcc >= 10.x.
  4345. desktop/wmbiff: Fix for gcc >= 10.x.
  4346. desktop/wmblob: Remove template comment.
  4347. desktop/wmbutton: New maintainer, add icon.
  4348. desktop/wmcliphist: Remove template comment.
  4349. desktop/wmclock: Remove template comment.
  4350. desktop/wmclockmon: Fix for gcc >= 10.x.
  4351. desktop/wmcpuwatch: Fix download URL.
  4352. desktop/wmcube: Fix for gcc >= 10.x.
  4353. desktop/wmdate: Fix download URL.
  4354. desktop/wmdl: Remove template comment.
  4355. desktop/wmfire: Drop broken inlining (tnx gentoo!).
  4356. desktop/wmfire: Update DEP.
  4357. desktop/wmii: Fix for gcc >= 10.x.
  4358. desktop/wminfo: Pass -fcommon for gcc >= 10.x.
  4359. desktop/wmix: Updated for version 3.5, new maintainer.
  4360. desktop/wmmixer: Use the C++14 standard, cleanups.
  4361. desktop/wmmon: Remove template comment.
  4362. desktop/wmphoto+: Fix for gcc >= 10.x.
  4363. desktop/wmpower: Patch for gcc >= 10.x (tnx gentoo!).
  4364. desktop/wmslideshow: Fix for gcc >= 10.x.
  4365. desktop/wmsm.app: Pass -fcommon for gcc >= 10.x.
  4366. desktop/wmsupermon: Remove template comment.
  4367. desktop/wmsysmon: Fix for gcc >= 10.x.
  4368. desktop/wmsystemtray: Remove template comment.
  4369. desktop/wmtime: Remove template comment.
  4370. desktop/wmtimer: Add man page.
  4371. desktop/wmtop: Pass -fcommon for gcc >= 10.x.
  4372. desktop/wmudmount: Remove template comment.
  4373. desktop/wmweather+: Remove template comment.
  4374. desktop/wmweather: Pass -fcommon for gcc >= 10.x.
  4375. desktop/wmwebcam: Remove template comment.
  4376. desktop/wmxss: Fix -current build.
  4377. desktop/workrave: Added (work break alerts).
  4378. desktop/workrave: Remove .la files.
  4379. desktop/workrave: Update DEP.
  4380. desktop/workrave: Updated for version 1.10.49.
  4381. desktop/x2x: Remove template comment.
  4382. desktop/xdg-desktop-portal-gtk: Fix dependency info.
  4383. desktop/xdg-desktop-portal-gtk: Remove .la files.
  4384. desktop/xdg-desktop-portal: Fixed dep info
  4385. desktop/xdg-desktop-portal: Fixed dep info
  4386. desktop/xdg-desktop-portal: Removed (added to Slackware).
  4387. desktop/xdg-desktop-portal: Updated for version 1.8.0.
  4388. desktop/xdgmenumaker: Fix for new txt2tags.
  4389. desktop/xdgmenumaker: Remove template comment.
  4390. desktop/xdgurl: Removed (no maintainer)
  4391. desktop/xed: Fixed dep info
  4392. desktop/xed: Removed (no active maintainer)
  4393. desktop/xfce4-battery-plugin: Disable debug in build
  4394. desktop/xfce4-battery-plugin: Updated for version 1.1.3.
  4395. desktop/xfce4-battery-plugin: Updated for version 1.1.4.
  4396. desktop/xfce4-cpufreq-plugin: Updated for version 1.2.2.
  4397. desktop/xfce4-cpufreq-plugin: Updated for version 1.2.7.
  4398. desktop/xfce4-cpugraph-plugin: Updated for version 1.1.0.
  4399. desktop/xfce4-cpugraph-plugin: Updated for version 1.2.4.
  4400. desktop/xfce4-cpugraph-plugin: Updated for version 1.2.6.
  4401. desktop/xfce4-datetime-plugin: Updated for version 0.8.1.
  4402. desktop/xfce4-dict: Fixed homepage
  4403. desktop/xfce4-dict: Updated for version 0.8.4.
  4404. desktop/xfce4-diskperf-plugin: Fixed homepage in info file
  4405. desktop/xfce4-diskperf-plugin: Updated for version 2.6.3.
  4406. desktop/xfce4-embed-plugin: Removed (no more libxfce4ui-1).
  4407. desktop/xfce4-eyes-plugin: Updated for version 4.5.1.
  4408. desktop/xfce4-fsguard-plugin: Updated for version 1.1.1.
  4409. desktop/xfce4-fsguard-plugin: Updated for version 1.1.2.
  4410. desktop/xfce4-genmon-plugin: Fixed homepage
  4411. desktop/xfce4-genmon-plugin: Updated for version 4.1.0.
  4412. desktop/xfce4-kbdleds-plugin: Removed (unmaintained upstream).
  4413. desktop/xfce4-mailwatch-plugin: Updated for version 1.3.0.
  4414. desktop/xfce4-mount-plugin: Updated for version 1.1.4.
  4415. desktop/xfce4-mount-plugin: Updated for version 1.1.5.
  4416. desktop/xfce4-mpc-plugin: Fixed homepage
  4417. desktop/xfce4-mpc-plugin: Updated for version 0.5.2.
  4418. desktop/xfce4-netload-plugin: Updated for version 1.3.2.
  4419. desktop/xfce4-netload-plugin: Updated for version 1.4.0.
  4420. desktop/xfce4-notes-plugin: Updated for version 1.9.0.
  4421. desktop/xfce4-notes-plugin: Updated for version 20201231_b38052b.
  4422. desktop/xfce4-places-plugin: Misc fixups for Slackware 15.0
  4423. desktop/xfce4-places-plugin: Updated for version 1.8.1.
  4424. desktop/xfce4-quicklauncher-plugin: Removed (needs libxfcegui4).
  4425. desktop/xfce4-sensors-plugin: Updated for version 1.3.95.
  4426. desktop/xfce4-sensors-plugin: Updated for version 1.4.1.
  4427. desktop/xfce4-sensors-plugin: Updated for version 1.4.3.
  4428. desktop/xfce4-sensors-plugin: Updated for version 20201116_a487acb.
  4429. desktop/xfce4-smartbookmark-plugin: Updated for version 0.5.1.
  4430. desktop/xfce4-smartbookmark-plugin: Updated for version 0.5.2.
  4431. desktop/xfce4-timer-plugin: Updated for version 1.7.1.
  4432. desktop/xfce4-verve-plugin: Updated for version 2.0.0.
  4433. desktop/xfce4-verve-plugin: Updated for version 2.0.1.
  4434. desktop/xfce4-volumed-pulse: Add the new dependency keybinder.
  4435. desktop/xfce4-wavelan-plugin: Updated for version 0.6.2.
  4436. desktop/xfce4-whiskermenu-plugin: Removed (added to Slackware).
  4437. desktop/xfce4-windowck-plugin: Updated for version 0.4.10.
  4438. desktop/xfce4-xkb-plugin: Updated for version 0.8.1, chgd homepage.
  4439. desktop/xfce4-xkb-plugin: Updated for version 0.8.2.
  4440. desktop/xfce4-xmms-plugin: Removed (needs libxfcegui4).
  4441. desktop/xipper: Removed (no maintainer)
  4442. desktop/xmms-skins-almond: update copyright year
  4443. desktop/xmms-skins-ater: misc cleanups
  4444. desktop/xmms-status-plugin: misc cleanups
  4445. desktop/xmobar: Updated for version 0.41.
  4446. desktop/xmonad: Updated for version 0.17.0.
  4447. desktop/xonclock: Add homepage.
  4448. desktop/xonclock: Cleanup SlackBuild.
  4449. desktop/xpenguins-xtrathemes: Fix build for new xpenguins.
  4450. desktop/xpenguins: Updated for version 3.2.1, new maintainer.
  4451. desktop/xpra: Added (remote X11 desktop proxy)
  4452. desktop/xss-lock: Fixed dep info in README
  4453. desktop/xtrkcad: Updated for version 5.2.2GA.
  4454. desktop/xtrlock: Remove template comment.
  4455. desktop/xvkbd: Updated for version 4.1.
  4456. desktop/yad: Fixed dep info
  4457. desktop/yad: Updated for version 7.3.
  4458. desktop/yawp: Removed (no more kde4).
  4459. desktop/zenity: Updated for version 3.41.0, changed maintainer.
  4460. developer/jupyterlab_pygments: Added jupyterlab-pygments (+new maintainer)
  4461. development/Arduino: Fix github tarball handling.
  4462. development/Arduino: Updated for version 1.8.19.
  4463. development/CImg: Updated email
  4464. development/CImg: Updated for version 2.9.8
  4465. development/CImg: Updated for version 3.0.1
  4466. development/CVSTools: Mirror download URL.
  4467. development/Catch: Updated for version 2.13.8.
  4468. development/ChezScheme: Disabled some warnings-as-errors.
  4469. development/Coin: Fix github filename.
  4470. development/Coin: Patch to fix FreeCAD segfault at startup.
  4471. development/Coin: Updated for version 4.0.0
  4472. development/FreeBASIC: Updated for version 1.09.0.
  4473. development/J-Link: Fixed dep info (but not in README)
  4474. development/J-Link: Updated for version 7.00a.
  4475. development/JSONObject: Removed (incompatible with the newer boost).
  4476. development/KKEdit: Removed.
  4477. development/MySQL-python: Add a fix for mariadb >= 10.2.8.
  4478. development/MySQL-python: Updated for version 1.2.5.
  4479. development/Naked: Removed redundant doinst.sh.
  4480. development/Naked: Update DEP.
  4481. development/Naked: Update DEP.
  4482. development/OpenHantek6022: Fixed dep info
  4483. development/ParadisEO: Updated for version 3.0.0_beta.
  4484. development/Pivy: Updated for version 0.6.6
  4485. development/QtPy: Removed (abandoned).
  4486. development/QtPy: Updated dependencies.
  4487. development/SDL2_gfx: Removed (added to Slackware).
  4488. development/SQLAlchemy: Updated for version 1.4.31.
  4489. development/ShellCheck-bin: Updated for version 0.7.2.
  4490. development/ShellCheck-bin: Updated for version 0.8.0.
  4491. development/SoQt: Updated for version 1.6.0
  4492. development/Sphinx: Update DEP.
  4493. development/Sphinx: Updated dependencies.
  4494. development/Sphinx: Updated for version 4.0.2.
  4495. development/Sphinx: Updated for version 4.2.0.
  4496. development/acpica: Pass -fcommon for gcc >= 10.x.
  4497. development/acpica: Updated for version 20210331.
  4498. development/acpica: Updated for version 20210730
  4499. development/acpica: Updated for version 20210930
  4500. development/acpica: Updated for version 20211217
  4501. development/acpica: Updated maintainer email
  4502. development/adms: Remove .la files.
  4503. development/adoptopenjdk-openj9: Removed (EOL).
  4504. development/adoptopenjdk: Removed (EOL).
  4505. development/afl: Removed (replaced with aflplusplus).
  4506. development/aflplusplus: Added (fuzzer; replaces afl).
  4507. development/aflplusplus: Remove old template CWD.
  4508. development/ahven: Removed (needs gprbuild).
  4509. development/alembic: Fix REQUIRES for python2.
  4510. development/alembic: Fix dependency.
  4511. development/alembic: Update DEP.
  4512. development/alloy: Removed (no maintainer)
  4513. development/android-studio: Updated for version 29.0.5.
  4514. development/android-tools: Align with new template.
  4515. development/android-tools: Fix typo.
  4516. development/android-tools: Fixed dep info
  4517. development/android-tools: Updated for version 31.0.2.
  4518. development/android-tools: Updated for version 31.0.3.
  4519. development/android-tools: Updated for version 31.0.3p1
  4520. development/anjuta: Disabled some warnings-as-errors.
  4521. development/anjuta: Fixed dep info
  4522. development/anjuta: Removed.
  4523. development/apache-jmeter: Updated for version 5.4.
  4524. development/apache-jmeter: Updated for version 5.4.3.
  4525. development/apache-log4cxx: Fix download URL.
  4526. development/apache-log4cxx: Remove .la files.
  4527. development/apache-maven: Updated for versio 3.8.2.
  4528. development/apache-maven: Updated for version 3.8.3.
  4529. development/apache-maven: Updated for version 3.8.4.
  4530. development/arduino: Updated for version 1.8.19.
  4531. development/as31: Remove template comment.
  4532. development/asl: Updated for version 142_bld207.
  4533. development/astyle: Remove template comment.
  4534. development/atasm: Remove template comment.
  4535. development/atom: Removed (no maintainer).
  4536. development/autoconf-archive: Removed (added to Slackware).
  4537. development/autogen: Add the missing patch for guile2.2.
  4538. development/autogen: Disable some warnings-as-errors.
  4539. development/autogen: Remove .la files.
  4540. development/avarice: Updated for version 2.14.
  4541. development/avarice: Use the C++14 standard.
  4542. development/avr-binutils: Updated for version 2.35.1.
  4543. development/avr-gcc: Fix compiler FLAGS on 32bit ARCHs.
  4544. development/avr-gcc: Fix download URL.
  4545. development/avr-gcc: Updated for version 10.2.0.
  4546. development/avr-gdb: Updated for version 10.1.
  4547. development/avrdude: Remove .la files.
  4548. development/bacon: Removed (no maintainer).
  4549. development/bacon: Updated DOWNLOAD.
  4550. development/bas55: Fix for gcc >= 10.x.
  4551. development/bas55: Fixed for libedit in Slackware
  4552. development/bas: Updated for version 2.5.
  4553. development/bashdb: Updated for version 5.0_1.1.2.
  4554. development/bashdb: Updated for version 5.1_20210713.
  4555. development/bats-core: Renamed from bats and updated for 1.4.1
  4556. development/bats-core: Updated for version 1.5.0
  4557. development/bats: Updated maintainer email
  4558. development/beav: Remove template comment.
  4559. development/bed: Fix 15.0 build.
  4560. development/bed: Remove template comment.
  4561. development/blassic: Fix 15.0 build.
  4562. development/blassic: Remove template comment.
  4563. development/bless: Fix build with the newer mono.
  4564. development/bless: Remove template comment.
  4565. development/bless: Various fixes.
  4566. development/bluefish: Corrected spelling
  4567. development/bluefish: Updated email
  4568. development/bmake: Updated for version 20210803.
  4569. development/bpython: Update DEP.
  4570. development/brackets: Removed (End of Support by Adobe).
  4571. development/brotli: Removed (added to Slackware).
  4572. development/bsdiff: Remove template comment.
  4573. development/bviplus: Remove template comment.
  4574. development/byacc: Fix DOWNLOAD.
  4575. development/byacc: Switch to https.
  4576. development/byacc: Updated for version 20210520.
  4577. development/byacc: Updated for version 20210619.
  4578. development/byacc: Updated for version 20210802.
  4579. development/byacc: Updated for version 20210808.
  4580. development/byacc: Updated for version 20211224.
  4581. development/byacc: Updated for version 20220109.
  4582. development/byacc: Updated for version 20220114.
  4583. development/byacc: Updated for version 20220128.
  4584. development/bzr: Fixed dep info
  4585. development/bzr: Updated copyright and homepage
  4586. development/camlp4: Updated for version 4.08_1.
  4587. development/camlp4: Updated for version 4.13.
  4588. development/camlp5: Updated for version 8.0.
  4589. development/casperjs: Updated for version 1.1.4_2
  4590. development/casperjs: Updated maintainer email
  4591. development/cc65: Remove template comment.
  4592. development/check: Removed (added to Slackware).
  4593. development/chibi-scheme: Updated for version 0.10.
  4594. development/chicken: Updated for version 5.3.0.
  4595. development/cim: Remove .la files.
  4596. development/cloc: Updated for version 1.92.
  4597. development/cmake-202x: Removed (already in Slackware).
  4598. development/coccinelle: Updated for version 1.0.8.
  4599. development/coccinelle: Updated for version 1.1.1.
  4600. development/codeblocks: Patch for gcc >= 11.x.
  4601. development/codeblocks: Remove .la files.
  4602. development/codespell: Updated for version 2.1.0.
  4603. development/colm: Remove .la files.
  4604. development/conan: Fix REQUIRES for python2.
  4605. development/conan: Update DEP.
  4606. development/conan: Update DEP.
  4607. development/couchdb: Removed (ftb, no maintainer).
  4608. development/cppcheck: Updated for version 2.6
  4609. development/cproto: Updated for version 4.7s.
  4610. development/cproto: Updated for version 4.7t.
  4611. development/cudatoolkit: Do not write to $CWD.
  4612. development/cudatoolkit: Use zulu-openjdk8.
  4613. development/cunit: Remove .la files.
  4614. development/curlpp: Removed (No maintainer).
  4615. development/cxxtools: Remove .la files.
  4616. development/cxxtools: Updated for version 3.0.
  4617. development/d-tools: Updated for version 2.097.2
  4618. development/d-tools: Updated for version 2.098.1
  4619. development/darcs: Updated for version 2.16.5.
  4620. development/devhelp: Updated for version 40.2.
  4621. development/device-tree-compiler: Add a fix for gcc >= 10.x.
  4622. development/device-tree-compiler: Respect DESTDIR in python install
  4623. development/device-tree-compiler: Updated for version 1.5.0.
  4624. development/device-tree-compiler: Updated for version 1.6.0.
  4625. development/device-tree-compiler: Updated for version 1.6.1.
  4626. development/dhex: Fix typos and grammar.
  4627. development/dis6502: Fix -current build.
  4628. development/dis: Add man page.
  4629. development/dkms: Updated for version 2.8.5
  4630. development/dkms: Updated for version 2.8.6
  4631. development/dkms: Updated for version 3.0.3
  4632. development/dmd: Updated for version 2.097.2
  4633. development/dmd: Updated for version 2.098.1
  4634. development/docutils: Removed (added to Slackware).
  4635. development/dotnet-runtime: Changed package name to dotnet-runtime-3.1 and updated for version 3.1.21.
  4636. development/dotnet-sdk-6.0: Added (.NET SDK).
  4637. development/dotnet-sdk: Changed package name to dotnet-sdk-3.1 and updated fo version 3.1.415.
  4638. development/dpkg: Remove .la files.
  4639. development/dpkg: Updated for version 1.21.1.
  4640. development/dune: Added (ocaml build system - formerly jbuilder).
  4641. development/dune: Updated for version 3.0.0.
  4642. development/ecl: Updated for version 21.2.1.
  4643. development/eclim: Removed (no longer builds).
  4644. development/eclipse-cpp: Updated for version 4.19.
  4645. development/eclipse-cpp: Updated for version 4.20.
  4646. development/eclipse-cpp: Updated for version 4.21.
  4647. development/eclipse-cpp: Updated for version 4.22.
  4648. development/eclipse-java: Updated for version 4.19.
  4649. development/eclipse-java: Updated for version 4.20.
  4650. development/eclipse-java: Updated for version 4.21.
  4651. development/eclipse-java: Updated for version 4.22.
  4652. development/eclipse-jee: Fix MD5SUM.
  4653. development/eclipse-jee: Updated for version 4.19.
  4654. development/eclipse-jee: Updated for version 4.20.
  4655. development/eclipse-jee: Updated for version 4.21.
  4656. development/eclipse-jee: Updated for version 4.22.
  4657. development/eclipse-php: Updated for version 4.19.
  4658. development/eclipse-php: Updated for version 4.20.
  4659. development/eclipse-php: Updated for version 4.21.
  4660. development/eclipse-php: Updated for version 4.22.
  4661. development/edb-debugger: Updated for version 1.3.0.
  4662. development/editorconfig-core-c: Removed (added to Slackware).
  4663. development/elixir: Updated for version 1.11.3.
  4664. development/energia: Fix downloads.
  4665. development/enki: Update DEP.
  4666. development/enki: Updated for version 20220128_3f86457.
  4667. development/envytools: Update README.
  4668. development/envytools: Updated for version 20210309_39d90be.
  4669. development/eric: Removed (needs PyQt4).
  4670. development/erlang-otp: Updated DOWNLOAD.
  4671. development/erlang-otp: Updated for version 23.2.
  4672. development/evemu: Remove .la files.
  4673. development/ex-vi: Remove template comment.
  4674. development/extra-cmake-modules: Removed (added to Slackware).
  4675. development/facile: Removed
  4676. development/fasm: Added (fast assembler for x86/x86_64).
  4677. development/flow: Removed (ftb).
  4678. development/fossil: Updated for version 2.17.
  4679. development/fpc-source: Removed (no dependees).
  4680. development/fpc-source: Updated for version 3.2.2.
  4681. development/fpc: Updated for version 3.2.2, new maintainer.
  4682. development/freetds: Remove .la files.
  4683. development/freetds: Updated for version 1.00.99.
  4684. development/frobtads: Updated for version 2.0.
  4685. development/fsharp: Removed (abandoned).
  4686. development/ftnchek: Updated for version 3.3.1.
  4687. development/fuel: Removed (no maintainer)
  4688. development/gambas3: Fixed dep info in README
  4689. development/gambas3: Updated for version 3.16.3.
  4690. development/gauche: Updated for version 0.9.11.
  4691. development/gcc-d: Removed (added to Slackware as part of gcc).
  4692. development/gcc5: Added (gcc version 5 C, C++ and Java compilers).
  4693. development/gcc5: Addressed ponce's remarks about the SlackBuild.
  4694. development/gcc5: Explicitly disable isl.
  4695. development/gcc5: Fix building with recents glibc, gcc and kernels.
  4696. development/gcc5: Fix support for PRINT_PACKAGE_NAME
  4697. development/gcc5: Patch for glibc-2.28.
  4698. development/gcc5: Speed up find/chmod.
  4699. development/gcc5: fix md5sum in gcc5.info
  4700. development/gcc5: fix the .la file filtering
  4701. development/gcc5: further cleanups of the SlackBuild
  4702. development/gcc5: update to 5.5.0
  4703. development/gcclegacy494: Removed (FTB).
  4704. development/geany-plugins: Disable broken plugins.
  4705. development/geany-plugins: Fixed dep info
  4706. development/geany-plugins: Remove .la files.
  4707. development/geany-plugins: Updated for version 1.36.0.
  4708. development/geany: Remove .la files.
  4709. development/geany: Updated for version 1.36.0 (switch to gtk+3).
  4710. development/gedit: Disable spellchecker (no more enchant-1.x).
  4711. development/gedit: Fix underlinking.
  4712. development/ghex: Align with new template.
  4713. development/ghex: Fixed dep info
  4714. development/ghex: Updated for version 3.41.beta.
  4715. development/git-cola: Fixed dep info in README
  4716. development/git-lfs: Updated for version 3.0.1.
  4717. development/git-lfs: Updated for version 3.0.2.
  4718. development/git-lfs: Updated for version 3.1.2.
  4719. development/github-cli: Updated for version 1.10.0
  4720. development/github-cli: Updated for version 1.10.3
  4721. development/github-cli: Updated for version 1.11.0
  4722. development/github-cli: Updated for version 1.12.0
  4723. development/github-cli: Updated for version 1.12.1
  4724. development/github-cli: Updated for version 1.13.1
  4725. development/github-cli: Updated for version 1.14.0
  4726. development/github-cli: Updated for version 1.9.1
  4727. development/github-cli: Updated for version 1.9.2
  4728. development/github-cli: Updated for version 2.0.0
  4729. development/github-cli: Updated for version 2.1.0
  4730. development/github-cli: Updated for version 2.2.0
  4731. development/github-cli: Updated for version 2.3.0
  4732. development/github-cli: Updated for version 2.4.0
  4733. development/github-cli: Updated for version 2.5.0
  4734. development/github-cli: Updated for version 2.5.1
  4735. development/github-cli: Updated for version 2.5.2
  4736. development/glade: Removed (added to Slackware).
  4737. development/global: Updated for version 6.6.7.
  4738. development/gn: Fixed dep info
  4739. development/gnats: Disabled some warnings-as-errors.
  4740. development/gnats: Fix for gcc >= 10.x.
  4741. development/gnome-inform7: Removed.
  4742. development/gnulib: Remove template comment.
  4743. development/gnuradio: Add various patches for the newer boosts.
  4744. development/gnuradio: Fix man pages location.
  4745. development/gnuradio: Fixed python2-cheetah dependency.
  4746. development/gnuradio: Update DEP.
  4747. development/gnuradio: Updated for version 3.9.4.0.
  4748. development/gnustep-base: Updated for version 1.27.0.
  4749. development/gnustep-make: Updated for version 2.8.0.
  4750. development/gnustep-startup: Removed (no maintainer)
  4751. development/golang-googlecode-gotools: fix build of go.tools
  4752. development/google-appengine-gosdk: Removed (no maintainer)
  4753. development/google-appengine-pysdk: Removed (no maintainer)
  4754. development/google-go-lang: Updated for version 1.16.10.
  4755. development/google-go-lang: Updated for version 1.17.7.
  4756. development/google-go-lang: fix build for x86
  4757. development/google-webdesigner: Removed.
  4758. development/gprolog: Updated for version 1.5.0.
  4759. development/gpsim: Added -fpermissive to the CXXFLAGS.
  4760. development/gpsim: Remove .la files.
  4761. development/gr-osmosdr: Add various fixes for the newer boosts.
  4762. development/gr-osmosdr: Fixed python2-cheetah dependency.
  4763. development/gr-osmosdr: Updated for version 20210128_a100eb0.
  4764. development/gradle: Use zulu-opendjdk11.
  4765. development/gsoap: Updated for version 2.8.111.
  4766. development/gsoap: Updated for version 2.8.117
  4767. development/gsoap: Updated for version 2.8.118
  4768. development/gsoap: Updated maintainer email
  4769. development/gtest: Install libraries and pkgconfig files.
  4770. development/gtkdialog: Patch for gcc >= 10.x.
  4771. development/gtkextra: Remove .la files.
  4772. development/guile-json: Removed (no maintainer)
  4773. development/guile1.8: Remove la files.
  4774. development/guile2.0: Added (GNU's extension language library).
  4775. development/guile2.0: Remove .la files.
  4776. development/guile2.2: Added (GNU's extension language library).
  4777. development/guile2.2: Remove .la files.
  4778. development/happy: Updated for version 1.20.0.
  4779. development/hexcurse: Fix -current build.
  4780. development/hexe: Fix -current build.
  4781. development/hexer: Remove template comment.
  4782. development/hexinator: Fix -current build.
  4783. development/hexinator: Fix DOWNLOAD_x86_64.
  4784. development/hexinator: Fix downloads.
  4785. development/hexinator: Remove template comment.
  4786. development/hexnet: Updated for version 1.1.1, fix for gcc >= 10.x.
  4787. development/hhvm: Create /var/run stuff in init script
  4788. development/hhvm: Fixed dep info
  4789. development/hhvm: Updated for version 4.104.1
  4790. development/highlight: Disable parallel jobs on install.
  4791. development/highlight: Updated for version 4.1. also enabled GUI app, thanks j12i.
  4792. development/hopper: Updated for version 4.7.4.
  4793. development/hopper: Updated for version 4.9.1.
  4794. development/hopper: Updated for version 4.9.2.
  4795. development/hopper: Updated for version 4.9.5.
  4796. development/hte: Fix build with newer gcc.
  4797. development/hte: Updated for version 2.1.0, cleanups.
  4798. development/hugo: Switch back to 644.
  4799. development/hugo: Update for version 0.92.2.
  4800. development/hugo: Updated for version 0.92.1.
  4801. development/icdiff: Updated for version 2.0.4.
  4802. development/icecream: Removed (added to Slackware).
  4803. development/icemon: Fixed dep info
  4804. development/icemon: Updated for version 3.3
  4805. development/icemon: Updated maintainer email
  4806. development/idlex: Build with python3 by default
  4807. development/idlex: Updated for version 1.22.
  4808. development/ignition-math: Fix DOWNLOAD.
  4809. development/inform: Updated for version 6.35_r2.
  4810. development/ioncube-loader: Updated for version 11.0.1.
  4811. development/jasspa: Patch for glibc >= 2.32.
  4812. development/javacc: Updated for version 7.0.10.
  4813. development/jdk11: Updated for version 11.0.12.
  4814. development/jdk11: Updated to version 11.0.11
  4815. development/jdk12: Removed (EOL).
  4816. development/jdk13: Removed (EOL).
  4817. development/jdk14: Removed (EOL).
  4818. development/jdk15: Removed (EOL).
  4819. development/jdk16: Removed (EOL).
  4820. development/jdk16: Updated for version 16.0.2.
  4821. development/jdk16: Updated to version 16.0.1
  4822. development/jdk: Don't set the MANPATH variable.
  4823. development/jdk: Updated for version 8u291.
  4824. development/jdk: Updated for version 8u321.
  4825. development/jeex: Fix -current build.
  4826. development/jenv: Fix github tarball handling.
  4827. development/jupyter-ipykernel: Added jupyter-ipykernel (+new maintainer)
  4828. development/jupyter-ipykernel: Removed (abandoned).
  4829. development/jupyter-ipykernel: Updated dependencies.
  4830. development/jupyter-ipyleaflet: Removed (abandoned).
  4831. development/jupyter-ipywidgets: Removed (abandoned).
  4832. development/jupyter-ipywidgets: Updated dependencies.
  4833. development/jupyter-nbclient: Added jupyter-nbclient (+new maintainer)
  4834. development/jupyter-nbclient: Removed (abandoned).
  4835. development/jupyter-nbclient: Update for 0.5.12
  4836. development/jupyter-nbconvert: Added jupyter-nbconvert (+new maintainer)
  4837. development/jupyter-nbconvert: Removed (abandoned).
  4838. development/jupyter-nbconvert: Update DEP.
  4839. development/jupyter-nbdime: Removed (abandoned).
  4840. development/jupyter-nbdime: Updated dependencies.
  4841. development/jupyter-nbformat: Added jupyter-nbformat (+new maintainer)
  4842. development/jupyter-nbformat: Removed (abandoned).
  4843. development/jupyter-notebook: Added (new maintainer)
  4844. development/jupyter-notebook: Removed (abandoned).
  4845. development/jupyter-notebook: Update DEP.
  4846. development/jupyter-qtconsole: Added jupyter-qtconsole (+new maintainer)
  4847. development/jupyter-qtconsole: Removed (abandoned).
  4848. development/jupyter-qtconsole: Updated for version 5.0.3.
  4849. development/jupyter-qtconsole: Updated for version 5.1.0.
  4850. development/jupyter-widgetsnbextension: Removed (abandoned).
  4851. development/jupyter_client: Added jupyter_client (+new maintainer)
  4852. development/jupyter_client: Removed (abandoned).
  4853. development/jupyter_client: Updated for version 6.2.0.
  4854. development/jupyter_console: Added jupyter_console (+new maintainer)
  4855. development/jupyter_console: Removed (abandoned).
  4856. development/jupyter_console: Update for 6.4.3
  4857. development/jupyter_core: Added jupyter_core (+new maintainer)
  4858. development/jupyter_core: Removed (abandoned).
  4859. development/jupyter_core: Updated dependencies.
  4860. development/jupyterlab_pygments: Removed (abandoned).
  4861. development/jupyterlab_pygments: Updated dependencies.
  4862. development/jython: Removed (No maintainer).
  4863. development/kakoune: Updated for version 2020.09.01.
  4864. development/kakoune: Updated for version 2021.11.08.
  4865. development/kconfig-frontends: Remove .la files.
  4866. development/kconfig-frontends: Updated for version 4.11.0.1.
  4867. development/kcov: Updated for version 40.
  4868. development/kdesvn: Updated for version 20211128_4a776d5.
  4869. development/kdiff3: Updated for version 1.9.3.
  4870. development/kicad: Updated for version 5.1.9.
  4871. development/kotlin: Updated for version 1.5.0.
  4872. development/kotlin: Updated for version 1.5.10.
  4873. development/kotlin: Updated for version 1.5.20.
  4874. development/kotlin: Updated for version 1.5.21.
  4875. development/kotlin: Updated for version 1.5.30.
  4876. development/kotlin: Updated for version 1.5.31.
  4877. development/kotlin: Updated for version 1.6.0.
  4878. development/kotlin: Updated for version 1.6.10.
  4879. development/latrace: Patch for flex 2.6.x.
  4880. development/lazarus: Updated for version 2.0.12, new maintainer.
  4881. development/ldns: Add python3 support.
  4882. development/ldns: Fix 15.0 build.
  4883. development/ldns: Remove .la files.
  4884. development/le: Updated for version 1.16.8.
  4885. development/leo: Fixed dep info
  4886. development/libb2: Remove .la files.
  4887. development/libbitcoin: Removed (incompat boost 1.78).
  4888. development/libbitcoin: Update DOWNLOAD.
  4889. development/libcutl: Patch for gcc >= 11.x.
  4890. development/libcutl: Remove .la files.
  4891. development/libodb-boost: Removed (abandoned).
  4892. development/libodb-mysql: Removed (abandoned).
  4893. development/libodb-pgsql: Removed (abandoned).
  4894. development/libodb-qt: Removed (abandoned).
  4895. development/libodb-sqlite: Removed (abandoned).
  4896. development/libodb: Fix build on -current.
  4897. development/libodb: Remove .la files.
  4898. development/libodb: Removed (abandoned).
  4899. development/lmdb: Removed (added to Slackware).
  4900. development/love-legacy072: Fix -current build.
  4901. development/love-legacy072: Fixed dep info
  4902. development/love-legacy080: Fix -current build.
  4903. development/love-legacy080: Fixed dep info
  4904. development/love: Fix -current build.
  4905. development/love: Fixed dep info
  4906. development/ltrace: Remove template comment.
  4907. development/lwtools: Updated for version 4.19.
  4908. development/mads: Updated for version 2.1.3.
  4909. development/maude: Updated for version 3.1.
  4910. development/mawk: Remove template comment.
  4911. development/mcrl2: Removed (no maintainer)
  4912. development/mdbook: Added (utility to create modern online books)
  4913. development/mdbook: Fix github tarball handling.
  4914. development/mdbook: Fix offline build.
  4915. development/mdbook: Updated for version 0.4.14.
  4916. development/mdbook: Updated for version 0.4.15.
  4917. development/medit: Updated email
  4918. development/meld3: Fixed dep info
  4919. development/meld3: Updated for version 1.8.6.
  4920. development/meld3: Updated for version 3.20.1.
  4921. development/meld3: Updated for version 3.20.4.
  4922. development/menhir: Added the dependency dune (removed ocamlbuild).
  4923. development/menhir: Updated for version 20190924.
  4924. development/menhir: Updated for version 20220210.
  4925. development/meson: Removed (added to Slackware).
  4926. development/mg-openbsd: Fix for gcc >= 10.x, cleanups.
  4927. development/mg-troglobit: Updated for version 3.5.
  4928. development/ming: Removed.
  4929. development/mkchroot: Updated for version 1.5
  4930. development/mockpp: Remove .la files.
  4931. development/mongodb-compass: Updated for version 1.27.1.
  4932. development/mongodb-compass: Updated for version 1.28.0.
  4933. development/mongodb-compass: Updated for version 1.28.1.
  4934. development/mongodb-compass: Updated for version 1.28.2.
  4935. development/mongodb-compass: Updated for version 1.28.4.
  4936. development/mongodb-compass: Updated for version 1.29.4.
  4937. development/mongodb-compass: Updated for version 1.29.5.
  4938. development/mongodb-compass: Updated for version 1.29.6.
  4939. development/mongodb-compass: Updated for version 1.30.1.
  4940. development/monkey-studio: Removed (no qt4-qscintilla).
  4941. development/mono-addins: Avoid nuget to build.
  4942. development/mono-addins: Fix github tarball handling.
  4943. development/mono-basic: Updated for version 20200408_bdb5276.
  4944. development/mono-debugger: Removed (abandoned and ftb).
  4945. development/mono: Updated for version 6.12.0.122.
  4946. development/monodevelop: Removed (abandoned).
  4947. development/mozjs: Removed (won't build).
  4948. development/mrustc: Removed (rust now in slackware).
  4949. development/mtasc: Changed ARCH to i586
  4950. development/mtd-utils: Updated for version 2.1.2.
  4951. development/mysql-pinba: Added -fpermissive to the CXXFLAGS.
  4952. development/mysql-pinba: Removed
  4953. development/mysql-pinba: Updated maintainer email
  4954. development/mysql-workbench: Fix for gcc >= 7.x.
  4955. development/mysql-workbench: Updated for version 8.0.23.
  4956. development/mysql-workbench: Updated for version 8.0.24.
  4957. development/mysql-workbench: Updated for version 8.0.25.
  4958. development/mysql-workbench: Updated for version 8.0.26.
  4959. development/mysql-workbench: Updated for version 8.0.28.
  4960. development/nchexedit: Updated for version 0.9.7_7.1, fix rc1 build.
  4961. development/ne: Removed (No maintainer).
  4962. development/neovim-qt: Updated dependencies.
  4963. development/neovim-remote: Use system dir for completion files
  4964. development/neovim: New maintainer.
  4965. development/neovim: Updated for version 0.5.0.
  4966. development/netbeans: Updated for version 13.
  4967. development/newlib: Force a single make install job.
  4968. development/nexus: Use zulu-openjdk8.
  4969. development/nickle: Updated for version 2.90.
  4970. development/nim: Updated for version 1.4.8.
  4971. development/ninja-ide: Updated for version 2.4.
  4972. development/ninja: Removed (added to Slackware).
  4973. development/nodejs-bin: Removed.
  4974. development/nodejs: Updated for versin 14.17.1.
  4975. development/nodejs: Updated for version 14.16.1.
  4976. development/nodejs: Updated for version 14.17.0.
  4977. development/nodejs: Updated for version 14.17.3.
  4978. development/nodejs: Updated for version 14.17.4.
  4979. development/nodejs: Updated for version 14.17.5.
  4980. development/nodejs: Updated for version 14.17.6.
  4981. development/nodejs: Updated for version 14.18.0.
  4982. development/nodejs: Updated for version 16.11.0.
  4983. development/nodejs: Updated for version 16.11.1.
  4984. development/nodejs: Updated for version 17.0.1.
  4985. development/nodejs: Updated for version 17.1.0.
  4986. development/nodejs: Updated for version 17.3.0.
  4987. development/nodejs: Updated for version 17.3.1.
  4988. development/nodejs: Updated for version 17.4.0.
  4989. development/nodejs: Updated for version 17.5.0.
  4990. development/nodejs: Updated for version 17.6.0.
  4991. development/nodejs: Updated for vesion 17.2.0.
  4992. development/nodejs: Use ninja to build.
  4993. development/notepadqq: Fixed dep info
  4994. development/noweb: Updated for version 2.12
  4995. development/nuget: Removed (abandoned).
  4996. development/numpy-legacy3: Removed (ftb).
  4997. development/numpy3: Updated for version 1.20.2.
  4998. development/numpy3: Updated for version 1.20.3
  4999. development/numpy3: Updated for version 1.21.2.
  5000. development/nvi: Removed (added to Slackware).
  5001. development/obcpl: Updated for version 0.9.8, fix build.
  5002. development/ocaml-num: Added (arbitrary precision arithmetic).
  5003. development/ocaml-num: Fix download URL.
  5004. development/ocaml: Update for version 4.13.1
  5005. development/ocaml: Updated for version 4.08.1, changed maintainer.
  5006. development/ocaml: Updated for version 4.08.1.
  5007. development/ocaml: Updated for version 4.13.1.
  5008. development/ocamlbuild: Updated for version 0.14.0.
  5009. development/odb: Patch for gcc >= 6.x.
  5010. development/odb: Removed (abandoned).
  5011. development/ola: Updated for version 0.10.8.
  5012. development/omake: Fix github tarball handling.
  5013. development/omake: Updated for version 0.10.3.
  5014. development/omniORB: Updated for version 4.3.0.
  5015. development/omniORBpy: Updated for version 4.3.0.
  5016. development/oniguruma: Removed (added to Slackware).
  5017. development/opencl-headers: Removed (added to Slackware).
  5018. development/opencomal: Remove template comment.
  5019. development/opencvs: Fix for gcc >= 10.x.
  5020. development/opendbx: Removed (unmaintained upstream).
  5021. development/openjdk6: Added (re-added + new maint).
  5022. development/openjdk6: Removed (EOL).
  5023. development/openjdk7: Updated for version 7u321 + new main.
  5024. development/openjdk8: Updated for version 8u292.
  5025. development/openocd: Updated for version 0.10.0.
  5026. development/openocd: Updated for version 0.11.0.
  5027. development/p4v: Fix typo.
  5028. development/pahole: Updated for version 1.23.
  5029. development/pandas: Fix dependency.
  5030. development/patchutils: Updated for version 0.4.2.
  5031. development/pcc: Updated for version 1.2.0.DEVEL+20210905.
  5032. development/perf: Fixed dep info
  5033. development/perf: Updated for version 5.10.13.
  5034. development/perf: Updated for version 5.12.14.
  5035. development/perf: Updated for version 5.13.2.
  5036. development/perf: Updated for version 5.15.16.
  5037. development/perl-shtags: Removed.
  5038. development/pforth: Updated for version 20220221_6aa1010.
  5039. development/phantomjs: Updated for version 2.1.1
  5040. development/phantomjs: Updated maintainer email
  5041. development/php-apcu: Updated for version 5.1.17.
  5042. development/php-pinba: Removed
  5043. development/php-pinba: Updated maintainer email
  5044. development/php-xdebug: Renamed from xdebug
  5045. development/php-xdebug: Updated for version 3.1.1
  5046. development/pip2tgz: Fix VERSION in pip2tgz.info
  5047. development/pip2tgz: Update DEP.
  5048. development/pip2tgz: Updated for version 0.5
  5049. development/pip2tgz: Updated for version 0.6
  5050. development/pip2tgz: Updated for version 0.7
  5051. development/pip2tgz: Updated for version 0.8
  5052. development/pkgconf: Remove .la files.
  5053. development/pkgdiff: Remove template comment.
  5054. development/pli: Added (Iron Spring PL/I Compiler).
  5055. development/poedit: Updated for version 2.4.2.
  5056. development/poedit: Updated for version 2.4.3.
  5057. development/poedit: Updated for version 3.0.
  5058. development/poedit: Updated for version 3.0.1.
  5059. development/polyml: Remove .la files.
  5060. development/portaudio: Fix DOWNLOAD typo
  5061. development/portaudio: Updated for version 19.7.0.
  5062. development/portaudio: Updated for version v190700_20210406.
  5063. development/postman: Fix tarball handling with content disp.
  5064. development/postman: Updated for version 8.10.0
  5065. development/postman: Updated for version 8.12.4
  5066. development/postman: Updated for version 8.12.5
  5067. development/postman: Updated for version 8.5.1
  5068. development/postman: Updated for version 8.6.1
  5069. development/postman: Updated for version 8.6.2
  5070. development/postman: Updated for version 8.7.0
  5071. development/postman: Updated for version 8.8.0
  5072. development/postman: Updated for version 8.9.1
  5073. development/postman: Updated for version 9.1.5
  5074. development/postman: Updated for version 9.11.0
  5075. development/postman: Updated for version 9.12.2
  5076. development/postman: Updated for version 9.14.0
  5077. development/postman: Updated for version 9.7.1
  5078. development/postman: Updated for version 9.8.3
  5079. development/postman: Updated for version 9.9.3
  5080. development/psycopg2: Updated for version 2.9.3, removing python2 support
  5081. development/psycopg2: new maintainer
  5082. development/psycopg: Updated dependencies.
  5083. development/pudb: Updated for version 2020.1.
  5084. development/pycharm: Updated for version 2021.2.
  5085. development/pycharm: Updated for version 2021.3.2.
  5086. development/pyenchant: Fix 15.0 build, add python3 support.
  5087. development/pylint: Fix dependency.
  5088. development/python3-matplotlib: Build offline.
  5089. development/python3-matplotlib: Fix Download URL.
  5090. development/python3-matplotlib: Fixed dep info
  5091. development/python3-matplotlib: Updated for version 3.4.3.
  5092. development/qconf: Added the dependency qt4.
  5093. development/qt-creator-llvm: Update DEP.
  5094. development/qt-creator-llvm: Updated for version 13.0.0_d7b669b.
  5095. development/qt-creator2: Removed (abandoned).
  5096. development/qt-creator: Updated for version 4.13.3.
  5097. development/qt-creator: Updated for version 4.15.0.
  5098. development/qt-creator: Updated for version 5.0.3.
  5099. development/racer: Check for rust version with rustup.
  5100. development/racer: Updated for version 2.1.46.
  5101. development/racer: Updated for version 2.2.0.
  5102. development/ragel: Check for installed copy first.
  5103. development/ragel: Remove .la files.
  5104. development/rapidsvn: Fix URL, wx conflict, disable doxygen.
  5105. development/rapidsvn: Remove .la files.
  5106. development/rapidsvn: Use the C++14 standard.
  5107. development/rapidsvn: i486-->i586
  5108. development/rarian: Remove .la files.
  5109. development/re2c: Removed (added to Slackware).
  5110. development/reckless: Updated for version 3.0.3.
  5111. development/redo: Add python2-BeautifulSoup4 DEP
  5112. development/redo: Fix github tarball handling.
  5113. development/redo: Updated for version 0.42d.
  5114. development/referenceassemblies-pcl: Removed (abandoned).
  5115. development/reflex: Updated for version 2.5.4.20210808.
  5116. development/rmac: Updated for version 2.1.12_20210820.
  5117. development/robotframework: Updated for version 4.0.2.
  5118. development/robotframework: Updated for version 4.0.3.
  5119. development/robotframework: Updated for version 4.1.
  5120. development/robotframework: Updated for version 4.1.1.
  5121. development/robotframework: Updated for version 4.1.2.
  5122. development/robotframework: Updated for version 4.1.3.
  5123. development/rstudio-desktop: Added the dependency gst0-plugins-base.
  5124. development/rustup: Updated for version 1.24.3.
  5125. development/sassc: Removed (added to Slackware).
  5126. development/sbcl: Updated for version 2.1.10.
  5127. development/sbcl: Updated for version 2.1.7.
  5128. development/sbcl: Updated for version 2.2.0.
  5129. development/sbcl: Updated for version 2.2.1.
  5130. development/scala: Updated for version 2.13.6.
  5131. development/scala: Updated for version 2.13.8.
  5132. development/schroot: Remove .la files.
  5133. development/scikit-build: Added (CPython build system generator)
  5134. development/scikit-build: Use consistent URL.
  5135. development/scite: Updated for version 5.2.1.
  5136. development/scratch: Removed.
  5137. development/setedit: Fix tarball handling.
  5138. development/setedit: Force a single make job.
  5139. development/shiboken2: Added. Required for pyside2
  5140. development/shiboken: Add qt4 dependency.
  5141. development/shiboken: Fix download URL.
  5142. development/simulavr: Updated for version 20201006_32985f7.
  5143. development/sloccount: Fix download URL and add license
  5144. development/sloccount: Updated maintainer email
  5145. development/smalltalk: Remove .la files.
  5146. development/smlnj: Add missing source file
  5147. development/snappy: Save snappy.info as utf8-encoded.
  5148. development/source-highlight: Patch for gcc >= 11.x, cleanups.
  5149. development/source-highlight: Remove .la files.
  5150. development/sourcenav: Removed.
  5151. development/spice-protocol: Fix build.
  5152. development/spice-protocol: Remove NUMJOBS.
  5153. development/spice-protocol: Updated for version 0.14.3.
  5154. development/spice-protocol: Updated for version 0.14.4.
  5155. development/spl: Removed (no maintainer)
  5156. development/splint: Updated for version 20170327_3fb908d.
  5157. development/sqlcl: Align with template
  5158. development/sqldeveloper: Align with template
  5159. development/sqlitebrowser: Updated for version 3.12.2
  5160. development/sqliteman: Use qt5.
  5161. development/squeak-vm: Fixed dep info in README
  5162. development/squeak-vm: Removed.
  5163. development/srcML: Add the dependency jdk.
  5164. development/srecord: Rearrange docs, get rid of .la.
  5165. development/sublime_merge: Updated for version 2054.
  5166. development/swfmill: Disabled narrowing warnings.
  5167. development/swfmill: Updated for version 0.3.6.
  5168. development/swi-prolog: Fixed dep info
  5169. development/swift: Fixed dep info
  5170. development/swift: Fixed dep info
  5171. development/swift: Removed (abandoned, ftbfs).
  5172. development/systemtap: Updated for version 4.5.
  5173. development/tanya: Removed (author stopped development).
  5174. development/tcc: Updated for version 20220221_308d8d1.
  5175. development/tea: Link qt5 by default
  5176. development/tea: Updated to reflect changes in 15.0 - uses qt5 by default
  5177. development/tea: updated for version 60.1.0
  5178. development/tea: updated for version 60.3.0
  5179. development/tea: updated for version 60.4.0
  5180. development/tea: updated for version 60.5.0
  5181. development/tea: updated for version 60.6.0
  5182. development/tea: updated for version 60.7.0
  5183. development/tea: updated homepage
  5184. development/texi2html: s,i486,i586,g and see commit note below
  5185. development/thunderpad: Removed (no maintainer)
  5186. development/tidy-html5: Removed (added to Slackware).
  5187. development/tig: Updated for version 2.5.4.
  5188. development/tig: Updated for version 2.5.5.
  5189. development/tig: Use systemwide dir for bash completion files
  5190. development/tiled: updated for version 1.6.0
  5191. development/tiled: updated for version 1.7.0
  5192. development/tiled: updated for version 1.7.1
  5193. development/tiled: updated for version 1.7.2
  5194. development/tiled: updated for version 1.8.0
  5195. development/tiled: updated for version 1.8.1
  5196. development/tiled: updated for version 1.8.2
  5197. development/tkdiff: Updated for version 5.3
  5198. development/tora: Updated for version 20170725_d9fddb8.
  5199. development/tora: Updated for version git5859a97.
  5200. development/tweak: Updated for version 3.02+20200601.
  5201. development/tyrutils-ericw: Removed (No maintainer).
  5202. development/ucblogo: Updated for version 6.2.2.
  5203. development/ucpp: Remove .la files.
  5204. development/udis86: Remove .la files, misc cleanup
  5205. development/uncrustify: Updated for version 0.73.0
  5206. development/uncrustify: Updated for version 0.74.
  5207. development/unifdef: Remove template comment.
  5208. development/universal-ctags: Updated for version p5.9.20211031.0
  5209. development/urjtag: Remove .la files.
  5210. development/urjtag: Updated for version 2021.03.
  5211. development/vala-12: Remove .la files.
  5212. development/vala: Removed (added to Slackware).
  5213. development/valabind: Fixed dep info
  5214. development/valabind: Updated for version 1.8.0.
  5215. development/valgrind: Mention mpich/openmpi optional deps.
  5216. development/valgrind: Updated for version 3.18.1.
  5217. development/valkyrie: Added qt4 dependency.
  5218. development/vscode-bin: Updated for version 1.56.1.
  5219. development/vscode-bin: Updated for version 1.57.0.
  5220. development/vscode-bin: Updated for version 1.57.1.
  5221. development/vscode-bin: Updated for version 1.58.2.
  5222. development/vscode-bin: Updated for version 1.59.1.
  5223. development/vscode-bin: Updated for version 1.60.2.
  5224. development/vscode-bin: Updated for version 1.61.1.
  5225. development/vscode-bin: Updated for version 1.62.3.
  5226. development/vscode-bin: Updated for version 1.63.2.
  5227. development/vscode-bin: Updated for version 1.64.2.
  5228. development/vscode: Removed.
  5229. development/vscode: Updated for version 1.59.0.
  5230. development/vstudio: Fix version number in BASENAME.
  5231. development/vstudio: Updated MD5SUM.
  5232. development/vstudio: Updated for version 12.0.2.
  5233. development/vstudio: Updated for version 12.0.4..
  5234. development/watchman: Removed (needs boost-1.69.0, tries to download it).
  5235. development/wheel: Removed redundant doinst.sh.
  5236. development/woff2: Removed (added to Slackware).
  5237. development/xa: Remove template comment.
  5238. development/xasm: Remove template comment.
  5239. development/xdebug: Fixed dep info
  5240. development/xdebug: Updated for version 3.0.4.
  5241. development/xdebug: Updated maintainer email
  5242. development/xemacs: Removed (unmaintained @ SBo)
  5243. development/xnedit: Updated for version 1.3.2
  5244. development/xnedit: Updated for version 1.3.3.
  5245. development/xnedit: Updated for version 1.4.0.
  5246. development/xsp: Remove .la files.
  5247. development/xtruss: Updated for version 20210225.2addd50.
  5248. development/xvi: Remove template comment.
  5249. development/xxdiff: Updated for version 20220219_d4432be.
  5250. development/yarn: Update README and homepage URL.
  5251. development/z88dk: Fix -current build.
  5252. development/zeal: Fix build with qt 5.15.
  5253. development/zeal: Fixed dep info
  5254. development/zulu-openjdk-lts: Moved to zulu-openjdk11 and updated for version 11.0.13
  5255. development/zulu-openjdk11: Fix the ARCH checking routine.
  5256. development/zulu-openjdk11: Updated for version 11.0.14.1.
  5257. development/zulu-openjdk17: Added Azul Zulu OpenJDK 17 LTS
  5258. development/zulu-openjdk17: Fix MD5SUMs.
  5259. development/zulu-openjdk17: Fix slack-desc.
  5260. development/zulu-openjdk17: Fix the ARCH checking routine.
  5261. development/zulu-openjdk17: Updated for version 17.0.2.
  5262. development/zulu-openjdk6: Added Azul Zulu OpenJDK6 LTS version 6.0.119
  5263. development/zulu-openjdk6: Fix pkg ARCH.
  5264. development/zulu-openjdk6: Fix the ARCH checking routine.
  5265. development/zulu-openjdk7: Fix the ARCH checking routine.
  5266. development/zulu-openjdk7: Updated for version 7.0.322
  5267. development/zulu-openjdk7: Updated for version 7.0.332.
  5268. development/zulu-openjdk8: Fix the ARCH checking routine.
  5269. development/zulu-openjdk8: Updated for version 8.0.312
  5270. development/zulu-openjdk8: Updated for version 8.0.322.
  5271. development/zulu-openjdk9: Removed since Azul stopped support it
  5272. games/0ad-data: Updated for version 0.0.24b.
  5273. games/0ad-data: Updated for version 0.0.25.
  5274. games/0ad: Updated for version 0.0.24b.
  5275. games/0ad: Updated for version 0.0.25.
  5276. games/4do-libretro: Removed (no maintainer)
  5277. games/7kaa: Fixed dep info
  5278. games/Chatbot-Eliza: Updated to 1.08.
  5279. games/CorsixTH: Fixed dep info in README
  5280. games/CorsixTH: Update DEP.
  5281. games/FlightGear-data: Updated for version 2020.3.11.
  5282. games/FlightGear-data: Updated for version 2020.3.8.
  5283. games/FlightGear: Fixed dep info in README
  5284. games/FlightGear: Updated for version 2020.3.11.
  5285. games/FlightGear: Updated for version 2020.3.8, cleanups.
  5286. games/Gearboy: Removed (no maintainer)
  5287. games/Gearsystem: Removed (no maintainer)
  5288. games/Genesis-Plus-GX: Removed (no maintainer)
  5289. games/KAdventure: Fix 15.0 build.
  5290. games/OpenJK: Fix 15.0 build.
  5291. games/OpenJK: Fixed dep info
  5292. games/OpenRA: Update DEP.
  5293. games/OpenRA: Updated for version 20210321.
  5294. games/Pyfa: Fix dependency.
  5295. games/RetroArch: Fixed dep info
  5296. games/RetroArch: Force building with clang.
  5297. games/RetroArch: Un-dumbify the build script (my fault)
  5298. games/RetroArch: Updated for version 1.10.0.
  5299. games/SLADE: Fix build.
  5300. games/SLADE: Fixed dep info
  5301. games/SLADE: Update DEP.
  5302. games/SLADE: Updated for version 3.2.0_b3.
  5303. games/SameBoy: Removed (no maintainer)
  5304. games/Scorched3D: Fix wxPython/wxGTK3 conflict.
  5305. games/Scorched3D: Patched to use wxGTK3
  5306. games/Scorched3D: Updated maintainer email
  5307. games/Sokoban: Fix download URL.
  5308. games/SpaceZero: Fix 15.0 build.
  5309. games/VASSAL: Updated for version 3.5.7.
  5310. games/VASSAL: Updated for version 3.6.5.
  5311. games/ZEsarUX: Fix 15.0 build.
  5312. games/ace: Fix 15.0 build.
  5313. games/adl: Remove template comment.
  5314. games/advancemame: Fix -current build.
  5315. games/advancescan: Fix -current build.
  5316. games/ags: updated for version 3.5.0.32
  5317. games/ags: updated for version 3.5.1.10
  5318. games/ags: updated for version 3.5.1.12
  5319. games/ags: updated for version 3.5.1.15
  5320. games/ags: updated for version 3.5.1.16
  5321. games/ags: updated for version 3.5.1.7
  5322. games/ags: updated for version 3.5.1.8
  5323. games/aklabeth: Remove template comment.
  5324. games/alephone: Fixed dep info
  5325. games/alephone: Updated for version 20210408.
  5326. games/alienarena: Fix 15.0 build.
  5327. games/alienarena: Fixed dep info
  5328. games/alienarena: Updated to an svn snapshot, cleanups.
  5329. games/an: Remove template comment.
  5330. games/angband: Fix download URL.
  5331. games/antares: Fixed dep info
  5332. games/antares: Fixed dep info (libc++)
  5333. games/antimicro: Fix 15.0 build.
  5334. games/antimicro: Update DEP.
  5335. games/antimicrox: renamed and updated for version 3.2.2.
  5336. games/ardentryst: Fix download URL.
  5337. games/arnold-cpc: Fix 15.0 build.
  5338. games/arx-libertatis: Fixed dep info
  5339. games/arx-libertatis: Updated for version 1.2_dev_2019_07_22.
  5340. games/asc: Fix 15.0 build.
  5341. games/asc: Removed SDL_sound dep (part of Slackware).
  5342. games/assaultcube-reloaded: Fixed dep info
  5343. games/assaultcube: Fixed dep info
  5344. games/assaultcube: Patched for the newer gcc.
  5345. games/asteroidsinfinity: Remove template comment.
  5346. games/astromenace: Update DEP.
  5347. games/atanks: Updated for version 6.6.
  5348. games/atari++: Updated for version 1.84.
  5349. games/atari800: Remove template comment.
  5350. games/atari800_roms: Remove template comment.
  5351. games/bastet: Fix -current build.
  5352. games/beetle-bcfx-libretro: Removed (no maintainer)
  5353. games/beetle-lynx-libretro: Removed (no maintainer)
  5354. games/beetle-ngp-libretro: Removed (no maintainer)
  5355. games/beetle-pce-fast-libretro: Removed (no maintainer)
  5356. games/beetle-psx-libretro: Removed (no maintainer)
  5357. games/beetle-saturn-libretro: Removed (no maintainer)
  5358. games/beetle-supergrafx-libretro: Removed (no maintainer)
  5359. games/beetle-vb-libretro: Removed (no maintainer)
  5360. games/beetle-wswan-libretro: Removed (no maintainer)
  5361. games/berusky-data: Fix download URL.
  5362. games/berusky2-data: Fix download URL.
  5363. games/berusky2: Fix 15.0 build.
  5364. games/berusky2: Updated for version 20170630_974e2e5.
  5365. games/berusky: Updated for version 1.7.2.
  5366. games/bitfighter: Fixed dep info
  5367. games/blastem-libretro: Removed (no maintainer)
  5368. games/blobby2: Update DEP.
  5369. games/blobby2: Updated maintainer email
  5370. games/blobwars: Disabled some warnings-as-errors.
  5371. games/blobwars: Fix 15.0 build.
  5372. games/blobwars: Update DEP.
  5373. games/bloodcm: Remove template comment.
  5374. games/bloodcm: Removed (no longer works with eduke32, use nblood).
  5375. games/bloodfrontier: Disabled narrowing warnings.
  5376. games/blueMSX-libretro: Removed (no maintainer)
  5377. games/bluez-sixaxis: Updated for version 5.58
  5378. games/brainparty: Patch for gcc >= 6.x.
  5379. games/brickout: Remove template comment.
  5380. games/briquolo: Fix 15.0 build.
  5381. games/bsnes-mercury: Removed (no maintainer)
  5382. games/bstone: Update DEP.
  5383. games/bstone: Updated for version 1.2.11.
  5384. games/burgerspace: Updated for version 1.9.4.
  5385. games/bzflag: Fixed dep info
  5386. games/bzflag: Remove .la files.
  5387. games/cannonball-libretro: Removed (no maintainer)
  5388. games/ceferino: Remove template comment.
  5389. games/cgames: Updated for version 2.2b.
  5390. games/cgmadness: Fix 15.0 build (but this still needs attention).
  5391. games/chessx: Updated for version 1.5.6.
  5392. games/chexquest3: Use noarch.
  5393. games/chocolate-doom: Fix build on -current.
  5394. games/chocolate-doom: Remove template comment.
  5395. games/chocolate-doom: Update DEP.
  5396. games/chocolate_duke3D: Remove template comment.
  5397. games/chocolate_duke3D: Removed (broken and abandoned).
  5398. games/chroma: Patch for the newer gcc, cleanups.
  5399. games/chromium-bsu: Fixed dep info
  5400. games/circuslinux: Remove template comment.
  5401. games/ckmame: Fix 15.0 build.
  5402. games/clksignal-roms: Added (ROM images for clksignal).
  5403. games/clksignal: Added (emulate classic computers/consoles).
  5404. games/clonekeen: Remove template comment.
  5405. games/colem: Updated for version 5.6.
  5406. games/commandergenius: Fixed dep info
  5407. games/commandergenius: Updated for version 3.0.8.
  5408. games/cosmic_assault: Fix -current build.
  5409. games/cosmic_assault: Remove template comment.
  5410. games/cosmic_assault: Update DEP.
  5411. games/cosmosmash: Updated for version 1.4.8.
  5412. games/cpat: Fix 15.0 build.
  5413. games/crack-attack: Fix conflict with enet.
  5414. games/crispy-doom: Update DEP.
  5415. games/crossfire-client: Fixed dep info
  5416. games/crossfire-client: Updated for version 1.75.2.
  5417. games/crrcsim: Patch for the newer gcc.
  5418. games/cryptokwot: Added (substitution cipher game).
  5419. games/curseofwar: Updated for version 1.3.0.
  5420. games/cyphesis: Use the C++14 standard.
  5421. games/d1x-rebirth: Updated for version 20220130_7258b7f.
  5422. games/d2x-rebirth: Updated for version 20220130_7258b7f.
  5423. games/darkplaces: Patch for gcc >= 11.x.
  5424. games/darkplaces: i486-->i586
  5425. games/defendguin: Remove template comment.
  5426. games/desmume: Fixed dep info
  5427. games/desmume: Support alternatives for ninja
  5428. games/desmume: Updated for version 20210409_e8f619c.
  5429. games/dfarc: Fix wxPython/wxGTK3 conflict.
  5430. games/dhewm3: Fixed dep info
  5431. games/dice: Fix 15.0 build.
  5432. games/dice: Update DEP.
  5433. games/digger: Support PRINT_PACKAGE_NAME.
  5434. games/digger: Take over maintenance.
  5435. games/digger: misc cleanups
  5436. games/dmagnetic: Added (magnetic scrolls interpreter)
  5437. games/dolphin-emu: Fixed dep info
  5438. games/dolphin-emu: Updated for version 20210406_5322256.
  5439. games/domination: New-style icons.
  5440. games/doom_shareware_data: Update URLs.
  5441. games/doomretro: Update DEP.
  5442. games/doomretro: Updated for version 4.2.3.
  5443. games/doomsday: New-style icons.
  5444. games/doomsday: Remove duplicate image.
  5445. games/doomsday: Update DEP.
  5446. games/doomsday: Updated for version 2.3.1.
  5447. games/doomseeker: Updated for version 1.3.2.
  5448. games/dreamchess: Update DEP.
  5449. games/ds-models: Remove gzdoom support since it was broken.
  5450. games/dunelegacy: Remove template comment.
  5451. games/dunelegacy: Update DEP.
  5452. games/dungeon: Fix -current build.
  5453. games/dustrac: Fix 15.0 build.
  5454. games/dustrac: Fixed dep info
  5455. games/edgar: Fix download URL.
  5456. games/edgar: Update DEP.
  5457. games/eduke32: Updated for version 20211102_9751_8970754aa.
  5458. games/eduke32_hires_pack: Updated for version 5.4.
  5459. games/eduke32_shareware_data: Minor fixes.
  5460. games/egoboo: Update DEP.
  5461. games/ember: Removed (not compatible with latest OGRE).
  5462. games/endless-sky: Fixed dep info
  5463. games/endless-sky: updated for version 0.9.14
  5464. games/enigma: Remove template comment.
  5465. games/etlegacy-from-source: Added (collaborative FPS).
  5466. games/etlegacy-from-source: Fix 15.0 build.
  5467. games/etlegacy-from-source: Fix PRGNAM in the info file.
  5468. games/etlegacy-from-source: Removed (use the binary).
  5469. games/etlegacy: Updated for version 2.79.0.
  5470. games/eureka: Remove template comment.
  5471. games/extremetuxracer: Updated for version 0.8.1
  5472. games/extremetuxracer: Updated maintainer email
  5473. games/f1spirit: Patch for gcc >= 6.x.
  5474. games/fbalpha: Removed (no maintainer)
  5475. games/fceux: Updated for version 2.4.0.
  5476. games/ffgo: Fixed dep info
  5477. games/fgo: Fix download URL.
  5478. games/fifengine: Fixed dep info
  5479. games/fifengine: Updated for version 0.4.2.
  5480. games/fizmo: Remove template comment.
  5481. games/flare-game: updated for version 1.12
  5482. games/flare-game: updated for version 1.13.04
  5483. games/flare: Update DEP.
  5484. games/flare: updated for version 1.12
  5485. games/flare: updated for version 1.13.04
  5486. games/flare: updated homepage
  5487. games/fmsx-libretro: Removed (no maintainer)
  5488. games/foobillardplus: Change download link.
  5489. games/fortune-dharma: Handle weird source filename.
  5490. games/fortune-dune: Update slack-desc.
  5491. games/fortune-farscape: Remove template comment.
  5492. games/fortune-futurama: Remove template comment.
  5493. games/fortune-game_of_thrones: Updated for version 20210128.
  5494. games/fortune-noobfarm: Remove template comment.
  5495. games/fortune-slackware: Remove template comment.
  5496. games/fortune-starwars: Remove template comment.
  5497. games/fortune_doctor_who: Remove template comment.
  5498. games/fortune_firefly: Remove template comment.
  5499. games/freeblocks: Fix -current build.
  5500. games/freeciv: Remove .la files.
  5501. games/freeciv: updated for version 2.6.5
  5502. games/freeciv: updated for version 2.6.6
  5503. games/freeciv: updated for version 3.0.0
  5504. games/freedink: Fixed dep info
  5505. games/freedink: Update optional deps.
  5506. games/freedoom: Remove template comment.
  5507. games/freedroid: Fix 15.0 build.
  5508. games/freedroidrpg: Fix 15.0 build.
  5509. games/freeminer: Fixed dep info
  5510. games/freeminer: Updated for version 0.4.14.8+20211109_80629f4.
  5511. games/freeorion: Fix DOWNLOAD + MD5SUM.
  5512. games/freeorion: Fix build.
  5513. games/freeorion: Fixed dep info
  5514. games/freeorion: Updated for version 0.4.10.1.
  5515. games/freeorion: Updated for version 0.4.10.1.
  5516. games/frogatto: Fix FTBFS.
  5517. games/frogatto: Switch to clang, remove -Werror.
  5518. games/frotz: Updated for version 2.53.
  5519. games/frozen-bubble: Update download URL
  5520. games/frozen-bubble: Updated for version git_20170702_d6a0291
  5521. games/frozen-bubble: Updated maintainer email
  5522. games/fs-uae-arcade: Fixed dep info
  5523. games/fs-uae-launcher: Fixed dep info
  5524. games/fs-uae: Fixed dep info
  5525. games/fs-uae: Updated for version 3.1.35.
  5526. games/fs2open: Fix download links, .desktop.
  5527. games/fs2open: Fixed dep info
  5528. games/gambatte-libretro: Removed (no maintainer)
  5529. games/garden: Fix 15.0 build.
  5530. games/gargoyle: Added -fpermissive to the CCFLAGS.
  5531. games/gargoyle: Fix 15.0 build.
  5532. games/gargoyle: Removed SDL_sound dep (part of Slackware).
  5533. games/gargoyle: updated for version 2022.1
  5534. games/gemrb: Fixed dep info in README
  5535. games/gemrb: Updated for version 0.9.0.
  5536. games/gens-gs: Removed (no maintainer).
  5537. games/ggmud: Updated for version 0.9.4.
  5538. games/glPortal: Fix 15.0 build.
  5539. games/glPortal: Removed (will not build against bullet 3.x, ran out of patience).
  5540. games/glPortal: Update DEP.
  5541. games/glbsp: Better icons and .desktop.
  5542. games/glestae: Fixed dep info
  5543. games/glob2: Added more patches to let it build.
  5544. games/glob2: Fixed dep info
  5545. games/glob2: Patch for the newer gccs.
  5546. games/gnogograms: Fix build.
  5547. games/gnonograms: Fixed dep info
  5548. games/gnubg: Removed autogen.sh as running it breaks build.
  5549. games/gnubg: Updated for version 1.06.002.
  5550. games/gnugo: Pass -fcommon for gcc >= 10.x.
  5551. games/gnurobbo: Fix 15.0 build.
  5552. games/golly: New-style icons.
  5553. games/goonies: Patch for gcc >= 6.x.
  5554. games/gottet: Updated for version 1.2.0.
  5555. games/gtkballs: New-style icons; setgid binary.
  5556. games/gtklife: Build with gtk+2.
  5557. games/gw-libretro: Removed (no maintainer)
  5558. games/gzdoom-legacy: Fix -current build.
  5559. games/gzdoom-legacy: Fixed dep info in README
  5560. games/gzdoom-legacy: Update DEP.
  5561. games/gzdoom: Fixed dep info
  5562. games/gzdoom: Updated for version 4.7.0.
  5563. games/hack-of-life: Icon and .desktop.
  5564. games/hatari: Remove template comment.
  5565. games/hatari_tos_roms: Remove template comment.
  5566. games/haxima-nazghul: Fix 15.0 build.
  5567. games/hedgewars: Fix build on -current.
  5568. games/hedgewars: Update DEP.
  5569. games/heretic_shareware_data: Include docs in package.
  5570. games/hexen_demo_data: Fix slack-desc.
  5571. games/hexen_demo_data: Minor build tweaks.
  5572. games/hexglass: Fix 15.0 build.
  5573. games/higan: Downgrade to version 106.
  5574. games/higan: Fix shebang.
  5575. games/higan: New template.
  5576. games/higan: Updated for version 110.
  5577. games/ho1: Fix download URL.
  5578. games/homm3_shareware_data: added. Heroes III demo data for VCMI.
  5579. games/icebreaker: New-style icons.
  5580. games/ifm: Fix 15.0 build.
  5581. games/img2xterm: Patch for imagemagick >=7.x.
  5582. games/img2xterm: Remove template comment.
  5583. games/img2xterm: Update README.
  5584. games/instead: Update DEP.
  5585. games/ioquake3: Fixed dep info
  5586. games/iortcw: Fixed dep info
  5587. games/jackhammer: Removed (No maintainer).
  5588. games/jezzball-kazzmir: Fix -current build.
  5589. games/jfsw: Fixed dep info in README
  5590. games/jfsw: Updated for version 20210725_716e1e3.
  5591. games/jfsw_demo_data: Simplify script.
  5592. games/jfsw_hires_pack: Updated for version 20201205_r21.
  5593. games/jfsw_registered_data: Add ogg quality option.
  5594. games/jfsw_twin_dragon: Remove template comment.
  5595. games/jfsw_wanton_destruction: Remove template comment.
  5596. games/jzintv: Fix -current build, allow ROMs in pkg.
  5597. games/kardsgt: Update for new qt4, fix icons.
  5598. games/kildclient: Add missing requires to info file.
  5599. games/knights: Removed (added to Slackware).
  5600. games/koules: Fix -current build.
  5601. games/koules: Fix slack-desc.
  5602. games/larn: Fix 15.0 build.
  5603. games/lgogdownloader: Fix download URL.
  5604. games/lgogdownloader: removed liboauth requirement
  5605. games/lgogdownloader: updated for version 3.8
  5606. games/lgogdownloader: updated for version 3.9
  5607. games/libretro-2048: Removed (no maintainer)
  5608. games/libretro-desmume: Removed (no maintainer)
  5609. games/libretro-fceumm: Removed (no maintainer)
  5610. games/libretro-handy: Removed (no maintainer)
  5611. games/libretro-prboom: Removed (no maintainer)
  5612. games/libretro-reicast: Removed (no maintainer)
  5613. games/libretro-vecx: Removed (no maintainer)
  5614. games/libretro-yabause: Removed (no maintainer)
  5615. games/lightyears: Fix download URL.
  5616. games/liquidwar6: Fix -current build, include extra maps.
  5617. games/lmarbles: New-style icons.
  5618. games/lmpc: Fix -current build.
  5619. games/lutris: Update DEP.
  5620. games/lutris: Update DEP.
  5621. games/m64py: Build using qt5
  5622. games/m64py: Updated for version 0.2.5.
  5623. games/madbomber: New-style icons.
  5624. games/maelstrom: Updated for version 3.0.7.
  5625. games/mame: Align with template
  5626. games/mame: Update DEP.
  5627. games/mame: Updated for version 0.237.
  5628. games/mame: Updated for version 0.240.
  5629. games/manaplus: Fix download URL.
  5630. games/mangband: Fix 15.0 build.
  5631. games/marathon-data: Updated for version 20210408.
  5632. games/marathon-infinity-data: Updated for version 20210408.
  5633. games/marathon2-data: Updated for version 20210408.
  5634. games/mari0: New-style icons.
  5635. games/mars: Fix 15.0 build.
  5636. games/mars: Fixed dep info
  5637. games/meandmyshadow: Update DEP.
  5638. games/mednafen: Update DEP.
  5639. games/mednafen: Updated for version 1.29.0.
  5640. games/mednaffe: Fix old-style icon.
  5641. games/megaglest: Fix 15.0 build.
  5642. games/megaglest: Fixed dep info
  5643. games/megamario: New-style icons, fix music.
  5644. games/mgba: Fixed dep info
  5645. games/micropolis: New-style icons.
  5646. games/micropolis: glibc-2.27 requires IEEE math error reporting.
  5647. games/minetest: Fixed dep info
  5648. games/minetest: Updated for version 5.4.1, patch for gcc >= 11.x.
  5649. games/mininim: Fix -current build.
  5650. games/miscom: Remove template comment.
  5651. games/mog: Removed SDL_sound dep (part of Slackware).
  5652. games/mrboom: Fix 15.0 build.
  5653. games/mrboom: Update DEP.
  5654. games/mrboom: Update MD5SUM.
  5655. games/mrrescue: New-style icons.
  5656. games/mupen64plus: Patch for gcc >= 10.x.
  5657. games/mupen64plus: Updated for version 2.5.9.
  5658. games/nFlood: Fix 15.0 build.
  5659. games/naev: Fix 15.0 build.
  5660. games/naev: Fixed dep info
  5661. games/nblood: Update DEP.
  5662. games/nblood: Updated for version 1.01+20211016_b90417ed8.
  5663. games/ncursesoflife: Remove template comment.
  5664. games/nestopia: Fixed dep info
  5665. games/nethack: Removed (added to Slackware).
  5666. games/neverball: Patch for gcc >= 10.x.
  5667. games/neverball: Update DEP.
  5668. games/nevernoid: Install doinst.sh.
  5669. games/nevernoid: New-style icons.
  5670. games/nexuiz: Remove template comment.
  5671. games/ninvaders: Fix 15.0 build.
  5672. games/njam: misc cleanups
  5673. games/nlarn: Fix 15.0 build.
  5674. games/nlarn: Set our CFLAGS, disable -Werror, use ncurses6-config.
  5675. games/noteye: Switch to clang.
  5676. games/noteye: Updated for version 8.4.
  5677. games/notpacman: Remove template comment.
  5678. games/nottetris2: Remove template comment.
  5679. games/nsuds: Fix 15.0 build.
  5680. games/nuvie: Fix 15.0 build.
  5681. games/nxengine-libretro: Removed (no maintainer)
  5682. games/o2em: Fix -current build.
  5683. games/oblige-legacy4: New-style icons.
  5684. games/oblige: Fix -current build.
  5685. games/odamex: Add SDL2 option.
  5686. games/odamex: Add missing diff.
  5687. games/odamex: Updated for version 0.9.5.
  5688. games/oolite: Fix build.
  5689. games/oolite: Fixed dep info
  5690. games/oolite: Remove espeak dep.
  5691. games/open-adventure: Fixed dep info
  5692. games/open-adventure: New-style icons, HTML docs.
  5693. games/open-adventure: Update DEP.
  5694. games/openarena: Fixed dep info
  5695. games/openclonk: Fixed dep info
  5696. games/openclonk: Updated for version 8.0.
  5697. games/opendune: Fix -current build.
  5698. games/openjazz: Updated for version 20190106.
  5699. games/openlierox: Updated for version 20170313_3825306.
  5700. games/openlierox: Updated for version 20200424_d316c14.
  5701. games/openmortal: Fix -current build.
  5702. games/openmsx-catapult: Updated for version 17.0.
  5703. games/openmsx-debugger: Updated for version 20220221.
  5704. games/openmsx: Updated for version 17.0
  5705. games/openmw: Fixed dep info
  5706. games/openmw: Updated for version 0.47.0.
  5707. games/openmw: Use correct github URL.
  5708. games/opensonic: Add missing diff.
  5709. games/opensonic: Fix download URL.
  5710. games/openspades: Fixed dep info
  5711. games/openttd: Pass an additional flag for the newer icu4c.
  5712. games/opentyrian: Fix -current build.
  5713. games/openyahtzee: New-style icons.
  5714. games/ostrichriders: Old-style icon.
  5715. games/pacman-arena: Fix -current build.
  5716. games/pacman: Remove NUMJOBS from README.
  5717. games/pacman: Remove NUMJOBS.
  5718. games/pacman: Update DEP.
  5719. games/pangzero: Remove template comment.
  5720. games/parallel-n64: Removed (no maintainer)
  5721. games/pcgen: Add missing patch file.
  5722. games/pcgen: Updated for version 6.09.05.
  5723. games/pcsx2: Removed by maintainer request.
  5724. games/pcsx2: Update DEP.
  5725. games/pcsxr: Updated for version 1.9.95.
  5726. games/penguin-command: New-style icons.
  5727. games/pentagram: New-style icons.
  5728. games/picodrive: Removed (no maintainer)
  5729. games/pingus: Add a missing header (for the newer glibc).
  5730. games/pingus: Fix building on -current
  5731. games/pingus: Updated maintainer email
  5732. games/pioneer: Fixed dep info
  5733. games/planetblupi: Update DEP.
  5734. games/pokerth: Updated for version 20200721_a333185.
  5735. games/pokerth: Use protobuf3 as a dependency.
  5736. games/pom1: New-style icons.
  5737. games/powerslave_demo_data: Remove template comment.
  5738. games/ppsspp: Update DEP.
  5739. games/prboom-plus: Fixed dep info
  5740. games/prboom-plus: Updated for version 2.6.1um, fix segfault.
  5741. games/prboom: Fix 15.0 build.
  5742. games/prosystem-libretro: Removed (no maintainer)
  5743. games/pushover: Fix download URL.
  5744. games/puzzles: Updated for version 20211212.b56c994
  5745. games/puzzles: Updated for version 20220128.c43a34f.
  5746. games/pybik: Fix download URL, parallel build.
  5747. games/pybik: Fixed dep info
  5748. games/pychess: Fixed dep info
  5749. games/pychess: Switch to python-3.x.
  5750. games/pysolfc-extra-cardsets: Fix homepage URL.
  5751. games/pysolfc: Patched for pillow-6.x.
  5752. games/pysolfc: Update DEP.
  5753. games/pysolfc: Updated for version 2.14.1.
  5754. games/qmc2: Patch for qt >= 5.15.x and gcc >= 10.x.
  5755. games/qstat: Removed (No maintainer).
  5756. games/qtads: Fixed dep info
  5757. games/qtads: Updated for version 3.2.0.
  5758. games/qtsixa: Removed (FTBFS, unmaintained, replace someday with "sixad").
  5759. games/quake3_shareware_data: update copyright years
  5760. games/quakeforge: Remove .la files.
  5761. games/quakespasm: Added (ID's Quake port).
  5762. games/quakespasm: Update DEP.
  5763. games/qzdl: Updated for version 3.2.2.3+20211008_9c76408.
  5764. games/qzdoom: Fix -current build.
  5765. games/qzdoom: Fixed dep info
  5766. games/redeclipse: Update DEP.
  5767. games/rejoystick: Removed (no maintainer).
  5768. games/residualvm: Updated for version 0.3.1.
  5769. games/retux: Updated for version 1.6.1.
  5770. games/rezerwar: Fix 15.0 build.
  5771. games/rlvm: Fix 15.0 build, better parallel support.
  5772. games/rlvm: Patch for the newer gcc.
  5773. games/rlvm: Remove NUMJOBS.
  5774. games/roadfighter: Patch for the newer gcc.
  5775. games/roadfighter: Removed SDL_sound dep (part of Slackware).
  5776. games/roccat-tools: Fix build.
  5777. games/roccat-tools: Patch to correctly find the newer harfbuzz.
  5778. games/rocksndiamonds: Fix 15.0 build.
  5779. games/rogue: Fix 15.0 build.
  5780. games/rogue: Fix build failure with latest ncurses.
  5781. games/rott: New-style icons.
  5782. games/sauerbraten: Updated email
  5783. games/sauerbraten: Updated for version 2020_12_27
  5784. games/sauerbraten: fix email
  5785. games/scid_vs_pc: Updated for version 4.22.
  5786. games/scummvm-libretro: Removed (no maintainer)
  5787. games/scummvm: Avoid breakage with the gold linker on i*86.
  5788. games/scummvm: Fixed dep info in README
  5789. games/scummvm: Updated for version 2.5.1.
  5790. games/sdlpop: Update DEP.
  5791. games/sdlpop: Updated for version 1.22.
  5792. games/simplesok: Update DEP.
  5793. games/simsu: Updated for version 1.4.0.
  5794. games/skulltag: Fix README.
  5795. games/skulltag: New-style icons.
  5796. games/smc: New-style icons.
  5797. games/sms_sdl: New-style icons.
  5798. games/snes9x: Downgrade to v1.59 due to crashes.
  5799. games/snes9x: Fixed dep info
  5800. games/snes9x: Support alternatives for ninja
  5801. games/solarus: Fixed dep info
  5802. games/solarwolf: Fix -current build.
  5803. games/solarwolf: Remove template comment.
  5804. games/speed-dreams: Fixed dep info
  5805. games/speed-dreams: Patch for the newer gcc.
  5806. games/speed-dreams: Updated for version 2.2.3_r7616.
  5807. games/spring: Fix 15.0 build.
  5808. games/spring: Fixed dep info
  5809. games/srb2: Update DEP.
  5810. games/srb2: Updated for version 2.2.9.
  5811. games/starfighter: Update DEP.
  5812. games/steam: Fixed dep info
  5813. games/steam: Updated for version 1.0.0.70
  5814. games/steam: Updated for version 1.0.0.72
  5815. games/steam: Updated for version 1.0.0.74
  5816. games/steem: Removed (dead project; use hatari instead).
  5817. games/stella-libretro: Removed (no maintainer)
  5818. games/stella: Update DEP.
  5819. games/stella: Updated for version 6.5.3.
  5820. games/stockfish: Fix download URL.
  5821. games/stockfish: Updated for version 14.1.
  5822. games/stone_soup: Update DEP.
  5823. games/stone_soup: Update DEP.
  5824. games/stratagus: Fix -current build.
  5825. games/stratagus: Fix README.
  5826. games/stratagus: Fixed dep info
  5827. games/sumeria: Remove template comment.
  5828. games/sumwars: Removed (ftbfs).
  5829. games/supermariowar: Updated for version 2020_04_25.
  5830. games/supertux: Fixed dep info
  5831. games/supertux: Updated for version 0.6.2_rc.1.
  5832. games/supertux: i486-->i586
  5833. games/supertuxkart: Fix building with SDL2 >= 2.0.14.
  5834. games/supertuxkart: Fixed dep info
  5835. games/supertuxkart: Updated for version 1.3.
  5836. games/syobonaction: Updated for version 0.2+20210411_f2e8629.
  5837. games/taipan: Remove template comment.
  5838. games/talkfilters: Remove .la files.
  5839. games/tanglet: Updated for version 1.5.5.
  5840. games/tbftss: Update DEP.
  5841. games/teeworlds: Update DEP.
  5842. games/tkgames: Added (a collection of card and puzzle games).
  5843. games/tkgames: Fix permission.
  5844. games/tkgames: Remove old template CWD.
  5845. games/tome: Fixed dep info
  5846. games/tome: Updated for version 1.6.0.
  5847. games/torcs: Added -fpermissive to the CXXFLAGS.
  5848. games/torcs: New-style icons.
  5849. games/trackballs: Added the new dependency guile2.2.
  5850. games/trackballs: Update DEP.
  5851. games/trackballs: Updated for version 1.3.3.
  5852. games/transfusion: Removed (dead project; play nblood instead).
  5853. games/tty-solitaire: Fix 15.0 build.
  5854. games/tuxnes: Fix 15.0 build.
  5855. games/typespeed: Fix 15.0 build.
  5856. games/typhoon_2001: Fix README.
  5857. games/typhoon_2001: Fix sound.
  5858. games/typhoon_2001: Put exe in /usr/games.
  5859. games/tyrquake-libretro: Removed (no maintainer)
  5860. games/ucr: Removed (broken; play aklabeth instead).
  5861. games/ufoai: Fix -current build.
  5862. games/ultimatestunts: Use a single make job.
  5863. games/unknown-horizons: Update DEP.
  5864. games/unnethack: Updated for version 6.0.4_20220203_1f061e93b.
  5865. games/unvanquished: Fixed dep info
  5866. games/unvanquished: Update DEP.
  5867. games/unvanquished: Update DEP.
  5868. games/uqm-megamod: Added (space adventure game).
  5869. games/uqm-megamod: Fix build with MAKEFLAGS.
  5870. games/uqm: Fixed dep info
  5871. games/uqm: Remove template comment.
  5872. games/uqm_3domusic: Remove template comment.
  5873. games/uqm_remixes: Remove template comment.
  5874. games/uqm_voice: Remove template comment.
  5875. games/vbam: Fix -current build, enhancements.
  5876. games/vbam: Fix wxPython vs. wxGTK3 mess. Again.
  5877. games/vbam: Update DEP.
  5878. games/vcmi-core: new maintainer
  5879. games/vcmi-core: update copyright years
  5880. games/vcmi-resolutions: new maintainer
  5881. games/vcmi-resolutions: update for version 20141001
  5882. games/vcmi-resolutions: updated for version 20151113
  5883. games/vcmi-wog: new maintainer
  5884. games/vcmi-wog: update copyright years
  5885. games/vcmi. update for version 0.99_gitb310f2e
  5886. games/vcmi: Update DEP.
  5887. games/vcmi: Update DEP.
  5888. games/vcmi: Update DEP.
  5889. games/vcmi: Updated for version 569dv9ed.
  5890. games/vcmi: new maintainer and updated for version 0.99_gite219e1f
  5891. games/vcmi: updated for version 0.99_git20220130
  5892. games/vectoroids: Add .desktop and icons.
  5893. games/vegastrike: Adjustments for -current.
  5894. games/vegastrike: Fix 15.0 build.
  5895. games/vegastrike: Fixed dep info
  5896. games/vera: Various fixes and enhancements.
  5897. games/virtualjaguar-libretro: Removed (no maintainer)
  5898. games/vitaquake2-libretro: Updated for version aed906ef.
  5899. games/vkQuake: Fixed dep info
  5900. games/vms-empire: Fix 15.0 build.
  5901. games/voxelands: Fixed dep info
  5902. games/voxelands: Updated for version 1709.00.
  5903. games/wargus: Add missing diff.
  5904. games/wargus: Fix -current build.
  5905. games/wargus: Fixed dep info
  5906. games/warmux: Patch for gcc >= 6.x.
  5907. games/warmux: Removed.
  5908. games/warsow: Fix 15.0 build.
  5909. games/warsow: Fixed dep info
  5910. games/warzone2100: Fixed dep info
  5911. games/warzone2100: updated for version 4.0.1
  5912. games/warzone2100: updated for version 4.1.0
  5913. games/warzone2100: updated for version 4.1.1
  5914. games/warzone2100: updated for version 4.1.3
  5915. games/warzone2100: updated for version 4.2.0
  5916. games/warzone2100: updated for version 4.2.1
  5917. games/warzone2100: updated for version 4.2.3
  5918. games/warzone2100: updated for version 4.2.4
  5919. games/warzone2100: updated for version 4.2.5
  5920. games/warzone2100: updated homepage
  5921. games/waterCloset: Fix download URL.
  5922. games/waterCloset: Update DEP.
  5923. games/wesnoth: Fix 15.0 build, better parallel support.
  5924. games/wesnoth: Remove NUMJOBS.
  5925. games/wesnoth: Update DEP.
  5926. games/wesnoth: Updated email
  5927. games/wesnoth: Updated for version 1.14.17
  5928. games/wesnoth: Updated for version 1.16.1
  5929. games/widelands: Update DEP.
  5930. games/widelands: Updated for version 1.0
  5931. games/widelands: Updated for version build21.
  5932. games/widelands: Updated maintainer email
  5933. games/wmquake: Removed (dead project; dumb idea anyway).
  5934. games/wolf4sdl: New-style icons.
  5935. games/wordwarvi: New-style icons.
  5936. games/worldofgoo: New maintainer.
  5937. games/xarchon: Fix -current build.
  5938. games/xcowsay: Remove template comment.
  5939. games/xcpc: Updated for version 0.37.0, changed homepage.
  5940. games/xmoto: Fixed dep info
  5941. games/xonotic: Fix 15.0 build.
  5942. games/xonotic: Remove .la files.
  5943. games/xonotic: Update DEP.
  5944. games/xroar-roms: Remove template comment.
  5945. games/xroar: Updated for version 0.37.1.
  5946. games/xspacewarp: Fix window close button.
  5947. games/xu4: Fix build on -current.
  5948. games/xu4: New-style icons, disable alt-x.
  5949. games/xu4: Remove template comment, fix URLs.
  5950. games/xye: Disabled narrowing warnings.
  5951. games/yabause: Fix 15.0 build.
  5952. games/yabause: Fix building (using the qt version).
  5953. games/yabause: Fixed dep info
  5954. games/yae: Fix audio, X close button.
  5955. games/yahtzee: Fix MD5SUM.
  5956. games/yahtzee: New-style icons.
  5957. games/yamagi-quake2: Fixed dep info
  5958. games/yamagi-quake2: Updated for version 7.45.
  5959. games/yar: Better icons.
  5960. games/yar: New-style icon.
  5961. games/z26: Fix build on -current. Again.
  5962. games/z26: Remove template comment.
  5963. games/z26: Removed (broken, don't care).
  5964. games/z26v2: Removed (use stella instead).
  5965. games/z26v3: Remove template comment.
  5966. games/zdbsp: Minor man page nitpick.
  5967. games/zdoom: Fixed dep info in README
  5968. games/zdoom: New-style icons, fix -current build.
  5969. games/zdoom: Update DEP.
  5970. games/zennode: Update slack-desc, add man page.
  5971. games/znake: Fix 15.0 build.
  5972. games/zoom: Bugfix patches, new icons.
  5973. games/zork: Updated for version 20211011.
  5974. games/zsnes: Fix -current build, new-style icons.
  5975. games/zsnes: Remove statifier support (broken).
  5976. games/ztools: Fix -current build.
  5977. gis/CreateCloudMap: Removed (Service is shut down).
  5978. gis/CreateCloudMap: Update DEP.
  5979. gis/Fiona: Updated dependencies.
  5980. gis/Fiona: Updated for version 1.8.20.
  5981. gis/Geohash: Removed Python 2 support.
  5982. gis/OTB: Updated for Slackware 15.
  5983. gis/OTB: Updated for Slackware 15.
  5984. gis/OTB: Updated for version 7.3.0.
  5985. gis/OWSLIB: Updated dependencies.
  5986. gis/OWSLib: Updated for version 0.24.1.
  5987. gis/SFCGAL: Updated for Slackware 15.
  5988. gis/Shapely: Fix Download URL
  5989. gis/Shapely: New maintainer.
  5990. gis/Shapely: Updated dependencies.
  5991. gis/Shapely: Updated for version 1.8.0
  5992. gis/cartopy: Updated for version 0.19.0.post1.
  5993. gis/cartopy: Updated for version 0.20.1 + new maintainer.
  5994. gis/cartopy: Updated for version 0.20.2
  5995. gis/cartopy: update dependency in info file
  5996. gis/cligj: Updated for version 0.7.1 and Python 3.
  5997. gis/foxtrotgps: Updated for version 1.2.2.
  5998. gis/gdal: Apply upstream patch for the newer poppler.
  5999. gis/gdal: Fix location of the new mariadb headers.
  6000. gis/gdal: Fixed dep info
  6001. gis/gdal: Fixed dep info again
  6002. gis/gdal: Remove .la files.
  6003. gis/gdal: Updated dependencies.
  6004. gis/gdal: Updated for version 3.3.0.
  6005. gis/gdal: Updated for version 3.3.2 + new maintainer.
  6006. gis/gdal: Updated for version 3.3.3
  6007. gis/gdal: Updated for version 3.4.0
  6008. gis/gdal: Updated for version 3.4.1
  6009. gis/gdal: fix building when freexl is installed.
  6010. gis/geogig-py: Removed (No maintainer).
  6011. gis/geogig: Removed (No maintainer).
  6012. gis/geographiclib-python: Removed Python 2 support.
  6013. gis/geojson: Updated dependencies.
  6014. gis/geopandas: update DEP
  6015. gis/geopy: Updated dependencies.
  6016. gis/geos: Fix tarball handling.
  6017. gis/geos: Updated for Slackware 15.
  6018. gis/geos: Updated for version 3.10.0 + new maintainer.
  6019. gis/geos: Updated for version 3.10.1
  6020. gis/geos: Updated for version 3.10.2
  6021. gis/geoserver-control-flow: Removed (No maintainer).
  6022. gis/geoserver-css: Removed (No maintainer).
  6023. gis/geoserver-javascript: Removed (No maintainer).
  6024. gis/geoserver-oracle: Removed (No maintainer).
  6025. gis/geoserver-pyramid: Removed (No maintainer).
  6026. gis/geoserver-python: Removed (No maintainer).
  6027. gis/geoserver-wps: Removed (No maintainer).
  6028. gis/geoserver: Removed (No maintainer).
  6029. gis/gj2ascii: Update DEP
  6030. gis/grass: Fix for GDAL 3.3.
  6031. gis/grass: Fixed dep info
  6032. gis/laszip: Don't ship *.la files.
  6033. gis/laszip: Remove .la files.
  6034. gis/laszip: Remove .la files.
  6035. gis/libLAS: Patch for the newer boost.
  6036. gis/libgeotiff: Don't ship *.la files.
  6037. gis/libgeotiff: Remove .la files.
  6038. gis/libgeotiff: Remove .la files.
  6039. gis/librasterlite: Fix build on 15.0.
  6040. gis/librasterlite: Remove .la files.
  6041. gis/libspatialindex: Remove .la files.
  6042. gis/libspatialite: Remove .la files.
  6043. gis/libspatialite: Update DEP.
  6044. gis/libspatialite: Updated for version 5.0.1
  6045. gis/mapnik: Fixed dep info in README
  6046. gis/mapnik: Updated for version 3.1.0.
  6047. gis/merkaartor: Fix build for Qt 5.15.
  6048. gis/merkaartor: Updated dependencies.
  6049. gis/merkaartor: Updated for version 0.19.0
  6050. gis/mobac: Removed (No maintainer).
  6051. gis/navit: Updated for version 0.5.6.
  6052. gis/opencpn: Update README.
  6053. gis/opencpn: Update dep.
  6054. gis/opencpn: Updated for version 5.2.4.
  6055. gis/openorienteering-mapper: updated to version 0.9.5
  6056. gis/osgEarth: Updated for version 3.1
  6057. gis/osgEarth: Updated for version 3.2
  6058. gis/osm-gps-map: Remove .la files.
  6059. gis/osm2pgrouting: Updated for version 2.3.8.
  6060. gis/ossim: Updated for version 2.12.0.
  6061. gis/pgsql-ogr-fdw: Updated for version 1.1.1.
  6062. gis/pktools: Remove libLAS support.
  6063. gis/pointcloud: Update website.
  6064. gis/polyline: Removed Python 2 support.
  6065. gis/postgis: Updated for version 3.1.2.
  6066. gis/postgis: Updated for version 3.1.4.
  6067. gis/proj-data: Fix VERSION.
  6068. gis/proj-data: Updated for version 1.5.0.
  6069. gis/proj-data: Updated for version 1.7 + new maintainer.
  6070. gis/proj-data: Updated for version 1.8
  6071. gis/proj-data: Updated for version 1.9
  6072. gis/proj: Remove la file.
  6073. gis/proj: Updated for version 8.1.1 + new maintainer.
  6074. gis/proj: Updated for version 8.2.0
  6075. gis/proj: Updated for version 8.2.1
  6076. gis/proj: Updated for version 9.0.0
  6077. gis/pyproj: Updated dependencies.
  6078. gis/pyproj: Updated for version 3.2.1 + new maintainer.
  6079. gis/pyshp: New maintainer.
  6080. gis/pyshp: Removed Python 2 support.
  6081. gis/pyshp: Updated for version 2.2.0
  6082. gis/python-mapnik: Updated for version git4a6f35d.
  6083. gis/python-pygeos: Updated for version 0.10.2 + new maintainer
  6084. gis/python-pygeos: Updated for version 0.11.1
  6085. gis/python-pygeos: Updated for version 1.12.0
  6086. gis/python3-basemap: Fix build on -current.
  6087. gis/python3-basemap: Update DEP
  6088. gis/python3-cartopy: Renamed from gis/cartopy
  6089. gis/python3-pyproj: Fix slack-desc.
  6090. gis/python3-pyproj: renamed from gis/pyproj
  6091. gis/python3-pyshp: renamed from gis/pyshp
  6092. gis/python3-shapely: Fix slack-desc.
  6093. gis/python3-shapely: renamed from gis/Shapely, updated for version 1.8.1.post1
  6094. gis/python3-xarray: renamed from python/xarray and updated for version 2022.03.0
  6095. gis/pytrainer: Fix dependency.
  6096. gis/pytrainer: Update DEP.
  6097. gis/qgis: Fixed dep info
  6098. gis/qgis: Improve build process.
  6099. gis/qgis: Patch a cmake bug and point at current's sip3.
  6100. gis/qgis: Update DEP.
  6101. gis/qgis: Update DEP.
  6102. gis/qgis: Updated for version 3.20.0.
  6103. gis/qmapshack: Fixed dep info
  6104. gis/qmapshack: Updated for version 1.16.1.
  6105. gis/rasterio: Updated dependencies.
  6106. gis/rasterio: Updated for version 1.2.6.
  6107. gis/readosm: Remove .la files.
  6108. gis/saga-gis: Fix typo in script.
  6109. gis/saga-gis: Fix wxPython/wxGTK3 stupidity.
  6110. gis/saga-gis: Remove .la files.
  6111. gis/saga-gis: Updated dependencies.
  6112. gis/spatialite-tools: Updated for version 4.3.0.
  6113. gis/spatialite_gui: Removed.
  6114. gis/tangogps: Fix build on 15.0.
  6115. gis/udig: Removed (No maintainer).
  6116. gis/viking: Fix for gcc >= 10.x.
  6117. gis/viking: Fixed dep info
  6118. gis/whitebox-tools: Updated for version 1.5.0.
  6119. git/cargo: avoid writing to $HOME/.cargo
  6120. git/gitignore: Add .tar.zst in gitignore.
  6121. git/pyproj: Updated for version 3.3.0
  6122. graphics/Alchemy: removed.
  6123. graphics/Blender: Updated for version 2.92.0.
  6124. graphics/Blender: Updated for version 2.93.0
  6125. graphics/Blender: Updated for version 2.93.1
  6126. graphics/Blender: Updated for version 2.93.2
  6127. graphics/Blender: Updated for version 2.93.3
  6128. graphics/Blender: Updated for version 2.93.4
  6129. graphics/Blender: Updated for version 2.93.5
  6130. graphics/Blender: Updated for version 2.93.6
  6131. graphics/Blender: Updated for version 3.0.0
  6132. graphics/Blender: Updated for version 3.0.1
  6133. graphics/CairoSVG: Fixed dep info
  6134. graphics/FreeCAD: Updated for version 0.18.4.
  6135. graphics/FreeCAD: Updated for version 0.19.2
  6136. graphics/GPS: Update README
  6137. graphics/GraphicsMagick: Added a note to the README.
  6138. graphics/GraphicsMagick: Fixed dep info in README
  6139. graphics/GraphicsMagick: Minor build quibble.
  6140. graphics/GraphicsMagick: Remove .la files.
  6141. graphics/GraphicsMagick: Updated for version 1.3.36.
  6142. graphics/LDView: Fix 15.0 build.
  6143. graphics/LDView: Updated for version 4.4.1
  6144. graphics/LDraw_data: Updated for version 202201.
  6145. graphics/OpenCASCADE: Fix building with cmake >= 3.20.x.
  6146. graphics/OpenCASCADE: Modify for latest VTK
  6147. graphics/OpenSubdiv: Distinct SRCNAM no longer needed
  6148. graphics/OpenSubdiv: Fix github URL, remove static libs.
  6149. graphics/OpenSubdiv: Fixed dep info
  6150. graphics/OpenSubdiv: Fixed dep info in README
  6151. graphics/OpenSubdiv: Updated for version 3.4.4
  6152. graphics/Pixie: Fix 15.0 build.
  6153. graphics/PyMOL: Fix REQUIRES for python2.
  6154. graphics/SPIRV-Tools: Removed (included in -current).
  6155. graphics/SweetHome3D: Updated for version 6.6.
  6156. graphics/SweetHome3D: Use zulu-openjdk8.
  6157. graphics/SweetHome3d: Fixed dep info (-openjdk8)
  6158. graphics/VariCAD: Fix download URLs.
  6159. graphics/VariCAD: Fix support for PRINT_PACKAGE_NAME
  6160. graphics/Vulkan-Tools: Removed (included in -current).
  6161. graphics/Vulkan-Tools: Update DEP.
  6162. graphics/XnViewMP: Fixed dep info
  6163. graphics/XnViewMP: Update MD5SUM, VERSION.
  6164. graphics/advancecomp: Fix 15.0 build.
  6165. graphics/autotrace: Fix 15.0 build.
  6166. graphics/baires: Fix -current build.
  6167. graphics/barcode: Fix 15.0 build.
  6168. graphics/bdfedit: Remove template comment.
  6169. graphics/brlcad: Fixed dep info
  6170. graphics/brlcad: Updated for version 7.32.4.
  6171. graphics/brlcad: updated homepage
  6172. graphics/cam: Added (display images in a terminal).
  6173. graphics/converseen: Fixed dep info in README
  6174. graphics/converseen: Switch to https.
  6175. graphics/converseen: Updated for version 0.9.9.1.
  6176. graphics/converseen: Updated for version 0.9.9.2.
  6177. graphics/converseen: Updated for version 0.9.9.3.
  6178. graphics/converseen: Updated for version 0.9.9.4.
  6179. graphics/darktable: Fixed dep info
  6180. graphics/darktable: Updated for version 3.4.0.
  6181. graphics/dblatex: Update MD5SUM.
  6182. graphics/digikam: Removed (added to Slackware).
  6183. graphics/discwrapper: Removed (No maintainer).
  6184. graphics/draftsight: Removed (No maintainer).
  6185. graphics/enblend-enfuse: Add a missing header.
  6186. graphics/enblend-enfuse: Updated for version 20191019_4c30a326b3f4.
  6187. graphics/entangle: Fixed dep info
  6188. graphics/entangle: Remove .la files.
  6189. graphics/exact-image: Fix build if efl installed.
  6190. graphics/exact-image: Patch for giflib >= 5.2.x.
  6191. graphics/exact-image: Updated for Slackware 15.
  6192. graphics/fbida: Fix README.
  6193. graphics/fbida: Patch for gcc >= 10.x.
  6194. graphics/fbida: Remove template comment.
  6195. graphics/fbv: Remove template comment.
  6196. graphics/fim: Updated for version 0.6_trunk.
  6197. graphics/findimagedupes: Updated for version 2.19.1.
  6198. graphics/flameshot: Fixed dep info
  6199. graphics/flpsed: Remove template comment.
  6200. graphics/fontforge: Don't ship .la files
  6201. graphics/fontforge: Update the pre-install catcher.
  6202. graphics/fontforge: Updated for version 20201107.
  6203. graphics/fotowall: Updated for version 1.0.
  6204. graphics/fotoxx: Removed (ornery requirements; I'm done)
  6205. graphics/freewrl: Fixed dep info
  6206. graphics/freewrl: Removed (no maintainer, ftbfs).
  6207. graphics/frescobaldi: Updated for version 3.1.3.
  6208. graphics/fyre: fix build
  6209. graphics/gcolor2: Patch for gcc >= 10.x.
  6210. graphics/gdk-pixbuf-psd: Remove template comment.
  6211. graphics/gifsicle: Updated for version 1.93.
  6212. graphics/gimagereader: Updated for version 20201201_2d32618.
  6213. graphics/gimagereader: Updated for version 3.4.0.
  6214. graphics/gimp-feca_hdr-plugin: Updated for version 2018.07.28.
  6215. graphics/gimp-lqr-plugin: Fix building on -current.
  6216. graphics/gimp-plugin-bimp: Updated for version 2.0.
  6217. graphics/gimp-plugin-bimp: Updated for version 2.5.
  6218. graphics/gimp-plugin-bimp: Updated for version 2.6
  6219. graphics/gimp-wideangle-plugin: Fix 15.0 build.
  6220. graphics/glslang: Removed (added to Slackware).
  6221. graphics/gmic: Fixed dep info
  6222. graphics/gmic: Updated for version 2.9.4.
  6223. graphics/gnome-web-photo: Removed.
  6224. graphics/goocanvas: Fix underlinking.
  6225. graphics/goocanvas: Remove .la files.
  6226. graphics/gource: Update DEP.
  6227. graphics/gpaint: Fix underlinking against libm.
  6228. graphics/gpaint: update copyright years
  6229. graphics/gpscorrelate: Updated for version 2.0.
  6230. graphics/graphene: Removed (added to Slackware).
  6231. graphics/graphite2: Removed (added to Slackware).
  6232. graphics/graphviz: Disable the php bindings (FTB ATM).
  6233. graphics/graphviz: Remove .la files.
  6234. graphics/gthumb: Align with new template.
  6235. graphics/gthumb: Fixed build failure
  6236. graphics/gthumb: Fixed dep info
  6237. graphics/gthumb: Updated for version 3.10.3
  6238. graphics/gthumb: Updated for version 3.10.4.
  6239. graphics/gtkam: Fix 15.0 build.
  6240. graphics/heif-gimp-plugin: Updated for version 20191012_d6bea52.
  6241. graphics/hp2xx: Remove template comment.
  6242. graphics/hugin: Fix wxPython conflict.
  6243. graphics/hugin: Updated for version 2020.0.0.
  6244. graphics/icc_profiles: Fix build.
  6245. graphics/imgcurses: Added (character-based image viewer).
  6246. graphics/imgmin: Fix 15.0 build.
  6247. graphics/imgp: Fixed dep info
  6248. graphics/imgp: Updated for version 2.8.
  6249. graphics/imgp: Use systemwide dir for bash completion files
  6250. graphics/imv: Fixed dep info
  6251. graphics/imv: Updated for version 4.3.0.
  6252. graphics/inkscape: Patch for glib2 >= 2.67.3.
  6253. graphics/inkscape: Updated for version 1.0.2.
  6254. graphics/inkscape: Updated for version 1.1.
  6255. graphics/inkscape: Updated for version 1.1.1.
  6256. graphics/inkscape: Updated for version 1.1.2.
  6257. graphics/ipe: Fix 15.0 build, use LIBDIRSUFFIX.
  6258. graphics/ipe: Update DOWNLOAD url.
  6259. graphics/jpegoptim: Expand README & slack-desc.
  6260. graphics/k3d: Patch for gcc >= 7.x.
  6261. graphics/k3d: Removed (FTBFS).
  6262. graphics/kamerka: Removed (KDE4 app, untouched since 2014).
  6263. graphics/kphotoalbum: Fixed dep info in README
  6264. graphics/kphotoalbum: Fixed dep info in README
  6265. graphics/kphotoalbum: Updated for version 5.7.0.
  6266. graphics/kuickshow: Updated for version 0.10.1.
  6267. graphics/lddot: Install man page correctly.
  6268. graphics/leocad: Updated for version 21.06
  6269. graphics/leocad_pieces: Updated for version 20.03
  6270. graphics/libfpx: Fix README.
  6271. graphics/libfpx: Patch for gcc >= 10.x.
  6272. graphics/libfpx: Remove template comment.
  6273. graphics/libplacebo: Fix dep info (again)
  6274. graphics/libplacebo: Fixed dep info
  6275. graphics/libplacebo: Updated for version 3.120.3.
  6276. graphics/librecad: Fix building with the newer boost.
  6277. graphics/lilypond: Don't depend on dblatex
  6278. graphics/lilypond: Update DEP.
  6279. graphics/lilypond: Updated for version 2.22.1
  6280. graphics/luminance-hdr: Fixed dep info
  6281. graphics/luminance-hdr: Update DEP.
  6282. graphics/luminance-hdr: Updated for version 2.6.0.
  6283. graphics/luxcorerender: Add missing desktop file.
  6284. graphics/luxcorerender: Fix slack-desc, PRGNAM.
  6285. graphics/luxrender: Fix download URLs.
  6286. graphics/luxrender: Fixed dep info
  6287. graphics/luxrender: Migrated to luxcorerender 2.6.
  6288. graphics/maim: Update DEP.
  6289. graphics/makehuman: Updated for version 1.2.0+20201105183027.
  6290. graphics/mcomix3: Added (comic book reader)
  6291. graphics/mcomix: Removed (no python2 pillow in current).
  6292. graphics/meh: Remove template comment.
  6293. graphics/meshlab: Fix github filename, desktop, doinst.
  6294. graphics/meshlab: Updated for version 2021.10.
  6295. graphics/mftrace: Fix dep info (t1utils)
  6296. graphics/mirage: updated for version 0.11.1
  6297. graphics/mitsuba-blender: Removed (ftbfs).
  6298. graphics/mitsuba2: Added (replacement of mitsuba).
  6299. graphics/mitsuba: Removed (ftbfs).
  6300. graphics/mlbrot: Removed (ftb).
  6301. graphics/mozjpeg: Note zulu-openjdk*.
  6302. graphics/mozjpeg: Remove template comment.
  6303. graphics/mtpaint: update copyright years
  6304. graphics/mypaint-brushes2: Added.
  6305. graphics/mypaint-brushes2: Fix slack-desc.
  6306. graphics/mypaint: Remove json-c dep (part of Slackware).
  6307. graphics/mypaint: Updated for version 1.2.1.
  6308. graphics/mypaint: Updated for version 2.0.1.
  6309. graphics/mypaint: Use correct numpy dep.
  6310. graphics/nomacs: Updated for version 3.17.2206.
  6311. graphics/nsxiv: Added (Neo Simple X Image Viewer).
  6312. graphics/nvidia-cg-toolkit: Updated maintainer email
  6313. graphics/nvidia-texture-tools: Fix 15.0 build.
  6314. graphics/opencollada: Add a patch for the newer pcre.
  6315. graphics/opencolorio: Add net warning in README.
  6316. graphics/opencolorio: Disabled some warnings-as-errors.
  6317. graphics/opencolorio: Fix destination lib directory
  6318. graphics/opencolorio: Fix quote.
  6319. graphics/opencolorio: Remove build dir.
  6320. graphics/opencolorio: Updated for version 2.0.1
  6321. graphics/opencolorio: Updated for version 2.1.0
  6322. graphics/opencolorio: Updated for version 2.1.1
  6323. graphics/openimageio: Updated for version 2.1.19.0.
  6324. graphics/openimageio: Updated for version 2.2.15.1
  6325. graphics/openimageio: Updated for version 2.2.17.0
  6326. graphics/openimageio: Upgraded for version 2.2.19.0
  6327. graphics/openscad-mcad: Fix github filename mess.
  6328. graphics/openscad: Updated for version 2021.01.
  6329. graphics/oyranos: Fix 15.0 build.
  6330. graphics/paraview: No tabs in .info file.
  6331. graphics/paraview: Update DEP.
  6332. graphics/paraview: Updated for version 5.10.0
  6333. graphics/paraview: Updated for version 5.9.1
  6334. graphics/pcx-pixbuf-loader: Fixed dep info
  6335. graphics/pcx-pixbuf-loader: Remove template comment.
  6336. graphics/pcx-pixbuf-loader: Support alternatives for ninja
  6337. graphics/pencil2d: Fixed dep info
  6338. graphics/pencil3: Align with template
  6339. graphics/pencil3: Updated for version 3.1.0.
  6340. graphics/photivo: Fixed dep info
  6341. graphics/photivo: Removed.
  6342. graphics/photoprint: Fix building with the newer glibc.
  6343. graphics/photoprint: Removed.
  6344. graphics/photoqt: Fixed README (poppler-qt5)
  6345. graphics/photoqt: Fixed dep info
  6346. graphics/photoqt: Updated for version 2.1.1.
  6347. graphics/photoqt: Updated for version 2.5.
  6348. graphics/plotutils: Remove .la files.
  6349. graphics/povray: Updated for version 3.7.0.8.
  6350. graphics/povray: Updated for version 3.8.0_beta.2.
  6351. graphics/pqiv: Fixed dep info in README
  6352. graphics/psftools: Use https URLs, remove .la file.
  6353. graphics/pyformex: Fix 15.0 build.
  6354. graphics/pygifme: Fix 15.0 build.
  6355. graphics/qcad: Updated for version 3.26.2.0.
  6356. graphics/qcomicbook: Fix github filename.
  6357. graphics/qcomicbook: Updated for version 0.9.1 (qt5-based).
  6358. graphics/qelectrotech: Updated for version 0.8.0.
  6359. graphics/qiv: Fixed dep info in README
  6360. graphics/qiv: Remove template comment.
  6361. graphics/qrencode: Removed (added to Slackware).
  6362. graphics/ralcgm: Remove template comment.
  6363. graphics/raw-thumbnailer: Get rid of incorrect usage info.
  6364. graphics/raw-thumbnailer: Remove template comment.
  6365. graphics/rawstudio: Disabled narrowing warnings.
  6366. graphics/rawstudio: Fix download URL.
  6367. graphics/rawstudio: Fixed dep info
  6368. graphics/rawstudio: Removed (FTBFS).
  6369. graphics/rawtherapee: Fixed dep info
  6370. graphics/rawtherapee: Updated for version 5.8.
  6371. graphics/ristretto: Updated for version 0.10.0.
  6372. graphics/ristretto: Updated for version 0.12.2.
  6373. graphics/scantailor-advanced: Remove compatibility hacks.
  6374. graphics/scantailor-advanced: Updated for version 20200531_3d1e74e.
  6375. graphics/scantailor: Removed (incompatible with qt5-5.15.x).
  6376. graphics/screencloud: Updated for version 1.5.3, build from source.
  6377. graphics/screengrab: Updated for version 2.1.0.
  6378. graphics/separate+: Removed (crashed at runtime).
  6379. graphics/shaderc: Fixed dep info
  6380. graphics/shaderc: Removed (included in -current).
  6381. graphics/shotwell: Fixed dep info
  6382. graphics/shotwell: Remove .la files.
  6383. graphics/simple-scan: Align with new template.
  6384. graphics/simple-scan: Fixed dep info
  6385. graphics/simple-scan: Updated for version 3.34.0, changed homepage.
  6386. graphics/simple-scan: Updated for version 3.38.5.
  6387. graphics/tclblt: Add -j1 to make, use /usr/lib64 on x86_64.
  6388. graphics/teighafileconverter: Remove template comment.
  6389. graphics/teighaviewer: Remove "broken" comment (qt4 fixes it).
  6390. graphics/teighaviewer: Remove template comment.
  6391. graphics/teighaviewer: Removed (outdated binary-only software).
  6392. graphics/tesseract: Updated for version 5.0.1
  6393. graphics/textext: Update DEP.
  6394. graphics/tgif-QPL: Fix download URL.
  6395. graphics/tintii: Fix wxPython conflict.
  6396. graphics/tuxpaint: Fix DEP.
  6397. graphics/tuxpaint: Updated for version 0.9.27.
  6398. graphics/ueberzug: Fixed dep info
  6399. graphics/ufraw: Fixed dep info
  6400. graphics/ufraw: Patch for the newer toolchain.
  6401. graphics/ufraw: Updated for version 20210427_684af05.
  6402. graphics/unpaper: Update DEP.
  6403. graphics/urbanlightscape: Fix wxPython conflict.
  6404. graphics/veles: Add net warning in README.
  6405. graphics/viewnior: Align with new template.
  6406. graphics/viewnior: Fixed dep info
  6407. graphics/viewnior: Remove template comment.
  6408. graphics/vips: Update DEP.
  6409. graphics/vips: Updated for version 8.12.2.
  6410. graphics/vsxu: Update DEP.
  6411. graphics/vsxu: Update REQUIRES (glfw => glfw3).
  6412. graphics/vuescan: Updated MD5SUMs.
  6413. graphics/vuescan: Updated MD5SUMs.
  6414. graphics/vuescan: Updated MD5SUMs.
  6415. graphics/vuescan: Updated MD5SUMs.
  6416. graphics/vuescan: Updated MD5SUMs.
  6417. graphics/vuescan: Updated for version 9.7.55.
  6418. graphics/vuescan: Updated for version 9.7.56.
  6419. graphics/vuescan: Updated for version 9.7.58.
  6420. graphics/vuescan: Updated for version 9.7.59.
  6421. graphics/vuescan: Updated for version 9.7.64.
  6422. graphics/vuescan: Updated for version 9.7.65.
  6423. graphics/vuescan: Updated for version 9.7.67.
  6424. graphics/vuescan: Updated for version 9.7.69.
  6425. graphics/vuescan: Updated for version 9.7.71.
  6426. graphics/vuescan: Updated for version 9.7.74.
  6427. graphics/vuescan: Updated for version 9.7.76.
  6428. graphics/vuescan: Updated for version 9.7.79.
  6429. graphics/vulkan-sdk-bin: Removed (included in -current).
  6430. graphics/vulkan-sdk: Removed (added to Slackware).
  6431. graphics/wavelet-denoise: Fix build on 15.0, do not spam /usr.
  6432. graphics/wayland-protocols: Removed (added to Slackware).
  6433. graphics/webp-pixbuf-loader: Fixed dep info
  6434. graphics/webp-pixbuf-loader: Support alternatives for ninja
  6435. graphics/webp-pixbuf-loader: Updated for version 0.0.3.
  6436. graphics/white_dune: Update DEP.
  6437. graphics/wine-nine-standalone: Fixed dep info
  6438. graphics/wine-nine-standalone: Updated for version 0.8.
  6439. graphics/xbmbrowser: Fix download URL.
  6440. graphics/xcalib: Updated for version 0.10
  6441. graphics/xcf-pixbuf-loader: Remove template comment.
  6442. graphics/xcur2png: Remove template comment.
  6443. graphics/xfishtank: Updated for version 2.6.
  6444. graphics/xli: Remove template comment.
  6445. graphics/xmedcon: Remove .la files.
  6446. graphics/xmedcon: Updated for version 0.21.2, change maint. email.
  6447. graphics/xpe: Fix 15.0 build.
  6448. graphics/yacreader: Fixed dep info
  6449. graphics/yacreader: Updated for version 9.8.2.2106195.
  6450. graphics/yafaray-blender: Fix github filename.
  6451. graphics/yafaray-blender: Updated for version 3.2.0.
  6452. graphics/yafaray: Fix github URL, support optional qt4.
  6453. graphics/yafaray: Fixed dep info (opencv)
  6454. graphics/yafaray: Updated for version 3.2.0.
  6455. graphics/yagf: Fix DEP.
  6456. graphics/yed: Updated for version 3.21.1
  6457. graphics/yesplz: Removed (No longer maintained).
  6458. graphics/zbar: Remove .la files.
  6459. graphics/zbar: Updated for version 0.23.90.
  6460. gupnp: Updated for version 1.4.2.
  6461. ham/7plus: Fixes for the 64bit build.
  6462. ham/CubicSDR: Fix github tarball handling.
  6463. ham/CubicSDR: Fix github tarball handling.
  6464. ham/CubicSDR: Updated for version 0.2.7.
  6465. ham/SoapySDR: Updated for version 0.8.1.
  6466. ham/SoapySDRPlay: Fix DOWNLOAD.
  6467. ham/aprx: Use -fcommon. i486->i586. Fix README.
  6468. ham/chirp: Updated for version 20210416.
  6469. ham/chirp: Updated for version 20210830.
  6470. ham/chirp: Updated for version 20220219.
  6471. ham/cwstation: Use autogen.sh. i486->i586.
  6472. ham/direwolf: Compress manpages.
  6473. ham/direwolf: Fix github zip handling.
  6474. ham/ebook2cw: Fixed dep info
  6475. ham/fldigi: Added -fpermissive to the CXXFLAGS.
  6476. ham/fldigi: Fix REQUIRES.
  6477. ham/fldigi: Updated for version 4.1.20.
  6478. ham/fldigi: Use -std=c++14. Adjust REQUIRES.
  6479. ham/flmsg: Updated for version 4.0.19. Fix README.
  6480. ham/flrig: Fix dep info (+fltk)
  6481. ham/flrig: Updated for 1.4.4. Adjust REQUIRES.
  6482. ham/freedv: Fixed dep info
  6483. ham/gqrx-sdr: Fix DOWNLOAD & README.
  6484. ham/gqrx-sdr: Updated for version 2.15.8.
  6485. ham/gsmlib: Remove .la files.
  6486. ham/gsmlib: Use -std=c++14. i486->i586. Fix README.
  6487. ham/hamlib: Fix README.
  6488. ham/hamlib: Remove .la files.
  6489. ham/inspectrum: Updated for version 0.2.3.
  6490. ham/klog: Fix DOWNLOAD.
  6491. ham/klog: Updated for version 1.8.7. Adjust README. Fix paths.
  6492. ham/libax25: Remove .la files.
  6493. ham/linlogbook: Removed.
  6494. ham/linpsk: Updated for version 1.3.5.
  6495. ham/liquid-dsp: Updated for version 1.4.0.
  6496. ham/lpsk31: Use -fcommon. Fix README.
  6497. ham/qradiopredict: Removed.
  6498. ham/qsstv: Updated for version 9.5.8.
  6499. ham/soundmodem: Added -fpermissive to the CXXFLAGS.
  6500. ham/spectools: Fix support for PRINT_PACKAGE_NAME
  6501. ham/svxlink: Fix DOWNLOAD.
  6502. ham/svxlink: Fix github tarball handling.
  6503. ham/svxlink: Fixed dep info
  6504. ham/svxlink: Patched for gcc >= 6.x.
  6505. ham/tqsl: Updated for version 2.5.7.
  6506. ham/twhamqth: Use -fcommon. i486->i586. Fix README.
  6507. ham/unixcw: Remove .la files.
  6508. ham/wsjtx: Fixed dep info.
  6509. ham/wsjtx: Updated for 2.5.4. Fix README.
  6510. ham/xdemorse: Updated for 3.6.5. i486->i586. Fix README.
  6511. ham/xdx: Use -fcommon. Fix README.
  6512. ham/xgridloc: Fix DOWNLOAD.
  6513. ham/xlog: Updated for version 2.0.24.
  6514. ham/xnec2c: Updated for 4.4.5. Fix README.
  6515. haskell-doctemplates: Updated for version 0.10.0.1.
  6516. haskell/ghc: Install the man page in the correct place.
  6517. haskell/ghc: Updated for version 8.10.4.
  6518. haskell/haskell-Crypto: Fix build with ghc 8.10.
  6519. haskell/haskell-Diff: Fix build with ghc 8.10.
  6520. haskell/haskell-FindBin: Fix build with ghc 8.10.
  6521. haskell/haskell-GLURaw: Fix build with ghc 8.10.
  6522. haskell/haskell-GLURaw: Updated for version 2.0.0.5.
  6523. haskell/haskell-GLUT: Fix build with ghc 8.10.
  6524. haskell/haskell-GLUT: Updated for version 2.7.0.16.
  6525. haskell/haskell-Glob: Fix build with ghc 8.10.
  6526. haskell/haskell-Glob: Fix dependencies.
  6527. haskell/haskell-HTTP: Fix build with ghc 8.10.
  6528. haskell/haskell-HTTP: Updated for version 4000.3.16.
  6529. haskell/haskell-HUnit: Fix build with ghc 8.10.
  6530. haskell/haskell-HsYAML: Fix build with ghc 8.10.
  6531. haskell/haskell-HsYAML: Updated for version 0.2.1.0.
  6532. haskell/haskell-JuicyPixels: Fix build with ghc 8.10.
  6533. haskell/haskell-JuicyPixels: Updated for version 3.3.6.
  6534. haskell/haskell-ObjectName: Fix build with ghc 8.10.
  6535. haskell/haskell-OneTuple: Added (singleton tuple).
  6536. haskell/haskell-OpenGL: Fix build with ghc 8.10.
  6537. haskell/haskell-OpenGL: Fix dependencies.
  6538. haskell/haskell-OpenGL: Updated for version 3.0.3.0.
  6539. haskell/haskell-OpenGLRaw: Fix build with ghc 8.10.
  6540. haskell/haskell-OpenGLRaw: Updated for version 3.3.4.0.
  6541. haskell/haskell-QuickCheck: Fix build with ghc 8.10.
  6542. haskell/haskell-QuickCheck: Fix dependencies.
  6543. haskell/haskell-QuickCheck: Updated for version 2.14.2.
  6544. haskell/haskell-SHA: Fix build with ghc 8.10.
  6545. haskell/haskell-ShellCheck: Fix build with ghc 8.10.
  6546. haskell/haskell-ShellCheck: Updated for version 0.7.2.
  6547. haskell/haskell-ShellCheck: Updated for version 0.8.0.
  6548. haskell/haskell-StateVar: Fix build with ghc 8.10.
  6549. haskell/haskell-StateVar: Updated for version 1.2.2.
  6550. haskell/haskell-Tensor: Fix build with ghc 8.10.
  6551. haskell/haskell-X11-xft: Fix build with ghc 8.10.
  6552. haskell/haskell-X11: Fix build with ghc 8.10.
  6553. haskell/haskell-X11: Updated for version 1.10.2.
  6554. haskell/haskell-aeson-compat: Fix build with ghc 8.10.
  6555. haskell/haskell-aeson-compat: Fix dependencies.
  6556. haskell/haskell-aeson-compat: Fix dependencies.
  6557. haskell/haskell-aeson-compat: Updated for version 0.3.10.
  6558. haskell/haskell-aeson-pretty: Fix build with ghc 8.10.
  6559. haskell/haskell-aeson-pretty: Fix dependencies.
  6560. haskell/haskell-aeson-pretty: Updated for version 0.8.9.
  6561. haskell/haskell-aeson: Fix build with ghc 8.10.
  6562. haskell/haskell-aeson: Fix dependencies.
  6563. haskell/haskell-aeson: Fix depenedencies.
  6564. haskell/haskell-aeson: Updated for version 1.5.6.0.
  6565. haskell/haskell-annotated-wl-pprint: Fix build with ghc 8.10.
  6566. haskell/haskell-ansi-terminal: Fix build with ghc 8.10.
  6567. haskell/haskell-ansi-wl-pprint: Fix build with ghc 8.10.
  6568. haskell/haskell-appar: Added (A simple applicative parser).
  6569. haskell/haskell-asn1-encoding: Fix build with ghc 8.10.
  6570. haskell/haskell-asn1-encoding: Fix dependencies.
  6571. haskell/haskell-asn1-encoding: Updated for version 0.9.6.
  6572. haskell/haskell-asn1-parse: Fix build with ghc 8.10.
  6573. haskell/haskell-asn1-parse: Fix dependencies.
  6574. haskell/haskell-asn1-types: Fix build with ghc 8.10.
  6575. haskell/haskell-assoc: Added (swap and assoc).
  6576. haskell/haskell-async: Fix build with ghc 8.10.
  6577. haskell/haskell-async: Updated for version 2.2.3.
  6578. haskell/haskell-async: Updated for version 2.2.4.
  6579. haskell/haskell-attoparsec-iso8601: Fix build with ghc 8.10.
  6580. haskell/haskell-attoparsec-iso8601: Updated for version 1.0.2.1.
  6581. haskell/haskell-attoparsec: Fix build with ghc 8.10.
  6582. haskell/haskell-attoparsec: Updated for version 0.14.1.
  6583. haskell/haskell-attoparsec: Updated for version 0.14.3.
  6584. haskell/haskell-auto-update: Fix build with ghc 8.10.
  6585. haskell/haskell-base-compat-batteries: Added (base-compat extras).
  6586. haskell/haskell-base-compat: Fix build with ghc 8.10.
  6587. haskell/haskell-base-compat: Updated for version 0.12.1.
  6588. haskell/haskell-base-orphans: Fix build with ghc 8.10.
  6589. haskell/haskell-base-orphans: Updated for version 0.8.6.
  6590. haskell/haskell-base-prelude: Fix build with ghc 8.10.
  6591. haskell/haskell-base16-bytestring: Fix build with ghc 8.10.
  6592. haskell/haskell-base16-bytestring: Updated for version 0.1.1.7.
  6593. haskell/haskell-base64-bytestring: Fix build with ghc 8.10.
  6594. haskell/haskell-basement: Fix build with ghc 8.10.
  6595. haskell/haskell-basement: Updated for version 0.0.12.
  6596. haskell/haskell-bifunctors: Fix build with ghc 8.10.
  6597. haskell/haskell-bifunctors: Updated for version 5.5.11.
  6598. haskell/haskell-bindings-uname: Fix build with ghc 8.10.
  6599. haskell/haskell-bitarray: Fix build with ghc 8.10.
  6600. haskell/haskell-blaze-builder: Fix build with ghc 8.10.
  6601. haskell/haskell-blaze-html: Fix build with ghc 8.10.
  6602. haskell/haskell-blaze-html: Updated for version 0.9.1.2.
  6603. haskell/haskell-blaze-markup: Fix build with ghc 8.10.
  6604. haskell/haskell-blaze-markup: Updated for version 0.8.2.8.
  6605. haskell/haskell-bmp: Fix build with ghc 8.10.
  6606. haskell/haskell-byteable: Fix build with ghc 8.10.
  6607. haskell/haskell-byteorder: Added (native endianness lib).
  6608. haskell/haskell-bytestring-builder: Fix build with ghc 8.10.
  6609. haskell/haskell-cabal-doctest: Added (A Setup.hs helper).
  6610. haskell/haskell-cabal-install: Fix dependencies.
  6611. haskell/haskell-cabal-install: Removed (ftbfs, unmaintained).
  6612. haskell/haskell-call-stack: Fix build with ghc 8.10.
  6613. haskell/haskell-case-insensitive: Fix build with ghc 8.10.
  6614. haskell/haskell-case-insensitive: Fix dependencies.
  6615. haskell/haskell-cereal: Fix build with ghc 8.10.
  6616. haskell/haskell-cereal: Updated for version 0.5.8.2.
  6617. haskell/haskell-cgi: Fix build with ghc 8.10.
  6618. haskell/haskell-cgi: Fix dependencies.
  6619. haskell/haskell-cgi: Updated for version 3001.5.0.0.
  6620. haskell/haskell-cipher-aes: Fix build with ghc 8.10.
  6621. haskell/haskell-cipher-aes: Fix dependencies.
  6622. haskell/haskell-cipher-des: Fix build with ghc 8.10.
  6623. haskell/haskell-cipher-des: Fix dependencies.
  6624. haskell/haskell-cipher-rc4: Fix build with ghc 8.10.
  6625. haskell/haskell-cipher-rc4: Fix dependencies.
  6626. haskell/haskell-citeproc: Added (gen citations).
  6627. haskell/haskell-clock: Fix build with ghc 8.10.
  6628. haskell/haskell-cmark-gfm: Fix build with ghc 8.10.
  6629. haskell/haskell-cmark: Fix build with ghc 8.10.
  6630. haskell/haskell-cmdargs: Fix build with ghc 8.10.
  6631. haskell/haskell-cmdlib: Fix build with ghc 8.10.
  6632. haskell/haskell-cmdlib: Removed (does not build with ghc 8.10.4).
  6633. haskell/haskell-colour: Fix build with ghc 8.10.
  6634. haskell/haskell-colour: Updated for version 2.3.6.
  6635. haskell/haskell-commonmark-extensions: Added (commonmark extends).
  6636. haskell/haskell-commonmark-pandoc: Added (Bridge pandoc AST).
  6637. haskell/haskell-commonmark: Added (Pure Haskell commonmark parser).
  6638. haskell/haskell-comonad: Fix build with ghc 8.10.
  6639. haskell/haskell-comonad: Updated for version 5.0.8.
  6640. haskell/haskell-composition: Fix build with ghc 8.10.
  6641. haskell/haskell-conduit-extra: Fix build with ghc 8.10.
  6642. haskell/haskell-conduit-extra: Fix dependencies.
  6643. haskell/haskell-conduit: Fix build with ghc 8.10.
  6644. haskell/haskell-conduit: Fix dependencies.
  6645. haskell/haskell-conduit: Fix dependencies.
  6646. haskell/haskell-connection: Fix build with ghc 8.10.
  6647. haskell/haskell-connection: Fix dependencies.
  6648. haskell/haskell-connection: Updated for version 0.3.1.
  6649. haskell/haskell-constraints: Fix build with ghc 8.10.
  6650. haskell/haskell-constraints: Fix dependencies.
  6651. haskell/haskell-constraints: Updated for version 0.13.3.
  6652. haskell/haskell-contravariant: Fix build with ghc 8.10.
  6653. haskell/haskell-contravariant: Updated dependencies.
  6654. haskell/haskell-cookie: Fix build with ghc 8.10.
  6655. haskell/haskell-crypto-cipher-types: Fix build with ghc 8.10.
  6656. haskell/haskell-crypto-cipher-types: Fix dependencies.
  6657. haskell/haskell-crypto-numbers: Fix build with ghc 8.10.
  6658. haskell/haskell-crypto-numbers: Fix dependencies.
  6659. haskell/haskell-crypto-pubkey-types: Fix build with ghc 8.10.
  6660. haskell/haskell-crypto-pubkey-types: Fix dependencies.
  6661. haskell/haskell-crypto-pubkey: Fix build with ghc 8.10.
  6662. haskell/haskell-crypto-pubkey: Fix dependencies.
  6663. haskell/haskell-crypto-random: Fix build with ghc 8.10.
  6664. haskell/haskell-cryptohash-sha256: Fix build with ghc 8.10.
  6665. haskell/haskell-cryptohash: Fix build with ghc 8.10.
  6666. haskell/haskell-cryptohash: Fix deps.
  6667. haskell/haskell-cryptonite-conduit: Fix build with ghc 8.10.
  6668. haskell/haskell-cryptonite-conduit: Fix dependencies.
  6669. haskell/haskell-cryptonite: Fix build with ghc 8.10.
  6670. haskell/haskell-cryptonite: Updated for version 0.29.
  6671. haskell/haskell-curl: Fix build with ghc 8.10.
  6672. haskell/haskell-data-default-class: Fix build with ghc 8.10.
  6673. haskell/haskell-data-default-instances-containers: Fix metadata.
  6674. haskell/haskell-data-default: Fix build with ghc 8.10.
  6675. haskell/haskell-data-default: Fix deps.
  6676. haskell/haskell-data-fix: Added (Fixpoint data types).
  6677. haskell/haskell-data-ordlist: Fix build with ghc 8.10.
  6678. haskell/haskell-dataenc: Fix build with ghc 8.10.
  6679. haskell/haskell-deepseq-generics: Fix build with ghc 8.10.
  6680. haskell/haskell-deepseq-generics: Fix build with ghc 8.10.4.
  6681. haskell/haskell-digest: Fix build with ghc 8.10.
  6682. haskell/haskell-distributive: Fix build with ghc 8.10.
  6683. haskell/haskell-distributive: Fix dependencies.
  6684. haskell/haskell-dlist: Fix build with ghc 8.10.
  6685. haskell/haskell-dlist: Updated for version 0.8.0.7.
  6686. haskell/haskell-doclayout: Added (A prettyprinting library).
  6687. haskell/haskell-doctemplates: Add dependency.
  6688. haskell/haskell-doctemplates: Fix build with ghc 8.10.
  6689. haskell/haskell-doctemplates: Fix dependencies.
  6690. haskell/haskell-double-conversion: Fix build with ghc 8.10.
  6691. haskell/haskell-easy-file: Fix build with ghc 8.10.
  6692. haskell/haskell-echo: Fix build with ghc 8.10.
  6693. haskell/haskell-ed25519: Fix build with ghc 8.10.
  6694. haskell/haskell-edit-distance: Fix build with ghc 8.10.
  6695. haskell/haskell-either: Fix build with ghc 8.10.
  6696. haskell/haskell-either: Fix dependencies.
  6697. haskell/haskell-emojis: Added (emoji conversions).
  6698. haskell/haskell-enclosed-exceptions: Fix build with ghc 8.10.
  6699. haskell/haskell-enclosed-exceptions: Fix dependencies.
  6700. haskell/haskell-env-locale: Fix build with ghc 8.10.
  6701. haskell/haskell-erf: Fix build with ghc 8.10.
  6702. haskell/haskell-errors: Added (Simplified error-handling).
  6703. haskell/haskell-exceptions: Fix build with ghc 8.10.
  6704. haskell/haskell-exceptions: Removed (part of ghc).
  6705. haskell/haskell-exceptions: Updated for version 0.10.4.
  6706. haskell/haskell-extensible-exceptions: Fix build with ghc 8.10.
  6707. haskell/haskell-extra: Fix build with ghc 8.10.
  6708. haskell/haskell-fail: Fix build with ghc 8.10.
  6709. haskell/haskell-fast-logger: Fix build with ghc 8.10.
  6710. haskell/haskell-fast-logger: Fix dependencies.
  6711. haskell/haskell-fgl: Fix build with ghc 8.10.
  6712. haskell/haskell-fgl: Updated for version 5.7.0.3.
  6713. haskell/haskell-file-embed: Fix build with ghc 8.10.
  6714. haskell/haskell-file-embed: Updated for version 0.0.15.0.
  6715. haskell/haskell-filelock: Fix build with ghc 8.10.
  6716. haskell/haskell-filemanip: Fix build with ghc 8.10.
  6717. haskell/haskell-fixed: Fix build with ghc 8.10.
  6718. haskell/haskell-foundation: Fix build with ghc 8.10.
  6719. haskell/haskell-foundation: Updated for version 0.0.26.1.
  6720. haskell/haskell-free: Fix build with ghc 8.10.
  6721. haskell/haskell-free: Fix dependencies.
  6722. haskell/haskell-free: Fix dependencies.
  6723. haskell/haskell-free: Updated for version 5.1.7.
  6724. haskell/haskell-fsnotify: Fix build with ghc 8.10.
  6725. haskell/haskell-fsnotify: Fix dependencies.
  6726. haskell/haskell-generic-deriving: Fix build with ghc 8.10.
  6727. haskell/haskell-generic-deriving: Updated for version 1.14.1.
  6728. haskell/haskell-ghc-paths: Fix build with ghc 8.10.
  6729. haskell/haskell-ghc-paths: Updated for version 0.1.0.12.
  6730. haskell/haskell-gitrev: Fix build with ghc 8.10.
  6731. haskell/haskell-gloss-rendering: Fix build with ghc 8.10.
  6732. haskell/haskell-gloss-rendering: Fix dependencies.
  6733. haskell/haskell-gloss-rendering: Updated for version 1.13.1.1.
  6734. haskell/haskell-gloss: Fix build with ghc 8.10.
  6735. haskell/haskell-gloss: Updated for version 1.13.2.1.
  6736. haskell/haskell-graphviz: Fix build with ghc 8.10.
  6737. haskell/haskell-graphviz: Updated for version 2999.20.1.0.
  6738. haskell/haskell-hackage-security: Fix build with ghc 8.10.
  6739. haskell/haskell-hackage-security: Removed (ftbfs, unmaintained).
  6740. haskell/haskell-hackage-security: Updated for version 0.6.0.1.
  6741. haskell/haskell-haddock-library: Fix build with ghc 8.10.
  6742. haskell/haskell-haddock-library: Updated for version 1.10.0.
  6743. haskell/haskell-half: Fix build with ghc 8.10.
  6744. haskell/haskell-hashable: Fix build with ghc 8.10.
  6745. haskell/haskell-hashable: Updated for version 1.3.1.0.
  6746. haskell/haskell-hashable: Updated for version 1.4.0.1.
  6747. haskell/haskell-hashed-storage: Fix build with ghc 8.10.
  6748. haskell/haskell-hashed-storage: Removed (ftbfs, unmaintained).
  6749. haskell/haskell-haskell-src: Fix build with ghc 8.10.
  6750. haskell/haskell-haskell-src: Removed (ftbfs, unmaintained).
  6751. haskell/haskell-highlighting-kate: Fix build with ghc 8.10.
  6752. haskell/haskell-hinotify: Fix build with ghc 8.10.
  6753. haskell/haskell-hostname: Fix build with ghc 8.10.
  6754. haskell/haskell-hourglass: Fix build with ghc 8.10.
  6755. haskell/haskell-hpack: Fix build with ghc 8.10.
  6756. haskell/haskell-hpack: Fix dependencies.
  6757. haskell/haskell-hpack: Updated for version 0.34.6.
  6758. haskell/haskell-hslogger: Fix build with ghc 8.10.
  6759. haskell/haskell-hslogger: Removed (ftbfs, unmaintained).
  6760. haskell/haskell-hslua-aeson: Added (aeson data types for Lua).
  6761. haskell/haskell-hslua-classes: Added (Type classes for HsLua).
  6762. haskell/haskell-hslua-core: Added (lua bindings).
  6763. haskell/haskell-hslua-marshalling: Added (marshalling lua values).
  6764. haskell/haskell-hslua-module-path: Added (lua module for files).
  6765. haskell/haskell-hslua-module-system: Added (system module wrapper).
  6766. haskell/haskell-hslua-module-text: Fix build with ghc 8.10.
  6767. haskell/haskell-hslua-module-text: Updated for version 1.0.1.
  6768. haskell/haskell-hslua-module-version: Added (module for versions).
  6769. haskell/haskell-hslua-objectorientation: Added (OO tools for HsLua).
  6770. haskell/haskell-hslua-packaging: Added (Utils to build Lua modules).
  6771. haskell/haskell-hslua: Fix build with ghc 8.10.
  6772. haskell/haskell-hslua: Updated for version 2.1.0.
  6773. haskell/haskell-hsp: Fix build with ghc 8.10.
  6774. haskell/haskell-hspec-core: Fix build with ghc 8.10.
  6775. haskell/haskell-hspec-core: Fix dependencies.
  6776. haskell/haskell-hspec-core: Updated for version 2.9.4.
  6777. haskell/haskell-hspec-discover: Fix build with ghc 8.10.
  6778. haskell/haskell-hspec-discover: Updated for version 2.9.4.
  6779. haskell/haskell-hspec-expectations: Fix build with ghc 8.10.
  6780. haskell/haskell-hspec-expectations: Fix dependencies.
  6781. haskell/haskell-hspec-smallcheck: Fix build with ghc 8.10.
  6782. haskell/haskell-hspec-smallcheck: Fix dependencies.
  6783. haskell/haskell-hspec: Fix build with ghc 8.10.
  6784. haskell/haskell-hspec: Fix dependencies.
  6785. haskell/haskell-hspec: Updated for version 2.9.4.
  6786. haskell/haskell-html: Fix build with ghc 8.10.
  6787. haskell/haskell-http-api-data: Fix build with ghc 8.10.
  6788. haskell/haskell-http-api-data: Fix dependencies.
  6789. haskell/haskell-http-api-data: Removed (ftbfs, unmaintained).
  6790. haskell/haskell-http-client-tls: Fix build with ghc 8.10.
  6791. haskell/haskell-http-client-tls: Fix dependencies.
  6792. haskell/haskell-http-client-tls: Updated for version 0.3.6.1.
  6793. haskell/haskell-http-client: Fix build with ghc 8.10.
  6794. haskell/haskell-http-client: Updated for version 0.7.11.
  6795. haskell/haskell-http-conduit: Fix build with ghc 8.10.
  6796. haskell/haskell-http-conduit: Updated for version 2.3.8.
  6797. haskell/haskell-http-types: Fix build with ghc 8.10.
  6798. haskell/haskell-hxt-charproperties: Fix build with ghc 8.10.
  6799. haskell/haskell-hxt-regex-xmlschema: Fix build with ghc 8.10.
  6800. haskell/haskell-hxt-unicode: Fix build with ghc 8.10.
  6801. haskell/haskell-hxt: Fix build with ghc 8.10.
  6802. haskell/haskell-hxt: Fix dependencies.
  6803. haskell/haskell-hxt: Updated for version 9.3.1.22.
  6804. haskell/haskell-idna: Fix build with ghc 8.10.
  6805. haskell/haskell-indexed-traversable-instances: Added (more inst).
  6806. haskell/haskell-indexed-traversable: Added (indexed traversables).
  6807. haskell/haskell-infer-license: Fix build with ghc 8.10.
  6808. haskell/haskell-integer-logarithms: Fix build with ghc 8.10.
  6809. haskell/haskell-integer-logarithms: Updated for version 1.0.3.1.
  6810. haskell/haskell-iproute: Added (IP Routing Table).
  6811. haskell/haskell-ipynb: Added (Data structure for Jupyter notebooks).
  6812. haskell/haskell-iwlib: Fix build with ghc 8.10.
  6813. haskell/haskell-jira-wiki-markup: Added (Jira wiki markup).
  6814. haskell/haskell-json: Fix build with ghc 8.10.
  6815. haskell/haskell-json: Updated for version 0.10.
  6816. haskell/haskell-lcs: Fix build with ghc 8.10.
  6817. haskell/haskell-lexer: Fix build with ghc 8.10.
  6818. haskell/haskell-lexer: Updated for version 1.1.
  6819. haskell/haskell-libyaml: Fix build with ghc 8.10.
  6820. haskell/haskell-libyaml: Fix dependencies.
  6821. haskell/haskell-lifted-async: Fix build with ghc 8.10.
  6822. haskell/haskell-lifted-async: Updated for version 0.10.2.2.
  6823. haskell/haskell-lifted-base: Fix build with ghc 8.10.
  6824. haskell/haskell-lifted-base: Fix dependencies.
  6825. haskell/haskell-logict: Fix build with ghc 8.10.
  6826. haskell/haskell-logict: Updated for version 0.7.1.0.
  6827. haskell/haskell-lpeg: Added (Parsing Expression Grammars For Lua).
  6828. haskell/haskell-lua: Added (bindings to lua).
  6829. haskell/haskell-megaparsec: Fix build with ghc 8.10.
  6830. haskell/haskell-megaparsec: Fix dependencies.
  6831. haskell/haskell-megaparsec: Removed (ftbfs, no maintainer).
  6832. haskell/haskell-memory: Fix build with ghc 8.10.
  6833. haskell/haskell-memory: Updated for version 0.16.0.
  6834. haskell/haskell-microlens-mtl: Added (microlens support).
  6835. haskell/haskell-microlens-th: Fix build with ghc 8.10.
  6836. haskell/haskell-microlens-th: Updated for version 0.4.3.10.
  6837. haskell/haskell-microlens: Fix build with ghc 8.10.
  6838. haskell/haskell-microlens: Updated for version 0.4.12.0.
  6839. haskell/haskell-mime-types: Fix build with ghc 8.10.
  6840. haskell/haskell-mintty: Fix build with ghc 8.10.
  6841. haskell/haskell-mmap: Fix build with ghc 8.10.
  6842. haskell/haskell-mmorph: Fix build with ghc 8.10.
  6843. haskell/haskell-mmorph: Updated for version 1.2.0.
  6844. haskell/haskell-monad-control: Fix build with ghc 8.10.
  6845. haskell/haskell-monad-control: Fix dependencies.
  6846. haskell/haskell-monad-logger: Fix build with ghc 8.10.
  6847. haskell/haskell-monad-logger: Fix dependencies.
  6848. haskell/haskell-monad-logger: Updated for version 0.3.36.
  6849. haskell/haskell-monad-loops: Fix build with ghc 8.10.
  6850. haskell/haskell-monads-tf: Fix build with ghc 8.10.
  6851. haskell/haskell-mono-traversable: Fix build with ghc 8.10.
  6852. haskell/haskell-mono-traversable: Fix dependencies.
  6853. haskell/haskell-mtl: Added (Monad classes, using funct. deps).
  6854. haskell/haskell-multipart: Fix build with ghc 8.10.
  6855. haskell/haskell-multipart: Updated for version 0.2.1.
  6856. haskell/haskell-mustache: Fix build with ghc 8.10.
  6857. haskell/haskell-mustache: Fix dependencies.
  6858. haskell/haskell-mustache: Removed (ftbfs, no maintainer).
  6859. haskell/haskell-nats: Fix build with ghc 8.10.
  6860. haskell/haskell-neat-interpolation: Fix build with ghc 8.10.
  6861. haskell/haskell-neat-interpolation: Removed (ftbfs, no maintainer).
  6862. haskell/haskell-network-bsd: Added (POSIX network database).
  6863. haskell/haskell-network-uri: Fix build with ghc 8.10.
  6864. haskell/haskell-network: Fix build with ghc 8.10.
  6865. haskell/haskell-network: Updated for version 3.1.2.5.
  6866. haskell/haskell-old-locale: Fix build with ghc 8.10.
  6867. haskell/haskell-old-time: Fix build with ghc 8.10.
  6868. haskell/haskell-old-time: Fix dependencies.
  6869. haskell/haskell-open-browser: Fix build with ghc 8.10.
  6870. haskell/haskell-optparse-applicative: Fix build with ghc 8.10.
  6871. haskell/haskell-optparse-applicative: Updated for version 0.17.0.0.
  6872. haskell/haskell-optparse-simple: Fix build with ghc 8.10.
  6873. haskell/haskell-optparse-simple: Removed (ftbfs, unmaintained).
  6874. haskell/haskell-pandoc-lua-marshal: Added (pandoc types in lua).
  6875. haskell/haskell-pandoc-types: Fix build with ghc 8.10.
  6876. haskell/haskell-pandoc-types: Fix dependencies.
  6877. haskell/haskell-pandoc-types: Updated for version 1.22.1.
  6878. haskell/haskell-parallel: Fix build with ghc 8.10.
  6879. haskell/haskell-parallel: Removed (ftbfs, unmaintained).
  6880. haskell/haskell-parsec-numbers: Fix build with ghc 8.10.
  6881. haskell/haskell-parser-combinators: Fix build with ghc 8.10.
  6882. haskell/haskell-path-io: Fix build with ghc 8.10.
  6883. haskell/haskell-path-io: Fix dependencies.
  6884. haskell/haskell-path-io: Updated for version 1.6.3.
  6885. haskell/haskell-path-pieces: Fix build with ghc 8.10.
  6886. haskell/haskell-path: Fix build with ghc 8.10.
  6887. haskell/haskell-path: Fix dependencies.
  6888. haskell/haskell-path: Updated for version 0.9.2.
  6889. haskell/haskell-pem: Fix build with ghc 8.10.
  6890. haskell/haskell-pem: Fix dependencies.
  6891. haskell/haskell-persistent-sqlite: Fix build with ghc 8.10.
  6892. haskell/haskell-persistent-sqlite: Fix dependencies.
  6893. haskell/haskell-persistent-sqlite: Removed (ftbfs, unmaintained).
  6894. haskell/haskell-persistent-template: Fix build with ghc 8.10.
  6895. haskell/haskell-persistent-template: Fix dependencies.
  6896. haskell/haskell-persistent-template: Removed (ftbfs, unmaintained).
  6897. haskell/haskell-persistent: Fix build with ghc 8.10.
  6898. haskell/haskell-persistent: Fix dependencies.
  6899. haskell/haskell-persistent: Removed (ftbfs, unmaintained).
  6900. haskell/haskell-pipes: Fix build with ghc 8.10.
  6901. haskell/haskell-pipes: Fix dependencies.
  6902. haskell/haskell-pipes: Updated for version 4.3.16.
  6903. haskell/haskell-polyparse: Fix build with ghc 8.10.
  6904. haskell/haskell-polyparse: Updated for version 1.13.
  6905. haskell/haskell-pretty-show: Fix build with ghc 8.10.
  6906. haskell/haskell-pretty-show: Updated for version 1.10.
  6907. haskell/haskell-primitive: Fix build with ghc 8.10.
  6908. haskell/haskell-primitive: Updated for version 0.7.1.0.
  6909. haskell/haskell-profunctors: Fix build with ghc 8.10.
  6910. haskell/haskell-profunctors: Fix dependenies.
  6911. haskell/haskell-profunctors: Updated for version 5.6.2.
  6912. haskell/haskell-project-template: Fix build with ghc 8.10.
  6913. haskell/haskell-project-template: Fix dependencies.
  6914. haskell/haskell-publicsuffixlist: Fix build with ghc 8.10.
  6915. haskell/haskell-publicsuffixlist: Fix dependencies.
  6916. haskell/haskell-punycode: Fix build with ghc 8.10.
  6917. haskell/haskell-quickcheck-io: Fix build with ghc 8.10.
  6918. haskell/haskell-random: Fix build with ghc 8.10.
  6919. haskell/haskell-regex-applicative-text: Fix build with ghc 8.10.
  6920. haskell/haskell-regex-applicative: Fix build with ghc 8.10.
  6921. haskell/haskell-regex-base: Fix build with ghc 8.10.
  6922. haskell/haskell-regex-base: Updated for version 0.92.0.1.
  6923. haskell/haskell-regex-compat-tdfa: Fix build with ghc 8.10.
  6924. haskell/haskell-regex-compat-tdfa: Fix dependencies.
  6925. haskell/haskell-regex-compat: Fix build with ghc 8.10.
  6926. haskell/haskell-regex-pcre-builtin: Fix build with ghc 8.10.
  6927. haskell/haskell-regex-pcre-builtin: Updated for 0.95.2.3.8.44.
  6928. haskell/haskell-regex-pcre: Fix build with ghc 8.10.
  6929. haskell/haskell-regex-pcre: Updated for version 0.95.0.0.
  6930. haskell/haskell-regex-posix: Fix build with ghc 8.10.
  6931. haskell/haskell-regex-posix: Updated for version 0.96.0.1.
  6932. haskell/haskell-regex-tdfa: Fix build with ghc 8.10.
  6933. haskell/haskell-regex-tdfa: Updated for version 1.3.1.1.
  6934. haskell/haskell-resolv: Fix build with ghc 8.10.
  6935. haskell/haskell-resolv: Updated for version 0.1.2.0.
  6936. haskell/haskell-resource-pool: Fix build with ghc 8.10.
  6937. haskell/haskell-resource-pool: Fix dependencies.
  6938. haskell/haskell-resourcet: Fix build with ghc 8.10.
  6939. haskell/haskell-resourcet: Fix dependencies.
  6940. haskell/haskell-resourcet: Fix dependencies.
  6941. haskell/haskell-resourcet: Updated for version 1.2.4.3.
  6942. haskell/haskell-retry: Fix build with ghc 8.10.
  6943. haskell/haskell-retry: Fix dependencies.
  6944. haskell/haskell-retry: Updated for version 0.9.1.0.
  6945. haskell/haskell-rio: Fix build with ghc 8.10.
  6946. haskell/haskell-rio: Fix dependencies.
  6947. haskell/haskell-rio: Fix dependencies.
  6948. haskell/haskell-rio: Updated for version 0.1.21.0.
  6949. haskell/haskell-safe: Fix build with ghc 8.10.
  6950. haskell/haskell-safe: Updated for verion 0.3.19.
  6951. haskell/haskell-sandi: Fix build with ghc 8.10.
  6952. haskell/haskell-sandi: Fix dependencies.
  6953. haskell/haskell-sandi: Updated for version 0.5.
  6954. haskell/haskell-scientific: Fix build with ghc 8.10.
  6955. haskell/haskell-scientific: Updated for version 0.3.7.0.
  6956. haskell/haskell-securemem: Fix build with ghc 8.10.
  6957. haskell/haskell-semialign: Added (Align and Zip type-classes).
  6958. haskell/haskell-semigroupoids: Fix build with ghc 8.10.
  6959. haskell/haskell-semigroupoids: Fix dependencies.
  6960. haskell/haskell-semigroupoids: Updated for version 5.3.6.
  6961. haskell/haskell-semigroups: Fix build with ghc 8.10.
  6962. haskell/haskell-semigroups: Update dependencies.
  6963. haskell/haskell-setenv: Fix build with ghc 8.10.
  6964. haskell/haskell-setlocale: Fix build with ghc 8.10.
  6965. haskell/haskell-setlocale: Updated for version 1.0.0.10.
  6966. haskell/haskell-shelly: Fix build with ghc 8.10.
  6967. haskell/haskell-shelly: Fix dependencies.
  6968. haskell/haskell-shelly: Fix dependencies.
  6969. haskell/haskell-shelly: Updated for version 1.10.0.
  6970. haskell/haskell-silently: Fix build with ghc 8.10.
  6971. haskell/haskell-skylighting-core: Fix build with ghc 8.10.
  6972. haskell/haskell-skylighting-core: Fix dependencies.
  6973. haskell/haskell-skylighting-core: Updated for version 0.12.1.
  6974. haskell/haskell-skylighting-core: Updated for version 0.12.2.
  6975. haskell/haskell-skylighting: Fix build with ghc 8.10.
  6976. haskell/haskell-skylighting: Fix dependencies.
  6977. haskell/haskell-skylighting: Updated for version 0.12.2.
  6978. haskell/haskell-smallcheck: Fix build with ghc 8.10.
  6979. haskell/haskell-smallcheck: Updated for version 1.2.1.
  6980. haskell/haskell-socks: Fix build with ghc 8.10.
  6981. haskell/haskell-socks: Updated for version 0.6.1.
  6982. haskell/haskell-split: Fix build with ghc 8.10.
  6983. haskell/haskell-split: Updated for version 0.2.3.4.
  6984. haskell/haskell-splitmix: Added (Pure Haskell Splitmix).
  6985. haskell/haskell-stack: Fix build with ghc 8.10.
  6986. haskell/haskell-stack: Fix dependencies.
  6987. haskell/haskell-stack: Removed (ftbfs, unmaintained).
  6988. haskell/haskell-stm-chans: Fix build with ghc 8.10.
  6989. haskell/haskell-store-core: Fix build with ghc 8.10.
  6990. haskell/haskell-store-core: Updated for version 0.4.4.4.
  6991. haskell/haskell-store: Fix build with ghc 8.10.
  6992. haskell/haskell-store: Fix dependencies.
  6993. haskell/haskell-store: Removed (ftbfs, unmaintained).
  6994. haskell/haskell-store: Updated for version 0.7.14.
  6995. haskell/haskell-streaming-commons: Fix build with ghc 8.10.
  6996. haskell/haskell-strict: Fix build with ghc 8.10.
  6997. haskell/haskell-strict: Updated for version 0.4.0.1.
  6998. haskell/haskell-stringprep: Fix build with ghc 8.10.
  6999. haskell/haskell-stringsearch: Fix build with ghc 8.10.
  7000. haskell/haskell-stringsearch: Fix building on -current.
  7001. haskell/haskell-syb: Fix build with ghc 8.10.
  7002. haskell/haskell-syb: Updated for version 0.7.2.1.
  7003. haskell/haskell-system-fileio: Fix build with ghc 8.10.
  7004. haskell/haskell-system-filepath: Fix build with ghc 8.10.
  7005. haskell/haskell-tagged: Fix build with ghc 8.10.
  7006. haskell/haskell-tagged: Updated for version 0.8.6.1.
  7007. haskell/haskell-tagsoup: Fix build with ghc 8.10.
  7008. haskell/haskell-tar: Fix build with ghc 8.10.
  7009. haskell/haskell-tar: Updated for version 0.5.1.1.
  7010. haskell/haskell-temporary: Fix build with ghc 8.10.
  7011. haskell/haskell-temporary: Fix dependencies.
  7012. haskell/haskell-test-framework-hunit: Fix build with ghc 8.10.
  7013. haskell/haskell-test-framework-hunit: Fix dependencies.
  7014. haskell/haskell-test-framework-quickcheck2: Fix build with ghc 8.10.
  7015. haskell/haskell-test-framework-quickcheck2: Fix build.
  7016. haskell/haskell-test-framework: Fix build with ghc 8.10.
  7017. haskell/haskell-test-framework: Fix build.
  7018. haskell/haskell-texmath: Fix build with ghc 8.10.
  7019. haskell/haskell-texmath: Fix dependencies.
  7020. haskell/haskell-texmath: Updated for version 0.12.4.
  7021. haskell/haskell-text-conversions: Added (Safe conversions of text).
  7022. haskell/haskell-text-icu: Fix build with ghc 8.10.
  7023. haskell/haskell-text-icu: Updated for version 0.7.1.0.
  7024. haskell/haskell-text-metrics: Fix build with ghc 8.10.
  7025. haskell/haskell-text-metrics: Updated for version 0.3.2.
  7026. haskell/haskell-text-short: Added (Memory-efficient uni strings).
  7027. haskell/haskell-tf-random: Fix build with ghc 8.10.
  7028. haskell/haskell-th-abstraction: Fix build with ghc 8.10.
  7029. haskell/haskell-th-abstraction: Updated for version 0.4.3.0
  7030. haskell/haskell-th-compat: Added (Backward-compatible types).
  7031. haskell/haskell-th-expand-syns: Fix build with ghc 8.10.
  7032. haskell/haskell-th-expand-syns: Updated for version 0.4.9.0.
  7033. haskell/haskell-th-lift-instances: Fix build with ghc 8.10.
  7034. haskell/haskell-th-lift-instances: Updated for version 0.1.19.
  7035. haskell/haskell-th-lift: Fix build with ghc 8.10.
  7036. haskell/haskell-th-lift: Updated for version 0.8.2.
  7037. haskell/haskell-th-orphans: Fix build with ghc 8.10.
  7038. haskell/haskell-th-orphans: Fix dependencies.
  7039. haskell/haskell-th-orphans: Updated for version 0.13.12.
  7040. haskell/haskell-th-reify-many: Fix build with ghc 8.10.
  7041. haskell/haskell-th-reify-many: Updated for version 0.1.10.
  7042. haskell/haskell-th-utilities: Fix build with ghc 8.10.
  7043. haskell/haskell-th-utilities: Updated for version 0.2.4.3.
  7044. haskell/haskell-these: Added (An either-or-both data type).
  7045. haskell/haskell-time-compat: Added (Compatibility package for time).
  7046. haskell/haskell-time-locale-compat: Fix build with ghc 8.10.
  7047. haskell/haskell-tls: Fix build with ghc 8.10.
  7048. haskell/haskell-tls: Fix dependencies.
  7049. haskell/haskell-tls: Updated for version 1.5.6.
  7050. haskell/haskell-transformers-base: Fix build with ghc 8.10.
  7051. haskell/haskell-transformers-compat: Fix build with ghc 8.10.
  7052. haskell/haskell-type-equality: Added (Data.Type.Equality compat).
  7053. haskell/haskell-typed-process: Fix build with ghc 8.10.
  7054. haskell/haskell-typed-process: Updated for version 0.2.8.0.
  7055. haskell/haskell-unicode-collation: Added (Unicode Collation).
  7056. haskell/haskell-unicode-transforms: Fix build with ghc 8.10.
  7057. haskell/haskell-uniplate: Added (operatio writing help).
  7058. haskell/haskell-unix-compat: Fix build with ghc 8.10.
  7059. haskell/haskell-unix-time: Fix build with ghc 8.10.
  7060. haskell/haskell-unliftio-core: Fix build on -current.
  7061. haskell/haskell-unliftio-core: Fix build with ghc 8.10.
  7062. haskell/haskell-unliftio-core: Updated for version 0.2.0.1.
  7063. haskell/haskell-unliftio: Fix build with ghc 8.10.
  7064. haskell/haskell-unliftio: Updated for version 0.2.21.0.
  7065. haskell/haskell-unordered-containers: Fix build with ghc 8.10.
  7066. haskell/haskell-unordered-containers: Updated for version 0.2.13.0.
  7067. haskell/haskell-unordered-containers: Updated for version 0.2.16.0.
  7068. haskell/haskell-utf8-string: Fix build with ghc 8.10.
  7069. haskell/haskell-uuid-types: Fix build with ghc 8.10.
  7070. haskell/haskell-uuid-types: Updated for version 1.0.4.
  7071. haskell/haskell-uuid-types: Updated for version 1.0.5.
  7072. haskell/haskell-vector-algorithms: Fix build with ghc 8.10.
  7073. haskell/haskell-vector-algorithms: Fix dependencies.
  7074. haskell/haskell-vector-algorithms: Updated for version 0.8.0.4.
  7075. haskell/haskell-vector: Fix build with ghc 8.10.
  7076. haskell/haskell-vector: Updated for version 0.12.3.0.
  7077. haskell/haskell-void: Fix build with ghc 8.10.
  7078. haskell/haskell-void: Updated dependencies.
  7079. haskell/haskell-witherable: Added (filterable traversable).
  7080. haskell/haskell-wl-pprint-text: Fix build with ghc 8.10.
  7081. haskell/haskell-wl-pprint-text: Updated for version 1.2.0.2.
  7082. haskell/haskell-x509-store: Fix build with ghc 8.10.
  7083. haskell/haskell-x509-store: Fix dependencies.
  7084. haskell/haskell-x509-system: Fix build with ghc 8.10.
  7085. haskell/haskell-x509-system: Fix dependencies.
  7086. haskell/haskell-x509-validation: Fix build with ghc 8.10.
  7087. haskell/haskell-x509-validation: Fix dependencies.
  7088. haskell/haskell-x509: Fix build with ghc 8.10.
  7089. haskell/haskell-x509: Fix dependencies.
  7090. haskell/haskell-x509: Updated for version 1.7.5.
  7091. haskell/haskell-xml-conduit: Added (XML library).
  7092. haskell/haskell-xml-types: Added (Basic types for representing XML).
  7093. haskell/haskell-xml: Fix build with ghc 8.10.
  7094. haskell/haskell-yaml: Fix build with ghc 8.10.
  7095. haskell/haskell-yaml: Fix dependencies.
  7096. haskell/haskell-yaml: Updated for version 0.11.7.0.
  7097. haskell/haskell-zeromq4-haskell: Fix build with ghc 8.10.
  7098. haskell/haskell-zeromq4-haskell: Fix dependencies.
  7099. haskell/haskell-zip-archive: Fix build with ghc 8.10.
  7100. haskell/haskell-zlib: Fix build with ghc 8.10.
  7101. haskell/haskell-zlib: Updated for version 0.6.2.3.
  7102. haskell/hscolour: Fix build with ghc 8.10.
  7103. haskell/xmonad-contrib: Fix build with ghc 8.10.
  7104. haskell/xmonad-contrib: Updated for version 0.17.0.
  7105. ibraries/vsqlite++: Handle url-encoded filenames.
  7106. kildclient: Version updated. Added new dependency for gtkspell3. Removed perl-JSON dependency.
  7107. libraries/Atlas-C++: Disabled some warnings-as-errors.
  7108. libraries/Atlas-C++: Handle url-encoded filenames.
  7109. libraries/Atlas-C++: Remove .la files.
  7110. libraries/Atlas-C++: Use the C++14 standard.
  7111. libraries/Botan: Fix build.
  7112. libraries/CCfits: Fixed DOWNLOAD.
  7113. libraries/CCfits: Remove .la files.
  7114. libraries/CCfits: Update DEP.
  7115. libraries/CEGUI0.7: Added -fpermissive to the CXXFLAGS.
  7116. libraries/CEGUI0.7: Remove .la files.
  7117. libraries/CEGUI: Fix conflict with ogre.
  7118. libraries/CEGUI: Updated for version 0.8.7.
  7119. libraries/CoinMP: Remove .la files.
  7120. libraries/DevIL: Fix build on Slackware-current
  7121. libraries/DevIL: Use the C++14 standard.
  7122. libraries/DirectFB: Add a fix for the new man2html syntax.
  7123. libraries/DirectFB: Remove .la files.
  7124. libraries/DirectFB: Removed (old age, lack of use).
  7125. libraries/ETL: Remove .la files.
  7126. libraries/FreeImage: Updated for version 3.18.0.
  7127. libraries/FreeImage: Use the C++14 standard.
  7128. libraries/GLee: Remove .la files.
  7129. libraries/GtkD: Removed (not used by any slackbuild)
  7130. libraries/GtkD: Updated for version 3.8.5.
  7131. libraries/Impacket: Update DEP.
  7132. libraries/Ipopt: Remove .la files.
  7133. libraries/Jinja2: Removed (Added to Slackware).
  7134. libraries/Jinja2: Removed Python 2 support.
  7135. libraries/Jinja2: new maintainer
  7136. libraries/Kivy: Fixed dep info
  7137. libraries/LucenePlusPlus: Fixed dep info
  7138. libraries/MyGUI: Remove redundant doinst.sh.
  7139. libraries/MyGUI: Updated for version 3.4.1.
  7140. libraries/Nevow: Fixed python2-twisted dep.
  7141. libraries/ORBit2: Remove .la files.
  7142. libraries/ORBit2: s,i486,i586,g
  7143. libraries/OpenAL: Removed (added to Slackware).
  7144. libraries/OpenSceneGraph: Fix build when asio is installed.
  7145. libraries/OpenSceneGraph: Fix building against wxGTK3.
  7146. libraries/OpenSceneGraph: Move bins from /usr/share and fix libdir
  7147. libraries/OpenSceneGraph: Updated for version 3.6.5
  7148. libraries/PDCurses: Remove .la files.
  7149. libraries/PDFlib-Lite: Remove .la files.
  7150. libraries/PDFlib-Lite: misc cleanups
  7151. libraries/PyOpenGL: Updated for version 3.1.6, add python3 support.
  7152. libraries/PyQt5-legacy: Removed (isn't it obvious?) :-)
  7153. libraries/PyQt5: Removed (added to Slackware).
  7154. libraries/PyQwt: Removed (needs PyQt4).
  7155. libraries/QDarkStyle: Updated for version 3.0.2 (+new maintainer)
  7156. libraries/QScintilla-qt5: Removed (added to Slackware).
  7157. libraries/QUSB: Add the dependency qt4.
  7158. libraries/QUSB: Fix DEP.
  7159. libraries/QtUsb: Install in lib64 on x86_64.
  7160. libraries/SDL2: Removed (added to Slackware).
  7161. libraries/SDL2_image: Removed (added to Slackware).
  7162. libraries/SDL2_mixer: Removed (added to Slackware).
  7163. libraries/SDL2_net: Removed (added to Slackware).
  7164. libraries/SDL2_ttf: Removed (added to Slackware).
  7165. libraries/SDL_Pango: Remove .la files.
  7166. libraries/SDL_gfx: Remove .la files.
  7167. libraries/SDL_gfx: Remove .la files.
  7168. libraries/SDL_gfx: Remove .la files.
  7169. libraries/SDL_gfxL Updated for version 2.0.26.
  7170. libraries/SDL_kitchensink: Update DEP.
  7171. libraries/SDL_sound: Removed (added to Slackware).
  7172. libraries/SFGUI: Fix for gcc >= 11.x.
  7173. libraries/SFGUI: Updated for version 0.4.0.
  7174. libraries/SFGUI: Updated for version d37b377.
  7175. libraries/SFGUI: Use correct github URL.
  7176. libraries/SFML: Fixed dep info
  7177. libraries/SOPE: Remove .la files.
  7178. libraries/SPIRV-Headers: Removed (included in -current).
  7179. libraries/SQLObject: Fixed dep info
  7180. libraries/SimGear: Updated for version 2020.3.11.
  7181. libraries/SimGear: Updated for version 2020.3.8.
  7182. libraries/VTK: Fixed dep info
  7183. libraries/VTK: Patch for gcc >= 10.x.
  7184. libraries/VTK: Patch for qt-5.15.x.
  7185. libraries/VTK: Updated for version 9.0.1
  7186. libraries/VTK: Updated for version 9.0.3
  7187. libraries/VitaMTP: Remove .la files.
  7188. libraries/Vulkan-Headers: Removed (included in -current).
  7189. libraries/WebOb: Removed redundant doinst.sh.
  7190. libraries/ZODB3: Fix REQUIRES for python2.
  7191. libraries/activemq-cpp: Remove .la files.
  7192. libraries/activemq-cpp: Updated for version 3.9.5.
  7193. libraries/adns: Remove .la files.
  7194. libraries/afflib: Remove .la files.
  7195. libraries/afflib: Updated for version 3.7.19.
  7196. libraries/agg: Patch for the newer compiler.
  7197. libraries/agg: Remove .la files.
  7198. libraries/alglib: update copyright years
  7199. libraries/allegro4: Make eawpats a hard dep.
  7200. libraries/allegro4: Updated for version 4.4.3.1.
  7201. libraries/allegro: Removing workaround for 14.2, and updated for version 5.2.7.0
  7202. libraries/alure: Fix 15.0 build.
  7203. libraries/alure: Fix DOWNLOAD.
  7204. libraries/alure: Fix build with newer cmake.
  7205. libraries/alure: Fixed README re optional deps
  7206. libraries/alure: Fixed dep info
  7207. libraries/antlr4: Updated for version 4.9.2.
  7208. libraries/antlr4: Updated for version 4.9.3.
  7209. libraries/apiextractor: Add qt4 dependency.
  7210. libraries/appmenu-qt: Removed (orphaned - qt4 + ftbfs).
  7211. libraries/appstream-glib: Align with new template.
  7212. libraries/appstream-glib: Fix build.
  7213. libraries/appstream-glib: Fixed dep info
  7214. libraries/appstream-glib: Updated for version 0.7.18.
  7215. libraries/aqbanking: Updated for version 6.4.1.
  7216. libraries/argon2: Removed (added to Slackware).
  7217. libraries/argtable: Get rid of .la files.
  7218. libraries/asio: Remove .la files.
  7219. libraries/asio: Updated for version 1.18.2.
  7220. libraries/aspnetcore-runtime: Changed package name to aspnetcore-runtime-3.1 and updated for version 3.1.21.
  7221. libraries/assimp: Fix cmake support for 64-bit.
  7222. libraries/assimp: Remove redundant doinst.sh.
  7223. libraries/assimp: Updated for version 5.0.1.
  7224. libraries/atlas: Remove .la files.
  7225. libraries/atlas: Removed (use OpenBLAS).
  7226. libraries/audiere: Fixed dep info in README
  7227. libraries/audiere: Remove .la files.
  7228. libraries/audioread: Python3 Fixes.
  7229. libraries/avbin: Handle weird download filenames.
  7230. libraries/avr-libc: Remove .la files.
  7231. libraries/avr-libc: Updated for version 2.0.0.
  7232. libraries/bamf: Fixed dep info
  7233. libraries/bamf: Patch to add a disable warning configure option.
  7234. libraries/bamf: Remove .la files.
  7235. libraries/bamf: Update DEP.
  7236. libraries/barry: Remove .la files.
  7237. libraries/barry: Use systemwide dir for bash completion files
  7238. libraries/bcdoc: Fixed dep info
  7239. libraries/bctoolbox: Fix DOWNLOAD.
  7240. libraries/beignet: Fixed dep info in README
  7241. libraries/beignet: Removed (incompatible with the newer llvm).
  7242. libraries/beignet: Updated for version 1.3.2, fix for llvm >= 6.x.
  7243. libraries/belle-sip: Fix DOWNLOAD.
  7244. libraries/belle-sip: Patch for gcc >= 9.x.
  7245. libraries/belle-sip: Remove .la files.
  7246. libraries/blas: Updated for version 3.10.0
  7247. libraries/bluez-alsa: Added rc script
  7248. libraries/bluez-alsa: Remove .la files.
  7249. libraries/bluez-alsa: Updated for version 3.1.0.
  7250. libraries/boolstuff: Fix DOWNLOAD.
  7251. libraries/boolstuff: Remove .la files.
  7252. libraries/boolstuff: Use the C++14 standard.
  7253. libraries/botocore: Update DEP.
  7254. libraries/buddy: Remove .la files.
  7255. libraries/bullet: Updated for version 3.17.
  7256. libraries/bullet: Updated for version 3.21.
  7257. libraries/bullet: Use double precision.
  7258. libraries/bwidget: Removed redundant doinst.sh.
  7259. libraries/bzrtp: Remove .la files.
  7260. libraries/bzrtp: Updated DOWNLOAD.
  7261. libraries/c++-gtk-utils: Handle url-encoded filenames.
  7262. libraries/c++-gtk-utils: Remove .la files.
  7263. libraries/c-ares: Removed (added to Slackware).
  7264. libraries/cal3d: Remove .la files.
  7265. libraries/cal3d: Removed redundant doinst.sh
  7266. libraries/capnproto: Remove .la files.
  7267. libraries/capnproto: Updated for version 0.9.0.
  7268. libraries/ccrtp: Remove .la files.
  7269. libraries/ccrtp: Updated for version 2.1.2.
  7270. libraries/cdk: Remove .la files.
  7271. libraries/cffi: Only build for python2.
  7272. libraries/cffi: Updated for version 1.13.2.
  7273. libraries/cfitsio: Removed (added to Slackware).
  7274. libraries/cgicc: Remove .la files.
  7275. libraries/cgicc: Updated for version 3.2.19.
  7276. libraries/cln: Remove .la files.
  7277. libraries/compface: Remove .la files.
  7278. libraries/compiz-bcomp: Updated for version 0.8.18.
  7279. libraries/compiz-bcop: Remove .la files.
  7280. libraries/compiz-plugins-experimental: Remove .la files.
  7281. libraries/compiz-plugins-experimental: Updated for version 0.8.18.
  7282. libraries/compiz-plugins-extra: Remove .la files.
  7283. libraries/compiz-plugins-extra: Updated for version 0.8.18.
  7284. libraries/compiz-plugins-main: Remove .la files.
  7285. libraries/compiz-plugins-main: Updated for version 0.8.18.
  7286. libraries/compizconfig-python: Remove .la files.
  7287. libraries/compizconfig-python: Updated for version 0.8.18.
  7288. libraries/configobj: Remove template comment.
  7289. libraries/configobj: Update DEP.
  7290. libraries/confuse: Remove .la files.
  7291. libraries/cpp-netlib: Updated for version 0.13.0.
  7292. libraries/cppo: Added (C-style preprocessor for OCaml).
  7293. libraries/cppo: Removed (ftb).
  7294. libraries/cpprestsdk: Fix conflict with libwebsocketpp.
  7295. libraries/cpprestsdk: Updated for version 20201210_eb6801f.
  7296. libraries/cracklib: Removed (added to Slackware).
  7297. libraries/cryptopp: Removed (added to Slackware).
  7298. libraries/ctemplate: Fix build on current.
  7299. libraries/cuneiform: Add the missing patch for gcc.
  7300. libraries/cuneiform: Patch for the newer gccs.
  7301. libraries/cuneiform: Patch from Debian to avoid strings.h collision.
  7302. libraries/cyrus-sasl-xoauth2: Remove .la files.
  7303. libraries/daq: Remove .la files.
  7304. libraries/dav1d: Fixed dep info
  7305. libraries/dav1d: Support alternatives for ninja
  7306. libraries/dav1d: Updated for version 0.8.2.
  7307. libraries/dav1d: Updated for version 0.9.2.
  7308. libraries/db46: Removed (not needed, and conflicts with Slack db48)
  7309. libraries/db46: Use libtirpc.
  7310. libraries/dbus-cpp: Disable some warnings-as-errors.
  7311. libraries/dbus-sharp-glib: Remove .la files.
  7312. libraries/dbus-sharp-glib: Removed (dbus-sharp ftbfs)
  7313. libraries/dbus-sharp: Remove .la files.
  7314. libraries/dbus-sharp: Removed (ftbfs)
  7315. libraries/digimend-kernel-drivers: Allow building for other kernels.
  7316. libraries/discogs-client: Update DEP.
  7317. libraries/dlib: Update README.
  7318. libraries/dotconf: Removed (added to Slackware).
  7319. libraries/dropbox-python: Update DEP.
  7320. libraries/dumb: Update DEP.
  7321. libraries/edelib: Fixed DOWNLOAD.
  7322. libraries/edelib: Remove .la files.
  7323. libraries/efivar: Removed (added to Slackware).
  7324. libraries/efl: Align with new template.
  7325. libraries/efl: Fixed dep info
  7326. libraries/efl: Fixed ninja build.
  7327. libraries/efl: Updated for version 1.24.4, no scim (use ibus).
  7328. libraries/efl: Updated for version 1.26.1.
  7329. libraries/efl: Updated icon cache in doinst.sh.
  7330. libraries/enca: Remove .la files.
  7331. libraries/enchant2: Removed (added to Slackware).
  7332. libraries/enchant2: Updated for version 2.2.14.
  7333. libraries/enum34: Removed (added to Slackware as python-enum34).
  7334. libraries/eris: Remove .la files.
  7335. libraries/eris: Use the C++14 standard.
  7336. libraries/evernote-python: Fix python2-oauth dep.
  7337. libraries/exempi: Updated for version 2.5.2.
  7338. libraries/exempi: Updated for version 2.5.2.
  7339. libraries/facebook-python: Update DEP.
  7340. libraries/fcgi: Remove .la files.
  7341. libraries/ffms2: Update DEP.
  7342. libraries/ffms2: Updated for version 2.40.
  7343. libraries/fifechan: Fix installing to lib64.
  7344. libraries/fifechan: Update DEP.
  7345. libraries/fifechan: Updated for version 0.1.5.
  7346. libraries/flashplugin-lahf-fix: Removed.
  7347. libraries/flatbuffers: Updated for version 1.12.0.
  7348. libraries/flatzebra: Updated for version 0.1.7.
  7349. libraries/flatzebra: Use the C++14 standard.
  7350. libraries/flickcurl: Remove .la files.
  7351. libraries/flint: Remove .la files.
  7352. libraries/fltk: Remove .la files.
  7353. libraries/fltk: Updated for version 1.3.8.
  7354. libraries/fmodapi: Remove template comment.
  7355. libraries/folly: Fixed dep info
  7356. libraries/folly: Removed (orphaned and FTB).
  7357. libraries/fox-toolkit-devel: Remove .la files.
  7358. libraries/fox-toolkit-devel: Updated for version 1.7.77.
  7359. libraries/fox-toolkit: Remove .la files.
  7360. libraries/fox-toolkit: Updated for version 1.6.57.
  7361. libraries/freealut: Fixed dep info
  7362. libraries/freealut: Remove .la files.
  7363. libraries/freealut: Remove .la files.
  7364. libraries/freexl: Remove .la files.
  7365. libraries/frei0r: Removed (added to Slackware as frei0r-plugins).
  7366. libraries/ftgl: New maintainer, optional API doc.
  7367. libraries/fuzzylite: Removed redundant doinst.sh
  7368. libraries/fuzzylite: Updated for version 6.0.
  7369. libraries/gallerize: Removed Python 2 support.
  7370. libraries/gallerize: Update DEP.
  7371. libraries/gallerize: Updated for version 0.4.
  7372. libraries/ganv: Updated for version 1.8.0.
  7373. libraries/gavl: Remove .la files.
  7374. libraries/gazebo: Removed (no qt4-webkit available).
  7375. libraries/gcab: Fixed dep info
  7376. libraries/gcab: Remove .la files.
  7377. libraries/gconfmm: Fix double patch.
  7378. libraries/gconfmm: Patch fo 15.0
  7379. libraries/gconfmm: Remove .la files.
  7380. libraries/gconfmm: add patch to fix build
  7381. libraries/gdl: Added (GNOME Docking Library).
  7382. libraries/gdl: Remove .la files.
  7383. libraries/gdl: Removed.
  7384. libraries/gdl: Updated for version 3.34.0.
  7385. libraries/gevent: Updated for version 21.1.2.
  7386. libraries/gevent: Updated for version 21.8.0.
  7387. libraries/gf2x: Remove .la files.
  7388. libraries/gf2x: Updated for new project home
  7389. libraries/giblib: Remove .la files.
  7390. libraries/girara: Align with new template.
  7391. libraries/girara: Fix README.
  7392. libraries/girara: Fixed dep info
  7393. libraries/girara: Fixed ninja build.
  7394. libraries/girara: Updated for version 0.3.6.
  7395. libraries/glfw: Removed (no dependees, conflicts with glfw3).
  7396. libraries/glktermw: Remove template comment.
  7397. libraries/glog: Remove .la files.
  7398. libraries/glog: Use the C++14 standard.
  7399. libraries/gloox: Remove .la files.
  7400. libraries/gmtk: Remove .la files.
  7401. libraries/gnet: Remove .la files.
  7402. libraries/gnome-desktop: Support alternatives for ninja
  7403. libraries/gnome-desktop: Update DEP.
  7404. libraries/gnome-desktop: Updated for version 41.1
  7405. libraries/gnome-desktop: Updated to version 40.2
  7406. libraries/gnome-media: Add gstreamer0 dependency.
  7407. libraries/gnome-media: Remove .la files.
  7408. libraries/gnome-python2-gconf: Removed (nothing uses this)
  7409. libraries/gnome-sharp: Remove .la files.
  7410. libraries/gnome-vfsmm: Remove .la files.
  7411. libraries/gnonlin: Removed (no dependees).
  7412. libraries/goffice0.8: Disable some warnings-as-errors.
  7413. libraries/goffice0.8: Misc cleanups for Slackware 15.0
  7414. libraries/goffice0.8: Remove .la files.
  7415. libraries/goffice: Remove .la files.
  7416. libraries/goffice: Updated for version 0.10.49.
  7417. libraries/google-fruit: Updated for version 3.6.0.
  7418. libraries/gperftools: Remove .la files.
  7419. libraries/gperftools: Updated for version 2.9.1.
  7420. libraries/grantlee-qt5: Removed (added to Slackware)
  7421. libraries/greenlet: Fix MD5SUM.
  7422. libraries/greenlet: Updated for version 0.4.17.
  7423. libraries/greenlet: Updated for version 1.1.0.
  7424. libraries/greenlet: Updated for version 1.1.2.
  7425. libraries/grpc: Fixed dep info
  7426. libraries/grx: Remove .la files.
  7427. libraries/gsnmp: Remove .la files.
  7428. libraries/gsound: Added (library for playing system sounds).
  7429. libraries/gspell: Added (spell checking library)
  7430. libraries/gspell: Remove .la files.
  7431. libraries/gspell: Support PRINT_PACKAGE_NAME.
  7432. libraries/gssdp: Align with new template.
  7433. libraries/gssdp: Build with sniffer.
  7434. libraries/gssdp: Fixed dep info in README
  7435. libraries/gssdp: Support alternatives for ninja
  7436. libraries/gssdp: Updated for version 1.2.3.
  7437. libraries/gssdp: Updated for version 1.3.0.
  7438. libraries/gssdp: Updated for version 1.3.1.
  7439. libraries/gssdp: Updated for version 1.4.0.1.
  7440. libraries/gst-editing-services: Added (editor creating lib).
  7441. libraries/gstreamer-editing-services: Compress man pages.
  7442. libraries/gstreamer-editing-services: Remove .la files.
  7443. libraries/gstreamer-editing-services: Removed.
  7444. libraries/gstreamer-editing-services: Updated for version 1.14.0.
  7445. libraries/gstreamermm: Patch for gcc >= 7.x.
  7446. libraries/gstreamermm: Remove .la files.
  7447. libraries/gstreamermm: Updated for version 1.10.0.
  7448. libraries/gtk-aurora-engine: Remove .la files.
  7449. libraries/gtk-qt-engine: Removed (abandoned ftbfs).
  7450. libraries/gtk-sharp: Fix building against newer monos.
  7451. libraries/gtk-sharp: Remove .la files.
  7452. libraries/gtkdatabox: Remove .la files.
  7453. libraries/gtkdatabox: Revert duplicate .la file removal
  7454. libraries/gtkdatabox: Updated for version 1.0.0
  7455. libraries/gtkdatabox: Updated icon cache.
  7456. libraries/gtkglarea: Remove .la files.
  7457. libraries/gtkglarea: Revert duplicate .la file removal
  7458. libraries/gtkglext: Fixups for Slackware 15.0
  7459. libraries/gtkglext: Patch for a conflicting definition.
  7460. libraries/gtkglext: Remove .la files.
  7461. libraries/gtkglextmm: Remove .la files.
  7462. libraries/gtkhotkey: Removed (no maintainer)
  7463. libraries/gtkhtml: Patched for the newer enchant.
  7464. libraries/gtkhtml: Remove .la files.
  7465. libraries/gtkimageview: Remove .la files.
  7466. libraries/gtkmm-utils: Remove .la files.
  7467. libraries/gtksourceview3: Removed (added to Slackware).
  7468. libraries/gtksourceview4: Added (framework for source code editing).
  7469. libraries/gtksourceview4: Fixed dep info
  7470. libraries/gtksourceview4: Support alternatives for ninja
  7471. libraries/gtksourceview4: Updated for version 4.8.1.
  7472. libraries/gtksourceview: Remove .la files.
  7473. libraries/gtkspell3: Fixed dep info in README
  7474. libraries/gtkspell3: Fixed dep info.
  7475. libraries/gtkspell3: Remove la file.
  7476. libraries/gts: Remove .la files.
  7477. libraries/guichan: Remove .la files.
  7478. libraries/gumbo-parser: Remove .la files.
  7479. libraries/gupnp: Align with new template.
  7480. libraries/gupnp: Compress manpages.
  7481. libraries/gupnp: Fix for no man pages.
  7482. libraries/gupnp: Support alternatives for ninja
  7483. libraries/gupnp: Updated for version 1.2.4.
  7484. libraries/gupnp: Updated for version 1.2.6.
  7485. libraries/gupnp: Updated for version 1.2.7.
  7486. libraries/gupnp: Updated for version 1.3.0.
  7487. libraries/gupnp: Updated for version 1.3.1.
  7488. libraries/gupnp: Updated for version 1.4.0.
  7489. libraries/gupnp: Updated for version 1.4.1.
  7490. libraries/gupnp: Updated for version 1.4.3.
  7491. libraries/gwenhywfar: Build qt5 gui.
  7492. libraries/gwenhywfar: Update for version 5.8.2.
  7493. libraries/hdf5: Remove .la files.
  7494. libraries/hdf: Force use of libtirpc in the CFLAGS.
  7495. libraries/hdf: Remove .la files.
  7496. libraries/hidapi: FIx building with the newer autotools.
  7497. libraries/hidapi: Updated for version 0.10.1.
  7498. libraries/hinnant-date: Removed (included in sqlpp11).
  7499. libraries/hoel: updated for version 1.4.18
  7500. libraries/hpx: Forced c++11 and added a patch for gcc >= 7.x.
  7501. libraries/hpx: Removed (orphaned and FTB).
  7502. libraries/hpx: Updated for version 1.7.1.
  7503. libraries/html5lib: Fix python3-webencodings dep name.
  7504. libraries/html5lib: Update DEP.
  7505. libraries/htmlcxx: Remove .la files.
  7506. libraries/htmlcxx: Use the C++14 standard.
  7507. libraries/htslib: Remove .la files.
  7508. libraries/htslib: Update to version 1.15
  7509. libraries/htslib: Updated for version 1.13.
  7510. libraries/htslib: Updated to version 1.14
  7511. libraries/http-parser: Disabled some warnings-as-errors.
  7512. libraries/hug: Removed (no maintainer).
  7513. libraries/hyperscan: Remove fix unnecessary for current.
  7514. libraries/hyphen: Removed (added to Slackware).
  7515. libraries/id3lib: Removed (added to Slackware).
  7516. libraries/iddawc: updated for version 1.0.0
  7517. libraries/iddawc: updated for version 1.1.1
  7518. libraries/ignition-transport: REQUIRES protobuf => protobuf3.
  7519. libraries/iksemel: Remove .la files.
  7520. libraries/imlib2: Updated for version 1.7.2.
  7521. libraries/imlib2: Updated for version 1.7.3.
  7522. libraries/imlib2: Updated for version 1.7.4.
  7523. libraries/imlib2_loaders: Updated to version 1.7.1
  7524. libraries/imlib: Remove .la files.
  7525. libraries/iniparser: Fix support for PRINT_PACKAGE_NAME
  7526. libraries/irrlicht: Remove a sysctl.h include.
  7527. libraries/isl: Removed (added to Slackware).
  7528. libraries/isodate: Add python3 support.
  7529. libraries/isodate: Update DEP.
  7530. libraries/itcl: Remove .la files.
  7531. libraries/jai-imageio: Removed (No maintainer).
  7532. libraries/jai: Removed (No maintainer).
  7533. libraries/jansson: Removed (added to Slackware).
  7534. libraries/jbig2dec: Remove .la file.
  7535. libraries/jbig2enc: Remove .la file.
  7536. libraries/jcal: Remove .la files.
  7537. libraries/jreen: Add qt4 dependency.
  7538. libraries/json-glib: Removed (added to Slackware).
  7539. libraries/json-parser: Remove .la files.
  7540. libraries/jsoncpp: Fixed dep info
  7541. libraries/jsoncpp: Support alternatives for ninja
  7542. libraries/keybinder: Added (gtk+2 keyboard shortcut library).
  7543. libraries/keybinder: Remove .la files.
  7544. libraries/lablgtk: Added the dependency ocaml-findlib.
  7545. libraries/lablgtk: Remove .la files.
  7546. libraries/lablgtk: Updated for version 2.18.12.
  7547. libraries/lablgtk: Updated for version 2.18.8, changed maintainer.
  7548. libraries/lame: Removed (added to Slackware).
  7549. libraries/lapack-atlas: Removed (Along with atlas).
  7550. libraries/lapack: Updated for version 3.10.0
  7551. libraries/lastfmlib: Removed
  7552. libraries/lastfmlib: Updated maintainer email
  7553. libraries/lensfun: Removed (added to Slackware).
  7554. libraries/leptonica: Updated for version 1.81.1.
  7555. libraries/leptonica: Updated for version 1.82.0.
  7556. libraries/libAfterImage: Fix make command.
  7557. libraries/libAfterImage: Remove .la files.
  7558. libraries/libEMF: Remove .la files.
  7559. libraries/libEMF: i486 => i586.
  7560. libraries/libaacs: Remove .la files.
  7561. libraries/libaacs: Updated for version 0.11.0.
  7562. libraries/libaaio: Remove .la files.
  7563. libraries/libaal: Remove .la files.
  7564. libraries/libabw: Remove .la files.
  7565. libraries/libaec: Updated for version 1.0.6
  7566. libraries/libaec: updated for version 1.0.5
  7567. libraries/libagentcrypt: Fixed dep info
  7568. libraries/libagentcrypt: Remove .la files.
  7569. libraries/libalkimia: Removed (added to Slackware as alkimia).
  7570. libraries/libantlr3c: Remove .la files.
  7571. libraries/libaosd: Remove .la files.
  7572. libraries/libappindicator3: Removed (shipped with Slackware 15.0)
  7573. libraries/libart-lgpl: Added (graphics library).
  7574. libraries/libart-lgpl: Remove .la files.
  7575. libraries/libasr: Remove .la files.
  7576. libraries/libass: Remove la files.
  7577. libraries/libast: Remove .la files.
  7578. libraries/libaudclient: Remove .la files.
  7579. libraries/libavc1394: Remove .la files.
  7580. libraries/libb64: Fix 15.0 build.
  7581. libraries/libbde: Fix DOWNLOAD.
  7582. libraries/libbde: Remove .la files.
  7583. libraries/libbdplus: Remove .la files.
  7584. libraries/libbluray: Removed (added to Slackware).
  7585. libraries/libbonobo: Remove .la files.
  7586. libraries/libbonoboui: Remove .la files.
  7587. libraries/libbsd: Remove la file.
  7588. libraries/libbson: Removed (no longer needed)
  7589. libraries/libbtbb: Fix tarball handling.
  7590. libraries/libburn: Removed (added to Slackware).
  7591. libraries/libc++: Removed (added to Slackware as part of llvm).
  7592. libraries/libcacard: Remove .la files.
  7593. libraries/libcangjie: Remove .la files.
  7594. libraries/libcapsimage: Remove .la files.
  7595. libraries/libcapsimage: Remove template comment.
  7596. libraries/libcbor: updated for version 0.9.0
  7597. libraries/libcdaudio: Remove .la files.
  7598. libraries/libcdr: Remove .la files.
  7599. libraries/libchewing: Remove .la files.
  7600. libraries/libcifpp: Updated for version 3.0.0.
  7601. libraries/libcifpp: added. Dependency for mkDSSP
  7602. libraries/libcitadel: Remove .la files.
  7603. libraries/libclaw: Patches for the newer gcc.
  7604. libraries/libclaw: Removed redundant doinst.sh.
  7605. libraries/libcli: Updated for version 1.10.7
  7606. libraries/libcli: Updated maintainer email
  7607. libraries/libcmis: Remove .la files.
  7608. libraries/libcoap: Remove .la files.
  7609. libraries/libcompizconfig: Remove .la files.
  7610. libraries/libcompizconfig: Updated for version 0.8.18.
  7611. libraries/libconfig: Remove .la files.
  7612. libraries/libcpuid: Remove .la files.
  7613. libraries/libcryptui: Remove .la files.
  7614. libraries/libcsv: version update, new maintainer.
  7615. libraries/libctl: Remove .la files.
  7616. libraries/libcue: Removed (added to Slackware).
  7617. libraries/libcuefile: Specify cmake's path to source, cleanups.
  7618. libraries/libdaemon: Remove la file.
  7619. libraries/libdatrie: Fix DOWNLOAD.
  7620. libraries/libdatrie: Remove .la files.
  7621. libraries/libdbh2: Remove .la files.
  7622. libraries/libdbi-drivers: Remove .la files.
  7623. libraries/libdbi: Remove .la files.
  7624. libraries/libdbus-c++: Don't install .la files
  7625. libraries/libdbus-c++: Updated for version 20160924_e3455d2.
  7626. libraries/libdbus-c++: Updated maintainer email
  7627. libraries/libdbusmenu: Removed (added to Slackware).
  7628. libraries/libdc1394: Remove .la files.
  7629. libraries/libdca: New maintainer. Updated for version 0.0.7
  7630. libraries/libdca: Remove .la files.
  7631. libraries/libde265: Remove .la files.
  7632. libraries/libdesktop-agnostic: Fixed dep info
  7633. libraries/libdesktop-agnostic: Removed (no active maintainer)
  7634. libraries/libdispatch: Fix conflict with libkqueue.
  7635. libraries/libdivecomputer: Remove .la files.
  7636. libraries/libdmapsharing: Remove .la files.
  7637. libraries/libdmtx: Removed (added to Slackware).
  7638. libraries/libdockapp: Updated for version 0.7.3.
  7639. libraries/libdsk: Remove .la files.
  7640. libraries/libdsk: Updated for version 1.5.18.
  7641. libraries/libdv: Don't install *.la files
  7642. libraries/libdv: Updated maintainer email
  7643. libraries/libdvbcsa: Remove .la files.
  7644. libraries/libdvbpsi: Remove .la files.
  7645. libraries/libdvbpsi: Updated for version 1.3.3.
  7646. libraries/libdvdcss: Remove .la files.
  7647. libraries/libdvdcss: Updated for version 1.4.3.
  7648. libraries/libdwarf: Remove .la files.
  7649. libraries/libdynamite: Remove .la files.
  7650. libraries/libe-book: Remove .la files.
  7651. libraries/libeatmydata: Remove .la files.
  7652. libraries/libebml: Added shared lib build to cmake.
  7653. libraries/libebml: Updated for version 1.4.2.
  7654. libraries/libechonest: Remove qt4 support (breaks build).
  7655. libraries/libechonest: Removed.
  7656. libraries/libedit: Removed (added to Slackware).
  7657. libraries/libeditline: Added version 1.17.1.
  7658. libraries/libeditline: Remove .la files.
  7659. libraries/libee: Remove .la files.
  7660. libraries/libeot: Remove .la files.
  7661. libraries/libepubgen: Remove .la files.
  7662. libraries/libesedb: Fix DOWNLOAD.
  7663. libraries/libesedb: Remove .la files.
  7664. libraries/libesmtp: Remove .la files.
  7665. libraries/libestr: Remove .la files.
  7666. libraries/libetonyek: Remove .la files.
  7667. libraries/libetonyek: Updated for version 0.1.10.
  7668. libraries/libetpan: Remove .la files.
  7669. libraries/libetpan: Updated for version 1.9.4.
  7670. libraries/libev: Remove .la files.
  7671. libraries/libevdevplus: Added (C++ event device lib).
  7672. libraries/libevhtp: Updated for version 1.2.16.
  7673. libraries/libevt: Fix DOWNLOAD.
  7674. libraries/libevt: Remove .la files.
  7675. libraries/libevtx: Fix DOWNLOAD.
  7676. libraries/libevtx: Remove .la files.
  7677. libraries/libewf: Enable python3 modules.
  7678. libraries/libewf: Remove .la files.
  7679. libraries/libewf: Updated for version 20140812.
  7680. libraries/libexe: Fix DOWNLOAD.
  7681. libraries/libexe: Remove .la files.
  7682. libraries/libexif-gtk: Remove .la files.
  7683. libraries/libexttextcat: Remove .la files.
  7684. libraries/libfastjson: Remove .la files.
  7685. libraries/libfdk-aac: Remove la file.
  7686. libraries/libfdk-aac: Updated for version 2.0.2
  7687. libraries/libffado: Cleanups, add the new dep libdbus-c++.
  7688. libraries/libffado: Removed icon cache update.
  7689. libraries/libffado: Updated for version 2.4.4, point to python3.
  7690. libraries/libffado: Updated maintainer email
  7691. libraries/libffado: Various script cleanup
  7692. libraries/libfido2: Add udev rule.
  7693. libraries/libfido2: Added (Yubico 2UF C library).
  7694. libraries/libfido2: Updated for versino 1.9.0.
  7695. libraries/libfido2: Updated for version 1.10.0.
  7696. libraries/libfido2: Updated for version 1.8.0.
  7697. libraries/libfilezilla: Updated for version 0.26.0.
  7698. libraries/libfilezilla: Updated for version 0.27.1.
  7699. libraries/libfilezilla: Updated for version 0.28.0.
  7700. libraries/libfilezilla: Updated for version 0.30.0.
  7701. libraries/libfilezilla: Updated for version 0.31.0.
  7702. libraries/libfilezilla: Updated for version 0.31.1.
  7703. libraries/libfilezilla: Updated for version 0.32.0.
  7704. libraries/libfilezilla: Updated for version 0.34.0.
  7705. libraries/libfilezilla: Updated for version 0.34.2.
  7706. libraries/libfilezilla: Updated for version 0.35.0.
  7707. libraries/libfilezilla: Updated for version 0.36.0.
  7708. libraries/libfilteraudio: Fixed dep info
  7709. libraries/libfishsound: Fix README, remove template comment.
  7710. libraries/libfishsound: Fixed dep info in README
  7711. libraries/libfixposix: Remove .la files.
  7712. libraries/libfm-extra: Remove .la files.
  7713. libraries/libfm: Fixed dep info in README
  7714. libraries/libfm: Remove .la files.
  7715. libraries/libfprint: Updated for version 1.94.2.
  7716. libraries/libfreehand: Remove .la files.
  7717. libraries/libfsapfs: Fix DOWNLOAD.
  7718. libraries/libfsapfs: Remove .la files.
  7719. libraries/libfsntfs: Fix DOWNLOAD.
  7720. libraries/libfsntfs: Remove .la files.
  7721. libraries/libftdi1: Removed redundant doinst.sh.
  7722. libraries/libftdi1: Updated for version 1.5.
  7723. libraries/libftdi: Remove .la files.
  7724. libraries/libfvde: Fix DOWNLOAD.
  7725. libraries/libfvde: Remove .la files.
  7726. libraries/libfwnt: Fix download URL.
  7727. libraries/libfwsi: Fix DOWNLOAD.
  7728. libraries/libfwsi: Remove .la files.
  7729. libraries/libg15: Remove .la files.
  7730. libraries/libg15render: Remove .la files.
  7731. libraries/libg3d: Disable gtk-doc building.
  7732. libraries/libg3d: Remove .la files.
  7733. libraries/libgadu: Remove .la files.
  7734. libraries/libgaiagraphics: Removed (obsoleted upstream).
  7735. libraries/libgaminggear: Patch to correctly find the newer harfbuzz.
  7736. libraries/libgcrypt15: Removed (dependency for brackets).
  7737. libraries/libgda: Fixed dep info
  7738. libraries/libgda: Removed.
  7739. libraries/libgdiplus: Updated for version 6.0.5.
  7740. libraries/libgee1: Fixed dep info
  7741. libraries/libgee1: Remove .la files.
  7742. libraries/libgee: Removed (added to Slackware).
  7743. libraries/libgexiv2: Removed (added to Slackware).
  7744. libraries/libgig: Remove .la files.
  7745. libraries/libgig: Updated for version 4.3.0.
  7746. libraries/libgit2-glib: Align with new template.
  7747. libraries/libgit2-glib: Fixed dep info
  7748. libraries/libgit2-glib: Fixed ninja build.
  7749. libraries/libgksu: Avoid using the newer gtk-doc.
  7750. libraries/libgksu: Fixed doinst.sh.
  7751. libraries/libgksu: Remove .la files.
  7752. libraries/libgksu: Update DEP.
  7753. libraries/libglademm: Remove .la files.
  7754. libraries/libgme: Updated for version 0.6.3.
  7755. libraries/libgnome: Fix source files encoding.
  7756. libraries/libgnome: Remove .la files.
  7757. libraries/libgnomecanvas: Added the new dependency libart-lgpl.
  7758. libraries/libgnomecanvas: Remove .la files.
  7759. libraries/libgnomecanvasmm: Don't install .la files
  7760. libraries/libgnomecanvasmm: Updated maintainer email
  7761. libraries/libgnomecups: Remove .la files.
  7762. libraries/libgnomemm: Remove .la files.
  7763. libraries/libgnomeprint: Add the new dependency libart-lgpl.
  7764. libraries/libgnomeprint: Remove .la files.
  7765. libraries/libgnomeprintui: Don't use the newer gtk-doc.
  7766. libraries/libgnomeprintui: Remove .la files.
  7767. libraries/libgnomeui: Fix source files encoding.
  7768. libraries/libgnomeui: Remove .la files.
  7769. libraries/libgnomeuimm: Remove .la files.
  7770. libraries/libgringotts: Remove .la files.
  7771. libraries/libgsasl: Remove .la files.
  7772. libraries/libgtop: Removed (added to Slackware).
  7773. libraries/libgusb: Fixed dep info
  7774. libraries/libgusb: Support alternatives for ninja
  7775. libraries/libgusb: Updated for version 0.3.10.
  7776. libraries/libgusb: Updated for version 0.3.6.
  7777. libraries/libgusb: Updated for version 0.3.7.
  7778. libraries/libgusb: Updated for version 0.3.8.
  7779. libraries/libgusb: Updated for version 0.3.9.
  7780. libraries/libgxps: Fixed dep info
  7781. libraries/libgxps: Support alternatives for ninja
  7782. libraries/libhandy: Added (UI components for gtk+3).
  7783. libraries/libhandy: Remove old template CWD.
  7784. libraries/libhandy: Updated for version 1.5.0.
  7785. libraries/libharu: Remove .la files.
  7786. libraries/libheif: Fix build with newer google-go-lang.
  7787. libraries/libheif: Remove .la files.
  7788. libraries/libhid: Remove .la files.
  7789. libraries/libhoard: Updated for version 3.13
  7790. libraries/libhoard: Updated maintainer email
  7791. libraries/libhtp: Remove .la files.
  7792. libraries/libicns: Get rid of .la file.
  7793. libraries/libidn2: Removed (added to Slackware).
  7794. libraries/libido3: Disable warnings-as-errors.
  7795. libraries/libido3: Fixed dep info
  7796. libraries/libido3: Remove .la files.
  7797. libraries/libido3: Removed.
  7798. libraries/libiec61883: Remove .la files.
  7799. libraries/libilbc: Remove .la files.
  7800. libraries/libilbc: Updated for version 3.0.4.
  7801. libraries/libindi-drivers: Updated for version 1.9.4.
  7802. libraries/libindi: Fix download URL and tarball name.
  7803. libraries/libindi: Update DEP.
  7804. libraries/libindi: Updated for version 1.9.4.
  7805. libraries/libindicator3: Disable warnings-as-errors.
  7806. libraries/libindicator3: Removed (shipped with Slackware 15.0)
  7807. libraries/libinput: Removed (added to Slackware).
  7808. libraries/libiptcdata: Remove .la files.
  7809. libraries/libircclient: Fix to support openssl-1.1.x.
  7810. libraries/libircclient: Remove .la files.
  7811. libraries/libisoburn: Fixed dep info
  7812. libraries/libisoburn: Remove .la files.
  7813. libraries/libisofs: Remove .la files.
  7814. libraries/libixion: Remove .la files.
  7815. libraries/libixion: Updated for version 0.17.0.
  7816. libraries/libixp: Fix for gcc >= 10.x.
  7817. libraries/libjwt: Fixed dep info
  7818. libraries/libjwt: Remove .la files.
  7819. libraries/libjwt: updated for version 1.13.1
  7820. libraries/libkate: Remove .la files.
  7821. libraries/libkface: Removed (unused)
  7822. libraries/libkgeomap4: Removed (unused)
  7823. libraries/libkqueue: Updated for version 2.3.1, switch to cmake.
  7824. libraries/libkvkontakte: Removed (No longer needed).
  7825. libraries/liblangtag: Remove .la files.
  7826. libraries/liblightgrep: Fixed DOWNLOAD.
  7827. libraries/liblightgrep: Remove .la files.
  7828. libraries/liblinebreak: Remove .la files.
  7829. libraries/liblnk: Fix DOWNLOAD.
  7830. libraries/liblnk: Remove .la files.
  7831. libraries/liblo: Remove .la files.
  7832. libraries/liblogging: Remove .la files.
  7833. libraries/liblqr: Remove .la files.
  7834. libraries/liblrdf: Added the new dependency raptor.
  7835. libraries/liblrdf: Remove .la files.
  7836. libraries/liblscp: Remove .la files.
  7837. libraries/liblxi: Remove .la files.
  7838. libraries/libmaa: Disable some warnings-as-errors.
  7839. libraries/libmaa: Remove .la files.
  7840. libraries/libmatheval: Avoid the incompatible guile 3, use 1.8.
  7841. libraries/libmatheval: Remove .la files.
  7842. libraries/libmatroska: Build shared libs.
  7843. libraries/libmatroska: Updated for version 1.6.3.
  7844. libraries/libmediainfo: Add tfsxml patch
  7845. libraries/libmediainfo: Remove .la files.
  7846. libraries/libmediainfo: Version bump, add optional dependency, and copyright update
  7847. libraries/libmemcached: Patch for recent gccs.
  7848. libraries/libmemcached: Remove .la files.
  7849. libraries/libmicrohttpd: Remove .la files.
  7850. libraries/libmigdb: Fix file ownership.
  7851. libraries/libmikmod: Remove .la files.
  7852. libraries/libmimedir: Remove .la files.
  7853. libraries/libmimic: Remove .la files.
  7854. libraries/libminizip: Remove la file.
  7855. libraries/libmirage: Patch for gcc >= 10.x.
  7856. libraries/libmms: Don't install *.la files
  7857. libraries/libmms: Updated maintainer email
  7858. libraries/libmodbus: Remove .la files.
  7859. libraries/libmodplug: Remove .la files.
  7860. libraries/libmp3splt: Fix README.
  7861. libraries/libmp3splt: Get rid of .la files.
  7862. libraries/libmp4v2: Patch for gcc >= 10.x.
  7863. libraries/libmp4v2: Remove .la files.
  7864. libraries/libmp4v2: Use a safer patch.
  7865. libraries/libmpd: Remove .la files.
  7866. libraries/libmpdclient: Remove .la files.
  7867. libraries/libmpeg2: Don't install *.la files
  7868. libraries/libmpeg2: Updated maintainer email
  7869. libraries/libmrss: Remove .la files.
  7870. libraries/libmsiecf: Fix DOWNLOAD.
  7871. libraries/libmsiecf: Remove .la files.
  7872. libraries/libmspack: Remove .la files.
  7873. libraries/libmspub: Fix missing include.
  7874. libraries/libmspub: Remove .la files.
  7875. libraries/libmusicbrainz5: Fix download URL and tarball name.
  7876. libraries/libmusicbrainz5: Patched for the newer cmake.
  7877. libraries/libmusicbrainz: Disabled narrowing warnings.
  7878. libraries/libmusicbrainz: Remove .la files.
  7879. libraries/libmusicbrainz: Use the C++14 standard.
  7880. libraries/libmwaw: Disabled some warnings-as-errors.
  7881. libraries/libmwaw: Remove .la files.
  7882. libraries/libnbcompat: Remove .la files.
  7883. libraries/libnet: Remove .la files.
  7884. libraries/libnfc: Added (Near Field Communication (NFC) library)
  7885. libraries/libnfs: Remove .la files.
  7886. libraries/libnfs: Updated for version 5.0.1.
  7887. libraries/libnice: Removed (added to Slackware).
  7888. libraries/libnids: Remove .la files.
  7889. libraries/libnova: Remove .la files.
  7890. libraries/libnsgif: Remove template comment.
  7891. libraries/libnumbertext: Remove .la files.
  7892. libraries/libnxml: Remove .la files.
  7893. libraries/liboauth: Fix for openssl-1.1.x.
  7894. libraries/liboauth: Remove .la files.
  7895. libraries/liboauth: Remove .la files.
  7896. libraries/liboauth: Remove .la files.
  7897. libraries/libofa: Remove .la files.
  7898. libraries/libofx: Remove .la files.
  7899. libraries/liboglappth: Remove .la files.
  7900. libraries/libolecf: Fix DOWNLOAD.
  7901. libraries/libolecf: Remove .la files.
  7902. libraries/liboop: Remove .la files.
  7903. libraries/libopenmpt: Added (OpenMPT based module player library).
  7904. libraries/libopenmpt: Remove .la files.
  7905. libraries/libopenraw: Fix my own stupidity.
  7906. libraries/libopenraw: Remove .la files.
  7907. libraries/libopenraw: Updated for version 0.3.0.
  7908. libraries/libopenshot: Patch for gcc >= 10.x.
  7909. libraries/libopenshot: Update DEP.
  7910. libraries/libopusenc: Removed (added to Slackware).
  7911. libraries/liborcus: Remove .la files.
  7912. libraries/liborcus: Updated for version 0.17.1.
  7913. libraries/liborocos-kdl: Fix file ownership.
  7914. libraries/libosinfo: Fixed dep info
  7915. libraries/libosinfo: Support alternatives for ninja
  7916. libraries/libosinfo: Updated for version 1.9.0.
  7917. libraries/libosmo-dsp: Remove .la files.
  7918. libraries/libotf: Remove .la files.
  7919. libraries/libotr: Remove .la files.
  7920. libraries/libp11: Remove .la files.
  7921. libraries/libpagemaker: Remove .la files.
  7922. libraries/libpano13: Remove .la files.
  7923. libraries/libpaper: Remove la file.
  7924. libraries/libpar2: Remove .la files.
  7925. libraries/libpeas: Fix parameter.
  7926. libraries/libpeas: Support alternatives for ninja
  7927. libraries/libpeas: Updated for version 1.24.1, switch to meson.
  7928. libraries/libpeas: Updated for version 1.30.0.
  7929. libraries/libpff: Fix download URL.
  7930. libraries/libpff: Remove .la files.
  7931. libraries/libpgf: Fix download URL.
  7932. libraries/libpgf: Updated for version 7.21.7.
  7933. libraries/libpinyin: Removed (added to Slackware).
  7934. libraries/libpng-legacy12: Remove .la file (not needed).
  7935. libraries/libpng-legacy12: Remove template comment.
  7936. libraries/libportal: Added (Flatpak portal library).
  7937. libraries/libportal: Support alternatives for ninja
  7938. libraries/libpqxx: Remove .la files.
  7939. libraries/libpqxx: Updated for version 6.4.8.
  7940. libraries/libprelude: Remove .la files.
  7941. libraries/libpri: Disable -Werror.
  7942. libraries/libpseudo: Remove (no dependees).
  7943. libraries/libpst: Updated for version 0.6.76.
  7944. libraries/libpwquality: Removed (added to Slackware).
  7945. libraries/libqb: Fixed dep info
  7946. libraries/libqb: Remove .la files.
  7947. libraries/libqcow: Fix DOWNLOAD.
  7948. libraries/libqcow: Remove .la files.
  7949. libraries/libqinfinity: Disabled narrowing warnings.
  7950. libraries/libqsqlpsql: Updated maintainer email
  7951. libraries/libquicktime: Add missing dependency.
  7952. libraries/libquicktime: Don't install *.la files
  7953. libraries/libquicktime: Fixed dep info
  7954. libraries/libquicktime: Patch for ffmpeg-4.x.
  7955. libraries/libquicktime: Updated maintainer email
  7956. libraries/libquvi-scripts: Remove .la files.
  7957. libraries/libquvi-scripts: Removed.
  7958. libraries/libquvi: Remove .la files.
  7959. libraries/libquvi: Removed (Not needed as cclive is removed).
  7960. libraries/libqxp: Remove .la files.
  7961. libraries/libqxt: Added the dependency qt4.
  7962. libraries/libqxt: Patch for gcc >= 6.x.
  7963. libraries/libqxt: Remove .la files.
  7964. libraries/libr3: Remove .la files.
  7965. libraries/librapi2: Remove .la files.
  7966. libraries/libraqm: Remove .la files.
  7967. libraries/librcd: Remove .la files.
  7968. libraries/libreadline-java: Fixed dep info in README
  7969. libraries/libregf: Fixed DOWNLOAD.
  7970. libraries/libregf: Remove .la files.
  7971. libraries/librelp: Remove .la files.
  7972. libraries/librep: Removed (no maintainer)
  7973. libraries/libreplaygain: Specify cmake's path to source, cleanups.
  7974. libraries/librevisa: Fix DOWNLOAD.
  7975. libraries/librevisa: Remove .la files.
  7976. libraries/librfm5: Remove .la files.
  7977. libraries/librfm5: Updated for version 5.3.16.4.
  7978. libraries/librhtv: Remove .la files.
  7979. libraries/librra: Remove .la files.
  7980. libraries/librsync: Remove .la files.
  7981. libraries/librtfcomp: Remove .la files.
  7982. libraries/librtfcomp: Updated for version 1.3.
  7983. libraries/libsass: Removed (added to Slackware).
  7984. libraries/libscca: Fix DOWNLOAD.
  7985. libraries/libscca: Remove .la files.
  7986. libraries/libsearpc: Fix DOWNLOAD.
  7987. libraries/libsearpc: Fixed dep info
  7988. libraries/libsearpc: Remove .la files.
  7989. libraries/libsearpc: Updated for version 3.1.0.
  7990. libraries/libsearpc: Updated for version 3.2_latest.
  7991. libraries/libseccomp: Remove la file.
  7992. libraries/libseccomp: Removed (Added to Slackware).
  7993. libraries/libseccomp: Updated for version 2.5.2.
  7994. libraries/libseccomp: Updated for version 2.5.3.
  7995. libraries/libserialport: Remove .la files.
  7996. libraries/libshout: Compress manpages.
  7997. libraries/libshout: Fixed dep info in README
  7998. libraries/libshout: New maintainer. Updated for version 2.4.5
  7999. libraries/libshout: Remove .la files.
  8000. libraries/libsidplay2: Remove .la files.
  8001. libraries/libsidplayfp: Remove .la files.
  8002. libraries/libsidplayfp: Remove .la files.
  8003. libraries/libsidplayfp: Remove .la files.
  8004. libraries/libsidplayfp: Updated for version 1.8.7.
  8005. libraries/libsieve: Remove .la files.
  8006. libraries/libsigc++-legacy12: Removed (no dependees).
  8007. libraries/libsigrok: Remove .la files.
  8008. libraries/libsigrok: Updated for version 20201229_f93bf8b.
  8009. libraries/libsigrok: Updated for version 20220224_6dc55e4.
  8010. libraries/libsigrokdecode: Remove .la files.
  8011. libraries/libsigrokdecode: Updated for version 20201111_3f77dc2.
  8012. libraries/libsigrokdecode: Updated for version 20220224_24ba9e1.
  8013. libraries/libsigscan: Fix DOWNLOAD.
  8014. libraries/libsigscan: Remove .la files.
  8015. libraries/libsixel: Removed. (no longer maintained).
  8016. libraries/libskk: Fixed dep info
  8017. libraries/libskk: Re-added libgee1 as dep
  8018. libraries/libskk: Remove .la files.
  8019. libraries/libslack: Fix file permissions.
  8020. libraries/libslack: Remove .la files.
  8021. libraries/libsmbios: Remove .la files.
  8022. libraries/libsmbios: Updated for version 2.4.3.
  8023. libraries/libsmdev: Fix DOWNLOAD.
  8024. libraries/libsmdev: Remove .la files.
  8025. libraries/libsmf: Fix README.
  8026. libraries/libsmf: Remove .la file.
  8027. libraries/libsmi: Remove .la files.
  8028. libraries/libsmraw: Fix DOWNLOAD.
  8029. libraries/libsmraw: Remove .la files.
  8030. libraries/libsodium: Removed (added to Slackware).
  8031. libraries/libsoup3: Added (an HTTP client/server library).
  8032. libraries/libspectrum: Remove .la files.
  8033. libraries/libspf2: Remove .la files.
  8034. libraries/libspf2: Removed doinst.sh.
  8035. libraries/libsrtp: Disable openssl (not compatible with 1.1.x).
  8036. libraries/libsrtp: Remove .la files.
  8037. libraries/libstaroffice: Remove .la files.
  8038. libraries/libstatgrab: Remove .la files.
  8039. libraries/libstrophe: Remove .la files.
  8040. libraries/libsuinput: Remove .la files.
  8041. libraries/libsuinput: Removed redundant doinst.sh.
  8042. libraries/libsunpinyin: Removed (no maintainer).
  8043. libraries/libsynce: Remove .la files.
  8044. libraries/libtar: Remove .la files.
  8045. libraries/libtecla: Remove .la files.
  8046. libraries/libtelnet: Remove .la files.
  8047. libraries/libtermkey: New maintainer.
  8048. libraries/libtermkey: Remove .la files.
  8049. libraries/libthai: Remove .la files.
  8050. libraries/libticables2: Remove .la files.
  8051. libraries/libticalcs2: Remove .la files.
  8052. libraries/libticonv: Remove .la files.
  8053. libraries/libtifiles2: Remove .la files.
  8054. libraries/libtomcrypt: Remove .la files.
  8055. libraries/libtommath: Remove template comment.
  8056. libraries/libtorrent-rasterbar-legacy: Removed.
  8057. libraries/libtorrent-rasterbar: Remove .la files.
  8058. libraries/libtorrent: Fix DOWNLOAD.
  8059. libraries/libtorrent: Remove .la files.
  8060. libraries/libtsm: Fixed dep info
  8061. libraries/libtsm: Remove .la file.
  8062. libraries/libtubo0: Remove .la files.
  8063. libraries/libtunepimp: Remove .la files.
  8064. libraries/libtunepimp: Removed (ftbfs)
  8065. libraries/libtxc_dxtn: Removed (already included in the newer mesa).
  8066. libraries/libu2f-host: Fix VERSION.
  8067. libraries/libu2f-host: Remove .la files.
  8068. libraries/libu2f-host: Updated for version 1.1.11 (unreleased)
  8069. libraries/libucil: Remove .la files.
  8070. libraries/libuinputplus: Added (C++ uinput lib).
  8071. libraries/libunibreak: Updated for version 4.3, new maintainer.
  8072. libraries/libunicap: Patch for gcc >= 10.x.
  8073. libraries/libunicap: Remove .la files.
  8074. libraries/libunicapgtk: Remove .la files.
  8075. libraries/libunique3: Remove .la files.
  8076. libraries/libunique: Remove .la files.
  8077. libraries/libunwind: Removed (added to Slackware).
  8078. libraries/libupnp-legacy: Remove .la files.
  8079. libraries/libupnp: Updated for version 1.14.12.
  8080. libraries/liburcu: Remove .la files.
  8081. libraries/liburcu: Updated for version 0.13.0.
  8082. libraries/liburcu: Updated for version 0.13.1.
  8083. libraries/liburing: Added (io_uring library).
  8084. libraries/liburing: Removed (added to Slackware).
  8085. libraries/libuv: Removed (added to Slackware).
  8086. libraries/libvdpau-va-gl: Update DEP.
  8087. libraries/libversion: Fixed dep info
  8088. libraries/libvhdi: Fix DOWNLOAD.
  8089. libraries/libvhdi: Remove .la files.
  8090. libraries/libvhdi: Updated for version 20210425.
  8091. libraries/libvidcap: Remove .la files.
  8092. libraries/libviper: Remove (included in vwm already).
  8093. libraries/libvirt-glib: Fixed dep info
  8094. libraries/libvirt-glib: Support alternatives for ninja
  8095. libraries/libvirt-glib: Updated for version 4.0.0.
  8096. libraries/libvirt-python: Updated for version 7.2.0.
  8097. libraries/libvirt-python: Updated for version 7.3.0.
  8098. libraries/libvirt-python: Updated for version 7.4.0.
  8099. libraries/libvirt-python: Updated for version 7.6.0.
  8100. libraries/libvirt-python: Updated for version 7.9.0.
  8101. libraries/libvirt-python: Updated for version 8.0.0.
  8102. libraries/libvirt-python: Updated for version 8.1.0.
  8103. libraries/libvirt: Fix build when qemu not present.
  8104. libraries/libvirt: Support alternatives for ninja
  8105. libraries/libvirt: Updated for version 7.2.0, switch to meson.
  8106. libraries/libvirt: Updated for version 7.3.0.
  8107. libraries/libvirt: Updated for version 7.4.0.
  8108. libraries/libvirt: Updated for version 7.6.0.
  8109. libraries/libvirt: Updated for version 7.9.0.
  8110. libraries/libvirt: Updated for version 8.0.0.
  8111. libraries/libvirt: Updated for version 8.1.0.
  8112. libraries/libvirt: detect bash-completion properly
  8113. libraries/libvmdk: Fix DOWNLOAD.
  8114. libraries/libvmdk: Remove .la files.
  8115. libraries/libvmdk: Updated for version 20210418.
  8116. libraries/libvmdk: Updated for version 20210807.
  8117. libraries/libvmime: Updated for version 5617460.
  8118. libraries/libvorbisidec: Remove .la files.
  8119. libraries/libvshadow: Fix DOWNLOAD.
  8120. libraries/libvshadow: Remove .la files.
  8121. libraries/libvslvm: Fix DOWNLOAD.
  8122. libraries/libvslvm: Remove .la files.
  8123. libraries/libvterm: New maintainer
  8124. libraries/libvterm: Remove .la files.
  8125. libraries/libwacom: Removed (added to Slackware).
  8126. libraries/libwebp: Removed (added to Slackware).
  8127. libraries/libwebsockets: Updated for version 4.2.0.
  8128. libraries/libwfut: Remove .la files.
  8129. libraries/libwfut: Removed redundant doinst.sh.
  8130. libraries/libwnck3: Removed (added to Slackware).
  8131. libraries/libwpe: Fixed dep info
  8132. libraries/libwpe: Updated for version 1.10.0.
  8133. libraries/libwpe: Updated for version 1.10.1.
  8134. libraries/libwpe: Updated for version 1.12.0.
  8135. libraries/libwps: Disable some warning-as-errors.
  8136. libraries/libwps: Remove .la files.
  8137. libraries/libwrc: Fix DOWNLOAD.
  8138. libraries/libwrc: Remove .la files.
  8139. libraries/libx86emu: Updated for version 3.4
  8140. libraries/libx86emu: Updated maintainer email
  8141. libraries/libxdg-basedir: Do not install .la files
  8142. libraries/libxdg-basedir: Update for version 1.2.2.
  8143. libraries/libxfcegui4: Remove .la files.
  8144. libraries/libxfcegui4: Update icon cache in doinst.sh.
  8145. libraries/libxkbcommon: Removed (added to Slackware).
  8146. libraries/libxls: Compress manpages.
  8147. libraries/libxls: Remove .la files.
  8148. libraries/libxmi: Remove .la files.
  8149. libraries/libxml++3: Remove .la files.
  8150. libraries/libxml++: Remove .la files.
  8151. libraries/libxmlb: Align with new template.
  8152. libraries/libxmlb: Fixed dep info
  8153. libraries/libxmlb: Fixed ninja build.
  8154. libraries/libxmlb: Updated for version 0.3.0.
  8155. libraries/libxmlb: Updated for version 0.3.1.
  8156. libraries/libxmlb: Updated for version 0.3.2.
  8157. libraries/libxmlb: Updated for version 0.3.3.
  8158. libraries/libxmlb: Updated for version 0.3.6.
  8159. libraries/libxmlb: Updated for version 0.3.7.
  8160. libraries/libxmp: Remove .la files.
  8161. libraries/libyubikey: Remove .la files.
  8162. libraries/libzdb: Disabled openssl (incompatible with 1.1.x).
  8163. libraries/libzdb: Fixed dep info
  8164. libraries/libzdb: Remove .la files.
  8165. libraries/libzen: Remove .la files.
  8166. libraries/libzen: Version bump and copyright update
  8167. libraries/libzmf: Remove .la files.
  8168. libraries/libzookeeper: Disable warnings-as-errors.
  8169. libraries/libzookeeper: Remove .la files.
  8170. libraries/libzrtpcpp: Updated for version 4.6.6.
  8171. libraries/live555: Fix missing header in glibc >= 2.26.
  8172. libraries/lksctp-tools: Remove .la files.
  8173. libraries/log4c: Remove .la files.
  8174. libraries/log4cplus: Remove .la files.
  8175. libraries/log4cpp: Remove .la files.
  8176. libraries/log4cpp: Updated for version 1.1.3.
  8177. libraries/log4shib: Remove .la files.
  8178. libraries/log4shib: Use the C++14 standard.
  8179. libraries/logilab-common: Update DEP.
  8180. libraries/lua-MessagePack: Removed (no maintainer)
  8181. libraries/lua-cmsgpack: Removed (No maintainer).
  8182. libraries/lua-lpeg: Fix quote.
  8183. libraries/lua-lpeg: New maintainer.
  8184. libraries/lua-luv: New maintainer
  8185. libraries/lua-luv: Updated dependencies.
  8186. libraries/lua-mpack: New maintainer.
  8187. libraries/lua-posix: Install in lib64 on x86_64.
  8188. libraries/lua-zlib: Align with template
  8189. libraries/luacrypto: Updated for version 0.5.1.
  8190. libraries/luasec: Updated for version 1.0.2.
  8191. libraries/lunatic-python: Align with template
  8192. libraries/lvtk: Remove template comment.
  8193. libraries/lxqt-build-tools: Updated for version 0.8.0.
  8194. libraries/mariadb_client: Removed (substituted by connector, FTB).
  8195. libraries/marisa: Removed (added to Slackware).
  8196. libraries/mathgl: Updated for version 2.4.4, use qt5.
  8197. libraries/matplotlib: Fix dependency.
  8198. libraries/matplotlib: Update DEP.
  8199. libraries/mdds: Remove .la files.
  8200. libraries/mdds: Updated for version 2.0.1.
  8201. libraries/meanwhile: Remove .la files.
  8202. libraries/meanwhile: Remove .la files.
  8203. libraries/meanwhile: Remove .la files.
  8204. libraries/med: Disable the swig python bindings (broken).
  8205. libraries/med: Remove .la files.
  8206. libraries/menu-cache: Patch for gcc >= 10.x.
  8207. libraries/menu-cache: Remove .la files.
  8208. libraries/mercator: Remove .la files.
  8209. libraries/miniupnpc: Updated for version 2.2.3.
  8210. libraries/mlt-bindings: Added (bindings for MLT).
  8211. libraries/mongo-c-driver: Updated for version 1 17.3.
  8212. libraries/mongo-cxx-driver: FIx building against the new libmongoc.
  8213. libraries/mowitz: Remove .la files.
  8214. libraries/mpir: Remove .la files.
  8215. libraries/msgpack-c: New maintainer.
  8216. libraries/msgpack-c: Use the C++11 standard.
  8217. libraries/msx264: Fix DOWNLOAD.
  8218. libraries/msx264: Fix download URL.
  8219. libraries/msx264: Remove .la files.
  8220. libraries/muParser: New maintainer.
  8221. libraries/muParser: update for version2.3.2
  8222. libraries/mujs: Updated for version 1.1.2
  8223. libraries/mujs: Updated for version 1.1.3
  8224. libraries/mujs: Updated for version 1.2.0
  8225. libraries/mxml: Remove .la files.
  8226. libraries/mysql++: Remove .la files.
  8227. libraries/mysql++: Updated for version 3.3.0.
  8228. libraries/mysql-connector-c++: Updated for version 8.0.23.
  8229. libraries/mysql-connector-c++: Updated for version 8.0.24.
  8230. libraries/mysql-connector-c++: Updated for version 8.0.25.
  8231. libraries/mysql-connector-c++: Updated for version 8.0.26.
  8232. libraries/mysql-connector-c++: Updated for version 8.0.28.
  8233. libraries/mysql-connector-python: Removed.
  8234. libraries/mysql-connector-python: Updated for version 8.0.23.
  8235. libraries/mysqltcl: Remove .la files.
  8236. libraries/netcdf: Remove .la files.
  8237. libraries/nextaw: Remove .la files.
  8238. libraries/nlopt: Updated for version 2.7.1.
  8239. libraries/nltk: Updated for version 3.6.7
  8240. libraries/nltk: Updated for version 3.7.
  8241. libraries/nltk: updated to version 3.6.5
  8242. libraries/npth: Removed (added to Slackware).
  8243. libraries/nspluginwrapper: Fix file permissions.
  8244. libraries/nspluginwrapper: Remove .la files.
  8245. libraries/ntl: Remove .la files.
  8246. libraries/ntl: Updated for version 11.5.1.
  8247. libraries/nv-codec-headers: Updated for version 11.1.5.1.
  8248. libraries/nx-libs: Compress manpages.
  8249. libraries/nx-libs: Fix build (make -j1).
  8250. libraries/nx-libs: Remove .la files.
  8251. libraries/nx-libs: Updated for version 3.5.99.26, use libtirpc.
  8252. libraries/oath-toolkit: Remove .la files.
  8253. libraries/oath-toolkit: Updated for version 2.6.7.
  8254. libraries/ocaml-batteries: Add missing dep.
  8255. libraries/ocaml-batteries: Fix download URL.
  8256. libraries/ocaml-batteries: Updated for version 3.4.0.
  8257. libraries/ocaml-bisect: Fix DOWNLOAD.
  8258. libraries/ocaml-bisect: Remove .la files.
  8259. libraries/ocaml-bisect: Removed (ftb).
  8260. libraries/ocaml-camomile: Correctly handle github tarball.
  8261. libraries/ocaml-camomile: Fix build and deps.
  8262. libraries/ocaml-camomile: Fix download URL.
  8263. libraries/ocaml-camomile: Updated for version 1.0.2.
  8264. libraries/ocaml-findlib: Remove .la files.
  8265. libraries/ocaml-findlib: Updated for version 1.8.1, changed maint.
  8266. libraries/ocaml-findlib: Updated for version 1.9.1.
  8267. libraries/ocaml-ounit: Fix DOWNLOAD.
  8268. libraries/ocaml-ounit: Removed (ftb).
  8269. libraries/ocl-icd: Removed (added to Slackware).
  8270. libraries/ode: Remove .la files.
  8271. libraries/ogre: Explicitly disable the C# bindings.
  8272. libraries/ogre: Fix 15.0 build.
  8273. libraries/ogre: Fixed dep info
  8274. libraries/ogre: Updated for version 13.2.4.
  8275. libraries/olm: New maintainer
  8276. libraries/olm: Updated for version 3.2.10.
  8277. libraries/olm: Updated for version 3.2.8.
  8278. libraries/onevpl/: Added (oneAPI Video Processing Library)
  8279. libraries/opal: Disabled ffmpeg support (not compatible with 4.x).
  8280. libraries/opal: Fixed dep info
  8281. libraries/opal: Removed.
  8282. libraries/openbabel: Fix download URL, remove jdk dep.
  8283. libraries/openbabel: Missed an i486->i586 change
  8284. libraries/openbabel: Switch to i586.
  8285. libraries/openbabel: Updated for version 2.4.1.
  8286. libraries/openbabel: Updated for version 3.1.1.
  8287. libraries/opencl-amd: Fix support for PRINT_PACKAGE_NAME
  8288. libraries/opencv-legacy: Removed (not compatible with opencv).
  8289. libraries/opencv: Removed (added to Slackware).
  8290. libraries/opendht: Fixed dep info
  8291. libraries/openjfx: Remove.
  8292. libraries/opensaml: Remove .la files.
  8293. libraries/opensaml: Use the C++14 standard.
  8294. libraries/orcania: Compress manpages.
  8295. libraries/orcania: Fixed dep info
  8296. libraries/orcania: updated for version 2.2.1
  8297. libraries/osgQt: Updated for version 20210405_8fa9e2a.
  8298. libraries/paho-mqtt: Moved from thirdparty.
  8299. libraries/pangox-compat: Remove .la files.
  8300. libraries/pangox-compat: Updated for version 20150430_edb9e09.
  8301. libraries/pcl: Updated for version 1.12.1.
  8302. libraries/pcre2: Removed (added to Slackware).
  8303. libraries/pgplot: Removed (abandoned upstream and FTB).
  8304. libraries/pgtcl-ng: Remove .la files.
  8305. libraries/php-imagick: Remove .la files.
  8306. libraries/php-imagick: Updated for version 3.5.1
  8307. libraries/php-imagick: Updated maintainer email
  8308. libraries/php-memcache: Remove .la files.
  8309. libraries/php-memcache: Updated for version 4.0.5.2.
  8310. libraries/php-memcached: Remove .la files.
  8311. libraries/php-memcached: Updated for version 3.1.5.
  8312. libraries/php-mssql: Removed (no more mssql ext in php 7.4.x).
  8313. libraries/php-oci8: Remove .la files.
  8314. libraries/php-oci8: Updated for version 2.2.0.
  8315. libraries/php-pdo_dblib: Remove .la files.
  8316. libraries/php-pdo_dblib: Updated for version 7.4.27.
  8317. libraries/php-pgsql: Remove .la files.
  8318. libraries/php-pgsql: Updated for version 7.4.27
  8319. libraries/php-pgsql: Updated for version 7.4.3.
  8320. libraries/php-pgsql: Updated maintainer email
  8321. libraries/php-redis: Remove .la files.
  8322. libraries/php-ssh2: Remove .la files.
  8323. libraries/php-ssh2: Updated for version 1.3.1.
  8324. libraries/php-stomp: Remove .la files.
  8325. libraries/php-stomp: Updated for version 2.0.2.
  8326. libraries/physfs: Specify cmake's path to source.
  8327. libraries/pidgin-mra: Handle weird wget filenames.
  8328. libraries/pies: Fixed dep info
  8329. libraries/pipewire: Removed (added to Slackware).
  8330. libraries/pjsip: Fix DOWNLOAD.
  8331. libraries/pjsip: Fixed dep info
  8332. libraries/pjsip: Remove .la files.
  8333. libraries/plib: Remove .la files.
  8334. libraries/plplot: Fix build (missing include)
  8335. libraries/plplot: Updated for version 5.15.0.
  8336. libraries/plyr: Include python3 support by default
  8337. libraries/plyr: Removed (no maintainer)
  8338. libraries/poco: Remove .la files.
  8339. libraries/poco: Removed redundant doinst.sh.
  8340. libraries/podofo: Patch to bypass a cmake error.
  8341. libraries/poppler-qt5: Removed (added to Slackware as poppler).
  8342. libraries/protobuf-c: Change maintainer email.
  8343. libraries/protobuf-c: Fix MD5SUM.
  8344. libraries/protobuf-c: Remove .la files.
  8345. libraries/protobuf-c: Updated for version 1.4.0.
  8346. libraries/proxygen: Removed (orphaned and FTB).
  8347. libraries/psqlodbc: Remove .la files.
  8348. libraries/pthsem: Remove .la files.
  8349. libraries/ptlib: Patched for the newer gcc, openssl and make.
  8350. libraries/ptlib: Removed.
  8351. libraries/ptypes: Fix DOWNLOAD.
  8352. libraries/pugixml: Updated for version 1.12.
  8353. libraries/pugixml: Updated for version 1.12.1.
  8354. libraries/pyPEG2: Updated for version 20211118_4dd9d69.
  8355. libraries/pyacoustid: Update DEP.
  8356. libraries/pycparser: Only build for python2.
  8357. libraries/pyechonest: Removed (dead upstream)
  8358. libraries/pyqode.core: Update DEP.
  8359. libraries/python-efl: Updated for version 1.25.0.
  8360. libraries/python-xlrd: Remove redundant doinst.sh.
  8361. libraries/python2-PyYAML: Renamed from PyYAML.
  8362. libraries/python3-PyQt5: Removed (added to Slackware as PyQt5).
  8363. libraries/python3-PyQtWebEngine: Fixed dep info
  8364. libraries/python3-PyQtWebEngine: Updated for version 5.15.0.
  8365. libraries/python3-PyQtWebEngine: Updated for version 5.15.3.
  8366. libraries/python3-PyYAML: Removed (Added to Slackware).
  8367. libraries/python3-PyYAML: Updated for version 5.3.1.
  8368. libraries/python3-pillow: Removed (added to Slackware).
  8369. libraries/python3-pyparsing: Removed (added to Slackware).
  8370. libraries/qca-qt5: Removed (added to Slackware).
  8371. libraries/qmltermwidget: Patch for gcc >= 10.x.
  8372. libraries/qoauth: Updated for version 2.0.0, use qt5.
  8373. libraries/qt-assistant-compat: update for new qt4 build.
  8374. libraries/qt3: Fix README.
  8375. libraries/qt3: Install profiles scripts -x.
  8376. libraries/qt3: Remove .la files.
  8377. libraries/qt4-postgresql: Removed
  8378. libraries/qt4-postgresql: Renamed from libqsqlpsql
  8379. libraries/qt4: Added (legacy Qt version).
  8380. libraries/qt4: Explicitly disable webkit (it was already missing).
  8381. libraries/qt4: Respect TAG.
  8382. libraries/qt5-legacy: Fixed dep info in README
  8383. libraries/qt5-legacy: Removed (yep, it's legacy)
  8384. libraries/qt5-postgresql: Added (Postgresql plugin for Qt5)
  8385. libraries/qt5-styleplugins: Patch for qt-5.15.x.
  8386. libraries/qt5-webkit-legacy: Removed (yep, it's legacy, Jim)
  8387. libraries/qt5-webkit: Removed (added to Slackware).
  8388. libraries/qt5: Removed (added to Slackware).
  8389. libraries/qtermwidget: Updated for version 0.15.0.
  8390. libraries/qtmimetypes: Added the dependency qt4.
  8391. libraries/quazip-qt4: Added the dependency qt4.
  8392. libraries/quazip-qt5: Removed (added to Slackware as quazip).
  8393. libraries/quesoglc: Remove .la files.
  8394. libraries/qutepart: Updated for version 20220131_aa69fe6.
  8395. libraries/qwt-qt5: Removed (redundant; use qwt).
  8396. libraries/qwt5: Removed.
  8397. libraries/qwt: Add optional qt4 support.
  8398. libraries/qwt: Check for Qt5Core.pc.
  8399. libraries/qwt: Remove Qt4 support
  8400. libraries/qwtplot3d: Removed.
  8401. libraries/qwtpolar: Removed (FTBFS, and no dependees).
  8402. libraries/rapidjson: Disable some warnings-as-errors.
  8403. libraries/raptor: Remove .la files.
  8404. libraries/rasqal: Added (RDF parsing library).
  8405. libraries/rasqal: Remove .la files.
  8406. libraries/redland: Added (RDF high-level interface library).
  8407. libraries/redland: Remove .la files.
  8408. libraries/remglk: Remove template comment.
  8409. libraries/rep-gtk: Removed (no maintainer)
  8410. libraries/reportlab: Add missing dependency.
  8411. libraries/rest: Remove .la files.
  8412. libraries/restbed: Updated for version 4.8.
  8413. libraries/rhonabwy: Fixed dep info
  8414. libraries/rhonabwy: updated for version 0.9.9999
  8415. libraries/rhonabwy: updated for version 1.0.0
  8416. libraries/rhonabwy: updated for version 1.1.2
  8417. libraries/ring-daemon: Remove .la files.
  8418. libraries/ring-daemon: Removed (superseded by jami).
  8419. libraries/ring-lrc: Fix download URL.
  8420. libraries/ring-lrc: Removed (superseded by jami).
  8421. libraries/rlog: Removed.
  8422. libraries/rrdtool: Remove .la files.
  8423. libraries/rudiments: Remove .la files.
  8424. libraries/rudiments: Updated for version 1.0.5.
  8425. libraries/rudiments: Updated for version 1.4.2.
  8426. libraries/rxtx: Allow other JDKs besides Oracle's.
  8427. libraries/rxtx: Remove .la files.
  8428. libraries/rxtx: Use zulu-openjdk8.
  8429. libraries/sdformat: Fix DOWNLOAD.
  8430. libraries/sdformat: Patch for cmake >= 3.9.x.
  8431. libraries/secp256k1: Remove .la files.
  8432. libraries/shairplay: Remove .la files.
  8433. libraries/skalibs: Remove INSTALL from doc dir.
  8434. libraries/skalibs: Updated for version 2.11.1.0
  8435. libraries/skstream: Remove .la files.
  8436. libraries/slib: Remove .la files.
  8437. libraries/slv2: Update DEP.
  8438. libraries/smpeg2: Remove .la files.
  8439. libraries/smpeg2: Update DEP.
  8440. libraries/soil: Fix DOWNLOAD.
  8441. libraries/sord: Updated for version 0.16.8.
  8442. libraries/soundtouch: Updated for version 2.3.1
  8443. libraries/soundtouch: Updated maintainer email
  8444. libraries/sparsehash: Remove .la files.
  8445. libraries/spread-sheet-widget: Remove .la files.
  8446. libraries/spread-sheet-widget: Remove redundant doinst.sh.
  8447. libraries/spread-sheet-widget: Updated for version 0.8.
  8448. libraries/sqliteodbc: Avoid a find loop.
  8449. libraries/sqliteodbc: Remove .la files.
  8450. libraries/sqlpp11-connector-mysql: Removed (included in sqlpp11).
  8451. libraries/sqlpp11-connector-sqlite3: Removed (included in sqlpp11).
  8452. libraries/sqlpp11: Update DEP.
  8453. libraries/sqlpp11: Updated for version 0.61.
  8454. libraries/srt: Fix .pc paths and doc permissions.
  8455. libraries/srt: Remove .la files.
  8456. libraries/srt: Updated for version 1.4.3.
  8457. libraries/stfl: Fix the download link in the info file.
  8458. libraries/stk: Remove .la files.
  8459. libraries/swfdec: Note the new dependency gst0-plugins-base.
  8460. libraries/swfdec: Remove .la files.
  8461. libraries/swfdec: Remove .la files.
  8462. libraries/swfdec: Remove .la files.
  8463. libraries/t38modem-opal: Fixed dep info
  8464. libraries/t38modem-opal: Removed (missing dependency).
  8465. libraries/t38modem-ptlib: Removed (incompatible with openssl-1.1.x).
  8466. libraries/t4k_common: Fix for gcc >= 10.x.
  8467. libraries/t4k_common: Fix segfaults with the newer librsvg.
  8468. libraries/t4k_common: Remove .la files.
  8469. libraries/t4k_common: Wrapped lines patch.
  8470. libraries/tDOM: Remove .la files.
  8471. libraries/ta-lib: Fix build (make -j1).
  8472. libraries/ta-lib: Remove .la files.
  8473. libraries/tamu_anova: Remove .la files.
  8474. libraries/tamu_anova: update copyright years
  8475. libraries/tcl-inotify: Remove .la files.
  8476. libraries/tcl-tls: Remove .la files.
  8477. libraries/tcl-tls: Updated for version 1.7.20, changed homepage.
  8478. libraries/tclap: Remove .la files.
  8479. libraries/tcllib: Remove .la files.
  8480. libraries/tkimg: Remove .la files.
  8481. libraries/tlsh: Updated for version 4.8.2.
  8482. libraries/tomcat-native: Use zulu-opendjk11.
  8483. libraries/totem-pl-parser: Align with new template.
  8484. libraries/totem-pl-parser: Support alternatives for ninja
  8485. libraries/totem-pl-parser: Updated for version 3.26.0.
  8486. libraries/tox-extension-messages: Fix download URL.
  8487. libraries/tox-extension-messages: Updated for version 0.0.3.
  8488. libraries/toxext: Updated for version 0.0.3.
  8489. libraries/trader: Remove .la files.
  8490. libraries/tre: New maintainer.
  8491. libraries/tre: Remove .la files.
  8492. libraries/tre: Removed Python 2 support.
  8493. libraries/tree-sitter: Updated for version 0.20.4.
  8494. libraries/trilinos: Fix DOWNLOAD.
  8495. libraries/trilinos: Removed (no dependees; conflicts with mpich and openmpi)
  8496. libraries/tsocks: Remove .la files.
  8497. libraries/ucl: Force using the ISO C90 standard.
  8498. libraries/ucl: Remove .la files.
  8499. libraries/ucommon: Remove .la files.
  8500. libraries/ucommon: Updated for version 7.0.0.
  8501. libraries/ucommon: Use the C++14 standard.
  8502. libraries/udunits: Remove .la files, fix download URL.
  8503. libraries/udunits: Remove .la files.
  8504. libraries/udunits: Updated for version 2.2.28.
  8505. libraries/ulfius: Compress manpages.
  8506. libraries/ulfius: updated for version 2.7.3
  8507. libraries/ulfius: updated for version 2.7.4
  8508. libraries/ulfius: updated for version 2.7.7
  8509. libraries/unibilium: New maintainer.
  8510. libraries/unibilium: Remove .la files.
  8511. libraries/unixODBC: New maintainer.
  8512. libraries/unixODBC: Remove .la files.
  8513. libraries/upscaledb: Removed (orphaned and FTB).
  8514. libraries/urdfdom: Install in lib64 on x86_64.
  8515. libraries/uriparser: Updated for version 0.9.6.
  8516. libraries/uuid: Remove .la files.
  8517. libraries/varconf: Remove .la files.
  8518. libraries/varconf: Use the C++14 standard.
  8519. libraries/vdk: Remove .la files.
  8520. libraries/vdpau-video: Removed (obsolete, abandoned upstream, FTB).
  8521. libraries/vid.stab: Removed (added to Slackware).
  8522. libraries/virglrenderer: Support alternatives for ninja
  8523. libraries/virglrenderer: Updated for version 0.9.1.
  8524. libraries/volk: Added (Vector-Optimized Library of Kernels)
  8525. libraries/vsqlite++: Remove .la file.
  8526. libraries/vte2: Added (gtk+2 terminal emulator widget).
  8527. libraries/vte2: Remove .la files.
  8528. libraries/vte3-ng: Fixed dep info
  8529. libraries/vte3-ng: Removed (conflicts with vte in Slackware).
  8530. libraries/vte3: Removed (added to Slackware).
  8531. libraries/wangle: Removed (orphaned and FTB).
  8532. libraries/wayland: Removed (added to Slackware).
  8533. libraries/wcslib: Remove .la files.
  8534. libraries/wcslib: Update DEP.
  8535. libraries/wcslib: Updated for version 7.7.
  8536. libraries/webkit2gtk4.1: Added (Web content rendering)
  8537. libraries/webkit2gtk4.1: Fix README.
  8538. libraries/webkit2gtk4.1: Remove gst-plugins-bad dependency.
  8539. libraries/webkit2gtk4.1: Update README.
  8540. libraries/webkit2gtk4.1: Updated for version 2.34.5.
  8541. libraries/webkit2gtk4.1: Updated for version 2.34.6.
  8542. libraries/webkit2gtk: Accomodate libsoup and libsoup3.
  8543. libraries/webkit2gtk: Align with new template.
  8544. libraries/webkit2gtk: Build just once, respect jobs number.
  8545. libraries/webkit2gtk: Fix README.
  8546. libraries/webkit2gtk: Fixed dep info.
  8547. libraries/webkit2gtk: Patch for icu4c >= 69.x.
  8548. libraries/webkit2gtk: Remove gst-plugins-bad dependency.
  8549. libraries/webkit2gtk: Revert back to building 4.0 API.
  8550. libraries/webkit2gtk: Update DEP.
  8551. libraries/webkit2gtk: Update README.
  8552. libraries/webkit2gtk: Update README.
  8553. libraries/webkit2gtk: Updated for version 2.32.0, switch to ninja.
  8554. libraries/webkit2gtk: Updated for version 2.32.1.
  8555. libraries/webkit2gtk: Updated for version 2.32.2.
  8556. libraries/webkit2gtk: Updated for version 2.32.3.
  8557. libraries/webkit2gtk: Updated for version 2.34.2.
  8558. libraries/webkit2gtk: Updated for version 2.34.3.
  8559. libraries/webkit2gtk: Updated for version 2.34.4.
  8560. libraries/webkit2gtk: Updated for version 2.34.5.
  8561. libraries/webkit2gtk: Updated for version 2.34.6.
  8562. libraries/webkit2gtk: Use libsoup in Slackware.
  8563. libraries/webkit2gtk: Use libsoup3.
  8564. libraries/webkitgtk3: Add actual patch.
  8565. libraries/webkitgtk3: Fix build against newer glib.
  8566. libraries/webkitgtk3: Fixed dep info
  8567. libraries/webkitgtk3: Patched for icu4c-65, disabled warnings spam.
  8568. libraries/webkitgtk3: Removed (no longer build and obsolete).
  8569. libraries/webkitgtk: Fix build against newer glib.
  8570. libraries/webkitgtk: Fixed dep info
  8571. libraries/webkitgtk: Patched for icu4c-65.1, disabled warnings spam.
  8572. libraries/webkitgtk: Removed.
  8573. libraries/wfmath: Remove .la files.
  8574. libraries/wimlib: Remove .la files.
  8575. libraries/wimlib: Updated for version 1.13.4
  8576. libraries/wpebackend-fdo: Added (freedesktop.org backend for WPE).
  8577. libraries/wpwbackend-fdo: Updated for version 1.8.3.
  8578. libraries/wv: Remove .la files.
  8579. libraries/wv: Updated copyright
  8580. libraries/wvstreams: Apply debian patches, cleanups.
  8581. libraries/wvstreams: Remove .la files.
  8582. libraries/wxGTK3: Remove .la files.
  8583. libraries/wxGTK3: Switch to use GTK+3.
  8584. libraries/wxGTK: Remove .la files.
  8585. libraries/wxPython3: Don't explicitely build internal wxGTK3
  8586. libraries/wxPython3: Fix build (ignore /usr/bin/wx-config).
  8587. libraries/wxPython3: Fix build with wxGTK3 changes.
  8588. libraries/wxPython3: Whoops, hardcoded lib64.
  8589. libraries/wxPython4: Kill python3-sip dep
  8590. libraries/wxPython4: Patched for the newer setuptools.
  8591. libraries/wxPython4: Updated for version 4.1.1.
  8592. libraries/wxPython: Remove .la files.
  8593. libraries/wxPython: Updated maintainer email
  8594. libraries/wxSQLite3: Removed (no maintainer)
  8595. libraries/wxX11: Remove .la files.
  8596. libraries/wxsvg: Remove .la files.
  8597. libraries/wxsvg: Update DEP.
  8598. libraries/wxsvg: Updated for version 1.5.20.
  8599. libraries/xapian-bindings: Remove .la files.
  8600. libraries/xapian-bindings: Updated for version 1.4.19.
  8601. libraries/xawplus: Fix DOWNLOAD.
  8602. libraries/xblas: Remove .la files.
  8603. libraries/xblas: Revert duplicate .la file removal
  8604. libraries/xcb-util-xrm: Remove .la files.
  8605. libraries/xerces-c: Remove .la files.
  8606. libraries/xerces-c: Updated for version 3.2.3.
  8607. libraries/xf86-input-libinput: Removed (added to Slackware).
  8608. libraries/xforms: Remove .la files.
  8609. libraries/xine-plugin: Remove .la files.
  8610. libraries/xlt: Remove .la files.
  8611. libraries/xml-security-c: Fix DOWNLOAD.
  8612. libraries/xml-security-c: Remove .la files.
  8613. libraries/xmlrpc-c: Remove .la files.
  8614. libraries/xmlsec: Updated for version 1.2.32.
  8615. libraries/xmlsec: Updated for version 1.2.33.
  8616. libraries/xmltooling: Remove .la files.
  8617. libraries/xmltooling: Use the C++14 standard.
  8618. libraries/xulrunner: Removed (deprecated).
  8619. libraries/xview: Pass -fcommon for gcc >= 10.x, use libtirpc.
  8620. libraries/xview: Remove template comment.
  8621. libraries/xylib: Remove .la files.
  8622. libraries/yajl: Fix DOWNLOAD url.
  8623. libraries/yaml-cpp: Fix github tarball handling.
  8624. libraries/yaz: Remove .la files.
  8625. libraries/yaz: Remove .la files.
  8626. libraries/yaz: Remove .la files.
  8627. libraries/yder: updated for version 1.4.14
  8628. libraries/zeromq: Remove .la files.
  8629. libraries/zimg: Remove .la files.
  8630. libraries/zita-convolver: Remove template comment.
  8631. libraries/zmusic: Fixed dep info
  8632. libraries/zmusic: Updated for version 1.1.8.
  8633. libraries/zuluplay: Removed (no maintainer)
  8634. libraries/zziplib: Remove .la files.
  8635. misc/Colormake: Removed (no maintainer)
  8636. misc/OSCAR: Updated for version 1.3.0.
  8637. misc/Publican: Removed (missing perl dependencies).
  8638. misc/QCMA: Patch to allow building on -current.
  8639. misc/QCMA: Update DEP.
  8640. misc/abduco: Switch to https.
  8641. misc/abgx360: Removed (upstream is gone).
  8642. misc/abgx360gui: Removed (upstream is gone).
  8643. misc/ardesia: Fix icon path.
  8644. misc/ardesia: Patch to build on -current.
  8645. misc/asr-manpages: Fix DOWNLOAD.
  8646. misc/asterixInspector: Fixed dep info
  8647. misc/asterixInspector: Remove icon cache update.
  8648. misc/bbrun: Fix for gcc >= 10.x.
  8649. misc/bdf2psf: Updated for version 1.207, new maintainer.
  8650. misc/bdfresize: Add argument checking.
  8651. misc/biosdisk: Fix download URL.
  8652. misc/bodr: s,i486,i586,g
  8653. misc/bodr: update copyright years
  8654. misc/boncuk: Added the dependency qt4.
  8655. misc/brewtarget: Updated for version 2.3.1.
  8656. misc/chemical-mime-data: s,i486,i586,g
  8657. misc/chemical-mime-data: update copyright years
  8658. misc/chntpw: Updated for version 140201.
  8659. misc/ciso: New maintainer, add man page.
  8660. misc/clawsker: Add missing doinst.sh.
  8661. misc/cp437: Remove template comment.
  8662. misc/cups-windows: Removed (pretty sure this is obsolete)
  8663. misc/cwiid: Comment out the python-3.10 patch.
  8664. misc/cwiid: Fix build with python 3.10.
  8665. misc/cwiid: Updated for version 0.6.91_2.
  8666. misc/dcc: Updated for version 1.3.163.
  8667. misc/deroff: Remove template comment.
  8668. misc/dmg2img: Patch for openssl-1.1.x.
  8669. misc/doclifter: Updated for version 2.20, new maintainer.
  8670. misc/drg2sbg: Fixed dep info
  8671. misc/dwdiff: Updated for version 2.1.4.
  8672. misc/fbcat: Updated for version 0.5.2.
  8673. misc/fbdump: Remove template comment.
  8674. misc/fcitx-configtool: Removed (added to Slackware).
  8675. misc/fcitx-libpinyin: Removed (added to Slackware).
  8676. misc/fcitx-mozc: Disable building against qt-4.x.
  8677. misc/fcitx-mozc: Fixed dep info
  8678. misc/fcitx-mozc: Fixed dep info
  8679. misc/fcitx-qt5: Removed (added to Slackware).
  8680. misc/fcitx: Removed (added to Slackware).
  8681. misc/figlet: Fix i486 -> i586.
  8682. misc/flashrom: Updated for version v1.2.
  8683. misc/font-unscii: Remove template comment.
  8684. misc/fribid: Removed (not compatible with openssl-1.1.x).
  8685. misc/funny-manpages: Updated for version 2.3.
  8686. misc/g15daemon: Pass -fcommon for gcc >= 10.x.
  8687. misc/g15daemon: Remove .la files.
  8688. misc/g15stats: Update DEP.
  8689. misc/ghostpcl: Removed patch.
  8690. misc/ghostpcl: Updated for version 9.55.0.
  8691. misc/glogg: Fix DOWNLOAD.
  8692. misc/glogg: Updated for version 1.1.4.
  8693. misc/gnome-mime-data: Updated download link
  8694. misc/go-md2man: fix build on newer golang
  8695. misc/goldencheetah: Updated for Slackware 15.0
  8696. misc/gourmet: Add missing doinst.sh.
  8697. misc/gourmet: Fix REQUIRES for python2.
  8698. misc/gourmet: Switch from tostring to tobytes in the code.
  8699. misc/gr-iqbal: Updated for version 20210108_fbee239.
  8700. misc/gramps: Fix icon cache update.
  8701. misc/gramps: Fixed dep info in README
  8702. misc/gxmessage: Fix DOWNLOAD.
  8703. misc/hashkill: Fix github tarball handling.
  8704. misc/hashkill: Fixed dep info in README
  8705. misc/hashkill: Removed (not compatible with openssl-1.1.x).
  8706. misc/heimdall: Fix build (qmake => qmake-qt4).
  8707. misc/heimdall: Use the C++14 standard.
  8708. misc/heyu: Updated for version 2.10.3.
  8709. misc/hoorex: Updated for version 0.9.91
  8710. misc/hoorex: Updated for version 0.9.92
  8711. misc/html2ps: Various fixups for Slackware 15.0
  8712. misc/hxtools: Added (miscellaneous command-line tools).
  8713. misc/ibus-anthy: Removed (added to Slackware).
  8714. misc/ibus-chewing: Fix desktop file handling.
  8715. misc/ibus-chewing: Fixed dep info (ibus)
  8716. misc/ibus-hangul: Removed (added to Slackware).
  8717. misc/ibus-qt: Fixed dep info
  8718. misc/ibus-qt: Small script cleanup and depend on qt4
  8719. misc/ibus-qt: Updated maintainer email
  8720. misc/ibus-skk: Fixed dep info
  8721. misc/ibus-skk: Removed unused code from doinst.sh.
  8722. misc/ibus-unikey: Removed (added to Slackware).
  8723. misc/ibus: Removed (added to Slackware).
  8724. misc/igal2: Removed (ftp + no active maintainer)
  8725. misc/igal2: Updated for version 3.1.
  8726. misc/igal2: update copyright years
  8727. misc/jmri: Remove desktop file handling.
  8728. misc/jmri: Updated for version 4.26.
  8729. misc/kasumi: Use the C++14 standard.
  8730. misc/kcm-fcitx: Removed (added to Slackware).
  8731. misc/kde_cdemu: Fix download URL.
  8732. misc/kde_cdemu: Fix install dir.
  8733. misc/kde_cdemu: Updated for version 0.8.0.
  8734. misc/klibc: Fix support for PRINT_PACKAGE_NAME
  8735. misc/klibc: Updated for version 2.0.9.
  8736. misc/krename: Removed (added to Slackware).
  8737. misc/kronometer: Updated for version 2.2.3.
  8738. misc/lastpass-cli: Fix for gcc >= 10.x.
  8739. misc/libydpdict: Fix DOWNLOAD.
  8740. misc/libydpdict: Remove .la files.
  8741. misc/ltunify: Updated for version 0.3.
  8742. misc/mdic: Added the dependency qt4.
  8743. misc/megatunix: Fix for gcc >= 10.x.
  8744. misc/moreutils: Fix download URL.
  8745. misc/moreutils: Fix the parallel-removing routine.
  8746. misc/moreutils: Update README.
  8747. misc/moreutils: Updated for version 0.65.
  8748. misc/mosquitto: Fixed dep info
  8749. misc/mosquitto: Updated for version 2.0.11
  8750. misc/mosquitto: Updated for version 2.0.12
  8751. misc/mosquitto: Updated for version 2.0.13
  8752. misc/mosquitto: Updated for version 2.0.14
  8753. misc/nixnote: Removed.
  8754. misc/no-more-secrets: Updated for version 1.0.1.
  8755. misc/nvclock: Removed (obsolete and abandoned upstream)
  8756. misc/opencc: Removed (added to Slackware as OpenCC).
  8757. misc/ophcrack: Updated for version 3.8.0.
  8758. misc/oscar: Updated for version 1.2.0.
  8759. misc/owfs: Fix conflict w/libkqueue, rm .la files.
  8760. misc/owfs: Updated for version 3.2p4.
  8761. misc/par2cmdline-tbb: Fix header location.
  8762. misc/par: Remove template comment.
  8763. misc/pinfo: Fix building with gcc >= 10.x.
  8764. misc/pinfo: Fix building with the newer ncurses.
  8765. misc/pinfo: Remove template comment.
  8766. misc/po4a: Added the new dependency perl-Pod-Parser.
  8767. misc/po4a: Updated for version 0.65, new maintainer.
  8768. misc/projectM: Fix icon cache handling.
  8769. misc/projectM: Updated for version 3.1.12.
  8770. misc/projectM: Updated for version 3.1.7.
  8771. misc/protobuf3: Moved to development/protobuf3.
  8772. misc/protobuf3: Updated for version 3.15.8.
  8773. misc/protobuf3: Updated for version 3.16.0.
  8774. misc/protobuf3: Updated for version 3.17.0.
  8775. misc/protobuf3: Updated for version 3.17.1.
  8776. misc/protobuf3: Updated for version 3.17.2.
  8777. misc/protobuf3: Updated for version 3.17.3.
  8778. misc/protobuf3: Updated for version 3.18.0.
  8779. misc/protobuf3: Updated for version 3.18.1.
  8780. misc/protobuf3: Updated for version 3.19.1.
  8781. misc/protobuf3: Updated for version 3.19.3.
  8782. misc/protobuf3: Updated for version 3.19.4.
  8783. misc/protobuf: Fix dependency.
  8784. misc/protobuf: Remove .la files.
  8785. misc/protobuf: Removed (use protobuf3 instead).
  8786. misc/qtkeychain: Removed (added to Slackware).
  8787. misc/qtspell: Updated for version 0.9.0.
  8788. misc/ramdefrag: Fix download URL.
  8789. misc/rarcrack: Remove template comment.
  8790. misc/rbutil: Fixed dep info
  8791. misc/rbutil: Fixed dep info
  8792. misc/rbutil: Updated for Slackware 15.0
  8793. misc/readesm: Removed (no qt4-webkit available).
  8794. misc/recode: Remove .la files.
  8795. misc/rlwrap: Updated for version 0.45.1.
  8796. misc/rsibreak: Updated for version 0.12.13.
  8797. misc/rsibreak: Updated for version 0.12.14.
  8798. misc/samdump2: Patch for openssl-1.1.x.
  8799. misc/sbo-templates: Remove redundant doinst.sh.
  8800. misc/scim-chewing: Removed (no scim in Slackware anymore).
  8801. misc/sdcv: Fix VERSION.
  8802. misc/sdcv: Updated for version 0.5.3.
  8803. misc/sigrok-firmware-fx2lafw: Fix support for PRINT_PACKAGE_NAME
  8804. misc/slop: Compress manpages.
  8805. misc/solunar: Fixed DOWNLOAD.
  8806. misc/ssss: Fix file permissions.
  8807. misc/stardict-tools: Add missing gnome-common dependency.
  8808. misc/stardict-tools: Disabled narrowing warn., added -fpermissive.
  8809. misc/stardict-tools: Updated for version 3.0.6.2.
  8810. misc/stardict: Add missing gnome-common dependency.
  8811. misc/stardict: Updated for version 3.0.6.2.
  8812. misc/subsurface: Add an include for the newer qt5.
  8813. misc/subsurface: Fixed dep info
  8814. misc/tegaki-zinnia-japanese: Fix build when TMP != /tmp.
  8815. misc/texscythe: Removed (no longer needed)
  8816. misc/tidyp: Remove .la files.
  8817. misc/txt2regex: Remove template comment.
  8818. misc/txt2tags: Add the temporary PKG dir to PATH to let it build.
  8819. misc/txt2tags: Fix md5sum.
  8820. misc/txt2tags: Updated for version 3.7, new maintainer.
  8821. misc/utimer: Patch to build on -current.
  8822. misc/vdpauinfo: Updated for version 1.4, updated email
  8823. misc/vttest: Remove template comment.
  8824. misc/wcd: Updated for version 6.0.4_beta2.
  8825. misc/weather: Fix doinst.sh.
  8826. misc/wkhtmltopdf: Updated for version 0.12.6.
  8827. misc/wmbday: Fixed DOWNLOAD.
  8828. misc/xapian-omega: Updated for version 1.4.18.
  8829. misc/xbanish: Remove template comment.
  8830. misc/xdelta: Remove .la files.
  8831. misc/xwinwrap: Fix DOWNLOAD.
  8832. misc/yapet: Added a patch for gcc >= 6.x.
  8833. misc/yapet: Fix desktop file handling.
  8834. misc/yapet: Updated for version 2.5.
  8835. misc/yara: Remove .la files.
  8836. misc/yara: Updated for version 4.1.2.
  8837. misc/ydpdict: Updated for version 1.0.3.
  8838. misc/ykpers: Patch for json-c >= 0.14, pass -fcommon (gcc >= 10.x).
  8839. misc/ykpers: Remove .la files.
  8840. misc/yubioath-desktop: Fix desktop file handling.
  8841. misc/zinnia: Added a patch for gcc >= 6.x.
  8842. misc/zinnia: Remove .la files.
  8843. multimedia/DivFix++: Handle url-encoded filenames.
  8844. multimedia/ExMplayer: Removed (no maintainer)
  8845. multimedia/ExMplayer: Update DEP.
  8846. multimedia/Gem: Add missing ftgl dependency.
  8847. multimedia/Gem: Updated for version 0.94.
  8848. multimedia/HandBrake: Fixed dep info
  8849. multimedia/HandBrake: Kill jansson from REQUIRES
  8850. multimedia/HandBrake: Version bump to 1.5.1
  8851. multimedia/MediathekView: Updated for version 13.8.1.
  8852. multimedia/Mopidy: Update DEP.
  8853. multimedia/MuseScore: Added copyright and license.
  8854. multimedia/MuseScore: Disable WEBENGINE and TELEMETRY.
  8855. multimedia/MuseScore: Fix typo.
  8856. multimedia/MuseScore: Fixed dep info
  8857. multimedia/MuseScore: Updated for version 3.6.1.
  8858. multimedia/MuseScore: Updated for version 3.6.2.
  8859. multimedia/OpenPHT: Fixed dep info
  8860. multimedia/OpenPHT: Fixed dep info (again)
  8861. multimedia/OpenPHT: Removed (superseded by plex media player and plex htpc)
  8862. multimedia/QMPlay2: Update DEP.
  8863. multimedia/QMPlay2: Updated for version 21.03.09.
  8864. multimedia/SimpleSysexxer: Fix 15.0 build.
  8865. multimedia/aces-dev: Updated for version 1.3
  8866. multimedia/aces_container: Updated for version 1.0.2
  8867. multimedia/acetoneiso: Removed (no maintainer)
  8868. multimedia/acetoneiso: Update DEP.
  8869. multimedia/aegisub: Align with template
  8870. multimedia/aegisub: Fix build with the newer boost, icu4c and make.
  8871. multimedia/aegisub: Fix compatibility with newer ffms2.
  8872. multimedia/aegisub: Fixed dep info in README
  8873. multimedia/aegisub: Update HOMEPAGE.
  8874. multimedia/aom: Updated for version 3.3.0.
  8875. multimedia/apetag: Cleanup HTML doc.
  8876. multimedia/audio-recorder: Fixed dep info
  8877. multimedia/audiopreview: Add gstreamer0 dependency.
  8878. multimedia/audiopreview: Killed gst0-plugins-bad note
  8879. multimedia/audiopreview: Remove .la files.
  8880. multimedia/avidemux: Align with template
  8881. multimedia/avidemux: Fixed dep info
  8882. multimedia/avidemux: Patch for qt-5.15.x.
  8883. multimedia/avidemux: Updated for version 2.7.8.
  8884. multimedia/avidemux: Updated for version 2.8.0.
  8885. multimedia/bdtools: Remove .la files.
  8886. multimedia/beets: Fixed dep info
  8887. multimedia/beets: Killed pyechonest mention in README
  8888. multimedia/beets: Update DEP.
  8889. multimedia/beets: Updated for version 1.4.9.
  8890. multimedia/bino: Update DEP.
  8891. multimedia/bino: Updated for version 1.6.8, fix 15.0 build.
  8892. multimedia/bombono-dvd: Added two more patches for the newer gcc.
  8893. multimedia/bombono-dvd: Fix 15.0 build.
  8894. multimedia/bombono-dvd: Fixed dep info
  8895. multimedia/cantata: Update DEP.
  8896. multimedia/cantata: Updated for version 2.4.1.
  8897. multimedia/castget: Fixed dep info
  8898. multimedia/ccextractor: Patch for gcc >= 10.x.
  8899. multimedia/cinelerra: Fixed dep info
  8900. multimedia/cinelerra: Updated for version 20210211_54b918a.
  8901. multimedia/cinelerra: Updated for version 20210331_eabda9c.
  8902. multimedia/coriander: Fix build on -current.
  8903. multimedia/ctl: Fix 15.0 build.
  8904. multimedia/devedeng: Update DEP.
  8905. multimedia/dirac: Remove .la files.
  8906. multimedia/droidcam: Fixed dep info
  8907. multimedia/dsmidiwifi: Fix 15.0 build.
  8908. multimedia/dssi: Document qt4 optional dep.
  8909. multimedia/dvbsnoop: Removed (No maintainer).
  8910. multimedia/dvd-slideshow: Update DEP.
  8911. multimedia/dvd-slideshow: Updated for version 0.8.6_1.
  8912. multimedia/dvdauthor: Removed (added to Slackware).
  8913. multimedia/dvdbackup: Cleanups.
  8914. multimedia/dvdrip: Fix 15.0 build.
  8915. multimedia/dvdstyler: Update DEP.
  8916. multimedia/dvdstyler: Updated for version 3.1.2.
  8917. multimedia/dvgrab: Disabled narrowing warnings.
  8918. multimedia/emoc: Fix 15.0 build.
  8919. multimedia/farsight2: Fix REQUIRES.
  8920. multimedia/farsight2: Fix for gcc >= 10.x, patch for make >= 4.3.
  8921. multimedia/farsight2: Fixed dep info (libnice)
  8922. multimedia/farsight2: Remove .la files.
  8923. multimedia/farstream: Removed (added to Slackware).
  8924. multimedia/fdkaac: Updated for version 1.0.2.
  8925. multimedia/ffmpeg2theora: Fix build with py3 scons.
  8926. multimedia/ffmpeg2theora: Update DEP.
  8927. multimedia/ffmpeg4: Removed (added to Slackware).
  8928. multimedia/ffmpeg: Removed (added to Slackware).
  8929. multimedia/flashplayer-plugin: Removed. Good riddance.
  8930. multimedia/flowblade: Fix github tarball handling.
  8931. multimedia/flowblade: Fixed dep info
  8932. multimedia/flowblade: Updated for version 24564a.
  8933. multimedia/freshplayerplugin: Removed.
  8934. multimedia/freshplayerplugin: Update DEP.
  8935. multimedia/gecko-mediaplayer: Removed.
  8936. multimedia/get_iplayer: Update DEP.
  8937. multimedia/get_iplayer: Updated for version 3.28
  8938. multimedia/get_iplayer: Updated for version 3.29
  8939. multimedia/get_iplayer: updated for version 3.27
  8940. multimedia/gimp-gap: Fixed dep info
  8941. multimedia/glyr: Remove template comment.
  8942. multimedia/gmtp: Fix 15.0 build.
  8943. multimedia/gnash: Added (fixed build post-removal)
  8944. multimedia/gnash: Fixed dep info
  8945. multimedia/gnash: Remove stray space, note the opt dep qt4.
  8946. multimedia/gnash: Removed. It's dead, Jim.
  8947. multimedia/gnash: Updated for Slackware 15.0
  8948. multimedia/gnome-mplayer: Pass -fcommon for gcc >= 10.x.
  8949. multimedia/gnupod: Fixed dep info
  8950. multimedia/google-talkplugin: Fix support for PRINT_PACKAGE_NAME
  8951. multimedia/gpac: Patch for ffmpeg-4.x.
  8952. multimedia/gpac: Updated for version 1.0.1.
  8953. multimedia/gpodder: Update DEP.
  8954. multimedia/gst-libav: Removed (added to Slackware).
  8955. multimedia/gst-plugins-bad-nonfree: Added (encumbered GStreamer plugins).
  8956. multimedia/gst-plugins-bad: Fix build.
  8957. multimedia/gst-plugins-bad: Fix dep info (opencv)
  8958. multimedia/gst-plugins-bad: Removed (conflict w/Slackware gst-plugins-bad-free).
  8959. multimedia/gst-plugins-bad: Support alternatives for ninja
  8960. multimedia/gst-plugins-bad: Updated for version 1.18.3.
  8961. multimedia/gst-plugins-bad: Updated for version 1.18.4.
  8962. multimedia/gst-plugins-bad: Updated for version 1.18.5.
  8963. multimedia/gst-plugins-ugly: Support alternatives for ninja
  8964. multimedia/gst-plugins-ugly: Updated for version 1.18.3.
  8965. multimedia/gst-plugins-ugly: Updated for version 1.18.4.
  8966. multimedia/gst-plugins-ugly: Updated for version 1.18.5.
  8967. multimedia/gst0-ffmpeg: Patch for orc >= 0.4.30.
  8968. multimedia/gst0-plugins-bad: Removed (no more openssl-1.0.x).
  8969. multimedia/gst0-plugins-base: Added (gst plugins base set, v0).
  8970. multimedia/gst0-plugins-base: Remove la file.
  8971. multimedia/gst0-plugins-good: Added (gst plugins good set, v0).
  8972. multimedia/gst0-plugins-ugly: Added gst0-plugins-base dep.
  8973. multimedia/gst0-plugins-ugly: Fixed dep info
  8974. multimedia/gstreamer0: Add a README (thanks dive!).
  8975. multimedia/gstreamer0: Add a fix for the newer glib2 with gcc-11.x.
  8976. multimedia/gstreamer0: Added (streaming multimedia framework, v0).
  8977. multimedia/gstreaner0: Remove la file.
  8978. multimedia/gtick: Fix 15.0 build.
  8979. multimedia/gtkpod: Fix for gcc >= 10.x.
  8980. multimedia/gtkpod: Fixed dep info
  8981. multimedia/gtkpod: Removed.
  8982. multimedia/guvcview: Enable Qt5 support.
  8983. multimedia/guvcview: Update DEP.
  8984. multimedia/guvcview: Updated for version 2.0.7.
  8985. multimedia/hexter: Fix 15.0 build.
  8986. multimedia/huludesktop: Drop flashplayer dependency.
  8987. multimedia/huludesktop: Fix support for PRINT_PACKAGE_NAME
  8988. multimedia/imagination: Update DEP.
  8989. multimedia/imagination: Updated for version to 3.6.
  8990. multimedia/inputstream.adaptive: Added (kodi addon).
  8991. multimedia/k9copy-reloaded: Cleanups.
  8992. multimedia/k9copy-reloaded: Update DEP.
  8993. multimedia/kaffeine: Updated for version 2.0.18.
  8994. multimedia/kdenlive: Removed (added to Slackware).
  8995. multimedia/kodi: Avoid downloading things while building.
  8996. multimedia/kodi: Fix CEC variable.
  8997. multimedia/kodi: Fixed dep info
  8998. multimedia/kodi: Updated for version 19.4.
  8999. multimedia/l-smash: Add README to docdir.
  9000. multimedia/lightspark: Update DEP.
  9001. multimedia/lircaile: Removed (No maintainer).
  9002. multimedia/lives: Cleanups.
  9003. multimedia/lives: Fixed dep info
  9004. multimedia/lives: Remove .la files.
  9005. multimedia/lives: Updated for version 3.2.0.
  9006. multimedia/lsdvd: Remove template comment.
  9007. multimedia/lwks: Fix build script.
  9008. multimedia/lwks: Fix support for PRINT_PACKAGE_NAME
  9009. multimedia/lwks: Removed (membership and licensing changes).
  9010. multimedia/makemkv: Update DEP.
  9011. multimedia/mediainfo: Version bump, update patch, and copyright update
  9012. multimedia/mediatomb: Fixed dep info in README
  9013. multimedia/mediatomb: Removed.
  9014. multimedia/minidlna: Update DEP.
  9015. multimedia/minidlna: Updated for version 1.3.0, fix for gcc >= 10.x.
  9016. multimedia/minitube: Fix missing quote.
  9017. multimedia/minitube: Updated for version 3.9.3.
  9018. multimedia/mirage2iso: Add missing dep.
  9019. multimedia/mirage2iso: Added (convert CD images to ISO).
  9020. multimedia/miro: Killed gst0-plugins-bad note
  9021. multimedia/miro: Removed.
  9022. multimedia/miro: Update DEP.
  9023. multimedia/mjpegtools: Remove .la files.
  9024. multimedia/mjpegtools: Updated for version 2.2.1.
  9025. multimedia/mkclean: Removed (no maintainer)
  9026. multimedia/mkvalidator: Removed (no maintainer)
  9027. multimedia/mkvtoolnix: Fixed dep info in README
  9028. multimedia/mkvtoolnix: Updated for version 55.0.0.
  9029. multimedia/mkvtoolnix: Updated for version 60.0.0.
  9030. multimedia/mkvtoolnix: Updated for version 65.0.0.
  9031. multimedia/mlt: Removed (added to Slackware).
  9032. multimedia/mozplugger: Fix download URL.
  9033. multimedia/mp3fs: Fixed dep info
  9034. multimedia/mplayer-codecs32: Update copyright header
  9035. multimedia/mplayer-codecs64: Update copyright header
  9036. multimedia/mpv: Adjust REQUIRES for 15.0
  9037. multimedia/mpv: Apply upstream patch for the newer libplacebo api.
  9038. multimedia/mpv: Fixed dep info
  9039. multimedia/mpv: Updated for version 0.34.0
  9040. multimedia/mpv: Updated for version 0.34.1
  9041. multimedia/mtpfs: Remove template comment.
  9042. multimedia/musique: Killed gst0-plugins-bad in REQUIRES
  9043. multimedia/musique: Updated for version 1.10.1.
  9044. multimedia/mythplugins: Fix dependency.
  9045. multimedia/mythplugins: Removed (ftb + no active maintainer)
  9046. multimedia/mythtv: Fix qt5 version check.
  9047. multimedia/mythtv: Fixed dep info
  9048. multimedia/mythtv: Removed (ftb + no active maintainer)
  9049. multimedia/mythtv: Updated for version 29.0.
  9050. multimedia/nightingale: Removed (No maintainer).
  9051. multimedia/nted: Fix -current build.
  9052. multimedia/obs-studio: Update DEP.
  9053. multimedia/obs-studio: Updated for version 26.0.2.
  9054. multimedia/obs-studio: Updated for version 26.1.2.
  9055. multimedia/obs-studio: Updated for version 27.0.0
  9056. multimedia/obs-studio: Updated for version 27.0.1
  9057. multimedia/oggvideotools: Disabled narrowing warnings.
  9058. multimedia/openshot: Fixed dep info
  9059. multimedia/parole: Fixed dep info
  9060. multimedia/pepperflash-plugin: Removed.
  9061. multimedia/picard-plugins: Version bump and copyright update
  9062. multimedia/picard: Fix github tarball handling.
  9063. multimedia/picard: Install fix + version bump.
  9064. multimedia/picard: Revert new ownership claim
  9065. multimedia/picard: Updated for version 2.7.1.
  9066. multimedia/picard: Updated for version 2.7.2.
  9067. multimedia/picard: Updated for version 2.7.3.
  9068. multimedia/pitivi: Fixed dep info
  9069. multimedia/pitivi: Fixed dep info (gst-python3 -> gst-python)
  9070. multimedia/pitivi: Remove gst-plugins-bad dependency.
  9071. multimedia/pitivi: Updated for version 2021.05.
  9072. multimedia/playerctl: Updated for version 2.4.1.
  9073. multimedia/plex-home-theater: Fixed dep info
  9074. multimedia/plex-home-theater: Removed (ftbs, upstream dead).
  9075. multimedia/plex-home-theater: Use zulu-openjdk7.
  9076. multimedia/popcorntime: Fix download URL.
  9077. multimedia/pragha: Fix dependency info.
  9078. multimedia/pragha: Fixed dep info + kill gst0-p-bad
  9079. multimedia/pragha: Fixed jmtpfs dep mention
  9080. multimedia/qsampler: Updated for version 0.9.4, switch to cmake.
  9081. multimedia/ripit: Fix README.
  9082. multimedia/ripit: Update docs for -current.
  9083. multimedia/ripperX: Fixed dep info
  9084. multimedia/rosa-media-player: Added qt4 dependency.
  9085. multimedia/rosa-media-player: Fix 15.0 build.
  9086. multimedia/rosa-media-player: Update DEP.
  9087. multimedia/rtmpdump: Use gnutls instead of openssl.
  9088. multimedia/schroedinger: Remove .la files.
  9089. multimedia/shotcut: Fixed dep info
  9090. multimedia/shotcut: Update DEP.
  9091. multimedia/shotcut: Updated for version 21.12.24.
  9092. multimedia/simpleburn: Fix 15.0 build.
  9093. multimedia/simpleburn: Removed (upstream is dead).
  9094. multimedia/sinthgunt: Update DEP.
  9095. multimedia/smpeg: Disabled narrowing warnings, fix underlinking.
  9096. multimedia/smpeg: Don't install *.la files
  9097. multimedia/smpeg: Updated download URL
  9098. multimedia/smpeg: Updated maintainer email
  9099. multimedia/smplayer: Disable warnings-as-errors.
  9100. multimedia/smplayer: Updated for version 21.10.0.
  9101. multimedia/smtube: Build with qt5 by default
  9102. multimedia/spek: Update DEP.
  9103. multimedia/spotify: Align with template
  9104. multimedia/spotify: Fix download URL.
  9105. multimedia/spotify: Updated icon cache.
  9106. multimedia/straw-viewer: Removed (use pipe-viewer instead).
  9107. multimedia/straw-viewer: Updated for version 0.1.3.
  9108. multimedia/strawberry: Fixed dep info
  9109. multimedia/strawberry: REQUIRES protobuf => protobuf3.
  9110. multimedia/subtitlecomposer: Removed (needs kde4).
  9111. multimedia/subtitleeditor: Remove .la files.
  9112. multimedia/subtitleeditor: Updated for version 20191130_4c215f4.
  9113. multimedia/tabu_audio_player: Added gstreamer0 dep.
  9114. multimedia/telepathy-farstream: Remove .la files.
  9115. multimedia/telepathy-glib: Remove .la files.
  9116. multimedia/telepathy-glib: Update DEP.
  9117. multimedia/telepathy-qt: Add qt4 dependency.
  9118. multimedia/tomahawk: Fixed dep info
  9119. multimedia/tomahawk: Removed (libechonest dep is gone)
  9120. multimedia/totem: Fix 15.0 build, WIP, merge.
  9121. multimedia/totem: Fixed dep info in README
  9122. multimedia/totem: Removed (no maintainer, ftbfs).
  9123. multimedia/tovid: Update DEP.
  9124. multimedia/tragtor: Update DEP.
  9125. multimedia/transcode: Build against libv4lconvert
  9126. multimedia/transcode: Fixed dep info
  9127. multimedia/transcode: Patch for glibc >= 2.32, gcc >= 10.x.
  9128. multimedia/transcode: Updated maintainer email
  9129. multimedia/tvheadend: Fix build (network access).
  9130. multimedia/tvheadend: Updated for version 4.2.8.
  9131. multimedia/tvtime: Fix building with the newer compiler.
  9132. multimedia/tvtime: Updated for version 1.0.11, cleanups.
  9133. multimedia/vapoursynth-mvtools: Remove .la files.
  9134. multimedia/vapoursynth: Fix build on current.
  9135. multimedia/vapoursynth: Remove .la files.
  9136. multimedia/vcdimager: Remove .la files.
  9137. multimedia/vcdimager: Updated for version 2.0.1.
  9138. multimedia/vgmplay: Fix 15.0 build.
  9139. multimedia/videocut: Fix 15.0 build.
  9140. multimedia/vitunes-mplayer: Fix README.
  9141. multimedia/vitunes-mplayer: Remove template comment.
  9142. multimedia/vkeybd: Remove template comment.
  9143. multimedia/vlc: Enable libva, disable opencv, cleanups.
  9144. multimedia/vlc: Fix MD5SUM
  9145. multimedia/vlc: Fix build.
  9146. multimedia/vlc: Fixed dep info
  9147. multimedia/vlc: Fixed wayland notes in README
  9148. multimedia/vlc: Fixes for Slackware 15.0
  9149. multimedia/vlc: Remove .la files.
  9150. multimedia/vlc: Remove libupnp & libmatroska from REQUIRES
  9151. multimedia/vlc: Update REQUIRES protobuf to protobuf3.
  9152. multimedia/vlc: Updated for version 3.0.13
  9153. multimedia/vlc: Updated for version 3.0.14
  9154. multimedia/vlc: Updated for version 3.0.16
  9155. multimedia/vobsub2srt: Cleanups.
  9156. multimedia/vobsub2srt: Fix build with newer g++.
  9157. multimedia/vokoscreenNG: Fixed dep info
  9158. multimedia/vokoscreenNG: Updated for version 3.1.0.
  9159. multimedia/w_scan: Patch for gcc >= 10.x.
  9160. multimedia/webvfx: Fixed dep info
  9161. multimedia/winff: Removed (no maintainer)
  9162. multimedia/winff: Update DEP.
  9163. multimedia/wxcam: Force use of wxPython.
  9164. multimedia/wxcam: Use the C++14 standard.
  9165. multimedia/x264: Updated download URL
  9166. multimedia/x264: Updated for version git_20210613_5db6aa6c
  9167. multimedia/x264: Updated maintainer email
  9168. multimedia/x265: Updated for version 3.5.
  9169. multimedia/xawtv: Fix build on Slackware 15.
  9170. multimedia/xjadeo: Fix build with newer portmidi.
  9171. multimedia/xjadeo: Update DEP.
  9172. multimedia/xjadeo: Updated for version 0.8.10.
  9173. multimedia/xjadeo: fix syntax in info file
  9174. multimedia/xmltv: Updated for version 0.6.3, cleanups.
  9175. multimedia/xmms-crossfade: Reflow README.
  9176. multimedia/xmms-cue: Fix download URL.
  9177. multimedia/xvidcore: Updated for version 1.3.7
  9178. multimedia/xvidcore: Updated maintainer email
  9179. multimedia/xvst: Fixed dep info
  9180. multimedia/yarock: Fix 15.0 build.
  9181. multimedia/youtube-viewer: Removed (no maintainer)
  9182. multimedia/zvbi: Remove .la files.
  9183. multimedir/pipe-viewer: Added (youtube CLI/GUI).
  9184. multiple/pyxdg: Update DEP.
  9185. multiple/qt5: Update DEP.
  9186. network/2ping: Updated for version 4.5.1.
  9187. network/BitchX: Removed (ftb)
  9188. network/CherryMusic: Fixed dep info in README
  9189. network/EarthReader-Web: Add Python3 support.
  9190. network/EarthReader-Web: added python3-waitress as REQUIREMENT for python3 version
  9191. network/Electrum-DASH: Fix REQUIRES for python2.
  9192. network/Electrum-DASH: REQUIRES protobuf => protobuf3.
  9193. network/Electrum-DASH: Update DEP.
  9194. network/Electrum-DASH: Use python3/qt5.
  9195. network/Electrum: Fixed dep info
  9196. network/Electrum: Update DEP.
  9197. network/Electrum: Updated for version 4.1.2.
  9198. network/FireWorks: Fix REQUIRES for python2.
  9199. network/FireWorks: Fix dependency.
  9200. network/Free-Cinema: Change BeautifulSoup4 DEP to python2-BeautifulSoup4
  9201. network/GeoIP: Remove .la files.
  9202. network/GhostInTheMail: Add -fcommon to CFLAGS.
  9203. network/Icecat: Removed (unmaintained, ftbfs).
  9204. network/MEGAsync: Fixed dep info
  9205. network/MEGAsync: Kill libuv from REQUIRES
  9206. network/MEGAsync: Killed cryptopp dep
  9207. network/MEGAsync: Updated for version 4.3.7.0.
  9208. network/MEGAsync: Updated for version 4.5.3.0.
  9209. network/NetworkManager-l2tp: Fix github tarball handling.
  9210. network/NetworkManager-l2tp: Updated for version 1.20.0.
  9211. network/NetworkManager-openconnect: Disable libnm-glib compat.
  9212. network/NetworkManager-openconnect: Updated for version 1.2.6.
  9213. network/NetworkManager-openvpn: Removed (added to Slackware).
  9214. network/NetworkManager-pptp: Updated for version 1.2.8.
  9215. network/NetworkManager-pptp: Updated for version 20200716_382a8a2.
  9216. network/NetworkManager-vpnc: Updated for version 1.2.6.
  9217. network/NetworkManager-vpnc: tweaks for Slackware 15.0
  9218. network/NetworkManager: Fix maintainer email typo.
  9219. network/Quaternion: Kill qtkeychain@SBo mention
  9220. network/RTL8192: Fix support for PRINT_PACKAGE_NAME
  9221. network/RTL8192: Removed (waiting for the new version, rtl8192eu).
  9222. network/RYMTacks: Update DEP
  9223. network/RYMTracks: Add python2-BeautifulSoup4 DEP
  9224. network/RYMTracks: Update DEP.
  9225. network/SpiderOakONE: Align with template
  9226. network/TeamSpeak3: Fixed dep info
  9227. network/UDR: Fix github tarball handling.
  9228. network/XD: Fix build with newer google-go-lang.
  9229. network/XD: Fix github tarball handling.
  9230. network/aMule: Fix README wording
  9231. network/aMule: Fix freeze problems.
  9232. network/aMule: Fixed dep info
  9233. network/aMule: Updated for version 2.3.3.
  9234. network/aMule: Updated for version r11055.
  9235. network/aMule: Use wxGTK3.
  9236. network/aircrack-ng: Pass -fcommon for gcc >= 10.x.
  9237. network/aircrack-ng: Remove .la files.
  9238. network/airpwn-ng: Removed
  9239. network/airpwn: Remove .la files.
  9240. network/aldryn-client: Fix REQUIRES for python2.
  9241. network/aldryn-client: Update DEP.
  9242. network/amavisd-new: Create PIDDIR during init
  9243. network/amavisd-new: Updated README.
  9244. network/anydesk: Fix BUILD usage.
  9245. network/anydesk: Updated for version 6.1.1.
  9246. network/argus-clients: Updated for version 3.0.8.3.
  9247. network/aria2: Fixed dep info
  9248. network/aria2: Updated for version 1.36.0.
  9249. network/arm: Removed.
  9250. network/arno-iptables-firewall: Fix support for PRINT_PACKAGE_NAME
  9251. network/arora: Removed (unmaintained upstream).
  9252. network/asciinema: Updated for version 2.1.0.
  9253. network/asterisk: Fixed dep info
  9254. network/asterisk: create piddir during init
  9255. network/atftp: Remove template comment.
  9256. network/atheme: Fixed dep info
  9257. network/authbind: Fix README.
  9258. network/authbind: Remove template comment.
  9259. network/avahi: Disable mono support (broken).
  9260. network/avahi: Enable qt5 for Slackware 15.0
  9261. network/avahi: Fix build.
  9262. network/avahi: Fix path to python3.
  9263. network/avahi: Remove la files.
  9264. network/awscli: Update DEP.
  9265. network/awstats: Updated for version 7.7.
  9266. network/awstats: Updated for version 7.8.
  9267. network/b43-firmware: Fix homepage link in README.
  9268. network/b43-fwcutter: s,i486,i586,g
  9269. network/barnyard2: Fix build on 15.0.
  9270. network/base: Removed (ftp + no active maintainer)
  9271. network/basilisk-bin: Updated for version 2022.01.27.
  9272. network/basilisk: Removed (upstream development suspended).
  9273. network/basilisk: Update DEP.
  9274. network/bip: Disable some warning-as-errors.
  9275. network/bip: Updated for version 0.9.0.
  9276. network/bird: Removed (no maintainer).
  9277. network/bitcoin: Fixed dep info
  9278. network/bitcoin: Patch for qt-5.15.x.
  9279. network/bitcoin: Remove .la files.
  9280. network/bitcoin: Updated for version 22.0.
  9281. network/bluejeans: Fix build after template adjustment.
  9282. network/bluejeans: Updated to version 2.22.0.87
  9283. network/bmon: Fix README.
  9284. network/bmon: Remove template comment.
  9285. network/bollux: Update MD5SUM.
  9286. network/boxcryptor: Removed (No maintainer).
  9287. network/bozohttpd: Fix 15.0 build.
  9288. network/bozohttpd: Updated for version 20210227.
  9289. network/brave-browser: Fixed dep info
  9290. network/brave-browser: Updated for version 1.35.100.
  9291. network/brave-browser: Updated for version 1.35.103.
  9292. network/broadcom-sta: Removed (no maintainer)
  9293. network/btpd: Fix github tarball handling.
  9294. network/bwm-ng: Added a patch for gcc >= 7.x.
  9295. network/bwm-ng: Remove old gcc7 patch.
  9296. network/c-toxcore: Fixed dep info
  9297. network/canto: Update DEP.
  9298. network/cclive: Removed (Not building on 15.0).
  9299. network/ccnet: Fix download URL.
  9300. network/ccnet: Fixed dep info
  9301. network/ccnet: Remove .la files.
  9302. network/ccnet: Updated for version 6.1.8.
  9303. network/cherokee: Remove .la files.
  9304. network/cherokee: Updated for version 20180709_9a75e65.
  9305. network/chrony: Updated for version 4.2.
  9306. network/cicb: Updated for version 5.1.2b1+git20191209.
  9307. network/claws-mail: Updated for version 3.17.8.
  9308. network/claws-mail: Updated for version 4.0.0.
  9309. network/clipgrab: Fixed dep info
  9310. network/cmst: Removed (no maintainer)
  9311. network/connman: Removed (no maintainer)
  9312. network/corebird: Fixed dep info
  9313. network/corebird: Removed.
  9314. network/courier-authlib: Adjust REQUIRES. Disable static.
  9315. network/courier-unicode: Updated for version 2.2.3.
  9316. network/csync: Fixed dep info
  9317. network/cyrus-imapd: Fixed dep info
  9318. network/cyrus-imapd: Remove .la files.
  9319. network/dante: Updated for version 1.4.3.
  9320. network/darkstat: Updated for version 3.0.721.
  9321. network/davmail: Align with template
  9322. network/dbmail: Fixed dep info
  9323. network/dbmail: Removed.
  9324. network/dclib: Fix build on 15.0.
  9325. network/dclib: Removed.
  9326. network/ddgr: Updated for version 1.9.
  9327. network/ddgr: Use systemwide dir for bash-completion file
  9328. network/deis: Fix REQUIRES for python2.
  9329. network/deis: Fix dependency.
  9330. network/deis: Update DEP.
  9331. network/deis: Update DEP.
  9332. network/deluge: Fix REQUIRES.
  9333. network/deluge: Update DEP.
  9334. network/deluge: Update DEP.
  9335. network/deluge: Update DEP.
  9336. network/dianara: Updated for version 1.4.3.
  9337. network/dillo: Patched for openssl >= 1.1.x and gcc >= 10.x.
  9338. network/dirb: Add -fcommon to CFLAGS.
  9339. network/discord: Fixed dep info
  9340. network/discord: Updated for version 0.0.15.
  9341. network/discord: Updated for version 0.0.17.
  9342. network/discord: Version bump to 0.0.16.
  9343. network/dmitry: Fix for gcc >= 10.x.
  9344. network/dnscrypt-proxy: Updated for version 2.0.45.
  9345. network/dnscrypt-wrapper: Fixed dep info
  9346. network/dobbscoin: Add qt4 dependency.
  9347. network/dobbscoin: Fixed dep info
  9348. network/dobbscoin: REQUIRES protobuf => protobuf3.
  9349. network/dobbscoin: Removed.
  9350. network/dobbscoin: Switch to clang to let it build, changed md5sum.
  9351. network/docsis: Add -fcommon to CFLAGS.
  9352. network/dogecoin: Fixed dep info
  9353. network/dogecoin: Removed.
  9354. network/dovecot-pigeonhole: Fixed dep info
  9355. network/dovecot-pigeonhole: Updated for version 0.5.13.
  9356. network/dovecot-pigeonhole: Updated for version 0.5.17.
  9357. network/dovecot: Removed (added to Slackware).
  9358. network/drawterm: Updated for version 1d3e2b3502f1.
  9359. network/drawterm: Updated for version dc703b3438f9.
  9360. network/dropbear: Fix backing up openssh scp.
  9361. network/dropbox: Update desktop file.
  9362. network/dropbox: Updated for version 121.4.4267.
  9363. network/dropbox: Updated for version 123.4.4832.
  9364. network/dropbox: Updated for version 125.4.3474.
  9365. network/dropbox: Updated for version 128.4.2870.
  9366. network/dropbox: Updated for version 129.4.3571.
  9367. network/dropbox: Updated for version 130.4.4978.
  9368. network/dropbox: Updated for version 131.4.3968.
  9369. network/dropbox: Updated for version 133.4.4089.
  9370. network/dropbox: Updated for version 136.4.4345.
  9371. network/dropbox: Updated for version 138.4.2392.
  9372. network/dropbox: Updated for version 139.4.4896.
  9373. network/dropbox: Updated for version 140.4.1951.
  9374. network/dropbox: Updated for version 143.3.4161.
  9375. network/dsniff: Update to the latest debian patches.
  9376. network/dukto: Add the dependency qt4.
  9377. network/dwb: Removed (requires webkitgtk, use vimb instead).
  9378. network/efax-gtk: Fix for gcc >= 10.x.
  9379. network/efax: Pass -fcommon for gcc >= 10.x.
  9380. network/eiskaltdcpp: Updated for version 2.4.2. Add dep miniupnpc.
  9381. network/ekiga: Patch for the newer boost, libresolv and gcc.
  9382. network/ekiga: Removed.
  9383. network/elemental-ircd: Create piddir during init
  9384. network/elemental-ircd: Don't set $USER inside a script
  9385. network/elemental-ircd: Fix logrotate script
  9386. network/elemental-ircd: Removed.
  9387. network/elemental-ircd: Use setpriv instead of su for init
  9388. network/elinks: Fix documentation generation.
  9389. network/elinks: Updated for version git20170723.
  9390. network/emacs-w3m: Removed.
  9391. network/emacs-w3m: Updated for version cvs_1.4.569_0.20170110.
  9392. network/emesene: Removed (No maintainer).
  9393. network/enet: Remove .la files.
  9394. network/et: Fixed dep info
  9395. network/et: Removed.
  9396. network/et: Updated for version 6.1.11.
  9397. network/et: added cmake option -DDISABLE_VCPKG=ON
  9398. network/etcd: Removed.
  9399. network/etherape: Fixed dep info
  9400. network/etherape: Updated for version 0.9.20.
  9401. network/ettercap-NG: Removed (incompatible with the newer openssl).
  9402. network/ettercap: Added the dependency GeoIP.
  9403. network/exim: Updated for version 4.94.2.
  9404. network/fail2ban: Don't remove entire /usr/share directory
  9405. network/fail2ban: Install bash completion by default
  9406. network/fail2ban: Updated for version 0.11.2.
  9407. network/falkon: Removed (added to Slackware).
  9408. network/fcgiwrap: Disabled some warnings-as-errors.
  9409. network/fdm: Fix MD5SUM.
  9410. network/fdm: Fix for upstream tarball change.
  9411. network/fdm: Updated for version 2.0.
  9412. network/fdns: Add -fcommon to CFLAGS.
  9413. network/fdns: Update DEP.
  9414. network/felinks: Fix DOWNLOAD.
  9415. network/felinks: Fix github tarball handling.
  9416. network/filezilla: Remove la files.
  9417. network/filezilla: Updated for version 3.51.0.
  9418. network/filezilla: Updated for version 3.53.1.
  9419. network/filezilla: Updated for version 3.54.1.
  9420. network/filezilla: Updated for version 3.55.0.
  9421. network/filezilla: Updated for version 3.55.1.
  9422. network/filezilla: Updated for version 3.56.0.
  9423. network/filezilla: Updated for version 3.56.2.
  9424. network/filezilla: Updated for version 3.57.0.
  9425. network/filezilla: Updated for version 3.58.0.
  9426. network/firewalld: Fix REQUIRES for python2.
  9427. network/firewalld: Fix REQUIRES.
  9428. network/firewalld: Updated for version 0.9.3.
  9429. network/flexget: Add python2-BeautifulSoup4 DEP
  9430. network/flexget: Update DEP.
  9431. network/flexget: Update DEP.
  9432. network/fqterm: Add qt4 to REQUIRES.
  9433. network/fqterm: Updated for version 0.9.8.4, cleanups.
  9434. network/franz: Updated for version 5.7.0.
  9435. network/franz: Updated for version 5.8.0.
  9436. network/freedownloadmanager: Updated MD5SUM.
  9437. network/freeradius-server: Remove .la files.
  9438. network/freeradius-server: Updated for version 3.0.21.
  9439. network/freerdp: Pass -fcommon for gcc >= 10.x.
  9440. network/freerdp: Removed (added to Slackware).
  9441. network/freerdp: Update DEP.
  9442. network/freerdp: Updated for version 2.3.2, enable wayland.
  9443. network/frr: Disable docs to build on 15.0.
  9444. network/frr: Fixed dep info
  9445. network/frr: Use /var/lib/frr instead of /var/run/frr
  9446. network/ftp-cloudfs: Fix REQUIRES for python2.
  9447. network/ftp-cloudfs: Fix dependency.
  9448. network/fwbuilder: Removed (ftb + no active maintainer)
  9449. network/fwknop: Add -fcommon to CFLAGS.
  9450. network/fwknop: Remove .la files.
  9451. network/gajim: Updated for version 1.3.3.
  9452. network/ganglia-web: Removed.
  9453. network/ganglia: Removed.
  9454. network/glassfish: Removed (No maintainer).
  9455. network/glewlwyd: updated for version 2.5.3
  9456. network/glewlwyd: updated for version 2.5.4
  9457. network/glewlwyd: updated for version 2.6.0
  9458. network/glewlwyd: updated for version 2.6.1
  9459. network/glusterfs: Fix for gcc >= 10.x.
  9460. network/glusterfs: Install bash-completion file to system dir
  9461. network/glusterfs: Remove .la files.
  9462. network/gmvault: Update DEP.
  9463. network/gnome-bluetooth: Remove .la files.
  9464. network/gns3: Align with template
  9465. network/googler: Install bash-completion file to system dir
  9466. network/googler: Updated for version 4.3.2.
  9467. network/gophernicus: Updated for version 3.1.1.
  9468. network/gq: Removed.
  9469. network/graphite-carbon: Fix REQUIRES for python2.
  9470. network/graphite-carbon: Fix REQUIRES.
  9471. network/greenbone-security-assistant: Removed.
  9472. network/grsync: Updated for version 1.2.8.
  9473. network/grsync: Updated for version 1.3.0.
  9474. network/gtk-gnutella: Updated for version 1.2.1.
  9475. network/gtk-gnutella: Updated for version 1.2.2.
  9476. network/gtmess: Removed.
  9477. network/guacamole-client: Fix support for PRINT_PACKAGE_NAME
  9478. network/guacamole-server: Fixed dep info in README
  9479. network/guacamole-server: Removed freerdp dep (part of slackware).
  9480. network/guacamole-server: Removed.
  9481. network/haproxy: Updated for version 2.5.3.
  9482. network/haskell-network-multicast: Updated for version 0.3.2.
  9483. network/havp: Updated for version 0.93.
  9484. network/heimdal: Fixed for Slackware 15.0
  9485. network/hiawatha: Revert php version change needed by 14.2
  9486. network/hping3: Pass -fcommon for gcc >= 10.x.
  9487. network/httpie: Update DEP.
  9488. network/httrack: Remove .la files.
  9489. network/httrack: Updated for version 3.49.2.
  9490. network/hydra: Add -fcommon to CFLAGS.
  9491. network/hylafax+: Updated for version 7.0.5.
  9492. network/hylafax: Patch for the newer gcc.
  9493. network/hylafax: Removed (ftb + no active maintainer)
  9494. network/icinga2: Fix installing docs.
  9495. network/icinga2: Updated for version 2.13.2.
  9496. network/icyque: Fixed dep info
  9497. network/ifstatus: Removed (FTBS and upstream dead).
  9498. network/ike: Fixed dep info
  9499. network/ike: Removed.
  9500. network/imapfilter: Updated for version 2.7.5.
  9501. network/imapproxy: Removed.
  9502. network/insync: Fixing a broken link.
  9503. network/insync: Updated for version 3.3.9
  9504. network/ip2location-c: Remove .la files.
  9505. network/iperf3: Remove .la files.
  9506. network/iperf: Updated for version 2.0.8.
  9507. network/ipscan: Removed (no maintainer)
  9508. network/iptv-analyzer: Fix support for PRINT_PACKAGE_NAME
  9509. network/iptv-analyzer: Removed.
  9510. network/ipv6calc: Updated for version 4.0.1.
  9511. network/ipxnet: Fix doinst.sh.
  9512. network/irc.c: Added (minimalist curses IRC client).
  9513. network/ircII: Updated for version 20210616_2.
  9514. network/ircd-hybrid: Create piddir during init
  9515. network/ircd-hybrid: Updated for version 8.2.38
  9516. network/ircd-hybrid: Updated for version 8.2.39
  9517. network/ircd-hybrid: Use setpriv instead of su for init
  9518. network/irssi-python: Updated for version test4_1.2.3.
  9519. network/irssi_otr: Updated for version 1.2.3.
  9520. network/jabberd2: Create piddir during init
  9521. network/jabberd2: Updated for version 2.7.0.
  9522. network/jigdo: Patch for gcc >= 7.x.
  9523. network/jigdo: Updated for version 0.8.1.
  9524. network/jitsi: Updated for version 5633.
  9525. network/kadu: Removed (unmaintained).
  9526. network/kcm_ufw: Removed.
  9527. network/kea: Remove .la files.
  9528. network/kea: Updated for version 2.1.3.
  9529. network/keepalived: Updated for version 2.2.7.
  9530. network/kfilebox: Removed.
  9531. network/kirc: Added (tiny IRC client).
  9532. network/kismet: Updated for version 2022.02.R1 + new maintainer.
  9533. network/kivy-garden: Update DEP.
  9534. network/kmess: Removed (upstream dead, msn service dead).
  9535. network/knemo: Removed.
  9536. network/knock: Updated for version 0.7, cleanups.
  9537. network/kobby: Removed (no kde4 anymore).
  9538. network/konversation: Removed (added to Slackware).
  9539. network/krb5: Removed (added to Slackware).
  9540. network/kstart: Fixed dep info
  9541. network/kubectl: Updated for version 1.23.0.
  9542. network/kvirc: Fix 15.0 build.
  9543. network/kvirc: Fixed dep info
  9544. network/kvirc: Updated for version 5.0.0.
  9545. network/leafnode: s,i486,i586,g
  9546. network/leechcraft: Removed (unmaintained).
  9547. network/libcapi20: Removed (roger-router is removed).
  9548. network/libdnet: Remove .la files.
  9549. network/libident: Remove .la files.
  9550. network/libident: Updated copyright
  9551. network/libinfinity: Removed (unused).
  9552. network/libiscsi: Fix conflict with cunit.
  9553. network/libiscsi: Remove .la files.
  9554. network/libmaxminddb: Remove .la files.
  9555. network/libnfsidmap: Remove .la files.
  9556. network/libqinfinity: Removed (unused).
  9557. network/libteam: Fixed dep info
  9558. network/libteam: Remove .la files.
  9559. network/licq: Removed (No maintainer).
  9560. network/liferea: Fixed dep info
  9561. network/lighttpd2: Fixed dep info
  9562. network/lighttpd2: Removed (still too unripe).
  9563. network/lighttpd: Updated for version 1.4.59.
  9564. network/lighttpd: Updated for version 1.4.64.
  9565. network/limnoria: Fix github tarball handling.
  9566. network/limnoria: Updated for version 2021_04_11.
  9567. network/linksys-tftp: Add -fcommon to CFLAGS.
  9568. network/linphone: Fix DOWNLOAD.
  9569. network/linphone: Fixed DOWNLOAD.
  9570. network/linphone: Fixed dep info
  9571. network/linphone: Remove .la files.
  9572. network/linssid: Tweak README.
  9573. network/linuxdcpp: Force -std=gnu++98 for the newer gcc.
  9574. network/linuxdcpp: Removed.
  9575. network/livestreamer: Update DEP.
  9576. network/lizardfs: Add -fcommon to CFLAGS.
  9577. network/lldpd: Remove .la files.
  9578. network/luakit: Fix md5sum.
  9579. network/luakit: Updated for version 2.3, change maint. email.
  9580. network/maildrop: Updated for version 3.0.7.
  9581. network/mailman: Update DEP.
  9582. network/mailman: Updated for version 2.1.39.
  9583. network/mailspring: Updated for version 1.9.1.
  9584. network/mailspring: Updated for version 1.9.2
  9585. network/mattermost-desktop: Fix support for PRINT_PACKAGE_NAME
  9586. network/memcached: Updated for version 1.6.9.
  9587. network/midori: Fix github tarball handling.
  9588. network/midori: Patch to fix focus issue.
  9589. network/midori: Support alternatives for ninja
  9590. network/midori: Updated for version 9.0.
  9591. network/miniupnpd: Updated for version 2.3.0.
  9592. network/miredo: Removed (No maintainer).
  9593. network/mitmproxy-bin: Added (interactive HTTPS proxy).
  9594. network/mk-livestatus: Add -fcommon to CFLAGS.
  9595. network/mk-livestatus: Update DOWNLOAD.
  9596. network/mkvserver_mk2: Update DEP.
  9597. network/mldonkey: Removed.
  9598. network/mldonkey: Updated for version 3.1.6, cleanups.
  9599. network/mod_auth_gssapi: Fixed dep info
  9600. network/mod_auth_kerb: Fixed dep info
  9601. network/mod_dnssd: Various tweaks for Slackware 15.0
  9602. network/monkey: Add -fcommon to CFLAGS.
  9603. network/monkey: Don't package /var/run/monkey
  9604. network/mosaic-ck: Updated for version 2.7ck13.
  9605. network/mosh: Added -fpermissive to the CXXFLAGS.
  9606. network/mosh: REQUIRES protobuf => protobuf3.
  9607. network/mrtg: Updated for version 2.7.10.
  9608. network/msmtp: Fix README.
  9609. network/msn-proxy: Removed (MSN Messenger is long dead)
  9610. network/mumble-server: Fix .info.
  9611. network/mumble-server: Fix DOWNLOAD.
  9612. network/mumble-server: Remove NUMJOBS.
  9613. network/mumble-server: Renamed murmur to mumble-server
  9614. network/mumble-server: Upgraded for version 1.4.230
  9615. network/mumble: Fix DOWNLOAD.
  9616. network/mumble: Fixed README (speech-dispatcher mention)
  9617. network/mumble: Fixed dep info
  9618. network/mumble: Remove NUMJOBS.
  9619. network/mumble: Updated maintainer email
  9620. network/mumble: upgraded for version 1.4.230
  9621. network/munge: Fix 15.0 build.
  9622. network/munge: Fix typo in script.
  9623. network/munge: Remove .la files.
  9624. network/murmur: Create piddir during init
  9625. network/murmur: Updated maintainer email
  9626. network/murmur: fix rc.d path
  9627. network/murmur: fix rc.murmur edit
  9628. network/museek+: Removed.
  9629. network/nagios: Add a fix for gcc >= 10.x.
  9630. network/nagios: Updated for version 4.4.6.
  9631. network/nagiosgraph: Fix support for PRINT_PACKAGE_NAME
  9632. network/nbd: Updated for version 3.22
  9633. network/nbd: Updated for version 3.23
  9634. network/ncp: Fix README.
  9635. network/ncp: Fix for recent libowfat.
  9636. network/ncp: Remove template comment.
  9637. network/ncrack: Added -fpermissive to the CXXFLAGS.
  9638. network/ncrack: Updated for version 0.7.
  9639. network/neomutt: Fixed dep info; build with libidn2 by default
  9640. network/netdiscover: Add -fcommon to CFLAGS.
  9641. network/netdrive-connector: Fixed dep info in README
  9642. network/netperf: Updated for version 2.7.0.
  9643. network/netsurf: Updated for version 3.10.
  9644. network/netsurf: fix executable in desktop file.
  9645. network/newsboat: Fixed dep info.
  9646. network/newsboat: Updated for version 2.24.
  9647. network/newsboat: Updated for version 2.25.
  9648. network/newsboat: Updated for version 2.26.
  9649. network/nextclound-client: Fixed dep info
  9650. network/nfdump: Add -fcommon to CFLAGS.
  9651. network/nghttp2: Removed (added to Slackware).
  9652. network/nginx: Fixed dep info in REAME
  9653. network/nginx: Updated for version 1.21.6.
  9654. network/ngircd: Updated for version 26.1.
  9655. network/ngrok: Updated for version 2.3.39
  9656. network/ngrok: Updated for version 2.3.40
  9657. network/nordvpn: Fixed dep info in README
  9658. network/nsd: Align with template
  9659. network/nsd: Create piddir during init
  9660. network/nsd: Fix logrotate file for non-root /var/log subdir
  9661. network/nss-mdns: Tweak for Slackware 15.0
  9662. network/ntop: Removed.
  9663. network/ntpclient: Fix -current build.
  9664. network/offlineimap: Fix duplicated dependencies.
  9665. network/offlineimap: Fixed dep info
  9666. network/offlineimap: Updated for version 7.3.4.
  9667. network/onedrive: Updated for version 2.4.13
  9668. network/onedrive: Updated to version 2.4.25
  9669. network/onedrive: updated to version 2.4.14
  9670. network/onionshare: Change to Flask.
  9671. network/onionshare: Fixed dep info
  9672. network/open-iscsi: Updated for version 2.1.5.
  9673. network/open-isns: Updated for version 0.101.
  9674. network/openconnect: Remove .la files.
  9675. network/opendchub: Add -fcommon to CFLAGS.
  9676. network/opendkim: Added a patch for openssl-1.1.x.
  9677. network/opendkim: Fixed piddir creation at init
  9678. network/opendkim: Remove .la files.
  9679. network/opendmarc: Fix github tarball handling.
  9680. network/opendmarc: Fixed dep info
  9681. network/opendmarc: Updated for version 1.4.1.1.
  9682. network/openfortivpn: Updated for version 1.17.1.
  9683. network/openl2tp: Removed.
  9684. network/openldap-server: Removed (added to Slackware - in openldap).
  9685. network/openntpd: Updated for version 6.8p1.
  9686. network/openrdate: Removed.
  9687. network/openresolv: Removed (added to Slackware).
  9688. network/opensm: Remove .la files.
  9689. network/opensmtpd: Updated for version 6.6.4p1.
  9690. network/opensmtpd: Updated for version 6.8.0p2.
  9691. network/openssh-krb5: Removed (redundant now)
  9692. network/openvas-manager: Removed.
  9693. network/openvswitch-utils: Remove .la files.
  9694. network/openvswitch-utils: Updated for version 2.15.1.
  9695. network/opera-legacy: Remove flashplayer from README.
  9696. network/otter: Updated for version 1.0.02.
  9697. network/owncloud-client: Fixed dep info
  9698. network/owncloud-client: Patch for qt-5.15.x.
  9699. network/owncloud-client: Update for 2.10.0.6519
  9700. network/pCloudDrive: Fix case statement in SlackBuild.
  9701. network/packETH: Add -fcommon to CFLAGS.
  9702. network/packit: Add -fcommon to CFLAGS.
  9703. network/palemoon-bin: Updated for version 29.4.4.
  9704. network/palemoon: Add missing patch.
  9705. network/palemoon: Update DEP.
  9706. network/palemoon: Updated for version 29.4.4.
  9707. network/pdns-recursor: Updated for version 4.6.0.
  9708. network/pdns: Updated for version 4.6.0. Add lua to REQUIRES.
  9709. network/pdnsd: Removed.
  9710. network/pentadactyl: Removed for Slackware 15.
  9711. network/persepolis: Fixed download info
  9712. network/persepolis: Update DEP.
  9713. network/pexip-infinity-connect: Fix .info.
  9714. network/pexip-infinity-connect: Updated to version 1.6.2
  9715. network/pfqueue: Remove .la files.
  9716. network/pgl: Removed (No maintainer).
  9717. network/pgpool-II: Remove .la files.
  9718. network/pgpool-II: Updated for version 3.7.21.
  9719. network/phodav: Align with new template.
  9720. network/phodav: Fixed ninja build.
  9721. network/phodav: Updated for version 2.3, switch to meson.
  9722. network/phpmyadmin: Updated for version 5.1.2.
  9723. network/phpmyadmin: Updated for version 5.1.3.
  9724. network/pidgin-musictracker: Add extra CFLAGS.
  9725. network/pidgin-musictracker: Disabled some warnings-as-errors.
  9726. network/pidgin-opensteamworks: Fixed dep info
  9727. network/pidgin-sipe: Updated for 1.25.0. Add --enable-quality-check.
  9728. network/pidgin-sipe: Updated for version 1.24.0.
  9729. network/plasma-nm-openconnect: Removed. Uninterested.
  9730. network/plowshare-modules: Version bump and copyright update
  9731. network/pmacct: Add -fcommon to CFLAGS.
  9732. network/pmacct: Fix support for PRINT_PACKAGE_NAME
  9733. network/policyd: Add -fcommon to CFLAGS.
  9734. network/postfix: Removed (added to Slackware).
  9735. network/postman: Updated for version 8.2.3
  9736. network/pound: Removed.
  9737. network/pptp: Updated for version 1.10.0.
  9738. network/pptp: s,i486,i586,g
  9739. network/pptpd: Updated for Slackware 15.0 (pppd-2.4.9)
  9740. network/privoxy: Fixed dep info
  9741. network/privoxy: Updated for version 3.0.33
  9742. network/profanity: Add -fcommon to CFLAGS.
  9743. network/profanity: Remove .la files.
  9744. network/prosody-mod-cloud-notify: Updated for version hg4730.
  9745. network/prosody-mod-cloud-notify: Updated for version hg4827.
  9746. network/prosody-mod-csi: Updated for version hg4785.
  9747. network/prosody-mod-http-upload: Updated for version hg4617.
  9748. network/prosody-mod-http-upload: Updated for version hg4654.
  9749. network/prosody-mod-smacks: Updated for version hg4584.
  9750. network/prosody-mod-smacks: Updated for version hg4631.
  9751. network/prosody-mod-smacks: Updated for version hg4637.
  9752. network/prosody-mod-smacks: Updated for version hg4760.
  9753. network/prosody-mod-smacks: Updated for version hg4771.
  9754. network/prosody-mod-vcard-muc: Updated for version hg4879.
  9755. network/prosody: Updated for version 0.11.13.
  9756. network/prosody: Updated for version 0.11.9.
  9757. network/protonmail-bridge: Updated for version 1.8.10.
  9758. network/protonmail-bridge: Updated for version 1.8.12.
  9759. network/protonmail-bridge: Updated for version 2.1.1.
  9760. network/protonmail-import-export-app: Updated for version 1.3.3.
  9761. network/protonvpn-cli: Update DEP.
  9762. network/protonvpn-cli: Update DEP.
  9763. network/protonvpn-cli: Updated for version 2.2.11.
  9764. network/proxytunnel: Add -fcommon to CFLAGS.
  9765. network/psi-plus: Fixed dep info
  9766. network/psi-plus: Updated for version 1.5.1484.
  9767. network/psi-plus: Updated for version 1.5.1600.
  9768. network/psi: Updated for version 1.5. New maintainer.
  9769. network/pulse-sms: Updated for version 4.4.0.
  9770. network/pulse-sms: Updated for version 4.4.1
  9771. network/pulse-sms: Updated for version 4.5.0
  9772. network/pulse-sms: Updated for version 4.5.1
  9773. network/pulse-sms: Updated for version 4.5.2
  9774. network/purple-facebook: Fixed dep info
  9775. network/purple-hangouts: Fix download and requires.
  9776. network/purple-hangouts: Fixed dep info
  9777. network/purple-plugin-pack: Fix DOWNLOAD and HOMEPAGE.
  9778. network/purple-telegram: Fixed dep info (libwebp)
  9779. network/putty: Updated for version 0.75.
  9780. network/putty: Updated for version 0.76.
  9781. network/pydio-sync: Fixed dep info
  9782. network/pysub-dl: Update DEP.
  9783. network/qTox: Disable warnings-as-errors.
  9784. network/qTox: Fixed dep info
  9785. network/qemu: Updated to version 6.1.0
  9786. network/qtmib: Updated for version 1.1.1+20190827_e62ab95.
  9787. network/quagga: Add autoreconf + -fcommon.
  9788. network/quagga: Fix download URL.
  9789. network/quagga: Fixed dep info
  9790. network/quagga: Remove .la files.
  9791. network/quassel-qt5: Fixed dep info
  9792. network/quassel-qt5: Patch for qt5 >= 5.14.x.
  9793. network/quassel: Updated for version 0.14.0.
  9794. network/quotebrowser: Update DEP.
  9795. network/qutebrowser-tox: Fixed dep info
  9796. network/qutebrowser-tox: Removed.
  9797. network/qutebrowser: Fixed dep info
  9798. network/qutebrowser: Update DEP.
  9799. network/qutebrowser: Update REQUIRES.
  9800. network/qutebrowser: Updated for version 2.3.1.
  9801. network/qutebrowser: Updated for version 2.4.0.
  9802. network/quvi: Removed (Not needed as cclive is removed).
  9803. network/r2e: Removed (superseded by rss2email).
  9804. network/r8168: Fix support for PRINT_PACKAGE_NAME
  9805. network/radvd: Updated for version 2.19.
  9806. network/razor-agents: Force a single make job.
  9807. network/rclone: Updated for version 1.5.7.
  9808. network/reaver: Add -fcommon to CFLAGS.
  9809. network/rejik: Add -fcommon to CFLAGS.
  9810. network/rekonq: Removed (KDE4 app).
  9811. network/remmina: Fixed dep info
  9812. network/remmina: Pass -fcommon for gcc >= 10.x.
  9813. network/remmina: Removed freerdp dep (part of slackware).
  9814. network/remmina: Updated for version 1.4.16, enable KF5 wallet.
  9815. network/remmina: Updated for version 1.4.24.
  9816. network/retroshare: Fixed dep info
  9817. network/retroshare: REQUIRES protobuf => protobuf3.
  9818. network/retroshare: Updated for version 0.6.5, fix for qt5 >= 5.14.
  9819. network/retroshare: Updated for version 20220216_3dfcb58.
  9820. network/rhapsody: Security fix.
  9821. network/roger-router: Fixed dep info
  9822. network/roger-router: Removed (source only for flatpak).
  9823. network/rspamd: Create piddir during init
  9824. network/rspamd: Fixed dep info
  9825. network/rspamd: Updated for version 2.6.
  9826. network/rspamd: Updated for version 2.7
  9827. network/rspamd: Updated for version 3.1
  9828. network/rtl8188eu: Fix support for PRINT_PACKAGE_NAME
  9829. network/rtl8188eu: Re-added (fixed build for 15.0).
  9830. network/rtl8188eu: Removed.
  9831. network/rtl8188eu: Respect KERNEL.
  9832. network/rtl8821ce: Delete git2tarxz.sh.
  9833. network/rtl8821ce: Fix support for PRINT_PACKAGE_NAME
  9834. network/rtl8821ce: Re-added (fixed build for 15.0).
  9835. network/rtl8821ce: Removed.
  9836. network/rtorrent: Fix DOWNLOAD.
  9837. network/rtorrent: Updated for version 0.9.7.
  9838. network/rubygem-showterm: Updated for version 0.6.0.
  9839. network/s-nail: Removed (added to Slackware).
  9840. network/sabnzbd: Fix REQUIRES for python2.
  9841. network/scrcpy: Fixed dep info
  9842. network/scrcpy: Support alternatives for ninja
  9843. network/seafile-server: Updated for version 8.0.6.
  9844. network/seafile: Added (Cloud Storage System).
  9845. network/seafile: Fix dependencies.
  9846. network/seafile: Remove .la files.
  9847. network/seafile: Updated for version 8.0.4.
  9848. network/serviio: Create PIDDIR during initialization
  9849. network/serviio: Use setpriv instead of su -c for init
  9850. network/sfeed: Update for 1.2
  9851. network/sfeed: Update for 1.3 (+ change homepage)
  9852. network/sfeed: Updated for version 1.1.
  9853. network/sflowtool: Fix support for PRINT_PACKAGE_NAME
  9854. network/shadowsocks-libev: Fixed dep info
  9855. network/shadowsocks-libev: Remove .la files.
  9856. network/shibboleth-sp: Remove .la files.
  9857. network/shibboleth-sp: Use the C++14 standard.
  9858. network/sic: Updated for version 1.2+20210506_058547e.
  9859. network/sickrage: Updated for version 10.0.50.
  9860. network/siege: Updated for version 4.1.1
  9861. network/siege: Updated maintainer email
  9862. network/signal-desktop: Fixed dep info
  9863. network/signal-desktop: Updated for version 5.18.0.
  9864. network/signal-desktop: Updated for version 5.26.1.
  9865. network/signal-desktop: Updated for version 5.30.0.
  9866. network/signal-desktop: Updated for version 5.32.0 + new maintainer
  9867. network/signal-desktop: Updated for version 5.33.0
  9868. network/signal-desktop: Updated for version 5.34.0
  9869. network/silc-toolkit: Remove .la files.
  9870. network/sks-keyserver: Remove db46 dep (works with Slackware db48).
  9871. network/sks-keyserver: Removed.
  9872. network/skype4pidgin: Fixed dep info
  9873. network/skypeforlinux: Remove skype-dbus-mock workaround.
  9874. network/skypeforlinux: Updated for version 8.73.0.129.
  9875. network/skypeforlinux: Updated for version 8.73.76.16
  9876. network/skypeforlinux: Updated for version 8.79.0.92.
  9877. network/slack: Updated for version 4.17.0.
  9878. network/slimjet: Removed (abandoned by SBo maintainer)
  9879. network/slowhttptest: Updated for version 1.8.2.
  9880. network/slurm: Fix download URL.
  9881. network/slurm: Remove .la files.
  9882. network/smb4k: Removed (No maintainer).
  9883. network/smstools3: Add L(D)FLAGS, DESTDIR patch.
  9884. network/smuxi: Removed (dbus-sharp dep ftbfs)
  9885. network/snmptt: Fix support for PRINT_PACKAGE_NAME
  9886. network/snort: Fix DOWNLOAD.
  9887. network/snort: Fix github tarball handling.
  9888. network/snort: Remove .la files.
  9889. network/snort: Updated for version 2.9.17.
  9890. network/sntpc: Add man page.
  9891. network/sntpc: Added (simple NTP client).
  9892. network/socat: Removed (added to Slackware).
  9893. network/social-engineer-toolkit: Fixed dep info
  9894. network/spamassassin: Fixed dep info
  9895. network/spamassassin: Removed dep perl-IO-Socket-SSL.
  9896. network/speedometer: REQUIRES: python3-urwid -> python-urwid.
  9897. network/speedometer: Update DEP.
  9898. network/spice-gtk: Fix usb redirection.
  9899. network/spice-gtk: Fixed dep info
  9900. network/spice-gtk: Remove NUMJOBS.
  9901. network/spice-gtk: Updated for version 0.39.
  9902. network/spice-gtk: Updated for version 0.40.
  9903. network/spice: Fixed dep info
  9904. network/spice: Remove .la files.
  9905. network/spice: Updated for version 0.14.3.
  9906. network/spice: Updated for version 0.15.0.
  9907. network/sqlninja: Removed dep perl-IO-Socket-SSL.
  9908. network/sqlrelay: Updated for version 1.1.0.
  9909. network/sqlrelay: Updated for version 1.9.2.
  9910. network/squid: Updated for version 4.16.
  9911. network/squidGuard: Removed (upstream no longer maintained).
  9912. network/ssh-chat: Remove template comment.
  9913. network/sshfp: Update DEP.
  9914. network/sshfs-fuse: Removed (added to Slackware as sshfs).
  9915. network/sshuttle: updated for version 1.1.0
  9916. network/sslscan: Updated for version 2.0.10.
  9917. network/sslscan: Updated for version 2.0.11.
  9918. network/sslscan: Updated for version 2.0.12.
  9919. network/sslstrip: Fix REQUIRES.
  9920. network/ssmtp: Clean up build.
  9921. network/sstp-client: Remove .la files.
  9922. network/ssvnc: Removd (ftbfs).
  9923. network/surf: Updated for version 2.1.
  9924. network/suricata: Fixed dep info
  9925. network/suricata: Updated for version 6.0.2.
  9926. network/surl: Remove template comment.
  9927. network/sylpheed: Fix build against new enchant.
  9928. network/sylpheed: Patched for the newer enchant2.
  9929. network/sylpheed: Remove double fix.
  9930. network/syncthing: Update for 1.19.1 (+new maintainer)
  9931. network/synergy: Patch for openssl-1.1.x.
  9932. network/synergy: Updated for version 1.14.3.5.
  9933. network/synergy: Use correct github URL.
  9934. network/t38modem: Removed (missing dependency).
  9935. network/tahoe-lafs: Fix DOWNLOAD.
  9936. network/teams: Updated for version 1.4.00.26453
  9937. network/teamviewer: Fixed dep info
  9938. network/teamviewer: Removed (No longer functional).
  9939. network/telegram-cli: Fixed dep info
  9940. network/telegram-cli: Updated for version 20200106.
  9941. network/telegram: Updated for version 2.7.3.
  9942. network/telegram: Updated for version 2.7.4.
  9943. network/telegram: Updated for version 2.8.0.
  9944. network/telegram: Updated for version 2.8.1.
  9945. network/telegram: Updated for version 2.8.10.
  9946. network/telegram: Updated for version 2.8.9.
  9947. network/telegram: Updated for version 2.9.0.
  9948. network/telegram: Updated for version 2.9.2.
  9949. network/telegram: Updated for version 3.1.1.
  9950. network/telegram: Updated for version 3.2.1.
  9951. network/telegram: Updated for version 3.2.2
  9952. network/telegram: Updated for version 3.2.4.
  9953. network/telegram: Updated for version 3.3.0.
  9954. network/telegram: Updated for version 3.4.3.
  9955. network/telegram: Updated for version 3.4.8.
  9956. network/telegram: Updated for version 3.5.0.
  9957. network/telegram: Updated for version 3.5.2.
  9958. network/thrift: Add network warning.
  9959. network/thrift: Fix go build.
  9960. network/thrift: Remove .la files.
  9961. network/thrift: Updated for version 0.14.2.
  9962. network/tightvnc: Removed (linux development abandoned).
  9963. network/tinyirc: Change default server.
  9964. network/tixati: Updated for version 2.88_1.
  9965. network/tnftp: Updated for version 20210827.
  9966. network/tntnet: Updated for version 3.0.
  9967. network/tor-browser: Updated for version 10.0.16.
  9968. network/tor-browser: Updated for version 10.0.17.
  9969. network/tor-browser: Updated for version 10.0.18.
  9970. network/tor-browser: Updated for version 10.5.
  9971. network/tor-browser: Updated for version 10.5.2.
  9972. network/tor-browser: Updated for version 10.5.4.
  9973. network/tor-browser: Updated for version 10.5.5.
  9974. network/tor-browser: Updated for version 10.5.6.
  9975. network/tor-browser: Updated for version 10.5.8.
  9976. network/tor-browser: Updated for version 11.0.
  9977. network/tor-browser: Updated for version 11.0.1.
  9978. network/tor-browser: Updated for version 11.0.3.
  9979. network/tor-browser: Updated for version 11.0.4.
  9980. network/tor-browser: Updated for version 11.0.6.
  9981. network/tor-browser: Updated for version 11.0.7.
  9982. network/tor: Create /var/run/tor at daemon start.
  9983. network/tor: Fix dep info (zstd)
  9984. network/tornado: Update DEP.
  9985. network/tornado: Update DEP.
  9986. network/toxcore: Fixed dep info
  9987. network/toxcore: Remove .la files.
  9988. network/transmission-qt4: Removed (outdated).
  9989. network/transmission-remote-gtk: Allow disabling libappindicator.
  9990. network/transmission-remote-gtk: Fixed dep info
  9991. network/transmission-remote-gtk: Fixed note re appindicator
  9992. network/transmission-remote-gtk: Patch for gcc >= 10.x.
  9993. network/transmission: Remove autoreconf (breaks build).
  9994. network/transmission: Restore Qt client.
  9995. network/tribler: Removed (no maintainer)
  9996. network/tribler: Update DEP.
  9997. network/trojita: Fixed dep info
  9998. network/trojita: Updated for version 20201106_b4f24d7.
  9999. network/turbolift: Update DEP.
  10000. network/twitter: Updated for version 1.19.3.
  10001. network/uTox: Fixed dep info
  10002. network/ubertooth: Fix github tarball handling.
  10003. network/ucarp: Add -fcommon to CFLAGS.
  10004. network/ucspi-ssl: Removed.
  10005. network/udpcast: Updated for version 20200328
  10006. network/udpcast: Updated maintainer email
  10007. network/ufw: Update README.
  10008. network/uget: Fix build on -current.
  10009. network/unbound: Fixed dep info
  10010. network/unbound: Remove .la files.
  10011. network/urlscan: REQUIRES: python3-urwid -> python-urwid.
  10012. network/urlwatch: Update DEP.
  10013. network/urlwatch: Update DEP.
  10014. network/uwsgi: Updated for version 2.0.20.
  10015. network/vacuum-im: Removed (no maintainer).
  10016. network/valknut: Removed.
  10017. network/varnish: Fix build on 15.0.
  10018. network/vblade: Updated for version 25.
  10019. network/vcspull: Update DEP.
  10020. network/vde2: Patch to build against openssl-1.1.x.
  10021. network/vde2: Remove .la files.
  10022. network/verlihub: Added a patch for gcc-7.x.
  10023. network/verlihub: Remove .la files.
  10024. network/verm: Fix build with newer google-go-lang.
  10025. network/verm: Removed (unused, no dependees).
  10026. network/viber: Fix support for PRINT_PACKAGE_NAME
  10027. network/viber: Updated for version 16.1.0.37.
  10028. network/vivaldi: Fixed dep info
  10029. network/vnstat: Updated for version 2.7.
  10030. network/vnstat: Updated for version 2.8.
  10031. network/vnstat: Updated for version 2.9.
  10032. network/vpnc: s,i486,i586,g
  10033. network/w3af: Update DEP
  10034. network/webalizer: Patched for gcc-10.x.
  10035. network/webhook: Fix build with the newer google-go-lang.
  10036. network/weechat: Updated for version 3.2.
  10037. network/weechat: Updated for version 3.3, new maintainer.
  10038. network/wendzelnntpd: Align with template
  10039. network/wifi-radar: Fix README.
  10040. network/windscribe: Fix path
  10041. network/windscribe: Update path to /opt
  10042. network/windscribe: Updated for version 2.3.15.
  10043. network/wire: Updated for version 3.26.2941.
  10044. network/wireguard-linux-compat: Add a kernel version test block.
  10045. network/wireguard-linux-compat: Amend the README.
  10046. network/wireguard-linux-compat: Fix support for PRINT_PACKAGE_NAME
  10047. network/wireguard-linux-compat: Removed (part of newer kernels).
  10048. network/wireguard-tools: Removed (added to Slackware).
  10049. network/wireshark: Fixed dep info
  10050. network/wireshark: Fixed dep info
  10051. network/wireshark: Updated for version 20210411_cb432b8.
  10052. network/wireshark: Updated for version 3.4.10.
  10053. network/wireshark: Updated for version 3.4.5.
  10054. network/wireshark: Updated for version 3.4.6.
  10055. network/wireshark: Updated for version 3.4.7.
  10056. network/wireshark: Updated for version 3.4.8.
  10057. network/wireshark: Updated for version 3.4.9.
  10058. network/wireshark: Updated for version 3.6.0.
  10059. network/wireshark: Updated for version 3.6.1.
  10060. network/wireshark: Updated for version 3.6.2.
  10061. network/wmnd: Updated for version 0.4.18.
  10062. network/wp-cli: Install bash-completion file to system dir
  10063. network/wput: Updated for version 0.6.2+git20130413_11.
  10064. network/x11spice: Added (export X via spice).
  10065. network/x11spice: Updated for version 20200608_f4593d3.
  10066. network/x11vnc: Patch for gcc >= 10.x.
  10067. network/x2goclient: Updated for version 4.1.2.2.
  10068. network/x2goserver: Updated for version 20201227_08aa5e6.
  10069. network/xaric: Add a fix for gcc >= 10.x.
  10070. network/xaric: Updated for version 0.13.9.
  10071. network/xdman: Removed (no maintainer)
  10072. network/xl2tpd: Updated for version 1.3.16.
  10073. network/xtables-addons: Fix support for PRINT_PACKAGE_NAME
  10074. network/xtables-addons: Remove .la files.
  10075. network/xtables-addons: Updated for version 3.18.
  10076. network/yadifa: Create piddir during init
  10077. network/yadifa: Fix logrotate script
  10078. network/yadifa: Updated for version 2.5.3.
  10079. network/yandex-browser-beta: Removed (no maintainer)
  10080. network/yate: Add qt4 dependency.
  10081. network/yate: Fixed dep info in README
  10082. network/yate: Updated for version 6.4.0_1.
  10083. network/yle-dl: Update DEP.
  10084. network/yle-dl: Updated for version 20210502.
  10085. network/yle-dl: Updated for version 20210704.
  10086. network/yle-dl: Updated for version 20210808.
  10087. network/yle-dl: Updated for version 20210917.
  10088. network/yle-dl: Updated for version 20211203.
  10089. network/yle-dl: Updated for version 20211207.
  10090. network/yle-dl: Updated for version 20211213.
  10091. network/yle-dl: Updated for version 20220213.
  10092. network/yoda: Update DEP.
  10093. network/you-get: Updated for version 0.4.1555.
  10094. network/youtube-dl-server: Add python3 support.
  10095. network/youtube-dl: Fix download link.
  10096. network/youtube-dl: Updated for version 2021.04.26.
  10097. network/youtube-dl: Updated for version 2021.06.06.
  10098. network/youtube-dl: Updated for version 2021.12.17
  10099. network/youtube-upload: Update DEP.
  10100. network/yt-dlp: Added (download videos from youtube).
  10101. network/yturl: Removed (broken and unmaintained).
  10102. network/yturl: Update DEP.
  10103. network/zeek: Updated for version 4.2.0.
  10104. network/zoom-linux: Updated for version 5.6.16775.0418
  10105. network/zoom-linux: Updated for version 5.6.20278.0524
  10106. network/zoom-linux: Updated for version 5.6.22045.0607
  10107. network/zoom-linux: Updated for version 5.7.25958.0621
  10108. network/zoom-linux: Updated for version 5.7.26030.0627
  10109. network/zoom-linux: Updated for version 5.7.28852.0718
  10110. network/zoom-linux: Updated for version 5.7.28991.0726
  10111. network/zoom-linux: Updated for version 5.7.29123.0808
  10112. network/zoom-linux: Updated for version 5.7.31792.0820
  10113. network/zoom-linux: Updated for version 5.8.0.16
  10114. network/zoom-linux: Updated for version 5.8.3.145
  10115. network/zoom-linux: Updated for version 5.8.4.210
  10116. network/zoom-linux: Updated for version 5.8.6.739
  10117. network/zoom-linux: Updated for version 5.9.0.1273
  10118. network/zoom-linux: Updated for version 5.9.1.1380
  10119. network/zoom-linux: Updated for version 5.9.3.1911
  10120. network/zoom-linux: Updated for version 5.9.6.2225
  10121. office/CherryTree: Fix tarball handling in the SlackBuild.
  10122. office/JabRef: Align with template
  10123. office/JabRef: Updated for version 5.5.
  10124. office/LibreOffice: Reenable Skia font rendering
  10125. office/LibreOffice: Updated for version 7.1.2.2.
  10126. office/LibreOffice: Updated for version 7.1.3.2
  10127. office/LibreOffice: Updated for version 7.1.4.2
  10128. office/LibreOffice: Updated for version 7.1.5.2
  10129. office/LibreOffice: Updated for version 7.2.0.4
  10130. office/LibreOffice: Updated for version 7.2.1.2
  10131. office/LibreOffice: Updated for version 7.2.2.2
  10132. office/LibreOffice: Updated for version 7.2.3.2
  10133. office/LibreOffice: Updated for version 7.2.4.1
  10134. office/LibreOffice: Updated for version 7.2.5.2
  10135. office/LibreOffice: Updated for version 7.3.0.3
  10136. office/LibreOffice: Updated for version 7.3.1.3
  10137. office/MasterPDFEditor: Updated for version 5.7.60.
  10138. office/MasterPDFEditor: Updated for version 5.7.90.
  10139. office/MasterPDFEditor: Updated for version 5.8.06.
  10140. office/MasterPDFEditor: Updated for version 5.8.20.
  10141. office/MasterPDFEditor: Updated for version 5.8.30.
  10142. office/MasterPDFEditor: Updated for version 5.8.32.
  10143. office/MasterPDFEditor: Updated for version 5.8.33.
  10144. office/NME: Add missing libminizip dependency.
  10145. office/NME: Fix download URL, add gtk/epub support.
  10146. office/ReText: Fixed dep info
  10147. office/ReText: Fixed dep info again
  10148. office/SOGo: Fixed dep info
  10149. office/SOGo: Make the optional docs truly optional.
  10150. office/TaskCoach: Fix REQUIRES.
  10151. office/abiword: Patched for the newer enchant.
  10152. office/abiword: Updated for version 3.0.5.
  10153. office/abook: Fix for the newer gettext.
  10154. office/adobe-reader: Fix download URL.
  10155. office/adobe-reader: Use systemwide dir for bash-completion file
  10156. office/aiksaurus: Fix README.
  10157. office/aiksaurus: Modified.
  10158. office/aiksaurus: Remove .la files.
  10159. office/aiksaurus: Update DOWNLOAD.
  10160. office/aiksaurus: Use the C++14 standard.
  10161. office/anorack: Remove espeak dep; make NOARCH.
  10162. office/apvlv: Fix 15.0 build.
  10163. office/apvlv: Updated for version 20160627_9ab7626.
  10164. office/asymptote: Update DEP.
  10165. office/asymptote: Update scripts.
  10166. office/asymptote: Updated for version 2.70, added the dep glm.
  10167. office/basket: Fix writes outside DESTDIR during build
  10168. office/basket: Fixed homepage.
  10169. office/basket: Updated for version 2.49b.
  10170. office/beaver: Fix 15.0 build.
  10171. office/broffice.org: Fix support for PRINT_PACKAGE_NAME
  10172. office/calibre-bin: Fixed dep info
  10173. office/calibre: Fix dependency.
  10174. office/calibre: Fixed dep info
  10175. office/calibre: Update DEP.
  10176. office/calibre: Updated for version 3.48.0.
  10177. office/color-theme: Removed (No maintainer).
  10178. office/convertlit: Add man page, use SLKCFLAGS.
  10179. office/coolreader: Updated for version 3.2.57.
  10180. office/coolreader: Updated for version 3.2.59.
  10181. office/cups-pdf: Patch for the newer ghostscript.
  10182. office/diction: Minor man page fix.
  10183. office/diffpdf: Fix 15.0 build.
  10184. office/djvusmooth: Fix REQUIRES for python2.
  10185. office/djvusmooth: Fix REQUIRES.
  10186. office/djvusmooth: Remove template comment.
  10187. office/eqonomize: Removed.
  10188. office/etmtk: Fix dependency.
  10189. office/etmtk: Update DEP.
  10190. office/evince: Updated for version 3.34.2.
  10191. office/evince: Updated for version 40.4.
  10192. office/evince: Updated for version 41.3.
  10193. office/fbpdf: Updated for version 20200617_f590024.
  10194. office/fbreader: Disabled narrowing warnings, move to qt5.
  10195. office/fbreader: Fix download URL.
  10196. office/focuswriter-legacy: Removed (use focuswriter instead).
  10197. office/fop-legacy: Removed (ftbfs)
  10198. office/fop: Fix download URLs.
  10199. office/fop: Updated for version 2.7, noarch, binary repack.
  10200. office/full-pack: Allow building without gbgoffice or kbgoffice.
  10201. office/gbgoffice: Added a patch for gcc >= 6.x.
  10202. office/gbgoffice: update copyright years
  10203. office/gcal: Patched to fix libio errors.
  10204. office/ghostwriter: Remove duplicate loc
  10205. office/ghostwriter: Updated for version 2.1.1.
  10206. office/gnokii: Patch for gcc >= 7.x.
  10207. office/gnokii: Remove .la files.
  10208. office/gnucash-docs: Updated for version 4.5.
  10209. office/gnucash-legacy-docs: Removed.
  10210. office/gnucash-legacy: Added the new dependency guile1.8.
  10211. office/gnucash-legacy: Removed.
  10212. office/gnucash: Cleanups.
  10213. office/gnucash: Fixed dep info
  10214. office/gnucash: Support alternatives for ninja
  10215. office/gnucash: Updated for version 4.5.
  10216. office/gnucash: Updated for version 4.6.
  10217. office/gnucash: Use NINJA=ninja by default.
  10218. office/gnumeric: Avoid the cs help or build will break.
  10219. office/gnumeric: Remove .la files.
  10220. office/gnumeric: Updated for version 1.12.49.
  10221. office/goldendict: Patch for the newer qt5 and ffmpeg.
  10222. office/goldendict: Update DEP.
  10223. office/goldendict: Use the C++14 standard.
  10224. office/gummi: Remove dep gtksourceview3 (part of slack).
  10225. office/gummi: Updated for version 0.8.1.
  10226. office/hamster: Change maintainer email.
  10227. office/hamster: Update DEP.
  10228. office/hevea: Updated for version 2.35.
  10229. office/hunspell-id: Fix download URL, merge with hyphen-id.
  10230. office/hyphen-id: Fix DOWNLOAD.
  10231. office/hyphen-id: Removed (merged with hunspell-id).
  10232. office/impressive: Updated for version 0.13.0_beta2+20220110_r312.
  10233. office/jfbview: Added (framebuffer PDF and image viewer).
  10234. office/jstock: Updated for version 1.0.7.48.
  10235. office/jstock: Updated for version 1.0.7.55.
  10236. office/jstock: Updated for version 1.0.7.56
  10237. office/juffed: Removed.
  10238. office/kate-latex-plugin: Removed (KDE4 app; use kile instead).
  10239. office/kbgoffice: Added patch for gcc >= 6.x.
  10240. office/kbgoffice: Fix 15.0 build (add qt4 dep).
  10241. office/kbibtex: Updated for version 0.9.81.
  10242. office/kbibtex: updated for version 0.9.90
  10243. office/kchmviewer-qt: Updated for version 8.0.
  10244. office/kchmviewer: Removed (redundant; use kchmviewer-qt).
  10245. office/keepassx: Add qt4 to REQUIRES.
  10246. office/keepassxc: Fixed dep info
  10247. office/keepassxc: New maintainer
  10248. office/keepassxc: Updated for Slackware 15.
  10249. office/keepassxc: Updated for version 2.6.6.
  10250. office/kmymoney: Removed (added to Slackware).
  10251. office/krop: Switch to python-poppler-qt5.
  10252. office/latex2rtf: Update DEP.
  10253. office/libreoffice-helppack: Fix support for PRINT_PACKAGE_NAME
  10254. office/libreoffice-helppack: Updated for version 7.1.2.
  10255. office/libreoffice-helppack: Updated for version 7.1.3.
  10256. office/libreoffice-helppack: Updated for version 7.1.4.
  10257. office/libreoffice-helppack: Updated for version 7.1.5.
  10258. office/libreoffice-helppack: Updated for version 7.2.0.
  10259. office/libreoffice-helppack: Updated for version 7.2.1.
  10260. office/libreoffice-helppack: Updated for version 7.2.2.
  10261. office/libreoffice-helppack: Updated for version 7.2.3.
  10262. office/libreoffice-helppack: Updated for version 7.2.4.
  10263. office/libreoffice-helppack: Updated for version 7.2.5.
  10264. office/libreoffice-helppack: Updated for version 7.3.0.
  10265. office/libreoffice-helppack: Updated for version 7.3.1.
  10266. office/libreoffice-langpack: Fix support for PRINT_PACKAGE_NAME
  10267. office/libreoffice-langpack: Updated for version 7.1.2.
  10268. office/libreoffice-langpack: Updated for version 7.1.3.
  10269. office/libreoffice-langpack: Updated for version 7.1.4.
  10270. office/libreoffice-langpack: Updated for version 7.1.5.
  10271. office/libreoffice-langpack: Updated for version 7.2.0.
  10272. office/libreoffice-langpack: Updated for version 7.2.1.
  10273. office/libreoffice-langpack: Updated for version 7.2.2.
  10274. office/libreoffice-langpack: Updated for version 7.2.3.
  10275. office/libreoffice-langpack: Updated for version 7.2.4.
  10276. office/libreoffice-langpack: Updated for version 7.2.5.
  10277. office/libreoffice-langpack: Updated for version 7.3.0.
  10278. office/libreoffice-langpack: Updated for version 7.3.1.
  10279. office/libreoffice: Align with template
  10280. office/libreoffice: Updated for version 7.1.2.
  10281. office/libreoffice: Updated for version 7.1.3.
  10282. office/libreoffice: Updated for version 7.1.4.
  10283. office/libreoffice: Updated for version 7.1.5.
  10284. office/libreoffice: Updated for version 7.2.0.
  10285. office/libreoffice: Updated for version 7.2.1.
  10286. office/libreoffice: Updated for version 7.2.2.
  10287. office/libreoffice: Updated for version 7.2.3.
  10288. office/libreoffice: Updated for version 7.2.4.
  10289. office/libreoffice: Updated for version 7.2.5.
  10290. office/libreoffice: Updated for version 7.3.0.
  10291. office/libreoffice: Updated for version 7.3.1.
  10292. office/lowdown: Updated for version 0.10.0.
  10293. office/lowdown: Updated for version 0.11.0.
  10294. office/lowdown: Updated for version 0.9.2.
  10295. office/lumina-pdf: Fixed dep info
  10296. office/lyx: Re-enable qt5 (there's no qt4 anymore).
  10297. office/marave: Fix download URL.
  10298. office/marave: Removed (PyQt4; unmaintained upstream since 2015)
  10299. office/mathtex: Fix download URL.
  10300. office/mdbtools: Fix 15.0 build.
  10301. office/minidjvu: Remove .la files.
  10302. office/mobiperl: Remove template comment.
  10303. office/moneydance: Fixed VERSION in .info file
  10304. office/moneydance: Updated for version 2021.1.3069.
  10305. office/msee: Add missing dependency on nodejs.
  10306. office/mu: Remove .la files.
  10307. office/mu: Updated for version 1.2.0.
  10308. office/mu: Updated for version 1.6.10.
  10309. office/multivalent-tool-pdf: Move completion file to system dir
  10310. office/mupdf-legacy: Removed (no dependees).
  10311. office/mupdf: Remove template comment.
  10312. office/myrulib: Removed (No maintainer).
  10313. office/mytetra: Fix 15.0 build.
  10314. office/mythes: Remove .la files.
  10315. office/notmuch: Updated for version 0.34.3.
  10316. office/nts: Fix dependency.
  10317. office/onlyoffice-desktopeditors: Fixed dep info
  10318. office/openoffice-langpack: Fix support for PRINT_PACKAGE_NAME
  10319. office/openoffice.org: Fix support for PRINT_PACKAGE_NAME
  10320. office/pandoc-bin: Fix BUILD usage.
  10321. office/pandoc-bin: Fix architecture name
  10322. office/pandoc-bin: Updated for version 2.17.1.1
  10323. office/pandoc-bin: fix typo in slackbuild
  10324. office/pandoc: Install manpage.
  10325. office/pandoc: Updated for version 2.17.1.1.
  10326. office/paps: Fix -current build.
  10327. office/pdf2djvu: Fix for the newer poppler.
  10328. office/pdf2djvu: Updated for version 0.9.18.2.
  10329. office/pdf2djvu: Updated for version 0.9.18.2.
  10330. office/pdfchain: Fix build on 15.0.
  10331. office/pdfpc: Fixed dep info
  10332. office/pdfpc: Updated for version 4.4.1.
  10333. office/pdfpc: updated for version 4.5.0
  10334. office/pdftk: Switch using gcc5.
  10335. office/pstoedit: Remove .la files.
  10336. office/python-gcalcli: Update to 4.3.0. Fix REQUIRES.
  10337. office/qpdfview-qt5: Fixed dep info
  10338. office/qpdfview-qt5: Patched for qt-5.15.x.
  10339. office/qpdfview: Fix 15.0 build.
  10340. office/qute: Fix ARCH, download filename.
  10341. office/re-typeset: Remove template comment.
  10342. office/rednotebook: Fixed dep info
  10343. office/rednotebook: Removed.
  10344. office/referencer: Patch for the newer gcc.
  10345. office/referencer: update copyright years
  10346. office/remind: Fix download URL.
  10347. office/sc-im: Removed (added to Slackware).
  10348. office/scribus: Updated for version 1.5.6.1.
  10349. office/scribus: Updated for version 1.5.7
  10350. office/scribus: Updated maintainer email
  10351. office/siag: Fix 15.0 build.
  10352. office/sigil: Fixed dep info
  10353. office/smoffice2018: Updated for version 2018_982.
  10354. office/sofastats: Removed.
  10355. office/sofastats: Update DEP.
  10356. office/teams-for-linux: Removed (Use official teams).
  10357. office/teapot: Link against libtirpc.
  10358. office/teapot: Removed (website and source are not available).
  10359. office/tellico: Updated for version 3.4.
  10360. office/texlive-docs: Fix doc installation.
  10361. office/texlive-docs: Update information about package.
  10362. office/texlive-docs: Updated for version 2021.210418.
  10363. office/texlive-extra: Fix doc installation.
  10364. office/texlive-extra: Update DEP.
  10365. office/texlive-extra: Update information about package.
  10366. office/texlive-extra: Updated for version 2021.210418.
  10367. office/texlive: Removed (added to Slackware).
  10368. office/texmacs: Updated for version 1.99.19.
  10369. office/texmacs: Updated for version 1.99.20.
  10370. office/texmacs: Updated for version 2.1.
  10371. office/texmacs: Updated for version 2.1.1
  10372. office/texstudio: Updated for version 3.1.2 (using qt5).
  10373. office/texstudio: Updated for version 4.0.2
  10374. office/texworks: Update DEP.
  10375. office/texworks: Updated for version 0.6.6 (python3-based).
  10376. office/texworks: Updated for version 0.6.7.
  10377. office/timetrap: Fix gemspec (hardcoded versions).
  10378. office/trello-cli: Add nodejs dependency.
  10379. office/tudu: Fix conflict with PDCurses.
  10380. office/uncsv: Remove template comment.
  10381. office/verbiste: Fix 15.0 build.
  10382. office/vlna: Fix download URL.
  10383. office/vym: Updated for version 2.8.8
  10384. office/vym: Updated maintainer email
  10385. office/wammu: Fix typo it's => its.
  10386. office/wammu: Updated for version 0.44
  10387. office/wammu: Updated maintainer email
  10388. office/wink: Fix download URL.
  10389. office/wordgrinder: Fix 15.0 build.
  10390. office/wordgrinder: Fixed dep info
  10391. office/wps-office: Updated for version 11.1.0.10702.XA.
  10392. office/wps-office: Updated for version 11.1.0.10920.XA.
  10393. office/wyrd: Removed (ftbfs)
  10394. office/x_x: Fix -current build.
  10395. office/x_x: Fix REQUIRES for python2.
  10396. office/x_x: Update DEP.
  10397. office/xournal: Update slackbuild year.
  10398. office/xpad: Fixed dep info
  10399. office/xreader: Remove .la files.
  10400. office/xtrkcad: Updated for version 20211202.
  10401. office/zathura-cb: Updated for version 0.1.9.
  10402. office/zathura-djvu: Updated for version 0.2.9.
  10403. office/zathura-pdf-mupdf: Updated for version 0.3.7.
  10404. office/zathura-ps: Updated for version 0.2.7.
  10405. office/zathura: Fix README.
  10406. office/zathura: Updated for version 0.4.8.
  10407. office/zim: Updated for version 74.3.
  10408. perl/MoarVM: Fixed dep info
  10409. perl/MoarVM: Remove libuv dep (part of Slackware).
  10410. perl/MoarVM: Updated for version 2021.09
  10411. perl/MoarVM: Updated for version 2021.12.
  10412. perl/Net-SSLeay: Removed (added to Slackware's perl).
  10413. perl/mod_perl: Patch for the newer perls.
  10414. perl/mod_perl: Updated for version 2.0.12.
  10415. perl/nqp: Updated for version 2021.09
  10416. perl/nqp: Updated for version 2021.12
  10417. perl/perl-Alien-SDL: Updated maintainer email
  10418. perl/perl-Astro-SunTime: Removed (no maintainer)
  10419. perl/perl-Audio-FLAC-Header: Add missing dependency.
  10420. perl/perl-Authen-SASL: Removed (added to Slackware's perl).
  10421. perl/perl-CPAN-Changes: Updated for version 0.400002.
  10422. perl/perl-Class-Mix: Don't hardcode lib dir.
  10423. perl/perl-Class-ReturnValue: Add missing dependency.
  10424. perl/perl-Compress-Bzip2: Updated for version 2.28
  10425. perl/perl-Compress-Bzip2: Updated maintainer email
  10426. perl/perl-Config-Find: Fix build if perl-Test-Pod is installed.
  10427. perl/perl-Convert-UU: Removed (no maintainer)
  10428. perl/perl-Crypt-OpenSSL-ECDSA: Updated for version 0.10.
  10429. perl/perl-Crypt-OpenSSL-Guess: Added (perl module).
  10430. perl/perl-Crypt-OpenSSL-RSA: Updated for version 0.31.
  10431. perl/perl-Curses-UI: Add missing dep.
  10432. perl/perl-Data-Printer: Updated for version 1.000004.
  10433. perl/perl-Date-Manip: Updated for version 6.86.
  10434. perl/perl-DateTime-Format-Strptime: Disabled tests.
  10435. perl/perl-DateTime-TimeZone: Updated for version 2.01.
  10436. perl/perl-DateTime: Updated for version 1.25.
  10437. perl/perl-Devel-CheckLib: Removed (added to Slackware's perl).
  10438. perl/perl-Devel-PartialDump: Add missing dependency.
  10439. perl/perl-Digest-MD4: Removed (not used by anything @ SBo)
  10440. perl/perl-EV: Fix build when libkqueue is installed.
  10441. perl/perl-Encode-EUCJPASCII: New maintainer.
  10442. perl/perl-Encode-HanExtra: Add missing dependency.
  10443. perl/perl-Encode-HanExtra: New maintainer.
  10444. perl/perl-Encode-ISO2022: New maintainer.
  10445. perl/perl-Encode-JISX0213: New maintainer.
  10446. perl/perl-File-HomeDir: Fix README filename.
  10447. perl/perl-File-HomeDir: Updated for version 1.006.
  10448. perl/perl-File-ShareDir: Updated for version 1.118
  10449. perl/perl-File-ShareDir: Updated maintainer email
  10450. perl/perl-File-Slurp: Updated for version 9999.27.
  10451. perl/perl-GD: Add missing dependency.
  10452. perl/perl-GD: Fix -current build.
  10453. perl/perl-Gnome2-Vte: Added the new dependency vte2.
  10454. perl/perl-Gtk2-Notify: Add missing dependency.
  10455. perl/perl-Guard: Compress manpages.
  10456. perl/perl-HTML-Template: update copyright years
  10457. perl/perl-IO-Socket-SSL: Removed (added to Slackware's perl).
  10458. perl/perl-IPC-System-Simple: Updated for version 1.30
  10459. perl/perl-IPC-System-Simple: Updated maintainer email
  10460. perl/perl-Image-Magick: Removed (incompatible with imagemagick-7.x).
  10461. perl/perl-Image-Sane: Fix build if dbus not running.
  10462. perl/perl-Locale-Msgfmt: Add missing dependency.
  10463. perl/perl-MIME-Charset: New maintainer.
  10464. perl/perl-MIME-Charset: Updated for version 1.012.2.
  10465. perl/perl-MIME-tools: Add missing dependency.
  10466. perl/perl-MP3-Info: Add missing dependency.
  10467. perl/perl-Module-Implementation: Remove duplicate dependency.
  10468. perl/perl-Module-Manifest: Add missing dependency.
  10469. perl/perl-Module-Runtime: Removed (added to Slackware).
  10470. perl/perl-Mojolicious-Plugin-Humane: Add missing dependency.
  10471. perl/perl-Mojolicious-Plugin-Humane: Don't install in /usr/local.
  10472. perl/perl-Mojolicious-Plugin-I18N: Add missing dependency.
  10473. perl/perl-Mojolicious-Plugin-I18N: Don't install in /usr/local.
  10474. perl/perl-Moo: Removed (added to Slackware).
  10475. perl/perl-MooX-StrictConstructor: Add missing dependencies.
  10476. perl/perl-Moose: Add missing dependency.
  10477. perl/perl-MusicBrainz-DiscID: New maintainer.
  10478. perl/perl-Net-LDAP: Add missing dependency.
  10479. perl/perl-Net-RawIP: Fix build when network not available.
  10480. perl/perl-Net-Works: Add missing dependency.
  10481. perl/perl-PDF-Builder: Fix mandir.
  10482. perl/perl-PHP-Serialization: Removed (no maintainer)
  10483. perl/perl-PPI: Add missing dependency.
  10484. perl/perl-Package-Constants: Update maintainer
  10485. perl/perl-Path-Tiny: Removed (added to Slackware).
  10486. perl/perl-PerlIO-Layers: Removed (no maintainer)
  10487. perl/perl-Pod-Coverage: Added the new dep perl-Pod-Parser.
  10488. perl/perl-Pod-Parser: Added (base class for POD).
  10489. perl/perl-Pod-Parser: Compress manpages.
  10490. perl/perl-Razor2-Client-Agent: Removed (no maintainer)
  10491. perl/perl-String-Random: Add missing dependency.
  10492. perl/perl-Sub-Exporter-Progressive: Updated for version 0.001013.
  10493. perl/perl-Sub-Quote: Removed (added to Slackware).
  10494. perl/perl-Syntax-Highlight-Engine-Kate: Add missing dependency.
  10495. perl/perl-Task-Weaken: Fix REQUIRES.
  10496. perl/perl-Template-Toolkit: Removed (added to Slackware).
  10497. perl/perl-Term-ReadLine-Gnu: Updated for version 1.42, new maint.
  10498. perl/perl-Test-Class: Add missing dependency.
  10499. perl/perl-Test-Most: Updated for version 0.37
  10500. perl/perl-Test-Most: Updated maintainer email
  10501. perl/perl-Test-Script: Add missing dependency.
  10502. perl/perl-Test-utf8: Add missing dependency.
  10503. perl/perl-Text-CharWidth: New maintainer.
  10504. perl/perl-Text-Password-Pronounceable: Add missing dependency.
  10505. perl/perl-Text-Patch: Updated maintainer email
  10506. perl/perl-Text-Soundex: update copyright years
  10507. perl/perl-Text-WrapI18N: New maintainer.
  10508. perl/perl-Tie-Simple: Updated maintainer email
  10509. perl/perl-Tk-TableMatrix: Updated for version 20201024_2c4c333.
  10510. perl/perl-Unicode-LineBreak: New maintainer.
  10511. perl/perl-WWW-Curl: Add missing dependency.
  10512. perl/perl-WWW-Curl: Fix build when no network available.
  10513. perl/perl-WebService-Gyazo-B: Remove duplicate dependency.
  10514. perl/perl-WebService-MusicBrainz: New maintainer.
  10515. perl/perl-X10: Removed (no maintainer)
  10516. perl/perl-XML-SAX-Writer: Add missing dependency.
  10517. perl/perl-ZMQ-Constants: Add missing dependency.
  10518. perl/perl-audio-sndfile: Fix build with Perl 5.34.
  10519. perl/perl-audio-sndfile: Remove template comment.
  10520. perl/perl-data-dump: Updated for version 1.25.
  10521. perl/perl-file-libmagic: Add missing dependency.
  10522. perl/perl-file-libmagic: Remove template comment.
  10523. perl/perl-gnome2-gconf: Take over maintainership
  10524. perl/perl-gstreamer: Add missing dependency.
  10525. perl/perl-image-bmp: Remove template comment.
  10526. perl/perl-libintl: Updated for version 1.32.
  10527. perl/perl-libnet: Removed (added to Slackware's perl).
  10528. perl/perl-lwp-useragent-cached: Remove template comment.
  10529. perl/perl-namespace-autoclean: Add missing dependency.
  10530. perl/perl-palm-pdb: Remove template comment.
  10531. perl/perl-parallel-forkmanager: Add missing dependency.
  10532. perl/perl-rename: Removed (replaced with system/rename.pl).
  10533. perl/perl-text-unaccent: Fix build on -current.
  10534. perl/perl-text-unaccent: Fix build with Perl 5.34.
  10535. perl/perl-tk: update for version 804.036
  10536. perl/perl-xml-fast: Remove template comment.
  10537. perl/perl-xml-parser-lite-tree: Remove template comment.
  10538. perl/perl-xml-parser-lite: Remove template comment.
  10539. perl/perl-xml-twig: Updated maintainer email
  10540. perl/perl-yaml: Updated for version 1.30
  10541. perl/perl-yaml: Updated maintainer email
  10542. perl/rakudo: Updated for version 2021.09
  10543. perl/rakudo: Updated for version 2021.12
  10544. perl/zef: updated to 0.13.7
  10545. python-djvulibre: Rename to python-djvulibre, support py3.
  10546. python-python2-pbr: Renamed from pbr.
  10547. python/*: Switch /bin/sh back to /bin/bash
  10548. python/APScheduler: Fix dependency.
  10549. python/APscheduler: Update DEP.
  10550. python/Automat: Convert python to python2.
  10551. python/Automat: Fix dependency.
  10552. python/Automat: Update DEP.
  10553. python/Automat: new maintainer
  10554. python/Beaker: Convert python to python2.
  10555. python/BeautifulSoup4: Build also for python3 by default.
  10556. python/BeautifulSoup4: Convert python to python2.
  10557. python/BeautifulSoup4: Update for 4.10.0
  10558. python/BeautifulSoup4: Updated for version 4.10.0.
  10559. python/BeautifulSoup4: Updated for version 4.9.3.
  10560. python/DVR-Scan: Fixed dep info
  10561. python/Flask-Babel: Convert python to python2.
  10562. python/Flask-Bcrypt: Change to Flask.
  10563. python/Flask-Compress: Convert python to python2.
  10564. python/Flask-Cors: Convert python to python2.
  10565. python/Flask-Cors: Update DEP.
  10566. python/Flask-Dance: Change to Flask.
  10567. python/Flask-Dance: Update DEP.
  10568. python/Flask-Dance: Updates REQUIRES for python3-urlobject
  10569. python/Flask-Gravatar: Convert python to python2.
  10570. python/Flask-HTMLmin: Convert python to python2.
  10571. python/Flask-Login: Convert python to python2.
  10572. python/Flask-Mail: Convert python to python2.
  10573. python/Flask-Principal: Convert python to python2.
  10574. python/Flask-RESTful: Convert python to python2.
  10575. python/Flask-RESTful: Update DEP.
  10576. python/Flask-SQLAlchemy: Convert python to python2.
  10577. python/Flask-Security: Convert python to python2.
  10578. python/Flask-WTF: Convert python to python2.
  10579. python/Flask: Convert python to python2.
  10580. python/Flask: Removed Python 2 support.
  10581. python/Flask: Update DEP.
  10582. python/Flask: Updated for version 1.1.2.
  10583. python/GeoIP-Python: Convert python to python2.
  10584. python/Kallithea: Convert python to python2.
  10585. python/Kallithea: Fix circular deps.
  10586. python/Kallithea: Fixed dep info
  10587. python/Kallithea: updated for version 0.7.0, and python3
  10588. python/Logbook: Update DEP.
  10589. python/Logbook: Update DEP.
  10590. python/Mako: Removed (added to Slackware).
  10591. python/Markdown: Disable python3 support.
  10592. python/MarkupSafe: Build python2 only.
  10593. python/Parsley: Convert python to python2.
  10594. python/Paste: Add missing dependency.
  10595. python/Paste: Updated for version 3.5.0.
  10596. python/PasteDeploy: Fix README.
  10597. python/PasteDeploy: Fix REQUIRES.
  10598. python/Paver: Removed redundant doinst.sh.
  10599. python/Paver: Update DEP.
  10600. python/PyAudio: Convert python to python2.
  10601. python/PyGithub: Convert python to python2.
  10602. python/PyGreSQL: Convert python to python2.
  10603. python/PyPDF2: Build for python3 too.
  10604. python/PySDL2: Convert python to python2.
  10605. python/PySDL2: Fixed dep info in README
  10606. python/PySDL2: Update DEP.
  10607. python/PyStemmer: Updated for version 2.0.1.
  10608. python/Pygments: Removed (added to Slackware).
  10609. python/Pyro4: Convert python to python2.
  10610. python/PythonQt: Fix MD5SUM.
  10611. python/PythonQt: Fixed dep info
  10612. python/QtPy: Added QtPy (+new maintainer)
  10613. python/Routes: Convert python to python2.
  10614. python/Scrapy: Fix dependency.
  10615. python/TurboGears2: Convert python to python2.
  10616. python/WTForms: Convert python to python2.
  10617. python/WebHelpers: Convert python to python2.
  10618. python/WebHelpers: Update DEP.
  10619. python/Whoosh: Convert python to python2.
  10620. python/affine: Remove Python 2 support.
  10621. python/aiosignal: Added (managing callbacks)
  10622. python/aniso8601: Convert python to python2.
  10623. python/anyjson: Fix build with python 3.10.
  10624. python/anyjson: updated homepage
  10625. python/apprise: Convert python to python2.
  10626. python/apprise: Update DEP.
  10627. python/apprise: Update DEP.
  10628. python/apsw: Always build python3.
  10629. python/argcomplete: Remove redundant doinst.sh.
  10630. python/argon2-cffi: Fixed dep info
  10631. python/argon2-cffi: Updated for version 21.1.0 (+new maintainer)
  10632. python/arrow: Convert python to python2.
  10633. python/artifacts: Convert python to python2.
  10634. python/artifacts: Fix DOWNLOAD.
  10635. python/artifacts: Update DEP.
  10636. python/asciimatics: Convert python to python2.
  10637. python/asciimatics: Fix dependency.
  10638. python/asciimatics: Update DEP.
  10639. python/astroid: Fix REQUIRES for python2.
  10640. python/astroid: Update DEP.
  10641. python/asttokens: Add missing dependencies.
  10642. python/asttokens: Removed dependency.
  10643. python/async-timeout: Updated for version 4.0.2.
  10644. python/attrs: new maintainer
  10645. python/autopep8: Convert python to python2.
  10646. python/autopep8: Remove redundant doinst.sh.
  10647. python/babel: Convert python to python2.
  10648. python/backlash: Convert python to python2.
  10649. python/bcrypt: Fix REQUIRES.
  10650. python/billiard: Fix DOWNLOAD and README.
  10651. python/billiard: Fix DOWNLOAD and README.
  10652. python/bleach: Fix REQUIRES.
  10653. python/bleach: Update DEP.
  10654. python/bleach: new maintainer
  10655. python/bleach: updated for version 4.1.0
  10656. python/blessings: Update DEP.
  10657. python/boto3: Convert python to python2.
  10658. python/boto3: Update DEP.
  10659. python/boto: Convert python to python2.
  10660. python/boto: Update DEP.
  10661. python/boto: Update DEP.
  10662. python/bottle-mysql: Convert python to python2.
  10663. python/bsddb3: Build with python3 unconditionally
  10664. python/buildbot-slave: Convert python to python2.
  10665. python/buildbot-slave: new maintainer
  10666. python/buildbot-worker: Updated for version 3.4.1.
  10667. python/buildbot-worker: fixed REQUIRES
  10668. python/buildbot: Convert python to python2.
  10669. python/buildbot: Update DEP.
  10670. python/buildbot: fixed REQUIRES
  10671. python/buildbot: new maintainer
  10672. python/buildbot: updated for version 3.4.1 and python3
  10673. python/cairocffi: Convert python to python2.
  10674. python/cairocffi: Update for 1.3.0 (+new maintainer)
  10675. python/cariocffi: Add missing pytest-runner dependency.
  10676. python/celery: Convert python to python2.
  10677. python/cheroot: Convert python to python2.
  10678. python/cheroot: Update DEP.
  10679. python/click-default-group: Convert python to python2.
  10680. python/click-plugins: Remove Python 2 support.
  10681. python/click-plugins: new maintainer
  10682. python/click: Updated for version 7.1.2.
  10683. python/clint: Convert python to python2.
  10684. python/cloudscraper: Fixed dep info
  10685. python/cloudscraper: Update DEP.
  10686. python/cocos2d: removed
  10687. python/colorama: Updated for version 0.4.4.
  10688. python/colored: Updated for version 1.4.3.
  10689. python/constantly: also building for python3
  10690. python/constantly: new maintainer
  10691. python/cov-core: Convert python to python2.
  10692. python/coverage: Updated for version 6.3.1.
  10693. python/cryptography: Convert python to python2.
  10694. python/cryptography: Fix URL.
  10695. python/cryptography: Fix offline build.
  10696. python/cryptography: Fixed dep info
  10697. python/cryptography: Update DEP.
  10698. python/cryptography: Updated for version 2.8, added the dep wheel.
  10699. python/cryptography: Updated for version 35.0.0.
  10700. python/css-parser: Added (CSS parser and builder).
  10701. python/cssselect2: Convert python to python2.
  10702. python/cssutils: Build with python3 by default
  10703. python/dbus-python3: Removed (Added to Slackware).
  10704. python/debugpy: Added debugpy
  10705. python/decorator: new maintainer
  10706. python/decorator: updated for version 5.1.1
  10707. python/dfdatetime: Fix DOWNLOAD.
  10708. python/dfvfs: Convert python to python2.
  10709. python/dfvfs: Fix DOWNLOAD.
  10710. python/dfwinreg: Convert python to python2.
  10711. python/dfwinreg: Fix DOWNLOAD.
  10712. python/dfwinreg: Update DEP.
  10713. python/django-sass: Fixed dep info
  10714. python/dnspython: Disable python3 support.
  10715. python/dotty: Update DEP.
  10716. python/dtfabric: Convert python to python2.
  10717. python/dtfabric: Fix DOWNLOAD.
  10718. python/dtfabric: Update DEP.
  10719. python/dulwich: Add python3 support.
  10720. python/dulwich: Removes python3 support for older version, conflicting with python3-dulwich
  10721. python/dxfwrite: Fix DOWNLOAD and upgrade (zips only).
  10722. python/egenix-mx-base: Removed.
  10723. python/elasticsearch5: Update DEP.
  10724. python/entrypoints: Remove Python 2 support.
  10725. python/entrypoints: Updated for version 0.4.0 (+new maintainer)
  10726. python/et_xmlfile: Convert python to python2.
  10727. python/et_xmlfile: Update for 1.1.0
  10728. python/etk.docking: Convert python to python2.
  10729. python/euca2ools: Fix REQUIRES for python2.
  10730. python/fabric: Convert python to python2.
  10731. python/fasteners: Convert python to python2.
  10732. python/fasteners: Update DEP.
  10733. python/feedparser: Updated for version 6.0.8
  10734. python/fixtures: Convert python to python2.
  10735. python/flake8: Convert python to python2.
  10736. python/flake8: Fixed dep info
  10737. python/flake8: Remove redundant doinst.sh.
  10738. python/flask-paginate: Convert python to python2.
  10739. python/flask-restplus: Convert python to python2.
  10740. python/flask-restplus: Update DEP.
  10741. python/foolscap: Convert python to python2.
  10742. python/frosted: Convert python to python2.
  10743. python/frosted: Removed redundant doinst.sh.
  10744. python/frozenlist: Added (list-like structure)
  10745. python/functools-lru-cache: Add missing dependency.
  10746. python/functools-lru-cache: Convert python to python2.
  10747. python/functools-lru-cache: Removed dependency.
  10748. python/gearbox: Convert python to python2.
  10749. python/getdevinfo: Removed (no maintainer)
  10750. python/git-fame: Fix REQUIRES for python2.
  10751. python/git-fame: Updated for version 1.15.0.
  10752. python/git-fame: Updated for version 1.15.1.
  10753. python/gmpy: Removed (no dependees).
  10754. python/google-api-python-client: Convert python to python2.
  10755. python/google-images-download: Fix tarball handling.
  10756. python/gst-python3: Removed (included in gst-python now)
  10757. python/gst-python3: Updated for version 1.16.2, switch to meson.
  10758. python/gst-python: Support alternatives for ninja
  10759. python/gst-python: Updated for version 1.16.2.
  10760. python/gst-python: Updated for version 1.18.4
  10761. python/gst-python: Updated for version 1.18.5.
  10762. python/gst0-python: Fix REQUIRES.
  10763. python/guessit: Convert python to python2.
  10764. python/guessit: Remove redundant doinst.sh.
  10765. python/hachoir-core: Fix DOWNLOAD.
  10766. python/hachoir-metadata: Convert python to python2.
  10767. python/hachoir-metadata: Fix DOWNLOAD.
  10768. python/hachoir-parser: Fix DOWNLOAD.
  10769. python/halberd: Removed makefile patch for latex.
  10770. python/hg-git: Switch to python3.
  10771. python/hg-git: Updates REQUIRES for python3-dulwich
  10772. python/hgsubversion: Convert python to python2.
  10773. python/html2text: Remove template comment.
  10774. python/html5-parser: Convert python to python2.
  10775. python/huepy: Added (python text color library).
  10776. python/hyperlink: new maintainer
  10777. python/hyperlink: updated for version 21.0.0, added python3 build
  10778. python/idna: Removed (added to Slackware).
  10779. python/importlib-resources: Removed dependency.
  10780. python/incremental: new maintainer
  10781. python/incremental: updated for version 21.3.0, added python3 build
  10782. python/internetarchive: Convert python to python2.
  10783. python/internetarchive: Update DEP.
  10784. python/invoke: Remove redundant doinst.sh.
  10785. python/ipaddr-py: Updated for Slackware 15.0
  10786. python/ipython: Removed (abandoned).
  10787. python/ipython: Update for 8.1.1 (+new stack_data dependency)
  10788. python/ipython: Upgraded for version 7.22.0.
  10789. python/ipython: Upgraded for version 7.25.0.
  10790. python/ipython: Upload ipython (+new maintainer)
  10791. python/ipython_genutils: Remove Python 2 support.
  10792. python/ipython_genutils: Removed (abandoned).
  10793. python/ipython_genutils: Upload ipython_genutils (+new maintainer)
  10794. python/isort: Convert python to python2.
  10795. python/itsdangerous: Updated for version 1.1.0.
  10796. python/jaraco-packaging: Add missing dependency..
  10797. python/jaraco-packaging: Fix REQUIRES.
  10798. python/jaraco-packaging: Removed dependency.
  10799. python/jaraco.classes: Convert python to python2.
  10800. python/jaraco.classes: Fix dependencies.
  10801. python/jaraco.classes: Update DEP.
  10802. python/jdcal: Convert python to python2.
  10803. python/jedi: Convert python to python2.
  10804. python/jmespath: Remove redundant doinst.sh.
  10805. python/josepy: Updated for version 1.10.0.
  10806. python/josepy: Updated for version 1.11.0.
  10807. python/josepy: Updated for version 1.12.0.
  10808. python/jsonpatch: Convert python to python2.
  10809. python/jsonschema: Convert python to python2.
  10810. python/jsonschema: Removed redundant doinst.sh.
  10811. python/kallithea-frontend: Fix slack-desc
  10812. python/kallithea-frontend: added, offline frontend data for Kallithea
  10813. python/kaptan: Convert python to python2.
  10814. python/kaptan: Update DEP.
  10815. python/kombu: Convert python to python2.
  10816. python/linecache2: Convert python to python2.
  10817. python/linecache2: Update DEP.
  10818. python/llfuse: Updated for version 1.4.1.
  10819. python/lxml: Add python2-BeautifulSoup4 dependency
  10820. python/lxml: Updated for version 4.6.3.
  10821. python/lxml: Updated for version 4.8.0
  10822. python/mando: Convert python to python2.
  10823. python/mini-amf: Convert python to python2.
  10824. python/mini-amf: Update DEP.
  10825. python/mistune: Build python2 version also.
  10826. python/mistune: Removed Python 2 support.
  10827. python/mistune: new maintainer
  10828. python/mock: Convert python to python2.
  10829. python/mock: Update DEP.
  10830. python/monty: Convert python to python2.
  10831. python/monty: Update DEP.
  10832. python/monty: Update DEP.
  10833. python/more-itertools: Update DEP.
  10834. python/msgpack-python: Updated for version 1.0.2.
  10835. python/munch: Fix REQUIRES and README.
  10836. python/munch: Removed Python 2 support.
  10837. python/munch: Update DEP.
  10838. python/ndg_httpsclient: Convert python to python2.
  10839. python/nest_asyncio: Updated for version 1.5.4 (+new maintainer)
  10840. python/npm: Convert python to python2.
  10841. python/numpydoc: Update DEP.
  10842. python/numpydoc: Updated for version 1.1.0.
  10843. python/nxt-python3: Updated for version 3.0.0.
  10844. python/nxt-python: Fix file permissions.
  10845. python/nyx: Convert python to python2.
  10846. python/odoo: Fix REQUIRES for python2.
  10847. python/odoo: Fix REQUIRES.
  10848. python/odoo: Fixed dep info
  10849. python/odoo: Update DEP.
  10850. python/odoo: Update DEP.
  10851. python/odoo: Update DEP.
  10852. python/optional-django: Fix REQUIRES for python2.
  10853. python/packaging: Removed (added to Slackware).
  10854. python/pandocfilters: Removed Python 2 support.
  10855. python/pandocfilters: Updated for version 1.5.0 (+new maintainer)
  10856. python/paramiko: Convert python to python2.
  10857. python/paramiko: Updated maintainer email
  10858. python/parsel: Convert python to python2.
  10859. python/parso: new maintainer
  10860. python/parso: updated for version 0.8.3
  10861. python/path.py: Add missing dependency.
  10862. python/path.py: Convert python to python2.
  10863. python/path.py: Removed dependency.
  10864. python/pathlib2: Convert python to python2.
  10865. python/pathlib2: Fix REQUIRES for python2.
  10866. python/pathlib2: Update DEP.
  10867. python/pbr: Only build python2.
  10868. python/pbr: Updated for version 5.6.0.
  10869. python/pefile: Fixed dep info in README
  10870. python/pefile: Update DEP.
  10871. python/pelican: Convert python to python2.
  10872. python/pelican: Fixed dep info
  10873. python/pelican: Update DEP.
  10874. python/pendulum: Convert python to python2.
  10875. python/phply: Update DEP.
  10876. python/pickleshare: Removed Python 2 support.
  10877. python/pip: Removed (added to Slackware).
  10878. python/pipdeptree: Update DEP.
  10879. python/pipdeptree: Updated for version 2.2.1.
  10880. python/piprot: Remove redundant doinst.sh.
  10881. python/piprot: Update DEP.
  10882. python/pkginfo: Updated for version 1.8.2.
  10883. python/planes: Convert python to python2.
  10884. python/planes: Removed.
  10885. python/plaso: Convert python to python2.
  10886. python/plaso: Update DEP.
  10887. python/pluggy: Add missing dependency.
  10888. python/pluggy: Convert python to python2.
  10889. python/pluggy: Removed dependency.
  10890. python/ply: Removed (added to Slackware).
  10891. python/portend: Convert python to python2.
  10892. python/progressive: Convert python to python2.
  10893. python/prompt_toolkit1: Convert python to python2.
  10894. python/prompt_toolkit1: Update DEP.
  10895. python/prompt_toolkit: Convert python to python2.
  10896. python/prompt_toolkit: Update DEP.
  10897. python/ptpython: Removed redundant doinst.sh.
  10898. python/pure_eval: Upload pure_eval
  10899. python/purl: Update DEP.
  10900. python/py3cairo: Removed (added to Slackware).
  10901. python/py3sensors: Fix DOWNLOAD.
  10902. python/py4j: Removed (No maintainer).
  10903. python/py: Add missing dependency.
  10904. python/py: Convert python to python2.
  10905. python/py: Removed dependency.
  10906. python/pyOpenSSL: Convert python to python2.
  10907. python/pyasn1-modules: Convert python to python2.
  10908. python/pybind11: Include python libraries in build
  10909. python/pybind11: Updated for version 2.6.2
  10910. python/pybind11: Updated for version 2.7.1
  10911. python/pybind11: Updated for version 2.8.1
  10912. python/pybind11: Updated for version 2.9.0
  10913. python/pybluez: Fix REQUIRES for python2.
  10914. python/pybluez: Updated for version 0.23
  10915. python/pybluez: Updated maintainer email
  10916. python/pycdio: Updated for version 2.1.0.
  10917. python/pychart: Removed.
  10918. python/pycld2: Remove Python 2 support.
  10919. python/pycodestyle: Updated for version 2.8.0.
  10920. python/pycrypto: Updated maintainer email
  10921. python/pycryptodomex: Convert python to python2.
  10922. python/pycryptodomex: Removed dependency.
  10923. python/pycryptodomex: Updated for version 3.10.4.
  10924. python/pycryptodomex: Updated for version 3.11.0.
  10925. python/pycryptodomex: Updated for version 3.12.0.
  10926. python/pycryptodomex: Updated for version 3.13.0.
  10927. python/pycryptodomex: Updated for version 3.14.0.
  10928. python/pycryptodomex: Updated for version 3.14.1.
  10929. python/pycryptopp: Fix build on newer gcc.
  10930. python/pycryptopp: Fixed dep info
  10931. python/pydot: Minor script cleanup
  10932. python/pydot: Update DEP.
  10933. python/pydot: Updated maintainer email
  10934. python/pyfiglet: Removed redundant doinst.sh.
  10935. python/pygame: Convert python to python2.
  10936. python/pygame: Updated for version 2.0.1.
  10937. python/pygame: Updated for version 2.0.2
  10938. python/pygame: Updated for version 2.0.3.
  10939. python/pygobject3-python3: Removed (Added to Slackware).
  10940. python/pyicu: Build with python3 unconditionally
  10941. python/pyicu: Updated for version 2.4.2.
  10942. python/pyicu: Updated for version 2.7.2.
  10943. python/pyicu: Updated for version 2.7.4
  10944. python/pyicu: Updated maintainer email
  10945. python/pyliblo: Add python3 support.
  10946. python/pylirc: Removed (No maintainer).
  10947. python/pymysql: Convert python to python2.
  10948. python/pynacl: Convert python to python2.
  10949. python/pynacl: Update DEP.
  10950. python/pyparsing: Removed (Added to Slackware).
  10951. python/pypoppler: Fix for gcc >= 10.x.
  10952. python/pypy3: Fix DOWNLOAD.
  10953. python/pypy: Fix DOWNLOAD.
  10954. python/pyqode.qt: Fixed dep info
  10955. python/pyresample: Update DEP
  10956. python/pyrsistent: Update DEP.
  10957. python/pysed: Fix DOWNLOAD.
  10958. python/pyside2: Added. Required for latest FreeCAD
  10959. python/pyside2: Updated for version 5.15.2.1
  10960. python/pyside: Fix download URL.
  10961. python/pysqlite: Update DEP.
  10962. python/pytest-runner: Convert python to python2.
  10963. python/pytest: Removed dependency.
  10964. python/pytest: Update DEP.
  10965. python/python-Levenshtein: Renamed python2-Levenshtein.
  10966. python/python-MonthDelta: Renamed python2-MonthDelta.
  10967. python/python-PySnooper: Removed Python 2 support.
  10968. python/python-Safe: Renamed python2-Safe.
  10969. python/python-argopt: Removed dependency.
  10970. python/python-argopt: Updated for version 0.7.0.
  10971. python/python-authres: Renamed python2-authres.
  10972. python/python-autobahn: Renamed python2-autobahn.
  10973. python/python-bigfloat: Renamed python2-bigfloat.
  10974. python/python-bitstring: Fix tarball handling.
  10975. python/python-blake2: Renamed python2-blake2.
  10976. python/python-branca: Removed (abandoned).
  10977. python/python-branca: Update DEP.
  10978. python/python-branca: Update DEP.
  10979. python/python-branca: Updated MD5SUM.
  10980. python/python-certifi: Removed (Added to Slackware).
  10981. python/python-chardet: Removed (added to Slackware).
  10982. python/python-cheetah: Renamed python2-cheetah.
  10983. python/python-clamd: Renamed python2-clamd.
  10984. python/python-cluster: Renamed python2-cluster.
  10985. python/python-cmdln: Removed (abandoned upstream)
  10986. python/python-configargparse: Updated for version 1.4.
  10987. python/python-configargparse: Updated for version 1.4.1.
  10988. python/python-configargparse: Updated for version 1.5.1.
  10989. python/python-css-parser: Added (css for python).
  10990. python/python-css-parser: Duplicate of css-parser.
  10991. python/python-daemon: Renamed python2-daemon.
  10992. python/python-dateutil: Renamed python2-dateutil.
  10993. python/python-dateutil: Update DEP.
  10994. python/python-dateutil: Updated for version 2.8.1.
  10995. python/python-dbus-next: Upload python-dbus-next
  10996. python/python-demjson: Renamed python2-demjson.
  10997. python/python-distro: Removed (added to Slackware).
  10998. python/python-distutils-extra: Build with python3 by default
  10999. python/python-django-legacy: Renamed python2-django-legacy.
  11000. python/python-django-tagging: Fix REQUIRES for python2.
  11001. python/python-django-tagging: Renamed python2-django-tagging.
  11002. python/python-django: Renamed python2-django.
  11003. python/python-djvulibre: Add missing files.
  11004. python/python-djvulibre: Renamed python2-djvulibre.
  11005. python/python-docker-pycreds: Renamed python2-docker-pycreds.
  11006. python/python-docker-pycreds: Update DEP.
  11007. python/python-docker: Fix REQUIRES for python2.
  11008. python/python-docker: Renamed python2-docker.
  11009. python/python-docker: Update DEP.
  11010. python/python-dockerpty: Renamed python2-dockerpty.
  11011. python/python-dockerpty: Update DEP.
  11012. python/python-editor: Renamed python2-editor.
  11013. python/python-editor: Update DEP.
  11014. python/python-editor: Updated for version 1.0.4.
  11015. python/python-elementtree: Renamed python2-elementtree.
  11016. python/python-elementtree: Updated for version 1.3.
  11017. python/python-elib.intl: Renamed python2-elib.intl.
  11018. python/python-emoji: Fix tarball handling.
  11019. python/python-esmre: Renamed python2-esmre.
  11020. python/python-executing: Upload python-executing
  11021. python/python-fonttools: Updated for version 4.29.1.
  11022. python/python-future: Removed (added to Slackware).
  11023. python/python-gammu: Renamed python2-gammu.
  11024. python/python-gattlib: Fix setup.py for the newer boost.
  11025. python/python-gattlib: Renamed python2-gattlib.
  11026. python/python-helpdev: Added python-helpdev
  11027. python/python-importlib_metadata: Updated for version 4.10.1.
  11028. python/python-jeepney: Added (Pure Python DBus interface).
  11029. python/python-joblib: Update for 1.1.0 (+new maintainer)
  11030. python/python-jsonrpclib: Updated for version 0.4.3.
  11031. python/python-kerberos: Fixed dep info
  11032. python/python-keybinder: Renamed python2-keybinder.
  11033. python/python-keyczar: Renamed python2-keyczar.
  11034. python/python-keyring: Add missing dependency.
  11035. python/python-keyring: Removed dependency.
  11036. python/python-keyutils: Renamed python2-keyutils.
  11037. python/python-klein: Renamed python2-klein.
  11038. python/python-lazy-object-proxy: Renamed python2-lazy-object-proxy.
  11039. python/python-ldap: Fix tarball handling.
  11040. python/python-lhafile: Renamed python2-lhafile.
  11041. python/python-libnacl: Fixed dep info
  11042. python/python-libsass: Removed redundant doinst.sh.
  11043. python/python-libsass: Update DEP.
  11044. python/python-libtmux: Updated for version 0.10.3.
  11045. python/python-ly: Updated for version 0.9.7, switch to python3.
  11046. python/python-lz4: Renamed python2-lz4.
  11047. python/python-m2r: Fixed dep info
  11048. python/python-magic: Autodetect python3.
  11049. python/python-magick: Renamed python2-magick.
  11050. python/python-mccabe: Renamed python2-mccabe.
  11051. python/python-memcached: Renamed python2-memcached.
  11052. python/python-memcached: Update DEP.
  11053. python/python-mimeparse: Renamed python2-mimeparse.
  11054. python/python-morbid: Renamed python2-morbid.
  11055. python/python-mpd: Renamed python2-mpd.
  11056. python/python-mysql-replication: Updated for version 0.25.
  11057. python/python-mysql-replication: Updated for version 0.26.
  11058. python/python-mysqlclient: Fix MD5SUM and SRCNAM.
  11059. python/python-mysqlclient: Fix MD5SUM and SRCNAM.
  11060. python/python-nbxmpp: Updated for version 2.0.4.
  11061. python/python-netaddr: Renamed python2-netaddr.
  11062. python/python-notify2: Removed (added to Slackware).
  11063. python/python-oauth2: Renamed python2-oauth2.
  11064. python/python-oauth2client: Renamed python2-oauth2client.
  11065. python/python-oauth: Renamed python2-oauth.
  11066. python/python-openid: Renamed python2-openid.
  11067. python/python-orbited: Fix REQUIRES for python2.
  11068. python/python-orbited: Renamed python2-orbited.
  11069. python/python-parsedatetime: Update DEP.
  11070. python/python-patch: Renamed python2-patch.
  11071. python/python-pdfminer: Renamed python2-pdfminer.
  11072. python/python-pmw: Renamed python2-pmw.
  11073. python/python-poppler-qt4: Removed (needs poppler-qt4).
  11074. python/python-poppler-qt5: Added (Python bindings to poppler-qt5).
  11075. python/python-poppler-qt5: Direct setup.py to qt5 qmake-bin.
  11076. python/python-precis-i18n: Updated for version 1.0.4.
  11077. python/python-progress: Renamed python2-progress.
  11078. python/python-prometheus_client: Update for 0.13.1
  11079. python/python-prometheus_client: Updated for version 0.12.0 (+new maintainer)
  11080. python/python-pydns: Renamed python2-pydns.
  11081. python/python-pyparted: Add -fcommon cflag. Fix DOWNLOAD/MD5SUM.
  11082. python/python-pypolicyd-spf: Renamed python2-pypolicyd-spf.
  11083. python/python-pyspf: Fix REQUIRES for python2.
  11084. python/python-pyspf: Renamed python2-pyspf.
  11085. python/python-qrcode: Update DEP.
  11086. python/python-qrcode: Updated for version 6.1.
  11087. python/python-qrcode: Updated for version 7.1.
  11088. python/python-qrcode: Updated for version 7.3.1.
  11089. python/python-requestbuilder: Renamed python2-requestbuilder.
  11090. python/python-requestbuilder: Update DEP.
  11091. python/python-requests-kerberos: Renamed python2-requests-kerberos.
  11092. python/python-requests-kerberos: Update DEP.
  11093. python/python-requests: Removed (added to Slackware).
  11094. python/python-scandir: Renamed python2-scandir.
  11095. python/python-setuptools-doc: Renamed python2-setuptools-doc.
  11096. python/python-simpy: Renamed python2-simpy.
  11097. python/python-slacklog: Renamed python2-slacklog.
  11098. python/python-slacklog: Updated for version 0.9.6.
  11099. python/python-slip: Include support for python3
  11100. python/python-socks: Updated for version 2.0.3.
  11101. python/python-soupsieve: Renamed python2-soupsieve.
  11102. python/python-stomper: Renamed python2-stomper.
  11103. python/python-suds: Renamed python2-suds.
  11104. python/python-swiftclient: Renamed python2-swiftclient.
  11105. python/python-swiftclient: Update DEP.
  11106. python/python-tabulate: Renamed python2-tabulate.
  11107. python/python-tblib: Renamed python2-tblib.
  11108. python/python-tblib: Update DEP.
  11109. python/python-texttable: Renamed python2-texttable.
  11110. python/python-transaction: Renamed python2-transaction.
  11111. python/python-tvrage: Renamed python2-tvrage.
  11112. python/python-twisted: Renamed python2-twisted.
  11113. python/python-twitter: Renamed python2-twitter.
  11114. python/python-twitter: Update DEP.
  11115. python/python-txaio: Renamed python2-txaio.
  11116. python/python-txaio: Update DEP.
  11117. python/python-unicodecsv: Renamed python2-unicodecsv.
  11118. python/python-unicodedata2: Updated DOWNLOAD.
  11119. python/python-unicodedata2: Updated for version 14.0.0.
  11120. python/python-uri-templates: Renamed python2-uri-templates.
  11121. python/python-urllib3: Removed (added to Slackware).
  11122. python/python-urwid_readline: New submission.
  11123. python/python-uuid: Renamed python2-uuid.
  11124. python/python-vatnumber: Renamed python2-vatnumber.
  11125. python/python-vulndb: Renamed python2-vulndb.
  11126. python/python-webencodings: Removed Python 2 support.
  11127. python/python-webpack: Fix REQUIRES for python2.
  11128. python/python-whisper: Renamed python2-whisper.
  11129. python/python-wordpress-xmlrpc: Renamed python2-wordpress-xmlrpc.
  11130. python/python-wrapt: Renamed python2-wrapt.
  11131. python/python-x11_hash: Renamed python2-x11_hash.
  11132. python/python-xcffib: Renamed python2-xcffib.
  11133. python/python-xcffib: Update DEP.
  11134. python/python-xlib: Add missing dependency.
  11135. python/python-xlib: Removed dependency.
  11136. python/python-xlib: Removed not needed hack.
  11137. python/python-xlib: Update DEP.
  11138. python/python-xlwt: Renamed python2-xlwt.
  11139. python/python-xrandr: Renamed python2-xrandr.
  11140. python/python-yenc: Renamed python2-yenc.
  11141. python/python-zipp: Fix REQUIRES.
  11142. python/python-zipp: Removed dependency.
  11143. python/python-zipp: Updated for version 3.7.0.
  11144. python/python2-BeautifulSoup4: Added (legacy BeautifulSoup4) python2-BeautifulSoup4 (for Python 2 compatibility)
  11145. python/python2-MarkupSafe: Renamed from MarkupSafe.
  11146. python/python2-blake2: Removed (unused, python2, ftbfs).
  11147. python/python2-cached-property: Renamed python2-cached-property.
  11148. python/python2-cheetah: Fixed comment.
  11149. python/python2-cryptography: Added (Python2 cryptography library)
  11150. python/python2-cryptography: Fix PRGNAM in info file
  11151. python/python2-dateutil: Fix dependency.
  11152. python/python2-gammu: Updated for version 2.12
  11153. python/python2-gammu: Updated maintainer email
  11154. python/python2-gattlib: Updated for version 0.20200121
  11155. python/python2-gattlib: Updated maintainer email
  11156. python/python2-keybinder: Removed (keybinder3 in -current dropped python support).
  11157. python/python2-lz4: Updated for version 2.2.1.
  11158. python/python2-pbr: Fix .info.
  11159. python/python2-pillow: Added (Python Imaging Library).
  11160. python/python2-pkgconfig: Added (python module for pkg-tool).
  11161. python/python2-progress: Updated for version 1.6.
  11162. python/python2-psycopg2: renamed from psycopg2 as the latest version supporting python2
  11163. python/python2-pybluez: Renamed from pybluez
  11164. python/python2-pycrypto: Renamed to clarify it's python2 only
  11165. python/python2-pyicu: Renamed from pyicu and updated for version 2.8
  11166. python/python2-selectors2: Added (backported selctors for py2).
  11167. python/python2-setuptools-doc: Removed (does not build.)
  11168. python/python2-setuptools-scm: Added (setuptools-scm for Python 2).
  11169. python/python2-sip: Removed (already in current as sip).
  11170. python/python2-swiftclient: Update DEP.
  11171. python/python2-tabulate: Removed redundant doinst.sh.
  11172. python/python2-twisted: new maintainer
  11173. python/python2-txaio: new maintainer
  11174. python/python3-Cython: Removed (added to Slackware).
  11175. python/python3-Flask-Basicauth: Added (Flask extension).
  11176. python/python3-Flask-Basicauth: Change to Flask.
  11177. python/python3-Flask-RESTful: Change to Flask.
  11178. python/python3-Flask-RESTful: Update DEP.
  11179. python/python3-Flask-httpauth: Change to Flask.
  11180. python/python3-Flask: Removed. (Use Flask).
  11181. python/python3-Flask: Updated for version 1.1.2.
  11182. python/python3-MutatorMath: Added (new dependendency of Type1_to_OTF)
  11183. python/python3-aiohttp-socks: Updated for version 0.7.1.
  11184. python/python3-aiohttp: Change source to pypi.
  11185. python/python3-aiohttp: Fix MD5SUM.
  11186. python/python3-aiohttp: Update DEP.
  11187. python/python3-aiohttp: Updated for version 3.8.1.
  11188. python/python3-alembic: Updated for version 1.7.6.
  11189. python/python3-amqp: Updated for version 5.0.9
  11190. python/python3-appdirs: Removed (added to Slackware).
  11191. python/python3-astroid: Updated dependencies.
  11192. python/python3-astroid: Updated for version 2.5.5.
  11193. python/python3-astroid: Updated for version 2.5.6.
  11194. python/python3-astroid: Updated for version 2.5.7.
  11195. python/python3-astroid: Updated for version 2.5.8.
  11196. python/python3-astroid: Updated for version 2.6.0.
  11197. python/python3-astroid: Updated for version 2.6.2.
  11198. python/python3-astroid: Updated for version 2.6.4.
  11199. python/python3-astroid: Updated for version 2.6.5.
  11200. python/python3-astroid: Updated for version 2.6.6.
  11201. python/python3-astroid: Updated for version 2.7.2.
  11202. python/python3-astroid: Updated for version 2.7.3.
  11203. python/python3-autobahn: cloned from python2-autobahn for python3, updated for version 22.2.2
  11204. python/python3-automat: cloned from Automat for python3, updated for version 20.2.0
  11205. python/python3-babel: new maintainer
  11206. python/python3-babel: updated for version 2.9.1
  11207. python/python3-backlash: renamed from backlash for python3, updated for version 0.3.1
  11208. python/python3-bcrypt: renamed from bcrypt for python3, updated for version 3.2.0
  11209. python/python3-beaker: renamed from Beaker for python3
  11210. python/python3-billiard: Updated for version 3.6.4.0
  11211. python/python3-booleanOperations: Add missing dep, fix script.
  11212. python/python3-booleanOperations: Added (new dependendency of Type1_to_OTF)
  11213. python/python3-booleanOperations: Fix .info file, add missing dep.
  11214. python/python3-celery: renamed from celery for python3, updated for version 5.2.3
  11215. python/python3-configargparse: Renamed from python-configargparse.
  11216. python/python3-configargparse: Updated for version 1.5.3.
  11217. python/python3-crank: renamed from crank for python3
  11218. python/python3-dateutil: Fix REQUIRES.
  11219. python/python3-dateutil: Removed dependency.
  11220. python/python3-dateutil: Update DEP.
  11221. python/python3-dateutil: new maintainer
  11222. python/python3-dateutil: updated for version 2.8.2
  11223. python/python3-defcon: Added (new dependendency of Type1_to_OTF)
  11224. python/python3-defusedxml: Updated for version 0.7.1 (+new maintainer)
  11225. python/python3-django: Install bash-completion file to system dir
  11226. python/python3-dugong: Fix DOWNLOAD.
  11227. python/python3-dulwich: cloned from dulwich for python3, updated for version 0.20.32
  11228. python/python3-editor: Updated for version 1.0.4.
  11229. python/python3-fasteners: Replaced PyPI binary as source.
  11230. python/python3-fasteners: Updated for version 0.17.2.
  11231. python/python3-fasteners: Updated for version 0.17.3.
  11232. python/python3-fontMath: Added (new dependendency of Type1_to_OTF)
  11233. python/python3-fontParts: Added (new dependendency of Type1_to_OTF)
  11234. python/python3-fontPens: Added (New dependendency of Type1_to_OTF)
  11235. python/python3-fontPens: Fix PRGNAM in script and info file.
  11236. python/python3-formencode: cloned from FormEncode for python3, updated for version 2.0.1
  11237. python/python3-fs: Added (New dependendency of Type1_to_OTF)
  11238. python/python3-future: Removed (added to Slackware).
  11239. python/python3-gattlib: Added
  11240. python/python3-gearbox: renamed from gearbox for python3
  11241. python/python3-geventhttpclient: Added (HTTP client library).
  11242. python/python3-geventhttpclient: Updated for version 1.5.3.
  11243. python/python3-gmpy2: Updated for version 2.1.0rc1.
  11244. python/python3-hupper: renamed from hupper for python3, updated for version 1.10.3
  11245. python/python3-ipaddr: added for Kallithea
  11246. python/python3-ipython-sql: Fix dependency.
  11247. python/python3-ipython-sql: Removed (no more ipython).
  11248. python/python3-ipython-sql: Update python3-ipython3-sql for 0.4.0
  11249. python/python3-ipython: Removed (replaced by python/ipython).
  11250. python/python3-isort: Updated for version 5.10.1.
  11251. python/python3-isort: Updated for version 5.9.1.
  11252. python/python3-isort: Updated for version 5.9.2.
  11253. python/python3-isort: Updated for version 5.9.3.
  11254. python/python3-isounidecode: Replaced PyPI binary as source.
  11255. python/python3-jedi: Update for 0.18.1 (+new maintainer)
  11256. python/python3-kombu: renamed from kombu for python3, updated for version 5.2.3
  11257. python/python3-lazy-object-proxy: Allow newer setuptools.
  11258. python/python3-lazy-object-proxy: Removed dependency.
  11259. python/python3-lazy-object-proxy: Updated for version 1.7.1.
  11260. python/python3-matplotlib-inline: Upload python3-matplotlib-inline (+new maintainer)
  11261. python/python3-monotonic: Replaced PyPI binary as source.
  11262. python/python3-mpmath: Removed dependency.
  11263. python/python3-multidict: Updated for version 6.2.0.
  11264. python/python3-natsort: Added (Python Sorting Library)
  11265. python/python3-natsort: Replaced PyPI binary as source.
  11266. python/python3-natsort: Updated for version 8.0.0.
  11267. python/python3-natsort: Updated for version 8.0.2.
  11268. python/python3-natsort: Updated for version 8.1.0.
  11269. python/python3-nltk: Fix slack-desc.
  11270. python/python3-nltk: renamed from libraries/ntlk
  11271. python/python3-obspy: Update DEP.
  11272. python/python3-obspy: Update DEP.
  11273. python/python3-openpyxl: Fix MD5SUM
  11274. python/python3-openpyxl: Fixed dep info
  11275. python/python3-openpyxl: Update for 3.0.9
  11276. python/python3-packaging: Removed (added to Slackware).
  11277. python/python3-paginate: added, requirement for Kallithea
  11278. python/python3-paginate_sqlalchemy: added, requirement for Kallithea
  11279. python/python3-pandas: Update for 1.4.1 (+new maintainer)
  11280. python/python3-paramiko: Added (Python3 SSH module)
  11281. python/python3-paste: renamed from Paste for python3
  11282. python/python3-pastedeploy: renamed from PasteDeploy for python3, updated for version 2.1.1
  11283. python/python3-patsy: Update DEP.
  11284. python/python3-patsy: Update for 0.5.2
  11285. python/python3-plexapi: Replaced PyPI binary as source.
  11286. python/python3-plexapi: Updated for version 4.10.0.
  11287. python/python3-plexapi: Updated for version 4.5.2.
  11288. python/python3-plexapi: Updated for version 4.7.2.
  11289. python/python3-plexapi: Updated for version 4.8.0.
  11290. python/python3-plexapi: Updated for version 4.9.1.
  11291. python/python3-plexapi: Updated for version 4.9.2.
  11292. python/python3-prompt_toolkit: Update DEP.
  11293. python/python3-prompt_toolkit: new maintainer
  11294. python/python3-prompt_toolkit: updated for version 3.0.28
  11295. python/python3-psautohint: Added (new dependendency of Type1_to_OTF)
  11296. python/python3-pulsectl: Updated for version 21.10.5.
  11297. python/python3-pulsectl: Updated for version 21.5.0.
  11298. python/python3-pulsectl: Updated for version 22.1.0.
  11299. python/python3-pulsectl: Updated for version 22.1.3.
  11300. python/python3-pybluez: Added (Python BlueZ bindings)
  11301. python/python3-pyclipper: Added (new dependendency of Type1_to_OTF)
  11302. python/python3-pyicu: Added (python wrapper for icu4c)
  11303. python/python3-pyjwt: Updated for version 2.3.0, switch to python3.
  11304. python/python3-pylint: Updated for version 2.10.1.
  11305. python/python3-pylint: Updated for version 2.8.0.
  11306. python/python3-pylint: Updated for version 2.8.2.
  11307. python/python3-pylint: Updated for version 2.9.3.
  11308. python/python3-pylint: Updated for version 2.9.4.
  11309. python/python3-pylint: Updated for version 2.9.5.
  11310. python/python3-pylint: Updated for version 2.9.6.
  11311. python/python3-pylyrics: Add the dependency BeautifulSoup4.
  11312. python/python3-pylyrics: Fix for version 1.1.0.
  11313. python/python3-pyparted: Add -fcommon cflag. DOWNLOAD/MD5SUM, i486.
  11314. python/python3-pypresence: Replaced PyPI binary as source.
  11315. python/python3-pypresence: Updated for version 4.2.1.
  11316. python/python3-pyrsistent: Update DEP.
  11317. python/python3-pyrsistent: Updated for version 0.18.1 (+new maintainer)
  11318. python/python3-pysdl2: Updated for version 0.9.10.
  11319. python/python3-pysdl2: Updated for version 0.9.11.
  11320. python/python3-pysdl2: Updated for version 0.9.9.
  11321. python/python3-pytest: Removed dependency.
  11322. python/python3-pytest: Update DEP.
  11323. python/python3-pythondialog: Updated for version 3.5.2.
  11324. python/python3-pyusb: Added (Python Module)
  11325. python/python3-pyzmq: Updated for version 19.0.2
  11326. python/python3-repoze.lru: renamed from repoze.lru for python3
  11327. python/python3-routes: renamed from Routes for python3, updated for version 2.5.1
  11328. python/python3-seaborn: Update for 0.11.2
  11329. python/python3-semantic-version: Added (Python Library).
  11330. python/python3-semantic-version: Fix MD5SUM.
  11331. python/python3-semantic-version: Updated for version 2.9.0.
  11332. python/python3-setuptools-rust: Added (Setuptools plugin for Rust).
  11333. python/python3-setuptools-rust: Fix dependency.
  11334. python/python3-setuptools-rust: Removed dependency.
  11335. python/python3-setuptools-rust: Update DEP.
  11336. python/python3-setuptools_scm_git_archive: added, requirement for Kallithea
  11337. python/python3-sge: Added (2d game engine).
  11338. python/python3-sge: Remove old template CWD.
  11339. python/python3-sgmllib3k: Added (python3 port of python 2 sgmllib)
  11340. python/python3-sip: Removed (already in current as sip).
  11341. python/python3-six: Removed (added to Slackware).
  11342. python/python3-soupsieve: Update for 2.3.1
  11343. python/python3-statsmodels: Update for 0.13.2 (+fix slack-desc)
  11344. python/python3-sympy: Updated README.
  11345. python/python3-tekore: Replaced PyPI binary as source.
  11346. python/python3-tekore: Updated for version 3.7.1.
  11347. python/python3-tekore: Updated for version 4.0.0.
  11348. python/python3-tekore: Updated for version 4.1.0.
  11349. python/python3-tekore: Updated for version 4.2.0.
  11350. python/python3-tgext.routes: renamed from tgext.routes for python3, updated for version 0.2.1
  11351. python/python3-toml: Added (Python Library).
  11352. python/python3-toml: Removed (part of python-toml).
  11353. python/python3-turbogears2: renamed from TurboGears2 for python3, updated for version 2.4.3
  11354. python/python3-twisted: Updated for version 22.1.0.
  11355. python/python3-txaio: cloned from python2-txaio for python3,updated for version 22.2.1
  11356. python/python3-ufoProcessor: Added (new dependendency Type1_to_OTF)
  11357. python/python3-ufonormalizer: Added (new dependendency of Type1_to_OTF)
  11358. python/python3-ufonormalizer: Fix script.
  11359. python/python3-urlobject: renamed from URLObject for python3
  11360. python/python3-waitress: cloned from waitress forpython3, updated for version 2.0.0
  11361. python/python3-wcwidth: new maintainer
  11362. python/python3-webencodings: Renamed to python3.
  11363. python/python3-webencodings: new maintainer
  11364. python/python3-webhelpers2: added for Kallithea
  11365. python/python3-webob: Updated for version 1.8.7
  11366. python/python3-whoosh: renamed from Whoosh for python3
  11367. python/python3-xcffib: Upload python3-xcffib (dependency of qtile)
  11368. python/python3-zopfli: Added (new dependendency of Type1_to_OTF)
  11369. python/python3: Removed (added to Slackware).
  11370. python/pytsk: Fixed DOWNLOAD.
  11371. python/pytsk: Updated for version 20210801.
  11372. python/pytz: Minor script cleanup
  11373. python/pytz: Updated for version 2021.3.
  11374. python/pytz: Updated maintainer email
  11375. python/pyudev: Update DEP.
  11376. python/pyusb: Add missing dependencies.
  11377. python/pyusb: Add missing dependency.
  11378. python/pyusb: Fix REQUIRES and README.
  11379. python/pyusb: Fix REQUIRES and README.
  11380. python/pyusb: Removed dependency.
  11381. python/pyusb: Updated for version 1.2.1
  11382. python/pywebkitgtk: Removed.
  11383. python/pyxdg: Removed (added to Slackware).
  11384. python/pyzmq: new maintainer
  11385. python/ramlfications: Convert python to python2.
  11386. python/readme_renderer: Fixed dep info
  11387. python/readme_renderer: Updated for version 32.0.
  11388. python/rebulk: Convert python to python2.
  11389. python/rebulk: Update DEP.
  11390. python/recommonmark: Convert python to python2.
  11391. python/recommonmark: Fix tarball handling.
  11392. python/recommonmark: Fixed dep info
  11393. python/reedsolo: Fix building with gcc on -current.
  11394. python/relatorio: Convert python to python2.
  11395. python/rencode: Add missing dependency.
  11396. python/requests-futures: Update DEP.
  11397. python/requests-oathlib: Update DEP.
  11398. python/requests-oauthlib: Convert python to python2.
  11399. python/requests-toolbelt: Update DEP.
  11400. python/requests-toolbelt: Updated for version 0.9.1.
  11401. python/requirements-detector: Convert python to python2.
  11402. python/requirements-detector: Remove redundant doinst.sh.
  11403. python/rfc6555: Added (Happy Eyeballs in Python).
  11404. python/rsa: Convert python to python2.
  11405. python/rst-linker: Add missing dependency.
  11406. python/rst-linker: Fix REQUIRES.
  11407. python/rst-linker: Fix REQUIRES.
  11408. python/rst-linker: Removed dependency.
  11409. python/ruffus: Convert to python3
  11410. python/s3cmd: Convert python to python2.
  11411. python/s3transfer: Convert python to python2.
  11412. python/s3transfer: Update DEP.
  11413. python/schema: Convert python to python2.
  11414. python/scikit-learn: Update for 1.0.2 (+new maintainer)
  11415. python/scikit-umfpack: Convert python to python2.
  11416. python/secretstorage: Added missing dependency.
  11417. python/secretstorage: Convert python to python2.
  11418. python/secretstorage: Updated for version 3.3.1.
  11419. python/selenium: Update DEP.
  11420. python/send2trash: Removed Python 2 support.
  11421. python/send2trash: Updated for version 1.8.0 (+new maintainer)
  11422. python/service_identity: Convert python to python2.
  11423. python/setuptools-scm-git-archive: Convert python to python2.
  11424. python/setuptools-scm-git-archive: Fix dependency.
  11425. python/setuptools-scm: Removed (added to slackware.)
  11426. python/setuptools-scm: Updated for version 6.0.1.
  11427. python/sge-pygame: Update DEP.
  11428. python/sge-pygame: Updated for version 2.0.
  11429. python/shutil_get_terminal_size: Removed.
  11430. python/shutil_which: Removed.
  11431. python/simplegeneric: Removed Python 2 support.
  11432. python/singledispatch: Update DEP.
  11433. python/six: Removed (added to Slackware).
  11434. python/slpkg: Update DEP.
  11435. python/snuggs: Convert python to python2.
  11436. python/snuggs: Fixed dep info
  11437. python/snuggs: Removed Python 2 support.
  11438. python/soundcloud: Convert python to python2.
  11439. python/soundcloud: Update DEP.
  11440. python/sphinxcontrib-htmlhelp: Updated for version 2.0.0.
  11441. python/sphinxcontrib-plantuml: Removed.
  11442. python/sphinxcontrib-serializinghtml: Updated for version 1.1.5.
  11443. python/sqlalchemy-migrate: Always build for python3
  11444. python/sqlalchemy-migrate: Update DEP.
  11445. python/sqlalchemy-migrate: Update DEP.
  11446. python/stack_data: Upload stack_data
  11447. python/statsmodels: Convert python to python2.
  11448. python/stevedore: Convert python to python2.
  11449. python/stevedore: Update DEP.
  11450. python/stevedore: Update DEP.
  11451. python/tagpy: Fix boost_libname.
  11452. python/tempita: Always build for python3
  11453. python/tempita: Fix build with newer setuputils.
  11454. python/tempora: Convert python to python2.
  11455. python/tempora: Fix dependency.
  11456. python/tempora: Update DEP.
  11457. python/terminado: Convert python to python2.
  11458. python/terminado: Removed Python 2 support.
  11459. python/terminado: Updated for version 0.13.1 (+new maintainer)
  11460. python/testpath: Removed Python 2 support.
  11461. python/testpath: Updated for version 0.5.0 (+new maintainer)
  11462. python/testscenarios: Convert python to python2.
  11463. python/testtools: Fix REQUIRES for python2.
  11464. python/testtools: Fix dependencies.
  11465. python/testtools: Update DEP.
  11466. python/thonny: Fixed dep info
  11467. python/threadpoolctl: Added (threadpoolctl)
  11468. python/thunarx-python: Add -fcommon cflag.
  11469. python/thunarx-python: Updated for version 0.5.1.
  11470. python/tinycss2: Fix REQUIRES.
  11471. python/tinycss2: Fixed REQUIRES.
  11472. python/tinycss2: Removed python2 support.
  11473. python/tornado_systemd: Convert python to python2.
  11474. python/tox: Convert python to python2.
  11475. python/tox: Remove redundant doinst.sh.
  11476. python/tox: Removed dependency.
  11477. python/tox: Update DEP.
  11478. python/tqdm: Removed dependency.
  11479. python/tqdm: Updated for version 4.62.0.
  11480. python/tqdm: Updated for version 4.63.0
  11481. python/traceback2: Convert python to python2.
  11482. python/traitlets: Fixed dep info
  11483. python/traitlets: Removed (abandoned).
  11484. python/traitlets: Upload traitlets, update for 5.1.1 (+new maintainer)
  11485. python/traittypes: Removed (abandoned).
  11486. python/trezor: Convert python to python2.
  11487. python/trezor: REQUIRES protobuf => protobuf3.
  11488. python/trollius: Update DEP.
  11489. python/tweepy: Fix ARCH.
  11490. python/tweepy: Update DEP.
  11491. python/tweepy: Updated for version 3.10.0.
  11492. python/txi2p: Convert python to python2.
  11493. python/txrequests: Convert python to python2.
  11494. python/txrequests: Update DEP.
  11495. python/txsocksx: Convert python to python2.
  11496. python/txtorcon: Convert python to python2.
  11497. python/typed_ast: Updated dependencies.
  11498. python/typing-extensions: Update for 3.10.0.2 (+new maintainer)
  11499. python/typing: Removed (added to Slackware as part of M2Crypto).
  11500. python/tzlocal: Convert python to python2.
  11501. python/unrardll: Convert python to python2.
  11502. python/vanguards: Convert python to python2.
  11503. python/veryprettytable: Convert python to python2.
  11504. python/virtualenvwrapper: Convert python to python2.
  11505. python/vobject: Convert python to python2.
  11506. python/vobject: Updated for version 0.9.6.1
  11507. python/vobject: Updated maintainer email
  11508. python/w3lib: Update DEP.
  11509. python/w3lib: Updated for version 1.22.0.
  11510. python/waitress: removed python3 support in favor of python3-waitress
  11511. python/watchdog: Convert python to python2.
  11512. python/websocket-client: Add support for python3.
  11513. python/websocket-client: Update DEP.
  11514. python/websocket-client: Updated for version 0.59.0.
  11515. python/winpdb: Convert python to python2.
  11516. python/xarray: Updated for version 0.21.1, changed maintainer.
  11517. python/xopen: update copyright years
  11518. python/yara-python: Updated for version 4.1.2.
  11519. python/yarl: Fix tarball handling.
  11520. python/yarl: Update DEP.
  11521. python/yarl: Update for 1.7.2
  11522. python/yarl: Updated for version 1.6.3.
  11523. python2-paramiko: Renamed from paramiko and updated to 2.9.2
  11524. python3-fasteners: Added (fasteners, required in python3)
  11525. python3-monotonic: Added (monotonic, required in python3)
  11526. ruby/rbenv: Updated for version 1.2.0.
  11527. ruby/ruby-build: Updated for verion 20210526.
  11528. ruby/ruby-build: Updated for version 20210420.
  11529. ruby/ruby-build: Updated for version 20210510.
  11530. ruby/ruby-build: Updated for version 20210611.
  11531. ruby/ruby-build: Updated for version 20210707.
  11532. ruby/ruby-build: Updated for version 20210720.
  11533. ruby/ruby-build: Updated for version 20210726.
  11534. ruby/ruby-build: Updated for version 20210804.
  11535. ruby/ruby-build: Updated for version 20210825.
  11536. ruby/ruby-build: Updated for version 20210928.
  11537. ruby/ruby-build: Updated for version 20211019.
  11538. ruby/ruby-build: Updated for version 20211109.
  11539. ruby/ruby-build: Updated for version 20211203.
  11540. ruby/ruby-build: Updated for version 20211227.
  11541. ruby/ruby-build: Updated for version 20220125.
  11542. ruby/ruby-build: Updated for version 20220218.
  11543. ruby/ruby-faraday: Removed (no maintainer)
  11544. ruby/ruby-gist: Removed (no maintainer)
  11545. ruby/ruby-haste: Removed (no maintainer)
  11546. ruby/ruby-json: Removed (no maintainer)
  11547. ruby/ruby-multipart-post: Removed (no maintainer)
  11548. ruby/rubygem-asciidoctor: Removed (added to Slackware).
  11549. ruby/rubygem-atk: Updated for version 3.4.9.
  11550. ruby/rubygem-bundler: Removed (added to Slackware).
  11551. ruby/rubygem-cairo-gobject: Added (cairo-gobject bindings).
  11552. ruby/rubygem-cairo: Updated for version 1.17.5.
  11553. ruby/rubygem-cool.io: Updated for version 1.7.1.
  11554. ruby/rubygem-gdk3: Added (Ruby GDK3 bindings).
  11555. ruby/rubygem-gdk_pixbuf2: Updated for version 3.4.9.
  11556. ruby/rubygem-gio2: Added (VFS API ruby bindings).
  11557. ruby/rubygem-glib2: Updated for version 3.4.9.
  11558. ruby/rubygem-gobject-introspection: Added (Ruby gobjects).
  11559. ruby/rubygem-gosu: Fixed dep info
  11560. ruby/rubygem-gosu: Updated for version 1.2.0.
  11561. ruby/rubygem-gtk2: Updated for version 3.4.3.
  11562. ruby/rubygem-gtk3: Added (Ruby GTK3 bindings).
  11563. ruby/rubygem-jaro_winkler: Removed (unused).
  11564. ruby/rubygem-lolcat: Remove empty man dir.
  11565. ruby/rubygem-matrix: Added (matrix and vector classes).
  11566. ruby/rubygem-msgpack: Fix VERSION.
  11567. ruby/rubygem-msgpack: Updated for version 1.4.2.
  11568. ruby/rubygem-native-package-installer: Added (native pkg helper).
  11569. ruby/rubygem-pango: Updated for version 3.4.9.
  11570. ruby/rubygem-parallel: Updated for version 1.20.1.
  11571. ruby/rubygem-parser: Updated for version 3.0.2.0.
  11572. ruby/rubygem-pkg-config: Updated for version 1.4.6.
  11573. ruby/rubygem-powerpack: Removed (unused).
  11574. ruby/rubygem-rainbow: Removed (unused).
  11575. ruby/rubygem-red-colors: Added (color utility).
  11576. ruby/rubygem-rubocop: Removed (unused).
  11577. ruby/rubygem-ruby-progressbar: Removed (unused).
  11578. ruby/rubygem-ruumba: Remove Ruby 2.2 fixes.
  11579. ruby/rubygem-ruumba: Removed (unused).
  11580. ruby/rubygem-unicode-display_width: Removed (unused).
  11581. ruby/rubygem-yajl-ruby: Updated for version 1.4.1
  11582. ruby/rubygems-update: Updated for version 3.2.16.
  11583. system/AnonymousPro: Rewrote SlackBuild, updated link.
  11584. system/Attic: Fix build with newer openssl.
  11585. system/CPU-X: Do not write to real /usr.
  11586. system/Eterm: Remove .la files.
  11587. system/GentiumPlus: Fix support for PRINT_PACKAGE_NAME
  11588. system/I-Nex: Add missing .desktop files.
  11589. system/I-Nex: Various fixes.
  11590. system/Iosevka-slab: Updated for version 10.1.1.
  11591. system/Iosevka-slab: Updated for version 10.3.0.
  11592. system/Iosevka-slab: Updated for version 11.1.1
  11593. system/Iosevka-slab: Updated for version 11.2.4
  11594. system/Iosevka-slab: Updated for version 11.3.0
  11595. system/Iosevka-slab: Updated for version 14.0.1
  11596. system/Iosevka: Updated for version 10.1.1.
  11597. system/Iosevka: Updated for version 10.3.0.
  11598. system/Iosevka: Updated for version 11.1.1.
  11599. system/Iosevka: Updated for version 11.2.4.
  11600. system/Iosevka: Updated for version 11.3.0
  11601. system/Iosevka: Updated for version 14.0.1
  11602. system/Sl: Remove template comment.
  11603. system/Solaar: Fix udev rules file and move to correct location.
  11604. system/TermRecord: Removed Python 2 support.
  11605. system/TermRecord: Update DEP.
  11606. system/Type1_to_OTF: Added for 15.0 (OTF fonts converted from Type1 fonts)
  11607. system/Type1_to_OTF: Removed (ftbfs).
  11608. system/ZoneMinder: Kill X10 notes
  11609. system/ZoneMinder: Mirror download URL.
  11610. system/ZoneMinder: Update DEP.
  11611. system/a2tools: Remove template comment.
  11612. system/acpi_call: Fix for the newer kernels.
  11613. system/acpi_call: Fix support for PRINT_PACKAGE_NAME
  11614. system/adobe-source-sans-pro-font: Updated for version 3.046R.
  11615. system/adobe-source-serif-pro-font: Updated for version 4.004.
  11616. system/afdko: Add network warning to README.
  11617. system/afdko: Update DEP.
  11618. system/afdko: Updated for version 3.8.0
  11619. system/afio: Fix 15.0 build.
  11620. system/afpfs-ng: Fix for gcc >= 10.x.
  11621. system/afpfs-ng: Remove .la files.
  11622. system/agedu: Remove template comment.
  11623. system/aha: Remove template comment.
  11624. system/alacritty: Install desktop file.
  11625. system/alacritty: Updated for version 0.10.0.
  11626. system/alacritty: Updated for version 0.10.1.
  11627. system/alacritty: Updated for version 0.7.2.
  11628. system/alacritty: Updated for version 0.8.0.
  11629. system/alacritty: Updated for version 0.9.0.
  11630. system/amanda: Updated DOWNLOAD.
  11631. system/amanda: Updated for version 3.3.9, use libtirpc.
  11632. system/anacron: Removed (no maintainer)
  11633. system/android-file-transfer: Fix 15.0 build.
  11634. system/andromeda: Add qt4 dependency.
  11635. system/ansible: Update DEP.
  11636. system/ansible: Update DEP.
  11637. system/apache-cassandra: Fix start option.
  11638. system/apache-cassandra: Updated for version 4.0.1.
  11639. system/apache-tomcat: Fix download URL.
  11640. system/apache-tomcat: Updated for version 10.0.13
  11641. system/apache-tomcat: Updated for version 10.0.14.
  11642. system/apache-tomcat: Updated for version 10.0.17.
  11643. system/apache-tomcat: Updated maintainer email
  11644. system/apg: Remove template comment.
  11645. system/apparmor: Remove .la files.
  11646. system/aqemu: No longer usable with qemu.
  11647. system/arc: Add a fix for gcc >= 10.x.
  11648. system/arc: Remove template comment.
  11649. system/archivemount: Remove template comment.
  11650. system/archmage: Added (CHM to HTML/PDF/text converter)
  11651. system/argyllcms: Fix 15.0 build.
  11652. system/arj: Remove template comment.
  11653. system/aterm: Fix building on current.
  11654. system/atop: Updated for version 2.7.1.
  11655. system/audit: Remove .la files.
  11656. system/audit: Update to HTTPS.
  11657. system/audit: Updated for version 3.0.1.
  11658. system/audit: Updated for version 3.0.7.
  11659. system/augeas: Remove la files.
  11660. system/autoarchive: Updated for version 2.0.2.
  11661. system/autocutsel: Fix README.
  11662. system/autocutsel: Updated for version 0.10.1.
  11663. system/avfs: Remove .la files.
  11664. system/babeltrace: Remove .la files.
  11665. system/bacula-client: Remove .la files.
  11666. system/bacula: Remove .la files.
  11667. system/bareos-client: Removed (orphaned, ftbfs).
  11668. system/bareos: Removed (orphaned, ftbfs).
  11669. system/barman: Fix dependency.
  11670. system/bat: New maintainer + update to 0.18.3
  11671. system/bat: Updated for version 0.18.1.
  11672. system/betty: Fixed README (remove speech-dispatcher mention)
  11673. system/bicon: New maintainer.
  11674. system/bit-babbler: Fix download URL.
  11675. system/bitmapfont2ttf: Add REQUIRES="fontforge".
  11676. system/blktrace: Updated for version 1.3.0.
  11677. system/bochs: Updated for version 2.7.
  11678. system/bogofilter: Align with template
  11679. system/bogofilter: Updated for version 1.2.5.
  11680. system/borgbackup: Removed dependency.
  11681. system/borgbackup: Update DEP.
  11682. system/brasero: Disabled some warnings-as-errors.
  11683. system/brasero: Fixed dep info
  11684. system/brasero: Updated for version 3.12.3.
  11685. system/btop: Added (system resources monitor).
  11686. system/btrbk: Fixed dep info.
  11687. system/buildah: Fix build with newer google-go-lang.
  11688. system/bulk_extractor: Updated for version 20170403_779dbe1.
  11689. system/bulk_extractor: Updated for version 20210928_692ee97.
  11690. system/busybox: Updated for version 1.32.1
  11691. system/c-icap: Remove .la files.
  11692. system/can-utils: Updated for version 2021.08.0.
  11693. system/caprice32: Disabled narrowing warnings, respect CXXFLAGS.
  11694. system/cbmbasic: Fix -current build.
  11695. system/ccd2cue: Remove template comment.
  11696. system/ccid: Align with template
  11697. system/ccid: Updated for version 1.4.36
  11698. system/ccrypt: Fix download URL.
  11699. system/ccrypt: Fix download URL.
  11700. system/cdemu-daemon: Fix permission.
  11701. system/cdrkit: Fixed dep info in README
  11702. system/cdrkit: Patch for gcc >= 10.x.
  11703. system/cdw: Fixed dep info
  11704. system/cfengine: Fixed dep info
  11705. system/cfengine: Updated for version 3.15.2.
  11706. system/chipsec: Respect KERNEL.
  11707. system/chipsec: Updated for version 1.8.1.
  11708. system/chkrootkit: Updated for version 0.55.
  11709. system/chronograf: Updated for version 1.9.0
  11710. system/chronograf: Updated for version 1.9.1
  11711. system/chronograf: Updated for version 1.9.3
  11712. system/chrpath: s,i486,i586,g
  11713. system/ciopfs: Fix README.
  11714. system/ciopfs: Remove template comment.
  11715. system/clamav: Don't use wildcards for the source.
  11716. system/clamav: Updated for version 0.103.3.
  11717. system/clamav: Updated for version 0.104.0, switch to cmake.
  11718. system/clamav: Updated for version 0.104.1.
  11719. system/clamav: Updated for version 0.104.2.
  11720. system/clamsmtp: Fix 15.0 build.
  11721. system/clamtk: update for version 6.11
  11722. system/cldr-emoji-annotation: Removed (added to Slackware).
  11723. system/cluster-glue: Fix 15.0 build.
  11724. system/cluster-glue: Remove .la files.
  11725. system/cndrvcups-capt: Fix 15.0 build.
  11726. system/cndrvcups-capt: Remove .la files.
  11727. system/cndrvcups-common: Fix 15.0 build.
  11728. system/cnijfilter2: Patch for gcc >= 10.x.
  11729. system/cnijfilter2: Respect ARCH if already set.
  11730. system/cnijfilter2: Updated for version 6.10.1 and bug fixes.
  11731. system/cnijfilter2: Updated for version 6.20.1.
  11732. system/collectd: Updated for version 5.12.0.
  11733. system/colord-gtk: Support alternatives for ninja
  11734. system/colord-gtk: Updated for version 0.2.0.
  11735. system/colord: Align with new template.
  11736. system/colord: Fix path.
  11737. system/colord: Patch version to build against -current's polkit.
  11738. system/colord: Support alternatives for ninja
  11739. system/colord: Updated for version 1.4.5.
  11740. system/colord: Updated for version 1.4.6.
  11741. system/colorize: Remove template comment.
  11742. system/commons-daemon: Build and install manpage
  11743. system/commons-daemon: Updated for version 1.2.4
  11744. system/commons-daemon: Updated maintainer email
  11745. system/conky: Patch for gcc >= 7.x.
  11746. system/conky: Updated for version 1.12.2.
  11747. system/consolation: Fixed dep info
  11748. system/consolation: Updated for version 0.0.8.
  11749. system/conspy: Remove template comment.
  11750. system/containerd: Fix MD5SUM.
  11751. system/containerd: Updated for version 1.4.4
  11752. system/containerd: Updated for version 1.5.7.
  11753. system/containerd: Updated for version 1.5.8.
  11754. system/corosync: Remove .la files.
  11755. system/courier-prime: Fix download URL.
  11756. system/courier-screenplay: Fix MD5SUM.
  11757. system/cpmtools: Remove template comment.
  11758. system/cpuid: Updated for version 20211210.
  11759. system/cpulimit: Patch for glibc >= 2.32.
  11760. system/crashplan: Fix download URL.
  11761. system/crc32_simple: Remove template comment.
  11762. system/csh: Updated for version 20110502_6.
  11763. system/csvutils: Added (inspect/manipulate CSV data).
  11764. system/cups-bjnp: Disabeld some warnings-as-errors.
  11765. system/cups-bjnp: Updated for version 2.0.3.
  11766. system/curlftpfs: Updated maintainer email
  11767. system/cutecom: Add qt4 dependency.
  11768. system/cve-check-tool: Disable some warnings-as-errors.
  11769. system/d-feet: Support alternatives for ninja
  11770. system/d-feet: Updated for version 0.3.15.
  11771. system/d52: Remove template comment.
  11772. system/dahdi-complete: Fix support for PRINT_PACKAGE_NAME
  11773. system/dahdi-complete: Remove .la files.
  11774. system/dahdi-complete: Updated for version 20201116_5c840cf.
  11775. system/dahdi-complete: Updated for version 3.0.0.
  11776. system/dahdi-complete: Updated for version 3.1.0.
  11777. system/dash: Removed (added to Slackware).
  11778. system/dateutils: Updated for version 0.4.9.
  11779. system/davfs2: Updated for version 1.6.0.
  11780. system/davfs2: Updated for version 1.6.1.
  11781. system/ddcutil: Updated for version 0.9.7.
  11782. system/ddrescue-gui: Removed (no maintainer)
  11783. system/ddrescue-gui: Update DEP.
  11784. system/ded: Reflow README, rm template comment.
  11785. system/dehydrated: Removed (added to Slackware).
  11786. system/dfc: Fix download URL.
  11787. system/dfu-util: Updated for version 0.11
  11788. system/dget: Fix download URL.
  11789. system/dieharder: Fix 15.0 build.
  11790. system/dieharder: Fix build with gcc>=10.
  11791. system/diit: Removed (No maintainer).
  11792. system/dina-font: Reflow README.
  11793. system/dislocker: Patch for ruby >= 3.x.
  11794. system/dislocker: Updated for version 0.7.3.
  11795. system/displaylink: Update README for new URL.
  11796. system/docker-cli: Updated for version 20.10.10.
  11797. system/docker-cli: Updated for version 20.10.11.
  11798. system/docker-cli: Updated for version 20.10.6
  11799. system/docker-compose: Fix REQUIRES for python2.
  11800. system/docker-compose: Fix dep info.
  11801. system/docker-compose: Fixed dep info
  11802. system/docker-compose: Update DEP.
  11803. system/docker-machine-kvm: Adjust docker-machine source.
  11804. system/docker-machine-kvm: Fix build with newer google-go-lang.
  11805. system/docker-machine: Updated for version 0.16.2.
  11806. system/docker-proxy: Updated for version 20210125_b350742
  11807. system/docker: Updated for version 20.10.10.
  11808. system/docker: Updated for version 20.10.11.
  11809. system/docker: Updated for version 20.10.6
  11810. system/dos33fsprogs: Fix README.
  11811. system/dos33fsprogs: Remove template comment.
  11812. system/dosbox-dev: Align with template
  11813. system/dosbox-dev: updated for version 0.75_pre4446
  11814. system/dosbox-dev: updated for version 0.75_pre4454
  11815. system/dosbox-dev: updated for version 0.75_pre4471
  11816. system/dosbox-x: Updated for version 0.83.22.
  11817. system/dosbox-x: Updated for version 0.83.8.
  11818. system/drbd-utils: Updated for version 9.18.2.
  11819. system/dse-typewriter-font: Fix README.
  11820. system/dse-typewriter-font: Remove template comment.
  11821. system/dump: Updated for version 0.4b47.
  11822. system/duplicity: Update DEP.
  11823. system/dust: Updated for version 0.6.0.
  11824. system/dust: Updated for version 0.7.5 + New maintainer.
  11825. system/dvdisaster: Fix 15.0 build.
  11826. system/dvdisaster: Updated for version 0.79.9.
  11827. system/dymo-cups-drivers: Fix build with newer cups.
  11828. system/dymo-cups-drivers: Fix download URL.
  11829. system/dymo-cups-drivers: Patch for the newer cups.
  11830. system/dynamips: Fix 15.0 build.
  11831. system/dynamips: Fixed linking against zlib.
  11832. system/eaglemode: Updated for version 0.95.1.
  11833. system/ecryptfs-utils: Patched against openssl-1.1.x.
  11834. system/ecryptfs-utils: Remove .la files.
  11835. system/edid-decode: Fix README.
  11836. system/edid-decode: Updated for version 0.1~git20201230.95d81c9.
  11837. system/efitools: Updated for version 1.9.2.
  11838. system/elo-mt-usb: Fix support for PRINT_PACKAGE_NAME
  11839. system/elo-mt-usb: Removed (download is gone, we dont have the hardware to test new versions).
  11840. system/eltclsh: Fixed dep info
  11841. system/eltclsh: Remove .la files.
  11842. system/eltclsh: Updated for version 1.18.
  11843. system/emelfm2: Fix build with newer gcc, adapt to template.
  11844. system/encfs: Fix VERSION in the info file.
  11845. system/encfs: Updated for version 1.9.5
  11846. system/encfs: Updated maintainer email
  11847. system/epson-inkjet-printer-escpr2: Remove .la files.
  11848. system/epson-inkjet-printer-escpr: Remove .la files.
  11849. system/epson-printer-utility: Fix 15.0 build.
  11850. system/esekeyd: Remove template comment.
  11851. system/etsh: Remove template comment.
  11852. system/evdi-kernel: Fix support for PRINT_PACKAGE_NAME
  11853. system/evdi-kernel: Upgraded for version 1.10.0.
  11854. system/evdi: Updated for version 1.10.0.
  11855. system/eventlog: Remove .la files.
  11856. system/evhz: Updated for version 35b7526e.
  11857. system/evilvte: Added the new dependency vte2.
  11858. system/evilvte: Removed (no maintainer)
  11859. system/evtest: Added (monitor input device events).
  11860. system/exa: Updated for version 0.10.1.
  11861. system/execline: Updated for version 2.8.2.0
  11862. system/exomizer: Better download link.
  11863. system/exomizer: Updated for version 3.1.1.
  11864. system/ext4magic: Fix build with newer gcc.
  11865. system/extract-xiso: Removed (no maintainer)
  11866. system/extundelete: Added a patch for the newer e2fprogs.
  11867. system/f2fs_tools: Removed (added to Slackware).
  11868. system/facter: Disable some warning-as-errors.
  11869. system/facter: Fix 15.0 build.
  11870. system/fakechroot: Updated for version 2.20.1.
  11871. system/fakeroot: Remove .la files.
  11872. system/fakeroot: Updated for version 1.25.3.
  11873. system/fatsort: Updated for version 1.6.4.625.
  11874. system/fbterm: Add checkfb man page.
  11875. system/fd: Updated for version 8.3.0.
  11876. system/fd: Updated for version 8.3.1.
  11877. system/fd: Updated for version 8.3.2.
  11878. system/fdclone: Convert .jp docs to UTF-8.
  11879. system/fence-agents: Update DEP.
  11880. system/file-roller: Support alternatives for ninja
  11881. system/file-roller: Updated for version 3.36.2, switch to meson.
  11882. system/filerunner: Remove (unmaintainable mess).
  11883. system/findcmd: Updated for version 0.1.2.
  11884. system/fio: Updated for version 3.29.
  11885. system/firejail: Updated for version 0.9.66.
  11886. system/firejail: Updated for version 0.9.68.
  11887. system/firmware-gobi-2000: Fix download URL.
  11888. system/fish: Fixed dep info in README
  11889. system/flSynclient: Removed (no maintainer).
  11890. system/flexbackup: Add patch.
  11891. system/font-manager: Fix build when webkit2gtk not installed.
  11892. system/font-manager: Fixed dep info
  11893. system/font-manager: Fixed dep info
  11894. system/font-manager: Updated for version 0.8.8.
  11895. system/foremost: Patch for gcc >= 10.x.
  11896. system/forkstat: Removed (no maintainer)
  11897. system/fountain: Added (pipe stdin to multiple processes).
  11898. system/fpm2: Fix 15.0 build.
  11899. system/fr: Updated for version 3.0.
  11900. system/franny: Make man pages match script names.
  11901. system/freeipmi: Remove .la files.
  11902. system/fsarchiver: Updated for version 0.8.6.
  11903. system/fsv: Fix README.
  11904. system/fsv: Fix building with the newer autotools.
  11905. system/fsv: Remove template comment.
  11906. system/fsviewer: Fix README.
  11907. system/fsviewer: Fix build on -current.
  11908. system/fswatch: Remove .la files.
  11909. system/ft2demos: Updated for version 2.11.1.
  11910. system/fuse-overlayfs: Update DEP.
  11911. system/fuse3: Removed (added to Slackware).
  11912. system/fwupd: Align with new template.
  11913. system/fwupd: Fixed dep info
  11914. system/fwupd: Fixed dep info in README
  11915. system/fwupd: Fixed ninja build.
  11916. system/fwupd: Kill py3cairo dep mention
  11917. system/fwupd: Updated for version 1.3.12.
  11918. system/fwupdate: Disabled some warnings-as-errors.
  11919. system/fwupdate: Fixed dep info
  11920. system/fwupdate: Removed (part of fwupd).
  11921. system/fzf: Updated for version 0.27.1.
  11922. system/fzf: Updated for version 0.27.2.
  11923. system/fzf: Updated for version 0.27.3.
  11924. system/fzf: Updated for version 0.28.0.
  11925. system/fzf: Updated for version 0.29.0.
  11926. system/gammu: Updated for version 1.42.0
  11927. system/gammu: Updated maintainer email
  11928. system/gencfs: Fix 15.0 build.
  11929. system/gentoo: Updated homepage.
  11930. system/geoclue2: Fixed dep info
  11931. system/geoclue2: Remove la file.
  11932. system/geoclue: Remove .la files.
  11933. system/geoclue: Removed NetworkManager support.
  11934. system/gimp-help: Updated for version 2.10.0.
  11935. system/gitolite: Updated for version 3.6.12.
  11936. system/gkrellm-volume: Removed (upstream disappeared).
  11937. system/gnome-commander: Updated for version 1.14.0.
  11938. system/gnome-disk-utility: Remove NUMJOBS.
  11939. system/gnome-disk-utility: Update DEP.
  11940. system/gnome-disk-utility: Updated for version 3.38.1.
  11941. system/gnome-disk-utility: Updated for version 3.38.2.
  11942. system/gnome-terminal: Added the new dependency vte2.
  11943. system/gnome-terminal: Updated for version 2.33.5.
  11944. system/gnome-vfs: Patched for openssl-1.1.x.
  11945. system/gnome-vfs: Remove .la files.
  11946. system/gnomint: Apply patches from debian.
  11947. system/gnomint: Fix 15.0 build.
  11948. system/gnomint: Updated DOWNLOAD.
  11949. system/gnu-unifont: Updated for version 14.0.01.
  11950. system/go-mtree: Updated for version 0.5.0.
  11951. system/goaccess: Updated for version 1.4.6.
  11952. system/gohu-font: Fix README.
  11953. system/gohu-font: Remove template comment.
  11954. system/google-fonts: Fix MD5SUM.
  11955. system/google-fonts: Kill noto-fonts conflict mention
  11956. system/gphotofs: Remove template comment.
  11957. system/grub_legacy: Fix download URL.
  11958. system/gtk-vnc: Align with new template.
  11959. system/gtk-vnc: Fix build.
  11960. system/gtk-vnc: Fixed dep info
  11961. system/gtk-vnc: Updated for version 1.2.0.
  11962. system/gtk-vnc: Updated for version 1.3.0.
  11963. system/gtklp: Updated for version 1.3.4.
  11964. system/guake: Fixed dep info
  11965. system/guake: Update DEP.
  11966. system/guake: Updated for version 3.8.5.
  11967. system/guefi: Added (GTK+3 frontend for efibootmgr).
  11968. system/guix: Kill guile-json dep reference
  11969. system/guix: Removed (no maintainer)
  11970. system/hack-font-ttf: Removed (added to Slackware).
  11971. system/hal-flash: Remove .la files.
  11972. system/hashcat: Fixed dep info
  11973. system/hashcat: Updated for version 6.2.4.
  11974. system/haveged: Removed (added to Slackware).
  11975. system/hddtemp: Fix installation instruction.
  11976. system/heartbeat: Fix 15.0 build.
  11977. system/heartbeat: Remove .la files.
  11978. system/hebe: Removed (KDE4 app).
  11979. system/heirloom-doctools: Updated for version 191015.
  11980. system/heirloom-pax: Fix 15.0 build.
  11981. system/hercules: Remove .la files.
  11982. system/hercules: Updated for version 3.13
  11983. system/herculesstudio: Fix 15.0 build, new-style icons.
  11984. system/hexec: Get rid of static lib.
  11985. system/hfsprogs: Fix 15.0 build.
  11986. system/hime: Fix 15.0 build and other issues.
  11987. system/hstr: Updated for version 2.5
  11988. system/hungrycat: Reflow README, https URL.
  11989. system/hwinfo: Fix 15.0 build.
  11990. system/hwinfo: Updated for version 21.78
  11991. system/hwinfo: Updated maintainer email
  11992. system/hwloc: Fix 15.0 build.
  11993. system/icingaweb2: Install bash-completion file to systemwide dir
  11994. system/imwheel: Fix README.
  11995. system/incron: Change maintainer email.
  11996. system/incron: Fix 15.0 build.
  11997. system/influxdb: Update DOWNLOAD.
  11998. system/info2man: Remove template comment.
  11999. system/innotop: Removed (included in the newer mariadb).
  12000. system/intel-microcode: Updated for version 20210608
  12001. system/intel-microcode: Updated for version 20220207.
  12002. system/intelmas: Updated for version 1.12.
  12003. system/inxi: Removed (added to Slackware).
  12004. system/ioping: Updated for version 1.2.
  12005. system/ipmitool: Add many patches from fedora.
  12006. system/irqbalance: Updated for version 1.8.0.
  12007. system/iscan-data: Added (EPSON Image Scan! data files).
  12008. system/iscan-data: Updated for version 1.39.2.
  12009. system/iscan: Added (front-end for EPSON all-in-one devices).
  12010. system/isextract: Remove template comment.
  12011. system/isextract: Update man page.
  12012. system/isomd5sum: Remove template comment.
  12013. system/jdupes: updated for version 1.20.0
  12014. system/jdupes: updated for version 1.20.1
  12015. system/jdupes: updated for version 1.20.2
  12016. system/jenkins: Updated for version 2.277.3.
  12017. system/jenkins: Updated for version 2.277.4.
  12018. system/jenkins: Updated for version 2.289.1.
  12019. system/jenkins: Updated for version 2.289.2.
  12020. system/jenkins: Updated for version 2.289.3.
  12021. system/jenkins: Updated for version 2.303.1.
  12022. system/jenkins: Updated for version 2.303.2.
  12023. system/jenkins: Updated for version 2.303.3.
  12024. system/jenkins: Updated for version 2.319.1.
  12025. system/jenkins: Updated for version 2.319.2
  12026. system/jenkins: Updated for version 2.319.3.
  12027. system/jenkins: Updated for version 2.332.1.
  12028. system/jmtpfs: Removed (added to Slackware).
  12029. system/joyce: Fix 15.0 build.
  12030. system/joyce: Updated for version 2.2.15.
  12031. system/jq: Fixed dep info
  12032. system/jq: Remove .la files.
  12033. system/jshon: Fixed dep info
  12034. system/kapacitor: Updated for version 1.6.1
  12035. system/kapacitor: Updated for version 1.6.2
  12036. system/kapacitor: Updated for version 1.6.3
  12037. system/kbfs: Fixed dep info in README
  12038. system/kbfs: Update README and URL.
  12039. system/kbfs: Updated for version 5.7.1.
  12040. system/kbfs: Updated for version 5.8.1_20210930160723.
  12041. system/kbfs: Updated for version 5.9.3_20220216215910.
  12042. system/kc: Fix dep info in README
  12043. system/kcm_touchpad: Removed (KDE4 app).
  12044. system/kcollectd: Removed (KDE4 app).
  12045. system/kegs: Updated for version 1.12.
  12046. system/kexec-tools: Updated for version 2.0.21.
  12047. system/keybase: Removed.
  12048. system/kfc: Updated for version 0.1.3.
  12049. system/kitchen-sync: Removed (unused, no dependees).
  12050. system/kitchen-sync: Updated for version 2.11.
  12051. system/kitchen-sync: Updated for version 2.14.
  12052. system/kitty: Fixed dep info
  12053. system/kitty: Updated for version 0.23.1.
  12054. system/klish: Remove .la files.
  12055. system/kmscon: Updated for version 8+20140708_0b34527.
  12056. system/komparator4: Removed (KDE4 app).
  12057. system/krusader: Removed (added to Slackware).
  12058. system/ktsuss: update copyright years
  12059. system/kvantum-qt5: Updated for version 1.0.0.
  12060. system/kvantum-qt5: Updated for version 1.0.1.
  12061. system/kvpm: Removed (KDE4 app).
  12062. system/kyotocabinet: Fix URLs (bad certificate).
  12063. system/laptop-mode-tools: Fixed dep info
  12064. system/laptop-mode-tools: don't install systemd files
  12065. system/lbench: Fix 15.0 build.
  12066. system/lbzip2: Removed (added to Slackware).
  12067. system/lddsafe: Remove template comment.
  12068. system/letsencrypt: Update DEP.
  12069. system/letsencrypt: Updated for versino 1.21.0.
  12070. system/letsencrypt: Updated for version 1.15.0.
  12071. system/letsencrypt: Updated for version 1.16.0.
  12072. system/letsencrypt: Updated for version 1.17.0.
  12073. system/letsencrypt: Updated for version 1.18.0.
  12074. system/letsencrypt: Updated for version 1.19.0.
  12075. system/letsencrypt: Updated for version 1.20.0.
  12076. system/letsencrypt: Updated for version 1.22.0.
  12077. system/letsencrypt: Updated for version 1.23.0.
  12078. system/letsencrypt: Updated for version 1.24.0.
  12079. system/lhasa: Removed (added to Slackware).
  12080. system/libcloudproviders: Upload libcloudproviders (new dependency for owncloud-client)
  12081. system/libnatspec: Remove .la files.
  12082. system/libtrash: Switch /bin/sh back to /bin/bash
  12083. system/libtrash: Update for 3.7
  12084. system/lilyterm: Updated for version 0.9.9.4.
  12085. system/linkchecker: Update DEP.
  12086. system/linkchecker: Use Python2 explicitly.
  12087. system/linux-vt-setcolors: Remove template comment.
  12088. system/linuxconsoletools: Reflow README and remove SDL2 ref.
  12089. system/lirc: Docs in /usr/doc, not /usr/share/doc.
  12090. system/lirc: Fix 15.0 build.
  12091. system/lirc: Fix support for PRINT_PACKAGE_NAME
  12092. system/lirc: Update DEP.
  12093. system/lnav: Updated for version 0.10.1.
  12094. system/local-persist: Fix build without glide.
  12095. system/localepurge: Stop writing to $CWD, make noarch.
  12096. system/locust: Added (performance testing tool)
  12097. system/locust: Fix missing deps.
  12098. system/loggedfs: Removed (rlog dep is gone)
  12099. system/logkeys: Updated for version 0.2.0.
  12100. system/logtool: Removed (no maintainer)
  12101. system/logwatch: Updated for version 7.6
  12102. system/logwatch: updated for version 7.5.6
  12103. system/loksh: Fixed dep info
  12104. system/lomoco: Fix for glibc-2.33.
  12105. system/lsb-release: Stop writing to $CWD, make noarch.
  12106. system/luckybackup: Switch to qt5.
  12107. system/lv: Updated for version 4.51_8.
  12108. system/lvm2-cluster: Fix 15.0 build.
  12109. system/lvm2-lockd: Fix 15.0 build.
  12110. system/lxd: Removed (ftb, no maintainer).
  12111. system/lxsession: Fixed dep info
  12112. system/lxterminal: Add the new dependency vte2.
  12113. system/lxterminal: Fixed dep info in README
  12114. system/lynis: Install bash-completion file to systemwide dir
  12115. system/lynis: Updated for version 3.0.4.
  12116. system/lynis: Updated for version 3.0.5.
  12117. system/lynis: Updated for version 3.0.6.
  12118. system/lynis: Updated for version 3.0.7.
  12119. system/lz4: Removed (added to Slackware).
  12120. system/lzop: Remove template comment.
  12121. system/macemu: Disable some warnings-as-errors.
  12122. system/macutils: Remove template comment.
  12123. system/mailutils: Remove .la files.
  12124. system/makefile2graph: Fix README.
  12125. system/makefile2graph: Remove template comment.
  12126. system/makepasswd: Remove template comment.
  12127. system/makepp: Updated for version 2.0.99.2.
  12128. system/makeself: Updated for version 2.4.5.
  12129. system/man-db: Removed (added to Slackware).
  12130. system/man-pages-es: Remove template comment.
  12131. system/man-pages-fr: Default to UTF-8.
  12132. system/man-pages-ja: Fix README.
  12133. system/man-pages-ja: Updated for version 20210815.
  12134. system/man-pages-ru: Use correct install path.
  12135. system/mandoc: Fix 15.0 build.
  12136. system/maxcso: Fixed dep info
  12137. system/mbootpack: Fix 15.0 build.
  12138. system/md5deep: Fix 15.0 build.
  12139. system/mediaextract: Added (extract embedded media files)
  12140. system/memtest86+: Patch for newer binutils
  12141. system/memtest86: Patch for newer binutils
  12142. system/memtester: Updated for version 4.5.1_1.
  12143. system/mhddfs: Fix 15.0 build.
  12144. system/microemulator: Removed (No maintainer).
  12145. system/mjpg-streamer: Removed.
  12146. system/mlocate: Removed (already in Slackware).
  12147. system/mlterm: Fix MD5SUM.
  12148. system/mlterm: Remove .la files.
  12149. system/mlterm: Updated for version 3.9.2.
  12150. system/mmv: Remove template comment.
  12151. system/mongo-tools: Fix build with newer google-go-lang.
  12152. system/mongodb: Update DEP.
  12153. system/mongodb: Updated for version 3.4.24.
  12154. system/mongodb: Updated for version 5.0.4.
  12155. system/monit: Install bash-completion file to systemwide dir
  12156. system/monitoring-plugins: Updated for version 2.3.1.
  12157. system/monitorix: Fix download URL.
  12158. system/mpack: Fix download URL.
  12159. system/mpich: Fix building with gfortran >= 10.x.
  12160. system/mpich: Mention conflict with openmpi.
  12161. system/mpich: Remove .la files.
  12162. system/mpich: Updated for version 3.4.2
  12163. system/mpich: Updated for version 3.4.3
  12164. system/mrxvt: Fix 15.0 build.
  12165. system/msitools: Remove .la files.
  12166. system/multibootusb: Fixed dep info
  12167. system/multicorn: Removed (FTBFS, even with debian patches and/or latest git).
  12168. system/multicorn: Updated for version 1.4.0.
  12169. system/multiload-ng: Fix 15.0 build.
  12170. system/multipath-tools: Updated for version 0.8.7.
  12171. system/multitail: Fix download URL.
  12172. system/munin-node: Fix 15.0 build.
  12173. system/munin-node: Fix tarball handling.
  12174. system/munin-node: Use zulu-openjdk8.
  12175. system/mysql-utilities: Removed (EOL).
  12176. system/nanum-coding-fonts-ttf: Fix build.
  12177. system/nbench: Fix download URL.
  12178. system/netatop: Fix support for PRINT_PACKAGE_NAME
  12179. system/netatop: Updated for version 3.1.
  12180. system/netdata: Fixed dep info
  12181. system/netdata: Update DEP.
  12182. system/netdata: Updated for version 1.30.1.
  12183. system/netdata: Updated for version 1.31.0.
  12184. system/netdata: Updated for version 1.32.0.
  12185. system/netdata: Updated for version 1.32.1.
  12186. system/netdata: Updated for version 1.33.0.
  12187. system/netdata: Updated for version 1.33.1.
  12188. system/newLd: Fix build.
  12189. system/nilfs-utils: Updated for version 2.2.8
  12190. system/nilfs-utils: Updated maintainer email
  12191. system/nix: Fixed dep info
  12192. system/nix: Update DEP.
  12193. system/nix: Updated for version 2.3.16.
  12194. system/nix: Updated for version 2.4.
  12195. system/nix: Updated for version 2.5.1.
  12196. system/nix: Updated for version 2.6.0.
  12197. system/nix: Updated for version 2.6.1.
  12198. system/nnn: Updated for version 4.4.
  12199. system/noto-fonts: Removed (added to Slackware as noto-fonts-ttf).
  12200. system/nrg2cue: Added (convert .nrg CD images)
  12201. system/nss-pam-ldapd: Removed (added to Slackware).
  12202. system/nss_ldap: Fix download URL.
  12203. system/numactl: Remove .la files.
  12204. system/nut: Dynamically create /var/run/nut/
  12205. system/nut: Install bash-completion file to systemwide dir
  12206. system/nut: Remove .la files.
  12207. system/nut: Use the C++14 standard.
  12208. system/nvidia-driver: Fix support for PRINT_PACKAGE_NAME
  12209. system/nvidia-driver: Updated for version 460.73.01, cleanups.
  12210. system/nvidia-driver: Updated for version 460.84.
  12211. system/nvidia-driver: Updated for version 470.63.01.
  12212. system/nvidia-kernel: Fix support for PRINT_PACKAGE_NAME
  12213. system/nvidia-kernel: Updated for version 460.73.01.
  12214. system/nvidia-kernel: Updated for version 460.84.
  12215. system/nvidia-kernel: Updated for version 470.63.01.
  12216. system/nvidia-legacy304-driver: Fix support for PRINT_PACKAGE_NAME
  12217. system/nvidia-legacy304-driver: No libGL.la, fix for gcc >= 10.x
  12218. system/nvidia-legacy304-driver: Removed (unmaintained, ftbfs).
  12219. system/nvidia-legacy304-kernel: Fix support for PRINT_PACKAGE_NAME
  12220. system/nvidia-legacy304-kernel: Patched for the newer kernels.
  12221. system/nvidia-legacy304-kernel: Removed (unmaintained, ftbfs).
  12222. system/nvidia-legacy340-driver: Fix *GL versions in nvidia-switch.
  12223. system/nvidia-legacy340-driver: Fix support for PRINT_PACKAGE_NAME
  12224. system/nvidia-legacy340-driver: Use libtirpc, no libGL.la.
  12225. system/nvidia-legacy340-kernel: Fix support for PRINT_PACKAGE_NAME
  12226. system/nvidia-legacy340-kernel: Patch for the newer kernels.
  12227. system/nvidia-legacy390-driver: Fix support for PRINT_PACKAGE_NAME
  12228. system/nvidia-legacy390-driver: Updated for version 390.143.
  12229. system/nvidia-legacy390-driver: Updated for version 390.144.
  12230. system/nvidia-legacy390-driver: Use libtirpc, no libGL.la.
  12231. system/nvidia-legacy390-kernel: Disable some warnings-as-errors.
  12232. system/nvidia-legacy390-kernel: Fix support for PRINT_PACKAGE_NAME
  12233. system/nvidia-legacy390-kernel: Patch for kernel 5.12.x.
  12234. system/nvidia-legacy390-kernel: Patch for kernel 5.13.x.
  12235. system/nvidia-legacy390-kernel: Updated for version 390.143.
  12236. system/nvidia-legacy390-kernel: Updated for version 390.144.
  12237. system/nvme-cli: Removed (added to Slackware).
  12238. system/ocfs2-tools: Fix 15.0 build.
  12239. system/ohmyalias: Fix download URL.
  12240. system/oldschool-pc-fonts: Remove template comment.
  12241. system/omnidb-app: Fix download URL.
  12242. system/opam: Updated for version 2.0.5.
  12243. system/opam: Updated for version 2.1.2.
  12244. system/opam: Updated for version 2.1.2.
  12245. system/open-vm-tools: Disable warnings-as-errors.
  12246. system/open-vm-tools: Remove .la files.
  12247. system/open-vm-tools: Updated for version 11.3.5_18557794.
  12248. system/openct: Remove .la files.
  12249. system/opendoas: Fix download URL.
  12250. system/opendoas: Updated for version 6.8.2.
  12251. system/opendoas: Workaround internal usage of the $BUILD variable.
  12252. system/openmpi: Mention conflict with mpich.
  12253. system/openrc: Fix 15.0 build.
  12254. system/openrc: Updated for version 0.44.10.
  12255. system/opensc: Remove .la files.
  12256. system/openscap: Updated for version 1.3.6.
  12257. system/openstego: Remove template comment.
  12258. system/oracle-instantclient-basic: Updated DOWNLOAD.
  12259. system/oracle-instantclient-basic: Updated for version 21.5.0.0.0.
  12260. system/oracle-instantclient-devel: Updated DOWNLOAD.
  12261. system/oracle-instantclient-devel: Updated for version 21.5.0.0.0.
  12262. system/oracle-xe: Removed (old version, not available for download).
  12263. system/osinfo-db-tools: Fixed dep info
  12264. system/osinfo-db-tools: Support alternatives for ninja
  12265. system/osinfo-db-tools: Updated for version 1.9.0.
  12266. system/osinfo-db: Updated for version 20210426.
  12267. system/osinfo-db: Updated for version 20211216 (+ Slackware 15.0)
  12268. system/osquery-bin: Updated for version 4.8.0.
  12269. system/osquery-bin: Updated for version 4.9.0.
  12270. system/osquery-bin: Updated for version 5.0.1.
  12271. system/osquery-bin: Updated for version 5.1.0.
  12272. system/osquery-bin: Updated for version 5.2.2.
  12273. system/ossec-agent: Fixed dep info
  12274. system/ossec-agent: Patch for gcc >= 10.x.
  12275. system/ossec-local: Fixed dep info
  12276. system/ossec-local: Patch for gcc >= 10.x.
  12277. system/ossec-server: Fixed dep info
  12278. system/ossec-server: Patch for gcc >= 10.x.
  12279. system/ostree: Remove .la files.
  12280. system/ostree: Updated for version 2021.3.
  12281. system/otf-hermit: Updated for version 2.0.
  12282. system/otf2bdf: Reflow README.
  12283. system/ovmf: removed
  12284. system/p7zip: Patch for gcc >= 10.x.
  12285. system/p7zip: Updated for version 17.04
  12286. system/p7zip: Updated maintainer email
  12287. system/p7zip: Use the C++14 standard.
  12288. system/pacemaker: Remove .la files.
  12289. system/pacemaker: Updated for version 2.0.5.
  12290. system/packagekit: Fixed dep info
  12291. system/packagekit: Removed.
  12292. system/packagekit: Updated for version 1.1.12.
  12293. system/parallel: Removed (added to Slackware).
  12294. system/partclone: Fix download URL.
  12295. system/partclone: Updated for version 0.3.18.
  12296. system/partimage: Fix -current build.
  12297. system/partimage: Fix README.
  12298. system/pass-import: Switch /bin/sh back to /bin/bash
  12299. system/pass-import: Upload pass-import
  12300. system/pass-otp: Fixed dep info
  12301. system/passwdqc: Updated for version 2.0.2.
  12302. system/password-store: Updated for version 1.7.4.
  12303. system/passwordsafe: Fixed dep info
  12304. system/patchelf: Removed (added to Slackware).
  12305. system/pce: Fix 15.0 build.
  12306. system/pce: Updated for version 20220220-991c55d9.
  12307. system/pcf2bdf: Reflow README, rm template comment.
  12308. system/pcsc-lite: Remove .la files.
  12309. system/pcsc-lite: Updated for version 1.9.4.
  12310. system/pcsc-perl: Align with template
  12311. system/pcsc-tools: Fix download URL.
  12312. system/pcsc-tools: Updated for version 1.5.7
  12313. system/pcsc-tools: Updated for version 1.5.8.
  12314. system/percona-toolkit: Updated for version 3.3.1
  12315. system/percona-toolkit: Updated maintainer email
  12316. system/percona-xtrabackup: Removed (included in the newer mariadb).
  12317. system/pgadmin3: Removed.
  12318. system/pgbadger: Fix homepage and download URLs.
  12319. system/phoronix-test-suite: Updated for version 10.4.0.
  12320. system/phoronix-test-suite: Updated for version 10.6.1.
  12321. system/phoronix-test-suite: Updated for version 10.8.0.
  12322. system/phoronix-test-suite: Updated for version 10.8.1.
  12323. system/phoronix-test-suite: Updated for version 10.8.2.
  12324. system/pigz: Updated for version 2.7.
  12325. system/pipemeter: Updated for version 1.1.5.
  12326. system/pixma: Patched for SL15.0
  12327. system/pixma: Update HOMEPAGE
  12328. system/plan9port: Updated for version 20211019_d0d4408.
  12329. system/plocate: Added (a much faster locate).
  12330. system/plymouth: Remove .la files.
  12331. system/podman: Fix github tarball handling.
  12332. system/podman: correct the MD5 digest :sigh:
  12333. system/polyglotman: Remove template comment.
  12334. system/pommed-light: Fix 15.0 build.
  12335. system/porg: Remove .la files.
  12336. system/posixovl: Fix 15.0 build.
  12337. system/postgresql: Updated for version 10.17.
  12338. system/postgresql: Updated for version 14.1.
  12339. system/postgresql: Updated for version 14.2.
  12340. system/postgresql: Use same data dir for all 14.x releases.
  12341. system/powernowd: Use -std=gnu90.
  12342. system/powershell: Updated for version 7.2.0.
  12343. system/preload: s,i486,i586,g
  12344. system/profile-cleaner: Update DEP.
  12345. system/prometheus: Updated for version 2.27.0.
  12346. system/prometheus: Updated for version 2.27.1
  12347. system/prometheus: Updated to version 2.28.0
  12348. system/prometheus: Updated to version 2.28.1
  12349. system/prometheus: Updated to version 2.29.1
  12350. system/prometheus: Updated to version 2.29.2
  12351. system/prometheus: Updated to version 2.30.0
  12352. system/prometheus: Updated to version 2.30.3
  12353. system/prometheus: Updated to version 2.31.1
  12354. system/prometheus: Updated to version 2.32.1
  12355. system/prometheus: Updated to version 2.33.0
  12356. system/prometheus: Updated to version 2.33.1
  12357. system/prometheus: Updated to version 2.33.3
  12358. system/prometheus: Updated to version 2.33.4
  12359. system/prometheus: Updated to version 2.33.5
  12360. system/pspg: Updated for version 5.0.4.
  12361. system/pspg: Updated for version 5.0.5.
  12362. system/ptop: Fix 15.0 build.
  12363. system/pucrunch: Reflow README.
  12364. system/pv: updated for version 1.6.20
  12365. system/pwgem: Update HOMEPAGE.
  12366. system/pwgen: Fix DOWNLOAD.
  12367. system/pwgen: Updated for version 2.08.
  12368. system/pwman: Fix 15.0 build.
  12369. system/python-urwid: Added (python console UI module)
  12370. system/python-urwid: Updated for version 2.1.2.
  12371. system/python3-urwid: Removed.
  12372. system/pytrash: Install bash-completion file to systemwide dir
  12373. system/qemu: Fixup README; remove NUMJOBS from script
  12374. system/qemu: Patch for binutils-2.36.x.
  12375. system/qemu: Update DEP.
  12376. system/qemu: Update README.
  12377. system/qemu: Updated email
  12378. system/qemu: Updated for version 5.2.0.
  12379. system/qemu: Updated for version 6.0.0.
  12380. system/qemu: Updated for version 6.2.0
  12381. system/qemu: Use MAKEFLAGS to pass numjobs.
  12382. system/qingy: Change package pam.d file, not fs.
  12383. system/qingy: Fix 15.0 build.
  12384. system/qingy: Removed (old age, lack of use).
  12385. system/qingy_0.3_themepack: Removed (old age, lack of use).
  12386. system/qjoypad: Updated for version 4.3.1.
  12387. system/qstardict: Fix download URL.
  12388. system/qstardict: Updated for version 1.3.
  12389. system/qterminal: Updated for version 0.15.0.
  12390. system/qtgzmanager: Fix 15.0 build.
  12391. system/rEFInd: Fix for gcc-10.x.
  12392. system/rEFInd: Patch for the newer gnuefi.
  12393. system/rEFInd: Updated for version 0.13.2.
  12394. system/rabbitmq-server: Updated for version 3.8.14.
  12395. system/ranger: use python3 by default now
  12396. system/read-edid: Fix -current build.
  12397. system/read-edid: Fix README.
  12398. system/recoverdm: Fix download URL.
  12399. system/refind: Updated for version 0.13.2.
  12400. system/reiser4progs: Remove .la files.
  12401. system/rename.pl: Added (rename multiple files).
  12402. system/reprepro: Remove NUMJOBS.
  12403. system/reptyr: Remove template comment.
  12404. system/resource-agents: Fix 15.0 build.
  12405. system/restic: Updated for version 0.12.1
  12406. system/restic: man/completion files for version 0.12.1
  12407. system/rfdump: Fix 15.0 build.
  12408. system/rhash: Always build static lib.
  12409. system/rhash: Fix parallel builds.
  12410. system/rhash: Updated for version 1.4.2
  12411. system/ripgrep: Build with pcre2 support.
  12412. system/ripgrep: Updated for version 13.0.0.
  12413. system/rlwrap: Updated for version 0.45.2.
  12414. system/rmw: Updated for version 0.8.0_2.
  12415. system/rmw: Updated for version 0.8.1.
  12416. system/routersploit: Add python2-BeautifulSoup4 DEP
  12417. system/routersploit: Update DEP.
  12418. system/roxterm: Added the dependency vte2.
  12419. system/roxterm: Fix 15.0 build.
  12420. system/rsyslog: Fixed dep info
  12421. system/rtirq: Updated for version 20210530_acf01e7.
  12422. system/runc: Update DEP.
  12423. system/runc: Updated for version 1.0.0-rc93
  12424. system/runc: Updated for version 1.0.2.
  12425. system/rxvt-unicode: Removed (added to Slackware).
  12426. system/s3fs-fuse: Updated for version 1.90.
  12427. system/s3ql: Fix Build.
  12428. system/s3ql: Fix homepage and download.
  12429. system/s3ql: Update DEP.
  12430. system/s6-linux-init: Updated for version 1.0.7.2
  12431. system/s6-rc: Updated for version 0.5.3.0
  12432. system/s6: Updated for version 2.11.0.1, move root-only binaries to /sbin
  12433. system/sakura: Fixed dep info
  12434. system/salt: Update DEP.
  12435. system/salt: Update DEP.
  12436. system/salt: Update DEP.
  12437. system/salt: Update DEP.
  12438. system/samhain: Updated for version 4.4.6.
  12439. system/samsung-mfp-drivers: Changed to version 1.00.06.
  12440. system/sandbox: Updated for version 2.23.
  12441. system/sandy: Remove template comment.
  12442. system/sanlock: Fix MD5SUM.
  12443. system/sargon: Fix build with newer google-go-lang.
  12444. system/sbbdep: Patch for gcc >= 11.x.
  12445. system/sbotools: Fix ARCH.
  12446. system/sbotools: Fix support for PRINT_PACKAGE_NAME
  12447. system/sbsigntools: Updated for version 0.9.1.
  12448. system/scangearmp2: Update for version 4.10.1 and bug fix.
  12449. system/scanmem: Remove .la files.
  12450. system/scdoc: Fix MD5SUM.
  12451. system/sddm: Removed (added to Slackware).
  12452. system/sdl-jstest: Update README.
  12453. system/shake: Updated for version 1.0.
  12454. system/skim: Install bash-completion file to systemwide dir
  12455. system/slack-utils: Handle weird download filename.
  12456. system/slackrepo-hints: Added (hints for slackrepo).
  12457. system/slackrepo: Added (automated slackbuild builder)
  12458. system/slackroll: Updated for version v49.
  12459. system/slackyd: Add a fix for gcc >= 10.x.
  12460. system/sleepd: Fix 15.0 build.
  12461. system/sleuthkit: Disable Java support by default.
  12462. system/sleuthkit: Remove .la files.
  12463. system/sleuthkit: Updated for version 4.11.0.
  12464. system/slim: Add PAM support, fix for gcc >= 11.x, cleanups.
  12465. system/slmenu: Added (single line menu)
  12466. system/slpkg: Updated for version 3.9.2.
  12467. system/slpkg: Updated for version 3.9.3.
  12468. system/snapscreenshot: Remove (broken on modern kernels).
  12469. system/snapscreenshot: Updated for version 1.0.15.
  12470. system/snore: Added (sleep with visual feedback)
  12471. system/socketcand: Fix 15.0 build.
  12472. system/solarize-12x29-psf: Fix README.
  12473. system/solarize-12x29-psf: Remove template comment.
  12474. system/spacefm: Patch for glibc >= 2.28 and gcc >= 10.x.
  12475. system/speedcontrol: Updated download URL
  12476. system/speedcontrol: Updated maintainer email
  12477. system/spice-vdagent: Fix startup script.
  12478. system/spkg: Updated for version 1.4.
  12479. system/spl-solaris: Fix support for PRINT_PACKAGE_NAME
  12480. system/spl-solaris: Removed (fails to build, unused).
  12481. system/spman: Install bash-completion file to systemwide dir
  12482. system/spman: Update DEP.
  12483. system/sqlcipher: Remove .la files.
  12484. system/sqldiff: Remove NUMJOBS.
  12485. system/sqldiff: Use 15.0 download link.
  12486. system/sqldiff: updated for version 3.35.5
  12487. system/sqldiff: updated for version 3.36.0
  12488. system/sqldiff: updated for version 3.37.2
  12489. system/sqlite2: Removed.
  12490. system/ssdeep: Remove .la files.
  12491. system/st: Fix ncurses conflict; many enhancements.
  12492. system/st: Update README.
  12493. system/statifier: Fix README.
  12494. system/statifier: Remove template comment.
  12495. system/steamos-xpad: Fix support for PRINT_PACKAGE_NAME
  12496. system/steamos-xpad: Respect KERNEL.
  12497. system/steghide: Enable patches for 15.0.
  12498. system/stress-ng: Download URL updated.
  12499. system/stress-ng: Fix download URL.
  12500. system/stress-ng: Updated for version 0.12.07.
  12501. system/stressapptest: Added (system stress test).
  12502. system/suckless-tools: Reflow README.
  12503. system/suhosin: Removed (not compatible with newer PHP).
  12504. system/sunflower: Update DEP.
  12505. system/sunflower: Update for 0.5.63
  12506. system/swun: Added qt4 dependency.
  12507. system/sysdig: Fix offline build.
  12508. system/sysdig: Fix support for PRINT_PACKAGE_NAME
  12509. system/sysdig: Updated for version 0.28.0.
  12510. system/sysdig: Use correct github URL.
  12511. system/syslog-ng: Remove .la files.
  12512. system/syslog-ng: Updated for version 3.35.1.
  12513. system/system76-io-dkms: Add douninst.sh.
  12514. system/system76-power: Fix github tarball handling.
  12515. system/system76-power: Fix one of the 63 download URLs.
  12516. system/system76-power: Fix to respect Content-disposition header.
  12517. system/system76-power: Updated for version 1.1.18.
  12518. system/system76-power: Updated for version 1.1.20.
  12519. system/t1utils: Removed (added to Slackware as part of texlive).
  12520. system/tabbed: Fix README.
  12521. system/tabbed: Remove template comment.
  12522. system/tagainijisho: Updated for version 1.1.90.
  12523. system/tagainijisho: Updated for version 1.1.92.
  12524. system/tagainijisho: Updated for version gita84d46b.
  12525. system/tagtools: Mirror download URL.
  12526. system/targetcli-fb: Update DEP.
  12527. system/tbsm: Update for 0.6
  12528. system/tc-play: Fix 15.0 build.
  12529. system/telegraf: Updated for version 1.18.2
  12530. system/telegraf: Updated for version 1.18.3
  12531. system/telegraf: Updated for version 1.19.0
  12532. system/telegraf: Updated for version 1.19.1
  12533. system/telegraf: Updated for version 1.19.2
  12534. system/telegraf: Updated for version 1.19.3
  12535. system/telegraf: Updated for version 1.20.0
  12536. system/telegraf: Updated for version 1.20.2
  12537. system/telegraf: Updated for version 1.20.4
  12538. system/telegraf: Updated for version 1.21.1
  12539. system/telegraf: Updated for version 1.21.2
  12540. system/telegraf: Updated for version 1.21.3
  12541. system/telegraf: Updated for version 1.21.4
  12542. system/termenu: Updated for version 1.2.5.
  12543. system/terminator: Added the new dependency vte2.
  12544. system/terminology: Align with new template.
  12545. system/terminology: Fix ninja brokenness.
  12546. system/terminology: Updated for version 1.12.1.
  12547. system/termite: Removed (obsoleted by alacritty).
  12548. system/termsaver: Updated for version 0.4.
  12549. system/the_silver_searcher: Fix for gcc >= 10.x.
  12550. system/the_silver_searcher: New maintainer.
  12551. system/thermald: Updated for version 2.4.4.
  12552. system/thermald: Updated for version 2.4.5.
  12553. system/thermald: Updated for version 2.4.6.
  12554. system/thermald: Updated for version 2.4.8.
  12555. system/tilda: Fixed dep info
  12556. system/tilix: Fixed dep info
  12557. system/tilix: Removed (ftbfs, no maintainer).
  12558. system/tinyterm: Added the new dependency vte2.
  12559. system/tinyterm: Reflow README, relicense as WTFPL.
  12560. system/tinyvm: Removed (no dependees).
  12561. system/tm: Make noarch, fix zsh completion.
  12562. system/tmuxp: Update DEP.
  12563. system/tmuxp: Updated for version 1.9.4.
  12564. system/tomb: Fixed dep info
  12565. system/tp_smapi: Fix support for PRINT_PACKAGE_NAME
  12566. system/tpc: Fix 15.0 build.
  12567. system/tpe-kmod: Fix download URL.
  12568. system/tpe-kmod: Fix support for PRINT_PACKAGE_NAME
  12569. system/tpe-kmod: Removed (ftbfs, no upstream activity).
  12570. system/tracker: Updated for version 3.2.1.
  12571. system/trackfs: Fix README.
  12572. system/trackfs: remove template comment.
  12573. system/trash: Fix download URL.
  12574. system/trashy: Fix .info.
  12575. system/trashy: Updated for version 2.5.1
  12576. system/triggerhappy: Expand/fix README.
  12577. system/trmaid: Update DEP.
  12578. system/trmaid: Update DEP.
  12579. system/ttf-aller: Fix download URL.
  12580. system/ttf-ancient-fonts: Remove template comment.
  12581. system/ttf-arphic-uming: Updated for version 0.2.20080216.2.
  12582. system/ttf-coda: Fix download URL.
  12583. system/ttf-console-fonts: Remove template comment.
  12584. system/ttf-ipaex: Fix download URL.
  12585. system/ttyrec: Patch for the newer glibc and fix the CFLAGS.
  12586. system/twapake: Fix download URL.
  12587. system/twin: Fix 15.0 build.
  12588. system/u3-tool: Updated for version 1.0.
  12589. system/uae: Fix 15.0 build.
  12590. system/udftools: Updated for version 2.3.
  12591. system/udiskie: Update DEP.
  12592. system/uhd: Fix github tarball handling.
  12593. system/uhd: Fixed python2-cheetah dependency.
  12594. system/uhd: Update DEP.
  12595. system/uhd: Updated for version 003_009_007.
  12596. system/uhd: Updated for version 4.1.0.5.
  12597. system/unac: Fix download URL.
  12598. system/unac: Updated for version 1.8.0_9.
  12599. system/unetbootin: Switch to Qt5.
  12600. system/unetbootin: Updated for version 702.
  12601. system/unicode-character-database: Updated for version .
  12602. system/unigine-heaven-benchmark: Fixed broken link in /usr/bin
  12603. system/unigine-valley-benchmark: Fixed broken link in /usr/bin
  12604. system/unionfs-fuse: updated for version 2.2
  12605. system/unison: Updated for version 2.51.4.
  12606. system/unison: Updated for version 2.51.5.
  12607. system/univga-font: Remove template comment, use https URLs.
  12608. system/unshield: Updated for version 1.4.3.
  12609. system/unshieldv3: Added (extract v3 InstallShield files).
  12610. system/untex: Fix download URL.
  12611. system/upass: python3-urwid -> python-urwid in REQUIRES.
  12612. system/uptimed: Remove .la files.
  12613. system/usbguard: Fixed dep info
  12614. system/usbguard: REQUIRES protobuf => protobuf3.
  12615. system/usbguard: Remove .la files.
  12616. system/usbguard: Update README.
  12617. system/usbmon: Remove template comment.
  12618. system/usbredir: Remove la files.
  12619. system/usbredir: Updated for version 0.12.0.
  12620. system/usbredir: Updated for version 0.9.0.
  12621. system/usbview: Updated for version 2.1
  12622. system/usbview: Updated for version 3.0
  12623. system/usermin: Updated for version 1.830.
  12624. system/usermin: Updated for version 1.832.
  12625. system/usermin: Updated for version 1.833.
  12626. system/usermin: Updated for version 1.834.
  12627. system/usermin: Updated for version 1.840.
  12628. system/v4l2loopback: Updated email
  12629. system/v4l2loopback: Use KERNEL env var.
  12630. system/vcp: Fix README.
  12631. system/vcp: Fix build on -current.
  12632. system/veracrypt: Updated for version 1.25.7.
  12633. system/vhba-module: Disable -Werror.
  12634. system/vhba-module: Fix support for PRINT_PACKAGE_NAME
  12635. system/vhba-module: Updated for version 20210418.
  12636. system/vhba-module: Updated for version 20211023.
  12637. system/vhba-module: Updated for version 20211218.
  12638. system/vice: Fix for gcc >= 10.x.
  12639. system/vice: Updated for version 3.5.
  12640. system/vifm: Remove template comment.
  12641. system/vifm: Updated for version 0.11.
  12642. system/vinterm: Reflow README.
  12643. system/virt-manager: Fixed dep info
  12644. system/virt-manager: Updated for version 3.2.0.
  12645. system/virt-viewer: Support alternatives for ninja
  12646. system/virt-viewer: Updated for version 10.0.
  12647. system/virtualbox-addons: Fake gcc-9.x support.
  12648. system/virtualbox-addons: Updated for version 6.1.26
  12649. system/virtualbox-addons: Updated for version 6.1.28
  12650. system/virtualbox-addons: Updated for version 6.1.32
  12651. system/virtualbox-addons: Updated maintainer email
  12652. system/virtualbox-extension-pack: Revert commit 8280900.
  12653. system/virtualbox-extension-pack: Update for version 6.1.32
  12654. system/virtualbox-extension-pack: Updated for version 6.1.18.
  12655. system/virtualbox-extension-pack: Updated for version 6.1.18.
  12656. system/virtualbox-extension-pack: Updated for version 6.1.22.
  12657. system/virtualbox-extension-pack: Updated for version 6.1.26.
  12658. system/virtualbox-extension-pack: Updated for version 6.1.28.
  12659. system/virtualbox-extension-pack: Updated for version 6.1.8.
  12660. system/virtualbox-extension-pack: Updated maintainer email
  12661. system/virtualbox-kernel-addons: Fix support for PRINT_PACKAGE_NAME
  12662. system/virtualbox-kernel-addons: Removed.
  12663. system/virtualbox-kernel-addons: Updated for version 5.2.8.
  12664. system/virtualbox-kernel-addons: Updated maintainer email
  12665. system/virtualbox-kernel: Drop support for non-hardened virtualbox
  12666. system/virtualbox-kernel: Fix support for PRINT_PACKAGE_NAME
  12667. system/virtualbox-kernel: Revert commit 14f2c05.
  12668. system/virtualbox-kernel: Updated for version 6.1.18.
  12669. system/virtualbox-kernel: Updated for version 6.1.18.
  12670. system/virtualbox-kernel: Updated for version 6.1.22.
  12671. system/virtualbox-kernel: Updated for version 6.1.26.
  12672. system/virtualbox-kernel: Updated for version 6.1.28.
  12673. system/virtualbox-kernel: Updated for version 6.1.32
  12674. system/virtualbox-kernel: Updated for version 6.1.8.
  12675. system/virtualbox-kernel: Updated maintainer email
  12676. system/virtualbox: Fix kernel module detection on 'rc.vboxdrv start'
  12677. system/virtualbox: Revert commit b41b5db.
  12678. system/virtualbox: Script simplifications and python3 support
  12679. system/virtualbox: Updated for version 6.1.18.
  12680. system/virtualbox: Updated for version 6.1.18.
  12681. system/virtualbox: Updated for version 6.1.22.
  12682. system/virtualbox: Updated for version 6.1.26.
  12683. system/virtualbox: Updated for version 6.1.28, detect python 3.10.
  12684. system/virtualbox: Updated for version 6.1.32
  12685. system/virtualbox: Updated for version 6.1.8.
  12686. system/virtualbox: Updated maintainer email
  12687. system/vlock: Remove template comment.
  12688. system/vms: Fix support for PRINT_PACKAGE_NAME
  12689. system/vms: Fixed dep info
  12690. system/wacomtablet: Removed (added to Slackware).
  12691. system/wdiff: Add --enable-experimental.
  12692. system/wdiff: Fix README.
  12693. system/webmin: Updated for version 1.979.
  12694. system/webmin: Updated for version 1.981.
  12695. system/webmin: Updated for version 1.982.
  12696. system/webmin: Updated for version 1.983.
  12697. system/webmin: Updated for version 1.984.
  12698. system/webmin: Updated for version 1.990.
  12699. system/whowatch: Fix 15.0 build, download URL.
  12700. system/wiimms-iso-tools: Fix 15.0 build.
  12701. system/wine-staging: Fixed dep info
  12702. system/wine-staging: Updated for version 6.18.
  12703. system/wine-staging: Updated for version 7.1.
  12704. system/wine: Fixed dep info in README
  12705. system/wine: Updated for version 6.0.1.
  12706. system/wine: Updated for version 7.0.
  12707. system/winusb: Fix 15.0 build and wx 2/3 stupidity.
  12708. system/wipe: Removed (no maintainer)
  12709. system/wmgtemp: Minor fixes.
  12710. system/worker: Updated for version 4.10.0.
  12711. system/worker: Updated for version 4.8.1.
  12712. system/worker: Updated for version 4.9.0
  12713. system/wqy-microhei-font-ttf: Fix fontconfig syntax.
  12714. system/xar: Added (eXtensible ARchiver)
  12715. system/xarchiver: Updated email
  12716. system/xautomation: Minor fixes.
  12717. system/xboxdrv-linux: Fix 15.0 build.
  12718. system/xboxdrv-linux: Handle either download filename.
  12719. system/xchm: Don't depend on wx-config symlink.
  12720. system/xdg-dbus-proxy: Added (D-Bus proxy).
  12721. system/xen: Updated for version 4.15.0.
  12722. system/xen: Updated for version 4.15.1.
  12723. system/xen: XSA 385-390 update.
  12724. system/xf86-video-qxl: Patch for the newer libdrm.
  12725. system/xfburn: Fixed dep info
  12726. system/xfburn: Updated for version 0.6.2.
  12727. system/xfe: Updated for version 1.44.
  12728. system/xidel: remove template comment.
  12729. system/xinput_calibrator: Fix tarball filename mess.
  12730. system/xldconfig: Fix download URL.
  12731. system/xnp2: Patched for gcc >= 6.x.
  12732. system/xonsh: Fixed dep info
  12733. system/xonsh: Updated for version 0.11.0.
  12734. system/xosd: Remove .la files.
  12735. system/xpipe: Added (split input and feed it into the given utility)
  12736. system/xwiimote: Remove .la files.
  12737. system/yakuake: Removed (added to Slackware).
  12738. system/yeahconsole: Update man page.
  12739. system/yelp-tools: Support alternatives for ninja
  12740. system/yelp-tools: Updated for version 40.0.
  12741. system/yelp-tools: Updated for version 41.0.
  12742. system/yelp-xsl: Remove NUMJOBS.
  12743. system/yelp-xsl: Update DEP.
  12744. system/yelp-xsl: Updated for version 40.2.
  12745. system/yelp-xsl: Updated for version 41.1.
  12746. system/yelp-yelp: Updated for version 40.0.
  12747. system/yelp: Remove .la files.
  12748. system/yelp: Update DEP.
  12749. system/yelp: Updated for version 40.0.
  12750. system/yelp: Updated for version 40.2.
  12751. system/yelp: Updated for version 40.3.
  12752. system/yelp: Updated for version 40.3.
  12753. system/yelp: Updated for version 41.2.
  12754. system/yelp: Updated for version 41.2.
  12755. system/zarfy: Fix 15.0 build.
  12756. system/zerofree: Removed (added to Slackware).
  12757. system/zfs-auto-snapshot: Fix github tarball handling.
  12758. system/zfs-on-linux: Fix support for PRINT_PACKAGE_NAME
  12759. system/zfs-on-linux: Updated for version 2.1.0.
  12760. system/zfs-on-linux: Updated for version 2.1.2.
  12761. system/zfs-on-linux: Use KERNEL env var.
  12762. system/zookeeper: Fix download URL.
  12763. system/zpaq: Fixed dep info
  12764. system/zstd: Removed (added to Slackware).
  12765. system/zuluCrypt: Removed (no maintainer)
  12766. system/zulyCrypt: Update DEP.
  12767. thirdparty/paho-mqtt: Added
  12768. various: Fixed man-db dep references
  12769. various: Fixed texlive notes in README files
  12770. various: Kill dvdauthor dep mentions
  12771. various: Kill lots of python3 dep mentions
  12772. various: Kill lz4 dep mention
  12773. various: Kill now-in-Slackware Mako dep
  12774. various: Kill perl/* deps no longer needed
  12775. various: Kill pygobject3-python3 dep mention
  12776. various: Kill python-chardet dep mention
  12777. various: Kill python-requests dep mention
  12778. various: Kill python-urllib3 dep mentions
  12779. various: Kill python3-Cython dep mentions
  12780. various: Kill python3-six dep mentions
  12781. various: Kill xulrunner dep mention
  12782. various: Tweak haveged dep mentions
  12783. various: Use zulu jdk builds for REQUIRES.
  12784. various: kill idna dep mentions
  12785. various: kill now-in-Slackware Pygments dep
  12786. various: kill perl/Net-SSLeay dep notes
  12787. various: kill wayland dep mentions
  12788. +--------------------------+