ChangeLog.txt 548 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543
  1. Sat Apr 23 18:49:13 UTC 2022
  2. academic/FreeFem: Updated for version 4.11.
  3. academic/avogadroapp: Added (graphic user interface of Avogadro 2)
  4. academic/avogadrolibs: Added (Libraries for Avogadro 2)
  5. academic/dakota: Added documentation.
  6. academic/gcompris-qt: Updated for version 2.4.
  7. academic/getfem: Added (finite element modeling software)
  8. academic/gwyddion: Updated for version 2.60.
  9. academic/molequeue: Updated for version 0.9.0.
  10. academic/petsc: Added (toolkit for scientific computation).
  11. academic/rpy2: Updated to version 3.5.1.
  12. audio/JDSP4Linux: Added (Pipewire system equalizer).
  13. audio/ncmpcpp: Updated for version 0.9.2.
  14. audio/opustags: Added (View and edit Ogg Opus comments.)
  15. desktop/Tela-icon-theme: Fix github tarball handling.
  16. desktop/anki: Fix DOWNLOAD url.
  17. desktop/bottles: Updated for version 2022.4.14.trento.2.
  18. desktop/foot: Added (native wayland terminal emulator)
  19. desktop/fuzzel: Added (wayland native application launcher)
  20. desktop/qtile: Updated README.
  21. desktop/yambar: Added (status panel for X11 and Wayland)
  22. development/Catch: Fix docs; make self-test optional.
  23. development/ghex: Update for 42.1
  24. development/jupyter-notebook: Updated for version 6.4.11.
  25. development/jupyter_core: Updated for version 4.10.0.
  26. development/jupyterlab_pygments: Revert to version 0.1.2.
  27. development/kotlin: Updated for version 1.6.21.
  28. development/mongodb-compass: Updated for version 1.31.2.
  29. development/mysql-workbench: Add upstream patch.
  30. development/neovim: Updated for version 0.7.0.
  31. development/openjdk7: Fix script.
  32. development/openjdk8: Updated for version 8u322.
  33. development/portaudio: new maintainer.
  34. development/protobuf3: Updated for version 3.20.0.
  35. development/valgrind: Updated for version .
  36. games/0ad-data: Updated for version 0.0.25b.
  37. games/0ad: Updated for version 0.0.25b.
  38. games/lutris: Updated to 0.5.10
  39. games/mgba: Updated for version 0.9.3.
  40. games/nestopia: Updated for version 1.51.1.
  41. games/ppsspp: Updated for version 1.12.3.
  42. gis/google-earth: Use correct VERSION.
  43. gis/python3-pyproj: Updated for version 3.3.1
  44. graphics/vuescan: Updated for version 9.7.83.
  45. ham/qt-dab: Added (Software DAB Decoder)
  46. libraries/Botan: Fix docs.
  47. libraries/CCfits: Fix docs.
  48. libraries/CGAL: Fix man page location.
  49. libraries/DevIL: Fix docs.
  50. libraries/FormEncode: Fix docs.
  51. libraries/GLee: Fix docs.
  52. libraries/Geraldo: Fix docs.
  53. libraries/HawkNL: Fix symlinks, rm static lib.
  54. libraries/Impacket: Fix docs.
  55. libraries/SDL_gfx: Fix docs.
  56. libraries/VitaMTP: Fix docs.
  57. libraries/antlr4: Updated for version 4.10.1.
  58. libraries/avr-libc: Fix PRINT_PACKAGE_NAME.
  59. libraries/barry: Fix docs.
  60. libraries/belle-sip: Fix docs.
  61. libraries/bullet: Updated for version 3.22b.
  62. libraries/bzrtp: Fix docs.
  63. libraries/cloog: Fix PRINT_PACKAGE_NAME.
  64. libraries/clutter-gtk: Added (GTK+ Integration library for Clutter).
  65. libraries/clutter: Added (OpenGL based interactive canvas library).
  66. libraries/cogl: Fix build with multiple jobs.
  67. libraries/compface: Strip libraries.
  68. libraries/ctemplate: Strip libraries.
  69. libraries/edelib: Fix docs.
  70. libraries/fcft: Added (font loading and glyph rasterization library)
  71. libraries/fcgi: Fix docs.
  72. libraries/ffms2: Fix docs.
  73. libraries/fmt: Updated for version 8.1.1.
  74. libraries/gconfmm: Fix docs.
  75. libraries/gdata: Fix docs.
  76. libraries/genshi: Strip library.
  77. libraries/gf2x: Fix docs, mention SSE2 in README.
  78. libraries/giblib: Fix docs.
  79. libraries/gmtk: Fix docs.
  80. libraries/goffice0.8: Fix docs.
  81. libraries/goffice: Fix docs.
  82. libraries/grx: Fix docs, disable parallel builds.
  83. libraries/gsm: Fix build.
  84. libraries/gsound: Fix docs.
  85. libraries/gspell: Fix PRINT_PACKAGE_NAME.
  86. libraries/gtk-sharp: Fix docs.
  87. libraries/gtkhtml: Fix doc, doinst.sh.
  88. libraries/htslib: Fix MD5SUM.
  89. libraries/iniparser: Use SLKCFLAGS, fix shared lib, rm static.
  90. libraries/jbigkit: Strip binaries.
  91. libraries/libEMF: Remove .la files.
  92. libraries/libasr: Fix man page permissions.
  93. libraries/libchamplain: Added (C library).
  94. libraries/libcitadel: Strip library.
  95. libraries/libclaw: Fix docs, rm static libs.
  96. libraries/libcoap: Make API docs optional.
  97. libraries/libcryptui: Add doinst.sh, fix icons.
  98. libraries/libdatrie: Fix docs.
  99. libraries/libdbi-drivers: fixup the postgres flags
  100. libraries/libdbus-c++: Fix docs.
  101. libraries/libdca: Fix docs, broken symlink.
  102. libraries/libdca: New maintainer.
  103. libraries/libeatmydata: Fix PRINT_PACKAGE_NAME.
  104. libraries/libetpan: Fix docs.
  105. libraries/libfastjson: Fix docs.
  106. libraries/libgaminggear: Fix docs.
  107. libraries/libgnomecups: Strip library.
  108. libraries/libgringotts: Fix docs.
  109. libraries/libhtp: Fix docs.
  110. libraries/libiptcdata: Fix docs.
  111. libraries/libircclient: Fix PRINT_PACKAGE_NAME.
  112. libraries/libkate: Remove static lib, fix docs.
  113. libraries/libmaa: Strip binaries.
  114. libraries/libmimic: Fix docs.
  115. libraries/libmms: Fix docs.
  116. libraries/libmspack: Fix docs.
  117. libraries/liboauth: Strip lib, fix PRINT_PACKAGE_NAME.
  118. libraries/liboglappth: Fix docs.
  119. libraries/libopenshot-audio: Make API doc optional.
  120. libraries/liborigin: Fix docs.
  121. libraries/libotf: Fix docs.
  122. libraries/libpar2: Fix docs.
  123. libraries/libpgf: Remove dos2unix dep; fix docs.
  124. libraries/libprelude: Strip binaries.
  125. libraries/librcd: Fix docs.
  126. libraries/libshout: New maintainer.
  127. libraries/libsieve: Strip binaries, fix tarball handling.
  128. libraries/libsmdev: Fix docs.
  129. libraries/libsoup3: Fix PRINT_PACKAGE_NAME.
  130. libraries/libticables2: Strip binaries.
  131. libraries/libticonv: Strip lib, fix docs.
  132. libraries/libtorrent-rasterbar: Fix PRINT_PACKAGE_NAME, strip.
  133. libraries/libtorrent: Fix docs.
  134. libraries/libtpms: Added (library for emulating TPM 1.2 and 2.0)
  135. libraries/libuchardet: Fix docs.
  136. libraries/libuinputplus: Fix PRINT_PACKAGE_NAME.
  137. libraries/libxfcegui4: Fix docs.
  138. libraries/libxlsxwriter: Fix docs.
  139. libraries/libxmi: Fix docs.
  140. libraries/libxmp: Fix PRINT_PACKAGE_NAME.
  141. libraries/libxnvctrl: Strip shared libary.
  142. libraries/live555: Update maintainer.
  143. libraries/lksctp-tools: Fix docs.
  144. libraries/log4shib: Fix conflict with graphviz.
  145. libraries/lua-luv: Updated for version 1.43.0_0.
  146. libraries/lxqt-notificationd: Fix .desktop, add doinst.sh.
  147. libraries/mbedtls: Fix PRINT_PACKAGE_NAME.
  148. libraries/meanwhile: Fix docs.
  149. libraries/msgpack-c: Fix docs.
  150. libraries/mujs: Fix docs.
  151. libraries/mxml: Fix docs, rm static lib.
  152. libraries/mysql-connector-c++: Fix docs.
  153. libraries/mysqltcl: Fix docs.
  154. libraries/nlohmann_json: Added (JSON for Modern C++)
  155. libraries/nlopt: Fix (gzip) man pages.
  156. libraries/ogre: Fix docs.
  157. libraries/onevpl: Fix docs.
  158. libraries/opencl-amd: Fix package filename, docs.
  159. libraries/paho-mqtt: Fix PRINT_PACKAGE_NAME.
  160. libraries/pangox-compat: Fix docs.
  161. libraries/pidgin-mra: Fix icon permissions.
  162. libraries/podofo: Fix PRINT_PACKAGE_NAME.
  163. libraries/progressbar: Fix PRINT_PACKAGE_NAME.
  164. libraries/ptypes: Fix docs.
  165. libraries/qt3: Fix docs, doinst, symlink.
  166. libraries/qwt: Don't build examples by defalt.
  167. libraries/rapidjson: Fix docs.
  168. libraries/spdlog: Strip binaries.
  169. libraries/tDOM: Fix tarball handling.
  170. libraries/tclap: Make API docs optional.
  171. libraries/tcllib: Fix docs.
  172. libraries/tllist: Added (typed linked list c header file)
  173. libraries/tlsh: Fix docs.
  174. libraries/totem-pl-parser: Strip binaries.
  175. libraries/udunits: Fix docs.
  176. libraries/ulfius: Fix docs.
  177. libraries/vdk: Fix man page.
  178. libraries/vigra: Fix docs.
  179. libraries/wcslib: Fix permissions, rm static lib.
  180. libraries/webkit2gtk4.1: Fix PRINT_PACKAGE_NAME.
  181. libraries/webkit2gtk: Fix PRINT_PACKAGE_NAME.
  182. libraries/wxGTK3: Make API docs optional.
  183. libraries/xapian-bindings: Do not include /tmp in the package.
  184. libraries/xforms: Strip demos.
  185. libraries/xlt: Fix docs.
  186. libraries/xmpppy: Fix docs.
  187. libraries/xview: Fix docs.
  188. misc/fcitx-mozc: Updated for version 2.26.4220.102.1.
  189. misc/simh-classic: Gzip patch to preserve line endings.
  190. multimedia/haruna: Updated for version 0.8.0.
  191. multimedia/openshot: Fix doinst.sh, stop spamming /usr.
  192. multimedia/zvbi: Update maintainer. Template fixes.
  193. network/axel: Updated for version 2.17.11.
  194. network/brave-browser: Fix BUILD variable usage.
  195. network/dropbear: Updated for version 2022.82.
  196. network/element-desktop: Updated for version 1.10.10.
  197. network/franz: Updated for version 5.9.2.
  198. network/hostapd: Updated for version 2.10.
  199. network/isync: Updated for version 1.4.4.
  200. network/mailspring: Updated for version 1.10.3
  201. network/microsoft-edge: Update for version 100.0.1185.50.
  202. network/mrtg: Update maintainer email
  203. network/signal-desktop: Updated for version 5.40.1.
  204. network/skypeforlinux: Updated for version 8.83.0.408.
  205. network/sslscan: Updated for version 2.0.13.
  206. network/strongswan: Updated for version 5.9.5.
  207. network/teamviewer: Added (remote control application).
  208. network/telegram: Updated for version 3.7.0.
  209. network/zoom-linux: Updated for version 5.10.3.2778.
  210. office/MasterPDFEditor: Updated for version 5.8.49.
  211. office/etmtk: Updated for version 3.2.39.
  212. office/gnucash: Update DEP.
  213. office/hunspell-en: Update for 2020.12.07 (+new maintainer)
  214. office/pdfarranger: moved from python; adapted doinst.sh for icons
  215. office/tudu: Updated for version 0.10.4.
  216. python/objgraph: Added (Python Module).
  217. python/pikepdf: Updated to version 5.1.2.
  218. python/python-xkbcommon: Fix github tarball handling.
  219. python/python3-pytest-cov: Added (coverage plugin for pytest)
  220. ruby/ruby-build: Updated for version 20220324.
  221. ruby/sequel: Updated for version 5.55.0.
  222. system/brlaser: Added (CUPS driver for Brother laser printers).
  223. system/efiboots: Added (GTK3 frontend for efibootmgr).
  224. system/evolution-data-server: Fix script.
  225. system/fish: Remove /usr/share/doc, fix doinst.sh.
  226. system/fswatch: Updated for version 1.16.0.
  227. system/mpollux-digisign-client: Added (smart card middleware).
  228. system/netdata: Updated for version 1.34.1.
  229. system/osquery-bin: Updated for version 5.2.3.
  230. system/pcem: update to version f4a1ab9.20220418
  231. system/prometheus: Updated for version 2.35.0.
  232. system/scdoc: Updated for version 1.11.2.
  233. system/swapinzram: Added (Configure a swap block device in RAM).
  234. system/trash-cli: Update for 0.22.4.16 (+new maintainer)
  235. system/trousers: Added (TSS implementation by IBM)
  236. system/winetricks: Update for 20220411 (+new maintainer)
  237. system/xen: Updated for version 4.16.1.
  238. system/yelp: Update README.
  239. +--------------------------+
  240. Sat Apr 16 05:25:03 UTC 2022
  241. academic/R: Updated for version 4.1.3.
  242. academic/bcftools: Updted to version 1.15.1
  243. academic/bibletime: Updated for version 3.0.2.
  244. academic/openboard: Fix build for current.
  245. academic/rpy2: Updated to version 3.5.0
  246. academic/samtools: Updated to version 1.15.1
  247. academic/sword-data-kjv: Updated for version 1.9.0_1.
  248. academic/sword: Updated for version 1.9.0.
  249. academic/xflr5: Updated for version 6.54.
  250. academic/xiphos: Fix build.
  251. audio/rplay: Fix /usr/include permissions.
  252. audio/sayonara-player: Updated for version 1.7.0_stable3.
  253. desktop/Matcha-gtk-theme: Added (flat design theme).
  254. desktop/Matcha-gtk-theme: Fix Github URL.
  255. desktop/Tela-icon-theme: Added (flat icon theme).
  256. desktop/bemenu: Add missing scdoc dependency.
  257. desktop/bottles: Added (easily manage wineprefix using environments)
  258. desktop/flatpak: Updated for version 1.12.7.
  259. desktop/sway: Added (wayland i3 clone)
  260. desktop/xwallpaper: Added (X wallpaper utility).
  261. development/THE: Updated for version 3.3RC8.
  262. development/dotnet-runtime-3.1: Update for version 3.1.24.
  263. development/dotnet-runtime-5.0: Update for version 5.0.16.
  264. development/dotnet-runtime-6.0: Update for version 6.0.4.
  265. development/dotnet-sdk-3.1: Update for version 3.1.418.
  266. development/dotnet-sdk-5.0: Update for version 5.0.407.
  267. development/dotnet-sdk-6.0: Update for version 6.0.202.
  268. development/erlang-otp: Strip binaries.
  269. development/fpc: Clean up /usr/bin dir.
  270. development/github-cli: Updated for version 2.8.0
  271. development/gnustep-base: Strip binaries.
  272. development/google-go-lang: Updated for version 1.17.9.
  273. development/gtest: Fix docs, shared lib perms.
  274. development/hugo: Updated for version 0.97.0.
  275. development/jupyter-ipykernel: Update for 6.13.0
  276. development/jupyter_client: Update for 7.2.2
  277. development/jupyterlab_pygments: Update for 0.2.0
  278. development/kotlin: Updated for version 1.6.20.
  279. development/lazarus: Fix PRINT_PACKAGE_NAME, doinst, docs, symlink.
  280. development/micro: Fix installing doinst.sh.
  281. development/mongodb-compass: Updated for version 1.31.1.
  282. development/nodejs: Updated for version 17.9.0.
  283. development/ocaml: Fix docs.
  284. development/rr: Added (Record and Replay Framework).
  285. development/rstudio-desktop: Fix github tarball handling.
  286. development/rstudio-desktop: Use zulu-openjdk8.
  287. development/vscode-bin: Updated for version 1.66.1.
  288. games/ags: Strip binary.
  289. games/devilutionx: Fix github tarball handling.
  290. games/freeciv: updated for version 3.0.1
  291. graphics/OpenVSP: Add missing dependency fltk.
  292. graphics/fontforge: Fix doc location.
  293. graphics/mangohud: Fix github tarball handling.
  294. graphics/tuxpaint-stamps: Updated for version 2021.11.25.
  295. libraries/PDCurses: Remove file libpdcurses-x11.pc.
  296. libraries/QtUsb: Fix /usr/include permissions.
  297. libraries/adns: Fix empty package.
  298. libraries/aspnetcore-runtime-3.1: Update for version 3.1.24.
  299. libraries/aspnetcore-runtime-5.0: Update for version 5.0.16.
  300. libraries/aspnetcore-runtime-6.0: Update for version 6.0.4.
  301. libraries/cogl: Added (3D Graphics API).
  302. libraries/confuse: Fix docs.
  303. libraries/cppzmq: Add missing Catch dependency.
  304. libraries/htslib: Updted to version 1.15.1
  305. libraries/iddawc: Updated for version 1.1.2.
  306. libraries/lablgtk: Fix docs.
  307. libraries/libaal: Fix docs.
  308. libraries/libbonoboui: Fix doc, .desktop.
  309. libraries/libchewing: /usr/share/info => /usr/info.
  310. libraries/libcsv: Fix docs.
  311. libraries/libfilezilla: Updated for version 0.37.1.
  312. libraries/libgdata: Added (online services APIs access)
  313. libraries/libgksu: Fix docs and .desktop.
  314. libraries/libgnomecanvas: Fix docs.
  315. libraries/libgweather: Added (weather library for GNOME)
  316. libraries/libgweather: Fix doinst.sh typo.
  317. libraries/libpaper: Updated for version 1.1.28build2.
  318. libraries/qmltermwidget: Fix build on 32bit.
  319. libraries/rhonabwy: Updated for version 1.1.4.
  320. libraries/seatd: Fix alternative tarball name handling.
  321. libraries/stormlib: Use correct github URL.
  322. libraries/ulfius: Updated for version 2.7.9.
  323. libraries/vcglib: Make noarch; put docs in doc dir.
  324. libraries/wxGTK3: Install generated HTML docs, not source.
  325. libraries/wxPython3: Fix doc and include permissions.
  326. libraries/wxPython: Fix permissions and .desktop.
  327. misc/cwiid: Fix /usr/include permissions.
  328. misc/gnome-mime-data: Make noarch, fix docs.
  329. misc/recode: Strip binaries.
  330. multimedia/intel-gmmlib: Fix github tarball handling.
  331. multimedia/intel-media-driver: Fix github tarball handling.
  332. multimedia/intel-media-sdk: Fix github tarball handling.
  333. multimedia/l-smash: Fix /installpkg-* mess.
  334. multimedia/plexmediaserver: Updated for v 1.25.9.5721_965587f64.
  335. multimedia/strawberry: Updated for version 1.0.4.
  336. network/argus-clients: Fix /usr/include permissions.
  337. network/avahi: No empty /run dir in package.
  338. network/brave-browser: Updated for version 1.37.116.
  339. network/clusterit: Fix ordering of info file entries.
  340. network/cni-plugins: Updated for version 1.1.1.
  341. network/dropbear: Don't overwrite /usr/bin/scp by default; fix docs.
  342. network/element-desktop: Added (secure + independent communication).
  343. network/filezilla: Updated for version 3.59.0.
  344. network/franz: Updated for version 5.9.1.
  345. network/haproxy: Updated for version 2.5.5.
  346. network/ipxnet: Fix /installpkg-* mess.
  347. network/nextcloud-desktop: Fix URL.
  348. network/nordvpn: Fix ARCH handling.
  349. network/prosody-mod-http-upload: Updated for version hg4906.
  350. network/snownews: Added (feed reader).
  351. network/tor-browser: Updated for version 11.0.10.
  352. network/zabbix_agentd: Updated for version 6.0.3.
  353. network/zabbix_java_gateway: Updated for version 6.0.3.
  354. network/zabbix_proxy: Updated for version 6.0.3.
  355. network/zabbix_server: Updated for version 6.0.3.
  356. office/fop: Update README, symlink.
  357. office/pandoc-bin: Updated for versoin 2.18.
  358. perl/perl-Curses: Fix docs.
  359. perl/perl-File-Slurp: Make noarch, fix docs.
  360. perl/perl-Locale-Codes: Fix slack-desc to be valid.
  361. python/click-log: Added (Python Module).
  362. python/click-threading: Added (add multithreading).
  363. python/debugpy: Fix MD5SUM.
  364. python/doit: Updated for version 0.35.0.
  365. python/dulwich: removed, unused and replaced by python3 version
  366. python/foolscap: Fix DOWNLOAD/HOMEPAGE.
  367. python/hg-git: updated for version 1.0.0, new maintainer
  368. python/nest_asyncio: Update for 1.5.5
  369. python/pdfarranger: Fix installing doinst.sh.
  370. python/pygsl: Updated for version 2.3.2.
  371. python/python-evdev: Update README.
  372. python/python-prometheus_client: Update for 0.14.1
  373. python/python-xkbcommon: Added (Python bindings for libxkbcommon)
  374. python/python2-automat: Add missing python-m2r dependency.
  375. python/python2-soupsieve: Fix docs.
  376. python/python3-automat: Add missing python-m2r dependency.
  377. python/python3-build: Added (Python module).
  378. python/python3-pep517: Added (API to call PEP 517 hooks).
  379. python/python3-pythran: Fix lib dir usage on 32bit.
  380. python/python3-pyzmq: Updated for version 22.3.0
  381. python/python3-soupsieve: Fix docs.
  382. python/python3-twisted: Updated for version 22.4.0.
  383. python/pywayland: Added (Python bindings for the libwayland library)
  384. python/pywlroots: Added (Python binding to the wlroots library)
  385. system/ccrypt: Fix docs.
  386. system/cdemu-client: Fix docs.
  387. system/cdemu-daemon: Fix docs.
  388. system/cdrkit: Fix docs.
  389. system/clamsmtp: Fix docs.
  390. system/cnijfilter2: Strip binaries.
  391. system/conky: Fix doinst.sh.
  392. system/courier-prime: Fix docs.
  393. system/cpu-g: Fix permissions.
  394. system/crashplan: Fix .desktop, respect environment ARCH.
  395. system/crmsh: Fix docs.
  396. system/crunch: Fix permissions.
  397. system/csh: Fix doinst.sh.
  398. system/culmus: Fix ARCH, docs.
  399. system/curlftpfs: Fix docs.
  400. system/cutecom: Fix build.
  401. system/d-feet: Fix doinst.sh, symlinks.
  402. system/dar: Fix docs.
  403. system/ddrescueview: Fix man page path.
  404. system/docker-cli: Strip binary.
  405. system/docker-machine-kvm: Strip binary.
  406. system/docker-proxy: Strip binary.
  407. system/dosbox-dev: Fix icon and .desktop.
  408. system/driconf: Fix icon path, add doinst.sh.
  409. system/dtach: Updated for version 0.9, strip binary.
  410. system/dvdisaster: Fix doinst.sh.
  411. system/evolution-data-server: Added (Desktop Information Store)
  412. system/execline: Fix docs.
  413. system/f3: Strip binary.
  414. system/fatsort: Fix man page permission.
  415. system/fileschanged: Don't spam /usr/lib.
  416. system/firejail: Add SlackBuild to doc dir.
  417. system/firetools: Add SlackBuild to doc dir.
  418. system/fish: Updated for version 3.4.0.
  419. system/font-manager: Fix doinst.sh.
  420. system/foomatic-db: Fix doc perms, PPD symlink.
  421. system/freeipmi: Fix /installpkg-* mess, symlinks.
  422. system/freeswitch: Fix docs.
  423. system/fuse-exfat: Fix doinst.sh.
  424. system/fuse-zip: Remove /usr/share/doc.
  425. system/fuseiso: Fix docs.
  426. system/gdmap: Fix .desktop.
  427. system/gencfs: Fix .desktop.
  428. system/gentoo: Fix icon and .desktop.
  429. system/geoclue: Add doinst.sh (glib schemas).
  430. system/gnome-commander: Fix icon and symlinks.
  431. system/gnome-online-accounts: Added (access GNOME online accounts)
  432. system/goaccess: Fix docs.
  433. system/hdapsd: Don't step on existing config file.
  434. system/heartbeat: Fix doinst.sh.
  435. system/hfsprogs: Strip binaries.
  436. system/iscan: Fix .desktop, symlink, docs.
  437. system/kafka: Fix symlink.
  438. system/lcdf-typetools: Added (Program for Font Manipulation).
  439. system/letsencrypt: Updated for version 1.26.0.
  440. system/libratbag: Strip binaries.
  441. system/lilyterm: Add doinst.sh, fix .desktop.
  442. system/lvm2-cluster: Strip library.
  443. system/lxsession: Fix docs.
  444. system/multipath-tools: Strip binaries, fix docs.
  445. system/musl: Updated for version 1.2.3.
  446. system/nagvis: Fix docs, symlinks.
  447. system/nss_ldap: Strip library, fix docs.
  448. system/openrazer-daemon: Updated for version 3.3.0.
  449. system/openrazer-kernel: Updated for version 3.3.0.
  450. system/opensc: Fix doinst.sh.
  451. system/pass-import: Fix man page dir.
  452. system/pcmanfm: Fix docs.
  453. system/pcsc-perl: Strip shared lib.
  454. system/pgbadger: updated for version 11.8, new maintainer
  455. system/pgsanity: updated for version 0.2.9, python3, new maintainer
  456. system/pommed-light: Strip binary.
  457. system/postgresql: Strip pg_config binary.
  458. system/qterminal: Fix .desktop and doinst.sh.
  459. system/qtgzmanager: Fix doinst.sh and .desktop.
  460. system/rabbitmq-server: Fix docs.
  461. system/rar2fs: Strip binaries.
  462. system/reiser4progs: Fix docs, static libs.
  463. system/restic: Updated for version 0.13.1
  464. system/runc: Strip binary.
  465. system/s3fs-fuse: Updated for version 1.91.
  466. system/s6-linux-init: Fix docs.
  467. system/s6-rc: Fix docs.
  468. system/s6: Fix docs.
  469. system/scalpel: Fix docs.
  470. system/scanmem: Updated for version 0.17, use python3.
  471. system/smem: updated for version 1.5, python3, new maintainer
  472. system/squashfuse: Added (FUSE filesystem to mount squashfs).
  473. system/telegraf: Updated for version 1.22.1
  474. system/ticpp: Fix /usr/include permissions.
  475. system/tmsu-bin: Only x86_64 is supported.
  476. system/unetbootin: Fix icon perms and .desktop.
  477. system/wmfsm: Fix docs.
  478. system/xorgxrdp: Fix docs.
  479. system/xrdp: Fix doinst.sh.
  480. system/yelp: Updated for version 42.1.
  481. system/yelp: Use WebKit 4.0 API.
  482. +--------------------------+
  483. Sat Apr 9 08:47:00 UTC 2022
  484. academic/Gabedit: Added (Graphical UI to computational chemistry)
  485. academic/Gridcoin-Research: Remove NUMJOBS per maillist
  486. academic/Gridcoin-Research: Upgraded for version 5.3.3.0
  487. academic/OpenFOAM: Updated for version 9.
  488. academic/aeskulap: Fix shebang.
  489. academic/amplifx: Fix download URL.
  490. academic/armadillo: Fix download URL, doc dir.
  491. academic/bedGraphToBigWig: Strip binary.
  492. academic/cap3: Fix docs.
  493. academic/convertall: Fix docs.
  494. academic/genpak: Fix docs.
  495. academic/scipy3: Updated for version 1.8.0. New maintainer.
  496. academic/suitesparse: Updated for version 5.11.0
  497. academic/xsimd: Added (C++ wrappers for SIMD intrinsics)
  498. audio/MusicMixer: Add doinst.sh.
  499. audio/aacplusenc: Fix docs.
  500. audio/alsa-tools: Remove bad symlinks, empty /etc dir.
  501. audio/alsamixergui: Fix docs and PRINT_PACKAGE_NAME.
  502. audio/amSynth: Fix doinst.sh.
  503. audio/ario: Fix docs.
  504. audio/atunes: Make arch-dependent (not noarch).
  505. audio/celt051: Fix docs.
  506. audio/celt: Fix docs.
  507. audio/qmmp-plugin-pack-qt5: Updated for version 1.5.3.
  508. audio/qmmp-qt5: Updated for version 1.5.4.
  509. audio/wireplumber: Added (policy manager for PipeWire).
  510. business/beancount: Fix docs.
  511. desktop/afterstep: Fix minor conflict with dpkg.
  512. desktop/arandr: Add doinst.sh to support .desktop file.
  513. desktop/areao43-icon-theme: Fix icon perms, don't write to $CWD.
  514. desktop/aweather: Add doinst.sh.
  515. desktop/bashrun2: Fix docs.
  516. desktop/bemenu: Gzip man page, use SLKCFLAGS.
  517. desktop/birdtray: Fix .desktop file.
  518. desktop/cairo-clock: Fix docs.
  519. desktop/crystalcursors: Fix permmissions, broken symlinks.
  520. desktop/mint-themes: Align to template.
  521. desktop/recoll: Updated for version 1.32.0.
  522. desktop/swaybg: Wrap README at 72 columns.
  523. desktop/xss-lock: fix cmake policy obsoloscence warning
  524. development/4th: Fix docs.
  525. development/Fennel: Updated for version 1.0.0.
  526. development/OpenJDK11: Fix github tarball handling.
  527. development/OpenJDK17: Fix github tarball handling.
  528. development/REDasm: Added (Cross Platform Dissassembler).
  529. development/amazon-corretto: Fix PRINT_PACKAGE_NAME support.
  530. development/apache-jmeter: Fix docs, symlinks.
  531. development/apache-log4cxx: Fix docs, rm static lib.
  532. development/arm-binutils: Fix docs.
  533. development/asem51: Clean up package.
  534. development/avr8-burn-o-mat: Make noarch, fix .desktop.
  535. development/bed: Remove some cruft.
  536. development/binwalk: Fix docs.
  537. development/bzr: Remove INSTALL from doc dir.
  538. development/cc65: Fix docs.
  539. development/ccl: Fix download URL.
  540. development/clojure: Added (Dynamic programming language for JVM).
  541. development/colordiff: Fix download URL, fix docs.
  542. development/cppcheck: Add doinst, fix translations.
  543. development/cppcheck: Fix icon size (65x65 => 64x64).
  544. development/cream: Fix icons, .desktop, doinst.sh.
  545. development/cunit: Fix docs.
  546. development/ghex: Update for 42.0; new maintainer
  547. development/ghidra: Added (Reverse Engineering Tool).
  548. development/jupyter-ipykernel: Update README
  549. development/jupyter-nbconvert: Fix REQUIRES.
  550. development/jupyter-nbformat: Updated for version 5.3.0.
  551. development/micro: Added (Text Editor).
  552. development/mmtf-cpp: Remove template comment.
  553. development/rstudio-desktop-legacy: Added (R Statistical IDE).
  554. development/rstudio-desktop: Updated for version 2022.02.1+461.
  555. development/ruff: install missing diagram.tcl file.
  556. development/squeak-vm: Added (squeak virtual machine).
  557. development/tiled: updated for version 1.8.4
  558. development/xmake: Added (cross-platform build utility based on Lua)
  559. games/FlightGear-data: Updated for version 2020.3.13.
  560. games/FlightGear: Updated for version 2020.3.13.
  561. games/SpaceZero: Fix doc permissions.
  562. games/adl: Fix doc permissions.
  563. games/ags: updated for version 3.5.1.17
  564. games/alienarena: Fix docs.
  565. games/antares: Fix .desktop file.
  566. games/antimicrox: Fix docs, doinst.sh.
  567. games/armagetronad: Fix docs, doinst.sh.
  568. games/arnold-cpc: Fix docs.
  569. games/arx-libertatis: Fix doinst.sh.
  570. games/assaultcube-reloaded: Strip binaries.
  571. games/atari800: Strip binary.
  572. games/bomberclone: Fix icon, .desktop.
  573. games/briquolo: Add SlackBuild to doc dir.
  574. games/cgames: Fix build.
  575. games/devilutionx: Added (Port of Diablo).
  576. games/edgar: Updated for version 1.35.
  577. games/epsxe: Add missing file.
  578. games/fceux: Updated for version 2.6.4.
  579. games/mupen64plus-video-gliden64: Added (Plugin for mupen64plus).
  580. games/protontricks: Added (winetricks wrapper for proton).
  581. games/steamtinkerlaunch: Added (Linux wrapper tool for Steam client)
  582. games/waterCloset: Update README.
  583. games/wesnoth: Update for version 1.16.2
  584. gis/gdal: fix download file.
  585. gis/google-earth: Fix MD5SUM.
  586. graphics/OpenVSP: Update DOWNLOAD URL.
  587. graphics/apitrace: Fix conflict with dpkg.
  588. graphics/birdfont: Added (free font editor).
  589. graphics/blender: Fix doc and icon dirs, strip python stuff.
  590. graphics/brlcad: Fix broken symlink in doc dir.
  591. graphics/fontforge: Fix doc dir and PRINT_PACKAGE_NAME.
  592. graphics/gscan2pdf: fix missing dependency
  593. graphics/hugin: Updated for version 2021.0.0.
  594. graphics/kColorPicker: Added (Qt based Color Picker).
  595. graphics/kImageAnnotator: Added (Tool for annotating images).
  596. graphics/ksnip: Added (Screenshot Tool).
  597. graphics/mangohud: Add missing patch.
  598. ham/ax25-apps: Strip binaries.
  599. ham/ax25-tools: Strip binaries.
  600. ham/baudline: Actually set ARCH.
  601. ham/libax25: Strip libraries.
  602. ham/tucnak: Install doinst.
  603. libraries/PDCurses: Updated for version 3.9.
  604. libraries/SimGear: Updated for version 2020.3.13.
  605. libraries/activemq-cpp: Fix docs, rm static lib.
  606. libraries/adns: Strip binaries.
  607. libraries/afflib: Strip library.
  608. libraries/allegro4: Use correct doc dir.
  609. libraries/alure: Remove empty /usr/share from package.
  610. libraries/aqbanking: Fix docs.
  611. libraries/cloog: Added (code generation library).
  612. libraries/cppzmq: Remove tabs from README.
  613. libraries/dcmtk: Fix docs.
  614. libraries/gnome-autoar: Added (Archives library)
  615. libraries/libmpdclient: Fix docs.
  616. libraries/libmsym: Align to template.
  617. libraries/libpano13: Updated for version 2.9.21.
  618. libraries/libxmlbird: Remove template comments.
  619. libraries/luadbi: Updated for version 0.7.2.
  620. libraries/miniupnnpc: Remove python3 check.
  621. libraries/qmltermwidget: Updated for version 20220109_6322802.
  622. libraries/qt4: Fix docs, icon, .desktop.
  623. libraries/seatd: Added (Seat management library and daemon).
  624. libraries/setproctitle: Remove python3 check.
  625. libraries/soci: Added (Database Access Library for C++).
  626. libraries/stormlib: Added (Library to handle MPQ).
  627. libraries/uhttpmock: Added (Library for Mocking web service API's).
  628. libraries/wimlib: Updated for version 1.13.5.
  629. libraries/wlroots: Added (wayland compositor library).
  630. libraries/ytnef: Added (Yerase's TNEF Stream Reader).
  631. misc/ardesia: Remove /usr/share/doc, don't write to /root.
  632. misc/asterixInspector: Strip binary, fix .desktop.
  633. misc/bbrun: Use SLKCFLAGS, strip binary.
  634. misc/bodr: Fix docs.
  635. misc/bsdsfv: COLOR=yes by default, fix docs.
  636. misc/dex: Fix slack-desc.
  637. misc/simh-classic (SimH Simulator).
  638. multimedia/aegisub: Add SlackBuild to doc dir.
  639. multimedia/audio-recorder: Fix template order (PRINT_PACKAGE_NAME).
  640. multimedia/avidemux: Fix man page.
  641. multimedia/bdtools: Fix docs.
  642. multimedia/bdtools: Fix docs.
  643. multimedia/haruna: Added (Video Player).
  644. network/Electrum: Updated for version 4.2.1.
  645. network/MEGAcmd: Fix slack-desc.
  646. network/aoetools: Fix permissions.
  647. network/arping: Fix docs.
  648. network/asciinema: Install docs to correct dir.
  649. network/awstats: Install SlackBuild in doc dir.
  650. network/axel: Strip binary.
  651. network/bollux: Make noarch, fix manpage perms.
  652. network/ckermit: Fix doc and man permissions.
  653. network/clipgrab: Fix docs.
  654. network/clipgrab: Fix download URL and docs.
  655. network/clusterit: Added (distributed shell)
  656. network/mailspring: Updated for version 1.10.2.
  657. network/microsoft-edge: Added (browser).
  658. network/neomutt: Updated for version 20220408.
  659. network/nextcloud-desktop: Fix Tarball.
  660. network/nextcloud-desktop: Updated for version 3.4.4.
  661. network/nordvpn: Updated for version 3.12.5.
  662. network/openconnect-sso: Added (Wrapper for OpenConnect).
  663. network/owncloud-client: Update for 2.10.1.7187
  664. network/sfeed: Updated for version 1.4.
  665. network/signal-desktop: Updated for version 5.38.0.
  666. network/syncthing: Revert maintainer.
  667. network/syncthing: Update for 1.19.2
  668. office/MasterPDFEditor: Updated for version 5.8.46.
  669. office/aigaion: Fix doc ownership.
  670. office/apvlv: Fix doinst.sh.
  671. office/basket: Fix .desktop perm, HTML doc path.
  672. office/basket: Fix icon.
  673. office/bibutils: Use SLKCFLAGS, strip binaries.
  674. office/gnucash-docs: Updated for version 4.10.1.
  675. office/gnucash: Updated for version 4.10.
  676. office/keepassxc: updated for version 2.7.1
  677. office/pstoedit: Updated for version 3.77.
  678. perl/perl-GooCanvas2: fix missing dependency
  679. perl/perl-Locale-Codes: Added (modules to handle locale codes)
  680. perl/perl-PDF-Builder: Updated for version 3.023
  681. python/artifacts: Fix docs.
  682. python/buildbot-badges: Added (Plugin for buildbot).
  683. python/cppy: Added (C++ header library)
  684. python/cryptography: Fix docs.
  685. python/icalendar: Added (parser / generator for iCalendar).
  686. python/iniconfig: Added (INI file parsing).
  687. python/psutil: Remove python3 check.
  688. python/pyinotify: Build Python3 by default.
  689. python/python-beniget: Added (static analyzer for Python code)
  690. python/python-bitstring: Updated for version 3.1.9.
  691. python/python-gast: Added (AST abstracts underlying Python version)
  692. python/python-prometheus_client: Update for 0.14.0
  693. python/python-watchdog: Added (Filesystem events monitoring).
  694. python/python2-automat: updated REQUIRES (wheel needed for build)
  695. python/python2-pyhamcrest: Added (Python module).
  696. python/python2-twisted: updated for version 20.3.0
  697. python/python3-automat: updated REQUIRES (wheel needed for build)
  698. python/python3-fastjsonschema: Added (Fast JSON schema validator).
  699. python/python3-kiwisolver: Updated for v. 1.4.2. New maintainer.
  700. python/python3-klein: Added (micro-framework for web services).
  701. python/python3-panda: Updated for version 1.4.2.
  702. python/python3-pytest: Updated for version 7.1.1.
  703. python/python3-pythran: Added (AOT compiler for numeric kernels)
  704. python/typing-extensions: Fix docs.
  705. system/afuse: Clean up doc dir.
  706. system/alien: Remove perllocal.pod.
  707. system/android-udev-rules: Added (udev rules and permissions).
  708. system/andromeda: Fix .desktop file.
  709. system/apache-activemq: Remove wrong-architecture binaries.
  710. system/apcupsd: Fix icons and .desktop.
  711. system/argyllcms: Fix doc permissions.
  712. system/autoarchive: Fix broken man page symlink.
  713. system/autojump: Don't install python modules to /usr/bin.
  714. system/autoslackpkg: Removed (use slackupdr).
  715. system/babeltrace: Remove static libs and /usr/share/doc.
  716. system/bcache-tools: Strip binaries, move to /usr/sbin.
  717. system/blake2: Strip binary, use SLKCFLAGS.
  718. system/bogofilter: Fix doc dir.
  719. system/bottom: Added (system/process monitor).
  720. system/btrbk: Make noarch, gzip man pages.
  721. system/bulk_extractor: Fix docs.
  722. system/byobu: Fix doc dir and .desktop.
  723. system/cfengine: Fix build when avahi installed.
  724. system/cool-retro-term: Updated for version 1.2.0.
  725. system/ddrescueview: Added (GUI For ddrescue).
  726. system/dosbox: Fix icon and .desktop.
  727. system/fzf: Updated for version 0.30.0.
  728. system/hexcompare: Added (console-mode visual binary diff)
  729. system/hyperfine: Added (command-line benchmarking tool).
  730. system/iotop-c: Added (I/O top).
  731. system/jenkins: Updated for version 2.332.2.
  732. system/nvidia-legacy390-kernel: Remove unneeded patch.
  733. system/pcem-roms: Fix github tarball handling.
  734. system/piper: Update HOMEPAGE
  735. system/powerline-status: Updated for version 2.8.2.
  736. system/s6-rc: Updated for version 0.5.3.1.
  737. system/sane-airscan: Added (Scanner Access Now Easy).
  738. system/sbo-maintainer-tools: Added (lint tools for SBo maintainers)
  739. system/slackupdr: Added (slackpkg automation).
  740. system/slpkg: Updated for version 3.9.6.
  741. system/smpq: Added (StormLib MPQ archiving utility).
  742. system/tmsu-bin: Added (tool for tagging files)
  743. system/watchdog: Moved from python.
  744. +--------------------------+
  745. Sat Apr 2 11:20:15 UTC 2022
  746. academic/aeskulap: Added (medical image viewer)
  747. academic/fet: Updated for versio 6.3.1.
  748. academic/mathics: Updated for version 4.0.0.
  749. academic/molequeue: Added (Desktop integration of hq resources)
  750. academic/ngspice: Updated for version 36.
  751. audio/fantasia: Removed (redundant; use JSampler instead).
  752. audio/google-musicmanager: Handle 32 bit version.
  753. audio/ncspot: Added (cross-platform ncurses Spotify client)
  754. audio/pipewire-native-jack: Added (PipeWire JACK API).
  755. audio/qmmp-plugin-pack-qt5: Updated for version 1.5.2.
  756. audio/qmmp-qt5: Updated for version 1.5.3.
  757. desktop/NsCDE: Added (CDE Desktop).
  758. desktop/bashmount: Added (manage removeable media).
  759. desktop/bemenu: Added (Dynamic Menu Library).
  760. desktop/clearlooks-phenix-theme: Updated for version 7.0.1.
  761. desktop/gromit-mpx: Added (On-screen Annotation tool).
  762. desktop/herbstluftwm: Updated for version 0.9.4
  763. desktop/i3-gaps: Updated for version 4.20.1.
  764. desktop/mint-themes: Added (Linux Mint theme)
  765. desktop/mint-x-icons: Added (Mint Linux default icon theme)
  766. desktop/mint-y-icons: Added (Mint Linux default icon theme)
  767. desktop/qtile: Update for 0.21.0
  768. desktop/swaybg: Added (sway background setter)
  769. desktop/ufetch: Added (displays system information)
  770. desktop/weston: Updated for version 10.0.0.
  771. desktop/zenity: Update for 3.42.0
  772. development/CVSTools: Move cvslib.pl to private dir.
  773. development/OpenJDK11: Added (open implementation of JDK 11).
  774. development/OpenJDK17: Added (open implementation of JDK 17 LTS).
  775. development/SQLAlchemy: Updated for version 1.4.34.
  776. development/adms: Strip binaries/libraries.
  777. development/dotnet-runtime-3.1: Updated for version 3.1.23.
  778. development/dotnet-runtime-5.0: Added (Runtime for .NET 5.0).
  779. development/dotnet-runtime-6.0: Added (Runtime for .NET 6.0).
  780. development/dotnet-sdk-3.1: Updated for version 3.1.417.
  781. development/dotnet-sdk-5.0: Added (Development Framework).
  782. development/dotnet-sdk-6.0: Added (Development framework).
  783. development/eclipse-cpp: Updated for version 4.23.
  784. development/eclipse-java: Updated for version 4.23.
  785. development/eclipse-jee: Updated for version 4.23.
  786. development/eclipse-php: Updated for version 4.23.
  787. development/flawfinder: Fix download URL, ARCH=noarch.
  788. development/github-cli: Updated for version 2.7.0
  789. development/jupyter-ipykernel: Updated for version 6.10.0.
  790. development/jupyter-nbconvert: Updated for version 6.4.5.
  791. development/jupyter-qtconsole: Updated for version 5.3.0.
  792. development/latrace: Fix download URL.
  793. development/lepton-eda: Updated for version 1.9.17.
  794. development/mmtf-cpp: Added (pure C++ implementation of MMTF API)
  795. development/mongodb-compass: Updated for version 1.31.0.
  796. development/nodejs: Updated for version 17.8.0.
  797. development/regina-rexx: Updated for version 3.9.4.
  798. development/robotframework: Updated for version 5.0.
  799. development/s51dude: Fix download URL.
  800. development/sbt: Updated for version 1.6.2.
  801. development/sdcc: Updated for version 4.2.0
  802. development/terraform: Added (IaC Tool).
  803. development/tiled: updated for version 1.8.3
  804. development/vscode-bin: Updated for version 1.66.0.
  805. development/vscodium: Updated for version 1.65.2.
  806. development/vstudio: Updated for version 12.1.
  807. development/zig: Added (toolchain).
  808. games/FlightGear-data: Updated for version 2020.3.12.
  809. games/FlightGear: Updated for version 2020.3.12.
  810. games/SpaceZero: Strip binary, fix icon & .desktop.
  811. games/advancemame: Add SlackBuild to doc dir.
  812. games/aisleriot: Updated for version 3.22.22
  813. games/angband: Updated for version 4.2.4.
  814. games/beetle-psx-libretro: Added (libretro fork of Mednafen PSX).
  815. games/crispy-doom: Updated for version 5.11.1.
  816. games/darkplaces: Don't use precompiled binaries.
  817. games/epsxe: Added (PSX Emulator)
  818. games/fceux: Updated for version 2.6.3.
  819. games/joy2key: Added (control applications with joystick/gamepad)
  820. games/larn: Updated for version 14.1.5.
  821. games/pychess: Updated for version 1.0.3.
  822. games/rejoystick: Added (translates joystick movement/buttons)
  823. games/rogue: Updated for version 5.4.5.
  824. games/scid_vs_pc: Updated for version 4.23.
  825. games/stone_soup: Updated for version 0.28.0.
  826. games/tome-ah: Updated for version 20220224_d25bdae.
  827. games/vkQuake: Updated for version 1.13.0.
  828. gis/GMT: Updated for version 6.3.0.
  829. gis/gdal: Updated for version 3.4.2
  830. gis/google-earth-legacy: Added (Google Virtual Globe).
  831. gis/google-earth: Updated for version 7.3.4.
  832. gis/gpsbabel: Updated for version 1.8.0
  833. gis/python3-basemap: Updated for version 1.3.2.
  834. graphics/LDView: Fix .desktop, doinst.sh.
  835. graphics/OpenVSP: Added (3D Aircraft Modeling Tool).
  836. graphics/gscan2pdf: Updated for version 2.12.4
  837. graphics/lilypond: Updated for version 2.22.2
  838. graphics/mangohud: Added (Vulkan/OpenGL Overlay).
  839. graphics/paraview: Updated for version 5.10.1
  840. graphics/vuescan: Updated MD5SUMs.
  841. ham/tucnak: Added (Ham Radio - VHF/HF contest logbook)
  842. libraries/SimGear: Updated for version 2020.3.12.
  843. libraries/VTK: Fix MPI option
  844. libraries/aspnetcore-runtime-3.1: Updated for version 3.1.23.
  845. libraries/aspnetcore-runtime-5.0: Added (Runtime for ASP.NET 5.0).
  846. libraries/aspnetcore-runtime-6.0: Added (Runtime for ASP.NET 6.0).
  847. libraries/cppzmq: Added (C++ binding for zmq)
  848. libraries/geocode-glib: Added (library for geocoding)
  849. libraries/hoel: updated for version 1.4.20
  850. libraries/libEMF: Updated for version 1.0.13.
  851. libraries/libaal: HOMEPAGE Updated.
  852. libraries/libcoap: Updated for version 4.3.0.
  853. libraries/liblxqt: Added (LXQT library).
  854. libraries/libmseed: Updated for version 2.19.7.
  855. libraries/libmsym: Added (molecular point group symmetry)
  856. libraries/liboop Update to 1.0.1.
  857. libraries/libopenshot-audio: Updated for version 0.2.2
  858. libraries/libopenshot: Updated for version 0.2.7
  859. libraries/libsoup3: Updated for version 3.0.6.
  860. libraries/libvdpau-va-gl: New maintainer + cleanup
  861. libraries/libxmlb: Updated for version 0.3.8.
  862. libraries/libxmlbird: Added (XML parser written in Vala)
  863. libraries/libxnvctrl: Updated for version 510.60.02.
  864. libraries/libzia: Added (Support lib for tucnak4)
  865. libraries/lxqt-notificationd: Added (LXQt notification daemon).
  866. libraries/lxqt-sudo: Added (GUI frontend for sudo/su).
  867. libraries/msgpack-c: Updated for version 3.3.0.
  868. libraries/rhonabwy: updated for version 1.1.3
  869. libraries/spglib: Added (ibrary for crystal symmetry search)
  870. libraries/tree-sitter: Updated for version 0.20.6.
  871. libraries/webkit2gtk4.1: Updated for version 2.36.0.
  872. libraries/webkit2gtk: Updated for version 2.36.0.
  873. misc/dex: Added (dex:)
  874. multimedia/AtomicParsley: Fix ownership in doc dir.
  875. multimedia/DivFix++: Fix doc dir, desktop, README, slack-desc.
  876. multimedia/HandBrake: Strip ghb binary.
  877. multimedia/JSampler: Add doinst, CLI launcher, fix jdk detection.
  878. multimedia/JSampler: Fail if no jdk package installed.
  879. multimedia/intel-gmmlib: Added (The Intel Graphics MML)
  880. multimedia/intel-media-driver: Added (ntel Media Driver for VAAPI)
  881. multimedia/intel-media-sdk: Added (Intel(R) Media SDK)
  882. multimedia/jlscp: Fix jdk detection.
  883. multimedia/lives: Update HOMEPAGE URL.
  884. multimedia/openshot: Updated for version 2.6.1
  885. multimedia/plexmediaserver: Updated for v 1.25.8.5663_e071c3d62.
  886. network/2ping: Add SlackBuild to doc dir.
  887. network/MEGAcmd: Added (MEGA CLI Interactive/Scriptable Application)
  888. network/WhatWeb: Updated for version 0.5.5.
  889. network/XD: Updated for version 0.4.2.
  890. network/acme: Updated for version 3.0.2.
  891. network/bitchx: Added (IRC client).
  892. network/brave-browser: Updated for version 1.37.109
  893. network/csync: Fix download URL.
  894. network/dropbox: Updated for version 145.4.4921
  895. network/glewlwyd: updated for version 2.6.2
  896. network/i2pd: Updated for version 2.41.0.
  897. network/keepalived: Enable nftables and libipset support.
  898. network/linksys-tftp: Add more patches.
  899. network/lurch: Updated for version 0.7.0
  900. network/mod_auth_kerb: Fix download URL.
  901. network/mod_geoip2: Fix download URL.
  902. network/modsecurity-apache: remove gpg detection.
  903. network/nbd: Updated for version 3.24
  904. network/neomutt: Updated for version 20211029.
  905. network/newsboat: Updated for version 2.27.
  906. network/nextcloud-client: Removed (use nextcloud-desktop).
  907. network/nextcloud-desktop: Added (Nextcloud Desktop Client).
  908. network/nginx: Update nginx.logrotate.
  909. network/pgbouncer: Fix download URL.
  910. network/scapy: Updated for version 2.4.5.
  911. network/signal-desktop: Updated for version 5.36.0.
  912. network/signal-desktop: Updated for version 5.37.0.
  913. network/sniffjoke: Fix download URL.
  914. network/sslstrip: Fix download URL.
  915. network/unicornscan: Fix DOWNLOAD url.
  916. network/webalizer: Fix download URL, man page path.
  917. network/wp-cli: Updated for version 2.6.0.
  918. office/LibreOffice: Updated for version 7.3.2.2
  919. office/adobe-reader: Fix .desktop, symlinks.
  920. office/gnucash-docs: Updated for version 4.9.
  921. office/gnucash: Updated for version 4.9.
  922. office/hunspell-gr: Added (Greek hunspell dictionary).
  923. office/keepassxc: Updated for version 2.7.0
  924. office/libreoffice-helppack: Updated for version 7.3.2.
  925. office/libreoffice-langpack: Updated for version 7.3.2.
  926. office/libreoffice: Updated for version 7.3.2.
  927. office/mate-calc: Updated for version 1.26.0
  928. office/treesheets: Fixed MD5SUM.
  929. office/xournalpp: Updated for version 1.1.1.
  930. perl/MoarVM: Updated for version 2022.03.
  931. perl/nqp: Updated for version 2022.03
  932. perl/perl-Gtk3-ImageView: Added (Image viewer widget for Gtk3).
  933. perl/perl-Gtk3-SimpleList: Added (interface to Gtk3's Widget).
  934. perl/perl-gnome2-gconf: Updated for version 1.047.
  935. perl/rakudo: Updated for version 2022.03
  936. python/PyGreSQL: Updated for version 5.2.4
  937. python/buildbot: updated for version 3.5.0, updated dependencies
  938. python/cloudpickle: Added (Python Module).
  939. python/debugpy: Updated for version 1.6.0.
  940. python/doit: Added (task management tool).
  941. python/ipython: Update for 8.2.0
  942. python/pdfarranger: Added (Arrange PDF Pages).
  943. python/pikepdf: Added (Python library).
  944. python/pluggy: Updated for version 0.13.1.
  945. python/py: Updated for version 1.11.0.
  946. python/pybind11: Updated for version 2.9.2
  947. python/pyfeed: Fix download URL.
  948. python/python-colour: Added (python library).
  949. python/python-daemonize: Added (python library).
  950. python/python-evdev: Update for 1.5.0
  951. python/python-mysql-replication: Updated for version 0.28.
  952. python/python2-attrs: updated for version 21.4.0
  953. python/python2-automat: removed unused python-m2r requirement
  954. python/python3-alembic: updated for version 1.7.7
  955. python/python3-amqp: updated for version 5.1.0
  956. python/python3-autobahn: updated for version 22.3.2
  957. python/python3-automat: removed unused python-m2r requirement
  958. python/python3-characteristic: Added (Python module).
  959. python/python3-dulwich: updated for version 0.20.35
  960. python/python3-kombu: updated for version 5.2.4
  961. python/python3-obspy: Updated for version 1.3.0.
  962. python/python3-service-identity: Added (SIV for PyOpenSSL).
  963. python/python3-tubes: Added (micro-framework for web services).
  964. python/python3-twisted: updated for version 22.2.0, updated dependencies
  965. python/python3-waitress: updated for version 2.1.1
  966. python/python3-websockets: Added (WebSocket servers & clients)
  967. python/xe: Fix download URL.
  968. ruby/ruby-build: Updated for version 20220324.
  969. system/CPU-X: Updated for version 4.3.0.
  970. system/I-Nex: Fix symlimk, .desktop perms.
  971. system/apache-tomcat: Updated for version 10.0.20.
  972. system/bat: Updated for version 0.20.0.
  973. system/chronograf: Updated for version 1.9.4
  974. system/duperemove: Added (Find duplicate extents).
  975. system/dust: Updated for version 0.8.0.
  976. system/fcron: Updated for version 3.3.1.
  977. system/fuse-zip: Added (FUSE filesystem).
  978. system/kapacitor: Updated for version 1.6.4
  979. system/libratbag: Added (daemon for gaming mice).
  980. system/mkslack: Removed.
  981. system/musl: Updated for version 1.2.2
  982. system/noto-emoji: Updated for version 2.034.
  983. system/nvidia-driver: Updated for version 510.60.02.
  984. system/nvidia-kernel: Updated for version 510.60.02.
  985. system/nvidia-legacy390-driver: Updated for version 390.147.
  986. system/nvidia-legacy390-kernel: Updated for version 390.147.
  987. system/nvidia-legacy470-driver: Added (Nvidia 470 driver).
  988. system/nvidia-legacy470-kernel: Added (Nvidia 470 kernel module).
  989. system/openrazer-daemon: Added (Razer Drivers for Linux).
  990. system/openrazer-kernel: Added (kernel modules for openrazer).
  991. system/pam-gnupg: Added (Unlock GnuPG keys on login).
  992. system/passwordsafe: Updated for version 1.14.0.
  993. system/pcem-roms: Added (rom files for the pcem emulator)
  994. system/pcem: Added (low-level emulator for IBM compatibles)
  995. system/piper: Added (configure gaming mice).
  996. system/polychromatic: Added (GUI frontend for openrazer).
  997. system/powershell: Updated for version 7.2.2.
  998. system/pytrash: Updated for version 1.1.5.
  999. system/razerCommander: Added (Razer device manager).
  1000. system/razergenie: Added (Razer device configuration tool).
  1001. system/reiser4progs: Updated for version 1.2.2.
  1002. system/restic: Updated for version 0.13.0
  1003. system/rmw: Update email.
  1004. system/sboui: Updated for version 2.2.
  1005. system/slpkg: Updated for version 3.9.4.
  1006. system/spman: Updated for version 2.2.3.
  1007. system/tagainijisho: Updated for version 1.1.94.
  1008. system/telegraf: Updated for version 1.22.0
  1009. system/ttf-charis-sil: Updated for version 6.101.
  1010. system/ttf-doulos-sil: Updated for version 6.101.
  1011. system/xen: Updated for version 4.15.2.
  1012. system/yelp-tools: Updated for version 42.0.
  1013. system/yelp-xsl: Updated for version 42.0.
  1014. system/yelp: Updated for version 42.0.
  1015. +--------------------------+
  1016. Sat Mar 26 01:58:27 UTC 2022
  1017. academic/SU2: Mark as 64-bit only.
  1018. academic/arpack: Disable parallel build.
  1019. academic/qucs: Align to template.
  1020. academic/ugene: Mark 32bit as UNSUPPORTED.
  1021. academic/z3: Updated for version 4.8.12.
  1022. audio/deadbeef: Fix 32-bit build.
  1023. audio/google-musicmanager: Fix 32-bit build.
  1024. audio/google-musicmanager: Fix VERSION+MD5SUM.
  1025. audio/guitarix: Fix 32-bit build.
  1026. audio/helm: Fix 32-bit build.
  1027. audio/sbagen: Fix 32-bit build.
  1028. desktop/bumblebee-status: Fix SLKCFLAGS -02 typo.
  1029. desktop/kwalletcli: Fix 32-bit build.
  1030. development/atom-amd64: Updated for version 1.60.0.
  1031. development/avr8-gnu-toolchain: Fix download URL.
  1032. development/cf-cli: Fix ARCH detection.
  1033. development/crystal-lang: Fix ARCH detection.
  1034. development/crystal-lang: Fix BUILD usage.
  1035. development/energia: Update ARCH handling.
  1036. development/gforth: Disable parallel build.
  1037. development/guile1.8: Fix build on 32 bit.
  1038. development/icon: Disable parallel build.
  1039. development/jupyter-ipykernel: Update for 6.9.2
  1040. development/jupyter-nbconvert: Update for 6.4.4
  1041. development/jupyter-nbformat: Update for 5.2.0
  1042. development/jupyter-notebook: Update for 6.4.10
  1043. development/jupyter_core: Update for 4.9.2
  1044. development/maude: Fix 32-bit build.
  1045. development/neovim: Updated for version 0.6.1.
  1046. development/nodejs: Updated for version 17.7.2.
  1047. development/nsis: Removed (FTBFS; not updated since 2010).
  1048. development/perf: Fix build with x86 -smp kernel.
  1049. development/postman: Updated for version 9.15.2
  1050. development/ruff: Updated for version 2.2.0.
  1051. development/sonarqube: i486 => i586.
  1052. development/vis: Updated for version 0.7.
  1053. development/xmlcopyeditor: Fix wxPython/wxGTK3 conflict.
  1054. games/bluez-sixaxis: Remove .la files.
  1055. games/d1x-rebirth: Fix 32-bit build.
  1056. games/d2x-rebirth: Fix 32-bit build.
  1057. games/eduke32: Fix 32-bit build.
  1058. games/ffgo: Fix doinst.sh.
  1059. games/fgo: Fix doinst.sh.
  1060. games/hedgewars: Document different dep on 32-bit.
  1061. games/hexglass: Fix 32-bit build.
  1062. games/speed-dreams: Updated MD5SUM.
  1063. games/waterCloset: Fix 32-bit build.
  1064. graphics/Blender: Fix 32-bit build (make embree optional).
  1065. graphics/brlcad: Fix 32bit build.
  1066. graphics/darktable: Mark as 64-bit only (it really is).
  1067. graphics/embree: Mark as 64-bit only.
  1068. graphics/fotowall: Fix 32-bit build.
  1069. graphics/luminance-hdr: Fix 32-bit build.
  1070. graphics/mitsuba2: Fix 32-bit build.
  1071. graphics/nsxiv: Use correct github URL.
  1072. graphics/opencolorio: Fix 32-bit build.
  1073. graphics/vuescan: Updated for version 9.7.82.
  1074. libraries/OpenBLAS: Fix Build on 32 bit.
  1075. libraries/antlr4: Update DEP.
  1076. libraries/bctoolbox: Update DOWNLOAD.
  1077. libraries/belle-sip: Updated DOWNLOAD.
  1078. libraries/bzrtp: Fix download URL.
  1079. libraries/libhoard: i486 => i586.
  1080. libraries/libindi-drivers: Mark 32bit as unsupported.
  1081. libraries/libpri: Removed (No maintainer and not used).
  1082. libraries/libsoup3: Updated for version 3.0.5.
  1083. libraries/lua-lpeg: install lpeg for all luas
  1084. libraries/msgpack-c: Updated for version 4.0.0.
  1085. libraries/onevpl: Mark as 64-bit only.
  1086. libraries/qt5-postgresql: Fix DOWNLOAD url.
  1087. libraries/xmpppy: Fix SLKCFLAGS -02 typo.
  1088. misc/moedict-desktop.app: Fix ARCH detection.
  1089. misc/sbo-templates: Wrap README at 72 columns.
  1090. misc/stardict: Updated for version 3.0.6 (3.0.6.2 segfaults).
  1091. multimedia/Gem: Fix build on 32bit.
  1092. multimedia/HandBrake: Fix 32-bit build.
  1093. multimedia/cantata: Updated for version 2.5.0.
  1094. multimedia/minitube: Fix 32-bit build.
  1095. multimedia/tvheadend: Fix 32-bit build.
  1096. network/heimdal: Fix 32-bit build.
  1097. network/icecat: Fix ARCH detection and support.
  1098. network/opendmarc: Remove .la files.
  1099. network/opera-legacy: Fix ARCH detection and support.
  1100. network/pdns-recursor: Fix 32-bit build (until 2038!).
  1101. network/pdns: Fix 32-bit build (until 2038!).
  1102. network/pidgin-musictracker: Fix 32-bit build.
  1103. network/rclone: Updated for version 1.58.0
  1104. network/riot-web: Removed at maintainer's request (mailing list).
  1105. network/rspamd: Add missing patch.
  1106. network/rspamd: Fix 32-bit build.
  1107. network/seafile-server: Remove .la files.
  1108. network/slurm: Fix 32-bit build.
  1109. network/suricata: Remove .la files.
  1110. network/teams: Fix glibc compatibility.
  1111. network/tntnet: Remove .la files.
  1112. network/tor-browser: Updated for version 11.0.9.
  1113. network/varnish: Remove .la files.
  1114. network/wireshark: Updated for version 3.6.3.
  1115. network/zoom-linux: Updated for version 5.10.0.2450
  1116. office/lout: Updated for version 3.42.1.
  1117. office/pandoc: i486 => i586.
  1118. python/jedi: Fix renamed dependency reference.
  1119. python/nbxmpp: Updated for version 2.0.6.
  1120. python/python3-aiorpcX: Update for 0.22.1
  1121. python/terminado: Update for 0.13.3
  1122. python/terminado: Wrap README at 72 columns.
  1123. system/afdko: Fix downloading during build.
  1124. system/bacula-client: Updated for version 9.6.7.
  1125. system/bacula: Exit with failure status if user/group don't exist.
  1126. system/bacula: Updated for version 9.6.7.
  1127. system/bulk_extractor: Fix 32-bit build.
  1128. system/commons-daemon: Fix download URLs.
  1129. system/dahdi-complete: Removed (no maintainer and ftbfs).
  1130. system/ksh-openbsd: Fix DOWNLOAD.
  1131. system/libtrash: Align to template.
  1132. system/multipath-tools: Fix 32-bit build.
  1133. system/nix: Fix 32-bit build; stop spamming /usr.
  1134. system/pax: Update EMAIL.
  1135. system/pixma: Fix 32bit build
  1136. system/qemu: Update README.
  1137. system/samsung-mfp-drivers: Updated for version 1.00.39.
  1138. system/slackrepo-hints: Updated for version 20220325.
  1139. system/slackrepo: Updated for version 20220325.
  1140. system/sysdig: Mark 32bit as UNSUPPORTED.
  1141. system/system76-power: Mark 32bit as unsupported.
  1142. system/virtualbox-kernel: Mark as 64-bit only.
  1143. system/virtualbox: Mark as 64-bit only.
  1144. +--------------------------+
  1145. Sun Mar 20 13:46:41 UTC 2022
  1146. academic/cap3: Fix 32-bit build when ARCH set in environment.
  1147. academic/karma: Allow ARCH=i586 in environment.
  1148. academic/ncbi-rmblastn: Allow ARCH=i586 in environment.
  1149. audio/tta++: Removed (redundant; use tta).
  1150. desktop/libqtxdg: Updated for version 3.8.0.
  1151. development/autogen: Fix 32-bit build.
  1152. development/edb-debugger: Fix PKG assignment.
  1153. development/frobtads: Fix 32-bit build.
  1154. development/kforth: Fix build on 15.0.
  1155. development/mysql-workbench: Fix 32-bit build.
  1156. development/pforth: Fix 32-bit build.
  1157. development/phantomjs: Fix 32-bit build.
  1158. development/xvile: Do not write to /usr/lib during build.
  1159. development/zope.interface: new maintainer, updated for version 5.4.0
  1160. games/beetle-psx-libretro: Fix file permissions.
  1161. games/dgen: Fix 32-bit build.
  1162. games/gzdoom: Fix 32-bit build (require SSE2).
  1163. games/odamex: Fix 32-bit build.
  1164. games/zdoom: Fix 32-bit build.
  1165. graphics/mozjpeg: Fix 32-bit build.
  1166. graphics/screengrab: Updated for version 2.3.0.
  1167. graphics/vuescan: Updated for version 9.7.81.
  1168. libraries/lxqt-build-tools: Updated for version 0.10.0.
  1169. libraries/qt3: Fix 32-bit build.
  1170. misc/sbo-templates: Updated for version 1.3.3.
  1171. network/avahi: Included several patches from Debian
  1172. network/haproxy: Avoid specifying CFLAGS.
  1173. network/libnfsidmap: Removed (included in Slackware).
  1174. network/palemoon-bin: updated for version 30.0.0
  1175. network/palemoon: updated for version 30.0.0
  1176. network/tor: Updated for version 0.4.6.10
  1177. network/uudeview: Fix 32-bit build.
  1178. perl/perl-MIME-Types: Updated for version 2.22.
  1179. perl/perl-Math-BigInt-GMP: Updated for version 1.6010.
  1180. perl/perl-Math-BigInt: Updated for version 1.999829.
  1181. perl/perl-Math-GMPq: Updated for version 0.51.
  1182. perl/perl-Math-GMPz: Updated for version 0.54.
  1183. perl/perl-Math-Int128: Mark as unsupported on 32-bit (it really is).
  1184. perl/perl-Math-MPC: Updated for version 1.15.
  1185. perl/perl-Math-MPFR: Updated for version 4.21.
  1186. perl/perl-Sidef: Updated for version 3.99.
  1187. python/python2-automat: Fix MD5SUM.
  1188. python/python2-twisted: reverted to version 17.9.0
  1189. python/python3-pythondialog: Updated for version 3.5.3.
  1190. system/Iosevka-slab: Updated for version 15.0.2.
  1191. system/capstone: Fix .pc file and 32-bit build.
  1192. system/cnijfilter2: Fix permission.
  1193. system/cnijfilter2: Updated for version 6.30.1.
  1194. system/dosemu: Fix segfaults on 15.0 (use gcc5).
  1195. system/hddtemp: Fix 32-bit build.
  1196. system/ksh-openbsd: Use correct github URL.
  1197. system/mediaextract: Fix 32-bit build.
  1198. system/mksh: Allow tests to pass without controlling tty.
  1199. system/scangearmp2: Updated for version 4.30.1.
  1200. +--------------------------+
  1201. Thu Mar 17 17:28:01 UTC 2022
  1202. academic/bowtie2: Mark x86 as unsupported.
  1203. academic/bowtie: Mark x86 as unsupported.
  1204. academic/celestia: Wrap README at 72 columns.
  1205. academic/ds9: Wrap README at 72 columns.
  1206. academic/fiji: Fix 32bit build.
  1207. academic/fiji: Fix source name on 32bit.
  1208. academic/gcompris-qt: Updated for version 2.3.1.
  1209. academic/labplot2: Wrap README at 72 columns.
  1210. academic/ladr: Wrap README at 72 columns.
  1211. academic/ncbi-blast+: Fix build on i586.
  1212. academic/octave: Wrap README at 72 columns.
  1213. academic/qrupdate: Wrap README at 72 columns.
  1214. academic/root: Actually install doinst.sh.
  1215. academic/scipy3: Wrap README at 72 columns.
  1216. academic/spqr: Wrap README at 72 columns.
  1217. academic/suitesparse: Wrap README at 72 columns.
  1218. academic/treebest-ensembl: Wrap README at 72 columns.
  1219. academic/ugene: Wrap README at 72 columns.
  1220. academic/umfpack: Wrap README at 72 columns.
  1221. academic/verilator: Make slack-desc ASCII.
  1222. academic/xflr5: Wrap README at 72 columns.
  1223. accessibility/eflite: Wrap README at 72 columns.
  1224. audio/TiMidity++: Handle content-disposition download.
  1225. audio/amSynth: Wrap README at 72 columns.
  1226. audio/clementine: Wrap README at 72 columns.
  1227. audio/clockchimes: Wrap README at 72 columns.
  1228. audio/cmus: Wrap README at 72 columns.
  1229. audio/darkice: Wrap README at 72 columns.
  1230. audio/deadbeef: Wrap README at 72 columns.
  1231. audio/gnump3d: Wrap README at 72 columns.
  1232. audio/google-musicmanager: Fix broken symlink.
  1233. audio/jack_capture: Wrap README at 72 columns.
  1234. audio/rhythmbox: Wrap README at 72 columns.
  1235. audio/tta: Fix 32-bit build.
  1236. desktop/Qogir-icon-theme: Fix VERSION in script.
  1237. desktop/Surfn: Fix VERSION in script.
  1238. desktop/bumblebee-status: Wrap README at 72 columns.
  1239. desktop/e16: Remove template comment.
  1240. desktop/obshutdown: Fix DOWNLOAD/HOMEPAGE.
  1241. desktop/xdm-slackware-theme: Wrap README at 72 columns.
  1242. development/J-Link: Wrap README at 72 columns.
  1243. development/android-tools: Add network warning to README.
  1244. development/apache-maven: Updated for version 3.8.5.
  1245. development/bluefish: Wrap README at 72 columns.
  1246. development/dfu-programmer: Move setup instructions to README.SBo.
  1247. development/f2c: Remove template comment.
  1248. development/gcc5: Fix sbolint nitpicks.
  1249. development/git-extras: Wrap README at 72 columns.
  1250. development/github-cli: Updated for version 2.6.0
  1251. development/golang-googlecode-gotools: Wrap README at 72 columns.
  1252. development/hugo: Updated for version 94.2.
  1253. development/jdk11: Wrap README at 72 columns.
  1254. development/jupyter-nbclient: Update for 0.5.13
  1255. development/jupyter-nbconvert: Update for 6.4.3
  1256. development/jupyterlab_pygments: Wrap README at 72 columns.
  1257. development/lighttable: Add network warning to README.
  1258. development/mysql-workbench: Wrap README at 72 columns.
  1259. development/nodejs: Updated for version 17.7.1.
  1260. development/openjdk7: Move template preamble to top of script.
  1261. development/php-xdebug: Fix PRGNAM in script.
  1262. development/racer: Add network warning to README.
  1263. development/racer: Wrap README at 72 columns.
  1264. development/sbcl: Updated for version 2.2.2
  1265. development/shc: Fix DOWNLOAD.
  1266. development/shc: Wrap README at 72 columns.
  1267. development/shiboken2: Wrap README at 72 columns.
  1268. development/sqlcl: Wrap README at 72 columns.
  1269. development/sqlitebrowser: Wrap README at 72 columns.
  1270. development/tora: Fix VERSION in script.
  1271. development/vscode-bin: Updated for version 3.6.1.
  1272. games/beetle-psx-libretro: updated for version 2022.02.11 + new maintainer
  1273. games/clksignal-roms: Host 2 of the downloads under sane names.
  1274. games/dmagnetic: gzip the man pages.
  1275. games/jin: Update email
  1276. games/lutris: Updated for version 0.5.9.1, new maintainer
  1277. games/m64py: Remove template comment.
  1278. games/scid_vs_pc: Wrap README at 72 columns.
  1279. games/scummvm: Wrap README at 72 columns.
  1280. games/sl: Wrap README at 72 columns.
  1281. games/smashbattle: Wrap README at 72 columns.
  1282. games/solarus-quest-editor: Wrap README at 72 columns.
  1283. games/speed-dreams: Wrap README at 72 columns.
  1284. games/steam: Wrap README at 72 columns.
  1285. games/tintin: Wrap README at 72 columns.
  1286. games/tome-ah: Wrap README at 72 columns.
  1287. games/trigger-rally: Wrap README at 72 columns.
  1288. games/tuxnes: Wrap README at 72 columns.
  1289. games/uligo: Wrap README at 72 columns.
  1290. games/ut2004: Wrap README at 72 columns.
  1291. games/vcmi: updated for version 0.99_git20220314
  1292. games/voxelands: Wrap README at 72 columns.
  1293. games/warzone2100: Wrap README at 72 columns.
  1294. games/warzone2100: updated for version 4.2.7
  1295. games/wesnoth: Wrap README at 72 columns.
  1296. games/worldofgoo: Wrap README at 72 columns.
  1297. games/xroar-roms: Get rid of duplicate ROMs.
  1298. games/xye: Wrap README at 72 columns.
  1299. games/yamagi-quake2: Wrap README at 72 columns.
  1300. games/zaz: Wrap README at 72 columns.
  1301. games/zelda-roth-se: Wrap README at 72 columns.
  1302. games/zseal: Wrap README at 72 columns.
  1303. gis/Fiona: Wrap README at 72 columns.
  1304. gis/Geohash: Wrap README at 72 columns.
  1305. gis/OTB: Wrap README at 72 columns.
  1306. gis/SFCGAL: Wrap README at 72 columns.
  1307. gis/TauDEM: Wrap README at 72 columns.
  1308. gis/geographiclib-python: Wrap README at 72 columns.
  1309. gis/geopandas: Changed REQUIRES for python3-psycopg2
  1310. gis/geopandas: Wrap README at 72 columns.
  1311. gis/gpsbabel: Wrap README at 72 columns.
  1312. gis/grass: Wrap README at 72 columns.
  1313. gis/josm: Wrap README at 72 columns.
  1314. gis/laszip: Wrap README at 72 columns.
  1315. gis/libspatialindex: Wrap README at 72 columns.
  1316. gis/libspatialite: Wrap README at 72 columns.
  1317. gis/mapnik: Wrap README at 72 columns.
  1318. gis/opengrads: Wrap README at 72 columns.
  1319. gis/openorienteering-mapper: Wrap README at 72 columns.
  1320. gis/osgEarth: Wrap README at 72 columns.
  1321. gis/osm-gps-map: Wrap README at 72 columns.
  1322. gis/ossim: Wrap README at 72 columns.
  1323. gis/pdal: Wrap README at 72 columns.
  1324. gis/pgrouting: Wrap README at 72 columns.
  1325. gis/pgsql-ogr-fdw: Wrap README at 72 columns.
  1326. gis/pktools: Wrap README at 72 columns.
  1327. gis/pointcloud: Wrap README at 72 columns.
  1328. gis/polyline: Wrap README at 72 columns.
  1329. gis/postgis: Wrap README at 72 columns.
  1330. gis/python-mapnik: Fix VERSION in script.
  1331. gis/python-pygeos: Wrap README at 72 columns.
  1332. gis/python3-cartopy: Wrap README at 72 columns.
  1333. gis/python3-pyproj: Wrap README at 72 columns.
  1334. gis/python3-pyshp: Wrap README at 72 columns.
  1335. gis/python3-xarray: Wrap README at 72 columns.
  1336. gis/qgis: Changed REQUIRES for python3-psycopg2
  1337. gis/qgis: Wrap README at 72 columns.
  1338. gis/rasterio: Wrap README at 72 columns.
  1339. gis/routino: Wrap README at 72 columns.
  1340. gis/saga-gis: Wrap README at 72 columns.
  1341. gis/spatialite-tools: Wrap README at 72 columns.
  1342. gis/tangogps: Wrap README at 72 columns.
  1343. gis/whitebox-tools: Wrap README at 72 columns.
  1344. gis/xplanet: Wrap README at 72 columns.
  1345. graphics/Blender: Wrap README at 72 columns.
  1346. graphics/FreeCAD: Wrap README at 72 columns.
  1347. graphics/LDView: Wrap README at 72 columns.
  1348. graphics/SweetHome3D: Update email
  1349. graphics/VariCAD: Wrap README at 72 columns.
  1350. graphics/XnViewMP: Wrap README at 72 columns.
  1351. graphics/abcm2ps: Wrap README at 72 columns.
  1352. graphics/aewan: Wrap README at 72 columns.
  1353. graphics/apitrace: Wrap README at 72 columns.
  1354. graphics/brlcad: Wrap README at 72 columns.
  1355. graphics/converseen: Updated for version 0.9.9.5.
  1356. graphics/darktable: Wrap README at 72 columns.
  1357. graphics/dia: Wrap README at 72 columns.
  1358. graphics/dvisvgm: Wrap README at 72 columns.
  1359. graphics/embree: Make slack-desc ASCII.
  1360. graphics/embree: Wrap README at 72 columns.
  1361. graphics/enblend-enfuse: Wrap README at 72 columns.
  1362. graphics/fbpic: Wrap README at 72 columns.
  1363. graphics/fig2sxd: Wrap README at 72 columns.
  1364. graphics/fotowall: Wrap README at 72 columns.
  1365. graphics/frescobaldi: Wrap README at 72 columns.
  1366. graphics/fritzing: Wrap README at 72 columns.
  1367. graphics/gliv: Wrap README at 72 columns.
  1368. graphics/gnome-themes-extras: Wrap README at 72 columns.
  1369. graphics/gpicview: Wrap README at 72 columns.
  1370. graphics/gpscorrelate: Wrap README at 72 columns.
  1371. graphics/graph-easy: Wrap README at 72 columns.
  1372. graphics/gthumb: Wrap README at 72 columns.
  1373. graphics/img2pdf: Remove tabs from README.
  1374. graphics/imgmin: Wrap README at 72 columns.
  1375. graphics/jp2a: Wrap README at 72 columns.
  1376. graphics/jpeg2ps: Wrap README at 72 columns.
  1377. graphics/leocad_pieces: Wrap README at 72 columns.
  1378. graphics/maim: Wrap README at 72 columns.
  1379. graphics/meshlab: Wrap README at 72 columns.
  1380. graphics/nsxiv: Updated for version 29
  1381. graphics/nvidia-texture-tools: Wrap README at 72 columns.
  1382. graphics/openclipart: Wrap README at 72 columns.
  1383. graphics/opencollada: Wrap README at 72 columns.
  1384. graphics/openscad-mcad: Fix VERSION in script.
  1385. graphics/openscad: Wrap README at 72 columns.
  1386. graphics/paraview: Wrap README at 72 columns.
  1387. graphics/pdf2png: Wrap README at 72 columns.
  1388. graphics/pencil3: Wrap README at 72 columns.
  1389. graphics/pho: Wrap README at 72 columns.
  1390. graphics/png2ico: Wrap README at 72 columns.
  1391. graphics/pngcrush: Wrap README at 72 columns.
  1392. graphics/potrace: Wrap README at 72 columns.
  1393. graphics/pygraphviz: Wrap README at 72 columns.
  1394. graphics/qcad: Wrap README at 72 columns.
  1395. graphics/rawtherapee: Wrap README at 72 columns.
  1396. graphics/scrot: Wrap README at 72 columns.
  1397. graphics/tesseract: Wrap README at 72 columns.
  1398. graphics/tgif-QPL: Wrap README at 72 columns.
  1399. graphics/tkpng: Wrap README at 72 columns.
  1400. graphics/trimage: Wrap README at 72 columns.
  1401. graphics/ueberzug: Make slack-desc ASCII.
  1402. graphics/ufraw: Wrap README at 72 columns.
  1403. graphics/unpaper: Wrap README at 72 columns.
  1404. graphics/vuescan: Updated for version 9.7.80.
  1405. graphics/wavelet-denoise: Wrap README at 72 columns.
  1406. graphics/whyteboard: Wrap README at 72 columns.
  1407. graphics/xcalib: Wrap README at 72 columns.
  1408. graphics/xdot: Wrap README at 72 columns.
  1409. graphics/yafaray-blender: Wrap README at 72 columns.
  1410. graphics/zgv: Wrap README at 72 columns.
  1411. ham/ax25-apps: Wrap README at 72 columns.
  1412. ham/baudline: Wrap README at 72 columns.
  1413. ham/csdr: Wrap README at 72 columns.
  1414. ham/cwdaemon: Wrap README at 72 columns.
  1415. ham/ebook2cw: Wrap README at 72 columns.
  1416. ham/grig: Wrap README at 72 columns.
  1417. ham/libax25: Wrap README at 72 columns.
  1418. ham/svxlink-sounds-en_US-heather-16k: Wrap README at 72 columns.
  1419. ham/svxlink: Wrap README at 72 columns.
  1420. ham/tlf: Wrap README at 72 columns.
  1421. ham/tqsl: Wrap README at 72 columns.
  1422. ham/xfhell: Wrap README at 72 columns.
  1423. ham/xpsk31: Wrap README at 72 columns.
  1424. ham/xwxapt: Wrap README at 72 columns.
  1425. haskell/ghc: Wrap README at 72 columns.
  1426. haskell/haskell-HTTP: Wrap README at 72 columns.
  1427. haskell/haskell-HUnit: Wrap README at 72 columns.
  1428. haskell/haskell-ShellCheck: Wrap README at 72 columns.
  1429. haskell/haskell-base16-bytestring: Wrap README at 72 columns.
  1430. haskell/haskell-cgi: Wrap README at 72 columns.
  1431. haskell/haskell-cmark: Wrap README at 72 columns.
  1432. haskell/haskell-colour: Wrap README at 72 columns.
  1433. haskell/haskell-digest: Wrap README at 72 columns.
  1434. haskell/haskell-fail: Wrap README at 72 columns.
  1435. haskell/haskell-graphviz: Wrap README at 72 columns.
  1436. haskell/haskell-lpeg: Make slack-desc ASCII.
  1437. haskell/haskell-memory: Wrap README at 72 columns.
  1438. haskell/haskell-pandoc-types: Wrap README at 72 columns.
  1439. haskell/haskell-polyparse: Wrap README at 72 columns.
  1440. haskell/haskell-regex-applicative: Wrap README at 72 columns.
  1441. haskell/haskell-texmath: Wrap README at 72 columns.
  1442. haskell/haskell-zlib: Wrap README at 72 columns.
  1443. libraries/BeautifulSoup: Wrap README at 72 columns.
  1444. libraries/CGAL: Wrap README at 72 columns.
  1445. libraries/CondConfigParser: Wrap README at 72 columns.
  1446. libraries/ConfigParser: Wrap README at 72 columns.
  1447. libraries/DevIL: Wrap README at 72 columns.
  1448. libraries/FreeImage: Wrap README at 72 columns.
  1449. libraries/Geraldo: Wrap README at 72 columns.
  1450. libraries/Nevow: Wrap README at 72 columns.
  1451. libraries/OpenBLAS: Wrap README at 72 columns.
  1452. libraries/OpenCSG: Wrap README at 72 columns.
  1453. libraries/OpenSceneGraph: Remove tabs from README.
  1454. libraries/OpenSceneGraph: Wrap README at 72 columns.
  1455. libraries/PyOpenGL: Wrap README at 72 columns.
  1456. libraries/Pykka: Wrap README at 72 columns.
  1457. libraries/SFML: Wrap README at 72 columns.
  1458. libraries/Smarty: Wrap README at 72 columns.
  1459. libraries/VTK: Wrap README at 72 columns.
  1460. libraries/adodb: Wrap README at 72 columns.
  1461. libraries/agg: Wrap README at 72 columns.
  1462. libraries/allegro: Wrap README at 72 columns.
  1463. libraries/antlr4: Add network warning to README.
  1464. libraries/antlr4: Wrap README at 72 columns.
  1465. libraries/barry: Wrap README at 72 columns.
  1466. libraries/batinfo: Wrap README at 72 columns.
  1467. libraries/bctoolbox: Wrap README at 72 columns.
  1468. libraries/bitstream: Wrap README at 72 columns.
  1469. libraries/blas: Wrap README at 72 columns.
  1470. libraries/bluez-alsa: Wrap README at 72 columns.
  1471. libraries/bzrtp: Wrap README at 72 columns.
  1472. libraries/cal3d: Wrap README at 72 columns.
  1473. libraries/cdk: Wrap README at 72 columns.
  1474. libraries/cffi: Wrap README at 72 columns.
  1475. libraries/confuse: Wrap README at 72 columns.
  1476. libraries/console_bridge: Wrap README at 72 columns.
  1477. libraries/crossguid: Wrap README at 72 columns.
  1478. libraries/curses_ex: Wrap README at 72 columns.
  1479. libraries/dcadec: Wrap README at 72 columns.
  1480. libraries/dcmtk: Wrap README at 72 columns.
  1481. libraries/edelib: Wrap README at 72 columns.
  1482. libraries/efl: Wrap README at 72 columns.
  1483. libraries/eris: Wrap README at 72 columns.
  1484. libraries/evernote-python: Wrap README at 72 columns.
  1485. libraries/exiftool: Wrap README at 72 columns.
  1486. libraries/facebook-python: Wrap README at 72 columns.
  1487. libraries/fcgi: Wrap README at 72 columns.
  1488. libraries/fifechan: Wrap README at 72 columns.
  1489. libraries/fltk: Wrap README at 72 columns.
  1490. libraries/fox-toolkit-devel: Wrap README at 72 columns.
  1491. libraries/freexl: Wrap README at 72 columns.
  1492. libraries/ftplib: Wrap README at 72 columns.
  1493. libraries/futures: Wrap README at 72 columns.
  1494. libraries/gitdb2: Wrap README at 72 columns.
  1495. libraries/gitdb: Wrap README at 72 columns.
  1496. libraries/gl2ps: Wrap README at 72 columns.
  1497. libraries/goffice0.8: Wrap README at 72 columns.
  1498. libraries/grpc: Wrap README at 72 columns.
  1499. libraries/gspell: Wrap README at 72 columns.
  1500. libraries/gtkdatabox: Wrap README at 72 columns.
  1501. libraries/gtkglarea: Wrap README at 72 columns.
  1502. libraries/hdf: Wrap README at 72 columns.
  1503. libraries/hoel: updated for version 1.4.19
  1504. libraries/http-parser: Wrap README at 72 columns.
  1505. libraries/hurry-filesize: Wrap README at 72 columns.
  1506. libraries/iddawc: Wrap README at 72 columns.
  1507. libraries/ignition-transport: Wrap README at 72 columns.
  1508. libraries/iksemel: Wrap README at 72 columns.
  1509. libraries/imlib: Wrap README at 72 columns.
  1510. libraries/irrlicht: Wrap README at 72 columns.
  1511. libraries/isodate: Wrap README at 72 columns.
  1512. libraries/itcl: Wrap README at 72 columns.
  1513. libraries/lablgtk: Wrap README at 72 columns.
  1514. libraries/lapack: Wrap README at 72 columns.
  1515. libraries/levmar: Wrap README at 72 columns.
  1516. libraries/libEMF: Wrap README at 72 columns.
  1517. libraries/libaacs: Wrap README at 72 columns.
  1518. libraries/libass: Wrap README at 72 columns.
  1519. libraries/libavc1394: Update email
  1520. libraries/libavc1394: Wrap README at 72 columns.
  1521. libraries/libb64: Wrap README at 72 columns.
  1522. libraries/libbde: Wrap README at 72 columns.
  1523. libraries/libbdplus: Wrap README at 72 columns.
  1524. libraries/libbsd: Wrap README at 72 columns.
  1525. libraries/libbtbb: Wrap README at 72 columns.
  1526. libraries/libcangjie: Wrap README at 72 columns.
  1527. libraries/libcbor: Wrap README at 72 columns.
  1528. libraries/libcec: Wrap README at 72 columns.
  1529. libraries/libchewing: Wrap README at 72 columns.
  1530. libraries/libcli: Wrap README at 72 columns.
  1531. libraries/libdbh2: Wrap README at 72 columns.
  1532. libraries/libdc1394: Wrap README at 72 columns.
  1533. libraries/libdca: Wrap README at 72 columns.
  1534. libraries/libdv: Wrap README at 72 columns.
  1535. libraries/libeatmydata: Wrap README at 72 columns.
  1536. libraries/libesedb: Wrap README at 72 columns.
  1537. libraries/libesmtp: Wrap README at 72 columns.
  1538. libraries/libexe: Wrap README at 72 columns.
  1539. libraries/libfaketime: Wrap README at 72 columns.
  1540. libraries/libg15: Wrap README at 72 columns.
  1541. libraries/libg15render: Wrap README at 72 columns.
  1542. libraries/libgit2-glib: Wrap README at 72 columns.
  1543. libraries/libgit2: Wrap README at 72 columns.
  1544. libraries/libgnomecanvas: Wrap README at 72 columns.
  1545. libraries/libgnomecups: Wrap README at 72 columns.
  1546. libraries/libgsasl: Wrap README at 72 columns.
  1547. libraries/libharu: Wrap README at 72 columns.
  1548. libraries/libhid: Wrap README at 72 columns.
  1549. libraries/libhtp: Wrap README at 72 columns.
  1550. libraries/libiec61883: Update email
  1551. libraries/libiec61883: Wrap README at 72 columns.
  1552. libraries/libindi-drivers: Update email
  1553. libraries/libindi: Update email
  1554. libraries/libindi: Wrap README at 72 columns.
  1555. libraries/libiptcdata: Wrap README at 72 columns.
  1556. libraries/libircclient: Wrap README at 72 columns.
  1557. libraries/libisoburn: Wrap README at 72 columns.
  1558. libraries/libkate: Wrap README at 72 columns.
  1559. libraries/libkml: Wrap README at 72 columns.
  1560. libraries/liblightgrep: Wrap README at 72 columns.
  1561. libraries/liblxi: Wrap README at 72 columns.
  1562. libraries/libmicrohttpd: Wrap README at 72 columns.
  1563. libraries/libmimic: Wrap README at 72 columns.
  1564. libraries/libmpdclient: Wrap README at 72 columns.
  1565. libraries/libmsiecf: Wrap README at 72 columns.
  1566. libraries/libmspack: Wrap README at 72 columns.
  1567. libraries/libmusicbrainz3: Wrap README at 72 columns.
  1568. libraries/libmusicbrainz5: Wrap README at 72 columns.
  1569. libraries/libnids: Wrap README at 72 columns.
  1570. libraries/liboglappth: Wrap README at 72 columns.
  1571. libraries/libolecf: Wrap README at 72 columns.
  1572. libraries/libotr: Wrap README at 72 columns.
  1573. libraries/libp11: Wrap README at 72 columns.
  1574. libraries/libpar2: Wrap README at 72 columns.
  1575. libraries/libpff: Wrap README at 72 columns.
  1576. libraries/libpri: Wrap README at 72 columns.
  1577. libraries/libqcow: Wrap README at 72 columns.
  1578. libraries/librapi2: Wrap README at 72 columns.
  1579. libraries/libraqm: Wrap README at 72 columns.
  1580. libraries/libreadline-java: Wrap README at 72 columns.
  1581. libraries/librsync: Wrap README at 72 columns.
  1582. libraries/libscrypt: Wrap README at 72 columns.
  1583. libraries/libshout: Wrap README at 72 columns.
  1584. libraries/libslack: Wrap README at 72 columns.
  1585. libraries/libsmraw: Wrap README at 72 columns.
  1586. libraries/libsoup3: Update to 15.0 template.
  1587. libraries/libsrtp: Wrap README at 72 columns.
  1588. libraries/libsynce: Wrap README at 72 columns.
  1589. libraries/libtermkey: Wrap README at 72 columns.
  1590. libraries/libthai: Wrap README at 72 columns.
  1591. libraries/libticonv: Wrap README at 72 columns.
  1592. libraries/libtubo0: Wrap README at 72 columns.
  1593. libraries/libucil: Wrap README at 72 columns.
  1594. libraries/libversion: Wrap README at 72 columns.
  1595. libraries/libvhdi: Wrap README at 72 columns.
  1596. libraries/libvirt: Wrap README at 72 columns.
  1597. libraries/libvmime: Wrap README at 72 columns.
  1598. libraries/libvorbisidec: Wrap README at 72 columns.
  1599. libraries/libvshadow: Wrap README at 72 columns.
  1600. libraries/libvslvm: Wrap README at 72 columns.
  1601. libraries/libvterm: Wrap README at 72 columns.
  1602. libraries/libwebsockets: Wrap README at 72 columns.
  1603. libraries/libwhisker2: Wrap README at 72 columns.
  1604. libraries/libxmi: Wrap README at 72 columns.
  1605. libraries/libxml++: Wrap README at 72 columns.
  1606. libraries/libxmp: Wrap README at 72 columns.
  1607. libraries/live555: Wrap README at 72 columns.
  1608. libraries/lockdev: Wrap README at 72 columns.
  1609. libraries/log4net: Wrap README at 72 columns.
  1610. libraries/lua-lpeg: Wrap README at 72 columns.
  1611. libraries/lua-luv: Wrap README at 72 columns.
  1612. libraries/lua-mpack: Wrap README at 72 columns.
  1613. libraries/lua-posix: Wrap README at 72 columns.
  1614. libraries/lunatic-python: Wrap README at 72 columns.
  1615. libraries/meanwhile: Wrap README at 72 columns.
  1616. libraries/menu-cache: Wrap README at 72 columns.
  1617. libraries/mowitz: Wrap README at 72 columns.
  1618. libraries/mpir: Wrap README at 72 columns.
  1619. libraries/msgpack-c: Wrap README at 72 columns.
  1620. libraries/mujs: Wrap README at 72 columns.
  1621. libraries/mysql++: Wrap README at 72 columns.
  1622. libraries/nextaw: Wrap README at 72 columns.
  1623. libraries/nini: Wrap README at 72 columns.
  1624. libraries/ocaml-batteries: Wrap README at 72 columns.
  1625. libraries/ocaml-camomile: Wrap README at 72 columns.
  1626. libraries/ocaml-findlib: Wrap README at 72 columns.
  1627. libraries/opencl-amd: Wrap README at 72 columns.
  1628. libraries/orcania: updated for version 2.2.2
  1629. libraries/paho-mqtt: Update to 15.0 template.
  1630. libraries/paho-mqtt: Wrap README at 72 columns.
  1631. libraries/pcl: Wrap README at 72 columns.
  1632. libraries/pexpect: Wrap README at 72 columns.
  1633. libraries/pgtcl-ng: Wrap README at 72 columns.
  1634. libraries/physfs: Wrap README at 72 columns.
  1635. libraries/plplot: Wrap README at 72 columns.
  1636. libraries/progressbar: Wrap README at 72 columns.
  1637. libraries/pycparser: Wrap README at 72 columns.
  1638. libraries/pyftpdlib: Wrap README at 72 columns.
  1639. libraries/pylast: Wrap README at 72 columns.
  1640. libraries/pymdstat: Wrap README at 72 columns.
  1641. libraries/pysendfile: Wrap README at 72 columns.
  1642. libraries/python-efl: Wrap README at 72 columns.
  1643. libraries/python-gnupg: Wrap README at 72 columns.
  1644. libraries/python-meld3: Wrap README at 72 columns.
  1645. libraries/rarfile: Wrap README at 72 columns.
  1646. libraries/reportlab: Wrap README at 72 columns.
  1647. libraries/rhino: Wrap README at 72 columns.
  1648. libraries/robin-map: Wrap README at 72 columns.
  1649. libraries/rpyc: Wrap README at 72 columns.
  1650. libraries/rrdtool: Wrap README at 72 columns.
  1651. libraries/rtorrent-python: Wrap README at 72 columns.
  1652. libraries/rudiments: Wrap README at 72 columns.
  1653. libraries/setproctitle: Wrap README at 72 columns.
  1654. libraries/skalibs: Updated for version 2.11.2.0
  1655. libraries/soundtouch: Wrap README at 72 columns.
  1656. libraries/spread-sheet-widget: Wrap README at 72 columns.
  1657. libraries/sqlpp11: Add network warning to README.
  1658. libraries/tDOM: Wrap README at 72 columns.
  1659. libraries/tbb: Wrap README at 72 columns.
  1660. libraries/tinyxml2: Wrap README at 72 columns.
  1661. libraries/totem-pl-parser: Wrap README at 72 columns.
  1662. libraries/tsocks: Wrap README at 72 columns.
  1663. libraries/ulfius: updated for version 2.7.8
  1664. libraries/unibilium: Wrap README at 72 columns.
  1665. libraries/unixODBC: Wrap README at 72 columns.
  1666. libraries/urdfdom_headers: Wrap README at 72 columns.
  1667. libraries/varconf: Wrap README at 72 columns.
  1668. libraries/volk: Wrap README at 72 columns.
  1669. libraries/web.py: Wrap README at 72 columns.
  1670. libraries/wv: Wrap README at 72 columns.
  1671. libraries/wxGTK3: Wrap README at 72 columns.
  1672. libraries/wxGTK: Wrap README at 72 columns.
  1673. libraries/wxPython3: Wrap README at 72 columns.
  1674. libraries/wxPython4: Wrap README at 72 columns.
  1675. libraries/wxPython: Wrap README at 72 columns.
  1676. libraries/wxX11: Wrap README at 72 columns.
  1677. libraries/xerces-c: Fix 32bit build.
  1678. libraries/xforms: Wrap README at 72 columns.
  1679. libraries/xmlrpc-c: Wrap README at 72 columns.
  1680. libraries/yaz: Wrap README at 72 columns.
  1681. libraries/yder: updated for version 1.4.15
  1682. libraries/zfec: Wrap README at 72 columns.
  1683. libraries/zziplib: Wrap README at 72 columns.
  1684. misc/ardesia: Wrap README at 72 columns.
  1685. misc/asr-manpages: Wrap README at 72 columns.
  1686. misc/bchunk: Wrap README at 72 columns.
  1687. misc/beep: Wrap README at 72 columns.
  1688. misc/biosdisk: Wrap README at 72 columns.
  1689. misc/boncuk: Wrap README at 72 columns.
  1690. misc/bsdmainutils: Wrap README at 72 columns.
  1691. misc/ccze: Wrap README at 72 columns.
  1692. misc/chm2pdf: Wrap README at 72 columns.
  1693. misc/cksfv: Wrap README at 72 columns.
  1694. misc/clawsker: Wrap README at 72 columns.
  1695. misc/dcc: Wrap README at 72 columns.
  1696. misc/dmg2img: Update email
  1697. misc/drg2sbg: Wrap README at 72 columns.
  1698. misc/dvtm: Wrap README at 72 columns.
  1699. misc/dwdiff: Wrap README at 72 columns.
  1700. misc/figlet-contributed: Wrap README at 72 columns.
  1701. misc/funny-manpages: Wrap README at 72 columns.
  1702. misc/g15composer: Wrap README at 72 columns.
  1703. misc/g15daemon: Wrap README at 72 columns.
  1704. misc/gcp: Wrap README at 72 columns.
  1705. misc/goldencheetah: Wrap README at 72 columns.
  1706. misc/gramps: Wrap README at 72 columns.
  1707. misc/heimdall: Wrap README at 72 columns.
  1708. misc/hoorex: Wrap README at 72 columns.
  1709. misc/kasumi: Wrap README at 72 columns.
  1710. misc/keychain: Wrap README at 72 columns.
  1711. misc/kronometer: Wrap README at 72 columns.
  1712. misc/ltunify: Wrap README at 72 columns.
  1713. misc/mdic: Wrap README at 72 columns.
  1714. misc/megatunix: Wrap README at 72 columns.
  1715. misc/moedict-desktop.app: Wrap README at 72 columns.
  1716. misc/mosquitto: Wrap README at 72 columns.
  1717. misc/myclippings: Wrap README at 72 columns.
  1718. misc/par2cmdline-tbb: Wrap README at 72 columns.
  1719. misc/par2cmdline: Wrap README at 72 columns.
  1720. misc/projectM: Wrap README at 72 columns.
  1721. misc/recode: Wrap README at 72 columns.
  1722. misc/rsnapshot: Wrap README at 72 columns.
  1723. misc/solunar: Wrap README at 72 columns.
  1724. misc/subsurface: Wrap README at 72 columns.
  1725. misc/sunwait: Wrap README at 72 columns.
  1726. misc/torrentinfo: Wrap README at 72 columns.
  1727. misc/weather: Wrap README at 72 columns.
  1728. misc/xdelta: Wrap README at 72 columns.
  1729. misc/xwinwrap: Wrap README at 72 columns.
  1730. misc/yara: Wrap README at 72 columns.
  1731. misc/ykpers: Wrap README at 72 columns.
  1732. multimedia/HandBrake: Wrap README at 72 columns.
  1733. multimedia/Mopidy: Wrap README at 72 columns.
  1734. multimedia/OpenLP: Wrap README at 72 columns.
  1735. multimedia/SimpleSysexxer: Wrap README at 72 columns.
  1736. multimedia/abcMIDI: Wrap README at 72 columns.
  1737. multimedia/anyremote: Wrap README at 72 columns.
  1738. multimedia/audiopreview: Wrap README at 72 columns.
  1739. multimedia/avidemux: Wrap README at 72 columns.
  1740. multimedia/castnow: Add network warning to README.
  1741. multimedia/ccxstream: Wrap README at 72 columns.
  1742. multimedia/dirac: Wrap README at 72 columns.
  1743. multimedia/droidcam: Wrap README at 72 columns.
  1744. multimedia/dsmidiwifi: Wrap README at 72 columns.
  1745. multimedia/dvblast: Wrap README at 72 columns.
  1746. multimedia/dvdrip: Wrap README at 72 columns.
  1747. multimedia/exaile: Wrap README at 72 columns.
  1748. multimedia/flvtool2: Wrap README at 72 columns.
  1749. multimedia/gaupol: Wrap README at 72 columns.
  1750. multimedia/genpuid: Wrap README at 72 columns.
  1751. multimedia/gmidimonitor: Wrap README at 72 columns.
  1752. multimedia/gmtp: Wrap README at 72 columns.
  1753. multimedia/gnome-mplayer: Wrap README at 72 columns.
  1754. multimedia/gnupod: Wrap README at 72 columns.
  1755. multimedia/gpac: Wrap README at 72 columns.
  1756. multimedia/gst-plugins-ugly: Wrap README at 72 columns.
  1757. multimedia/gst0-plugins-ugly: Wrap README at 72 columns.
  1758. multimedia/iat: Wrap README at 72 columns.
  1759. multimedia/inputstream.adaptive: Remove template comment.
  1760. multimedia/ivtv-utils: Wrap README at 72 columns.
  1761. multimedia/jlscp: Wrap README at 72 columns.
  1762. multimedia/minitube: Wrap README at 72 columns.
  1763. multimedia/mjpegtools: Update email
  1764. multimedia/mjpegtools: Wrap README at 72 columns.
  1765. multimedia/mjpegtools: fix email
  1766. multimedia/mp3fm: Wrap README at 72 columns.
  1767. multimedia/mpgtx: Wrap README at 72 columns.
  1768. multimedia/musixmatch: Make slack-desc ASCII.
  1769. multimedia/obs-studio: Updated for version 27.2.3
  1770. multimedia/obs-studio: Wrap README at 72 columns.
  1771. multimedia/oggconvert: Wrap README at 72 columns.
  1772. multimedia/oggvideotools: Wrap README at 72 columns.
  1773. multimedia/opencaster: Wrap README at 72 columns.
  1774. multimedia/parole: Wrap README at 72 columns.
  1775. multimedia/ripperX: Wrap README at 72 columns.
  1776. multimedia/smpeg: Wrap README at 72 columns.
  1777. multimedia/spek: Wrap README at 72 columns.
  1778. multimedia/subtitleeditor: Wrap README at 72 columns.
  1779. multimedia/subtitleripper: Wrap README at 72 columns.
  1780. multimedia/tovid: Update email
  1781. multimedia/tovid: Wrap README at 72 columns.
  1782. multimedia/transcode: Wrap README at 72 columns.
  1783. multimedia/tstools: Wrap README at 72 columns.
  1784. multimedia/tvtime: Wrap README at 72 columns.
  1785. multimedia/ucview: Wrap README at 72 columns.
  1786. multimedia/vcdimager: Wrap README at 72 columns.
  1787. multimedia/vlc: Wrap README at 72 columns.
  1788. multimedia/wxcam: Update email
  1789. multimedia/wxcam: Wrap README at 72 columns.
  1790. multimedia/xjadeo: Wrap README at 72 columns.
  1791. multimedia/xmltv: Wrap README at 72 columns.
  1792. multimedia/xvid4conf: Wrap README at 72 columns.
  1793. multimedia/yarock: Wrap README at 72 columns.
  1794. multimedia/zvbi: Wrap README at 72 columns.
  1795. network/3proxy: Wrap README at 72 columns.
  1796. network/CherryMusic: Wrap README at 72 columns.
  1797. network/ClusterSSH: Wrap README at 72 columns.
  1798. network/DarTui: Wrap README at 72 columns.
  1799. network/Flootty: Wrap README at 72 columns.
  1800. network/Free-Cinema: Wrap README at 72 columns.
  1801. network/GhostInTheMail: Wrap README at 72 columns.
  1802. network/LOIC: Wrap README at 72 columns.
  1803. network/NetworkManager-l2tp: Wrap README at 72 columns.
  1804. network/Pafy: Wrap README at 72 columns.
  1805. network/PyRSS2Gen: Wrap README at 72 columns.
  1806. network/Pyrit: Wrap README at 72 columns.
  1807. network/SoulseekQt: Wrap README at 72 columns.
  1808. network/TeamSpeak3: Update email
  1809. network/WhatWeb: Wrap README at 72 columns.
  1810. network/aMule: Wrap README at 72 columns.
  1811. network/amap: Wrap README at 72 columns.
  1812. network/amavisd-new: Wrap README at 72 columns.
  1813. network/arno-iptables-firewall: Wrap README at 72 columns.
  1814. network/avahi: Wrap README at 72 columns.
  1815. network/awstats: Wrap README at 72 columns.
  1816. network/bip: Wrap README at 72 columns.
  1817. network/bitlbee: Wrap README at 72 columns.
  1818. network/brave-browser: Updated for version 1.35.112
  1819. network/btpd: Wrap README at 72 columns.
  1820. network/c-toxcore: Wrap README at 72 columns.
  1821. network/cacti: Wrap README at 72 columns.
  1822. network/cadaver: Wrap README at 72 columns.
  1823. network/cherokee: Wrap README at 72 columns.
  1824. network/clamav-unofficial-sigs: Wrap README at 72 columns.
  1825. network/claws-mail: Wrap README at 72 columns.
  1826. network/cmdiag: Wrap README at 72 columns.
  1827. network/cni-plugins: Add network warning to README.
  1828. network/cni-plugins: Wrap README at 72 columns.
  1829. network/comgt: Wrap README at 72 columns.
  1830. network/corkscrew: Wrap README at 72 columns.
  1831. network/csync: Wrap README at 72 columns.
  1832. network/ctorrent: Wrap README at 72 columns.
  1833. network/darkhttpd: Wrap README at 72 columns.
  1834. network/darkstat: Wrap README at 72 columns.
  1835. network/ddgr: Wrap README at 72 columns.
  1836. network/deluge: Wrap README at 72 columns.
  1837. network/dillo: Wrap README at 72 columns.
  1838. network/dirb: Wrap README at 72 columns.
  1839. network/dma: Wrap README at 72 columns.
  1840. network/dmitry: Wrap README at 72 columns.
  1841. network/dnscrypt-proxy: Wrap README at 72 columns.
  1842. network/dnscrypt-wrapper: Wrap README at 72 columns.
  1843. network/dnsmap: Wrap README at 72 columns.
  1844. network/dnstop: Wrap README at 72 columns.
  1845. network/dovecot-pigeonhole: Wrap README at 72 columns.
  1846. network/driftnet: Wrap README at 72 columns.
  1847. network/dropbox: Updated for version 144.4.4491.
  1848. network/dsniff: Wrap README at 72 columns.
  1849. network/easyrsa: Wrap README at 72 columns.
  1850. network/efax-gtk: Wrap README at 72 columns.
  1851. network/efax: Remove template comment.
  1852. network/efax: Wrap README at 72 columns.
  1853. network/eiskaltdcpp: Wrap README at 72 columns.
  1854. network/emailrelay: Wrap README at 72 columns.
  1855. network/enet: Wrap README at 72 columns.
  1856. network/etherape: Wrap README at 72 columns.
  1857. network/etherpad-lite: Add network warning to README.
  1858. network/ettercap: Wrap README at 72 columns.
  1859. network/exim: Wrap README at 72 columns.
  1860. network/fdm: Wrap README at 72 columns.
  1861. network/filezilla: Wrap README at 72 columns.
  1862. network/firehol: Wrap README at 72 columns.
  1863. network/flvstreamer: Wrap README at 72 columns.
  1864. network/fping: Wrap README at 72 columns.
  1865. network/freeradius-server: Wrap README at 72 columns.
  1866. network/gajim: Wrap README at 72 columns.
  1867. network/geoipupdate: Wrap README at 72 columns.
  1868. network/glewlwyd: Wrap README at 72 columns.
  1869. network/gns3: Wrap README at 72 columns.
  1870. network/googler: Wrap README at 72 columns.
  1871. network/gophernicus: Move setup instructions to README.SBo.
  1872. network/graphite-carbon: Wrap README at 72 columns.
  1873. network/gtk-gnutella: Wrap README at 72 columns.
  1874. network/gui-ufw: Fix broken wrapper scripts.
  1875. network/hamachi: Wrap README at 72 columns.
  1876. network/haproxy: Wrap README at 72 columns.
  1877. network/haskell-network-multicast: Wrap README at 72 columns.
  1878. network/havp: Wrap README at 72 columns.
  1879. network/host-sflow: Wrap README at 72 columns.
  1880. network/hostsblock: Wrap README at 72 columns.
  1881. network/hping3: Wrap README at 72 columns.
  1882. network/httpie: Wrap README at 72 columns.
  1883. network/icinga2: Wrap README at 72 columns.
  1884. network/identicurse: Wrap README at 72 columns.
  1885. network/inadyn: Wrap README at 72 columns.
  1886. network/iodine: Wrap README at 72 columns.
  1887. network/ipcalc: Wrap README at 72 columns.
  1888. network/iperf: Wrap README at 72 columns.
  1889. network/ircd-hybrid: Wrap README at 72 columns.
  1890. network/isync: Wrap README at 72 columns.
  1891. network/jabberd2: Wrap README at 72 columns.
  1892. network/jboss-as: Wrap README at 72 columns.
  1893. network/jitsi: Wrap README at 72 columns.
  1894. network/kivy-garden: Wrap README at 72 columns.
  1895. network/knock: Wrap README at 72 columns.
  1896. network/leafnode: Wrap README at 72 columns.
  1897. network/libmaxminddb: Wrap README at 72 columns.
  1898. network/libnatpmp: Wrap README at 72 columns.
  1899. network/libnfsidmap: Wrap README at 72 columns.
  1900. network/light-firefox: Wrap README at 72 columns.
  1901. network/linphone: Wrap README at 72 columns.
  1902. network/linssid: Wrap README at 72 columns.
  1903. network/livestreamer: Wrap README at 72 columns.
  1904. network/lizardfs: Wrap README at 72 columns.
  1905. network/lxi-tools: Wrap README at 72 columns.
  1906. network/mailman: Wrap README at 72 columns.
  1907. network/mailspring: Updated for version 1.10.1
  1908. network/malheur: Wrap README at 72 columns.
  1909. network/masscan: Wrap README at 72 columns.
  1910. network/megatools: Wrap README at 72 columns.
  1911. network/memcached: Wrap README at 72 columns.
  1912. network/mitmproxy-bin: Update to 15.0 template.
  1913. network/mod_auth_kerb: Wrap README at 72 columns.
  1914. network/mod_chroot: Wrap README at 72 columns.
  1915. network/mod_evasive: Wrap README at 72 columns.
  1916. network/mod_geoip2: Wrap README at 72 columns.
  1917. network/mod_ruid2: Wrap README at 72 columns.
  1918. network/mod_wsgi: Wrap README at 72 columns.
  1919. network/monkey: Wrap README at 72 columns.
  1920. network/mumble-server: Wrap README at 72 columns.
  1921. network/mysecureshell: Wrap README at 72 columns.
  1922. network/nagios: Wrap README at 72 columns.
  1923. network/ncrack: Wrap README at 72 columns.
  1924. network/netcat-openbsd: Update download URL
  1925. network/netcat: Wrap README at 72 columns.
  1926. network/netdiscover: Wrap README at 72 columns.
  1927. network/netdrive-connector: Wrap README at 72 columns.
  1928. network/netqmail: Wrap README at 72 columns.
  1929. network/netsurf: Wrap README at 72 columns.
  1930. network/newsboat: Wrap README at 72 columns.
  1931. network/nextcloud-client: Wrap README at 72 columns.
  1932. network/nginx: Wrap README at 72 columns.
  1933. network/ngrep: Wrap README at 72 columns.
  1934. network/ngrok: Wrap README at 72 columns.
  1935. network/nikto: Wrap README at 72 columns.
  1936. network/nrpe: Wrap README at 72 columns.
  1937. network/nsca: Wrap README at 72 columns.
  1938. network/nsd: Wrap README at 72 columns.
  1939. network/nss-mdns: Wrap README at 72 columns.
  1940. network/nweb: Fix VERSION in script.
  1941. network/oidentd: Wrap README at 72 columns.
  1942. network/onedrive: Updated to version 2.4.16
  1943. network/onionshare: Wrap README at 72 columns.
  1944. network/openconnect: Wrap README at 72 columns.
  1945. network/opendchub: Wrap README at 72 columns.
  1946. network/opendkim: Wrap README at 72 columns.
  1947. network/opendmarc: Wrap README at 72 columns.
  1948. network/openntpd: Wrap README at 72 columns.
  1949. network/opensmtpd: Wrap README at 72 columns.
  1950. network/openvswitch-utils: Wrap README at 72 columns.
  1951. network/owncloud-client: Wrap README at 72 columns.
  1952. network/owncloud-server: Wrap README at 72 columns.
  1953. network/p0f: Wrap README at 72 columns.
  1954. network/pCloudDrive: Wrap README at 72 columns.
  1955. network/packit: Wrap README at 72 columns.
  1956. network/palemoon-bin: Wrap README at 72 columns.
  1957. network/pdns: Remove tabs from README.
  1958. network/periscope: Wrap README at 72 columns.
  1959. network/pflogsumm: Wrap README at 72 columns.
  1960. network/pfqueue: Wrap README at 72 columns.
  1961. network/pgpool-II: Wrap README at 72 columns.
  1962. network/phpmyadmin: Wrap README at 72 columns.
  1963. network/pidgin-nudge: Wrap README at 72 columns.
  1964. network/pidgin-otr: Wrap README at 72 columns.
  1965. network/pidgin-privacy-please: Wrap README at 72 columns.
  1966. network/pidgin-sound: Wrap README at 72 columns.
  1967. network/plowshare: Wrap README at 72 columns.
  1968. network/pmacct: Wrap README at 72 columns.
  1969. network/policyd2: Wrap README at 72 columns.
  1970. network/polipo: Wrap README at 72 columns.
  1971. network/postgrey: Wrap README at 72 columns.
  1972. network/pptpd: Wrap README at 72 columns.
  1973. network/prosody-mod-turncredentials: Wrap README at 72 columns.
  1974. network/prosody-mod-vcard-muc: Wrap README at 72 columns.
  1975. network/protonvpn-cli: Remove template comment.
  1976. network/protonvpn-cli: Update homepage and download link.
  1977. network/proxymini: Wrap README at 72 columns.
  1978. network/proxytunnel: Wrap README at 72 columns.
  1979. network/psad: Wrap README at 72 columns.
  1980. network/psi-plus: Add network warning to README.
  1981. network/qTox: Wrap README at 72 columns.
  1982. network/radvd: Wrap README at 72 columns.
  1983. network/reaver: Wrap README at 72 columns.
  1984. network/rejik: Wrap README at 72 columns.
  1985. network/republicanywhere: Wrap README at 72 columns.
  1986. network/retroshare: Wrap README at 72 columns.
  1987. network/riot-web: Remove tabs from README.
  1988. network/riot-web: Wrap README at 72 columns.
  1989. network/rtl8821ce: Make slack-desc ASCII.
  1990. network/seahub: Wrap README at 72 columns.
  1991. network/shibboleth-sp: Wrap README at 72 columns.
  1992. network/sickrage: Wrap README at 72 columns.
  1993. network/siege: Wrap README at 72 columns.
  1994. network/signal-desktop: Updated for version 5.35.0
  1995. network/silc-toolkit: Wrap README at 72 columns.
  1996. network/skypeforlinux: Wrap README at 72 columns.
  1997. network/slirp4netns: Wrap README at 72 columns.
  1998. network/slowhttptest: Wrap README at 72 columns.
  1999. network/smcroute: Wrap README at 72 columns.
  2000. network/sniffjoke: Wrap README at 72 columns.
  2001. network/snort: Wrap README at 72 columns.
  2002. network/spamassassin: Wrap README at 72 columns.
  2003. network/spambayes: Wrap README at 72 columns.
  2004. network/speedometer: Wrap README at 72 columns.
  2005. network/speedtest-cli: Wrap README at 72 columns.
  2006. network/sqlninja: Wrap README at 72 columns.
  2007. network/sqlrelay: Wrap README at 72 columns.
  2008. network/squid: Wrap README at 72 columns.
  2009. network/squidanalyzer: Wrap README at 72 columns.
  2010. network/sshguard: Wrap README at 72 columns.
  2011. network/sstp-client: Wrap README at 72 columns.
  2012. network/strongswan: Wrap README at 72 columns.
  2013. network/sylpheed: Wrap README at 72 columns.
  2014. network/tahoe-lafs: Wrap README at 72 columns.
  2015. network/tcpflow: Wrap README at 72 columns.
  2016. network/teams: Make slack-desc ASCII.
  2017. network/telegram: Updated for version 3.6.1.
  2018. network/telegram: Wrap README at 72 columns.
  2019. network/thrift: Wrap README at 72 columns.
  2020. network/thttpd: Wrap README at 72 columns.
  2021. network/tinc: Wrap README at 72 columns.
  2022. network/tinyproxy: Wrap README at 72 columns.
  2023. network/tmate: Wrap README at 72 columns.
  2024. network/tor: New maintainer.
  2025. network/toxcore: Wrap README at 72 columns.
  2026. network/translate-shell: Wrap README at 72 columns.
  2027. network/ttcp: Wrap README at 72 columns.
  2028. network/ttdnsd: Wrap README at 72 columns.
  2029. network/tunctl: Wrap README at 72 columns.
  2030. network/turbolift: Wrap README at 72 columns.
  2031. network/ubertooth: Wrap README at 72 columns.
  2032. network/ucspi-tcp: Wrap README at 72 columns.
  2033. network/udpcast: Wrap README at 72 columns.
  2034. network/ufw: Wrap README at 72 columns.
  2035. network/uget-chrome-wrapper: Wrap README at 72 columns.
  2036. network/uget-integrator: Wrap README at 72 columns.
  2037. network/urlgrabber: Wrap README at 72 columns.
  2038. network/urlscan: Wrap README at 72 columns.
  2039. network/urlview: Wrap README at 72 columns.
  2040. network/uudeview: Wrap README at 72 columns.
  2041. network/verlihub: Wrap README at 72 columns.
  2042. network/vmware-horizon-client: Wrap README at 72 columns.
  2043. network/vnstat: Move setup instructions to README.SBo.
  2044. network/vnstat: Wrap README at 72 columns.
  2045. network/vrrpd: Wrap README at 72 columns.
  2046. network/w3af: Wrap README at 72 columns.
  2047. network/webhook: Wrap README at 72 columns.
  2048. network/weighmail: Wrap README at 72 columns.
  2049. network/wendzelnntpd: Remove template comment.
  2050. network/wildfly: Wrap README at 72 columns.
  2051. network/wireshark: Wrap README at 72 columns.
  2052. network/wmget: Wrap README at 72 columns.
  2053. network/wmnotify: Wrap README at 72 columns.
  2054. network/wp-cli: Remove tabs from README.
  2055. network/wrk: Wrap README at 72 columns.
  2056. network/wvdial: Wrap README at 72 columns.
  2057. network/x11spice: Wrap README at 72 columns.
  2058. network/x11vnc: Wrap README at 72 columns.
  2059. network/x2goserver: Wrap README at 72 columns.
  2060. network/xinetd: Wrap README at 72 columns.
  2061. network/xl2tpd: Wrap README at 72 columns.
  2062. network/xnetload: Wrap README at 72 columns.
  2063. network/yadifa: Remove tabs from README.
  2064. network/yate: Wrap README at 72 columns.
  2065. network/youtube-dl-gui: Wrap README at 72 columns.
  2066. network/zabbix_agentd: Wrap README at 72 columns.
  2067. network/zabbix_java_gateway: Wrap README at 72 columns.
  2068. network/zabbix_proxy: Wrap README at 72 columns.
  2069. network/zabbix_server: Wrap README at 72 columns.
  2070. network/zmap: Wrap README at 72 columns.
  2071. network/znc: Wrap README at 72 columns.
  2072. network/zoom-linux: Make slack-desc ASCII.
  2073. office/FreeOffice: Make slack-desc ASCII.
  2074. office/JabRef: Fix BUILD usage.
  2075. office/LanguageTool: Wrap README at 72 columns.
  2076. office/LibreOffice: Remove tabs from README.
  2077. office/LibreOffice: Wrap README at 72 columns.
  2078. office/Ted: Wrap README at 72 columns.
  2079. office/adobe-reader-fontpacks: Wrap README at 72 columns.
  2080. office/aigaion: Wrap README at 72 columns.
  2081. office/anorack: Remove tabs from README.
  2082. office/apvlv: Wrap README at 72 columns.
  2083. office/basket: Wrap README at 72 columns.
  2084. office/briss: Wrap README at 72 columns.
  2085. office/broffice.org: Wrap README at 72 columns.
  2086. office/calibre: Wrap README at 72 columns.
  2087. office/cups-pdf: Wrap README at 72 columns.
  2088. office/devtodo: Wrap README at 72 columns.
  2089. office/ding: Wrap README at 72 columns.
  2090. office/docx2txt: Wrap README at 72 columns.
  2091. office/elyxer: Wrap README at 72 columns.
  2092. office/epdfview: Wrap README at 72 columns.
  2093. office/flowkeeper: Wrap README at 72 columns.
  2094. office/ghostwriter: Remove template comment.
  2095. office/homebank: Wrap README at 72 columns.
  2096. office/htmldoc: Wrap README at 72 columns.
  2097. office/jstock: Wrap README at 72 columns.
  2098. office/keepassxc: Wrap README at 72 columns.
  2099. office/keepnote: Wrap README at 72 columns.
  2100. office/latex2rtf: Wrap README at 72 columns.
  2101. office/lcal: Wrap README at 72 columns.
  2102. office/libreoffice-langpack: Wrap README at 72 columns.
  2103. office/minidjvu: Wrap README at 72 columns.
  2104. office/moneydance: Wrap README at 72 columns.
  2105. office/msee: Add network warning to README.
  2106. office/msee: Wrap README at 72 columns.
  2107. office/mu: Wrap README at 72 columns.
  2108. office/multivalent-tool-pdf: Wrap README at 72 columns.
  2109. office/odt2txt: Wrap README at 72 columns.
  2110. office/pandoc: Wrap README at 72 columns.
  2111. office/pdfpc: Wrap README at 72 columns.
  2112. office/pdftk: Wrap README at 72 columns.
  2113. office/ps2eps: Wrap README at 72 columns.
  2114. office/pstoedit: Wrap README at 72 columns.
  2115. office/pstotext: Wrap README at 72 columns.
  2116. office/pyspread: Wrap README at 72 columns.
  2117. office/scribus: Wrap README at 72 columns.
  2118. office/t-prot: Wrap README at 72 columns.
  2119. office/taskjuggler: Wrap README at 72 columns.
  2120. office/taskopen: Wrap README at 72 columns.
  2121. office/tellico: Wrap README at 72 columns.
  2122. office/text2pdf: Wrap README at 72 columns.
  2123. office/tpp: Wrap README at 72 columns.
  2124. office/traduisons: Wrap README at 72 columns.
  2125. office/trello-cli: Add network warning to README.
  2126. office/tudu: Wrap README at 72 columns.
  2127. office/verbiste: Wrap README at 72 columns.
  2128. office/vmd: Wrap README at 72 columns.
  2129. office/watson: Wrap README at 72 columns.
  2130. office/xmind: Wrap README at 72 columns.
  2131. perl/perl-Bit-Vector: Wrap README at 72 columns.
  2132. perl/perl-CGI: Wrap README at 72 columns.
  2133. perl/perl-CPAN-Changes: Wrap README at 72 columns.
  2134. perl/perl-Carp-Clan: Wrap README at 72 columns.
  2135. perl/perl-Class-Gomor: Wrap README at 72 columns.
  2136. perl/perl-Config-File: Wrap README at 72 columns.
  2137. perl/perl-Config-IniFiles: Wrap README at 72 columns.
  2138. perl/perl-Convert-ASN1: Wrap README at 72 columns.
  2139. perl/perl-Crypt-Blowfish_PP: Wrap README at 72 columns.
  2140. perl/perl-Crypt-CAST5: Wrap README at 72 columns.
  2141. perl/perl-Crypt-CBC: Wrap README at 72 columns.
  2142. perl/perl-Crypt-IDEA: Wrap README at 72 columns.
  2143. perl/perl-Crypt-OpenSSL-AES: Wrap README at 72 columns.
  2144. perl/perl-Crypt-OpenSSL-Guess: Wrap README at 72 columns.
  2145. perl/perl-Crypt-OpenSSL-RSA: Wrap README at 72 columns.
  2146. perl/perl-Crypt-Rijndael: Wrap README at 72 columns.
  2147. perl/perl-Data-UUID: Wrap README at 72 columns.
  2148. perl/perl-Date-Calc: Wrap README at 72 columns.
  2149. perl/perl-DateTime-Format-Builder: Wrap README at 72 columns.
  2150. perl/perl-DateTime-Format-ISO8601: Wrap README at 72 columns.
  2151. perl/perl-DateTime-Format-Strptime: Wrap README at 72 columns.
  2152. perl/perl-Devel-PartialDump: Wrap README at 72 columns.
  2153. perl/perl-Encode-Detect: Wrap README at 72 columns.
  2154. perl/perl-ExtUtils-Install: Wrap README at 72 columns.
  2155. perl/perl-ExtUtils-ModuleMaker: Wrap README at 72 columns.
  2156. perl/perl-File-Copy-Recursive: Wrap README at 72 columns.
  2157. perl/perl-File-Finder: Wrap README at 72 columns.
  2158. perl/perl-File-Remove: Wrap README at 72 columns.
  2159. perl/perl-File-ShareDir-Install: Wrap README at 72 columns.
  2160. perl/perl-File-Slurp: Wrap README at 72 columns.
  2161. perl/perl-Geo-IP: Wrap README at 72 columns.
  2162. perl/perl-Geography-Countries: Wrap README at 72 columns.
  2163. perl/perl-Gtk2-Ex-Simple-List: Wrap README at 72 columns.
  2164. perl/perl-HTML-HTMLDoc: Wrap README at 72 columns.
  2165. perl/perl-IO-All: Wrap README at 72 columns.
  2166. perl/perl-IO-CaptureOutput: Wrap README at 72 columns.
  2167. perl/perl-IO-Socket-INET6: Wrap README at 72 columns.
  2168. perl/perl-IO-Socket-Multicast: Wrap README at 72 columns.
  2169. perl/perl-IO-Tty: Wrap README at 72 columns.
  2170. perl/perl-IO-stringy: Wrap README at 72 columns.
  2171. perl/perl-Inline-C: Wrap README at 72 columns.
  2172. perl/perl-List-AllUtils: Wrap README at 72 columns.
  2173. perl/perl-Log-Dispatch: Wrap README at 72 columns.
  2174. perl/perl-MIME-tools: Wrap README at 72 columns.
  2175. perl/perl-Mail-SPF-Query: Wrap README at 72 columns.
  2176. perl/perl-MailTools: Wrap README at 72 columns.
  2177. perl/perl-Math-Base85: Wrap README at 72 columns.
  2178. perl/perl-Module-Build: Wrap README at 72 columns.
  2179. perl/perl-Mojolicious-Plugin-Humane: Wrap README at 72 columns.
  2180. perl/perl-MooX-StrictConstructor: Wrap README at 72 columns.
  2181. perl/perl-Net-CIDR-Lite: Wrap README at 72 columns.
  2182. perl/perl-Net-CIDR: Wrap README at 72 columns.
  2183. perl/perl-Net-IPv4Addr: Wrap README at 72 columns.
  2184. perl/perl-Net-IPv6Addr: Wrap README at 72 columns.
  2185. perl/perl-Net-Jabber: Wrap README at 72 columns.
  2186. perl/perl-Net-LibIDN: Wrap README at 72 columns.
  2187. perl/perl-Net-Libdnet: Wrap README at 72 columns.
  2188. perl/perl-Net-Pcap: Wrap README at 72 columns.
  2189. perl/perl-Net-RawIP: Wrap README at 72 columns.
  2190. perl/perl-Net-SNMP: Wrap README at 72 columns.
  2191. perl/perl-Net-Telnet: Wrap README at 72 columns.
  2192. perl/perl-Net-Write: Wrap README at 72 columns.
  2193. perl/perl-NetPacket: Wrap README at 72 columns.
  2194. perl/perl-Pegex: Wrap README at 72 columns.
  2195. perl/perl-Proc-PID-File: Wrap README at 72 columns.
  2196. perl/perl-Scope-Guard: Wrap README at 72 columns.
  2197. perl/perl-Socket6: Wrap README at 72 columns.
  2198. perl/perl-Statistics-Descriptive: Wrap README at 72 columns.
  2199. perl/perl-String-PerlIdentifier: Wrap README at 72 columns.
  2200. perl/perl-Switch: Wrap README at 72 columns.
  2201. perl/perl-Syntax-Highlight-Engine-Kate: Wrap README at 72 columns.
  2202. perl/perl-Sys-Mmap: Wrap README at 72 columns.
  2203. perl/perl-TeX-Hyphen: Wrap README at 72 columns.
  2204. perl/perl-Term-ProgressBar: Wrap README at 72 columns.
  2205. perl/perl-Test-LongString: Wrap README at 72 columns.
  2206. perl/perl-Test-PerlTidy: Wrap README at 72 columns.
  2207. perl/perl-Test-RequiresInternet: Wrap README at 72 columns.
  2208. perl/perl-Test-Simple: Wrap README at 72 columns.
  2209. perl/perl-Test-SubCalls: Wrap README at 72 columns.
  2210. perl/perl-Text-CSV_XS: Wrap README at 72 columns.
  2211. perl/perl-Text-Tabs+Wrap: Wrap README at 72 columns.
  2212. perl/perl-TryCatch: Wrap README at 72 columns.
  2213. perl/perl-Unicode-Map8: Wrap README at 72 columns.
  2214. perl/perl-Unicode-Map: Wrap README at 72 columns.
  2215. perl/perl-X11-Protocol-Other: Disable test by default (requires X).
  2216. perl/perl-X11-Protocol-Other: Wrap README at 72 columns.
  2217. perl/perl-XML-XPath: Wrap README at 72 columns.
  2218. perl/perl-YAML-LibYAML: Wrap README at 72 columns.
  2219. perl/perl-digest-hmac: Wrap README at 72 columns.
  2220. perl/perl-encode-locale: Wrap README at 72 columns.
  2221. perl/perl-file-desktopentry: Wrap README at 72 columns.
  2222. perl/perl-file-listing: Wrap README at 72 columns.
  2223. perl/perl-html-parser: Wrap README at 72 columns.
  2224. perl/perl-http-tiny: Wrap README at 72 columns.
  2225. perl/perl-inc-latest: Wrap README at 72 columns.
  2226. perl/perl-x11-protocol: Wrap README at 72 columns.
  2227. python/Baker: Wrap README at 72 columns.
  2228. python/PyGreSQL: Wrap README at 72 columns.
  2229. python/PyInstaller: Wrap README at 72 columns.
  2230. python/PyPDF2: Wrap README at 72 columns.
  2231. python/PyStemmer: Wrap README at 72 columns.
  2232. python/PythonQt: Wrap README at 72 columns.
  2233. python/RBTools: Wrap README at 72 columns.
  2234. python/WebHelpers: Removed, replaced by WebHelpers2 on python3-webhelpers2
  2235. python/XlsxWriter: Wrap README at 72 columns.
  2236. python/affine: Wrap README at 72 columns.
  2237. python/anyjson: Removed, very old and not in any more REQUIRES
  2238. python/apsw: Wrap README at 72 columns.
  2239. python/argcomplete: Wrap README at 72 columns.
  2240. python/argh: Wrap README at 72 columns.
  2241. python/arrow: Wrap README at 72 columns.
  2242. python/artifacts: Wrap README at 72 columns.
  2243. python/asgiref: Wrap README at 72 columns.
  2244. python/atomicwrites: Wrap README at 72 columns.
  2245. python/backcall: Wrap README at 72 columns.
  2246. python/backports.lzma: Wrap README at 72 columns.
  2247. python/bencode: Wrap README at 72 columns.
  2248. python/biplist: Wrap README at 72 columns.
  2249. python/bleach: Wrap README at 72 columns.
  2250. python/boto3: Wrap README at 72 columns.
  2251. python/boto: Wrap README at 72 columns.
  2252. python/buildbot-worker: updated for version 3.5.0, updated dependencies
  2253. python/cddb-py: Wrap README at 72 columns.
  2254. python/cfgparse: Wrap README at 72 columns.
  2255. python/cheetah3: Make slack-desc ASCII.
  2256. python/cheroot: Wrap README at 72 columns.
  2257. python/click-default-group: Wrap README at 72 columns.
  2258. python/click-didyoumean: Make slack-desc ASCII.
  2259. python/click: Wrap README at 72 columns.
  2260. python/clint: Wrap README at 72 columns.
  2261. python/colorama: Wrap README at 72 columns.
  2262. python/construct: Wrap README at 72 columns.
  2263. python/contextlib2: Make slack-desc ASCII.
  2264. python/contextlib2: Wrap README at 72 columns.
  2265. python/coverage: Wrap README at 72 columns.
  2266. python/cryptography: Wrap README at 72 columns.
  2267. python/cssselect: Wrap README at 72 columns.
  2268. python/defusedxml: Wrap README at 72 columns.
  2269. python/dfdatetime: Wrap README at 72 columns.
  2270. python/dfvfs: Wrap README at 72 columns.
  2271. python/dfwinreg: Wrap README at 72 columns.
  2272. python/django-debug-toolbar: Wrap README at 72 columns.
  2273. python/dotty: Wrap README at 72 columns.
  2274. python/dtfabric: Wrap README at 72 columns.
  2275. python/dukpy: Wrap README at 72 columns.
  2276. python/easygui: Wrap README at 72 columns.
  2277. python/elasticsearch5: Wrap README at 72 columns.
  2278. python/entrypoints: Wrap README at 72 columns.
  2279. python/feedparser: Remove tabs from README.
  2280. python/feedparser: Wrap README at 72 columns.
  2281. python/flask-paginate: Wrap README at 72 columns.
  2282. python/frosted: Wrap README at 72 columns.
  2283. python/hachoir-core: Wrap README at 72 columns.
  2284. python/hachoir-metadata: Wrap README at 72 columns.
  2285. python/hachoir-parser: Wrap README at 72 columns.
  2286. python/hachoir: Wrap README at 72 columns.
  2287. python/ipython_genutils: Wrap README at 72 columns.
  2288. python/josepy: Updated for version 1.13.0.
  2289. python/json-py: Wrap README at 72 columns.
  2290. python/llfuse: Wrap README at 72 columns.
  2291. python/mini-amf: Wrap README at 72 columns.
  2292. python/monotonic: Wrap README at 72 columns.
  2293. python/more-itertools: Wrap README at 72 columns.
  2294. python/mpmath: Wrap README at 72 columns.
  2295. python/msgpack-python: Wrap README at 72 columns.
  2296. python/ndg_httpsclient: Wrap README at 72 columns.
  2297. python/nest_asyncio: Wrap README at 72 columns.
  2298. python/numexpr: Wrap README at 72 columns.
  2299. python/odoo: Changed REQUIRES for python3-psycopg2
  2300. python/parso: Wrap README at 72 columns.
  2301. python/pefile: Wrap README at 72 columns.
  2302. python/phply: Wrap README at 72 columns.
  2303. python/pickleshare: Wrap README at 72 columns.
  2304. python/pillowfight: Wrap README at 72 columns.
  2305. python/pkginfo: Wrap README at 72 columns.
  2306. python/plaso: Changed REQUIRES for python2-pyzmq
  2307. python/poster: Wrap README at 72 columns.
  2308. python/psutil: Wrap README at 72 columns.
  2309. python/pyamf: Wrap README at 72 columns.
  2310. python/pybind11: Updated for version 2.9.1
  2311. python/pybind11: Wrap README at 72 columns.
  2312. python/pycdio: Wrap README at 72 columns.
  2313. python/pychecker: Wrap README at 72 columns.
  2314. python/pycryptopp: Wrap README at 72 columns.
  2315. python/pycxx: Wrap README at 72 columns.
  2316. python/pyflakes: Wrap README at 72 columns.
  2317. python/pygpgme: Wrap README at 72 columns.
  2318. python/pyjwt: Wrap README at 72 columns.
  2319. python/pynzb: Wrap README at 72 columns.
  2320. python/pyqode.cobol: Wrap README at 72 columns.
  2321. python/pyresample: Wrap README at 72 columns.
  2322. python/pysha3: Wrap README at 72 columns.
  2323. python/pysqlite: Wrap README at 72 columns.
  2324. python/pysvn: Wrap README at 72 columns.
  2325. python/pytest-cov: Wrap README at 72 columns.
  2326. python/pytest: Changed REQUIRES for python2-attrs
  2327. python/python-PySnooper: Wrap README at 72 columns.
  2328. python/python-argopt: Wrap README at 72 columns.
  2329. python/python-emoji: Wrap README at 72 columns.
  2330. python/python-fonttools: Updated for version 4.30.0.
  2331. python/python-importlib_metadata: Wrap README at 72 columns.
  2332. python/python-joblib: Wrap README at 72 columns.
  2333. python/python-jsonrpclib: Updated for verson 0.4.3.2.
  2334. python/python-kerberos: Wrap README at 72 columns.
  2335. python/python-ly: Wrap README at 72 columns.
  2336. python/python-magic: Wrap README at 72 columns.
  2337. python/python-markdown-math: Wrap README at 72 columns.
  2338. python/python-musicbrainz2: Wrap README at 72 columns.
  2339. python/python-nbxmpp: Wrap README at 72 columns.
  2340. python/python-neovim: Wrap README at 72 columns.
  2341. python/python-pcapy: Wrap README at 72 columns.
  2342. python/python-precis-i18n: Wrap README at 72 columns.
  2343. python/python-prometheus_client: Wrap README at 72 columns.
  2344. python/python-sh: Wrap README at 72 columns.
  2345. python/python2-attrs: renamed from attrs, updated for version 21.2.0
  2346. python/python2-automat: renamed from Automat, updated for version 20.2.0
  2347. python/python2-pycrypto: Fix PRGNAM in script.
  2348. python/python2-pyzmq: renamed from pyzmq
  2349. python/python2-selectors2: Wrap README at 72 columns.
  2350. python/python2-twisted: updated for version 20.3.0, updated REQUIRES
  2351. python/python3-amqp: Wrap README at 72 columns.
  2352. python/python3-defusedxml: Wrap README at 72 columns.
  2353. python/python3-django: Wrap README at 72 columns.
  2354. python/python3-gitdb2: Wrap README at 72 columns.
  2355. python/python3-hupper: Wrap README at 72 columns.
  2356. python/python3-ipaddr: Wrap README at 72 columns.
  2357. python/python3-isort: Wrap README at 72 columns.
  2358. python/python3-jedi: Changed REQUIRES for python3-parso
  2359. python/python3-kiwisolver: Wrap README at 72 columns.
  2360. python/python3-monotonic: Wrap README at 72 columns.
  2361. python/python3-nltk: Wrap README at 72 columns.
  2362. python/python3-nxt-python: Wrap README at 72 columns.
  2363. python/python3-paginate: Wrap README at 72 columns.
  2364. python/python3-pandas: Wrap README at 72 columns.
  2365. python/python3-parso: renamed from parso
  2366. python/python3-paste: Wrap README at 72 columns.
  2367. python/python3-pexpect: Wrap README at 72 columns.
  2368. python/python3-prompt_toolkit: Wrap README at 72 columns.
  2369. python/python3-psycopg2: renamed from psycopg2
  2370. python/python3-pyjwt: Wrap README at 72 columns.
  2371. python/python3-pylint: Wrap README at 72 columns.
  2372. python/python3-pyparted: Wrap README at 72 columns.
  2373. python/python3-rsa: Make slack-desc ASCII.
  2374. python/python3-setuptools_autover: Wrap README at 72 columns.
  2375. python/python3-tekore: Make slack-desc ASCII.
  2376. python/python3-twisted: Wrap README at 72 columns.
  2377. python/python3-urlobject: Wrap README at 72 columns.
  2378. python/python3-uth: Wrap README at 72 columns.
  2379. python/python3-waitress: Wrap README at 72 columns.
  2380. python/python3-webhelpers2: Wrap README at 72 columns.
  2381. python/pyudev: Wrap README at 72 columns.
  2382. python/readme_renderer: Wrap README at 72 columns.
  2383. python/requirements-detector: Wrap README at 72 columns.
  2384. python/rfc6555: Wrap README at 72 columns.
  2385. python/rsa: Wrap README at 72 columns.
  2386. python/salt: Changed REQUIRES for python2-pyzmq
  2387. python/scikit-learn: Wrap README at 72 columns.
  2388. python/selenium: Wrap README at 72 columns.
  2389. python/send2trash: Wrap README at 72 columns.
  2390. python/service_identity: Changed REQUIRES for python2-attrs
  2391. python/setuptools-scm-git-archive: Wrap README at 72 columns.
  2392. python/simplejson: Wrap README at 72 columns.
  2393. python/snowballstemmer: Wrap README at 72 columns.
  2394. python/sphinxcontrib-applehelp: Wrap README at 72 columns.
  2395. python/sphinxcontrib-devhelp: Wrap README at 72 columns.
  2396. python/sphinxcontrib-jsmath: Wrap README at 72 columns.
  2397. python/sphinxcontrib-qthelp: Wrap README at 72 columns.
  2398. python/sphinxcontrib-serializinghtml: Wrap README at 72 columns.
  2399. python/sphinxcontrib-websupport: Wrap README at 72 columns.
  2400. python/sqlparse: Wrap README at 72 columns.
  2401. python/stopit: Wrap README at 72 columns.
  2402. python/subprocess32: Wrap README at 72 columns.
  2403. python/subuser: Wrap README at 72 columns.
  2404. python/testpath: Wrap README at 72 columns.
  2405. python/timehash: Wrap README at 72 columns.
  2406. python/tinycss: Wrap README at 72 columns.
  2407. python/tox: Wrap README at 72 columns.
  2408. python/traitlets: Wrap README at 72 columns.
  2409. python/trezor: Wrap README at 72 columns.
  2410. python/typed_ast: Wrap README at 72 columns.
  2411. python/vinetto: Wrap README at 72 columns.
  2412. python/waitress: Wrap README at 72 columns.
  2413. python/websocket-client: Wrap README at 72 columns.
  2414. python/werkzeug: Wrap README at 72 columns.
  2415. python/xlutils: Wrap README at 72 columns.
  2416. python/yara-python: Wrap README at 72 columns.
  2417. python/zxcvbn-python: Wrap README at 72 columns.
  2418. ruby/ncurses-ruby: Wrap README at 72 columns.
  2419. ruby/rbenv: Wrap README at 72 columns.
  2420. ruby/ruby-native-package-installer: Wrap README at 72 columns.
  2421. ruby/rubygem-activesupport: Wrap README at 72 columns.
  2422. ruby/rubygem-coderay: Wrap README at 72 columns.
  2423. ruby/rubygem-concurrent-ruby: Wrap README at 72 columns.
  2424. ruby/rubygem-cool.io: Wrap README at 72 columns.
  2425. ruby/rubygem-daemons: Wrap README at 72 columns.
  2426. ruby/rubygem-diff-lcs: Wrap README at 72 columns.
  2427. ruby/rubygem-fastercsv: Wrap README at 72 columns.
  2428. ruby/rubygem-file-tail: Wrap README at 72 columns.
  2429. ruby/rubygem-fluentd: Wrap README at 72 columns.
  2430. ruby/rubygem-gtk2: Wrap README at 72 columns.
  2431. ruby/rubygem-highline: Wrap README at 72 columns.
  2432. ruby/rubygem-http_parser.rb: Wrap README at 72 columns.
  2433. ruby/rubygem-manpages: Wrap README at 72 columns.
  2434. ruby/rubygem-msgpack: Wrap README at 72 columns.
  2435. ruby/rubygem-mustache: Wrap README at 72 columns.
  2436. ruby/rubygem-net-ssh: Wrap README at 72 columns.
  2437. ruby/rubygem-optimist: Wrap README at 72 columns.
  2438. ruby/rubygem-ronn: Wrap README at 72 columns.
  2439. ruby/rubygem-rspec-mocks: Wrap README at 72 columns.
  2440. ruby/rubygem-rspec: Wrap README at 72 columns.
  2441. ruby/rubygem-ruby2ruby: Wrap README at 72 columns.
  2442. ruby/rubygem-ruby_parser: Wrap README at 72 columns.
  2443. ruby/rubygem-sass: Wrap README at 72 columns.
  2444. ruby/rubygem-sexp_processor: Wrap README at 72 columns.
  2445. ruby/rubygem-slop3: Wrap README at 72 columns.
  2446. ruby/rubygem-sourcify: Wrap README at 72 columns.
  2447. ruby/rubygem-trogdoro-el4r: Wrap README at 72 columns.
  2448. ruby/rubygem-tzinfo-data: Wrap README at 72 columns.
  2449. ruby/rubygem-xiki: Wrap README at 72 columns.
  2450. system/AnonymousPro: Wrap README at 72 columns.
  2451. system/GentiumPlus: Wrap README at 72 columns.
  2452. system/Iosevka: Updated for version 15.0.2
  2453. system/SavvyCAN: Wrap README at 72 columns.
  2454. system/Sl: Silence sbolint doinst.sh warning.
  2455. system/TLP: Wrap README at 72 columns.
  2456. system/ZoneMinder: Wrap README at 72 columns.
  2457. system/acpi: Wrap README at 72 columns.
  2458. system/adobe-source-code-pro-font: Wrap README at 72 columns.
  2459. system/adobe-source-sans-pro-font: Wrap README at 72 columns.
  2460. system/afuse: Wrap README at 72 columns.
  2461. system/amanda: Wrap README at 72 columns.
  2462. system/apache-activemq: Wrap README at 72 columns.
  2463. system/apache-tomcat: Updated for version 10.0.18.
  2464. system/apache-tomcat: Wrap README at 72 columns.
  2465. system/apachetop: Wrap README at 72 columns.
  2466. system/apcupsd: Wrap README at 72 columns.
  2467. system/apparmor: Wrap README at 72 columns.
  2468. system/artwiz-aleczapka: Wrap README at 72 columns.
  2469. system/artwiz-cursor: Wrap README at 72 columns.
  2470. system/asbt: Wrap README at 72 columns.
  2471. system/aterm: Wrap README at 72 columns.
  2472. system/audit: Wrap README at 72 columns.
  2473. system/augeas: Wrap README at 72 columns.
  2474. system/avfs: Wrap README at 72 columns.
  2475. system/bacula-client: Wrap README at 72 columns.
  2476. system/bacula: Wrap README at 72 columns.
  2477. system/barman: Changed REQUIRES for python3-psycopg2 and python3-dateutil
  2478. system/bcache-tools: Wrap README at 72 columns.
  2479. system/binfmt-support: Wrap README at 72 columns.
  2480. system/bootchart: Wrap README at 72 columns.
  2481. system/btop: Update to 15.0 template.
  2482. system/bubblewrap: Wrap README at 72 columns.
  2483. system/buildah: Wrap README at 72 columns.
  2484. system/bulk_extractor: Wrap README at 72 columns.
  2485. system/burp: Wrap README at 72 columns.
  2486. system/byobu: Wrap README at 72 columns.
  2487. system/capabilities: Wrap README at 72 columns.
  2488. system/caprice32: Wrap README at 72 columns.
  2489. system/ccd2iso: Wrap README at 72 columns.
  2490. system/ccid: Wrap README at 72 columns.
  2491. system/cdemu-client: Wrap README at 72 columns.
  2492. system/cdrkit: Wrap README at 72 columns.
  2493. system/cdw: Update email
  2494. system/cdw: Wrap README at 72 columns.
  2495. system/chronograf: Make slack-desc ASCII.
  2496. system/clamav: Wrap README at 72 columns.
  2497. system/cndrvcups-capt: Wrap README at 72 columns.
  2498. system/cndrvcups-common: Wrap README at 72 columns.
  2499. system/cnijfilter2: Wrap README at 72 columns.
  2500. system/cntlm: Wrap README at 72 columns.
  2501. system/commons-daemon: Wrap README at 72 columns.
  2502. system/conmon: Wrap README at 72 columns.
  2503. system/containerd: Add network warning to README.
  2504. system/coolkey: Wrap README at 72 columns.
  2505. system/corosync: Wrap README at 72 columns.
  2506. system/crashplan: Wrap README at 72 columns.
  2507. system/crmsh: Wrap README at 72 columns.
  2508. system/cronie: Wrap README at 72 columns.
  2509. system/cwtex-q-fonts-TTFs: Wrap README at 72 columns.
  2510. system/daemontools: Wrap README at 72 columns.
  2511. system/dahdi-complete: Wrap README at 72 columns.
  2512. system/davfs2: Wrap README at 72 columns.
  2513. system/debootstrap: Wrap README at 72 columns.
  2514. system/diskscan: Wrap README at 72 columns.
  2515. system/disksearch: Wrap README at 72 columns.
  2516. system/displaylink: Wrap README at 72 columns.
  2517. system/dlm: Wrap README at 72 columns.
  2518. system/dosbox-dev: Move setup instructions to README.SBo.
  2519. system/dosbox-dev: Wrap README at 72 columns.
  2520. system/dosbox-dev: updated for version 0.75_pre4473
  2521. system/drbd-utils: Wrap README at 72 columns.
  2522. system/driconf: Wrap README at 72 columns.
  2523. system/dstat: Wrap README at 72 columns.
  2524. system/duplicity: Wrap README at 72 columns.
  2525. system/dust: Wrap README at 72 columns.
  2526. system/dvdisaster: Wrap README at 72 columns.
  2527. system/ecryptfs-utils: Wrap README at 72 columns.
  2528. system/efitools: Wrap README at 72 columns.
  2529. system/eibd: Wrap README at 72 columns.
  2530. system/elasticsearch: Wrap README at 72 columns.
  2531. system/eltclsh: Wrap README at 72 columns.
  2532. system/eventlog: Wrap README at 72 columns.
  2533. system/execline: Updated for version 2.8.3.0
  2534. system/exfat-utils: Wrap README at 72 columns.
  2535. system/fence-agents: Wrap README at 72 columns.
  2536. system/findpkg: Wrap README at 72 columns.
  2537. system/fio: Wrap README at 72 columns.
  2538. system/firejail: Wrap README at 72 columns.
  2539. system/firmware-gobi-2000: Wrap README at 72 columns.
  2540. system/foomatic-db-engine: Wrap README at 72 columns.
  2541. system/foomatic-db: Wrap README at 72 columns.
  2542. system/foremost: Wrap README at 72 columns.
  2543. system/freeswitch: Wrap README at 72 columns.
  2544. system/fslint: Wrap README at 72 columns.
  2545. system/fswatch: Wrap README at 72 columns.
  2546. system/fuse-exfat: Wrap README at 72 columns.
  2547. system/gammu: Wrap README at 72 columns.
  2548. system/gconf-editor: Wrap README at 72 columns.
  2549. system/gdmap: Wrap README at 72 columns.
  2550. system/gigolo: Wrap README at 72 columns.
  2551. system/glances: Wrap README at 72 columns.
  2552. system/gnu-unifont: Updated for version 14.0.02.
  2553. system/gnu-unifont: Wrap README at 72 columns.
  2554. system/go-mtree: Add network warning to README.
  2555. system/gpart: Wrap README at 72 columns.
  2556. system/heartbeat: Wrap README at 72 columns.
  2557. system/hstr: Wrap README at 72 columns.
  2558. system/hwinfo: Wrap README at 72 columns.
  2559. system/i8kutils: Wrap README at 72 columns.
  2560. system/icingaweb2: Wrap README at 72 columns.
  2561. system/idle3-tools: Wrap README at 72 columns.
  2562. system/influxdb: Wrap README at 72 columns.
  2563. system/irqbalance: Wrap README at 72 columns.
  2564. system/isight-firmware-tools: Wrap README at 72 columns.
  2565. system/isomaster: Wrap README at 72 columns.
  2566. system/jdiskreport: Wrap README at 72 columns.
  2567. system/kapacitor: Wrap README at 72 columns.
  2568. system/kbfs: Wrap README at 72 columns.
  2569. system/kc: Remove tabs from README.
  2570. system/kc: Wrap README at 72 columns.
  2571. system/ksh-openbsd: Wrap README at 72 columns.
  2572. system/laptop-mode-tools: Wrap README at 72 columns.
  2573. system/letsencrypt: Updated for version 1.25.0.
  2574. system/letsencrypt: Wrap README at 72 columns.
  2575. system/libnatspec: Wrap README at 72 columns.
  2576. system/local-persist: Add network warning to README.
  2577. system/locust: Wrap README at 72 columns.
  2578. system/logkeys: Wrap README at 72 columns.
  2579. system/luckybackup: Wrap README at 72 columns.
  2580. system/lxsplit: Wrap README at 72 columns.
  2581. system/mailfromd: Wrap README at 72 columns.
  2582. system/mailutils: Wrap README at 72 columns.
  2583. system/makepp: Fix broken symlinks.
  2584. system/makeself: Wrap README at 72 columns.
  2585. system/mcrypt: Wrap README at 72 columns.
  2586. system/memtest86+: Wrap README at 72 columns.
  2587. system/memtest86: Wrap README at 72 columns.
  2588. system/microcode_ctl: Wrap README at 72 columns.
  2589. system/monit: Wrap README at 72 columns.
  2590. system/monitoring-plugins: Wrap README at 72 columns.
  2591. system/motion: Wrap README at 72 columns.
  2592. system/mpich: Wrap README at 72 columns.
  2593. system/msr-tools: Wrap README at 72 columns.
  2594. system/multiload-ng: Wrap README at 72 columns.
  2595. system/multitail: Wrap README at 72 columns.
  2596. system/munin-node: Wrap README at 72 columns.
  2597. system/musl: Wrap README at 72 columns.
  2598. system/nagios-plugins: Wrap README at 72 columns.
  2599. system/nagvis: Wrap README at 72 columns.
  2600. system/nano-syntax-highlighting: Wrap README at 72 columns.
  2601. system/nbench: Wrap README at 72 columns.
  2602. system/netatop: Wrap README at 72 columns.
  2603. system/nix: Wrap README at 72 columns.
  2604. system/nmon: Wrap README at 72 columns.
  2605. system/noto-emoji: Wrap README at 72 columns.
  2606. system/nsca-ng: Wrap README at 72 columns.
  2607. system/nss_ldap: Wrap README at 72 columns.
  2608. system/nut: Wrap README at 72 columns.
  2609. system/nvidia-legacy340-kernel: Wrap README at 72 columns.
  2610. system/ohsnap: Wrap README at 72 columns.
  2611. system/opendoas: Handle environment BUILD better.
  2612. system/openrc: Wrap README at 72 columns.
  2613. system/opensc: Wrap README at 72 columns.
  2614. system/ossec-agent: Wrap README at 72 columns.
  2615. system/ossec-local: Wrap README at 72 columns.
  2616. system/ossec-server: Wrap README at 72 columns.
  2617. system/otf-hermit: Wrap README at 72 columns.
  2618. system/pacemaker: Wrap README at 72 columns.
  2619. system/pass-otp: Wrap README at 72 columns.
  2620. system/passwdqc: Wrap README at 72 columns.
  2621. system/password-store: Wrap README at 72 columns.
  2622. system/patool: Wrap README at 72 columns.
  2623. system/pause: Wrap README at 72 columns.
  2624. system/pbzip2: Wrap README at 72 columns.
  2625. system/pcsc-lite: Wrap README at 72 columns.
  2626. system/pcsc-tools: Wrap README at 72 columns.
  2627. system/percona-toolkit: Wrap README at 72 columns.
  2628. system/phpsysinfo: Wrap README at 72 columns.
  2629. system/picocom: Wrap README at 72 columns.
  2630. system/pixma: Remove tabs from README.
  2631. system/pixma: Wrap README at 72 columns.
  2632. system/plan9port: Remove tabs from README.
  2633. system/plan9port: Wrap README at 72 columns.
  2634. system/podman: Wrap README at 72 columns.
  2635. system/porg: Wrap README at 72 columns.
  2636. system/procinfo-ng: Wrap README at 72 columns.
  2637. system/prometheus: Updated to version 2.34.0
  2638. system/pwgen: Wrap README at 72 columns.
  2639. system/pwman: Wrap README at 72 columns.
  2640. system/pwsafe: Wrap README at 72 columns.
  2641. system/qdirstat: Wrap README at 72 columns.
  2642. system/qemu: Wrap README at 72 columns.
  2643. system/qtgzmanager: Wrap README at 72 columns.
  2644. system/ranger: Wrap README at 72 columns.
  2645. system/rar2fs: Wrap README at 72 columns.
  2646. system/rear: Wrap README at 72 columns.
  2647. system/recoverdm: Wrap README at 72 columns.
  2648. system/refind: Wrap README at 72 columns.
  2649. system/rename: Wrap README at 72 columns.
  2650. system/resource-agents: Wrap README at 72 columns.
  2651. system/rhash: Wrap README at 72 columns.
  2652. system/rkhunter: Wrap README at 72 columns.
  2653. system/rng-tools: Wrap README at 72 columns.
  2654. system/runit-services: Wrap README at 72 columns.
  2655. system/runit: Wrap README at 72 columns.
  2656. system/rush: Wrap README at 72 columns.
  2657. system/s3ql: Wrap README at 72 columns.
  2658. system/s6-linux-init: Updated for version 1.0.7.3
  2659. system/s6: Updated for version 2.11.1.0
  2660. system/saleae-logic: Wrap README at 72 columns.
  2661. system/samhain: Wrap README at 72 columns.
  2662. system/sargon: Add network warning to README.
  2663. system/sbbdep: Wrap README at 72 columns.
  2664. system/sbotools: Wrap README at 72 columns.
  2665. system/sboui: Wrap README at 72 columns.
  2666. system/scalpel: Wrap README at 72 columns.
  2667. system/scangearmp2: Wrap README at 72 columns.
  2668. system/scanmem: Wrap README at 72 columns.
  2669. system/schedtool: Wrap README at 72 columns.
  2670. system/sdltrs: Wrap README at 72 columns.
  2671. system/sentimental-skk: Wrap README at 72 columns.
  2672. system/signify: Wrap README at 72 columns.
  2673. system/skim: Wrap README at 72 columns.
  2674. system/skopeo: Wrap README at 72 columns.
  2675. system/slack-osquery: Fix HOMEPAGE.
  2676. system/slack-osquery: Wrap README at 72 columns.
  2677. system/smart: Wrap README at 72 columns.
  2678. system/socklog: Wrap README at 72 columns.
  2679. system/softhsm: Wrap README at 72 columns.
  2680. system/splix: Wrap README at 72 columns.
  2681. system/sqlcipher: Wrap README at 72 columns.
  2682. system/sqldiff: Wrap README at 72 columns.
  2683. system/squidclamav: Move setup instructions to README.SBo.
  2684. system/srm: Wrap README at 72 columns.
  2685. system/sudosh2: Wrap README at 72 columns.
  2686. system/sunflower: Fix VERSION in script.
  2687. system/sysdig: Wrap README at 72 columns.
  2688. system/syslog-ng: Wrap README at 72 columns.
  2689. system/system76-io-dkms: Wrap README at 72 columns.
  2690. system/tagainijisho: Updated for version 1.1.93.
  2691. system/telegraf: Make slack-desc ASCII.
  2692. system/telegraf: Wrap README at 72 columns.
  2693. system/termenu: Wrap README at 72 columns.
  2694. system/terminator: Wrap README at 72 columns.
  2695. system/terminology: Wrap README at 72 columns.
  2696. system/thermald: Wrap README at 72 columns.
  2697. system/thin-provisioning-tools: Wrap README at 72 columns.
  2698. system/thinkfan: Wrap README at 72 columns.
  2699. system/tinycdb: Wrap README at 72 columns.
  2700. system/tm: Move setup instructions to README.SBo.
  2701. system/tm: Wrap README at 72 columns.
  2702. system/trashy: Clean up build.
  2703. system/ts: Wrap README at 72 columns.
  2704. system/ttf-lato: Wrap README at 72 columns.
  2705. system/ttop: Wrap README at 72 columns.
  2706. system/tty2gif: Wrap README at 72 columns.
  2707. system/ttygif: Wrap README at 72 columns.
  2708. system/twin: Wrap README at 72 columns.
  2709. system/unace: Wrap README at 72 columns.
  2710. system/unhide: Wrap README at 72 columns.
  2711. system/unison: Wrap README at 72 columns.
  2712. system/unp: Wrap README at 72 columns.
  2713. system/uptimed: Wrap README at 72 columns.
  2714. system/usbrelay: Wrap README at 72 columns.
  2715. system/usbview: Wrap README at 72 columns.
  2716. system/vagrant: Wrap README at 72 columns.
  2717. system/vhba-module: Wrap README at 72 columns.
  2718. system/virt-manager: Wrap README at 72 columns.
  2719. system/volatility: Wrap README at 72 columns.
  2720. system/wangfonts: Wrap README at 72 columns.
  2721. system/webcore-fonts: Wrap README at 72 columns.
  2722. system/webmin: Wrap README at 72 columns.
  2723. system/wiimms-iso-tools: Wrap README at 72 columns.
  2724. system/wmconfig: Wrap README at 72 columns.
  2725. system/wmfsm: Wrap README at 72 columns.
  2726. system/wqy-microhei-font-ttf: Wrap README at 72 columns.
  2727. system/x86_energy_perf_policy: Wrap README at 72 columns.
  2728. system/xbindkeys: Wrap README at 72 columns.
  2729. system/xen: Wrap README at 72 columns.
  2730. system/xen: x86 is unsupported.
  2731. system/xjobs: Wrap README at 72 columns.
  2732. system/xorgxrdp: Wrap README at 72 columns.
  2733. system/xosd: Wrap README at 72 columns.
  2734. system/xrdp: Wrap README at 72 columns.
  2735. system/xstow: Wrap README at 72 columns.
  2736. system/xtrs: Wrap README at 72 columns.
  2737. system/yaft: Wrap README at 72 columns.
  2738. system/yelp-tools: Wrap README at 72 columns.
  2739. system/yelp: Wrap README at 72 columns.
  2740. system/zfs-auto-snapshot: Wrap README at 72 columns.
  2741. system/zookeeper: Wrap README at 72 columns.
  2742. system/zopfli: Wrap README at 72 columns.
  2743. system/zpaq: Wrap README at 72 columns.
  2744. system/zsh-syntax-highlighting: Wrap README at 72 columns.
  2745. +--------------------------+
  2746. Sat Mar 12 02:29:40 UTC 2022
  2747. academic/cufflinks: Fix info file.
  2748. academic/fiji: Fix VERSION.
  2749. academic/kurso: x86 is unsupported.
  2750. academic/openboard: Fix slack-desc.
  2751. academic/siril: Fix VERSION.
  2752. academic/verilator: Fix slack-desc.
  2753. audio/drumstick: Install doinst.sh.
  2754. audio/nekobee: Fix README.
  2755. audio/non: Fix README.
  2756. audio/wavbreaker: Fix slack-desc.
  2757. desktop/bukubrow: Fix duplicate DOWNLOAD_x86_64 in info file.
  2758. desktop/rofi: Fix DOWNLOAD.
  2759. desktop/zenity: Fix slack-desc.
  2760. development/dotnet-sdk-6.0: Fix slack-desc.
  2761. development/fly: Fix .info file.
  2762. development/jupyter-nbclient: Fix slack-desc.
  2763. development/jupyterlab_pygments: Fix slack-desc.
  2764. development/mdbook: Fix missing closing quote.
  2765. development/minikube: Fix .info file.
  2766. development/octant: Fix .info file.
  2767. development/postman: Fix slack-desc.
  2768. development/scikit-build: Fix .info file.
  2769. development/velero: Fix .info file.
  2770. games/0ad: Fix VERSION.
  2771. games/antimicrox: Fix .info file.
  2772. games/endgame-singularity: Fix slack-desc.
  2773. games/sauerbraten: Fix shebang.
  2774. games/zseal: Fix slack-desc.
  2775. graphics/fbgrab: Fix slack-desc.
  2776. graphics/gthumb: Fix slack-desc.
  2777. graphics/img2pdf: Fix slack-desc.
  2778. graphics/mypaint: Fix .info file.
  2779. graphics/nsxiv: Fix shebang.
  2780. graphics/xmedcon: Fix slack-desc.
  2781. graphics/yed: Fix slack-desc.
  2782. haskell/haskell-commonmark: Fix slack-desc.
  2783. haskell/haskell-path: Fix REQUIRES.
  2784. haskell/haskell-th-compat: Fix slack-desc.
  2785. libraries/aspnetcore-runtime-3.1: Fix slack-desc.
  2786. libraries/cyrus-sasl-xoauth2: Fix slack-desc.
  2787. libraries/fuzzylite: Remove empty doinst.sh.
  2788. libraries/libart-lgpl: Fix slack-desc.
  2789. libraries/libeditline: Fix README.
  2790. libraries/libopenmpt: Fix slack-desc.
  2791. libraries/libsoup3: Fix shebang.
  2792. libraries/nv-codec-headers: Fix slack-desc.
  2793. libraries/paho-mqtt: Fix PRGNAM.
  2794. libraries/paho-mqtt: Fix shebang.
  2795. libraries/paho-mqtt: Fix slack-desc.
  2796. libraries/pytaglib: Fix slack-desc.
  2797. libraries/rasqal: Fix slack-desc.
  2798. libraries/toxext: Fix slack-desc.
  2799. misc/gourmet: Fix slack-desc.
  2800. misc/klibc: Fix .info file.
  2801. multimedia/MuseScore: Remove stray trailing spaces.
  2802. multimedia/droidcam: Fix slack-desc.
  2803. multimedia/gstreamer0: Fix slack-desc.
  2804. multimedia/kaffeine: Fix slack-desc.
  2805. multimedia/spotify: Fix doinst.sh.
  2806. multimedia/srt-to-vtt-cl: Fix .info file.
  2807. network/bombadillo: Fix doinst.sh.
  2808. network/bombadillo: Fix slack-desc.
  2809. network/efax: Fix .info file.
  2810. network/freedownloadmanager: Fix slack-desc.
  2811. network/ngrok: Fix slack-desc.
  2812. network/palemoon: Fix DOWNLOAD.
  2813. network/prettyping: Fix slack-desc.
  2814. network/prettyping: Fix slack-desc.
  2815. network/tixati: Fix md5sum.
  2816. network/wavemon: Fix overriding VERSION.
  2817. network/x11spice: Fix slack-desc.
  2818. network/zeek: Fix slack-desc.
  2819. office/JabRef: Align to template.
  2820. office/kbibtex: Fix slack-desc.
  2821. perl/perl-Test-Memory-Cycle: Fix slack-desc.
  2822. python/Kallithea: Fix README.
  2823. python/async-timeout: Fix shebang.
  2824. python/async_generator: Fix slack-desc.
  2825. python/cheetah3: Fix slack-desc.
  2826. python/click-repl: Fix slack-desc.
  2827. python/kallithea-frontend: Fix download URL.
  2828. python/nest_asyncio: Fix slack-desc.
  2829. python/python-dbus-next: Fix shebang.
  2830. python/python-socks: Fix shebang.
  2831. python/python-uritemplate: Fix slack-desc.
  2832. python/python2-BeautifulSoup4: Fix slack-desc.
  2833. python/python2-Safe: Fix slack-desc.
  2834. python/python2-Safe: Fix slack-desc.
  2835. python/python2-cryptography: Fix shebang.
  2836. python/python2-mimeparse: Fix slack-desc.
  2837. python/python2-pkgconfig: Fix shebang.
  2838. python/python3-MutatorMath: Fix .info file.
  2839. python/python3-MutatorMath: Fix PRGNAM usage.
  2840. python/python3-aiohttp-socks: Fix shebang.
  2841. python/python3-aiohttp: Fix shebang.
  2842. python/python3-autobahn: Fix slack-desc.
  2843. python/python3-automat: Fix slack-desc.
  2844. python/python3-defcon: Fix .info file.
  2845. python/python3-defcon: Fix PRGNAM usage.
  2846. python/python3-editor: Fix shebang.
  2847. python/python3-fontMath: Fix .info file.
  2848. python/python3-fontMath: Fix PRGNAM usage.
  2849. python/python3-fontParts: Fix .info file.
  2850. python/python3-fontParts: Fix PRGNAM usage.
  2851. python/python3-fontPens: Fix .info file.
  2852. python/python3-fs: Fix .info file.
  2853. python/python3-fs: Fix PRGNAM usage.
  2854. python/python3-ipaddr: Fix slack-desc.
  2855. python/python3-multidict: Fix shebang.
  2856. python/python3-psautohint: Fix PRGNAM usage.
  2857. python/python3-pyclipper: Fix .info file.
  2858. python/python3-pyclipper: Fix PRGNAM usage.
  2859. python/python3-pyjwt: Fix slack-desc.
  2860. python/python3-turbogears2: Fix slack-desc.
  2861. python/python3-twisted: Fix slack-desc.
  2862. python/python3-ufoProcessor: Fix .info file.
  2863. python/python3-ufoProcessor: Fix PRGNAM usage.
  2864. python/python3-ufonormalizer: Fix PRGNAM usage.
  2865. python/python3-waitress: Fix shebang.
  2866. python/python3-webob: Fix slack-desc.
  2867. python/python3-zopfli: Fix .info file.
  2868. python/python3-zopfli: Fix PRGNAM usage.
  2869. python/reedsolo: Fix slack-desc.
  2870. system/btop: Fix shebang.
  2871. system/chkrootkit: Fix VERSION.
  2872. system/conky: Add newline at EOF.
  2873. system/libcloudproviders: Fix shebang.
  2874. system/megacli: Fix slack-desc.
  2875. system/nvidia-legacy390-driver: Adjust slack-desc.
  2876. system/pce: Fix VERSION.
  2877. system/prometheus: Fix slack-desc.
  2878. system/restic: Fix slack-desc.
  2879. system/ticpp: Fix slack-desc.
  2880. +--------------------------+
  2881. Fri Mar 11 13:59:59 UTC 2022
  2882. SlackBuilds repository for Slackware 15.0 is now officially available.
  2883. Here it is! The launch of the SlackBuilds.org repository into the 15.0 era.
  2884. With the help of our amazing community we spent the last year testing, fixing,
  2885. and updating the scripts in the repository for the latest
  2886. Slackware release. We are happy to say that we think it has never been
  2887. better (yes, we say this every time) :-)
  2888. We've made some changes to the template script so be sure to check those out
  2889. before starting to submit new scripts.
  2890. We'd like to take this time to welcome the newest member of our admin team,
  2891. Andrew Clemons (aclemons)
  2892. Thanks to all of our users and maintainers for continuing to do what you
  2893. do - your dedication and attention to detail is greatly appreciated.
  2894. Pull requests and merge requests are welcome
  2895. https://github.com/SlackBuildsOrg/slackbuilds/
  2896. https://gitlab.com/groups/SlackBuilds.org
  2897. Enjoy!
  2898. All: Change SlackBuild shebang to /bin/bash
  2899. All: SlackBuilds run in the directory they are in
  2900. All: Support $PRINT_PACKAGE_NAME env var
  2901. Edits to .mailmap to update entries
  2902. Kvantum-Qt5: Added (Optional kwindowsystem Engine)
  2903. Revert 18dea74a4fc97 - go back to openbabel-2.4.1
  2904. Update CDEmu software series
  2905. Updated to latest upstream 18.0.4
  2906. Upgrade hyperscan slackbuild to 5.4.0
  2907. academic/CAFS_divergence: update Copyright year
  2908. academic/CAPS_coevolution: update Copyright years and README
  2909. academic/Data2FCS: Handle url-encoded filenames.
  2910. academic/Data2FCS: Use zulu-openjdk11.
  2911. academic/Data2FCS: update Copyright year and REQUIRES to adoptopenjdk
  2912. academic/DendroPy: update Copyright year
  2913. academic/EMBASSY: Remove .la files.
  2914. academic/EMBASSY: fix x86 arch and add -fcommon for PHYLIPNEW
  2915. academic/EMBOSS: Remove .la files.
  2916. academic/EMBOSS: Use zulu-openjdk11.
  2917. academic/EMBOSS: fix x86 arch and REQUIRES="adoptopenjdk"
  2918. academic/FCSalyzer: Handle url-encoded filenames.
  2919. academic/FCSalyzer: Use zulu-openjdk11.
  2920. academic/FCSalyzer: update for version 0.9.22-alpha, switch to adoptopenjdk
  2921. academic/Gblocks: Fix download.
  2922. academic/Gblocks: update Copyright year + misc cleanups
  2923. academic/GeoGebra: Use zulu-openjdk7.
  2924. academic/Gridcoin-Research: Fixed dep info in README
  2925. academic/Gridcoin-Research: Patched for boost >= 1.73.0.
  2926. academic/Gridcoin-Research: Updated deps README email
  2927. academic/Gridcoin-Research: Updated for version 5.3.2.0
  2928. academic/Gridcoin-Research: Use MAKEFLAGS to pass numjobs.
  2929. academic/HMMER: Fixed dep info
  2930. academic/HMMER: update for version 3.3.2
  2931. academic/IGV: update for version 2.9.4
  2932. academic/ITK: Downgrade and add GCC 10 support.
  2933. academic/ITK: Update the internal patch for gcc 11.x.
  2934. academic/Kst: Fixed dep info in README
  2935. academic/Kst: Updated for version 20220116_2b8e03e.
  2936. academic/Kst: patch to fix the path for H5Cpp.h file
  2937. academic/MetaPhlAn2: update for version 20201202_git4e4416
  2938. academic/Mnemosyne: Fixed dep info
  2939. academic/Mnemosyne: Removed (requires nonexistent PyQtWebEngine dep).
  2940. academic/PhyML: update Copyright years
  2941. academic/QtiPlot: Removed.
  2942. academic/R: Fixed dep info
  2943. academic/R: Updated for version 4.1.2.
  2944. academic/RAxML: update Copyright year
  2945. academic/RepeatMasker: update for version 4.1.2_p1
  2946. academic/STAR: Updated for version 2.7.9a.
  2947. academic/STAR: Updated to version 2.7.10a
  2948. academic/SeqMonk: update Copyright years
  2949. academic/Shark: Updated for version 4.0.1.
  2950. academic/TreeGraph: Use zulu-openjdk11.
  2951. academic/TreeGraph: switch to adoptopenjdk
  2952. academic/ViennaRNA: Fixed dep info
  2953. academic/ViennaRNA: Remove .la files.
  2954. academic/ViennaRNA: Updated for version 2.4.18.
  2955. academic/ViennaRNA: Updated to version 2.5.0
  2956. academic/WEVOTE: update Copyright years
  2957. academic/Xyce: Removed (ftb).
  2958. academic/ZeGrapher: Fixed dep info
  2959. academic/abella: Removed (ftb).
  2960. academic/abntex: Updated for version 20200715_f0a4d3c.
  2961. academic/aline: update README
  2962. academic/aliview: Use zulu-openjdk11.
  2963. academic/aliview: update for version 1.27 + switch to adoptopenjdk
  2964. academic/amplicon: update README
  2965. academic/amplifx: update Copyright years + web-site
  2966. academic/antiprism: Added -fpermissive to the CXXFLAGS.
  2967. academic/antiprism: Remove .la files.
  2968. academic/archaeopteryx: Use zulu-openjdk11.
  2969. academic/archaeopteryx: update copyright year + switch to adoptopenjdk
  2970. academic/aris: Fix for gcc >= 10.x.
  2971. academic/arka: fix build + misc cleanups
  2972. academic/artha: Updated for version 1.0.5.
  2973. academic/avogadro: Removed.
  2974. academic/bcftools: Update to version 1.15
  2975. academic/bcftools: Updated for version 1.13
  2976. academic/bcftools: Updated to version 1.14
  2977. academic/bedGraphToBigWig: update copyright year
  2978. academic/bedtools: update for version 2.30.0
  2979. academic/bibletime: Fixed dep info
  2980. academic/biopython: update for version 1.78 + fix build with python3
  2981. academic/boinc: Fix wxPython/wxGTK3 conflict.
  2982. academic/boinc: Remove .la files.
  2983. academic/boinc: Updated README and email
  2984. academic/boinc: Use MAKEFLAGS to pass numjobs.
  2985. academic/bowtie2-legacy: Patch source.
  2986. academic/bowtie2: Fixed dep info
  2987. academic/bowtie2: Updated for version 2.4.4.
  2988. academic/bowtie2: Updated to version 2.4.5
  2989. academic/bowtie: update for version 1.3.0
  2990. academic/bpp-core: Removed (ftb + no active maintainer).
  2991. academic/bpp-core: update copyright year
  2992. academic/bpp-phyl-omics: Removed (ftb + no active maintainer).
  2993. academic/bpp-phyl-omics: update copyright year
  2994. academic/bpp-phyl: Removed (ftb + no active maintainer).
  2995. academic/bpp-phyl: update copyright year
  2996. academic/bpp-popgen: Removed (ftb + no active maintainer).
  2997. academic/bpp-popgen: update copyright year
  2998. academic/bpp-seq-omics: Removed (ftb + no active maintainer).
  2999. academic/bpp-seq-omics: update copyright year
  3000. academic/bpp-seq: Removed (ftb + no active maintainer).
  3001. academic/bpp-seq: update copyright year
  3002. academic/bpp1.9-* update copyright year
  3003. academic/bpp1.9-numcalc: Removed (ftb + no active maintainer).
  3004. academic/bpp1.9-phyl: Removed (ftb + no active maintainer).
  3005. academic/bpp1.9-seq: Removed (ftb + no active maintainer).
  3006. academic/bpp1.9-utils: Removed (ftb + no active maintainer).
  3007. academic/bppsuite: Removed (ftb + no active maintainer).
  3008. academic/bppsuite: update copyright year
  3009. academic/bwa: fix build -fcommon
  3010. academic/cadabra2: Fixed dep info
  3011. academic/calc: Updated for version 2.12.9.1.
  3012. academic/calc: Updated for version 2.14.0.14.
  3013. academic/calcoo: Updated copyright
  3014. academic/cap3: Note the need to download the tarballs manually.
  3015. academic/cap3: use x84_64 not opteron64 binary
  3016. academic/cblas: Updated for version 3.10.0
  3017. academic/cdo: Updated for version 2.0.0
  3018. academic/cdo: Updated for version 2.0.1
  3019. academic/cdo: Updated for version 2.0.2
  3020. academic/cdo: Updated for version 2.0.3
  3021. academic/cdo: Updated for version 2.0.4.
  3022. academic/celestia: Updated for version 1.6.2.2
  3023. academic/celestia: Updated maintainer email
  3024. academic/chartgeany: Fixed dep info in README
  3025. academic/chemtool: Change ARCH to i586
  3026. academic/chemtool: Fix build failure with gcc10.
  3027. academic/chemtool: Updated copyright
  3028. academic/cistrome-CEAS: update copyright year
  3029. academic/cistrome-MACS: Handle content-disposition download.
  3030. academic/cistrome-MACS: update copyright years
  3031. academic/cistrome-conductGO: update copyright years
  3032. academic/cistrome-extra: fix download link
  3033. academic/cistrome-mdseqpos: Fix REQUIRES for python2.
  3034. academic/cistrome-mdseqpos: Fix dependency.
  3035. academic/cistrome-mdseqpos: Update DEP.
  3036. academic/cistrome-mdseqpos: fis REQUIRES and build with python2
  3037. academic/clark-ugene: update copyright year
  3038. academic/clustalo: Remove .la files.
  3039. academic/clustalo: update copyright years
  3040. academic/clustalw: misc cleanups
  3041. academic/clustalx: Patch for qt5.
  3042. academic/colin: Fixed dep info
  3043. academic/colin: Use qt4.
  3044. academic/convertall: Fixed dep info
  3045. academic/coq: Removed (ftb).
  3046. academic/coq: Updated for version 8.12.2.
  3047. academic/cufflinks: use binaries
  3048. academic/cutadapt: update copyright years
  3049. academic/cvc4: Fix download.
  3050. academic/dakota: Updated for version 6.15.0.
  3051. academic/datamash: update copyright years
  3052. academic/diamond: update copyright years
  3053. academic/drawtiming: Removed (incompatible with the newer gcc).
  3054. academic/ed-v6: Fix github tarball handling.
  3055. academic/edsim51di: Update DOWNLOAD to https.
  3056. academic/edsim51di: Use zulu-openjdk7.
  3057. academic/engauge: Fixed dep info
  3058. academic/engauge: Updated for version 12.1.
  3059. academic/ent: remove template comment.
  3060. academic/equalx: Fix build for qt5.
  3061. academic/evopedia_qt: Use qt4.
  3062. academic/exonerate: update copyright years
  3063. academic/extrema: Remove .la files.
  3064. academic/fet: Fixed dep info
  3065. academic/fiji: update for version 20201104_1356
  3066. academic/finchtv: update webpage link
  3067. academic/fityk: Fix wxPython/wxGTK3 conflict.
  3068. academic/fityk: Fixed dep info in README
  3069. academic/fityk: Remove .la files.
  3070. academic/fityk: Updated for version 20210925_e022356.
  3071. academic/flann: Fix building with the newer cmake, cleanups.
  3072. academic/flashqard: Removed (no qt4-webkit available).
  3073. academic/flexbar: Update copyright year.
  3074. academic/g3data: Update github tarball handling.
  3075. academic/gchemutils: Disable mozilla/gnumeric plugins (broken).
  3076. academic/gchemutils: Fix typo in script.
  3077. academic/gchemutils: Remove .la files.
  3078. academic/gchemutils: Use the C++14 standard.
  3079. academic/gchemutils: update copyright info
  3080. academic/gcompris-qt: Fixed dep info
  3081. academic/gcompris-qt: Switch to https.
  3082. academic/gcompris-qt: Updated for version 2.0.
  3083. academic/gcompris-qt: Updated for version 2.1.
  3084. academic/gcompris-qt: Updated for version 2.3.
  3085. academic/gcompris: Removed.
  3086. academic/gcompris: Switch to https.
  3087. academic/geda-gaf: Added the new dependency guile1.8.
  3088. academic/geda-gaf: Remove .la files.
  3089. academic/geda-gaf: Updated for version 1.10.2.
  3090. academic/gelemental: Patch for the newer gcc.
  3091. academic/gelemental: Remove .la files.
  3092. academic/gelemental: remove unnecessary patch
  3093. academic/geneconv: misc cleanups
  3094. academic/genius: Added the new dependency vte2.
  3095. academic/genius: Updated for version 1.0.27.
  3096. academic/genometools: Disabled some warnings-as-errors.
  3097. academic/genometools: add patch for gcc10 and fix build
  3098. academic/genpak: misc cleanups
  3099. academic/geomview: Remove .la files.
  3100. academic/gerbv: Fix for gcc >= 10.x.
  3101. academic/gerbv: Remove .la files.
  3102. academic/getdp: Updated for version 3.4.0
  3103. academic/ggobi: Remove .la files.
  3104. academic/ggobi: Updated for version 2.1.11.
  3105. academic/ghemical: Fix build.
  3106. academic/glpk: Don't ship *.la files.
  3107. academic/glpk: Remove .la files.
  3108. academic/gmsh: Updated for version 4.9.2
  3109. academic/gp2fasta: Use qt4.
  3110. academic/gpredict: Fix for gcc >= 10.x.
  3111. academic/gpredict: revert to latest stable version 2.2.1
  3112. academic/gretl: Fixed dep info
  3113. academic/gretl: Remove .la files.
  3114. academic/gretl: Updated for version 2022a.
  3115. academic/gspiceui: Depend on wxGTK3 instead of wxPython3
  3116. academic/gtkwave: Updated for version 3.3.111.
  3117. academic/gwyddion: Fixed dep info in README
  3118. academic/gwyddion: Remove .la files.
  3119. academic/harminv: Remove .la files.
  3120. academic/hyphy/: update for version 2.5.31
  3121. academic/iTest: Use qt4.
  3122. academic/io_lib. update for version 1.14.14
  3123. academic/io_lib: Remove .la files.
  3124. academic/isoelectric-point: Use qt4.
  3125. academic/jalview: Use zulu-openjdk11.
  3126. academic/jalview: update for version 2.11.1.4
  3127. academic/jellyfish_k-mer: Remove .la files.
  3128. academic/jellyfish_k-mer: update copyright years
  3129. academic/jpicedt: Align with template
  3130. academic/kile: Removed (added to Slackware).
  3131. academic/klavaro: Updated for version 3.11.
  3132. academic/kraken: update copyright year
  3133. academic/ktikz: Updated for version 0.13.2.
  3134. academic/kurso: Updated for version 5.2.
  3135. academic/labplot2: Fixed dep info
  3136. academic/labplot2: Fixed dep info in README
  3137. academic/labplot2: Updated for version 2.8.2
  3138. academic/ladr: Don't install *.la file
  3139. academic/ladr: Updated maintainer email
  3140. academic/lalnview: update copyright years
  3141. academic/lapacke: Updated for version 3.10.0
  3142. academic/libghemical: Remove .la files.
  3143. academic/libqalculate: Removed (added to Slackware).
  3144. academic/link-grammar: Remove .la files.
  3145. academic/locarna: Remove .la files.
  3146. academic/locarna: Update copyright year.
  3147. academic/loggerpro: Removed (upstream removed linux builds)
  3148. academic/mafft: update for version 7.475
  3149. academic/mathics: Fix REQUIRES for python2.
  3150. academic/mathics: Fix dependency.
  3151. academic/mathics: Fixed dep info
  3152. academic/mathjax2: Added mathjax2
  3153. academic/mathjax2: Fix github tarball handling.
  3154. academic/matio: Remove .la files.
  3155. academic/meep: Remove .la files.
  3156. academic/megax: update for version 10.2.5_1
  3157. academic/meme-db-gomo: update copyright years
  3158. academic/meme-db-motif: update for version 12.21
  3159. academic/meme-db-tgene: update copyright years
  3160. academic/meme-suite: Fixed dep info
  3161. academic/meme-suite: Remove python3 dep (part of slackware).
  3162. academic/meme-suite: update for version 5.3.3
  3163. academic/mendeleydesktop: Fixed dep info
  3164. academic/mkDSSP. update for version 4.0_git6338c83
  3165. academic/mkDSSP: Updated for version 4.0.3, switch to cmake.
  3166. academic/mpb: Remove .la files.
  3167. academic/mrbayes: update copyright years
  3168. academic/muscle: update copyright years
  3169. academic/ncbi-blast+. update for version 2.11.0
  3170. academic/ncbi-blast+: Fixed dep info
  3171. academic/ncbi-blast: update copyright years
  3172. academic/ncbi-rmblastn: updated copyright years
  3173. academic/nco: Remove .la files.
  3174. academic/nco: Updated for version 5.0.2
  3175. academic/nco: Updated for version 5.0.4
  3176. academic/nco: Updated for version 5.0.5
  3177. academic/nco: Updated for version 5.0.6.
  3178. academic/nco: updated for version 5.0.1
  3179. academic/nco: updated to version 5.0.3
  3180. academic/novocraft: files update.
  3181. academic/octave: Remove Qt4 support
  3182. academic/octave: Updated for version 6.3.0
  3183. academic/octave: Updated for version 6.4.0
  3184. academic/openboard: Added.
  3185. academic/openboard: Fix build on current.
  3186. academic/openboard: Removed quazip-qt5 dep. (part of slackware).
  3187. academic/pal2nal: update copyright years
  3188. academic/paml: fix build (-fcommon)
  3189. academic/pamlX: Use qt4.
  3190. academic/papi: Updated for version 6.0.0.1.
  3191. academic/patsy: Fixed dep info
  3192. academic/perlprimer: update copyright years
  3193. academic/pianobooster: Added the dependency ftgl.
  3194. academic/pianobooster: Updated for version 1.0.0.
  3195. academic/plasmidomics: update copyright years
  3196. academic/prank-msa: Removed (ftb + no active maintainer).
  3197. academic/prank-msa: update copyright years
  3198. academic/primer3: Respect our CFLAGS, added -fpermissive.
  3199. academic/primer3: update copyright years
  3200. academic/pspp: Fixed dep info
  3201. academic/pspp: Updated for version 1.4.1.
  3202. academic/pulseview: Fixed dep info
  3203. academic/pulseview: Updated for version 20210103_d023660.
  3204. academic/pulseview: Updated for version 20220225_4efbe9b.
  3205. academic/pyCRAC: Fixed dep info
  3206. academic/pyCRAC: Update MD5SUM.
  3207. academic/pyCRAC: Updated for version 1.5.1.
  3208. academic/pysam: Fixed dep info
  3209. academic/pysam: Updated for version 0.17.0
  3210. academic/pysam: Updated to version 0.18.0
  3211. academic/pysam: Use internal htslib-1.14
  3212. academic/pysam: use packaged htslib 1.13
  3213. academic/qalculate-gtk: Fixed dep information
  3214. academic/qrupdate: Workaround to build with gcc >= 10.x.
  3215. academic/qucs: minor change + update DEPS
  3216. academic/root: Switch to cmake
  3217. academic/root: Updated for version 6.10.02.
  3218. academic/rpy2: Update DEP.
  3219. academic/rpy2: Updated for version 3.4.5.
  3220. academic/sage-bin: Fix quote.
  3221. academic/sage-bin: Updated for version 9.4
  3222. academic/sage: Updated for version 9.2.
  3223. academic/sage: Updated for version 9.3.
  3224. academic/sage: Updated for version 9.4
  3225. academic/samtools-legacy: update copyright years
  3226. academic/samtools: Update to version 1.15
  3227. academic/samtools: Updated for version 1.13
  3228. academic/samtools: Updated to version 1.14
  3229. academic/scidavis: Fixed dep info in README
  3230. academic/scidavis: Update DEPS and infomation in the build script
  3231. academic/scidavis: Update DEPS.
  3232. academic/scidavis: Updated for version 2.4.0.
  3233. academic/scilab: Note that the download url is not wget-friendly.
  3234. academic/scilab: Updated for version 6.1.1
  3235. academic/scipy3: Add missing dependency.
  3236. academic/scipy3: Updated for version 1.5.4.
  3237. academic/scipy: Updated for version 1.2.2.
  3238. academic/seaview: Removed the treerecs dependency (ftb).
  3239. academic/seaview: update copyright years
  3240. academic/seqkit: update for version 0.16.0
  3241. academic/sequence-analysis: Use zulu-openjdk11.
  3242. academic/sequence-analysis: switch to adoptopenjdk
  3243. academic/sigrok-cli: Updated for version 20220222_525f481.
  3244. academic/siril: Fixed dep info
  3245. academic/siril: Updated for version 1.0.0_rc2, switch to meson.
  3246. academic/slatec: Removed (No maintainer).
  3247. academic/smath-studio: Updated email
  3248. academic/snpEff: Use zulu-openjdk11.
  3249. academic/snpEff: switch to adoptopenjdk
  3250. academic/spades: 3.15.2
  3251. academic/speedcrunch: Fixed dep info
  3252. academic/spidey: update copyright years
  3253. academic/squizz: Remove .la files.
  3254. academic/squizz: update copyright years
  3255. academic/staden: update copyright years
  3256. academic/stellarium: Fixed dep info
  3257. academic/stellarium: Updated for version 0.21.0.
  3258. academic/stringtie: update copyright years
  3259. academic/suitesparse: Updated for version 5.10.0
  3260. academic/suitesparse: Updated for version 5.10.1
  3261. academic/sundials: Fixed dep info
  3262. academic/sword: Remove .la files.
  3263. academic/t_coffee: Updated for version 13.45.58.c355d11.
  3264. academic/t_coffee: update copyright years
  3265. academic/tabix-legacy: update copyright years
  3266. academic/tilem: Fix for gcc >= 10.x.
  3267. academic/topdraw: update copyright years
  3268. academic/tophat: Patched for gcc >= 6.x.
  3269. academic/tophat: Use -std=c++14.
  3270. academic/tophat: update copyright years
  3271. academic/treebest-ensembl: fix build (-fcommon)
  3272. academic/treerecs: Removed (ftb + no active maintainer).
  3273. academic/treerecs: update copyright years
  3274. academic/treeviewx: update copyright years
  3275. academic/trfind: update copyright years
  3276. academic/trimmomatic: Use zulu-openjdk11.
  3277. academic/trimmomatic: switch to adoptopenjdk
  3278. academic/tuxmath: Rename blits. Remove dupe lan player.
  3279. academic/tuxmath: Use -std=gnu11 and -fcommon.
  3280. academic/ucsc-blat: update copyright years
  3281. academic/ugene: Fixed dep info
  3282. academic/ugene: Patch to avoid hardcoding headers location.
  3283. academic/ugene: Use -std=c++11.
  3284. academic/ugene: update for version 38.1
  3285. academic/units: updated for version 2.21
  3286. academic/vCAPS_coevolution: Removed (ftb + no active maintainer).
  3287. academic/vCAPS_coevolution: update README
  3288. academic/vcftools: update copyright years
  3289. academic/verilator: Fixed dep info
  3290. academic/verilator: Updated for version 4.218.
  3291. academic/verilog: Updated for version 11.0.
  3292. academic/veusz: Fixed dep info
  3293. academic/veusz: Use sip as provided by current.
  3294. academic/wehi-*: switch to adoptopenjdk
  3295. academic/wehi-cellsymphony: Use zulu-openjdk11.
  3296. academic/wehi-deid: Use zulu-openjdk11.
  3297. academic/wehi-hackit: Use zulu-openjdk11.
  3298. academic/wehi-weasel: Use zulu-openjdk11.
  3299. academic/wmcalc: remove template comment.
  3300. academic/wxMaxima: Fix github tarball handling.
  3301. academic/wxMaxima: Fixed dep info
  3302. academic/wxmacmolplt: Removed (ming dep is gone)
  3303. academic/xflr5: Fixed dep info
  3304. academic/xflr5: Update DOWNLOAD.
  3305. academic/xfoil: Updated the patch to fix build.
  3306. academic/xiphos: Fix build on current.
  3307. academic/xiphos: Fixed dep info
  3308. academic/xoscope: Updated for version 2.3
  3309. academic/z3: Fix github tarball handling.
  3310. academid/ngspice: Fix URLs.
  3311. accessibility/Synkron: Add qt4 dependency.
  3312. accessibility/easystroke: Patched for gcc >= 7.x.
  3313. accessibility/espeak: remove template comment.
  3314. accessibility/espeakup: Remove espeak dep.
  3315. accessibility/flite: Added the new dependency texi2html.
  3316. accessibility/flite: Updated for version 2.2.
  3317. accessibility/fonts-opendyslexic: remove template comment.
  3318. accessibility/jpilot: Fix build with newer gcc.
  3319. accessibility/jpilot: Updated for version 1.8.2.
  3320. accessibility/mag: Fix all-black window bug.
  3321. accessibility/mag: remove template comment.
  3322. accessibility/magnus: Added (screen magnifier for X)
  3323. accessibility/pastebinit: remove template comment.
  3324. accessibility/picospeaker: Added (CLI frontend to svox).
  3325. accessibility/speech-dispatcher: Removed (added to Slackware).
  3326. accessibility/svkbd: Updated for version 0.4.
  3327. accessibility/svox: Add man page for pico2audio.
  3328. accessibility/unclutter-xfixes: Fix README.
  3329. accessibility/unclutter-xfixes: remove template comment.
  3330. accessibility/unclutter: remove template comment.
  3331. accessibility/wgetpaste: remove template comment.
  3332. accessibility/xdotool: Fixed dep info
  3333. accessibility/xdotool: remove template comment.
  3334. accessibility/xsel: Disabled some warnings-as-errors.
  3335. accessibility/xsel: remove template comment.
  3336. accessibility/xzoom: remove template comment.
  3337. accessibility/ydotool: Added (fake key/mouse events, no X).
  3338. audio/*various*: Killed ttaenc mentions
  3339. audio/DPF-Plugins: Updated for version 1.5.
  3340. audio/FAudio: Update DEP.
  3341. audio/HamsiManager: Removed (No maintainer).
  3342. audio/Luppp: Fix github tarball handling.
  3343. audio/Luppp: Fix slack-desc.
  3344. audio/Luppp: Updated for version 0a55b49.
  3345. audio/MP3Diags: Add qt4 dependency.
  3346. audio/Pd-extended: Fixed dep info
  3347. audio/Pd-extended: Removed (ftbfs)
  3348. audio/SAM: Fix build with newer gcc.
  3349. audio/SuperCollider: Fixed dep info
  3350. audio/SuperCollider: Updated for version 3.12.2.
  3351. audio/TiMidity++: Fixed dep info in README
  3352. audio/a2jmidid: Fixed dep info
  3353. audio/a2jmidid: Support alternatives for ninja
  3354. audio/aacgain: Pass -fpermissive and disable narrowing warnings.
  3355. audio/aacgain: Updated maintainer email
  3356. audio/aacplusenc: Added (High-Efficency AAC )
  3357. audio/aacplusenc: Removed (no maintainer)
  3358. audio/acousticbrainz-client: Switch to https.
  3359. audio/acousticbrainz-gui: Fixed dep info
  3360. audio/acousticbrainz-music-extractor: Fix DOWNLOAD URL.
  3361. audio/aeolus: Fix download URL.
  3362. audio/alsa-plugin-ffmpeg: Removed (added to Slackware).
  3363. audio/alsa-plugin-jack: Updated for version 1.2.5.
  3364. audio/alsa-tools: Fix README.
  3365. audio/alsa-tools: Remove .la files.
  3366. audio/alsa-tools: Updated for version 1.2.5.
  3367. audio/alsacap: remove template comment.
  3368. audio/alsaequal: Update DOWNLOAD.
  3369. audio/alsamixergui: Fix for gcc >= 10.x.
  3370. audio/alsamodularsynth: Switch to clang, cleanups.
  3371. audio/alsamodularsynth: Updated for version 2.2.0.
  3372. audio/amSynth: Updated for version 1.12.4.
  3373. audio/amrnb: Don't install *.la files
  3374. audio/amrnb: Updated maintainer email
  3375. audio/amrwb: Don't install *.la files
  3376. audio/amrwb: Updated maintainer email
  3377. audio/apulse: remove template comment.
  3378. audio/ardour: Fix support for PRINT_PACKAGE_NAME
  3379. audio/ardour: Updated for version 6.9.
  3380. audio/ario: Fix 15.0 build.
  3381. audio/aseqview: Add missing patches.
  3382. audio/aseqview: Build with gtk2, not gtk1.
  3383. audio/asunder: Fixed dep info
  3384. audio/audacious-aac: Updated for version 3.8.2.
  3385. audio/audacious-aac: Updated for version 4.1.
  3386. audio/audacious-cue: Removed (added to Slackware).
  3387. audio/audacious-cue: Updated for version 3.8.2.
  3388. audio/audacious-ffmpeg: Removed (added to Slackware).
  3389. audio/audacity: Add a missing include for gcc >= 11.x.
  3390. audio/audacity: Fixed dep info
  3391. audio/audacity: Updated for version 2.4.1.
  3392. audio/audacity: Updated for version 3.0.2.
  3393. audio/audacity: Use the bundled sqlite.
  3394. audio/audenc: Fixed dep info
  3395. audio/audenc: Updated for version 3.3.5.
  3396. audio/audioconvert: Fixed dep info in README
  3397. audio/audioconvert: Patched.
  3398. audio/bristol: Fix build, add launcher.
  3399. audio/butt: Added -fpermissive to the CXXFLAGS.
  3400. audio/butt: Fixed dep info
  3401. audio/butt: Updated for version 0.1.32.
  3402. audio/calf-ladspa: Clean up README and slack-desc.
  3403. audio/calf-ladspa: Move HTML docs to subdir.
  3404. audio/calf-ladspa: Uncomment patch for gcc >= 7.x.
  3405. audio/calf: Fixed dep info
  3406. audio/calf: Move HTML docs to subdir.
  3407. audio/caps: Fix permission on shared lib.
  3408. audio/carla: Fixed README re optional deps
  3409. audio/carla: Fixed dep info
  3410. audio/carla: Updated for version 2.4.1.
  3411. audio/celt051: Remove .la files.
  3412. audio/celt: Don't install *.la files
  3413. audio/celt: Updated maintainer email
  3414. audio/chuck: Align with template
  3415. audio/chuck: Updated for version 1.4.1.0.
  3416. audio/clam: Fixed dep info
  3417. audio/clam: Removed (nobody cared).
  3418. audio/clam_annotator: Removed (nobody cared).
  3419. audio/clam_voice2midi: Removed (nobody cared).
  3420. audio/clementine: Fixed dep info
  3421. audio/clementine: Fixed dep info in README
  3422. audio/clementine: New maintainer.
  3423. audio/clementine: REQUIRES protobuf => protobuf3.
  3424. audio/clementine: Updated for version 1.4.0rc1_420_g596cd9b0a.
  3425. audio/clyrics: Removed (no maintainer)
  3426. audio/cmt: Fix MD5SUM.
  3427. audio/cmt: Updated for version 1.18.
  3428. audio/cmus: Fixed dep info in README
  3429. audio/connie: New-style icons.
  3430. audio/creox4: Removed (requires KDE4, use guitarix instead).
  3431. audio/cuberok: Removed (unmaintained, qt4).
  3432. audio/darkice: Added -fpermissive to the CXXFLAGS.
  3433. audio/darkice: Fixed dep info in README
  3434. audio/darkice: Use the C++14 standard.
  3435. audio/dcaenc: Remove .la files.
  3436. audio/dcaenc: Updated for version 3.
  3437. audio/deadbeef: Fixed dep info
  3438. audio/deadbeef: Updated for version 1.8.7.
  3439. audio/decibel-audio-player: Removed (no maintainer)
  3440. audio/distrho-mini-series: Updated for version 1.1.
  3441. audio/distrho-ports: Updated for version 20180416.
  3442. audio/drumkv1: Fixed dep info
  3443. audio/drumkv1: Updated for version 0.9.23.
  3444. audio/drumstick: Fixed dep info
  3445. audio/drumstick: Updated for version 2.4.1.
  3446. audio/dssi-vst: i486 => i586.
  3447. audio/easytag: Removed (added to Slackware).
  3448. audio/eawpats: Remove template comment.
  3449. audio/ecasound: Add python3 support.
  3450. audio/ecasound: Fix README.
  3451. audio/ecasound: Fixed dep info in README
  3452. audio/exhale: Updated for version 1.1.9.
  3453. audio/fIcy: Remove template comment.
  3454. audio/faac: Remove .la files.
  3455. audio/faad2: Remove .la files.
  3456. audio/fantasia: New-style icons.
  3457. audio/fantasia: Use zulu-openjdk8.
  3458. audio/faust: Fix download URL.
  3459. audio/ff8dls: Remove template comment.
  3460. audio/flacon: Fixed dep info
  3461. audio/flacon: Fixed dep info in README
  3462. audio/flake: Removed (no maintainer)
  3463. audio/fluid-soundfont: Fixed dep info
  3464. audio/fluid-soundfont: Remove template comment.
  3465. audio/fluidsynth-dssi: Fixed dep info
  3466. audio/fluidsynth-dssi: Update soundfont path.
  3467. audio/fluidsynth: Removed (added to Slackware).
  3468. audio/fmit: Updated for version 1.2.14.
  3469. audio/fmmidi: Remove template comment.
  3470. audio/foo-yc20: Fix README.
  3471. audio/foo-yc20: New-style icons.
  3472. audio/freac: Removed (no maintainer)
  3473. audio/fst: i486 => i586.
  3474. audio/ghostess: Updated for version 20210101.
  3475. audio/gimmix: Fix build.
  3476. audio/gmpc-plugins: Delete refs to AWN
  3477. audio/gmpc-plugins: Fix download URL.
  3478. audio/gmpc-plugins: Fixed dep info
  3479. audio/gmpc-plugins: Kill awn notes in README
  3480. audio/gmpc: Fixed dep info
  3481. audio/gmpc: i486 => i586.
  3482. audio/gmusicbrowser: Killed gst0-plugins-bad note
  3483. audio/gnomad2: Fix 15.0 build.
  3484. audio/google-musicmanager: Updated for version 1.0.467.4929.
  3485. audio/grip2: Removed (replaced with grip).
  3486. audio/grip2: remove template comment.
  3487. audio/grip: Added (GTK+ CD player/ripper; replaces grip2)
  3488. audio/gtklick: New-style icons.
  3489. audio/guitarix: New-style icons, fix perms.
  3490. audio/guitarix: Remove Slackware 14.2 dep note for the README.
  3491. audio/guitarix: Updated for version 0.42.1.
  3492. audio/gvolwheel: Fix 15.0 build.
  3493. audio/helm: Patch for gcc >= 9.
  3494. audio/herrie: Fix download URL.
  3495. audio/horgand: New-style icons.
  3496. audio/hydrogen: Updated for version 1.0.2.
  3497. audio/hydrogen: Updated for version 1.1.1.
  3498. audio/icecast: Fix typo.
  3499. audio/icecast: Fixed dep info in README
  3500. audio/ices-cc: Fixed dep info in README
  3501. audio/id3tool: Remove template comment.
  3502. audio/id3v2: Fixed dep info
  3503. audio/invada_studio_plugins_lv2: Remove template comment.
  3504. audio/jaaa: New-style icons, expand man page.
  3505. audio/jack-keyboard: New-style icons.
  3506. audio/jack-rack: New-style icon.
  3507. audio/jack-tools: Updated for version 20210917_ab297f4.
  3508. audio/jack1: Remove .la files.
  3509. audio/jack1: remove template comment.
  3510. audio/jack: Fixed dep info
  3511. audio/jack: Fixed dep info in README
  3512. audio/jack: Updated for version 1.9.19.
  3513. audio/jack_delay: Remove template comment.
  3514. audio/jackmeter: Remove template comment.
  3515. audio/jalv: Updated for version 1.6.6.
  3516. audio/jamin: Fix 15.0 build.
  3517. audio/jamulus: Switch to Qt5.
  3518. audio/jamulus: Updated for version 3.8.1.
  3519. audio/japa: New-style icons, expand man page.
  3520. audio/jkmeter: New-style icons.
  3521. audio/jnoise: Add man page.
  3522. audio/jokosher: Fixed dep info
  3523. audio/jokosher: Removed (literally a joke app; nobody uses it).
  3524. audio/kid3: Removed (added to Slackware).
  3525. audio/klick: Fix -current build.
  3526. audio/kradio: Fixed dep info
  3527. audio/kradio: Patch in extra #include.
  3528. audio/kradio: Updated for version 5.0.0_beta1.
  3529. audio/ladspa_sdk: Fix MD5SUM.
  3530. audio/ladspa_sdk: Updated for version 1.17
  3531. audio/ladspa_sdk: Updated maintainer email
  3532. audio/lash: Avoid a linking issue and use libtirpc.
  3533. audio/lash: Remove %README% from REQUIRES.
  3534. audio/lash: Remove .la files.
  3535. audio/lash: Update README optional dep.
  3536. audio/lash: Update for new texi2html.
  3537. audio/lastfm: Fixed dep info
  3538. audio/lastfm: Removed (because libraries/lastfm was removed).
  3539. audio/libbs2b: Remove .la files.
  3540. audio/libebur128: Fixed dep info
  3541. audio/libebur128: Updated for version 1.2.6.
  3542. audio/lingot: Updated for version 1.1.1.
  3543. audio/linuxsampler: Updated for version 2.2.0.
  3544. audio/listener: Fix for latest portaudio.
  3545. audio/listener: Fix homepage/download URLs.
  3546. audio/llcon: Removed (abandoned, ftbfs).
  3547. audio/lmms: Fixup README re optional deps
  3548. audio/lmms: Updated for version 1.2.2, use qt5.
  3549. audio/lsmi: Remove template comment.
  3550. audio/lv2-mda-metapiano: Fix homepage and download.
  3551. audio/lv2dynparam1: Remove .la file.
  3552. audio/lv2file: Remove template comment.
  3553. audio/lyvi: Fixed dep info
  3554. audio/lyvi: Removed (no maintainer)
  3555. audio/lyvi: Update DEP.
  3556. audio/mac: Man page, other enhancements.
  3557. audio/mac: Patch for gcc >= 6.x.
  3558. audio/match-vamp-plugin: Remove template comment.
  3559. audio/mda-lv2: Update README, URLs.
  3560. audio/mhwaveedit: Build enhancements.
  3561. audio/mididings: Fix configure.
  3562. audio/mididings: Updated for version 20151117_bbec99a.
  3563. audio/midillo: Remove .la files.
  3564. audio/milkytracker: Fix github tarball handling.
  3565. audio/millennium-plugins: Remove template comment.
  3566. audio/miniAudicle: Use c++14.
  3567. audio/mixxx: Fix for a python3-based scons.
  3568. audio/mixxx: Fixed dep info
  3569. audio/mixxx: Updated for version 2.3.0, switch to cmake.
  3570. audio/mixxx: Updated for version 2.3.1.
  3571. audio/mixxx: Updated for version 2.3.2.
  3572. audio/mkcue: Updated for debian pkg version 7.
  3573. audio/mktoc: Remove template comment.
  3574. audio/mktoc: Update DEP.
  3575. audio/mp3blaster: Force linking against libncursesw.
  3576. audio/mp3check: Fix build.
  3577. audio/mp3gain: Update man page.
  3578. audio/mp3splt-gtk: New-style icons.
  3579. audio/mp3splt-gtk: Pass -fcommon for gcc >= 10.x.
  3580. audio/mp3splt: Remove template comment.
  3581. audio/mp3val: New-style icons.
  3582. audio/mp4tools: Removed (no maintainer)
  3583. audio/mpd: Add missing required dep.
  3584. audio/mpd: Fix build when Sphinx not installed.
  3585. audio/mpd: Fixed dep info
  3586. audio/mpd: Fixed dep info in README
  3587. audio/mpd: Fixed ninja build.
  3588. audio/mpd: Support alternatives for ninja
  3589. audio/mpd: Updated for version 0.23.5.
  3590. audio/multimidicast: Updated for version 1.4.
  3591. audio/muse: Fixed dep info
  3592. audio/muse: Fixed dep info in README
  3593. audio/museeks: Removed (no maintainer)
  3594. audio/musepack-tools: Patch for gcc >= 10.x.
  3595. audio/nas: Patch for llvm 11.
  3596. audio/nas: Updated for version 1.9.5.
  3597. audio/ncmpcpp: Patch for gcc >= 10.x.
  3598. audio/nekobee: Fix build.
  3599. audio/nekobee: Fix github tarball handling.
  3600. audio/nekobee: Updated for version 56187f6
  3601. audio/ngjackspa: Disable Qt4 UI by default.
  3602. audio/nnls-chroma: Remove template comment.
  3603. audio/non: Avoid an fs loop error with find.
  3604. audio/non: Fix tarball handling.
  3605. audio/non: Updated for version 1.3.0.
  3606. audio/ntk: Avoid an fs loop error with find.
  3607. audio/ntk: Fix tarball handling.
  3608. audio/ntk: Updated for version 1.3.1001
  3609. audio/ocp: Fix build.
  3610. audio/ocp: Fix for gcc >= 10.x.
  3611. audio/ogmtools: patch for gcc >= 11.x.
  3612. audio/opencore-amr: Remove .la files.
  3613. audio/opus-tools: Removed (added to Slackware).
  3614. audio/opus: Removed (added to Slackware).
  3615. audio/opusfile: Removed (added to Slackware).
  3616. audio/oss: Removed (won't build on recent kernels).
  3617. audio/oss: Updated for version 4.2.2019, patched for glibc >= 2.23.
  3618. audio/padthv1: Fixed dep info
  3619. audio/padthv1: Updated for version 0.9.23.
  3620. audio/paprefs: Fix VERSION
  3621. audio/paprefs: Updated for version 1.2
  3622. audio/patchage: Updated for version 1.0.4.
  3623. audio/phat: Remove .la files.
  3624. audio/pianobar: Updated for version 2020.11.28, fixed dep info.
  3625. audio/pithos: Align with new template.
  3626. audio/pithos: Fix ninja usage
  3627. audio/pithos: Fixed dep info
  3628. audio/pithos: Updated for version 1.4.0.
  3629. audio/pithos: Updated for version 1.5.1
  3630. audio/playmp3list: Removed.
  3631. audio/podget: Updated for version 0.8.10.
  3632. audio/portmidi: Drop symlinking libporttime to libportmidi.
  3633. audio/portmidi: Fix dependents looking for libporttime.
  3634. audio/portmidi: Updated for version 2.0.2.
  3635. audio/puddletag: Fix copying docs.
  3636. audio/puddletag: Fix copying docs.
  3637. audio/puddletag: Fixed dep info
  3638. audio/puddletag: Killed gst0-plugins-bad note + fix dep info
  3639. audio/puddletag: Updated for version 2.1.1.
  3640. audio/pyalsaaudio: Fixed dep info
  3641. audio/qastools: Fixed dep info
  3642. audio/qastools: Updated for version 0.23.0.
  3643. audio/qjackctl: Fixed dep info
  3644. audio/qjackctl: Updated for version 0.9.5.
  3645. audio/qm-vamp-plugins: Remove template comment.
  3646. audio/qmidiarp: Added qt4 dependency.
  3647. audio/qmidinet: Add qt4 dependency.
  3648. audio/qmidiroute: Fix -current build.
  3649. audio/qmmp-plugin-pack-qt5: Updated for version 1.5.1.
  3650. audio/qmmp-qt5: Fixed dep info
  3651. audio/qmmp-qt5: Updated for version 1.5.1.
  3652. audio/qmmp: Fixed dep info in README
  3653. audio/qmmp: Updated for version 0.12.14.
  3654. audio/qsynth: Fixed dep info
  3655. audio/qtractor: Fix build.
  3656. audio/qtractor: Updated for version 0.9.23, added a license.
  3657. audio/quodlibet: Remove gst-plugins-bad dependency.
  3658. audio/quodlibet: Update DEP.
  3659. audio/quodlibet: Updated for version 4.4.0.
  3660. audio/rakarrack: New-style icons.
  3661. audio/rebmp: Fix build with newer glibc.
  3662. audio/rebmp: Remove .la files.
  3663. audio/retrovol: Updated for version 0.14.2.
  3664. audio/rev-plugins: Remove template comment.
  3665. audio/rezound: Fixed dep info
  3666. audio/rhythmbox: Fixed dep info
  3667. audio/rhythmbox: Remove .la files.
  3668. audio/rhythmbox: Updated for version 3.4.3.
  3669. audio/rosegarden: Bumped version to 20.12 to fix compile errors.
  3670. audio/rosegarden: Changed ARCH to i586
  3671. audio/rosegarden: Updated for version 21.06.1
  3672. audio/rosegarden: Updated maintainer email
  3673. audio/rubberband: Updated for version 2.0.0.
  3674. audio/rubyripper: Align with template
  3675. audio/rubyripper: Fixed dep info in README
  3676. audio/rubyripper: Updated for version 0.8.3.rc3.
  3677. audio/rumor: Patched for gcc >= 7.x.
  3678. audio/samplv1: Fixed dep info
  3679. audio/samplv1: Updated for version 0.9.23.
  3680. audio/sayonara-player: Fixed dep info
  3681. audio/sayonara-player: Remove gst-plugins-bad dependency.
  3682. audio/sbagen: Fix build.
  3683. audio/sfc: Icons, .desktop.
  3684. audio/sfc: Install doinst.sh.
  3685. audio/shell-fm: Removed (not working anymore).
  3686. audio/sidplayfp: Updated for version 1.4.3.
  3687. audio/snd: Fix download URL.
  3688. audio/sonata: Fix REQUIRES for python2. Add -fcommon.
  3689. audio/sonic-visualiser: Fixed dep info
  3690. audio/sonic-visualiser: Updated for version 4.4.
  3691. audio/sooperlooper: Updated for version 1.7.8.
  3692. audio/soundconverter: Fixed dep info
  3693. audio/soundconverter: Killed gst0-plugins-bad note
  3694. audio/soundkonverter: Updated for version 3.0.1.
  3695. audio/spandsp: Fix DOWNLOAD in the spandsp.info file.
  3696. audio/spandsp: Fix support for PRINT_PACKAGE_NAME
  3697. audio/spandsp: Removed (roger-router is removed).
  3698. audio/speex: Removed (added to Slackware).
  3699. audio/stretchplayer: Added (audio player with pitch/speed control).
  3700. audio/sunvox: Updated MD5SUM.
  3701. audio/swami: Fixed dep info in README
  3702. audio/swh-plugins-lv2: Update README, slack-desc.
  3703. audio/synthv1: Fixed dep info
  3704. audio/synthv1: Updated for version 0.9.23.
  3705. audio/tap_plugins: Updated for version 1.0.1.
  3706. audio/tapiir: New-style icons, capabilities.
  3707. audio/taunmb: Fix permission.
  3708. audio/tauonmb: Deploy .desktop from source.
  3709. audio/tauonmb: Fix for version 6.8.0.
  3710. audio/tauonmb: Fix locale.
  3711. audio/tauonmb: Fixed dep info
  3712. audio/tauonmb: Revert Presence back.
  3713. audio/tauonmb: Updated for version 6.6.0.
  3714. audio/tauonmb: Updated for version 6.8.3.
  3715. audio/tauonmb: Updated for version 7.0.1.
  3716. audio/tauonmb: Updated for version 7.1.1.
  3717. audio/tauonmb: Updated for version 7.1.2.
  3718. audio/tauonmb: Updated for version 7.1.3.
  3719. audio/tauonmb: Updated for version v6.8.0.
  3720. audio/transcribe: Updated for version 8.80.
  3721. audio/tta++: Added (TTA lossless audio codec written in C++)
  3722. audio/tta: Fix i486 -> i586.
  3723. audio/tta: Update DOWNLOAD. Remove static lib.
  3724. audio/ttaenc: Removed (no maintainer)
  3725. audio/twolame: Remove .la files.
  3726. audio/unsf: Updated for version 1.1+git20201107.
  3727. audio/vamp-plugin-sdk: Add -j1 to make command.
  3728. audio/vcf_plugins: Reformat slack-desc.
  3729. audio/vmpk: Updated for version 0.8.5
  3730. audio/vocoder-ladspa: Remove template comment.
  3731. audio/vocoder: New-style icons.
  3732. audio/volumeicon: Fix download URL.
  3733. audio/volwheel: Removed (no maintainer)
  3734. audio/vorbisgain: Updated maintainer email
  3735. audio/waon: Fix icons.
  3736. audio/wavbreaker: Updated for version 0.13.
  3737. audio/whipper: Fixed dep info
  3738. audio/whipper: Removed dependency.
  3739. audio/whipper: Updated for version 0.10.0.
  3740. audio/whysynth: Updated for version 20170701.
  3741. audio/wineasio: Updated for version 1.0.0.
  3742. audio/wmusic-xmms: Remove template comment.
  3743. audio/wmusic: Fix build for updated playerctl.
  3744. audio/xcfa: Fix for gcc 10.
  3745. audio/xcfa: Kill aacplusenc mention in README
  3746. audio/xfca: Fixed dep info
  3747. audio/xforge: Cleanup SlackBuild.
  3748. audio/xmms-jack: Remove template comment.
  3749. audio/xmms-ladspa: Remove template comment.
  3750. audio/xmms-mp4: Update URLS, README.
  3751. audio/xmms-wma: Fix build with newer gcc.
  3752. audio/xmms2: Updated for version 20170827_dedc33d.
  3753. audio/xsynth-dssi: Remove .la file.
  3754. audio/xwax: Fixed dep info in README
  3755. audio/yoshimi: Add missing jack dependency.
  3756. audio/zita-ajbridge: Remove template comment.
  3757. audio/zita-dpl1: New-style icons.
  3758. audio/zita-rev1: New-style icons, man page.
  3759. audio/zynaddsubfx: Updated for version 3.0.6.
  3760. audio/zynjacku: Fix lockups when guitarix installed.
  3761. audio/zynjacku: Remove template comment.
  3762. audio:eyeD3: Updated for version 0.9.6, switch to python3.
  3763. business/AssociationSubscribersManager: Removed (abandoned, ftbfs).
  3764. business/ledger: Fix conflict with utfcpp.
  3765. business/ledger: Fix for boost >= 1.76.0.
  3766. business/ledger: Note utfcpp incompatibility in current.
  3767. business/lemonpos: Removed (requires KDE4).
  3768. business/maltego: Fix download URL.
  3769. business/openerp-client: Removed.
  3770. business/openerp-server: Removed.
  3771. business/skrooge: Updated for version 2.27.0.
  3772. business/stansoft: Fix download URLs.
  3773. business/stansoft: Updated for version 7.26.
  3774. business/trytond: Fix build if Sphinx installed.
  3775. business/trytond: Fix dependency.
  3776. business/trytond: changed REQUIRES to python2-psycopg2
  3777. desktop/2bwm: Kill rxvt-unicode dep mention
  3778. desktop/9menu: Remove template comment.
  3779. desktop/Alphacube-GTK: Switch to a no-spaces tarball name.
  3780. desktop/LX-Colors-Revival: Fix permission.
  3781. desktop/LX-Colors-Revival: Removed (no maintainer)
  3782. desktop/LX-Colors-Revival: added back + new maintainer
  3783. desktop/LX-Colors-themes: Removed (no maintainer)
  3784. desktop/Window_Manager_Scripts: Removed (No maintainer).
  3785. desktop/XDecorations: Patch for the newer gcc.
  3786. desktop/Zafiro-icons: Removed (no maintainer)
  3787. desktop/adapta-gtk-theme: Fixed dep info
  3788. desktop/adwaita-qt: Updated for version 1.3.1.
  3789. desktop/afterstep: Updated for version 20201113_f6da4b7.
  3790. desktop/alltray: Update DEP.
  3791. desktop/anki: Fixed dep info in README
  3792. desktop/anki: Update DEP.
  3793. desktop/anki: Update DEP.
  3794. desktop/arandr: Fixed dep info
  3795. desktop/arandr: Updated for version 0.1.10, switch to python3.
  3796. desktop/arc-openbox: Removed (no maintainer)
  3797. desktop/arc-theme-Red: Removed (no maintainer)
  3798. desktop/arc-theme: Fixed dep info
  3799. desktop/arc-theme: Updated for version 20201121_81130a2.
  3800. desktop/avant-window-navigator: Removed (no maintainer)
  3801. desktop/awemenugen: Removed (no maintainer)
  3802. desktop/awesome-extra: Removed (no maintainer)
  3803. desktop/awesome: Fix for gcc >= 10.x.
  3804. desktop/awesome: Fixed dep info
  3805. desktop/awesome: Fixed dep info.
  3806. desktop/awn-extras: Fixed dep info
  3807. desktop/awn-extras: Removed (no active maintainer, no reverse deps)
  3808. desktop/awoken-icon-theme: Removed (no maintainer)
  3809. desktop/bashish: Removed (no maintainer)
  3810. desktop/bashrun2: Use systemwide dir for bash completion files
  3811. desktop/boje-themes: Removed (no maintainer)
  3812. desktop/breath-gtk-theme: Fix tarball handling.
  3813. desktop/breath-gtk-theme: Fixed dep info
  3814. desktop/breath-gtk-theme: Quote the cmake variables.
  3815. desktop/bspwm: Pass -fcommon for gcc >= 10.x.
  3816. desktop/buku: Update DEP.
  3817. desktop/buku: Updated for version 4.6.
  3818. desktop/buku: Use systemwide dir for bash completion files
  3819. desktop/bukubrow: Updated for version 5.3.0.
  3820. desktop/bukubrow: Updated for version 5.4.0.
  3821. desktop/bumblebee-status: Updated for version 2.1.5.
  3822. desktop/bunsen-themes: Removed (no maintainer)
  3823. desktop/buttonmaker: Fix for gcc >= 10.x.
  3824. desktop/buttonmaker: New maintainer.
  3825. desktop/caffeine-ng: Update DEP.
  3826. desktop/cairo-compmgr: Removed.
  3827. desktop/cairo-dock-plugins: Fixed dep info
  3828. desktop/cairo-dock-plugins: Updated for version 20201022_a0d3415.
  3829. desktop/cairo-dock: Updated for version 20201103_0836f5d.
  3830. desktop/catfish: Updated for version 4.16.0.
  3831. desktop/catfish: Updated for version 4.16.3.
  3832. desktop/cathexis-suite-themes: Removed (no maintainer)
  3833. desktop/ccsm: Updated for version 0.8.18.
  3834. desktop/cellwriter: Fix for gcc >= 10.x.
  3835. desktop/ceti-2-theme: Removed (incompatible with the newer gtk+3).
  3836. desktop/clearlooks-classic-themes: small cleanup
  3837. desktop/clipmenu: Remove template comment.
  3838. desktop/compton-conf: Removed (no maintainer)
  3839. desktop/conky-manager: Fixed dep info
  3840. desktop/copyq: Add the dependency qt4.
  3841. desktop/crystal: Removed (no more kde4).
  3842. desktop/ctwm: Remove template comment.
  3843. desktop/cwm: Remove template comment.
  3844. desktop/cwp: Removed (this is KDE4-only software)
  3845. desktop/cycler: Update DEP.
  3846. desktop/dark-aurora-gtk-theme: Removed (no maintainer)
  3847. desktop/dbgl-legacy: Use zulu-openjdk8.
  3848. desktop/dbgl: Fix DOWNLOAD.
  3849. desktop/dbgl: Use zulu-openjdk8.
  3850. desktop/devilspie: Disabled some warnings-as-errors.
  3851. desktop/dmenu: Updated for version 4.9.
  3852. desktop/docfetcher: Updated for version 1.1.25.
  3853. desktop/docfetcher: Use zulu-openjdk7.
  3854. desktop/draco: Remove NUMJOBS.
  3855. desktop/dunst: Updated for version 1.6.1
  3856. desktop/dunst: Updated for version 1.7.3
  3857. desktop/dwm: Remove a patch not necessary on current.
  3858. desktop/dzen2: Fix DOWNLOAD.
  3859. desktop/e16.theme.pack: New maintainer.
  3860. desktop/echinus: Add missing xinitrc.
  3861. desktop/ee: Fix for gcc >= 10.x.
  3862. desktop/elementary-xfce: Removed (added to Slackware).
  3863. desktop/emerald-themes: Updated for version 0.8.18.
  3864. desktop/emerald: Fixed dep info
  3865. desktop/emerald: Updated for version 0.8.18.
  3866. desktop/enlightenment: Align with new template.
  3867. desktop/enlightenment: Fixed ninja build.
  3868. desktop/enlightenment: Updated for version 0.25.1.
  3869. desktop/faba-icon-theme: Align with new template.
  3870. desktop/faba-icon-theme: Fixed dep info
  3871. desktop/faba-icon-theme: Fixed ninja build.
  3872. desktop/faba-mono-icons: Removed (no maintainer)
  3873. desktop/faenza-cupertino: Removed (no maintainer)
  3874. desktop/faenza-icon-theme: Removed (no maintainer)
  3875. desktop/faenza-xfce: Removed (No maintainer).
  3876. desktop/faience-icon-theme: Removed (no maintainer)
  3877. desktop/fbpanel: Updated for version 7.2, cleanups.
  3878. desktop/fehlstart: Added the dependency keybinder.
  3879. desktop/ffmpegthumbnailer: Removed (added to Slackware).
  3880. desktop/find-cursor: Updated for version 1.7.
  3881. desktop/find-cursor: Updated for version 1.8.
  3882. desktop/flatpak: Don't ship *.la files.
  3883. desktop/flatpak: Fixed dep info
  3884. desktop/flatpak: Remove useless docs.
  3885. desktop/flatpak: Update DEP.
  3886. desktop/flatpak: Updated for version 1.10.2.
  3887. desktop/flatpak: Updated for version 1.8.3.
  3888. desktop/florence: Remove .la files.
  3889. desktop/fusion-icon: Build with python3 instead of python2
  3890. desktop/fvwm-crystal: Updated for version 3.7.5.
  3891. desktop/fvwm3: Fixed dep info.
  3892. desktop/fvwm3: Updated for version 1.0.4.
  3893. desktop/glabels: Fix for gcc >= 10.x.
  3894. desktop/glabels: Fixed dep info
  3895. desktop/glabels: Remove .la files.
  3896. desktop/gnome-menus: Remove .la files.
  3897. desktop/gnome-menus: Updated to version 3.36.0
  3898. desktop/gntp-send: Remove .la files.
  3899. desktop/grits: Remove .la files.
  3900. desktop/grun: Cleanup SlackBuild.
  3901. desktop/grun: Fix DOWNLOAD.
  3902. desktop/gsimplecal: Updated for version 2.2.
  3903. desktop/gtk-chtheme: Removed (unmaintained).
  3904. desktop/gtk-kde4: Removed (no more kde4).
  3905. desktop/gtk-theme-Albatross: Removed (no maintainer)
  3906. desktop/gtk-theme-Blackbird: Removed (no maintainer)
  3907. desktop/gtk-theme-Greybird: Removed (added to Slackware).
  3908. desktop/gtk-theme-Orion: Removed (no maintainer)
  3909. desktop/gtk1-industrial-engine: misc cleanups
  3910. desktop/gtk1-theme-switch: misc cleanups
  3911. desktop/homerun: Removed (no more kde4).
  3912. desktop/hushboard: Kill py3cairo dep
  3913. desktop/hushboard: Update DEP.
  3914. desktop/i3-gaps: Fixed dep info
  3915. desktop/i3-gaps: Support alternatives for ninja
  3916. desktop/i3-gaps: Updated for version 4.19.1.
  3917. desktop/i3: Fixed dep info
  3918. desktop/i3: Removed patch for 14.2.
  3919. desktop/i3blocks: Force a single job during "make install".
  3920. desktop/i3lock: Fixed dep info
  3921. desktop/i3lock: Updated for version 2.13.
  3922. desktop/i3minator: Update DEP.
  3923. desktop/i3situation: Update DEP.
  3924. desktop/icewm: Updated for version 2.3.2.
  3925. desktop/idesk: Remove template comment.
  3926. desktop/j4-dmenu-desktop: Remove template comment.
  3927. desktop/kbdd: Fix github tarball handling.
  3928. desktop/kcometen4: Removed (no more kde4).
  3929. desktop/kde-gtk-config: Removed (added to Slackware).
  3930. desktop/kfaenza-icon-theme: Updated for version 0.8.9_19
  3931. desktop/kolorcontrol: Fixed dep info
  3932. desktop/kover: Removed (no more kde4).
  3933. desktop/kupfer: Fixed dep info
  3934. desktop/kwalletcli: Support for KDE 5.
  3935. desktop/libqtxdg: Updated for version 3.6.0.
  3936. desktop/light: Compress man pages.
  3937. desktop/light: Updated for version 1.2.2, fix for gcc >= 10.x.
  3938. desktop/lumina: Fixed dep info
  3939. desktop/lumina: Patch for gcc >= 6.x.
  3940. desktop/lxpanel: Add the new dependency keybinder.
  3941. desktop/macopix: Updated for version 3.4.0, fix for gcc >= 10.x.
  3942. desktop/materia-theme: Updated for version 20200916.
  3943. desktop/mcwm: Remove template comment.
  3944. desktop/menulibre: Patch to avoid conflict with gtk+4.
  3945. desktop/menumaker: Updated for version 0.99.12.
  3946. desktop/mh5000: New maintainer.
  3947. desktop/mhsetroot: New maintainer.
  3948. desktop/mimi: Fix support for PRINT_PACKAGE_NAME
  3949. desktop/moka-icon-theme: Align with new template.
  3950. desktop/moka-icon-theme: Fixed ninja build.
  3951. desktop/moka-minimal: Removed (no maintainer)
  3952. desktop/moka-themes: Removed (no maintainer)
  3953. desktop/mousepad: Removed (added to Slackware).
  3954. desktop/murrine-themes: update copyright years
  3955. desktop/neofetch: Removed (added to Slackware).
  3956. desktop/neutral: Removed (no maintainer)
  3957. desktop/nitrokey-app: Updated for version 1.4.2.
  3958. desktop/noice: Updated for version 0.8.
  3959. desktop/obconf: Fixups for Slackware 15.0
  3960. desktop/obsession: Fixed dep info
  3961. desktop/obshutdown: Fix 15.0 build.
  3962. desktop/oomox: Fixed dep info
  3963. desktop/openbox-simple-theme: Removed (no maintainer)
  3964. desktop/openbox: Remove .la files.
  3965. desktop/openbox: Various fixups for Slackware 15.0
  3966. desktop/oranchelo-icon-theme: Removed (no maintainer)
  3967. desktop/orchis-gtk-theme: Removed (no maintainer)
  3968. desktop/paper-gtk-theme: Removed (no maintainer)
  3969. desktop/paper-icon-theme: Align with new template.
  3970. desktop/paper-icon-theme: Fixed dep info
  3971. desktop/paper-icon-theme: Fixed ninja build.
  3972. desktop/papirus-icon-theme: Updated for version 20201031.
  3973. desktop/peksystray: Remove template comment, add WTFPL.
  3974. desktop/pekwm: Updated for version 0.1.18.
  3975. desktop/pekwm: Updated for version 0.2.1
  3976. desktop/picom: Added (fork of compton).
  3977. desktop/picom: Align with new template.
  3978. desktop/picom: Fixed ninja build.
  3979. desktop/picom: Update parameter name.
  3980. desktop/picom: Updated for version 9.
  3981. desktop/pidgin-window_merge: Fix github tarball handling.
  3982. desktop/plank: Fixed dep info
  3983. desktop/plank: Remove .la files.
  3984. desktop/plasma-adjustable-clock: Removed (no more kde4).
  3985. desktop/plasma-applet-daisy: Removed (no more kde4).
  3986. desktop/plasma-eyasdp: Removed (no more kde4).
  3987. desktop/plasma-geek-clock: Removed (no more kde4).
  3988. desktop/plasma-runner-browsefirefoxbookmarks: Removed.
  3989. desktop/plasma-widget-menubar: Removed (abandonded ftbfs).
  3990. desktop/plasmaxplanet: Removed (KDE 4 only).
  3991. desktop/polar-cursor-themes: misc cleanups
  3992. desktop/polybar: Fix for the newer xcb-proto.
  3993. desktop/polybar: Updated for version 3.5.7.
  3994. desktop/protozoa-cursor-themes: misc cleanups
  3995. desktop/pspshrink: Removed (no maintainer)
  3996. desktop/ptbatterysystemtray: Removed (abandoned upstream).
  3997. desktop/ptwit: Fix dependency.
  3998. desktop/py3status: Updated for version 3.40.
  3999. desktop/python3-cycler: Update DEP.
  4000. desktop/q4wine: Updated for version 1.3.12.
  4001. desktop/qt-recordmydesktop: Removed (needs PyQt4).
  4002. desktop/qtcurve: Removed (no more kde4).
  4003. desktop/qtile: Update README - Add python-dbus-next as optional dependency
  4004. desktop/qtile: Update for 0.20.0 (+new maintainer)
  4005. desktop/quadkonsole4: Removed (no more kde4).
  4006. desktop/quickaccess: Removed (no more kde4).
  4007. desktop/razorqt: Add the dependency qt4.
  4008. desktop/recoll: Updated for version 1.31.0.
  4009. desktop/recorditnow: Removed (no more kde4).
  4010. desktop/recorditnow: Update DEP.
  4011. desktop/rodent: Updated for version 5.3.16.3.
  4012. desktop/rofi-calc: Fixed dep info
  4013. desktop/rofi-pass: Fix github tarball handling.
  4014. desktop/rofi: Updated for version 1.7.3
  4015. desktop/rsl: Remove .la files.
  4016. desktop/rsl: Use libtrpc.
  4017. desktop/rss-glx: Add a patch for gcc >= 11.x.
  4018. desktop/rss-glx: Added patches from debian and gentoo.
  4019. desktop/rss-glx: Fixed dep info in README
  4020. desktop/rss-glx: Remove .la files.
  4021. desktop/rss-glx: Remove .la files.
  4022. desktop/rss-glx: Remove reference to non-existing directory.
  4023. desktop/rss-guard: Updated for version 3.5.9.
  4024. desktop/salmon: Remove template comment.
  4025. desktop/sawfish-extras: Removed (no maintainer)
  4026. desktop/sawfish-pager: Removed (no maintainer)
  4027. desktop/sawfish-session-dialog: Removed (no maintainer)
  4028. desktop/sawfish: Removed (no maintainer)
  4029. desktop/screenkey: Fix MD5SUM.
  4030. desktop/screenkey: Updated dependencies.
  4031. desktop/screensaver-icon: Removed (source does not exist).
  4032. desktop/seafile-client: Added (Seafile Desktop applet)
  4033. desktop/seafile-client: Updated for version 8.0.4.
  4034. desktop/seafile-gui: Removed (replaced by seafile-client).
  4035. desktop/searchmonkey: Patch for gcc >= 6.x.
  4036. desktop/searchmonkey: Removed.
  4037. desktop/sgsearch: Updated for version 1.2.3.
  4038. desktop/simon: Removed (no more kde4).
  4039. desktop/simplenote: Removed (abandoned by SBo maintainer)
  4040. desktop/siva-flat-themes: Removed (no maintainer)
  4041. desktop/skulpture: Add the dependency qt4.
  4042. desktop/smaragd: Fixed download link
  4043. desktop/smaragd: Updated for version 0.1.1.
  4044. desktop/ssr: Removed (added to Slackware).
  4045. desktop/stoken: Remove .la files.
  4046. desktop/stoken: Remove .la files.
  4047. desktop/subtle: Fix 15.0 build.
  4048. desktop/sun: Update DEP.
  4049. desktop/sun: Updated for version 1.3.2.
  4050. desktop/sun: Updated for version 1.3.3.
  4051. desktop/sun: Updated for version 1.3.5.
  4052. desktop/suru-plus-icon-theme: Added (icon theme).
  4053. desktop/sxhkd: Updated for version 0.6.2.
  4054. desktop/thunar-archive-plugin: Updated for version 0.4.0.
  4055. desktop/thunar-archive-plugin: Various fixups for Slackware 15.0
  4056. desktop/thunar-dropbox: Removed (unmaintained upstream).
  4057. desktop/thunar-media-tags-plugin: Fixed homepage in info file
  4058. desktop/thunar-media-tags-plugin: Updated for version 0.3.0.
  4059. desktop/thunar-sendto-clamtk: update copyright year
  4060. desktop/thunar-thumbnailers: Fixed dep info
  4061. desktop/thunar-thumbnailers: Removed (abandoned upstream)
  4062. desktop/thunar-vcs-plugin: Misc fixups for Slackware 15.0
  4063. desktop/thunar-vcs-plugin: Updated for version 0.2.0.
  4064. desktop/trayer-srg: Grammar/spelling fixes.
  4065. desktop/tty-clock: Fix i486 -> i586.
  4066. desktop/tty-clock: Updated for version 2.3.
  4067. desktop/unsaver: Remove template comment.
  4068. desktop/unsaver: Updated for version 0.4.1.
  4069. desktop/uwm: Removed (no maintainer)
  4070. desktop/vala-panel-appmenu: Fixed dep info
  4071. desktop/vala-panel-appmenu: Updated for version 0.7.6.
  4072. desktop/vala-panel-appmenu: Updated for version 20191009_060f7ac.
  4073. desktop/variety: Change BeautifulSoup4 DEP to python2-BeautifulSoup4
  4074. desktop/variety: Fixed dep info
  4075. desktop/vbox-runner: Update download URL
  4076. desktop/vbox-runner: Updated for version git_20200604_e2306271
  4077. desktop/vbox-runner: Updated maintainer email
  4078. desktop/vertex-maia-themes: Removed.
  4079. desktop/vertex-theme: Removed (not suitable for current).
  4080. desktop/vivacious-colors-gtk-icon-theme: Removed (does not work well with xfce 4.16)
  4081. desktop/vivacious-colors-gtk-theme: Removed (does not work well with xfce 4.16)
  4082. desktop/vwm: Fix build. Again.
  4083. desktop/vwm: Move to system/vwm.
  4084. desktop/vwm: Relicense.
  4085. desktop/vwm: Update DEP.
  4086. desktop/vwm: Updated for version 3.3.2+20200112_207d888.
  4087. desktop/wally: Add the dependency qt4.
  4088. desktop/wbar: Disabled some warnings-as-errors.
  4089. desktop/wbar: Removed (no maintainer)
  4090. desktop/weston: Align with new template.
  4091. desktop/weston: Cleanups to docs and SlackBuild.
  4092. desktop/weston: Updated for version 9.0.0, use PAM.
  4093. desktop/wmCalClock: Pass -fcommon for gcc >= 10.x.
  4094. desktop/wmMoonClock: Pass -fcommon for gcc >= 10.x.
  4095. desktop/wmSun: Pass -fcommon for gcc >= 10.x.
  4096. desktop/wmSunMoon: Pass -fcommon with the CFLAGS for gcc >= 10.x.
  4097. desktop/wmakerconf: Use (amended) freebsd patches, fix linking.
  4098. desktop/wmbackground: Fix for gcc >= 10.x.
  4099. desktop/wmbiff: Fix for gcc >= 10.x.
  4100. desktop/wmblob: Remove template comment.
  4101. desktop/wmbutton: New maintainer, add icon.
  4102. desktop/wmcliphist: Remove template comment.
  4103. desktop/wmclock: Remove template comment.
  4104. desktop/wmclockmon: Fix for gcc >= 10.x.
  4105. desktop/wmcpuwatch: Fix download URL.
  4106. desktop/wmcube: Fix for gcc >= 10.x.
  4107. desktop/wmdate: Fix download URL.
  4108. desktop/wmdl: Remove template comment.
  4109. desktop/wmfire: Drop broken inlining (tnx gentoo!).
  4110. desktop/wmfire: Update DEP.
  4111. desktop/wmii: Fix for gcc >= 10.x.
  4112. desktop/wminfo: Pass -fcommon for gcc >= 10.x.
  4113. desktop/wmix: Updated for version 3.5, new maintainer.
  4114. desktop/wmmixer: Use the C++14 standard, cleanups.
  4115. desktop/wmmon: Remove template comment.
  4116. desktop/wmphoto+: Fix for gcc >= 10.x.
  4117. desktop/wmpower: Patch for gcc >= 10.x (tnx gentoo!).
  4118. desktop/wmslideshow: Fix for gcc >= 10.x.
  4119. desktop/wmsm.app: Pass -fcommon for gcc >= 10.x.
  4120. desktop/wmsupermon: Remove template comment.
  4121. desktop/wmsysmon: Fix for gcc >= 10.x.
  4122. desktop/wmsystemtray: Remove template comment.
  4123. desktop/wmtime: Remove template comment.
  4124. desktop/wmtimer: Add man page.
  4125. desktop/wmtop: Pass -fcommon for gcc >= 10.x.
  4126. desktop/wmudmount: Remove template comment.
  4127. desktop/wmweather+: Remove template comment.
  4128. desktop/wmweather: Pass -fcommon for gcc >= 10.x.
  4129. desktop/wmwebcam: Remove template comment.
  4130. desktop/wmxss: Fix -current build.
  4131. desktop/workrave: Added (work break alerts).
  4132. desktop/workrave: Remove .la files.
  4133. desktop/workrave: Update DEP.
  4134. desktop/workrave: Updated for version 1.10.49.
  4135. desktop/x2x: Remove template comment.
  4136. desktop/xdg-desktop-portal-gtk: Fix dependency info.
  4137. desktop/xdg-desktop-portal-gtk: Remove .la files.
  4138. desktop/xdg-desktop-portal: Fixed dep info
  4139. desktop/xdg-desktop-portal: Fixed dep info
  4140. desktop/xdg-desktop-portal: Removed (added to Slackware).
  4141. desktop/xdg-desktop-portal: Updated for version 1.8.0.
  4142. desktop/xdgmenumaker: Fix for new txt2tags.
  4143. desktop/xdgmenumaker: Remove template comment.
  4144. desktop/xdgurl: Removed (no maintainer)
  4145. desktop/xed: Fixed dep info
  4146. desktop/xed: Removed (no active maintainer)
  4147. desktop/xfce4-battery-plugin: Disable debug in build
  4148. desktop/xfce4-battery-plugin: Updated for version 1.1.3.
  4149. desktop/xfce4-battery-plugin: Updated for version 1.1.4.
  4150. desktop/xfce4-cpufreq-plugin: Updated for version 1.2.2.
  4151. desktop/xfce4-cpufreq-plugin: Updated for version 1.2.7.
  4152. desktop/xfce4-cpugraph-plugin: Updated for version 1.1.0.
  4153. desktop/xfce4-cpugraph-plugin: Updated for version 1.2.4.
  4154. desktop/xfce4-cpugraph-plugin: Updated for version 1.2.6.
  4155. desktop/xfce4-datetime-plugin: Updated for version 0.8.1.
  4156. desktop/xfce4-dict: Fixed homepage
  4157. desktop/xfce4-dict: Updated for version 0.8.4.
  4158. desktop/xfce4-diskperf-plugin: Fixed homepage in info file
  4159. desktop/xfce4-diskperf-plugin: Updated for version 2.6.3.
  4160. desktop/xfce4-embed-plugin: Removed (no more libxfce4ui-1).
  4161. desktop/xfce4-eyes-plugin: Updated for version 4.5.1.
  4162. desktop/xfce4-fsguard-plugin: Updated for version 1.1.1.
  4163. desktop/xfce4-fsguard-plugin: Updated for version 1.1.2.
  4164. desktop/xfce4-genmon-plugin: Fixed homepage
  4165. desktop/xfce4-genmon-plugin: Updated for version 4.1.0.
  4166. desktop/xfce4-kbdleds-plugin: Removed (unmaintained upstream).
  4167. desktop/xfce4-mailwatch-plugin: Updated for version 1.3.0.
  4168. desktop/xfce4-mount-plugin: Updated for version 1.1.4.
  4169. desktop/xfce4-mount-plugin: Updated for version 1.1.5.
  4170. desktop/xfce4-mpc-plugin: Fixed homepage
  4171. desktop/xfce4-mpc-plugin: Updated for version 0.5.2.
  4172. desktop/xfce4-netload-plugin: Updated for version 1.3.2.
  4173. desktop/xfce4-netload-plugin: Updated for version 1.4.0.
  4174. desktop/xfce4-notes-plugin: Updated for version 1.9.0.
  4175. desktop/xfce4-notes-plugin: Updated for version 20201231_b38052b.
  4176. desktop/xfce4-places-plugin: Misc fixups for Slackware 15.0
  4177. desktop/xfce4-places-plugin: Updated for version 1.8.1.
  4178. desktop/xfce4-quicklauncher-plugin: Removed (needs libxfcegui4).
  4179. desktop/xfce4-sensors-plugin: Updated for version 1.3.95.
  4180. desktop/xfce4-sensors-plugin: Updated for version 1.4.1.
  4181. desktop/xfce4-sensors-plugin: Updated for version 1.4.3.
  4182. desktop/xfce4-sensors-plugin: Updated for version 20201116_a487acb.
  4183. desktop/xfce4-smartbookmark-plugin: Updated for version 0.5.1.
  4184. desktop/xfce4-smartbookmark-plugin: Updated for version 0.5.2.
  4185. desktop/xfce4-timer-plugin: Updated for version 1.7.1.
  4186. desktop/xfce4-verve-plugin: Updated for version 2.0.0.
  4187. desktop/xfce4-verve-plugin: Updated for version 2.0.1.
  4188. desktop/xfce4-volumed-pulse: Add the new dependency keybinder.
  4189. desktop/xfce4-wavelan-plugin: Updated for version 0.6.2.
  4190. desktop/xfce4-whiskermenu-plugin: Removed (added to Slackware).
  4191. desktop/xfce4-windowck-plugin: Updated for version 0.4.10.
  4192. desktop/xfce4-xkb-plugin: Updated for version 0.8.1, chgd homepage.
  4193. desktop/xfce4-xkb-plugin: Updated for version 0.8.2.
  4194. desktop/xfce4-xmms-plugin: Removed (needs libxfcegui4).
  4195. desktop/xipper: Removed (no maintainer)
  4196. desktop/xmms-skins-almond: update copyright year
  4197. desktop/xmms-skins-ater: misc cleanups
  4198. desktop/xmms-status-plugin: misc cleanups
  4199. desktop/xmobar: Updated for version 0.41.
  4200. desktop/xmonad: Updated for version 0.17.0.
  4201. desktop/xonclock: Add homepage.
  4202. desktop/xonclock: Cleanup SlackBuild.
  4203. desktop/xpenguins-xtrathemes: Fix build for new xpenguins.
  4204. desktop/xpenguins: Updated for version 3.2.1, new maintainer.
  4205. desktop/xpra: Added (remote X11 desktop proxy)
  4206. desktop/xss-lock: Fixed dep info in README
  4207. desktop/xtrkcad: Updated for version 5.2.2GA.
  4208. desktop/xtrlock: Remove template comment.
  4209. desktop/xvkbd: Updated for version 4.1.
  4210. desktop/yad: Fixed dep info
  4211. desktop/yad: Updated for version 7.3.
  4212. desktop/yawp: Removed (no more kde4).
  4213. desktop/zenity: Updated for version 3.41.0, changed maintainer.
  4214. developer/jupyterlab_pygments: Added jupyterlab-pygments (+new maintainer)
  4215. development/Arduino: Fix github tarball handling.
  4216. development/Arduino: Updated for version 1.8.19.
  4217. development/CImg: Updated email
  4218. development/CImg: Updated for version 2.9.8
  4219. development/CImg: Updated for version 3.0.1
  4220. development/CVSTools: Mirror download URL.
  4221. development/Catch: Updated for version 2.13.8.
  4222. development/ChezScheme: Disabled some warnings-as-errors.
  4223. development/Coin: Fix github filename.
  4224. development/Coin: Patch to fix FreeCAD segfault at startup.
  4225. development/Coin: Updated for version 4.0.0
  4226. development/FreeBASIC: Updated for version 1.09.0.
  4227. development/J-Link: Fixed dep info (but not in README)
  4228. development/J-Link: Updated for version 7.00a.
  4229. development/JSONObject: Removed (incompatible with the newer boost).
  4230. development/KKEdit: Removed.
  4231. development/MySQL-python: Add a fix for mariadb >= 10.2.8.
  4232. development/MySQL-python: Updated for version 1.2.5.
  4233. development/Naked: Removed redundant doinst.sh.
  4234. development/Naked: Update DEP.
  4235. development/Naked: Update DEP.
  4236. development/OpenHantek6022: Fixed dep info
  4237. development/ParadisEO: Updated for version 3.0.0_beta.
  4238. development/Pivy: Updated for version 0.6.6
  4239. development/QtPy: Removed (abandoned).
  4240. development/QtPy: Updated dependencies.
  4241. development/SDL2_gfx: Removed (added to Slackware).
  4242. development/SQLAlchemy: Updated for version 1.4.31.
  4243. development/ShellCheck-bin: Updated for version 0.7.2.
  4244. development/ShellCheck-bin: Updated for version 0.8.0.
  4245. development/SoQt: Updated for version 1.6.0
  4246. development/Sphinx: Update DEP.
  4247. development/Sphinx: Updated dependencies.
  4248. development/Sphinx: Updated for version 4.0.2.
  4249. development/Sphinx: Updated for version 4.2.0.
  4250. development/acpica: Pass -fcommon for gcc >= 10.x.
  4251. development/acpica: Updated for version 20210331.
  4252. development/acpica: Updated for version 20210730
  4253. development/acpica: Updated for version 20210930
  4254. development/acpica: Updated for version 20211217
  4255. development/acpica: Updated maintainer email
  4256. development/adms: Remove .la files.
  4257. development/adoptopenjdk-openj9: Removed (EOL).
  4258. development/adoptopenjdk: Removed (EOL).
  4259. development/afl: Removed (replaced with aflplusplus).
  4260. development/aflplusplus: Added (fuzzer; replaces afl).
  4261. development/aflplusplus: Remove old template CWD.
  4262. development/ahven: Removed (needs gprbuild).
  4263. development/alembic: Fix REQUIRES for python2.
  4264. development/alembic: Fix dependency.
  4265. development/alembic: Update DEP.
  4266. development/alloy: Removed (no maintainer)
  4267. development/android-studio: Updated for version 29.0.5.
  4268. development/android-tools: Align with new template.
  4269. development/android-tools: Fix typo.
  4270. development/android-tools: Fixed dep info
  4271. development/android-tools: Updated for version 31.0.2.
  4272. development/android-tools: Updated for version 31.0.3.
  4273. development/android-tools: Updated for version 31.0.3p1
  4274. development/anjuta: Disabled some warnings-as-errors.
  4275. development/anjuta: Fixed dep info
  4276. development/anjuta: Removed.
  4277. development/apache-jmeter: Updated for version 5.4.
  4278. development/apache-jmeter: Updated for version 5.4.3.
  4279. development/apache-log4cxx: Fix download URL.
  4280. development/apache-log4cxx: Remove .la files.
  4281. development/apache-maven: Updated for versio 3.8.2.
  4282. development/apache-maven: Updated for version 3.8.3.
  4283. development/apache-maven: Updated for version 3.8.4.
  4284. development/arduino: Updated for version 1.8.19.
  4285. development/as31: Remove template comment.
  4286. development/asl: Updated for version 142_bld207.
  4287. development/astyle: Remove template comment.
  4288. development/atasm: Remove template comment.
  4289. development/atom: Removed (no maintainer).
  4290. development/autoconf-archive: Removed (added to Slackware).
  4291. development/autogen: Add the missing patch for guile2.2.
  4292. development/autogen: Disable some warnings-as-errors.
  4293. development/autogen: Remove .la files.
  4294. development/avarice: Updated for version 2.14.
  4295. development/avarice: Use the C++14 standard.
  4296. development/avr-binutils: Updated for version 2.35.1.
  4297. development/avr-gcc: Fix compiler FLAGS on 32bit ARCHs.
  4298. development/avr-gcc: Fix download URL.
  4299. development/avr-gcc: Updated for version 10.2.0.
  4300. development/avr-gdb: Updated for version 10.1.
  4301. development/avrdude: Remove .la files.
  4302. development/bacon: Removed (no maintainer).
  4303. development/bacon: Updated DOWNLOAD.
  4304. development/bas55: Fix for gcc >= 10.x.
  4305. development/bas55: Fixed for libedit in Slackware
  4306. development/bas: Updated for version 2.5.
  4307. development/bashdb: Updated for version 5.0_1.1.2.
  4308. development/bashdb: Updated for version 5.1_20210713.
  4309. development/bats-core: Renamed from bats and updated for 1.4.1
  4310. development/bats-core: Updated for version 1.5.0
  4311. development/bats: Updated maintainer email
  4312. development/beav: Remove template comment.
  4313. development/bed: Fix 15.0 build.
  4314. development/bed: Remove template comment.
  4315. development/blassic: Fix 15.0 build.
  4316. development/blassic: Remove template comment.
  4317. development/bless: Fix build with the newer mono.
  4318. development/bless: Remove template comment.
  4319. development/bless: Various fixes.
  4320. development/bluefish: Corrected spelling
  4321. development/bluefish: Updated email
  4322. development/bmake: Updated for version 20210803.
  4323. development/bpython: Update DEP.
  4324. development/brackets: Removed (End of Support by Adobe).
  4325. development/brotli: Removed (added to Slackware).
  4326. development/bsdiff: Remove template comment.
  4327. development/bviplus: Remove template comment.
  4328. development/byacc: Fix DOWNLOAD.
  4329. development/byacc: Switch to https.
  4330. development/byacc: Updated for version 20210520.
  4331. development/byacc: Updated for version 20210619.
  4332. development/byacc: Updated for version 20210802.
  4333. development/byacc: Updated for version 20210808.
  4334. development/byacc: Updated for version 20211224.
  4335. development/byacc: Updated for version 20220109.
  4336. development/byacc: Updated for version 20220114.
  4337. development/byacc: Updated for version 20220128.
  4338. development/bzr: Fixed dep info
  4339. development/bzr: Updated copyright and homepage
  4340. development/camlp4: Updated for version 4.08_1.
  4341. development/camlp4: Updated for version 4.13.
  4342. development/camlp5: Updated for version 8.0.
  4343. development/casperjs: Updated for version 1.1.4_2
  4344. development/casperjs: Updated maintainer email
  4345. development/cc65: Remove template comment.
  4346. development/check: Removed (added to Slackware).
  4347. development/chibi-scheme: Updated for version 0.10.
  4348. development/chicken: Updated for version 5.3.0.
  4349. development/cim: Remove .la files.
  4350. development/cloc: Updated for version 1.92.
  4351. development/cmake-202x: Removed (already in Slackware).
  4352. development/coccinelle: Updated for version 1.0.8.
  4353. development/coccinelle: Updated for version 1.1.1.
  4354. development/codeblocks: Patch for gcc >= 11.x.
  4355. development/codeblocks: Remove .la files.
  4356. development/codespell: Updated for version 2.1.0.
  4357. development/colm: Remove .la files.
  4358. development/conan: Fix REQUIRES for python2.
  4359. development/conan: Update DEP.
  4360. development/conan: Update DEP.
  4361. development/couchdb: Removed (ftb, no maintainer).
  4362. development/cppcheck: Updated for version 2.6
  4363. development/cproto: Updated for version 4.7s.
  4364. development/cproto: Updated for version 4.7t.
  4365. development/cudatoolkit: Do not write to $CWD.
  4366. development/cudatoolkit: Use zulu-openjdk8.
  4367. development/cunit: Remove .la files.
  4368. development/curlpp: Removed (No maintainer).
  4369. development/cxxtools: Remove .la files.
  4370. development/cxxtools: Updated for version 3.0.
  4371. development/d-tools: Updated for version 2.097.2
  4372. development/d-tools: Updated for version 2.098.1
  4373. development/darcs: Updated for version 2.16.5.
  4374. development/devhelp: Updated for version 40.2.
  4375. development/device-tree-compiler: Add a fix for gcc >= 10.x.
  4376. development/device-tree-compiler: Respect DESTDIR in python install
  4377. development/device-tree-compiler: Updated for version 1.5.0.
  4378. development/device-tree-compiler: Updated for version 1.6.0.
  4379. development/device-tree-compiler: Updated for version 1.6.1.
  4380. development/dhex: Fix typos and grammar.
  4381. development/dis6502: Fix -current build.
  4382. development/dis: Add man page.
  4383. development/dkms: Updated for version 2.8.5
  4384. development/dkms: Updated for version 2.8.6
  4385. development/dkms: Updated for version 3.0.3
  4386. development/dmd: Updated for version 2.097.2
  4387. development/dmd: Updated for version 2.098.1
  4388. development/docutils: Removed (added to Slackware).
  4389. development/dotnet-runtime: Changed package name to dotnet-runtime-3.1 and updated for version 3.1.21.
  4390. development/dotnet-sdk-6.0: Added (.NET SDK).
  4391. development/dotnet-sdk: Changed package name to dotnet-sdk-3.1 and updated fo version 3.1.415.
  4392. development/dpkg: Remove .la files.
  4393. development/dpkg: Updated for version 1.21.1.
  4394. development/dune: Added (ocaml build system - formerly jbuilder).
  4395. development/dune: Updated for version 3.0.0.
  4396. development/ecl: Updated for version 21.2.1.
  4397. development/eclim: Removed (no longer builds).
  4398. development/eclipse-cpp: Updated for version 4.19.
  4399. development/eclipse-cpp: Updated for version 4.20.
  4400. development/eclipse-cpp: Updated for version 4.21.
  4401. development/eclipse-cpp: Updated for version 4.22.
  4402. development/eclipse-java: Updated for version 4.19.
  4403. development/eclipse-java: Updated for version 4.20.
  4404. development/eclipse-java: Updated for version 4.21.
  4405. development/eclipse-java: Updated for version 4.22.
  4406. development/eclipse-jee: Fix MD5SUM.
  4407. development/eclipse-jee: Updated for version 4.19.
  4408. development/eclipse-jee: Updated for version 4.20.
  4409. development/eclipse-jee: Updated for version 4.21.
  4410. development/eclipse-jee: Updated for version 4.22.
  4411. development/eclipse-php: Updated for version 4.19.
  4412. development/eclipse-php: Updated for version 4.20.
  4413. development/eclipse-php: Updated for version 4.21.
  4414. development/eclipse-php: Updated for version 4.22.
  4415. development/edb-debugger: Updated for version 1.3.0.
  4416. development/editorconfig-core-c: Removed (added to Slackware).
  4417. development/elixir: Updated for version 1.11.3.
  4418. development/energia: Fix downloads.
  4419. development/enki: Update DEP.
  4420. development/enki: Updated for version 20220128_3f86457.
  4421. development/envytools: Update README.
  4422. development/envytools: Updated for version 20210309_39d90be.
  4423. development/eric: Removed (needs PyQt4).
  4424. development/erlang-otp: Updated DOWNLOAD.
  4425. development/erlang-otp: Updated for version 23.2.
  4426. development/evemu: Remove .la files.
  4427. development/ex-vi: Remove template comment.
  4428. development/extra-cmake-modules: Removed (added to Slackware).
  4429. development/facile: Removed
  4430. development/fasm: Added (fast assembler for x86/x86_64).
  4431. development/flow: Removed (ftb).
  4432. development/fossil: Updated for version 2.17.
  4433. development/fpc-source: Removed (no dependees).
  4434. development/fpc-source: Updated for version 3.2.2.
  4435. development/fpc: Updated for version 3.2.2, new maintainer.
  4436. development/freetds: Remove .la files.
  4437. development/freetds: Updated for version 1.00.99.
  4438. development/frobtads: Updated for version 2.0.
  4439. development/fsharp: Removed (abandoned).
  4440. development/ftnchek: Updated for version 3.3.1.
  4441. development/fuel: Removed (no maintainer)
  4442. development/gambas3: Fixed dep info in README
  4443. development/gambas3: Updated for version 3.16.3.
  4444. development/gauche: Updated for version 0.9.11.
  4445. development/gcc-d: Removed (added to Slackware as part of gcc).
  4446. development/gcc5: Added (gcc version 5 C, C++ and Java compilers).
  4447. development/gcc5: Addressed ponce's remarks about the SlackBuild.
  4448. development/gcc5: Explicitly disable isl.
  4449. development/gcc5: Fix building with recents glibc, gcc and kernels.
  4450. development/gcc5: Fix support for PRINT_PACKAGE_NAME
  4451. development/gcc5: Patch for glibc-2.28.
  4452. development/gcc5: Speed up find/chmod.
  4453. development/gcc5: fix md5sum in gcc5.info
  4454. development/gcc5: fix the .la file filtering
  4455. development/gcc5: further cleanups of the SlackBuild
  4456. development/gcc5: update to 5.5.0
  4457. development/gcclegacy494: Removed (FTB).
  4458. development/geany-plugins: Disable broken plugins.
  4459. development/geany-plugins: Fixed dep info
  4460. development/geany-plugins: Remove .la files.
  4461. development/geany-plugins: Updated for version 1.36.0.
  4462. development/geany: Remove .la files.
  4463. development/geany: Updated for version 1.36.0 (switch to gtk+3).
  4464. development/gedit: Disable spellchecker (no more enchant-1.x).
  4465. development/gedit: Fix underlinking.
  4466. development/ghex: Align with new template.
  4467. development/ghex: Fixed dep info
  4468. development/ghex: Updated for version 3.41.beta.
  4469. development/git-cola: Fixed dep info in README
  4470. development/git-lfs: Updated for version 3.0.1.
  4471. development/git-lfs: Updated for version 3.0.2.
  4472. development/git-lfs: Updated for version 3.1.2.
  4473. development/github-cli: Updated for version 1.10.0
  4474. development/github-cli: Updated for version 1.10.3
  4475. development/github-cli: Updated for version 1.11.0
  4476. development/github-cli: Updated for version 1.12.0
  4477. development/github-cli: Updated for version 1.12.1
  4478. development/github-cli: Updated for version 1.13.1
  4479. development/github-cli: Updated for version 1.14.0
  4480. development/github-cli: Updated for version 1.9.1
  4481. development/github-cli: Updated for version 1.9.2
  4482. development/github-cli: Updated for version 2.0.0
  4483. development/github-cli: Updated for version 2.1.0
  4484. development/github-cli: Updated for version 2.2.0
  4485. development/github-cli: Updated for version 2.3.0
  4486. development/github-cli: Updated for version 2.4.0
  4487. development/github-cli: Updated for version 2.5.0
  4488. development/github-cli: Updated for version 2.5.1
  4489. development/github-cli: Updated for version 2.5.2
  4490. development/glade: Removed (added to Slackware).
  4491. development/global: Updated for version 6.6.7.
  4492. development/gn: Fixed dep info
  4493. development/gnats: Disabled some warnings-as-errors.
  4494. development/gnats: Fix for gcc >= 10.x.
  4495. development/gnome-inform7: Removed.
  4496. development/gnulib: Remove template comment.
  4497. development/gnuradio: Add various patches for the newer boosts.
  4498. development/gnuradio: Fix man pages location.
  4499. development/gnuradio: Fixed python2-cheetah dependency.
  4500. development/gnuradio: Update DEP.
  4501. development/gnuradio: Updated for version 3.9.4.0.
  4502. development/gnustep-base: Updated for version 1.27.0.
  4503. development/gnustep-make: Updated for version 2.8.0.
  4504. development/gnustep-startup: Removed (no maintainer)
  4505. development/golang-googlecode-gotools: fix build of go.tools
  4506. development/google-appengine-gosdk: Removed (no maintainer)
  4507. development/google-appengine-pysdk: Removed (no maintainer)
  4508. development/google-go-lang: Updated for version 1.16.10.
  4509. development/google-go-lang: Updated for version 1.17.7.
  4510. development/google-go-lang: fix build for x86
  4511. development/google-webdesigner: Removed.
  4512. development/gprolog: Updated for version 1.5.0.
  4513. development/gpsim: Added -fpermissive to the CXXFLAGS.
  4514. development/gpsim: Remove .la files.
  4515. development/gr-osmosdr: Add various fixes for the newer boosts.
  4516. development/gr-osmosdr: Fixed python2-cheetah dependency.
  4517. development/gr-osmosdr: Updated for version 20210128_a100eb0.
  4518. development/gradle: Use zulu-opendjdk11.
  4519. development/gsoap: Updated for version 2.8.111.
  4520. development/gsoap: Updated for version 2.8.117
  4521. development/gsoap: Updated for version 2.8.118
  4522. development/gsoap: Updated maintainer email
  4523. development/gtest: Install libraries and pkgconfig files.
  4524. development/gtkdialog: Patch for gcc >= 10.x.
  4525. development/gtkextra: Remove .la files.
  4526. development/guile-json: Removed (no maintainer)
  4527. development/guile1.8: Remove la files.
  4528. development/guile2.0: Added (GNU's extension language library).
  4529. development/guile2.0: Remove .la files.
  4530. development/guile2.2: Added (GNU's extension language library).
  4531. development/guile2.2: Remove .la files.
  4532. development/happy: Updated for version 1.20.0.
  4533. development/hexcurse: Fix -current build.
  4534. development/hexe: Fix -current build.
  4535. development/hexer: Remove template comment.
  4536. development/hexinator: Fix -current build.
  4537. development/hexinator: Fix DOWNLOAD_x86_64.
  4538. development/hexinator: Fix downloads.
  4539. development/hexinator: Remove template comment.
  4540. development/hexnet: Updated for version 1.1.1, fix for gcc >= 10.x.
  4541. development/hhvm: Create /var/run stuff in init script
  4542. development/hhvm: Fixed dep info
  4543. development/hhvm: Updated for version 4.104.1
  4544. development/highlight: Disable parallel jobs on install.
  4545. development/highlight: Updated for version 4.1. also enabled GUI app, thanks j12i.
  4546. development/hopper: Updated for version 4.7.4.
  4547. development/hopper: Updated for version 4.9.1.
  4548. development/hopper: Updated for version 4.9.2.
  4549. development/hopper: Updated for version 4.9.5.
  4550. development/hte: Fix build with newer gcc.
  4551. development/hte: Updated for version 2.1.0, cleanups.
  4552. development/hugo: Switch back to 644.
  4553. development/hugo: Update for version 0.92.2.
  4554. development/hugo: Updated for version 0.92.1.
  4555. development/icdiff: Updated for version 2.0.4.
  4556. development/icecream: Removed (added to Slackware).
  4557. development/icemon: Fixed dep info
  4558. development/icemon: Updated for version 3.3
  4559. development/icemon: Updated maintainer email
  4560. development/idlex: Build with python3 by default
  4561. development/idlex: Updated for version 1.22.
  4562. development/ignition-math: Fix DOWNLOAD.
  4563. development/inform: Updated for version 6.35_r2.
  4564. development/ioncube-loader: Updated for version 11.0.1.
  4565. development/jasspa: Patch for glibc >= 2.32.
  4566. development/javacc: Updated for version 7.0.10.
  4567. development/jdk11: Updated for version 11.0.12.
  4568. development/jdk11: Updated to version 11.0.11
  4569. development/jdk12: Removed (EOL).
  4570. development/jdk13: Removed (EOL).
  4571. development/jdk14: Removed (EOL).
  4572. development/jdk15: Removed (EOL).
  4573. development/jdk16: Removed (EOL).
  4574. development/jdk16: Updated for version 16.0.2.
  4575. development/jdk16: Updated to version 16.0.1
  4576. development/jdk: Don't set the MANPATH variable.
  4577. development/jdk: Updated for version 8u291.
  4578. development/jdk: Updated for version 8u321.
  4579. development/jeex: Fix -current build.
  4580. development/jenv: Fix github tarball handling.
  4581. development/jupyter-ipykernel: Added jupyter-ipykernel (+new maintainer)
  4582. development/jupyter-ipykernel: Removed (abandoned).
  4583. development/jupyter-ipykernel: Updated dependencies.
  4584. development/jupyter-ipyleaflet: Removed (abandoned).
  4585. development/jupyter-ipywidgets: Removed (abandoned).
  4586. development/jupyter-ipywidgets: Updated dependencies.
  4587. development/jupyter-nbclient: Added jupyter-nbclient (+new maintainer)
  4588. development/jupyter-nbclient: Removed (abandoned).
  4589. development/jupyter-nbclient: Update for 0.5.12
  4590. development/jupyter-nbconvert: Added jupyter-nbconvert (+new maintainer)
  4591. development/jupyter-nbconvert: Removed (abandoned).
  4592. development/jupyter-nbconvert: Update DEP.
  4593. development/jupyter-nbdime: Removed (abandoned).
  4594. development/jupyter-nbdime: Updated dependencies.
  4595. development/jupyter-nbformat: Added jupyter-nbformat (+new maintainer)
  4596. development/jupyter-nbformat: Removed (abandoned).
  4597. development/jupyter-notebook: Added (new maintainer)
  4598. development/jupyter-notebook: Removed (abandoned).
  4599. development/jupyter-notebook: Update DEP.
  4600. development/jupyter-qtconsole: Added jupyter-qtconsole (+new maintainer)
  4601. development/jupyter-qtconsole: Removed (abandoned).
  4602. development/jupyter-qtconsole: Updated for version 5.0.3.
  4603. development/jupyter-qtconsole: Updated for version 5.1.0.
  4604. development/jupyter-widgetsnbextension: Removed (abandoned).
  4605. development/jupyter_client: Added jupyter_client (+new maintainer)
  4606. development/jupyter_client: Removed (abandoned).
  4607. development/jupyter_client: Updated for version 6.2.0.
  4608. development/jupyter_console: Added jupyter_console (+new maintainer)
  4609. development/jupyter_console: Removed (abandoned).
  4610. development/jupyter_console: Update for 6.4.3
  4611. development/jupyter_core: Added jupyter_core (+new maintainer)
  4612. development/jupyter_core: Removed (abandoned).
  4613. development/jupyter_core: Updated dependencies.
  4614. development/jupyterlab_pygments: Removed (abandoned).
  4615. development/jupyterlab_pygments: Updated dependencies.
  4616. development/jython: Removed (No maintainer).
  4617. development/kakoune: Updated for version 2020.09.01.
  4618. development/kakoune: Updated for version 2021.11.08.
  4619. development/kconfig-frontends: Remove .la files.
  4620. development/kconfig-frontends: Updated for version 4.11.0.1.
  4621. development/kcov: Updated for version 40.
  4622. development/kdesvn: Updated for version 20211128_4a776d5.
  4623. development/kdiff3: Updated for version 1.9.3.
  4624. development/kicad: Updated for version 5.1.9.
  4625. development/kotlin: Updated for version 1.5.0.
  4626. development/kotlin: Updated for version 1.5.10.
  4627. development/kotlin: Updated for version 1.5.20.
  4628. development/kotlin: Updated for version 1.5.21.
  4629. development/kotlin: Updated for version 1.5.30.
  4630. development/kotlin: Updated for version 1.5.31.
  4631. development/kotlin: Updated for version 1.6.0.
  4632. development/kotlin: Updated for version 1.6.10.
  4633. development/latrace: Patch for flex 2.6.x.
  4634. development/lazarus: Updated for version 2.0.12, new maintainer.
  4635. development/ldns: Add python3 support.
  4636. development/ldns: Fix 15.0 build.
  4637. development/ldns: Remove .la files.
  4638. development/le: Updated for version 1.16.8.
  4639. development/leo: Fixed dep info
  4640. development/libb2: Remove .la files.
  4641. development/libbitcoin: Removed (incompat boost 1.78).
  4642. development/libbitcoin: Update DOWNLOAD.
  4643. development/libcutl: Patch for gcc >= 11.x.
  4644. development/libcutl: Remove .la files.
  4645. development/libodb-boost: Removed (abandoned).
  4646. development/libodb-mysql: Removed (abandoned).
  4647. development/libodb-pgsql: Removed (abandoned).
  4648. development/libodb-qt: Removed (abandoned).
  4649. development/libodb-sqlite: Removed (abandoned).
  4650. development/libodb: Fix build on -current.
  4651. development/libodb: Remove .la files.
  4652. development/libodb: Removed (abandoned).
  4653. development/lmdb: Removed (added to Slackware).
  4654. development/love-legacy072: Fix -current build.
  4655. development/love-legacy072: Fixed dep info
  4656. development/love-legacy080: Fix -current build.
  4657. development/love-legacy080: Fixed dep info
  4658. development/love: Fix -current build.
  4659. development/love: Fixed dep info
  4660. development/ltrace: Remove template comment.
  4661. development/lwtools: Updated for version 4.19.
  4662. development/mads: Updated for version 2.1.3.
  4663. development/maude: Updated for version 3.1.
  4664. development/mawk: Remove template comment.
  4665. development/mcrl2: Removed (no maintainer)
  4666. development/mdbook: Added (utility to create modern online books)
  4667. development/mdbook: Fix github tarball handling.
  4668. development/mdbook: Fix offline build.
  4669. development/mdbook: Updated for version 0.4.14.
  4670. development/mdbook: Updated for version 0.4.15.
  4671. development/medit: Updated email
  4672. development/meld3: Fixed dep info
  4673. development/meld3: Updated for version 1.8.6.
  4674. development/meld3: Updated for version 3.20.1.
  4675. development/meld3: Updated for version 3.20.4.
  4676. development/menhir: Added the dependency dune (removed ocamlbuild).
  4677. development/menhir: Updated for version 20190924.
  4678. development/menhir: Updated for version 20220210.
  4679. development/meson: Removed (added to Slackware).
  4680. development/mg-openbsd: Fix for gcc >= 10.x, cleanups.
  4681. development/mg-troglobit: Updated for version 3.5.
  4682. development/ming: Removed.
  4683. development/mkchroot: Updated for version 1.5
  4684. development/mockpp: Remove .la files.
  4685. development/mongodb-compass: Updated for version 1.27.1.
  4686. development/mongodb-compass: Updated for version 1.28.0.
  4687. development/mongodb-compass: Updated for version 1.28.1.
  4688. development/mongodb-compass: Updated for version 1.28.2.
  4689. development/mongodb-compass: Updated for version 1.28.4.
  4690. development/mongodb-compass: Updated for version 1.29.4.
  4691. development/mongodb-compass: Updated for version 1.29.5.
  4692. development/mongodb-compass: Updated for version 1.29.6.
  4693. development/mongodb-compass: Updated for version 1.30.1.
  4694. development/monkey-studio: Removed (no qt4-qscintilla).
  4695. development/mono-addins: Avoid nuget to build.
  4696. development/mono-addins: Fix github tarball handling.
  4697. development/mono-basic: Updated for version 20200408_bdb5276.
  4698. development/mono-debugger: Removed (abandoned and ftb).
  4699. development/mono: Updated for version 6.12.0.122.
  4700. development/monodevelop: Removed (abandoned).
  4701. development/mozjs: Removed (won't build).
  4702. development/mrustc: Removed (rust now in slackware).
  4703. development/mtasc: Changed ARCH to i586
  4704. development/mtd-utils: Updated for version 2.1.2.
  4705. development/mysql-pinba: Added -fpermissive to the CXXFLAGS.
  4706. development/mysql-pinba: Removed
  4707. development/mysql-pinba: Updated maintainer email
  4708. development/mysql-workbench: Fix for gcc >= 7.x.
  4709. development/mysql-workbench: Updated for version 8.0.23.
  4710. development/mysql-workbench: Updated for version 8.0.24.
  4711. development/mysql-workbench: Updated for version 8.0.25.
  4712. development/mysql-workbench: Updated for version 8.0.26.
  4713. development/mysql-workbench: Updated for version 8.0.28.
  4714. development/nchexedit: Updated for version 0.9.7_7.1, fix rc1 build.
  4715. development/ne: Removed (No maintainer).
  4716. development/neovim-qt: Updated dependencies.
  4717. development/neovim-remote: Use system dir for completion files
  4718. development/neovim: New maintainer.
  4719. development/neovim: Updated for version 0.5.0.
  4720. development/netbeans: Updated for version 13.
  4721. development/newlib: Force a single make install job.
  4722. development/nexus: Use zulu-openjdk8.
  4723. development/nickle: Updated for version 2.90.
  4724. development/nim: Updated for version 1.4.8.
  4725. development/ninja-ide: Updated for version 2.4.
  4726. development/ninja: Removed (added to Slackware).
  4727. development/nodejs-bin: Removed.
  4728. development/nodejs: Updated for versin 14.17.1.
  4729. development/nodejs: Updated for version 14.16.1.
  4730. development/nodejs: Updated for version 14.17.0.
  4731. development/nodejs: Updated for version 14.17.3.
  4732. development/nodejs: Updated for version 14.17.4.
  4733. development/nodejs: Updated for version 14.17.5.
  4734. development/nodejs: Updated for version 14.17.6.
  4735. development/nodejs: Updated for version 14.18.0.
  4736. development/nodejs: Updated for version 16.11.0.
  4737. development/nodejs: Updated for version 16.11.1.
  4738. development/nodejs: Updated for version 17.0.1.
  4739. development/nodejs: Updated for version 17.1.0.
  4740. development/nodejs: Updated for version 17.3.0.
  4741. development/nodejs: Updated for version 17.3.1.
  4742. development/nodejs: Updated for version 17.4.0.
  4743. development/nodejs: Updated for version 17.5.0.
  4744. development/nodejs: Updated for version 17.6.0.
  4745. development/nodejs: Updated for vesion 17.2.0.
  4746. development/nodejs: Use ninja to build.
  4747. development/notepadqq: Fixed dep info
  4748. development/noweb: Updated for version 2.12
  4749. development/nuget: Removed (abandoned).
  4750. development/numpy-legacy3: Removed (ftb).
  4751. development/numpy3: Updated for version 1.20.2.
  4752. development/numpy3: Updated for version 1.20.3
  4753. development/numpy3: Updated for version 1.21.2.
  4754. development/nvi: Removed (added to Slackware).
  4755. development/obcpl: Updated for version 0.9.8, fix build.
  4756. development/ocaml-num: Added (arbitrary precision arithmetic).
  4757. development/ocaml-num: Fix download URL.
  4758. development/ocaml: Update for version 4.13.1
  4759. development/ocaml: Updated for version 4.08.1, changed maintainer.
  4760. development/ocaml: Updated for version 4.08.1.
  4761. development/ocaml: Updated for version 4.13.1.
  4762. development/ocamlbuild: Updated for version 0.14.0.
  4763. development/odb: Patch for gcc >= 6.x.
  4764. development/odb: Removed (abandoned).
  4765. development/ola: Updated for version 0.10.8.
  4766. development/omake: Fix github tarball handling.
  4767. development/omake: Updated for version 0.10.3.
  4768. development/omniORB: Updated for version 4.3.0.
  4769. development/omniORBpy: Updated for version 4.3.0.
  4770. development/oniguruma: Removed (added to Slackware).
  4771. development/opencl-headers: Removed (added to Slackware).
  4772. development/opencomal: Remove template comment.
  4773. development/opencvs: Fix for gcc >= 10.x.
  4774. development/opendbx: Removed (unmaintained upstream).
  4775. development/openjdk6: Added (re-added + new maint).
  4776. development/openjdk6: Removed (EOL).
  4777. development/openjdk7: Updated for version 7u321 + new main.
  4778. development/openjdk8: Updated for version 8u292.
  4779. development/openocd: Updated for version 0.10.0.
  4780. development/openocd: Updated for version 0.11.0.
  4781. development/p4v: Fix typo.
  4782. development/pahole: Updated for version 1.23.
  4783. development/pandas: Fix dependency.
  4784. development/patchutils: Updated for version 0.4.2.
  4785. development/pcc: Updated for version 1.2.0.DEVEL+20210905.
  4786. development/perf: Fixed dep info
  4787. development/perf: Updated for version 5.10.13.
  4788. development/perf: Updated for version 5.12.14.
  4789. development/perf: Updated for version 5.13.2.
  4790. development/perf: Updated for version 5.15.16.
  4791. development/perl-shtags: Removed.
  4792. development/pforth: Updated for version 20220221_6aa1010.
  4793. development/phantomjs: Updated for version 2.1.1
  4794. development/phantomjs: Updated maintainer email
  4795. development/php-apcu: Updated for version 5.1.17.
  4796. development/php-pinba: Removed
  4797. development/php-pinba: Updated maintainer email
  4798. development/php-xdebug: Renamed from xdebug
  4799. development/php-xdebug: Updated for version 3.1.1
  4800. development/pip2tgz: Fix VERSION in pip2tgz.info
  4801. development/pip2tgz: Update DEP.
  4802. development/pip2tgz: Updated for version 0.5
  4803. development/pip2tgz: Updated for version 0.6
  4804. development/pip2tgz: Updated for version 0.7
  4805. development/pip2tgz: Updated for version 0.8
  4806. development/pkgconf: Remove .la files.
  4807. development/pkgdiff: Remove template comment.
  4808. development/pli: Added (Iron Spring PL/I Compiler).
  4809. development/poedit: Updated for version 2.4.2.
  4810. development/poedit: Updated for version 2.4.3.
  4811. development/poedit: Updated for version 3.0.
  4812. development/poedit: Updated for version 3.0.1.
  4813. development/polyml: Remove .la files.
  4814. development/portaudio: Fix DOWNLOAD typo
  4815. development/portaudio: Updated for version 19.7.0.
  4816. development/portaudio: Updated for version v190700_20210406.
  4817. development/postman: Fix tarball handling with content disp.
  4818. development/postman: Updated for version 8.10.0
  4819. development/postman: Updated for version 8.12.4
  4820. development/postman: Updated for version 8.12.5
  4821. development/postman: Updated for version 8.5.1
  4822. development/postman: Updated for version 8.6.1
  4823. development/postman: Updated for version 8.6.2
  4824. development/postman: Updated for version 8.7.0
  4825. development/postman: Updated for version 8.8.0
  4826. development/postman: Updated for version 8.9.1
  4827. development/postman: Updated for version 9.1.5
  4828. development/postman: Updated for version 9.11.0
  4829. development/postman: Updated for version 9.12.2
  4830. development/postman: Updated for version 9.14.0
  4831. development/postman: Updated for version 9.7.1
  4832. development/postman: Updated for version 9.8.3
  4833. development/postman: Updated for version 9.9.3
  4834. development/psycopg2: Updated for version 2.9.3, removing python2 support
  4835. development/psycopg2: new maintainer
  4836. development/psycopg: Updated dependencies.
  4837. development/pudb: Updated for version 2020.1.
  4838. development/pycharm: Updated for version 2021.2.
  4839. development/pycharm: Updated for version 2021.3.2.
  4840. development/pyenchant: Fix 15.0 build, add python3 support.
  4841. development/pylint: Fix dependency.
  4842. development/python3-matplotlib: Build offline.
  4843. development/python3-matplotlib: Fix Download URL.
  4844. development/python3-matplotlib: Fixed dep info
  4845. development/python3-matplotlib: Updated for version 3.4.3.
  4846. development/qconf: Added the dependency qt4.
  4847. development/qt-creator-llvm: Update DEP.
  4848. development/qt-creator-llvm: Updated for version 13.0.0_d7b669b.
  4849. development/qt-creator2: Removed (abandoned).
  4850. development/qt-creator: Updated for version 4.13.3.
  4851. development/qt-creator: Updated for version 4.15.0.
  4852. development/qt-creator: Updated for version 5.0.3.
  4853. development/racer: Check for rust version with rustup.
  4854. development/racer: Updated for version 2.1.46.
  4855. development/racer: Updated for version 2.2.0.
  4856. development/ragel: Check for installed copy first.
  4857. development/ragel: Remove .la files.
  4858. development/rapidsvn: Fix URL, wx conflict, disable doxygen.
  4859. development/rapidsvn: Remove .la files.
  4860. development/rapidsvn: Use the C++14 standard.
  4861. development/rapidsvn: i486-->i586
  4862. development/rarian: Remove .la files.
  4863. development/re2c: Removed (added to Slackware).
  4864. development/reckless: Updated for version 3.0.3.
  4865. development/redo: Add python2-BeautifulSoup4 DEP
  4866. development/redo: Fix github tarball handling.
  4867. development/redo: Updated for version 0.42d.
  4868. development/referenceassemblies-pcl: Removed (abandoned).
  4869. development/reflex: Updated for version 2.5.4.20210808.
  4870. development/rmac: Updated for version 2.1.12_20210820.
  4871. development/robotframework: Updated for version 4.0.2.
  4872. development/robotframework: Updated for version 4.0.3.
  4873. development/robotframework: Updated for version 4.1.
  4874. development/robotframework: Updated for version 4.1.1.
  4875. development/robotframework: Updated for version 4.1.2.
  4876. development/robotframework: Updated for version 4.1.3.
  4877. development/rstudio-desktop: Added the dependency gst0-plugins-base.
  4878. development/rustup: Updated for version 1.24.3.
  4879. development/sassc: Removed (added to Slackware).
  4880. development/sbcl: Updated for version 2.1.10.
  4881. development/sbcl: Updated for version 2.1.7.
  4882. development/sbcl: Updated for version 2.2.0.
  4883. development/sbcl: Updated for version 2.2.1.
  4884. development/scala: Updated for version 2.13.6.
  4885. development/scala: Updated for version 2.13.8.
  4886. development/schroot: Remove .la files.
  4887. development/scikit-build: Added (CPython build system generator)
  4888. development/scikit-build: Use consistent URL.
  4889. development/scite: Updated for version 5.2.1.
  4890. development/scratch: Removed.
  4891. development/setedit: Fix tarball handling.
  4892. development/setedit: Force a single make job.
  4893. development/shiboken2: Added. Required for pyside2
  4894. development/shiboken: Add qt4 dependency.
  4895. development/shiboken: Fix download URL.
  4896. development/simulavr: Updated for version 20201006_32985f7.
  4897. development/sloccount: Fix download URL and add license
  4898. development/sloccount: Updated maintainer email
  4899. development/smalltalk: Remove .la files.
  4900. development/smlnj: Add missing source file
  4901. development/snappy: Save snappy.info as utf8-encoded.
  4902. development/source-highlight: Patch for gcc >= 11.x, cleanups.
  4903. development/source-highlight: Remove .la files.
  4904. development/sourcenav: Removed.
  4905. development/spice-protocol: Fix build.
  4906. development/spice-protocol: Remove NUMJOBS.
  4907. development/spice-protocol: Updated for version 0.14.3.
  4908. development/spice-protocol: Updated for version 0.14.4.
  4909. development/spl: Removed (no maintainer)
  4910. development/splint: Updated for version 20170327_3fb908d.
  4911. development/sqlcl: Align with template
  4912. development/sqldeveloper: Align with template
  4913. development/sqlitebrowser: Updated for version 3.12.2
  4914. development/sqliteman: Use qt5.
  4915. development/squeak-vm: Fixed dep info in README
  4916. development/squeak-vm: Removed.
  4917. development/srcML: Add the dependency jdk.
  4918. development/srecord: Rearrange docs, get rid of .la.
  4919. development/sublime_merge: Updated for version 2054.
  4920. development/swfmill: Disabled narrowing warnings.
  4921. development/swfmill: Updated for version 0.3.6.
  4922. development/swi-prolog: Fixed dep info
  4923. development/swift: Fixed dep info
  4924. development/swift: Fixed dep info
  4925. development/swift: Removed (abandoned, ftbfs).
  4926. development/systemtap: Updated for version 4.5.
  4927. development/tanya: Removed (author stopped development).
  4928. development/tcc: Updated for version 20220221_308d8d1.
  4929. development/tea: Link qt5 by default
  4930. development/tea: Updated to reflect changes in 15.0 - uses qt5 by default
  4931. development/tea: updated for version 60.1.0
  4932. development/tea: updated for version 60.3.0
  4933. development/tea: updated for version 60.4.0
  4934. development/tea: updated for version 60.5.0
  4935. development/tea: updated for version 60.6.0
  4936. development/tea: updated for version 60.7.0
  4937. development/tea: updated homepage
  4938. development/texi2html: s,i486,i586,g and see commit note below
  4939. development/thunderpad: Removed (no maintainer)
  4940. development/tidy-html5: Removed (added to Slackware).
  4941. development/tig: Updated for version 2.5.4.
  4942. development/tig: Updated for version 2.5.5.
  4943. development/tig: Use systemwide dir for bash completion files
  4944. development/tiled: updated for version 1.6.0
  4945. development/tiled: updated for version 1.7.0
  4946. development/tiled: updated for version 1.7.1
  4947. development/tiled: updated for version 1.7.2
  4948. development/tiled: updated for version 1.8.0
  4949. development/tiled: updated for version 1.8.1
  4950. development/tiled: updated for version 1.8.2
  4951. development/tkdiff: Updated for version 5.3
  4952. development/tora: Updated for version 20170725_d9fddb8.
  4953. development/tora: Updated for version git5859a97.
  4954. development/tweak: Updated for version 3.02+20200601.
  4955. development/tyrutils-ericw: Removed (No maintainer).
  4956. development/ucblogo: Updated for version 6.2.2.
  4957. development/ucpp: Remove .la files.
  4958. development/udis86: Remove .la files, misc cleanup
  4959. development/uncrustify: Updated for version 0.73.0
  4960. development/uncrustify: Updated for version 0.74.
  4961. development/unifdef: Remove template comment.
  4962. development/universal-ctags: Updated for version p5.9.20211031.0
  4963. development/urjtag: Remove .la files.
  4964. development/urjtag: Updated for version 2021.03.
  4965. development/vala-12: Remove .la files.
  4966. development/vala: Removed (added to Slackware).
  4967. development/valabind: Fixed dep info
  4968. development/valabind: Updated for version 1.8.0.
  4969. development/valgrind: Mention mpich/openmpi optional deps.
  4970. development/valgrind: Updated for version 3.18.1.
  4971. development/valkyrie: Added qt4 dependency.
  4972. development/vscode-bin: Updated for version 1.56.1.
  4973. development/vscode-bin: Updated for version 1.57.0.
  4974. development/vscode-bin: Updated for version 1.57.1.
  4975. development/vscode-bin: Updated for version 1.58.2.
  4976. development/vscode-bin: Updated for version 1.59.1.
  4977. development/vscode-bin: Updated for version 1.60.2.
  4978. development/vscode-bin: Updated for version 1.61.1.
  4979. development/vscode-bin: Updated for version 1.62.3.
  4980. development/vscode-bin: Updated for version 1.63.2.
  4981. development/vscode-bin: Updated for version 1.64.2.
  4982. development/vscode: Removed.
  4983. development/vscode: Updated for version 1.59.0.
  4984. development/vstudio: Fix version number in BASENAME.
  4985. development/vstudio: Updated MD5SUM.
  4986. development/vstudio: Updated for version 12.0.2.
  4987. development/vstudio: Updated for version 12.0.4..
  4988. development/watchman: Removed (needs boost-1.69.0, tries to download it).
  4989. development/wheel: Removed redundant doinst.sh.
  4990. development/woff2: Removed (added to Slackware).
  4991. development/xa: Remove template comment.
  4992. development/xasm: Remove template comment.
  4993. development/xdebug: Fixed dep info
  4994. development/xdebug: Updated for version 3.0.4.
  4995. development/xdebug: Updated maintainer email
  4996. development/xemacs: Removed (unmaintained @ SBo)
  4997. development/xnedit: Updated for version 1.3.2
  4998. development/xnedit: Updated for version 1.3.3.
  4999. development/xnedit: Updated for version 1.4.0.
  5000. development/xsp: Remove .la files.
  5001. development/xtruss: Updated for version 20210225.2addd50.
  5002. development/xvi: Remove template comment.
  5003. development/xxdiff: Updated for version 20220219_d4432be.
  5004. development/yarn: Update README and homepage URL.
  5005. development/z88dk: Fix -current build.
  5006. development/zeal: Fix build with qt 5.15.
  5007. development/zeal: Fixed dep info
  5008. development/zulu-openjdk-lts: Moved to zulu-openjdk11 and updated for version 11.0.13
  5009. development/zulu-openjdk11: Fix the ARCH checking routine.
  5010. development/zulu-openjdk11: Updated for version 11.0.14.1.
  5011. development/zulu-openjdk17: Added Azul Zulu OpenJDK 17 LTS
  5012. development/zulu-openjdk17: Fix MD5SUMs.
  5013. development/zulu-openjdk17: Fix slack-desc.
  5014. development/zulu-openjdk17: Fix the ARCH checking routine.
  5015. development/zulu-openjdk17: Updated for version 17.0.2.
  5016. development/zulu-openjdk6: Added Azul Zulu OpenJDK6 LTS version 6.0.119
  5017. development/zulu-openjdk6: Fix pkg ARCH.
  5018. development/zulu-openjdk6: Fix the ARCH checking routine.
  5019. development/zulu-openjdk7: Fix the ARCH checking routine.
  5020. development/zulu-openjdk7: Updated for version 7.0.322
  5021. development/zulu-openjdk7: Updated for version 7.0.332.
  5022. development/zulu-openjdk8: Fix the ARCH checking routine.
  5023. development/zulu-openjdk8: Updated for version 8.0.312
  5024. development/zulu-openjdk8: Updated for version 8.0.322.
  5025. development/zulu-openjdk9: Removed since Azul stopped support it
  5026. games/0ad-data: Updated for version 0.0.24b.
  5027. games/0ad-data: Updated for version 0.0.25.
  5028. games/0ad: Updated for version 0.0.24b.
  5029. games/0ad: Updated for version 0.0.25.
  5030. games/4do-libretro: Removed (no maintainer)
  5031. games/7kaa: Fixed dep info
  5032. games/Chatbot-Eliza: Updated to 1.08.
  5033. games/CorsixTH: Fixed dep info in README
  5034. games/CorsixTH: Update DEP.
  5035. games/FlightGear-data: Updated for version 2020.3.11.
  5036. games/FlightGear-data: Updated for version 2020.3.8.
  5037. games/FlightGear: Fixed dep info in README
  5038. games/FlightGear: Updated for version 2020.3.11.
  5039. games/FlightGear: Updated for version 2020.3.8, cleanups.
  5040. games/Gearboy: Removed (no maintainer)
  5041. games/Gearsystem: Removed (no maintainer)
  5042. games/Genesis-Plus-GX: Removed (no maintainer)
  5043. games/KAdventure: Fix 15.0 build.
  5044. games/OpenJK: Fix 15.0 build.
  5045. games/OpenJK: Fixed dep info
  5046. games/OpenRA: Update DEP.
  5047. games/OpenRA: Updated for version 20210321.
  5048. games/Pyfa: Fix dependency.
  5049. games/RetroArch: Fixed dep info
  5050. games/RetroArch: Force building with clang.
  5051. games/RetroArch: Un-dumbify the build script (my fault)
  5052. games/RetroArch: Updated for version 1.10.0.
  5053. games/SLADE: Fix build.
  5054. games/SLADE: Fixed dep info
  5055. games/SLADE: Update DEP.
  5056. games/SLADE: Updated for version 3.2.0_b3.
  5057. games/SameBoy: Removed (no maintainer)
  5058. games/Scorched3D: Fix wxPython/wxGTK3 conflict.
  5059. games/Scorched3D: Patched to use wxGTK3
  5060. games/Scorched3D: Updated maintainer email
  5061. games/Sokoban: Fix download URL.
  5062. games/SpaceZero: Fix 15.0 build.
  5063. games/VASSAL: Updated for version 3.5.7.
  5064. games/VASSAL: Updated for version 3.6.5.
  5065. games/ZEsarUX: Fix 15.0 build.
  5066. games/ace: Fix 15.0 build.
  5067. games/adl: Remove template comment.
  5068. games/advancemame: Fix -current build.
  5069. games/advancescan: Fix -current build.
  5070. games/ags: updated for version 3.5.0.32
  5071. games/ags: updated for version 3.5.1.10
  5072. games/ags: updated for version 3.5.1.12
  5073. games/ags: updated for version 3.5.1.15
  5074. games/ags: updated for version 3.5.1.16
  5075. games/ags: updated for version 3.5.1.7
  5076. games/ags: updated for version 3.5.1.8
  5077. games/aklabeth: Remove template comment.
  5078. games/alephone: Fixed dep info
  5079. games/alephone: Updated for version 20210408.
  5080. games/alienarena: Fix 15.0 build.
  5081. games/alienarena: Fixed dep info
  5082. games/alienarena: Updated to an svn snapshot, cleanups.
  5083. games/an: Remove template comment.
  5084. games/angband: Fix download URL.
  5085. games/antares: Fixed dep info
  5086. games/antares: Fixed dep info (libc++)
  5087. games/antimicro: Fix 15.0 build.
  5088. games/antimicro: Update DEP.
  5089. games/antimicrox: renamed and updated for version 3.2.2.
  5090. games/ardentryst: Fix download URL.
  5091. games/arnold-cpc: Fix 15.0 build.
  5092. games/arx-libertatis: Fixed dep info
  5093. games/arx-libertatis: Updated for version 1.2_dev_2019_07_22.
  5094. games/asc: Fix 15.0 build.
  5095. games/asc: Removed SDL_sound dep (part of Slackware).
  5096. games/assaultcube-reloaded: Fixed dep info
  5097. games/assaultcube: Fixed dep info
  5098. games/assaultcube: Patched for the newer gcc.
  5099. games/asteroidsinfinity: Remove template comment.
  5100. games/astromenace: Update DEP.
  5101. games/atanks: Updated for version 6.6.
  5102. games/atari++: Updated for version 1.84.
  5103. games/atari800: Remove template comment.
  5104. games/atari800_roms: Remove template comment.
  5105. games/bastet: Fix -current build.
  5106. games/beetle-bcfx-libretro: Removed (no maintainer)
  5107. games/beetle-lynx-libretro: Removed (no maintainer)
  5108. games/beetle-ngp-libretro: Removed (no maintainer)
  5109. games/beetle-pce-fast-libretro: Removed (no maintainer)
  5110. games/beetle-psx-libretro: Removed (no maintainer)
  5111. games/beetle-saturn-libretro: Removed (no maintainer)
  5112. games/beetle-supergrafx-libretro: Removed (no maintainer)
  5113. games/beetle-vb-libretro: Removed (no maintainer)
  5114. games/beetle-wswan-libretro: Removed (no maintainer)
  5115. games/berusky-data: Fix download URL.
  5116. games/berusky2-data: Fix download URL.
  5117. games/berusky2: Fix 15.0 build.
  5118. games/berusky2: Updated for version 20170630_974e2e5.
  5119. games/berusky: Updated for version 1.7.2.
  5120. games/bitfighter: Fixed dep info
  5121. games/blastem-libretro: Removed (no maintainer)
  5122. games/blobby2: Update DEP.
  5123. games/blobby2: Updated maintainer email
  5124. games/blobwars: Disabled some warnings-as-errors.
  5125. games/blobwars: Fix 15.0 build.
  5126. games/blobwars: Update DEP.
  5127. games/bloodcm: Remove template comment.
  5128. games/bloodcm: Removed (no longer works with eduke32, use nblood).
  5129. games/bloodfrontier: Disabled narrowing warnings.
  5130. games/blueMSX-libretro: Removed (no maintainer)
  5131. games/bluez-sixaxis: Updated for version 5.58
  5132. games/brainparty: Patch for gcc >= 6.x.
  5133. games/brickout: Remove template comment.
  5134. games/briquolo: Fix 15.0 build.
  5135. games/bsnes-mercury: Removed (no maintainer)
  5136. games/bstone: Update DEP.
  5137. games/bstone: Updated for version 1.2.11.
  5138. games/burgerspace: Updated for version 1.9.4.
  5139. games/bzflag: Fixed dep info
  5140. games/bzflag: Remove .la files.
  5141. games/cannonball-libretro: Removed (no maintainer)
  5142. games/ceferino: Remove template comment.
  5143. games/cgames: Updated for version 2.2b.
  5144. games/cgmadness: Fix 15.0 build (but this still needs attention).
  5145. games/chessx: Updated for version 1.5.6.
  5146. games/chexquest3: Use noarch.
  5147. games/chocolate-doom: Fix build on -current.
  5148. games/chocolate-doom: Remove template comment.
  5149. games/chocolate-doom: Update DEP.
  5150. games/chocolate_duke3D: Remove template comment.
  5151. games/chocolate_duke3D: Removed (broken and abandoned).
  5152. games/chroma: Patch for the newer gcc, cleanups.
  5153. games/chromium-bsu: Fixed dep info
  5154. games/circuslinux: Remove template comment.
  5155. games/ckmame: Fix 15.0 build.
  5156. games/clksignal-roms: Added (ROM images for clksignal).
  5157. games/clksignal: Added (emulate classic computers/consoles).
  5158. games/clonekeen: Remove template comment.
  5159. games/colem: Updated for version 5.6.
  5160. games/commandergenius: Fixed dep info
  5161. games/commandergenius: Updated for version 3.0.8.
  5162. games/cosmic_assault: Fix -current build.
  5163. games/cosmic_assault: Remove template comment.
  5164. games/cosmic_assault: Update DEP.
  5165. games/cosmosmash: Updated for version 1.4.8.
  5166. games/cpat: Fix 15.0 build.
  5167. games/crack-attack: Fix conflict with enet.
  5168. games/crispy-doom: Update DEP.
  5169. games/crossfire-client: Fixed dep info
  5170. games/crossfire-client: Updated for version 1.75.2.
  5171. games/crrcsim: Patch for the newer gcc.
  5172. games/cryptokwot: Added (substitution cipher game).
  5173. games/curseofwar: Updated for version 1.3.0.
  5174. games/cyphesis: Use the C++14 standard.
  5175. games/d1x-rebirth: Updated for version 20220130_7258b7f.
  5176. games/d2x-rebirth: Updated for version 20220130_7258b7f.
  5177. games/darkplaces: Patch for gcc >= 11.x.
  5178. games/darkplaces: i486-->i586
  5179. games/defendguin: Remove template comment.
  5180. games/desmume: Fixed dep info
  5181. games/desmume: Support alternatives for ninja
  5182. games/desmume: Updated for version 20210409_e8f619c.
  5183. games/dfarc: Fix wxPython/wxGTK3 conflict.
  5184. games/dhewm3: Fixed dep info
  5185. games/dice: Fix 15.0 build.
  5186. games/dice: Update DEP.
  5187. games/digger: Support PRINT_PACKAGE_NAME.
  5188. games/digger: Take over maintenance.
  5189. games/digger: misc cleanups
  5190. games/dmagnetic: Added (magnetic scrolls interpreter)
  5191. games/dolphin-emu: Fixed dep info
  5192. games/dolphin-emu: Updated for version 20210406_5322256.
  5193. games/domination: New-style icons.
  5194. games/doom_shareware_data: Update URLs.
  5195. games/doomretro: Update DEP.
  5196. games/doomretro: Updated for version 4.2.3.
  5197. games/doomsday: New-style icons.
  5198. games/doomsday: Remove duplicate image.
  5199. games/doomsday: Update DEP.
  5200. games/doomsday: Updated for version 2.3.1.
  5201. games/doomseeker: Updated for version 1.3.2.
  5202. games/dreamchess: Update DEP.
  5203. games/ds-models: Remove gzdoom support since it was broken.
  5204. games/dunelegacy: Remove template comment.
  5205. games/dunelegacy: Update DEP.
  5206. games/dungeon: Fix -current build.
  5207. games/dustrac: Fix 15.0 build.
  5208. games/dustrac: Fixed dep info
  5209. games/edgar: Fix download URL.
  5210. games/edgar: Update DEP.
  5211. games/eduke32: Updated for version 20211102_9751_8970754aa.
  5212. games/eduke32_hires_pack: Updated for version 5.4.
  5213. games/eduke32_shareware_data: Minor fixes.
  5214. games/egoboo: Update DEP.
  5215. games/ember: Removed (not compatible with latest OGRE).
  5216. games/endless-sky: Fixed dep info
  5217. games/endless-sky: updated for version 0.9.14
  5218. games/enigma: Remove template comment.
  5219. games/etlegacy-from-source: Added (collaborative FPS).
  5220. games/etlegacy-from-source: Fix 15.0 build.
  5221. games/etlegacy-from-source: Fix PRGNAM in the info file.
  5222. games/etlegacy-from-source: Removed (use the binary).
  5223. games/etlegacy: Updated for version 2.79.0.
  5224. games/eureka: Remove template comment.
  5225. games/extremetuxracer: Updated for version 0.8.1
  5226. games/extremetuxracer: Updated maintainer email
  5227. games/f1spirit: Patch for gcc >= 6.x.
  5228. games/fbalpha: Removed (no maintainer)
  5229. games/fceux: Updated for version 2.4.0.
  5230. games/ffgo: Fixed dep info
  5231. games/fgo: Fix download URL.
  5232. games/fifengine: Fixed dep info
  5233. games/fifengine: Updated for version 0.4.2.
  5234. games/fizmo: Remove template comment.
  5235. games/flare-game: updated for version 1.12
  5236. games/flare-game: updated for version 1.13.04
  5237. games/flare: Update DEP.
  5238. games/flare: updated for version 1.12
  5239. games/flare: updated for version 1.13.04
  5240. games/flare: updated homepage
  5241. games/fmsx-libretro: Removed (no maintainer)
  5242. games/foobillardplus: Change download link.
  5243. games/fortune-dharma: Handle weird source filename.
  5244. games/fortune-dune: Update slack-desc.
  5245. games/fortune-farscape: Remove template comment.
  5246. games/fortune-futurama: Remove template comment.
  5247. games/fortune-game_of_thrones: Updated for version 20210128.
  5248. games/fortune-noobfarm: Remove template comment.
  5249. games/fortune-slackware: Remove template comment.
  5250. games/fortune-starwars: Remove template comment.
  5251. games/fortune_doctor_who: Remove template comment.
  5252. games/fortune_firefly: Remove template comment.
  5253. games/freeblocks: Fix -current build.
  5254. games/freeciv: Remove .la files.
  5255. games/freeciv: updated for version 2.6.5
  5256. games/freeciv: updated for version 2.6.6
  5257. games/freeciv: updated for version 3.0.0
  5258. games/freedink: Fixed dep info
  5259. games/freedink: Update optional deps.
  5260. games/freedoom: Remove template comment.
  5261. games/freedroid: Fix 15.0 build.
  5262. games/freedroidrpg: Fix 15.0 build.
  5263. games/freeminer: Fixed dep info
  5264. games/freeminer: Updated for version 0.4.14.8+20211109_80629f4.
  5265. games/freeorion: Fix DOWNLOAD + MD5SUM.
  5266. games/freeorion: Fix build.
  5267. games/freeorion: Fixed dep info
  5268. games/freeorion: Updated for version 0.4.10.1.
  5269. games/freeorion: Updated for version 0.4.10.1.
  5270. games/frogatto: Fix FTBFS.
  5271. games/frogatto: Switch to clang, remove -Werror.
  5272. games/frotz: Updated for version 2.53.
  5273. games/frozen-bubble: Update download URL
  5274. games/frozen-bubble: Updated for version git_20170702_d6a0291
  5275. games/frozen-bubble: Updated maintainer email
  5276. games/fs-uae-arcade: Fixed dep info
  5277. games/fs-uae-launcher: Fixed dep info
  5278. games/fs-uae: Fixed dep info
  5279. games/fs-uae: Updated for version 3.1.35.
  5280. games/fs2open: Fix download links, .desktop.
  5281. games/fs2open: Fixed dep info
  5282. games/gambatte-libretro: Removed (no maintainer)
  5283. games/garden: Fix 15.0 build.
  5284. games/gargoyle: Added -fpermissive to the CCFLAGS.
  5285. games/gargoyle: Fix 15.0 build.
  5286. games/gargoyle: Removed SDL_sound dep (part of Slackware).
  5287. games/gargoyle: updated for version 2022.1
  5288. games/gemrb: Fixed dep info in README
  5289. games/gemrb: Updated for version 0.9.0.
  5290. games/gens-gs: Removed (no maintainer).
  5291. games/ggmud: Updated for version 0.9.4.
  5292. games/glPortal: Fix 15.0 build.
  5293. games/glPortal: Removed (will not build against bullet 3.x, ran out of patience).
  5294. games/glPortal: Update DEP.
  5295. games/glbsp: Better icons and .desktop.
  5296. games/glestae: Fixed dep info
  5297. games/glob2: Added more patches to let it build.
  5298. games/glob2: Fixed dep info
  5299. games/glob2: Patch for the newer gccs.
  5300. games/gnogograms: Fix build.
  5301. games/gnonograms: Fixed dep info
  5302. games/gnubg: Removed autogen.sh as running it breaks build.
  5303. games/gnubg: Updated for version 1.06.002.
  5304. games/gnugo: Pass -fcommon for gcc >= 10.x.
  5305. games/gnurobbo: Fix 15.0 build.
  5306. games/golly: New-style icons.
  5307. games/goonies: Patch for gcc >= 6.x.
  5308. games/gottet: Updated for version 1.2.0.
  5309. games/gtkballs: New-style icons; setgid binary.
  5310. games/gtklife: Build with gtk+2.
  5311. games/gw-libretro: Removed (no maintainer)
  5312. games/gzdoom-legacy: Fix -current build.
  5313. games/gzdoom-legacy: Fixed dep info in README
  5314. games/gzdoom-legacy: Update DEP.
  5315. games/gzdoom: Fixed dep info
  5316. games/gzdoom: Updated for version 4.7.0.
  5317. games/hack-of-life: Icon and .desktop.
  5318. games/hatari: Remove template comment.
  5319. games/hatari_tos_roms: Remove template comment.
  5320. games/haxima-nazghul: Fix 15.0 build.
  5321. games/hedgewars: Fix build on -current.
  5322. games/hedgewars: Update DEP.
  5323. games/heretic_shareware_data: Include docs in package.
  5324. games/hexen_demo_data: Fix slack-desc.
  5325. games/hexen_demo_data: Minor build tweaks.
  5326. games/hexglass: Fix 15.0 build.
  5327. games/higan: Downgrade to version 106.
  5328. games/higan: Fix shebang.
  5329. games/higan: New template.
  5330. games/higan: Updated for version 110.
  5331. games/ho1: Fix download URL.
  5332. games/homm3_shareware_data: added. Heroes III demo data for VCMI.
  5333. games/icebreaker: New-style icons.
  5334. games/ifm: Fix 15.0 build.
  5335. games/img2xterm: Patch for imagemagick >=7.x.
  5336. games/img2xterm: Remove template comment.
  5337. games/img2xterm: Update README.
  5338. games/instead: Update DEP.
  5339. games/ioquake3: Fixed dep info
  5340. games/iortcw: Fixed dep info
  5341. games/jackhammer: Removed (No maintainer).
  5342. games/jezzball-kazzmir: Fix -current build.
  5343. games/jfsw: Fixed dep info in README
  5344. games/jfsw: Updated for version 20210725_716e1e3.
  5345. games/jfsw_demo_data: Simplify script.
  5346. games/jfsw_hires_pack: Updated for version 20201205_r21.
  5347. games/jfsw_registered_data: Add ogg quality option.
  5348. games/jfsw_twin_dragon: Remove template comment.
  5349. games/jfsw_wanton_destruction: Remove template comment.
  5350. games/jzintv: Fix -current build, allow ROMs in pkg.
  5351. games/kardsgt: Update for new qt4, fix icons.
  5352. games/kildclient: Add missing requires to info file.
  5353. games/knights: Removed (added to Slackware).
  5354. games/koules: Fix -current build.
  5355. games/koules: Fix slack-desc.
  5356. games/larn: Fix 15.0 build.
  5357. games/lgogdownloader: Fix download URL.
  5358. games/lgogdownloader: removed liboauth requirement
  5359. games/lgogdownloader: updated for version 3.8
  5360. games/lgogdownloader: updated for version 3.9
  5361. games/libretro-2048: Removed (no maintainer)
  5362. games/libretro-desmume: Removed (no maintainer)
  5363. games/libretro-fceumm: Removed (no maintainer)
  5364. games/libretro-handy: Removed (no maintainer)
  5365. games/libretro-prboom: Removed (no maintainer)
  5366. games/libretro-reicast: Removed (no maintainer)
  5367. games/libretro-vecx: Removed (no maintainer)
  5368. games/libretro-yabause: Removed (no maintainer)
  5369. games/lightyears: Fix download URL.
  5370. games/liquidwar6: Fix -current build, include extra maps.
  5371. games/lmarbles: New-style icons.
  5372. games/lmpc: Fix -current build.
  5373. games/lutris: Update DEP.
  5374. games/lutris: Update DEP.
  5375. games/m64py: Build using qt5
  5376. games/m64py: Updated for version 0.2.5.
  5377. games/madbomber: New-style icons.
  5378. games/maelstrom: Updated for version 3.0.7.
  5379. games/mame: Align with template
  5380. games/mame: Update DEP.
  5381. games/mame: Updated for version 0.237.
  5382. games/mame: Updated for version 0.240.
  5383. games/manaplus: Fix download URL.
  5384. games/mangband: Fix 15.0 build.
  5385. games/marathon-data: Updated for version 20210408.
  5386. games/marathon-infinity-data: Updated for version 20210408.
  5387. games/marathon2-data: Updated for version 20210408.
  5388. games/mari0: New-style icons.
  5389. games/mars: Fix 15.0 build.
  5390. games/mars: Fixed dep info
  5391. games/meandmyshadow: Update DEP.
  5392. games/mednafen: Update DEP.
  5393. games/mednafen: Updated for version 1.29.0.
  5394. games/mednaffe: Fix old-style icon.
  5395. games/megaglest: Fix 15.0 build.
  5396. games/megaglest: Fixed dep info
  5397. games/megamario: New-style icons, fix music.
  5398. games/mgba: Fixed dep info
  5399. games/micropolis: New-style icons.
  5400. games/micropolis: glibc-2.27 requires IEEE math error reporting.
  5401. games/minetest: Fixed dep info
  5402. games/minetest: Updated for version 5.4.1, patch for gcc >= 11.x.
  5403. games/mininim: Fix -current build.
  5404. games/miscom: Remove template comment.
  5405. games/mog: Removed SDL_sound dep (part of Slackware).
  5406. games/mrboom: Fix 15.0 build.
  5407. games/mrboom: Update DEP.
  5408. games/mrboom: Update MD5SUM.
  5409. games/mrrescue: New-style icons.
  5410. games/mupen64plus: Patch for gcc >= 10.x.
  5411. games/mupen64plus: Updated for version 2.5.9.
  5412. games/nFlood: Fix 15.0 build.
  5413. games/naev: Fix 15.0 build.
  5414. games/naev: Fixed dep info
  5415. games/nblood: Update DEP.
  5416. games/nblood: Updated for version 1.01+20211016_b90417ed8.
  5417. games/ncursesoflife: Remove template comment.
  5418. games/nestopia: Fixed dep info
  5419. games/nethack: Removed (added to Slackware).
  5420. games/neverball: Patch for gcc >= 10.x.
  5421. games/neverball: Update DEP.
  5422. games/nevernoid: Install doinst.sh.
  5423. games/nevernoid: New-style icons.
  5424. games/nexuiz: Remove template comment.
  5425. games/ninvaders: Fix 15.0 build.
  5426. games/njam: misc cleanups
  5427. games/nlarn: Fix 15.0 build.
  5428. games/nlarn: Set our CFLAGS, disable -Werror, use ncurses6-config.
  5429. games/noteye: Switch to clang.
  5430. games/noteye: Updated for version 8.4.
  5431. games/notpacman: Remove template comment.
  5432. games/nottetris2: Remove template comment.
  5433. games/nsuds: Fix 15.0 build.
  5434. games/nuvie: Fix 15.0 build.
  5435. games/nxengine-libretro: Removed (no maintainer)
  5436. games/o2em: Fix -current build.
  5437. games/oblige-legacy4: New-style icons.
  5438. games/oblige: Fix -current build.
  5439. games/odamex: Add SDL2 option.
  5440. games/odamex: Add missing diff.
  5441. games/odamex: Updated for version 0.9.5.
  5442. games/oolite: Fix build.
  5443. games/oolite: Fixed dep info
  5444. games/oolite: Remove espeak dep.
  5445. games/open-adventure: Fixed dep info
  5446. games/open-adventure: New-style icons, HTML docs.
  5447. games/open-adventure: Update DEP.
  5448. games/openarena: Fixed dep info
  5449. games/openclonk: Fixed dep info
  5450. games/openclonk: Updated for version 8.0.
  5451. games/opendune: Fix -current build.
  5452. games/openjazz: Updated for version 20190106.
  5453. games/openlierox: Updated for version 20170313_3825306.
  5454. games/openlierox: Updated for version 20200424_d316c14.
  5455. games/openmortal: Fix -current build.
  5456. games/openmsx-catapult: Updated for version 17.0.
  5457. games/openmsx-debugger: Updated for version 20220221.
  5458. games/openmsx: Updated for version 17.0
  5459. games/openmw: Fixed dep info
  5460. games/openmw: Updated for version 0.47.0.
  5461. games/openmw: Use correct github URL.
  5462. games/opensonic: Add missing diff.
  5463. games/opensonic: Fix download URL.
  5464. games/openspades: Fixed dep info
  5465. games/openttd: Pass an additional flag for the newer icu4c.
  5466. games/opentyrian: Fix -current build.
  5467. games/openyahtzee: New-style icons.
  5468. games/ostrichriders: Old-style icon.
  5469. games/pacman-arena: Fix -current build.
  5470. games/pacman: Remove NUMJOBS from README.
  5471. games/pacman: Remove NUMJOBS.
  5472. games/pacman: Update DEP.
  5473. games/pangzero: Remove template comment.
  5474. games/parallel-n64: Removed (no maintainer)
  5475. games/pcgen: Add missing patch file.
  5476. games/pcgen: Updated for version 6.09.05.
  5477. games/pcsx2: Removed by maintainer request.
  5478. games/pcsx2: Update DEP.
  5479. games/pcsxr: Updated for version 1.9.95.
  5480. games/penguin-command: New-style icons.
  5481. games/pentagram: New-style icons.
  5482. games/picodrive: Removed (no maintainer)
  5483. games/pingus: Add a missing header (for the newer glibc).
  5484. games/pingus: Fix building on -current
  5485. games/pingus: Updated maintainer email
  5486. games/pioneer: Fixed dep info
  5487. games/planetblupi: Update DEP.
  5488. games/pokerth: Updated for version 20200721_a333185.
  5489. games/pokerth: Use protobuf3 as a dependency.
  5490. games/pom1: New-style icons.
  5491. games/powerslave_demo_data: Remove template comment.
  5492. games/ppsspp: Update DEP.
  5493. games/prboom-plus: Fixed dep info
  5494. games/prboom-plus: Updated for version 2.6.1um, fix segfault.
  5495. games/prboom: Fix 15.0 build.
  5496. games/prosystem-libretro: Removed (no maintainer)
  5497. games/pushover: Fix download URL.
  5498. games/puzzles: Updated for version 20211212.b56c994
  5499. games/puzzles: Updated for version 20220128.c43a34f.
  5500. games/pybik: Fix download URL, parallel build.
  5501. games/pybik: Fixed dep info
  5502. games/pychess: Fixed dep info
  5503. games/pychess: Switch to python-3.x.
  5504. games/pysolfc-extra-cardsets: Fix homepage URL.
  5505. games/pysolfc: Patched for pillow-6.x.
  5506. games/pysolfc: Update DEP.
  5507. games/pysolfc: Updated for version 2.14.1.
  5508. games/qmc2: Patch for qt >= 5.15.x and gcc >= 10.x.
  5509. games/qstat: Removed (No maintainer).
  5510. games/qtads: Fixed dep info
  5511. games/qtads: Updated for version 3.2.0.
  5512. games/qtsixa: Removed (FTBFS, unmaintained, replace someday with "sixad").
  5513. games/quake3_shareware_data: update copyright years
  5514. games/quakeforge: Remove .la files.
  5515. games/quakespasm: Added (ID's Quake port).
  5516. games/quakespasm: Update DEP.
  5517. games/qzdl: Updated for version 3.2.2.3+20211008_9c76408.
  5518. games/qzdoom: Fix -current build.
  5519. games/qzdoom: Fixed dep info
  5520. games/redeclipse: Update DEP.
  5521. games/rejoystick: Removed (no maintainer).
  5522. games/residualvm: Updated for version 0.3.1.
  5523. games/retux: Updated for version 1.6.1.
  5524. games/rezerwar: Fix 15.0 build.
  5525. games/rlvm: Fix 15.0 build, better parallel support.
  5526. games/rlvm: Patch for the newer gcc.
  5527. games/rlvm: Remove NUMJOBS.
  5528. games/roadfighter: Patch for the newer gcc.
  5529. games/roadfighter: Removed SDL_sound dep (part of Slackware).
  5530. games/roccat-tools: Fix build.
  5531. games/roccat-tools: Patch to correctly find the newer harfbuzz.
  5532. games/rocksndiamonds: Fix 15.0 build.
  5533. games/rogue: Fix 15.0 build.
  5534. games/rogue: Fix build failure with latest ncurses.
  5535. games/rott: New-style icons.
  5536. games/sauerbraten: Updated email
  5537. games/sauerbraten: Updated for version 2020_12_27
  5538. games/sauerbraten: fix email
  5539. games/scid_vs_pc: Updated for version 4.22.
  5540. games/scummvm-libretro: Removed (no maintainer)
  5541. games/scummvm: Avoid breakage with the gold linker on i*86.
  5542. games/scummvm: Fixed dep info in README
  5543. games/scummvm: Updated for version 2.5.1.
  5544. games/sdlpop: Update DEP.
  5545. games/sdlpop: Updated for version 1.22.
  5546. games/simplesok: Update DEP.
  5547. games/simsu: Updated for version 1.4.0.
  5548. games/skulltag: Fix README.
  5549. games/skulltag: New-style icons.
  5550. games/smc: New-style icons.
  5551. games/sms_sdl: New-style icons.
  5552. games/snes9x: Downgrade to v1.59 due to crashes.
  5553. games/snes9x: Fixed dep info
  5554. games/snes9x: Support alternatives for ninja
  5555. games/solarus: Fixed dep info
  5556. games/solarwolf: Fix -current build.
  5557. games/solarwolf: Remove template comment.
  5558. games/speed-dreams: Fixed dep info
  5559. games/speed-dreams: Patch for the newer gcc.
  5560. games/speed-dreams: Updated for version 2.2.3_r7616.
  5561. games/spring: Fix 15.0 build.
  5562. games/spring: Fixed dep info
  5563. games/srb2: Update DEP.
  5564. games/srb2: Updated for version 2.2.9.
  5565. games/starfighter: Update DEP.
  5566. games/steam: Fixed dep info
  5567. games/steam: Updated for version 1.0.0.70
  5568. games/steam: Updated for version 1.0.0.72
  5569. games/steam: Updated for version 1.0.0.74
  5570. games/steem: Removed (dead project; use hatari instead).
  5571. games/stella-libretro: Removed (no maintainer)
  5572. games/stella: Update DEP.
  5573. games/stella: Updated for version 6.5.3.
  5574. games/stockfish: Fix download URL.
  5575. games/stockfish: Updated for version 14.1.
  5576. games/stone_soup: Update DEP.
  5577. games/stone_soup: Update DEP.
  5578. games/stratagus: Fix -current build.
  5579. games/stratagus: Fix README.
  5580. games/stratagus: Fixed dep info
  5581. games/sumeria: Remove template comment.
  5582. games/sumwars: Removed (ftbfs).
  5583. games/supermariowar: Updated for version 2020_04_25.
  5584. games/supertux: Fixed dep info
  5585. games/supertux: Updated for version 0.6.2_rc.1.
  5586. games/supertux: i486-->i586
  5587. games/supertuxkart: Fix building with SDL2 >= 2.0.14.
  5588. games/supertuxkart: Fixed dep info
  5589. games/supertuxkart: Updated for version 1.3.
  5590. games/syobonaction: Updated for version 0.2+20210411_f2e8629.
  5591. games/taipan: Remove template comment.
  5592. games/talkfilters: Remove .la files.
  5593. games/tanglet: Updated for version 1.5.5.
  5594. games/tbftss: Update DEP.
  5595. games/teeworlds: Update DEP.
  5596. games/tkgames: Added (a collection of card and puzzle games).
  5597. games/tkgames: Fix permission.
  5598. games/tkgames: Remove old template CWD.
  5599. games/tome: Fixed dep info
  5600. games/tome: Updated for version 1.6.0.
  5601. games/torcs: Added -fpermissive to the CXXFLAGS.
  5602. games/torcs: New-style icons.
  5603. games/trackballs: Added the new dependency guile2.2.
  5604. games/trackballs: Update DEP.
  5605. games/trackballs: Updated for version 1.3.3.
  5606. games/transfusion: Removed (dead project; play nblood instead).
  5607. games/tty-solitaire: Fix 15.0 build.
  5608. games/tuxnes: Fix 15.0 build.
  5609. games/typespeed: Fix 15.0 build.
  5610. games/typhoon_2001: Fix README.
  5611. games/typhoon_2001: Fix sound.
  5612. games/typhoon_2001: Put exe in /usr/games.
  5613. games/tyrquake-libretro: Removed (no maintainer)
  5614. games/ucr: Removed (broken; play aklabeth instead).
  5615. games/ufoai: Fix -current build.
  5616. games/ultimatestunts: Use a single make job.
  5617. games/unknown-horizons: Update DEP.
  5618. games/unnethack: Updated for version 6.0.4_20220203_1f061e93b.
  5619. games/unvanquished: Fixed dep info
  5620. games/unvanquished: Update DEP.
  5621. games/unvanquished: Update DEP.
  5622. games/uqm-megamod: Added (space adventure game).
  5623. games/uqm-megamod: Fix build with MAKEFLAGS.
  5624. games/uqm: Fixed dep info
  5625. games/uqm: Remove template comment.
  5626. games/uqm_3domusic: Remove template comment.
  5627. games/uqm_remixes: Remove template comment.
  5628. games/uqm_voice: Remove template comment.
  5629. games/vbam: Fix -current build, enhancements.
  5630. games/vbam: Fix wxPython vs. wxGTK3 mess. Again.
  5631. games/vbam: Update DEP.
  5632. games/vcmi-core: new maintainer
  5633. games/vcmi-core: update copyright years
  5634. games/vcmi-resolutions: new maintainer
  5635. games/vcmi-resolutions: update for version 20141001
  5636. games/vcmi-resolutions: updated for version 20151113
  5637. games/vcmi-wog: new maintainer
  5638. games/vcmi-wog: update copyright years
  5639. games/vcmi. update for version 0.99_gitb310f2e
  5640. games/vcmi: Update DEP.
  5641. games/vcmi: Update DEP.
  5642. games/vcmi: Update DEP.
  5643. games/vcmi: Updated for version 569dv9ed.
  5644. games/vcmi: new maintainer and updated for version 0.99_gite219e1f
  5645. games/vcmi: updated for version 0.99_git20220130
  5646. games/vectoroids: Add .desktop and icons.
  5647. games/vegastrike: Adjustments for -current.
  5648. games/vegastrike: Fix 15.0 build.
  5649. games/vegastrike: Fixed dep info
  5650. games/vera: Various fixes and enhancements.
  5651. games/virtualjaguar-libretro: Removed (no maintainer)
  5652. games/vitaquake2-libretro: Updated for version aed906ef.
  5653. games/vkQuake: Fixed dep info
  5654. games/vms-empire: Fix 15.0 build.
  5655. games/voxelands: Fixed dep info
  5656. games/voxelands: Updated for version 1709.00.
  5657. games/wargus: Add missing diff.
  5658. games/wargus: Fix -current build.
  5659. games/wargus: Fixed dep info
  5660. games/warmux: Patch for gcc >= 6.x.
  5661. games/warmux: Removed.
  5662. games/warsow: Fix 15.0 build.
  5663. games/warsow: Fixed dep info
  5664. games/warzone2100: Fixed dep info
  5665. games/warzone2100: updated for version 4.0.1
  5666. games/warzone2100: updated for version 4.1.0
  5667. games/warzone2100: updated for version 4.1.1
  5668. games/warzone2100: updated for version 4.1.3
  5669. games/warzone2100: updated for version 4.2.0
  5670. games/warzone2100: updated for version 4.2.1
  5671. games/warzone2100: updated for version 4.2.3
  5672. games/warzone2100: updated for version 4.2.4
  5673. games/warzone2100: updated for version 4.2.5
  5674. games/warzone2100: updated homepage
  5675. games/waterCloset: Fix download URL.
  5676. games/waterCloset: Update DEP.
  5677. games/wesnoth: Fix 15.0 build, better parallel support.
  5678. games/wesnoth: Remove NUMJOBS.
  5679. games/wesnoth: Update DEP.
  5680. games/wesnoth: Updated email
  5681. games/wesnoth: Updated for version 1.14.17
  5682. games/wesnoth: Updated for version 1.16.1
  5683. games/widelands: Update DEP.
  5684. games/widelands: Updated for version 1.0
  5685. games/widelands: Updated for version build21.
  5686. games/widelands: Updated maintainer email
  5687. games/wmquake: Removed (dead project; dumb idea anyway).
  5688. games/wolf4sdl: New-style icons.
  5689. games/wordwarvi: New-style icons.
  5690. games/worldofgoo: New maintainer.
  5691. games/xarchon: Fix -current build.
  5692. games/xcowsay: Remove template comment.
  5693. games/xcpc: Updated for version 0.37.0, changed homepage.
  5694. games/xmoto: Fixed dep info
  5695. games/xonotic: Fix 15.0 build.
  5696. games/xonotic: Remove .la files.
  5697. games/xonotic: Update DEP.
  5698. games/xroar-roms: Remove template comment.
  5699. games/xroar: Updated for version 0.37.1.
  5700. games/xspacewarp: Fix window close button.
  5701. games/xu4: Fix build on -current.
  5702. games/xu4: New-style icons, disable alt-x.
  5703. games/xu4: Remove template comment, fix URLs.
  5704. games/xye: Disabled narrowing warnings.
  5705. games/yabause: Fix 15.0 build.
  5706. games/yabause: Fix building (using the qt version).
  5707. games/yabause: Fixed dep info
  5708. games/yae: Fix audio, X close button.
  5709. games/yahtzee: Fix MD5SUM.
  5710. games/yahtzee: New-style icons.
  5711. games/yamagi-quake2: Fixed dep info
  5712. games/yamagi-quake2: Updated for version 7.45.
  5713. games/yar: Better icons.
  5714. games/yar: New-style icon.
  5715. games/z26: Fix build on -current. Again.
  5716. games/z26: Remove template comment.
  5717. games/z26: Removed (broken, don't care).
  5718. games/z26v2: Removed (use stella instead).
  5719. games/z26v3: Remove template comment.
  5720. games/zdbsp: Minor man page nitpick.
  5721. games/zdoom: Fixed dep info in README
  5722. games/zdoom: New-style icons, fix -current build.
  5723. games/zdoom: Update DEP.
  5724. games/zennode: Update slack-desc, add man page.
  5725. games/znake: Fix 15.0 build.
  5726. games/zoom: Bugfix patches, new icons.
  5727. games/zork: Updated for version 20211011.
  5728. games/zsnes: Fix -current build, new-style icons.
  5729. games/zsnes: Remove statifier support (broken).
  5730. games/ztools: Fix -current build.
  5731. gis/CreateCloudMap: Removed (Service is shut down).
  5732. gis/CreateCloudMap: Update DEP.
  5733. gis/Fiona: Updated dependencies.
  5734. gis/Fiona: Updated for version 1.8.20.
  5735. gis/Geohash: Removed Python 2 support.
  5736. gis/OTB: Updated for Slackware 15.
  5737. gis/OTB: Updated for Slackware 15.
  5738. gis/OTB: Updated for version 7.3.0.
  5739. gis/OWSLIB: Updated dependencies.
  5740. gis/OWSLib: Updated for version 0.24.1.
  5741. gis/SFCGAL: Updated for Slackware 15.
  5742. gis/Shapely: Fix Download URL
  5743. gis/Shapely: New maintainer.
  5744. gis/Shapely: Updated dependencies.
  5745. gis/Shapely: Updated for version 1.8.0
  5746. gis/cartopy: Updated for version 0.19.0.post1.
  5747. gis/cartopy: Updated for version 0.20.1 + new maintainer.
  5748. gis/cartopy: Updated for version 0.20.2
  5749. gis/cartopy: update dependency in info file
  5750. gis/cligj: Updated for version 0.7.1 and Python 3.
  5751. gis/foxtrotgps: Updated for version 1.2.2.
  5752. gis/gdal: Apply upstream patch for the newer poppler.
  5753. gis/gdal: Fix location of the new mariadb headers.
  5754. gis/gdal: Fixed dep info
  5755. gis/gdal: Fixed dep info again
  5756. gis/gdal: Remove .la files.
  5757. gis/gdal: Updated dependencies.
  5758. gis/gdal: Updated for version 3.3.0.
  5759. gis/gdal: Updated for version 3.3.2 + new maintainer.
  5760. gis/gdal: Updated for version 3.3.3
  5761. gis/gdal: Updated for version 3.4.0
  5762. gis/gdal: Updated for version 3.4.1
  5763. gis/gdal: fix building when freexl is installed.
  5764. gis/geogig-py: Removed (No maintainer).
  5765. gis/geogig: Removed (No maintainer).
  5766. gis/geographiclib-python: Removed Python 2 support.
  5767. gis/geojson: Updated dependencies.
  5768. gis/geopandas: update DEP
  5769. gis/geopy: Updated dependencies.
  5770. gis/geos: Fix tarball handling.
  5771. gis/geos: Updated for Slackware 15.
  5772. gis/geos: Updated for version 3.10.0 + new maintainer.
  5773. gis/geos: Updated for version 3.10.1
  5774. gis/geos: Updated for version 3.10.2
  5775. gis/geoserver-control-flow: Removed (No maintainer).
  5776. gis/geoserver-css: Removed (No maintainer).
  5777. gis/geoserver-javascript: Removed (No maintainer).
  5778. gis/geoserver-oracle: Removed (No maintainer).
  5779. gis/geoserver-pyramid: Removed (No maintainer).
  5780. gis/geoserver-python: Removed (No maintainer).
  5781. gis/geoserver-wps: Removed (No maintainer).
  5782. gis/geoserver: Removed (No maintainer).
  5783. gis/gj2ascii: Update DEP
  5784. gis/grass: Fix for GDAL 3.3.
  5785. gis/grass: Fixed dep info
  5786. gis/laszip: Don't ship *.la files.
  5787. gis/laszip: Remove .la files.
  5788. gis/laszip: Remove .la files.
  5789. gis/libLAS: Patch for the newer boost.
  5790. gis/libgeotiff: Don't ship *.la files.
  5791. gis/libgeotiff: Remove .la files.
  5792. gis/libgeotiff: Remove .la files.
  5793. gis/librasterlite: Fix build on 15.0.
  5794. gis/librasterlite: Remove .la files.
  5795. gis/libspatialindex: Remove .la files.
  5796. gis/libspatialite: Remove .la files.
  5797. gis/libspatialite: Update DEP.
  5798. gis/libspatialite: Updated for version 5.0.1
  5799. gis/mapnik: Fixed dep info in README
  5800. gis/mapnik: Updated for version 3.1.0.
  5801. gis/merkaartor: Fix build for Qt 5.15.
  5802. gis/merkaartor: Updated dependencies.
  5803. gis/merkaartor: Updated for version 0.19.0
  5804. gis/mobac: Removed (No maintainer).
  5805. gis/navit: Updated for version 0.5.6.
  5806. gis/opencpn: Update README.
  5807. gis/opencpn: Update dep.
  5808. gis/opencpn: Updated for version 5.2.4.
  5809. gis/openorienteering-mapper: updated to version 0.9.5
  5810. gis/osgEarth: Updated for version 3.1
  5811. gis/osgEarth: Updated for version 3.2
  5812. gis/osm-gps-map: Remove .la files.
  5813. gis/osm2pgrouting: Updated for version 2.3.8.
  5814. gis/ossim: Updated for version 2.12.0.
  5815. gis/pgsql-ogr-fdw: Updated for version 1.1.1.
  5816. gis/pktools: Remove libLAS support.
  5817. gis/pointcloud: Update website.
  5818. gis/polyline: Removed Python 2 support.
  5819. gis/postgis: Updated for version 3.1.2.
  5820. gis/postgis: Updated for version 3.1.4.
  5821. gis/proj-data: Fix VERSION.
  5822. gis/proj-data: Updated for version 1.5.0.
  5823. gis/proj-data: Updated for version 1.7 + new maintainer.
  5824. gis/proj-data: Updated for version 1.8
  5825. gis/proj-data: Updated for version 1.9
  5826. gis/proj: Remove la file.
  5827. gis/proj: Updated for version 8.1.1 + new maintainer.
  5828. gis/proj: Updated for version 8.2.0
  5829. gis/proj: Updated for version 8.2.1
  5830. gis/proj: Updated for version 9.0.0
  5831. gis/pyproj: Updated dependencies.
  5832. gis/pyproj: Updated for version 3.2.1 + new maintainer.
  5833. gis/pyshp: New maintainer.
  5834. gis/pyshp: Removed Python 2 support.
  5835. gis/pyshp: Updated for version 2.2.0
  5836. gis/python-mapnik: Updated for version git4a6f35d.
  5837. gis/python-pygeos: Updated for version 0.10.2 + new maintainer
  5838. gis/python-pygeos: Updated for version 0.11.1
  5839. gis/python-pygeos: Updated for version 1.12.0
  5840. gis/python3-basemap: Fix build on -current.
  5841. gis/python3-basemap: Update DEP
  5842. gis/python3-cartopy: Renamed from gis/cartopy
  5843. gis/python3-pyproj: Fix slack-desc.
  5844. gis/python3-pyproj: renamed from gis/pyproj
  5845. gis/python3-pyshp: renamed from gis/pyshp
  5846. gis/python3-shapely: Fix slack-desc.
  5847. gis/python3-shapely: renamed from gis/Shapely, updated for version 1.8.1.post1
  5848. gis/python3-xarray: renamed from python/xarray and updated for version 2022.03.0
  5849. gis/pytrainer: Fix dependency.
  5850. gis/pytrainer: Update DEP.
  5851. gis/qgis: Fixed dep info
  5852. gis/qgis: Improve build process.
  5853. gis/qgis: Patch a cmake bug and point at current's sip3.
  5854. gis/qgis: Update DEP.
  5855. gis/qgis: Update DEP.
  5856. gis/qgis: Updated for version 3.20.0.
  5857. gis/qmapshack: Fixed dep info
  5858. gis/qmapshack: Updated for version 1.16.1.
  5859. gis/rasterio: Updated dependencies.
  5860. gis/rasterio: Updated for version 1.2.6.
  5861. gis/readosm: Remove .la files.
  5862. gis/saga-gis: Fix typo in script.
  5863. gis/saga-gis: Fix wxPython/wxGTK3 stupidity.
  5864. gis/saga-gis: Remove .la files.
  5865. gis/saga-gis: Updated dependencies.
  5866. gis/spatialite-tools: Updated for version 4.3.0.
  5867. gis/spatialite_gui: Removed.
  5868. gis/tangogps: Fix build on 15.0.
  5869. gis/udig: Removed (No maintainer).
  5870. gis/viking: Fix for gcc >= 10.x.
  5871. gis/viking: Fixed dep info
  5872. gis/whitebox-tools: Updated for version 1.5.0.
  5873. git/cargo: avoid writing to $HOME/.cargo
  5874. git/gitignore: Add .tar.zst in gitignore.
  5875. git/pyproj: Updated for version 3.3.0
  5876. graphics/Alchemy: removed.
  5877. graphics/Blender: Updated for version 2.92.0.
  5878. graphics/Blender: Updated for version 2.93.0
  5879. graphics/Blender: Updated for version 2.93.1
  5880. graphics/Blender: Updated for version 2.93.2
  5881. graphics/Blender: Updated for version 2.93.3
  5882. graphics/Blender: Updated for version 2.93.4
  5883. graphics/Blender: Updated for version 2.93.5
  5884. graphics/Blender: Updated for version 2.93.6
  5885. graphics/Blender: Updated for version 3.0.0
  5886. graphics/Blender: Updated for version 3.0.1
  5887. graphics/CairoSVG: Fixed dep info
  5888. graphics/FreeCAD: Updated for version 0.18.4.
  5889. graphics/FreeCAD: Updated for version 0.19.2
  5890. graphics/GPS: Update README
  5891. graphics/GraphicsMagick: Added a note to the README.
  5892. graphics/GraphicsMagick: Fixed dep info in README
  5893. graphics/GraphicsMagick: Minor build quibble.
  5894. graphics/GraphicsMagick: Remove .la files.
  5895. graphics/GraphicsMagick: Updated for version 1.3.36.
  5896. graphics/LDView: Fix 15.0 build.
  5897. graphics/LDView: Updated for version 4.4.1
  5898. graphics/LDraw_data: Updated for version 202201.
  5899. graphics/OpenCASCADE: Fix building with cmake >= 3.20.x.
  5900. graphics/OpenCASCADE: Modify for latest VTK
  5901. graphics/OpenSubdiv: Distinct SRCNAM no longer needed
  5902. graphics/OpenSubdiv: Fix github URL, remove static libs.
  5903. graphics/OpenSubdiv: Fixed dep info
  5904. graphics/OpenSubdiv: Fixed dep info in README
  5905. graphics/OpenSubdiv: Updated for version 3.4.4
  5906. graphics/Pixie: Fix 15.0 build.
  5907. graphics/PyMOL: Fix REQUIRES for python2.
  5908. graphics/SPIRV-Tools: Removed (included in -current).
  5909. graphics/SweetHome3D: Updated for version 6.6.
  5910. graphics/SweetHome3D: Use zulu-openjdk8.
  5911. graphics/SweetHome3d: Fixed dep info (-openjdk8)
  5912. graphics/VariCAD: Fix download URLs.
  5913. graphics/VariCAD: Fix support for PRINT_PACKAGE_NAME
  5914. graphics/Vulkan-Tools: Removed (included in -current).
  5915. graphics/Vulkan-Tools: Update DEP.
  5916. graphics/XnViewMP: Fixed dep info
  5917. graphics/XnViewMP: Update MD5SUM, VERSION.
  5918. graphics/advancecomp: Fix 15.0 build.
  5919. graphics/autotrace: Fix 15.0 build.
  5920. graphics/baires: Fix -current build.
  5921. graphics/barcode: Fix 15.0 build.
  5922. graphics/bdfedit: Remove template comment.
  5923. graphics/brlcad: Fixed dep info
  5924. graphics/brlcad: Updated for version 7.32.4.
  5925. graphics/brlcad: updated homepage
  5926. graphics/cam: Added (display images in a terminal).
  5927. graphics/converseen: Fixed dep info in README
  5928. graphics/converseen: Switch to https.
  5929. graphics/converseen: Updated for version 0.9.9.1.
  5930. graphics/converseen: Updated for version 0.9.9.2.
  5931. graphics/converseen: Updated for version 0.9.9.3.
  5932. graphics/converseen: Updated for version 0.9.9.4.
  5933. graphics/darktable: Fixed dep info
  5934. graphics/darktable: Updated for version 3.4.0.
  5935. graphics/dblatex: Update MD5SUM.
  5936. graphics/digikam: Removed (added to Slackware).
  5937. graphics/discwrapper: Removed (No maintainer).
  5938. graphics/draftsight: Removed (No maintainer).
  5939. graphics/enblend-enfuse: Add a missing header.
  5940. graphics/enblend-enfuse: Updated for version 20191019_4c30a326b3f4.
  5941. graphics/entangle: Fixed dep info
  5942. graphics/entangle: Remove .la files.
  5943. graphics/exact-image: Fix build if efl installed.
  5944. graphics/exact-image: Patch for giflib >= 5.2.x.
  5945. graphics/exact-image: Updated for Slackware 15.
  5946. graphics/fbida: Fix README.
  5947. graphics/fbida: Patch for gcc >= 10.x.
  5948. graphics/fbida: Remove template comment.
  5949. graphics/fbv: Remove template comment.
  5950. graphics/fim: Updated for version 0.6_trunk.
  5951. graphics/findimagedupes: Updated for version 2.19.1.
  5952. graphics/flameshot: Fixed dep info
  5953. graphics/flpsed: Remove template comment.
  5954. graphics/fontforge: Don't ship .la files
  5955. graphics/fontforge: Update the pre-install catcher.
  5956. graphics/fontforge: Updated for version 20201107.
  5957. graphics/fotowall: Updated for version 1.0.
  5958. graphics/fotoxx: Removed (ornery requirements; I'm done)
  5959. graphics/freewrl: Fixed dep info
  5960. graphics/freewrl: Removed (no maintainer, ftbfs).
  5961. graphics/frescobaldi: Updated for version 3.1.3.
  5962. graphics/fyre: fix build
  5963. graphics/gcolor2: Patch for gcc >= 10.x.
  5964. graphics/gdk-pixbuf-psd: Remove template comment.
  5965. graphics/gifsicle: Updated for version 1.93.
  5966. graphics/gimagereader: Updated for version 20201201_2d32618.
  5967. graphics/gimagereader: Updated for version 3.4.0.
  5968. graphics/gimp-feca_hdr-plugin: Updated for version 2018.07.28.
  5969. graphics/gimp-lqr-plugin: Fix building on -current.
  5970. graphics/gimp-plugin-bimp: Updated for version 2.0.
  5971. graphics/gimp-plugin-bimp: Updated for version 2.5.
  5972. graphics/gimp-plugin-bimp: Updated for version 2.6
  5973. graphics/gimp-wideangle-plugin: Fix 15.0 build.
  5974. graphics/glslang: Removed (added to Slackware).
  5975. graphics/gmic: Fixed dep info
  5976. graphics/gmic: Updated for version 2.9.4.
  5977. graphics/gnome-web-photo: Removed.
  5978. graphics/goocanvas: Fix underlinking.
  5979. graphics/goocanvas: Remove .la files.
  5980. graphics/gource: Update DEP.
  5981. graphics/gpaint: Fix underlinking against libm.
  5982. graphics/gpaint: update copyright years
  5983. graphics/gpscorrelate: Updated for version 2.0.
  5984. graphics/graphene: Removed (added to Slackware).
  5985. graphics/graphite2: Removed (added to Slackware).
  5986. graphics/graphviz: Disable the php bindings (FTB ATM).
  5987. graphics/graphviz: Remove .la files.
  5988. graphics/gthumb: Align with new template.
  5989. graphics/gthumb: Fixed build failure
  5990. graphics/gthumb: Fixed dep info
  5991. graphics/gthumb: Updated for version 3.10.3
  5992. graphics/gthumb: Updated for version 3.10.4.
  5993. graphics/gtkam: Fix 15.0 build.
  5994. graphics/heif-gimp-plugin: Updated for version 20191012_d6bea52.
  5995. graphics/hp2xx: Remove template comment.
  5996. graphics/hugin: Fix wxPython conflict.
  5997. graphics/hugin: Updated for version 2020.0.0.
  5998. graphics/icc_profiles: Fix build.
  5999. graphics/imgcurses: Added (character-based image viewer).
  6000. graphics/imgmin: Fix 15.0 build.
  6001. graphics/imgp: Fixed dep info
  6002. graphics/imgp: Updated for version 2.8.
  6003. graphics/imgp: Use systemwide dir for bash completion files
  6004. graphics/imv: Fixed dep info
  6005. graphics/imv: Updated for version 4.3.0.
  6006. graphics/inkscape: Patch for glib2 >= 2.67.3.
  6007. graphics/inkscape: Updated for version 1.0.2.
  6008. graphics/inkscape: Updated for version 1.1.
  6009. graphics/inkscape: Updated for version 1.1.1.
  6010. graphics/inkscape: Updated for version 1.1.2.
  6011. graphics/ipe: Fix 15.0 build, use LIBDIRSUFFIX.
  6012. graphics/ipe: Update DOWNLOAD url.
  6013. graphics/jpegoptim: Expand README & slack-desc.
  6014. graphics/k3d: Patch for gcc >= 7.x.
  6015. graphics/k3d: Removed (FTBFS).
  6016. graphics/kamerka: Removed (KDE4 app, untouched since 2014).
  6017. graphics/kphotoalbum: Fixed dep info in README
  6018. graphics/kphotoalbum: Fixed dep info in README
  6019. graphics/kphotoalbum: Updated for version 5.7.0.
  6020. graphics/kuickshow: Updated for version 0.10.1.
  6021. graphics/lddot: Install man page correctly.
  6022. graphics/leocad: Updated for version 21.06
  6023. graphics/leocad_pieces: Updated for version 20.03
  6024. graphics/libfpx: Fix README.
  6025. graphics/libfpx: Patch for gcc >= 10.x.
  6026. graphics/libfpx: Remove template comment.
  6027. graphics/libplacebo: Fix dep info (again)
  6028. graphics/libplacebo: Fixed dep info
  6029. graphics/libplacebo: Updated for version 3.120.3.
  6030. graphics/librecad: Fix building with the newer boost.
  6031. graphics/lilypond: Don't depend on dblatex
  6032. graphics/lilypond: Update DEP.
  6033. graphics/lilypond: Updated for version 2.22.1
  6034. graphics/luminance-hdr: Fixed dep info
  6035. graphics/luminance-hdr: Update DEP.
  6036. graphics/luminance-hdr: Updated for version 2.6.0.
  6037. graphics/luxcorerender: Add missing desktop file.
  6038. graphics/luxcorerender: Fix slack-desc, PRGNAM.
  6039. graphics/luxrender: Fix download URLs.
  6040. graphics/luxrender: Fixed dep info
  6041. graphics/luxrender: Migrated to luxcorerender 2.6.
  6042. graphics/maim: Update DEP.
  6043. graphics/makehuman: Updated for version 1.2.0+20201105183027.
  6044. graphics/mcomix3: Added (comic book reader)
  6045. graphics/mcomix: Removed (no python2 pillow in current).
  6046. graphics/meh: Remove template comment.
  6047. graphics/meshlab: Fix github filename, desktop, doinst.
  6048. graphics/meshlab: Updated for version 2021.10.
  6049. graphics/mftrace: Fix dep info (t1utils)
  6050. graphics/mirage: updated for version 0.11.1
  6051. graphics/mitsuba-blender: Removed (ftbfs).
  6052. graphics/mitsuba2: Added (replacement of mitsuba).
  6053. graphics/mitsuba: Removed (ftbfs).
  6054. graphics/mlbrot: Removed (ftb).
  6055. graphics/mozjpeg: Note zulu-openjdk*.
  6056. graphics/mozjpeg: Remove template comment.
  6057. graphics/mtpaint: update copyright years
  6058. graphics/mypaint-brushes2: Added.
  6059. graphics/mypaint-brushes2: Fix slack-desc.
  6060. graphics/mypaint: Remove json-c dep (part of Slackware).
  6061. graphics/mypaint: Updated for version 1.2.1.
  6062. graphics/mypaint: Updated for version 2.0.1.
  6063. graphics/mypaint: Use correct numpy dep.
  6064. graphics/nomacs: Updated for version 3.17.2206.
  6065. graphics/nsxiv: Added (Neo Simple X Image Viewer).
  6066. graphics/nvidia-cg-toolkit: Updated maintainer email
  6067. graphics/nvidia-texture-tools: Fix 15.0 build.
  6068. graphics/opencollada: Add a patch for the newer pcre.
  6069. graphics/opencolorio: Add net warning in README.
  6070. graphics/opencolorio: Disabled some warnings-as-errors.
  6071. graphics/opencolorio: Fix destination lib directory
  6072. graphics/opencolorio: Fix quote.
  6073. graphics/opencolorio: Remove build dir.
  6074. graphics/opencolorio: Updated for version 2.0.1
  6075. graphics/opencolorio: Updated for version 2.1.0
  6076. graphics/opencolorio: Updated for version 2.1.1
  6077. graphics/openimageio: Updated for version 2.1.19.0.
  6078. graphics/openimageio: Updated for version 2.2.15.1
  6079. graphics/openimageio: Updated for version 2.2.17.0
  6080. graphics/openimageio: Upgraded for version 2.2.19.0
  6081. graphics/openscad-mcad: Fix github filename mess.
  6082. graphics/openscad: Updated for version 2021.01.
  6083. graphics/oyranos: Fix 15.0 build.
  6084. graphics/paraview: No tabs in .info file.
  6085. graphics/paraview: Update DEP.
  6086. graphics/paraview: Updated for version 5.10.0
  6087. graphics/paraview: Updated for version 5.9.1
  6088. graphics/pcx-pixbuf-loader: Fixed dep info
  6089. graphics/pcx-pixbuf-loader: Remove template comment.
  6090. graphics/pcx-pixbuf-loader: Support alternatives for ninja
  6091. graphics/pencil2d: Fixed dep info
  6092. graphics/pencil3: Align with template
  6093. graphics/pencil3: Updated for version 3.1.0.
  6094. graphics/photivo: Fixed dep info
  6095. graphics/photivo: Removed.
  6096. graphics/photoprint: Fix building with the newer glibc.
  6097. graphics/photoprint: Removed.
  6098. graphics/photoqt: Fixed README (poppler-qt5)
  6099. graphics/photoqt: Fixed dep info
  6100. graphics/photoqt: Updated for version 2.1.1.
  6101. graphics/photoqt: Updated for version 2.5.
  6102. graphics/plotutils: Remove .la files.
  6103. graphics/povray: Updated for version 3.7.0.8.
  6104. graphics/povray: Updated for version 3.8.0_beta.2.
  6105. graphics/pqiv: Fixed dep info in README
  6106. graphics/psftools: Use https URLs, remove .la file.
  6107. graphics/pyformex: Fix 15.0 build.
  6108. graphics/pygifme: Fix 15.0 build.
  6109. graphics/qcad: Updated for version 3.26.2.0.
  6110. graphics/qcomicbook: Fix github filename.
  6111. graphics/qcomicbook: Updated for version 0.9.1 (qt5-based).
  6112. graphics/qelectrotech: Updated for version 0.8.0.
  6113. graphics/qiv: Fixed dep info in README
  6114. graphics/qiv: Remove template comment.
  6115. graphics/qrencode: Removed (added to Slackware).
  6116. graphics/ralcgm: Remove template comment.
  6117. graphics/raw-thumbnailer: Get rid of incorrect usage info.
  6118. graphics/raw-thumbnailer: Remove template comment.
  6119. graphics/rawstudio: Disabled narrowing warnings.
  6120. graphics/rawstudio: Fix download URL.
  6121. graphics/rawstudio: Fixed dep info
  6122. graphics/rawstudio: Removed (FTBFS).
  6123. graphics/rawtherapee: Fixed dep info
  6124. graphics/rawtherapee: Updated for version 5.8.
  6125. graphics/ristretto: Updated for version 0.10.0.
  6126. graphics/ristretto: Updated for version 0.12.2.
  6127. graphics/scantailor-advanced: Remove compatibility hacks.
  6128. graphics/scantailor-advanced: Updated for version 20200531_3d1e74e.
  6129. graphics/scantailor: Removed (incompatible with qt5-5.15.x).
  6130. graphics/screencloud: Updated for version 1.5.3, build from source.
  6131. graphics/screengrab: Updated for version 2.1.0.
  6132. graphics/separate+: Removed (crashed at runtime).
  6133. graphics/shaderc: Fixed dep info
  6134. graphics/shaderc: Removed (included in -current).
  6135. graphics/shotwell: Fixed dep info
  6136. graphics/shotwell: Remove .la files.
  6137. graphics/simple-scan: Align with new template.
  6138. graphics/simple-scan: Fixed dep info
  6139. graphics/simple-scan: Updated for version 3.34.0, changed homepage.
  6140. graphics/simple-scan: Updated for version 3.38.5.
  6141. graphics/tclblt: Add -j1 to make, use /usr/lib64 on x86_64.
  6142. graphics/teighafileconverter: Remove template comment.
  6143. graphics/teighaviewer: Remove "broken" comment (qt4 fixes it).
  6144. graphics/teighaviewer: Remove template comment.
  6145. graphics/teighaviewer: Removed (outdated binary-only software).
  6146. graphics/tesseract: Updated for version 5.0.1
  6147. graphics/textext: Update DEP.
  6148. graphics/tgif-QPL: Fix download URL.
  6149. graphics/tintii: Fix wxPython conflict.
  6150. graphics/tuxpaint: Fix DEP.
  6151. graphics/tuxpaint: Updated for version 0.9.27.
  6152. graphics/ueberzug: Fixed dep info
  6153. graphics/ufraw: Fixed dep info
  6154. graphics/ufraw: Patch for the newer toolchain.
  6155. graphics/ufraw: Updated for version 20210427_684af05.
  6156. graphics/unpaper: Update DEP.
  6157. graphics/urbanlightscape: Fix wxPython conflict.
  6158. graphics/veles: Add net warning in README.
  6159. graphics/viewnior: Align with new template.
  6160. graphics/viewnior: Fixed dep info
  6161. graphics/viewnior: Remove template comment.
  6162. graphics/vips: Update DEP.
  6163. graphics/vips: Updated for version 8.12.2.
  6164. graphics/vsxu: Update DEP.
  6165. graphics/vsxu: Update REQUIRES (glfw => glfw3).
  6166. graphics/vuescan: Updated MD5SUMs.
  6167. graphics/vuescan: Updated MD5SUMs.
  6168. graphics/vuescan: Updated MD5SUMs.
  6169. graphics/vuescan: Updated MD5SUMs.
  6170. graphics/vuescan: Updated MD5SUMs.
  6171. graphics/vuescan: Updated for version 9.7.55.
  6172. graphics/vuescan: Updated for version 9.7.56.
  6173. graphics/vuescan: Updated for version 9.7.58.
  6174. graphics/vuescan: Updated for version 9.7.59.
  6175. graphics/vuescan: Updated for version 9.7.64.
  6176. graphics/vuescan: Updated for version 9.7.65.
  6177. graphics/vuescan: Updated for version 9.7.67.
  6178. graphics/vuescan: Updated for version 9.7.69.
  6179. graphics/vuescan: Updated for version 9.7.71.
  6180. graphics/vuescan: Updated for version 9.7.74.
  6181. graphics/vuescan: Updated for version 9.7.76.
  6182. graphics/vuescan: Updated for version 9.7.79.
  6183. graphics/vulkan-sdk-bin: Removed (included in -current).
  6184. graphics/vulkan-sdk: Removed (added to Slackware).
  6185. graphics/wavelet-denoise: Fix build on 15.0, do not spam /usr.
  6186. graphics/wayland-protocols: Removed (added to Slackware).
  6187. graphics/webp-pixbuf-loader: Fixed dep info
  6188. graphics/webp-pixbuf-loader: Support alternatives for ninja
  6189. graphics/webp-pixbuf-loader: Updated for version 0.0.3.
  6190. graphics/white_dune: Update DEP.
  6191. graphics/wine-nine-standalone: Fixed dep info
  6192. graphics/wine-nine-standalone: Updated for version 0.8.
  6193. graphics/xbmbrowser: Fix download URL.
  6194. graphics/xcalib: Updated for version 0.10
  6195. graphics/xcf-pixbuf-loader: Remove template comment.
  6196. graphics/xcur2png: Remove template comment.
  6197. graphics/xfishtank: Updated for version 2.6.
  6198. graphics/xli: Remove template comment.
  6199. graphics/xmedcon: Remove .la files.
  6200. graphics/xmedcon: Updated for version 0.21.2, change maint. email.
  6201. graphics/xpe: Fix 15.0 build.
  6202. graphics/yacreader: Fixed dep info
  6203. graphics/yacreader: Updated for version 9.8.2.2106195.
  6204. graphics/yafaray-blender: Fix github filename.
  6205. graphics/yafaray-blender: Updated for version 3.2.0.
  6206. graphics/yafaray: Fix github URL, support optional qt4.
  6207. graphics/yafaray: Fixed dep info (opencv)
  6208. graphics/yafaray: Updated for version 3.2.0.
  6209. graphics/yagf: Fix DEP.
  6210. graphics/yed: Updated for version 3.21.1
  6211. graphics/yesplz: Removed (No longer maintained).
  6212. graphics/zbar: Remove .la files.
  6213. graphics/zbar: Updated for version 0.23.90.
  6214. gupnp: Updated for version 1.4.2.
  6215. ham/7plus: Fixes for the 64bit build.
  6216. ham/CubicSDR: Fix github tarball handling.
  6217. ham/CubicSDR: Fix github tarball handling.
  6218. ham/CubicSDR: Updated for version 0.2.7.
  6219. ham/SoapySDR: Updated for version 0.8.1.
  6220. ham/SoapySDRPlay: Fix DOWNLOAD.
  6221. ham/aprx: Use -fcommon. i486->i586. Fix README.
  6222. ham/chirp: Updated for version 20210416.
  6223. ham/chirp: Updated for version 20210830.
  6224. ham/chirp: Updated for version 20220219.
  6225. ham/cwstation: Use autogen.sh. i486->i586.
  6226. ham/direwolf: Compress manpages.
  6227. ham/direwolf: Fix github zip handling.
  6228. ham/ebook2cw: Fixed dep info
  6229. ham/fldigi: Added -fpermissive to the CXXFLAGS.
  6230. ham/fldigi: Fix REQUIRES.
  6231. ham/fldigi: Updated for version 4.1.20.
  6232. ham/fldigi: Use -std=c++14. Adjust REQUIRES.
  6233. ham/flmsg: Updated for version 4.0.19. Fix README.
  6234. ham/flrig: Fix dep info (+fltk)
  6235. ham/flrig: Updated for 1.4.4. Adjust REQUIRES.
  6236. ham/freedv: Fixed dep info
  6237. ham/gqrx-sdr: Fix DOWNLOAD & README.
  6238. ham/gqrx-sdr: Updated for version 2.15.8.
  6239. ham/gsmlib: Remove .la files.
  6240. ham/gsmlib: Use -std=c++14. i486->i586. Fix README.
  6241. ham/hamlib: Fix README.
  6242. ham/hamlib: Remove .la files.
  6243. ham/inspectrum: Updated for version 0.2.3.
  6244. ham/klog: Fix DOWNLOAD.
  6245. ham/klog: Updated for version 1.8.7. Adjust README. Fix paths.
  6246. ham/libax25: Remove .la files.
  6247. ham/linlogbook: Removed.
  6248. ham/linpsk: Updated for version 1.3.5.
  6249. ham/liquid-dsp: Updated for version 1.4.0.
  6250. ham/lpsk31: Use -fcommon. Fix README.
  6251. ham/qradiopredict: Removed.
  6252. ham/qsstv: Updated for version 9.5.8.
  6253. ham/soundmodem: Added -fpermissive to the CXXFLAGS.
  6254. ham/spectools: Fix support for PRINT_PACKAGE_NAME
  6255. ham/svxlink: Fix DOWNLOAD.
  6256. ham/svxlink: Fix github tarball handling.
  6257. ham/svxlink: Fixed dep info
  6258. ham/svxlink: Patched for gcc >= 6.x.
  6259. ham/tqsl: Updated for version 2.5.7.
  6260. ham/twhamqth: Use -fcommon. i486->i586. Fix README.
  6261. ham/unixcw: Remove .la files.
  6262. ham/wsjtx: Fixed dep info.
  6263. ham/wsjtx: Updated for 2.5.4. Fix README.
  6264. ham/xdemorse: Updated for 3.6.5. i486->i586. Fix README.
  6265. ham/xdx: Use -fcommon. Fix README.
  6266. ham/xgridloc: Fix DOWNLOAD.
  6267. ham/xlog: Updated for version 2.0.24.
  6268. ham/xnec2c: Updated for 4.4.5. Fix README.
  6269. haskell-doctemplates: Updated for version 0.10.0.1.
  6270. haskell/ghc: Install the man page in the correct place.
  6271. haskell/ghc: Updated for version 8.10.4.
  6272. haskell/haskell-Crypto: Fix build with ghc 8.10.
  6273. haskell/haskell-Diff: Fix build with ghc 8.10.
  6274. haskell/haskell-FindBin: Fix build with ghc 8.10.
  6275. haskell/haskell-GLURaw: Fix build with ghc 8.10.
  6276. haskell/haskell-GLURaw: Updated for version 2.0.0.5.
  6277. haskell/haskell-GLUT: Fix build with ghc 8.10.
  6278. haskell/haskell-GLUT: Updated for version 2.7.0.16.
  6279. haskell/haskell-Glob: Fix build with ghc 8.10.
  6280. haskell/haskell-Glob: Fix dependencies.
  6281. haskell/haskell-HTTP: Fix build with ghc 8.10.
  6282. haskell/haskell-HTTP: Updated for version 4000.3.16.
  6283. haskell/haskell-HUnit: Fix build with ghc 8.10.
  6284. haskell/haskell-HsYAML: Fix build with ghc 8.10.
  6285. haskell/haskell-HsYAML: Updated for version 0.2.1.0.
  6286. haskell/haskell-JuicyPixels: Fix build with ghc 8.10.
  6287. haskell/haskell-JuicyPixels: Updated for version 3.3.6.
  6288. haskell/haskell-ObjectName: Fix build with ghc 8.10.
  6289. haskell/haskell-OneTuple: Added (singleton tuple).
  6290. haskell/haskell-OpenGL: Fix build with ghc 8.10.
  6291. haskell/haskell-OpenGL: Fix dependencies.
  6292. haskell/haskell-OpenGL: Updated for version 3.0.3.0.
  6293. haskell/haskell-OpenGLRaw: Fix build with ghc 8.10.
  6294. haskell/haskell-OpenGLRaw: Updated for version 3.3.4.0.
  6295. haskell/haskell-QuickCheck: Fix build with ghc 8.10.
  6296. haskell/haskell-QuickCheck: Fix dependencies.
  6297. haskell/haskell-QuickCheck: Updated for version 2.14.2.
  6298. haskell/haskell-SHA: Fix build with ghc 8.10.
  6299. haskell/haskell-ShellCheck: Fix build with ghc 8.10.
  6300. haskell/haskell-ShellCheck: Updated for version 0.7.2.
  6301. haskell/haskell-ShellCheck: Updated for version 0.8.0.
  6302. haskell/haskell-StateVar: Fix build with ghc 8.10.
  6303. haskell/haskell-StateVar: Updated for version 1.2.2.
  6304. haskell/haskell-Tensor: Fix build with ghc 8.10.
  6305. haskell/haskell-X11-xft: Fix build with ghc 8.10.
  6306. haskell/haskell-X11: Fix build with ghc 8.10.
  6307. haskell/haskell-X11: Updated for version 1.10.2.
  6308. haskell/haskell-aeson-compat: Fix build with ghc 8.10.
  6309. haskell/haskell-aeson-compat: Fix dependencies.
  6310. haskell/haskell-aeson-compat: Fix dependencies.
  6311. haskell/haskell-aeson-compat: Updated for version 0.3.10.
  6312. haskell/haskell-aeson-pretty: Fix build with ghc 8.10.
  6313. haskell/haskell-aeson-pretty: Fix dependencies.
  6314. haskell/haskell-aeson-pretty: Updated for version 0.8.9.
  6315. haskell/haskell-aeson: Fix build with ghc 8.10.
  6316. haskell/haskell-aeson: Fix dependencies.
  6317. haskell/haskell-aeson: Fix depenedencies.
  6318. haskell/haskell-aeson: Updated for version 1.5.6.0.
  6319. haskell/haskell-annotated-wl-pprint: Fix build with ghc 8.10.
  6320. haskell/haskell-ansi-terminal: Fix build with ghc 8.10.
  6321. haskell/haskell-ansi-wl-pprint: Fix build with ghc 8.10.
  6322. haskell/haskell-appar: Added (A simple applicative parser).
  6323. haskell/haskell-asn1-encoding: Fix build with ghc 8.10.
  6324. haskell/haskell-asn1-encoding: Fix dependencies.
  6325. haskell/haskell-asn1-encoding: Updated for version 0.9.6.
  6326. haskell/haskell-asn1-parse: Fix build with ghc 8.10.
  6327. haskell/haskell-asn1-parse: Fix dependencies.
  6328. haskell/haskell-asn1-types: Fix build with ghc 8.10.
  6329. haskell/haskell-assoc: Added (swap and assoc).
  6330. haskell/haskell-async: Fix build with ghc 8.10.
  6331. haskell/haskell-async: Updated for version 2.2.3.
  6332. haskell/haskell-async: Updated for version 2.2.4.
  6333. haskell/haskell-attoparsec-iso8601: Fix build with ghc 8.10.
  6334. haskell/haskell-attoparsec-iso8601: Updated for version 1.0.2.1.
  6335. haskell/haskell-attoparsec: Fix build with ghc 8.10.
  6336. haskell/haskell-attoparsec: Updated for version 0.14.1.
  6337. haskell/haskell-attoparsec: Updated for version 0.14.3.
  6338. haskell/haskell-auto-update: Fix build with ghc 8.10.
  6339. haskell/haskell-base-compat-batteries: Added (base-compat extras).
  6340. haskell/haskell-base-compat: Fix build with ghc 8.10.
  6341. haskell/haskell-base-compat: Updated for version 0.12.1.
  6342. haskell/haskell-base-orphans: Fix build with ghc 8.10.
  6343. haskell/haskell-base-orphans: Updated for version 0.8.6.
  6344. haskell/haskell-base-prelude: Fix build with ghc 8.10.
  6345. haskell/haskell-base16-bytestring: Fix build with ghc 8.10.
  6346. haskell/haskell-base16-bytestring: Updated for version 0.1.1.7.
  6347. haskell/haskell-base64-bytestring: Fix build with ghc 8.10.
  6348. haskell/haskell-basement: Fix build with ghc 8.10.
  6349. haskell/haskell-basement: Updated for version 0.0.12.
  6350. haskell/haskell-bifunctors: Fix build with ghc 8.10.
  6351. haskell/haskell-bifunctors: Updated for version 5.5.11.
  6352. haskell/haskell-bindings-uname: Fix build with ghc 8.10.
  6353. haskell/haskell-bitarray: Fix build with ghc 8.10.
  6354. haskell/haskell-blaze-builder: Fix build with ghc 8.10.
  6355. haskell/haskell-blaze-html: Fix build with ghc 8.10.
  6356. haskell/haskell-blaze-html: Updated for version 0.9.1.2.
  6357. haskell/haskell-blaze-markup: Fix build with ghc 8.10.
  6358. haskell/haskell-blaze-markup: Updated for version 0.8.2.8.
  6359. haskell/haskell-bmp: Fix build with ghc 8.10.
  6360. haskell/haskell-byteable: Fix build with ghc 8.10.
  6361. haskell/haskell-byteorder: Added (native endianness lib).
  6362. haskell/haskell-bytestring-builder: Fix build with ghc 8.10.
  6363. haskell/haskell-cabal-doctest: Added (A Setup.hs helper).
  6364. haskell/haskell-cabal-install: Fix dependencies.
  6365. haskell/haskell-cabal-install: Removed (ftbfs, unmaintained).
  6366. haskell/haskell-call-stack: Fix build with ghc 8.10.
  6367. haskell/haskell-case-insensitive: Fix build with ghc 8.10.
  6368. haskell/haskell-case-insensitive: Fix dependencies.
  6369. haskell/haskell-cereal: Fix build with ghc 8.10.
  6370. haskell/haskell-cereal: Updated for version 0.5.8.2.
  6371. haskell/haskell-cgi: Fix build with ghc 8.10.
  6372. haskell/haskell-cgi: Fix dependencies.
  6373. haskell/haskell-cgi: Updated for version 3001.5.0.0.
  6374. haskell/haskell-cipher-aes: Fix build with ghc 8.10.
  6375. haskell/haskell-cipher-aes: Fix dependencies.
  6376. haskell/haskell-cipher-des: Fix build with ghc 8.10.
  6377. haskell/haskell-cipher-des: Fix dependencies.
  6378. haskell/haskell-cipher-rc4: Fix build with ghc 8.10.
  6379. haskell/haskell-cipher-rc4: Fix dependencies.
  6380. haskell/haskell-citeproc: Added (gen citations).
  6381. haskell/haskell-clock: Fix build with ghc 8.10.
  6382. haskell/haskell-cmark-gfm: Fix build with ghc 8.10.
  6383. haskell/haskell-cmark: Fix build with ghc 8.10.
  6384. haskell/haskell-cmdargs: Fix build with ghc 8.10.
  6385. haskell/haskell-cmdlib: Fix build with ghc 8.10.
  6386. haskell/haskell-cmdlib: Removed (does not build with ghc 8.10.4).
  6387. haskell/haskell-colour: Fix build with ghc 8.10.
  6388. haskell/haskell-colour: Updated for version 2.3.6.
  6389. haskell/haskell-commonmark-extensions: Added (commonmark extends).
  6390. haskell/haskell-commonmark-pandoc: Added (Bridge pandoc AST).
  6391. haskell/haskell-commonmark: Added (Pure Haskell commonmark parser).
  6392. haskell/haskell-comonad: Fix build with ghc 8.10.
  6393. haskell/haskell-comonad: Updated for version 5.0.8.
  6394. haskell/haskell-composition: Fix build with ghc 8.10.
  6395. haskell/haskell-conduit-extra: Fix build with ghc 8.10.
  6396. haskell/haskell-conduit-extra: Fix dependencies.
  6397. haskell/haskell-conduit: Fix build with ghc 8.10.
  6398. haskell/haskell-conduit: Fix dependencies.
  6399. haskell/haskell-conduit: Fix dependencies.
  6400. haskell/haskell-connection: Fix build with ghc 8.10.
  6401. haskell/haskell-connection: Fix dependencies.
  6402. haskell/haskell-connection: Updated for version 0.3.1.
  6403. haskell/haskell-constraints: Fix build with ghc 8.10.
  6404. haskell/haskell-constraints: Fix dependencies.
  6405. haskell/haskell-constraints: Updated for version 0.13.3.
  6406. haskell/haskell-contravariant: Fix build with ghc 8.10.
  6407. haskell/haskell-contravariant: Updated dependencies.
  6408. haskell/haskell-cookie: Fix build with ghc 8.10.
  6409. haskell/haskell-crypto-cipher-types: Fix build with ghc 8.10.
  6410. haskell/haskell-crypto-cipher-types: Fix dependencies.
  6411. haskell/haskell-crypto-numbers: Fix build with ghc 8.10.
  6412. haskell/haskell-crypto-numbers: Fix dependencies.
  6413. haskell/haskell-crypto-pubkey-types: Fix build with ghc 8.10.
  6414. haskell/haskell-crypto-pubkey-types: Fix dependencies.
  6415. haskell/haskell-crypto-pubkey: Fix build with ghc 8.10.
  6416. haskell/haskell-crypto-pubkey: Fix dependencies.
  6417. haskell/haskell-crypto-random: Fix build with ghc 8.10.
  6418. haskell/haskell-cryptohash-sha256: Fix build with ghc 8.10.
  6419. haskell/haskell-cryptohash: Fix build with ghc 8.10.
  6420. haskell/haskell-cryptohash: Fix deps.
  6421. haskell/haskell-cryptonite-conduit: Fix build with ghc 8.10.
  6422. haskell/haskell-cryptonite-conduit: Fix dependencies.
  6423. haskell/haskell-cryptonite: Fix build with ghc 8.10.
  6424. haskell/haskell-cryptonite: Updated for version 0.29.
  6425. haskell/haskell-curl: Fix build with ghc 8.10.
  6426. haskell/haskell-data-default-class: Fix build with ghc 8.10.
  6427. haskell/haskell-data-default-instances-containers: Fix metadata.
  6428. haskell/haskell-data-default: Fix build with ghc 8.10.
  6429. haskell/haskell-data-default: Fix deps.
  6430. haskell/haskell-data-fix: Added (Fixpoint data types).
  6431. haskell/haskell-data-ordlist: Fix build with ghc 8.10.
  6432. haskell/haskell-dataenc: Fix build with ghc 8.10.
  6433. haskell/haskell-deepseq-generics: Fix build with ghc 8.10.
  6434. haskell/haskell-deepseq-generics: Fix build with ghc 8.10.4.
  6435. haskell/haskell-digest: Fix build with ghc 8.10.
  6436. haskell/haskell-distributive: Fix build with ghc 8.10.
  6437. haskell/haskell-distributive: Fix dependencies.
  6438. haskell/haskell-dlist: Fix build with ghc 8.10.
  6439. haskell/haskell-dlist: Updated for version 0.8.0.7.
  6440. haskell/haskell-doclayout: Added (A prettyprinting library).
  6441. haskell/haskell-doctemplates: Add dependency.
  6442. haskell/haskell-doctemplates: Fix build with ghc 8.10.
  6443. haskell/haskell-doctemplates: Fix dependencies.
  6444. haskell/haskell-double-conversion: Fix build with ghc 8.10.
  6445. haskell/haskell-easy-file: Fix build with ghc 8.10.
  6446. haskell/haskell-echo: Fix build with ghc 8.10.
  6447. haskell/haskell-ed25519: Fix build with ghc 8.10.
  6448. haskell/haskell-edit-distance: Fix build with ghc 8.10.
  6449. haskell/haskell-either: Fix build with ghc 8.10.
  6450. haskell/haskell-either: Fix dependencies.
  6451. haskell/haskell-emojis: Added (emoji conversions).
  6452. haskell/haskell-enclosed-exceptions: Fix build with ghc 8.10.
  6453. haskell/haskell-enclosed-exceptions: Fix dependencies.
  6454. haskell/haskell-env-locale: Fix build with ghc 8.10.
  6455. haskell/haskell-erf: Fix build with ghc 8.10.
  6456. haskell/haskell-errors: Added (Simplified error-handling).
  6457. haskell/haskell-exceptions: Fix build with ghc 8.10.
  6458. haskell/haskell-exceptions: Removed (part of ghc).
  6459. haskell/haskell-exceptions: Updated for version 0.10.4.
  6460. haskell/haskell-extensible-exceptions: Fix build with ghc 8.10.
  6461. haskell/haskell-extra: Fix build with ghc 8.10.
  6462. haskell/haskell-fail: Fix build with ghc 8.10.
  6463. haskell/haskell-fast-logger: Fix build with ghc 8.10.
  6464. haskell/haskell-fast-logger: Fix dependencies.
  6465. haskell/haskell-fgl: Fix build with ghc 8.10.
  6466. haskell/haskell-fgl: Updated for version 5.7.0.3.
  6467. haskell/haskell-file-embed: Fix build with ghc 8.10.
  6468. haskell/haskell-file-embed: Updated for version 0.0.15.0.
  6469. haskell/haskell-filelock: Fix build with ghc 8.10.
  6470. haskell/haskell-filemanip: Fix build with ghc 8.10.
  6471. haskell/haskell-fixed: Fix build with ghc 8.10.
  6472. haskell/haskell-foundation: Fix build with ghc 8.10.
  6473. haskell/haskell-foundation: Updated for version 0.0.26.1.
  6474. haskell/haskell-free: Fix build with ghc 8.10.
  6475. haskell/haskell-free: Fix dependencies.
  6476. haskell/haskell-free: Fix dependencies.
  6477. haskell/haskell-free: Updated for version 5.1.7.
  6478. haskell/haskell-fsnotify: Fix build with ghc 8.10.
  6479. haskell/haskell-fsnotify: Fix dependencies.
  6480. haskell/haskell-generic-deriving: Fix build with ghc 8.10.
  6481. haskell/haskell-generic-deriving: Updated for version 1.14.1.
  6482. haskell/haskell-ghc-paths: Fix build with ghc 8.10.
  6483. haskell/haskell-ghc-paths: Updated for version 0.1.0.12.
  6484. haskell/haskell-gitrev: Fix build with ghc 8.10.
  6485. haskell/haskell-gloss-rendering: Fix build with ghc 8.10.
  6486. haskell/haskell-gloss-rendering: Fix dependencies.
  6487. haskell/haskell-gloss-rendering: Updated for version 1.13.1.1.
  6488. haskell/haskell-gloss: Fix build with ghc 8.10.
  6489. haskell/haskell-gloss: Updated for version 1.13.2.1.
  6490. haskell/haskell-graphviz: Fix build with ghc 8.10.
  6491. haskell/haskell-graphviz: Updated for version 2999.20.1.0.
  6492. haskell/haskell-hackage-security: Fix build with ghc 8.10.
  6493. haskell/haskell-hackage-security: Removed (ftbfs, unmaintained).
  6494. haskell/haskell-hackage-security: Updated for version 0.6.0.1.
  6495. haskell/haskell-haddock-library: Fix build with ghc 8.10.
  6496. haskell/haskell-haddock-library: Updated for version 1.10.0.
  6497. haskell/haskell-half: Fix build with ghc 8.10.
  6498. haskell/haskell-hashable: Fix build with ghc 8.10.
  6499. haskell/haskell-hashable: Updated for version 1.3.1.0.
  6500. haskell/haskell-hashable: Updated for version 1.4.0.1.
  6501. haskell/haskell-hashed-storage: Fix build with ghc 8.10.
  6502. haskell/haskell-hashed-storage: Removed (ftbfs, unmaintained).
  6503. haskell/haskell-haskell-src: Fix build with ghc 8.10.
  6504. haskell/haskell-haskell-src: Removed (ftbfs, unmaintained).
  6505. haskell/haskell-highlighting-kate: Fix build with ghc 8.10.
  6506. haskell/haskell-hinotify: Fix build with ghc 8.10.
  6507. haskell/haskell-hostname: Fix build with ghc 8.10.
  6508. haskell/haskell-hourglass: Fix build with ghc 8.10.
  6509. haskell/haskell-hpack: Fix build with ghc 8.10.
  6510. haskell/haskell-hpack: Fix dependencies.
  6511. haskell/haskell-hpack: Updated for version 0.34.6.
  6512. haskell/haskell-hslogger: Fix build with ghc 8.10.
  6513. haskell/haskell-hslogger: Removed (ftbfs, unmaintained).
  6514. haskell/haskell-hslua-aeson: Added (aeson data types for Lua).
  6515. haskell/haskell-hslua-classes: Added (Type classes for HsLua).
  6516. haskell/haskell-hslua-core: Added (lua bindings).
  6517. haskell/haskell-hslua-marshalling: Added (marshalling lua values).
  6518. haskell/haskell-hslua-module-path: Added (lua module for files).
  6519. haskell/haskell-hslua-module-system: Added (system module wrapper).
  6520. haskell/haskell-hslua-module-text: Fix build with ghc 8.10.
  6521. haskell/haskell-hslua-module-text: Updated for version 1.0.1.
  6522. haskell/haskell-hslua-module-version: Added (module for versions).
  6523. haskell/haskell-hslua-objectorientation: Added (OO tools for HsLua).
  6524. haskell/haskell-hslua-packaging: Added (Utils to build Lua modules).
  6525. haskell/haskell-hslua: Fix build with ghc 8.10.
  6526. haskell/haskell-hslua: Updated for version 2.1.0.
  6527. haskell/haskell-hsp: Fix build with ghc 8.10.
  6528. haskell/haskell-hspec-core: Fix build with ghc 8.10.
  6529. haskell/haskell-hspec-core: Fix dependencies.
  6530. haskell/haskell-hspec-core: Updated for version 2.9.4.
  6531. haskell/haskell-hspec-discover: Fix build with ghc 8.10.
  6532. haskell/haskell-hspec-discover: Updated for version 2.9.4.
  6533. haskell/haskell-hspec-expectations: Fix build with ghc 8.10.
  6534. haskell/haskell-hspec-expectations: Fix dependencies.
  6535. haskell/haskell-hspec-smallcheck: Fix build with ghc 8.10.
  6536. haskell/haskell-hspec-smallcheck: Fix dependencies.
  6537. haskell/haskell-hspec: Fix build with ghc 8.10.
  6538. haskell/haskell-hspec: Fix dependencies.
  6539. haskell/haskell-hspec: Updated for version 2.9.4.
  6540. haskell/haskell-html: Fix build with ghc 8.10.
  6541. haskell/haskell-http-api-data: Fix build with ghc 8.10.
  6542. haskell/haskell-http-api-data: Fix dependencies.
  6543. haskell/haskell-http-api-data: Removed (ftbfs, unmaintained).
  6544. haskell/haskell-http-client-tls: Fix build with ghc 8.10.
  6545. haskell/haskell-http-client-tls: Fix dependencies.
  6546. haskell/haskell-http-client-tls: Updated for version 0.3.6.1.
  6547. haskell/haskell-http-client: Fix build with ghc 8.10.
  6548. haskell/haskell-http-client: Updated for version 0.7.11.
  6549. haskell/haskell-http-conduit: Fix build with ghc 8.10.
  6550. haskell/haskell-http-conduit: Updated for version 2.3.8.
  6551. haskell/haskell-http-types: Fix build with ghc 8.10.
  6552. haskell/haskell-hxt-charproperties: Fix build with ghc 8.10.
  6553. haskell/haskell-hxt-regex-xmlschema: Fix build with ghc 8.10.
  6554. haskell/haskell-hxt-unicode: Fix build with ghc 8.10.
  6555. haskell/haskell-hxt: Fix build with ghc 8.10.
  6556. haskell/haskell-hxt: Fix dependencies.
  6557. haskell/haskell-hxt: Updated for version 9.3.1.22.
  6558. haskell/haskell-idna: Fix build with ghc 8.10.
  6559. haskell/haskell-indexed-traversable-instances: Added (more inst).
  6560. haskell/haskell-indexed-traversable: Added (indexed traversables).
  6561. haskell/haskell-infer-license: Fix build with ghc 8.10.
  6562. haskell/haskell-integer-logarithms: Fix build with ghc 8.10.
  6563. haskell/haskell-integer-logarithms: Updated for version 1.0.3.1.
  6564. haskell/haskell-iproute: Added (IP Routing Table).
  6565. haskell/haskell-ipynb: Added (Data structure for Jupyter notebooks).
  6566. haskell/haskell-iwlib: Fix build with ghc 8.10.
  6567. haskell/haskell-jira-wiki-markup: Added (Jira wiki markup).
  6568. haskell/haskell-json: Fix build with ghc 8.10.
  6569. haskell/haskell-json: Updated for version 0.10.
  6570. haskell/haskell-lcs: Fix build with ghc 8.10.
  6571. haskell/haskell-lexer: Fix build with ghc 8.10.
  6572. haskell/haskell-lexer: Updated for version 1.1.
  6573. haskell/haskell-libyaml: Fix build with ghc 8.10.
  6574. haskell/haskell-libyaml: Fix dependencies.
  6575. haskell/haskell-lifted-async: Fix build with ghc 8.10.
  6576. haskell/haskell-lifted-async: Updated for version 0.10.2.2.
  6577. haskell/haskell-lifted-base: Fix build with ghc 8.10.
  6578. haskell/haskell-lifted-base: Fix dependencies.
  6579. haskell/haskell-logict: Fix build with ghc 8.10.
  6580. haskell/haskell-logict: Updated for version 0.7.1.0.
  6581. haskell/haskell-lpeg: Added (Parsing Expression Grammars For Lua).
  6582. haskell/haskell-lua: Added (bindings to lua).
  6583. haskell/haskell-megaparsec: Fix build with ghc 8.10.
  6584. haskell/haskell-megaparsec: Fix dependencies.
  6585. haskell/haskell-megaparsec: Removed (ftbfs, no maintainer).
  6586. haskell/haskell-memory: Fix build with ghc 8.10.
  6587. haskell/haskell-memory: Updated for version 0.16.0.
  6588. haskell/haskell-microlens-mtl: Added (microlens support).
  6589. haskell/haskell-microlens-th: Fix build with ghc 8.10.
  6590. haskell/haskell-microlens-th: Updated for version 0.4.3.10.
  6591. haskell/haskell-microlens: Fix build with ghc 8.10.
  6592. haskell/haskell-microlens: Updated for version 0.4.12.0.
  6593. haskell/haskell-mime-types: Fix build with ghc 8.10.
  6594. haskell/haskell-mintty: Fix build with ghc 8.10.
  6595. haskell/haskell-mmap: Fix build with ghc 8.10.
  6596. haskell/haskell-mmorph: Fix build with ghc 8.10.
  6597. haskell/haskell-mmorph: Updated for version 1.2.0.
  6598. haskell/haskell-monad-control: Fix build with ghc 8.10.
  6599. haskell/haskell-monad-control: Fix dependencies.
  6600. haskell/haskell-monad-logger: Fix build with ghc 8.10.
  6601. haskell/haskell-monad-logger: Fix dependencies.
  6602. haskell/haskell-monad-logger: Updated for version 0.3.36.
  6603. haskell/haskell-monad-loops: Fix build with ghc 8.10.
  6604. haskell/haskell-monads-tf: Fix build with ghc 8.10.
  6605. haskell/haskell-mono-traversable: Fix build with ghc 8.10.
  6606. haskell/haskell-mono-traversable: Fix dependencies.
  6607. haskell/haskell-mtl: Added (Monad classes, using funct. deps).
  6608. haskell/haskell-multipart: Fix build with ghc 8.10.
  6609. haskell/haskell-multipart: Updated for version 0.2.1.
  6610. haskell/haskell-mustache: Fix build with ghc 8.10.
  6611. haskell/haskell-mustache: Fix dependencies.
  6612. haskell/haskell-mustache: Removed (ftbfs, no maintainer).
  6613. haskell/haskell-nats: Fix build with ghc 8.10.
  6614. haskell/haskell-neat-interpolation: Fix build with ghc 8.10.
  6615. haskell/haskell-neat-interpolation: Removed (ftbfs, no maintainer).
  6616. haskell/haskell-network-bsd: Added (POSIX network database).
  6617. haskell/haskell-network-uri: Fix build with ghc 8.10.
  6618. haskell/haskell-network: Fix build with ghc 8.10.
  6619. haskell/haskell-network: Updated for version 3.1.2.5.
  6620. haskell/haskell-old-locale: Fix build with ghc 8.10.
  6621. haskell/haskell-old-time: Fix build with ghc 8.10.
  6622. haskell/haskell-old-time: Fix dependencies.
  6623. haskell/haskell-open-browser: Fix build with ghc 8.10.
  6624. haskell/haskell-optparse-applicative: Fix build with ghc 8.10.
  6625. haskell/haskell-optparse-applicative: Updated for version 0.17.0.0.
  6626. haskell/haskell-optparse-simple: Fix build with ghc 8.10.
  6627. haskell/haskell-optparse-simple: Removed (ftbfs, unmaintained).
  6628. haskell/haskell-pandoc-lua-marshal: Added (pandoc types in lua).
  6629. haskell/haskell-pandoc-types: Fix build with ghc 8.10.
  6630. haskell/haskell-pandoc-types: Fix dependencies.
  6631. haskell/haskell-pandoc-types: Updated for version 1.22.1.
  6632. haskell/haskell-parallel: Fix build with ghc 8.10.
  6633. haskell/haskell-parallel: Removed (ftbfs, unmaintained).
  6634. haskell/haskell-parsec-numbers: Fix build with ghc 8.10.
  6635. haskell/haskell-parser-combinators: Fix build with ghc 8.10.
  6636. haskell/haskell-path-io: Fix build with ghc 8.10.
  6637. haskell/haskell-path-io: Fix dependencies.
  6638. haskell/haskell-path-io: Updated for version 1.6.3.
  6639. haskell/haskell-path-pieces: Fix build with ghc 8.10.
  6640. haskell/haskell-path: Fix build with ghc 8.10.
  6641. haskell/haskell-path: Fix dependencies.
  6642. haskell/haskell-path: Updated for version 0.9.2.
  6643. haskell/haskell-pem: Fix build with ghc 8.10.
  6644. haskell/haskell-pem: Fix dependencies.
  6645. haskell/haskell-persistent-sqlite: Fix build with ghc 8.10.
  6646. haskell/haskell-persistent-sqlite: Fix dependencies.
  6647. haskell/haskell-persistent-sqlite: Removed (ftbfs, unmaintained).
  6648. haskell/haskell-persistent-template: Fix build with ghc 8.10.
  6649. haskell/haskell-persistent-template: Fix dependencies.
  6650. haskell/haskell-persistent-template: Removed (ftbfs, unmaintained).
  6651. haskell/haskell-persistent: Fix build with ghc 8.10.
  6652. haskell/haskell-persistent: Fix dependencies.
  6653. haskell/haskell-persistent: Removed (ftbfs, unmaintained).
  6654. haskell/haskell-pipes: Fix build with ghc 8.10.
  6655. haskell/haskell-pipes: Fix dependencies.
  6656. haskell/haskell-pipes: Updated for version 4.3.16.
  6657. haskell/haskell-polyparse: Fix build with ghc 8.10.
  6658. haskell/haskell-polyparse: Updated for version 1.13.
  6659. haskell/haskell-pretty-show: Fix build with ghc 8.10.
  6660. haskell/haskell-pretty-show: Updated for version 1.10.
  6661. haskell/haskell-primitive: Fix build with ghc 8.10.
  6662. haskell/haskell-primitive: Updated for version 0.7.1.0.
  6663. haskell/haskell-profunctors: Fix build with ghc 8.10.
  6664. haskell/haskell-profunctors: Fix dependenies.
  6665. haskell/haskell-profunctors: Updated for version 5.6.2.
  6666. haskell/haskell-project-template: Fix build with ghc 8.10.
  6667. haskell/haskell-project-template: Fix dependencies.
  6668. haskell/haskell-publicsuffixlist: Fix build with ghc 8.10.
  6669. haskell/haskell-publicsuffixlist: Fix dependencies.
  6670. haskell/haskell-punycode: Fix build with ghc 8.10.
  6671. haskell/haskell-quickcheck-io: Fix build with ghc 8.10.
  6672. haskell/haskell-random: Fix build with ghc 8.10.
  6673. haskell/haskell-regex-applicative-text: Fix build with ghc 8.10.
  6674. haskell/haskell-regex-applicative: Fix build with ghc 8.10.
  6675. haskell/haskell-regex-base: Fix build with ghc 8.10.
  6676. haskell/haskell-regex-base: Updated for version 0.92.0.1.
  6677. haskell/haskell-regex-compat-tdfa: Fix build with ghc 8.10.
  6678. haskell/haskell-regex-compat-tdfa: Fix dependencies.
  6679. haskell/haskell-regex-compat: Fix build with ghc 8.10.
  6680. haskell/haskell-regex-pcre-builtin: Fix build with ghc 8.10.
  6681. haskell/haskell-regex-pcre-builtin: Updated for 0.95.2.3.8.44.
  6682. haskell/haskell-regex-pcre: Fix build with ghc 8.10.
  6683. haskell/haskell-regex-pcre: Updated for version 0.95.0.0.
  6684. haskell/haskell-regex-posix: Fix build with ghc 8.10.
  6685. haskell/haskell-regex-posix: Updated for version 0.96.0.1.
  6686. haskell/haskell-regex-tdfa: Fix build with ghc 8.10.
  6687. haskell/haskell-regex-tdfa: Updated for version 1.3.1.1.
  6688. haskell/haskell-resolv: Fix build with ghc 8.10.
  6689. haskell/haskell-resolv: Updated for version 0.1.2.0.
  6690. haskell/haskell-resource-pool: Fix build with ghc 8.10.
  6691. haskell/haskell-resource-pool: Fix dependencies.
  6692. haskell/haskell-resourcet: Fix build with ghc 8.10.
  6693. haskell/haskell-resourcet: Fix dependencies.
  6694. haskell/haskell-resourcet: Fix dependencies.
  6695. haskell/haskell-resourcet: Updated for version 1.2.4.3.
  6696. haskell/haskell-retry: Fix build with ghc 8.10.
  6697. haskell/haskell-retry: Fix dependencies.
  6698. haskell/haskell-retry: Updated for version 0.9.1.0.
  6699. haskell/haskell-rio: Fix build with ghc 8.10.
  6700. haskell/haskell-rio: Fix dependencies.
  6701. haskell/haskell-rio: Fix dependencies.
  6702. haskell/haskell-rio: Updated for version 0.1.21.0.
  6703. haskell/haskell-safe: Fix build with ghc 8.10.
  6704. haskell/haskell-safe: Updated for verion 0.3.19.
  6705. haskell/haskell-sandi: Fix build with ghc 8.10.
  6706. haskell/haskell-sandi: Fix dependencies.
  6707. haskell/haskell-sandi: Updated for version 0.5.
  6708. haskell/haskell-scientific: Fix build with ghc 8.10.
  6709. haskell/haskell-scientific: Updated for version 0.3.7.0.
  6710. haskell/haskell-securemem: Fix build with ghc 8.10.
  6711. haskell/haskell-semialign: Added (Align and Zip type-classes).
  6712. haskell/haskell-semigroupoids: Fix build with ghc 8.10.
  6713. haskell/haskell-semigroupoids: Fix dependencies.
  6714. haskell/haskell-semigroupoids: Updated for version 5.3.6.
  6715. haskell/haskell-semigroups: Fix build with ghc 8.10.
  6716. haskell/haskell-semigroups: Update dependencies.
  6717. haskell/haskell-setenv: Fix build with ghc 8.10.
  6718. haskell/haskell-setlocale: Fix build with ghc 8.10.
  6719. haskell/haskell-setlocale: Updated for version 1.0.0.10.
  6720. haskell/haskell-shelly: Fix build with ghc 8.10.
  6721. haskell/haskell-shelly: Fix dependencies.
  6722. haskell/haskell-shelly: Fix dependencies.
  6723. haskell/haskell-shelly: Updated for version 1.10.0.
  6724. haskell/haskell-silently: Fix build with ghc 8.10.
  6725. haskell/haskell-skylighting-core: Fix build with ghc 8.10.
  6726. haskell/haskell-skylighting-core: Fix dependencies.
  6727. haskell/haskell-skylighting-core: Updated for version 0.12.1.
  6728. haskell/haskell-skylighting-core: Updated for version 0.12.2.
  6729. haskell/haskell-skylighting: Fix build with ghc 8.10.
  6730. haskell/haskell-skylighting: Fix dependencies.
  6731. haskell/haskell-skylighting: Updated for version 0.12.2.
  6732. haskell/haskell-smallcheck: Fix build with ghc 8.10.
  6733. haskell/haskell-smallcheck: Updated for version 1.2.1.
  6734. haskell/haskell-socks: Fix build with ghc 8.10.
  6735. haskell/haskell-socks: Updated for version 0.6.1.
  6736. haskell/haskell-split: Fix build with ghc 8.10.
  6737. haskell/haskell-split: Updated for version 0.2.3.4.
  6738. haskell/haskell-splitmix: Added (Pure Haskell Splitmix).
  6739. haskell/haskell-stack: Fix build with ghc 8.10.
  6740. haskell/haskell-stack: Fix dependencies.
  6741. haskell/haskell-stack: Removed (ftbfs, unmaintained).
  6742. haskell/haskell-stm-chans: Fix build with ghc 8.10.
  6743. haskell/haskell-store-core: Fix build with ghc 8.10.
  6744. haskell/haskell-store-core: Updated for version 0.4.4.4.
  6745. haskell/haskell-store: Fix build with ghc 8.10.
  6746. haskell/haskell-store: Fix dependencies.
  6747. haskell/haskell-store: Removed (ftbfs, unmaintained).
  6748. haskell/haskell-store: Updated for version 0.7.14.
  6749. haskell/haskell-streaming-commons: Fix build with ghc 8.10.
  6750. haskell/haskell-strict: Fix build with ghc 8.10.
  6751. haskell/haskell-strict: Updated for version 0.4.0.1.
  6752. haskell/haskell-stringprep: Fix build with ghc 8.10.
  6753. haskell/haskell-stringsearch: Fix build with ghc 8.10.
  6754. haskell/haskell-stringsearch: Fix building on -current.
  6755. haskell/haskell-syb: Fix build with ghc 8.10.
  6756. haskell/haskell-syb: Updated for version 0.7.2.1.
  6757. haskell/haskell-system-fileio: Fix build with ghc 8.10.
  6758. haskell/haskell-system-filepath: Fix build with ghc 8.10.
  6759. haskell/haskell-tagged: Fix build with ghc 8.10.
  6760. haskell/haskell-tagged: Updated for version 0.8.6.1.
  6761. haskell/haskell-tagsoup: Fix build with ghc 8.10.
  6762. haskell/haskell-tar: Fix build with ghc 8.10.
  6763. haskell/haskell-tar: Updated for version 0.5.1.1.
  6764. haskell/haskell-temporary: Fix build with ghc 8.10.
  6765. haskell/haskell-temporary: Fix dependencies.
  6766. haskell/haskell-test-framework-hunit: Fix build with ghc 8.10.
  6767. haskell/haskell-test-framework-hunit: Fix dependencies.
  6768. haskell/haskell-test-framework-quickcheck2: Fix build with ghc 8.10.
  6769. haskell/haskell-test-framework-quickcheck2: Fix build.
  6770. haskell/haskell-test-framework: Fix build with ghc 8.10.
  6771. haskell/haskell-test-framework: Fix build.
  6772. haskell/haskell-texmath: Fix build with ghc 8.10.
  6773. haskell/haskell-texmath: Fix dependencies.
  6774. haskell/haskell-texmath: Updated for version 0.12.4.
  6775. haskell/haskell-text-conversions: Added (Safe conversions of text).
  6776. haskell/haskell-text-icu: Fix build with ghc 8.10.
  6777. haskell/haskell-text-icu: Updated for version 0.7.1.0.
  6778. haskell/haskell-text-metrics: Fix build with ghc 8.10.
  6779. haskell/haskell-text-metrics: Updated for version 0.3.2.
  6780. haskell/haskell-text-short: Added (Memory-efficient uni strings).
  6781. haskell/haskell-tf-random: Fix build with ghc 8.10.
  6782. haskell/haskell-th-abstraction: Fix build with ghc 8.10.
  6783. haskell/haskell-th-abstraction: Updated for version 0.4.3.0
  6784. haskell/haskell-th-compat: Added (Backward-compatible types).
  6785. haskell/haskell-th-expand-syns: Fix build with ghc 8.10.
  6786. haskell/haskell-th-expand-syns: Updated for version 0.4.9.0.
  6787. haskell/haskell-th-lift-instances: Fix build with ghc 8.10.
  6788. haskell/haskell-th-lift-instances: Updated for version 0.1.19.
  6789. haskell/haskell-th-lift: Fix build with ghc 8.10.
  6790. haskell/haskell-th-lift: Updated for version 0.8.2.
  6791. haskell/haskell-th-orphans: Fix build with ghc 8.10.
  6792. haskell/haskell-th-orphans: Fix dependencies.
  6793. haskell/haskell-th-orphans: Updated for version 0.13.12.
  6794. haskell/haskell-th-reify-many: Fix build with ghc 8.10.
  6795. haskell/haskell-th-reify-many: Updated for version 0.1.10.
  6796. haskell/haskell-th-utilities: Fix build with ghc 8.10.
  6797. haskell/haskell-th-utilities: Updated for version 0.2.4.3.
  6798. haskell/haskell-these: Added (An either-or-both data type).
  6799. haskell/haskell-time-compat: Added (Compatibility package for time).
  6800. haskell/haskell-time-locale-compat: Fix build with ghc 8.10.
  6801. haskell/haskell-tls: Fix build with ghc 8.10.
  6802. haskell/haskell-tls: Fix dependencies.
  6803. haskell/haskell-tls: Updated for version 1.5.6.
  6804. haskell/haskell-transformers-base: Fix build with ghc 8.10.
  6805. haskell/haskell-transformers-compat: Fix build with ghc 8.10.
  6806. haskell/haskell-type-equality: Added (Data.Type.Equality compat).
  6807. haskell/haskell-typed-process: Fix build with ghc 8.10.
  6808. haskell/haskell-typed-process: Updated for version 0.2.8.0.
  6809. haskell/haskell-unicode-collation: Added (Unicode Collation).
  6810. haskell/haskell-unicode-transforms: Fix build with ghc 8.10.
  6811. haskell/haskell-uniplate: Added (operatio writing help).
  6812. haskell/haskell-unix-compat: Fix build with ghc 8.10.
  6813. haskell/haskell-unix-time: Fix build with ghc 8.10.
  6814. haskell/haskell-unliftio-core: Fix build on -current.
  6815. haskell/haskell-unliftio-core: Fix build with ghc 8.10.
  6816. haskell/haskell-unliftio-core: Updated for version 0.2.0.1.
  6817. haskell/haskell-unliftio: Fix build with ghc 8.10.
  6818. haskell/haskell-unliftio: Updated for version 0.2.21.0.
  6819. haskell/haskell-unordered-containers: Fix build with ghc 8.10.
  6820. haskell/haskell-unordered-containers: Updated for version 0.2.13.0.
  6821. haskell/haskell-unordered-containers: Updated for version 0.2.16.0.
  6822. haskell/haskell-utf8-string: Fix build with ghc 8.10.
  6823. haskell/haskell-uuid-types: Fix build with ghc 8.10.
  6824. haskell/haskell-uuid-types: Updated for version 1.0.4.
  6825. haskell/haskell-uuid-types: Updated for version 1.0.5.
  6826. haskell/haskell-vector-algorithms: Fix build with ghc 8.10.
  6827. haskell/haskell-vector-algorithms: Fix dependencies.
  6828. haskell/haskell-vector-algorithms: Updated for version 0.8.0.4.
  6829. haskell/haskell-vector: Fix build with ghc 8.10.
  6830. haskell/haskell-vector: Updated for version 0.12.3.0.
  6831. haskell/haskell-void: Fix build with ghc 8.10.
  6832. haskell/haskell-void: Updated dependencies.
  6833. haskell/haskell-witherable: Added (filterable traversable).
  6834. haskell/haskell-wl-pprint-text: Fix build with ghc 8.10.
  6835. haskell/haskell-wl-pprint-text: Updated for version 1.2.0.2.
  6836. haskell/haskell-x509-store: Fix build with ghc 8.10.
  6837. haskell/haskell-x509-store: Fix dependencies.
  6838. haskell/haskell-x509-system: Fix build with ghc 8.10.
  6839. haskell/haskell-x509-system: Fix dependencies.
  6840. haskell/haskell-x509-validation: Fix build with ghc 8.10.
  6841. haskell/haskell-x509-validation: Fix dependencies.
  6842. haskell/haskell-x509: Fix build with ghc 8.10.
  6843. haskell/haskell-x509: Fix dependencies.
  6844. haskell/haskell-x509: Updated for version 1.7.5.
  6845. haskell/haskell-xml-conduit: Added (XML library).
  6846. haskell/haskell-xml-types: Added (Basic types for representing XML).
  6847. haskell/haskell-xml: Fix build with ghc 8.10.
  6848. haskell/haskell-yaml: Fix build with ghc 8.10.
  6849. haskell/haskell-yaml: Fix dependencies.
  6850. haskell/haskell-yaml: Updated for version 0.11.7.0.
  6851. haskell/haskell-zeromq4-haskell: Fix build with ghc 8.10.
  6852. haskell/haskell-zeromq4-haskell: Fix dependencies.
  6853. haskell/haskell-zip-archive: Fix build with ghc 8.10.
  6854. haskell/haskell-zlib: Fix build with ghc 8.10.
  6855. haskell/haskell-zlib: Updated for version 0.6.2.3.
  6856. haskell/hscolour: Fix build with ghc 8.10.
  6857. haskell/xmonad-contrib: Fix build with ghc 8.10.
  6858. haskell/xmonad-contrib: Updated for version 0.17.0.
  6859. ibraries/vsqlite++: Handle url-encoded filenames.
  6860. kildclient: Version updated. Added new dependency for gtkspell3. Removed perl-JSON dependency.
  6861. libraries/Atlas-C++: Disabled some warnings-as-errors.
  6862. libraries/Atlas-C++: Handle url-encoded filenames.
  6863. libraries/Atlas-C++: Remove .la files.
  6864. libraries/Atlas-C++: Use the C++14 standard.
  6865. libraries/Botan: Fix build.
  6866. libraries/CCfits: Fixed DOWNLOAD.
  6867. libraries/CCfits: Remove .la files.
  6868. libraries/CCfits: Update DEP.
  6869. libraries/CEGUI0.7: Added -fpermissive to the CXXFLAGS.
  6870. libraries/CEGUI0.7: Remove .la files.
  6871. libraries/CEGUI: Fix conflict with ogre.
  6872. libraries/CEGUI: Updated for version 0.8.7.
  6873. libraries/CoinMP: Remove .la files.
  6874. libraries/DevIL: Fix build on Slackware-current
  6875. libraries/DevIL: Use the C++14 standard.
  6876. libraries/DirectFB: Add a fix for the new man2html syntax.
  6877. libraries/DirectFB: Remove .la files.
  6878. libraries/DirectFB: Removed (old age, lack of use).
  6879. libraries/ETL: Remove .la files.
  6880. libraries/FreeImage: Updated for version 3.18.0.
  6881. libraries/FreeImage: Use the C++14 standard.
  6882. libraries/GLee: Remove .la files.
  6883. libraries/GtkD: Removed (not used by any slackbuild)
  6884. libraries/GtkD: Updated for version 3.8.5.
  6885. libraries/Impacket: Update DEP.
  6886. libraries/Ipopt: Remove .la files.
  6887. libraries/Jinja2: Removed (Added to Slackware).
  6888. libraries/Jinja2: Removed Python 2 support.
  6889. libraries/Jinja2: new maintainer
  6890. libraries/Kivy: Fixed dep info
  6891. libraries/LucenePlusPlus: Fixed dep info
  6892. libraries/MyGUI: Remove redundant doinst.sh.
  6893. libraries/MyGUI: Updated for version 3.4.1.
  6894. libraries/Nevow: Fixed python2-twisted dep.
  6895. libraries/ORBit2: Remove .la files.
  6896. libraries/ORBit2: s,i486,i586,g
  6897. libraries/OpenAL: Removed (added to Slackware).
  6898. libraries/OpenSceneGraph: Fix build when asio is installed.
  6899. libraries/OpenSceneGraph: Fix building against wxGTK3.
  6900. libraries/OpenSceneGraph: Move bins from /usr/share and fix libdir
  6901. libraries/OpenSceneGraph: Updated for version 3.6.5
  6902. libraries/PDCurses: Remove .la files.
  6903. libraries/PDFlib-Lite: Remove .la files.
  6904. libraries/PDFlib-Lite: misc cleanups
  6905. libraries/PyOpenGL: Updated for version 3.1.6, add python3 support.
  6906. libraries/PyQt5-legacy: Removed (isn't it obvious?) :-)
  6907. libraries/PyQt5: Removed (added to Slackware).
  6908. libraries/PyQwt: Removed (needs PyQt4).
  6909. libraries/QDarkStyle: Updated for version 3.0.2 (+new maintainer)
  6910. libraries/QScintilla-qt5: Removed (added to Slackware).
  6911. libraries/QUSB: Add the dependency qt4.
  6912. libraries/QUSB: Fix DEP.
  6913. libraries/QtUsb: Install in lib64 on x86_64.
  6914. libraries/SDL2: Removed (added to Slackware).
  6915. libraries/SDL2_image: Removed (added to Slackware).
  6916. libraries/SDL2_mixer: Removed (added to Slackware).
  6917. libraries/SDL2_net: Removed (added to Slackware).
  6918. libraries/SDL2_ttf: Removed (added to Slackware).
  6919. libraries/SDL_Pango: Remove .la files.
  6920. libraries/SDL_gfx: Remove .la files.
  6921. libraries/SDL_gfx: Remove .la files.
  6922. libraries/SDL_gfx: Remove .la files.
  6923. libraries/SDL_gfxL Updated for version 2.0.26.
  6924. libraries/SDL_kitchensink: Update DEP.
  6925. libraries/SDL_sound: Removed (added to Slackware).
  6926. libraries/SFGUI: Fix for gcc >= 11.x.
  6927. libraries/SFGUI: Updated for version 0.4.0.
  6928. libraries/SFGUI: Updated for version d37b377.
  6929. libraries/SFGUI: Use correct github URL.
  6930. libraries/SFML: Fixed dep info
  6931. libraries/SOPE: Remove .la files.
  6932. libraries/SPIRV-Headers: Removed (included in -current).
  6933. libraries/SQLObject: Fixed dep info
  6934. libraries/SimGear: Updated for version 2020.3.11.
  6935. libraries/SimGear: Updated for version 2020.3.8.
  6936. libraries/VTK: Fixed dep info
  6937. libraries/VTK: Patch for gcc >= 10.x.
  6938. libraries/VTK: Patch for qt-5.15.x.
  6939. libraries/VTK: Updated for version 9.0.1
  6940. libraries/VTK: Updated for version 9.0.3
  6941. libraries/VitaMTP: Remove .la files.
  6942. libraries/Vulkan-Headers: Removed (included in -current).
  6943. libraries/WebOb: Removed redundant doinst.sh.
  6944. libraries/ZODB3: Fix REQUIRES for python2.
  6945. libraries/activemq-cpp: Remove .la files.
  6946. libraries/activemq-cpp: Updated for version 3.9.5.
  6947. libraries/adns: Remove .la files.
  6948. libraries/afflib: Remove .la files.
  6949. libraries/afflib: Updated for version 3.7.19.
  6950. libraries/agg: Patch for the newer compiler.
  6951. libraries/agg: Remove .la files.
  6952. libraries/alglib: update copyright years
  6953. libraries/allegro4: Make eawpats a hard dep.
  6954. libraries/allegro4: Updated for version 4.4.3.1.
  6955. libraries/allegro: Removing workaround for 14.2, and updated for version 5.2.7.0
  6956. libraries/alure: Fix 15.0 build.
  6957. libraries/alure: Fix DOWNLOAD.
  6958. libraries/alure: Fix build with newer cmake.
  6959. libraries/alure: Fixed README re optional deps
  6960. libraries/alure: Fixed dep info
  6961. libraries/antlr4: Updated for version 4.9.2.
  6962. libraries/antlr4: Updated for version 4.9.3.
  6963. libraries/apiextractor: Add qt4 dependency.
  6964. libraries/appmenu-qt: Removed (orphaned - qt4 + ftbfs).
  6965. libraries/appstream-glib: Align with new template.
  6966. libraries/appstream-glib: Fix build.
  6967. libraries/appstream-glib: Fixed dep info
  6968. libraries/appstream-glib: Updated for version 0.7.18.
  6969. libraries/aqbanking: Updated for version 6.4.1.
  6970. libraries/argon2: Removed (added to Slackware).
  6971. libraries/argtable: Get rid of .la files.
  6972. libraries/asio: Remove .la files.
  6973. libraries/asio: Updated for version 1.18.2.
  6974. libraries/aspnetcore-runtime: Changed package name to aspnetcore-runtime-3.1 and updated for version 3.1.21.
  6975. libraries/assimp: Fix cmake support for 64-bit.
  6976. libraries/assimp: Remove redundant doinst.sh.
  6977. libraries/assimp: Updated for version 5.0.1.
  6978. libraries/atlas: Remove .la files.
  6979. libraries/atlas: Removed (use OpenBLAS).
  6980. libraries/audiere: Fixed dep info in README
  6981. libraries/audiere: Remove .la files.
  6982. libraries/audioread: Python3 Fixes.
  6983. libraries/avbin: Handle weird download filenames.
  6984. libraries/avr-libc: Remove .la files.
  6985. libraries/avr-libc: Updated for version 2.0.0.
  6986. libraries/bamf: Fixed dep info
  6987. libraries/bamf: Patch to add a disable warning configure option.
  6988. libraries/bamf: Remove .la files.
  6989. libraries/bamf: Update DEP.
  6990. libraries/barry: Remove .la files.
  6991. libraries/barry: Use systemwide dir for bash completion files
  6992. libraries/bcdoc: Fixed dep info
  6993. libraries/bctoolbox: Fix DOWNLOAD.
  6994. libraries/beignet: Fixed dep info in README
  6995. libraries/beignet: Removed (incompatible with the newer llvm).
  6996. libraries/beignet: Updated for version 1.3.2, fix for llvm >= 6.x.
  6997. libraries/belle-sip: Fix DOWNLOAD.
  6998. libraries/belle-sip: Patch for gcc >= 9.x.
  6999. libraries/belle-sip: Remove .la files.
  7000. libraries/blas: Updated for version 3.10.0
  7001. libraries/bluez-alsa: Added rc script
  7002. libraries/bluez-alsa: Remove .la files.
  7003. libraries/bluez-alsa: Updated for version 3.1.0.
  7004. libraries/boolstuff: Fix DOWNLOAD.
  7005. libraries/boolstuff: Remove .la files.
  7006. libraries/boolstuff: Use the C++14 standard.
  7007. libraries/botocore: Update DEP.
  7008. libraries/buddy: Remove .la files.
  7009. libraries/bullet: Updated for version 3.17.
  7010. libraries/bullet: Updated for version 3.21.
  7011. libraries/bullet: Use double precision.
  7012. libraries/bwidget: Removed redundant doinst.sh.
  7013. libraries/bzrtp: Remove .la files.
  7014. libraries/bzrtp: Updated DOWNLOAD.
  7015. libraries/c++-gtk-utils: Handle url-encoded filenames.
  7016. libraries/c++-gtk-utils: Remove .la files.
  7017. libraries/c-ares: Removed (added to Slackware).
  7018. libraries/cal3d: Remove .la files.
  7019. libraries/cal3d: Removed redundant doinst.sh
  7020. libraries/capnproto: Remove .la files.
  7021. libraries/capnproto: Updated for version 0.9.0.
  7022. libraries/ccrtp: Remove .la files.
  7023. libraries/ccrtp: Updated for version 2.1.2.
  7024. libraries/cdk: Remove .la files.
  7025. libraries/cffi: Only build for python2.
  7026. libraries/cffi: Updated for version 1.13.2.
  7027. libraries/cfitsio: Removed (added to Slackware).
  7028. libraries/cgicc: Remove .la files.
  7029. libraries/cgicc: Updated for version 3.2.19.
  7030. libraries/cln: Remove .la files.
  7031. libraries/compface: Remove .la files.
  7032. libraries/compiz-bcomp: Updated for version 0.8.18.
  7033. libraries/compiz-bcop: Remove .la files.
  7034. libraries/compiz-plugins-experimental: Remove .la files.
  7035. libraries/compiz-plugins-experimental: Updated for version 0.8.18.
  7036. libraries/compiz-plugins-extra: Remove .la files.
  7037. libraries/compiz-plugins-extra: Updated for version 0.8.18.
  7038. libraries/compiz-plugins-main: Remove .la files.
  7039. libraries/compiz-plugins-main: Updated for version 0.8.18.
  7040. libraries/compizconfig-python: Remove .la files.
  7041. libraries/compizconfig-python: Updated for version 0.8.18.
  7042. libraries/configobj: Remove template comment.
  7043. libraries/configobj: Update DEP.
  7044. libraries/confuse: Remove .la files.
  7045. libraries/cpp-netlib: Updated for version 0.13.0.
  7046. libraries/cppo: Added (C-style preprocessor for OCaml).
  7047. libraries/cppo: Removed (ftb).
  7048. libraries/cpprestsdk: Fix conflict with libwebsocketpp.
  7049. libraries/cpprestsdk: Updated for version 20201210_eb6801f.
  7050. libraries/cracklib: Removed (added to Slackware).
  7051. libraries/cryptopp: Removed (added to Slackware).
  7052. libraries/ctemplate: Fix build on current.
  7053. libraries/cuneiform: Add the missing patch for gcc.
  7054. libraries/cuneiform: Patch for the newer gccs.
  7055. libraries/cuneiform: Patch from Debian to avoid strings.h collision.
  7056. libraries/cyrus-sasl-xoauth2: Remove .la files.
  7057. libraries/daq: Remove .la files.
  7058. libraries/dav1d: Fixed dep info
  7059. libraries/dav1d: Support alternatives for ninja
  7060. libraries/dav1d: Updated for version 0.8.2.
  7061. libraries/dav1d: Updated for version 0.9.2.
  7062. libraries/db46: Removed (not needed, and conflicts with Slack db48)
  7063. libraries/db46: Use libtirpc.
  7064. libraries/dbus-cpp: Disable some warnings-as-errors.
  7065. libraries/dbus-sharp-glib: Remove .la files.
  7066. libraries/dbus-sharp-glib: Removed (dbus-sharp ftbfs)
  7067. libraries/dbus-sharp: Remove .la files.
  7068. libraries/dbus-sharp: Removed (ftbfs)
  7069. libraries/digimend-kernel-drivers: Allow building for other kernels.
  7070. libraries/discogs-client: Update DEP.
  7071. libraries/dlib: Update README.
  7072. libraries/dotconf: Removed (added to Slackware).
  7073. libraries/dropbox-python: Update DEP.
  7074. libraries/dumb: Update DEP.
  7075. libraries/edelib: Fixed DOWNLOAD.
  7076. libraries/edelib: Remove .la files.
  7077. libraries/efivar: Removed (added to Slackware).
  7078. libraries/efl: Align with new template.
  7079. libraries/efl: Fixed dep info
  7080. libraries/efl: Fixed ninja build.
  7081. libraries/efl: Updated for version 1.24.4, no scim (use ibus).
  7082. libraries/efl: Updated for version 1.26.1.
  7083. libraries/efl: Updated icon cache in doinst.sh.
  7084. libraries/enca: Remove .la files.
  7085. libraries/enchant2: Removed (added to Slackware).
  7086. libraries/enchant2: Updated for version 2.2.14.
  7087. libraries/enum34: Removed (added to Slackware as python-enum34).
  7088. libraries/eris: Remove .la files.
  7089. libraries/eris: Use the C++14 standard.
  7090. libraries/evernote-python: Fix python2-oauth dep.
  7091. libraries/exempi: Updated for version 2.5.2.
  7092. libraries/exempi: Updated for version 2.5.2.
  7093. libraries/facebook-python: Update DEP.
  7094. libraries/fcgi: Remove .la files.
  7095. libraries/ffms2: Update DEP.
  7096. libraries/ffms2: Updated for version 2.40.
  7097. libraries/fifechan: Fix installing to lib64.
  7098. libraries/fifechan: Update DEP.
  7099. libraries/fifechan: Updated for version 0.1.5.
  7100. libraries/flashplugin-lahf-fix: Removed.
  7101. libraries/flatbuffers: Updated for version 1.12.0.
  7102. libraries/flatzebra: Updated for version 0.1.7.
  7103. libraries/flatzebra: Use the C++14 standard.
  7104. libraries/flickcurl: Remove .la files.
  7105. libraries/flint: Remove .la files.
  7106. libraries/fltk: Remove .la files.
  7107. libraries/fltk: Updated for version 1.3.8.
  7108. libraries/fmodapi: Remove template comment.
  7109. libraries/folly: Fixed dep info
  7110. libraries/folly: Removed (orphaned and FTB).
  7111. libraries/fox-toolkit-devel: Remove .la files.
  7112. libraries/fox-toolkit-devel: Updated for version 1.7.77.
  7113. libraries/fox-toolkit: Remove .la files.
  7114. libraries/fox-toolkit: Updated for version 1.6.57.
  7115. libraries/freealut: Fixed dep info
  7116. libraries/freealut: Remove .la files.
  7117. libraries/freealut: Remove .la files.
  7118. libraries/freexl: Remove .la files.
  7119. libraries/frei0r: Removed (added to Slackware as frei0r-plugins).
  7120. libraries/ftgl: New maintainer, optional API doc.
  7121. libraries/fuzzylite: Removed redundant doinst.sh
  7122. libraries/fuzzylite: Updated for version 6.0.
  7123. libraries/gallerize: Removed Python 2 support.
  7124. libraries/gallerize: Update DEP.
  7125. libraries/gallerize: Updated for version 0.4.
  7126. libraries/ganv: Updated for version 1.8.0.
  7127. libraries/gavl: Remove .la files.
  7128. libraries/gazebo: Removed (no qt4-webkit available).
  7129. libraries/gcab: Fixed dep info
  7130. libraries/gcab: Remove .la files.
  7131. libraries/gconfmm: Fix double patch.
  7132. libraries/gconfmm: Patch fo 15.0
  7133. libraries/gconfmm: Remove .la files.
  7134. libraries/gconfmm: add patch to fix build
  7135. libraries/gdl: Added (GNOME Docking Library).
  7136. libraries/gdl: Remove .la files.
  7137. libraries/gdl: Removed.
  7138. libraries/gdl: Updated for version 3.34.0.
  7139. libraries/gevent: Updated for version 21.1.2.
  7140. libraries/gevent: Updated for version 21.8.0.
  7141. libraries/gf2x: Remove .la files.
  7142. libraries/gf2x: Updated for new project home
  7143. libraries/giblib: Remove .la files.
  7144. libraries/girara: Align with new template.
  7145. libraries/girara: Fix README.
  7146. libraries/girara: Fixed dep info
  7147. libraries/girara: Fixed ninja build.
  7148. libraries/girara: Updated for version 0.3.6.
  7149. libraries/glfw: Removed (no dependees, conflicts with glfw3).
  7150. libraries/glktermw: Remove template comment.
  7151. libraries/glog: Remove .la files.
  7152. libraries/glog: Use the C++14 standard.
  7153. libraries/gloox: Remove .la files.
  7154. libraries/gmtk: Remove .la files.
  7155. libraries/gnet: Remove .la files.
  7156. libraries/gnome-desktop: Support alternatives for ninja
  7157. libraries/gnome-desktop: Update DEP.
  7158. libraries/gnome-desktop: Updated for version 41.1
  7159. libraries/gnome-desktop: Updated to version 40.2
  7160. libraries/gnome-media: Add gstreamer0 dependency.
  7161. libraries/gnome-media: Remove .la files.
  7162. libraries/gnome-python2-gconf: Removed (nothing uses this)
  7163. libraries/gnome-sharp: Remove .la files.
  7164. libraries/gnome-vfsmm: Remove .la files.
  7165. libraries/gnonlin: Removed (no dependees).
  7166. libraries/goffice0.8: Disable some warnings-as-errors.
  7167. libraries/goffice0.8: Misc cleanups for Slackware 15.0
  7168. libraries/goffice0.8: Remove .la files.
  7169. libraries/goffice: Remove .la files.
  7170. libraries/goffice: Updated for version 0.10.49.
  7171. libraries/google-fruit: Updated for version 3.6.0.
  7172. libraries/gperftools: Remove .la files.
  7173. libraries/gperftools: Updated for version 2.9.1.
  7174. libraries/grantlee-qt5: Removed (added to Slackware)
  7175. libraries/greenlet: Fix MD5SUM.
  7176. libraries/greenlet: Updated for version 0.4.17.
  7177. libraries/greenlet: Updated for version 1.1.0.
  7178. libraries/greenlet: Updated for version 1.1.2.
  7179. libraries/grpc: Fixed dep info
  7180. libraries/grx: Remove .la files.
  7181. libraries/gsnmp: Remove .la files.
  7182. libraries/gsound: Added (library for playing system sounds).
  7183. libraries/gspell: Added (spell checking library)
  7184. libraries/gspell: Remove .la files.
  7185. libraries/gspell: Support PRINT_PACKAGE_NAME.
  7186. libraries/gssdp: Align with new template.
  7187. libraries/gssdp: Build with sniffer.
  7188. libraries/gssdp: Fixed dep info in README
  7189. libraries/gssdp: Support alternatives for ninja
  7190. libraries/gssdp: Updated for version 1.2.3.
  7191. libraries/gssdp: Updated for version 1.3.0.
  7192. libraries/gssdp: Updated for version 1.3.1.
  7193. libraries/gssdp: Updated for version 1.4.0.1.
  7194. libraries/gst-editing-services: Added (editor creating lib).
  7195. libraries/gstreamer-editing-services: Compress man pages.
  7196. libraries/gstreamer-editing-services: Remove .la files.
  7197. libraries/gstreamer-editing-services: Removed.
  7198. libraries/gstreamer-editing-services: Updated for version 1.14.0.
  7199. libraries/gstreamermm: Patch for gcc >= 7.x.
  7200. libraries/gstreamermm: Remove .la files.
  7201. libraries/gstreamermm: Updated for version 1.10.0.
  7202. libraries/gtk-aurora-engine: Remove .la files.
  7203. libraries/gtk-qt-engine: Removed (abandoned ftbfs).
  7204. libraries/gtk-sharp: Fix building against newer monos.
  7205. libraries/gtk-sharp: Remove .la files.
  7206. libraries/gtkdatabox: Remove .la files.
  7207. libraries/gtkdatabox: Revert duplicate .la file removal
  7208. libraries/gtkdatabox: Updated for version 1.0.0
  7209. libraries/gtkdatabox: Updated icon cache.
  7210. libraries/gtkglarea: Remove .la files.
  7211. libraries/gtkglarea: Revert duplicate .la file removal
  7212. libraries/gtkglext: Fixups for Slackware 15.0
  7213. libraries/gtkglext: Patch for a conflicting definition.
  7214. libraries/gtkglext: Remove .la files.
  7215. libraries/gtkglextmm: Remove .la files.
  7216. libraries/gtkhotkey: Removed (no maintainer)
  7217. libraries/gtkhtml: Patched for the newer enchant.
  7218. libraries/gtkhtml: Remove .la files.
  7219. libraries/gtkimageview: Remove .la files.
  7220. libraries/gtkmm-utils: Remove .la files.
  7221. libraries/gtksourceview3: Removed (added to Slackware).
  7222. libraries/gtksourceview4: Added (framework for source code editing).
  7223. libraries/gtksourceview4: Fixed dep info
  7224. libraries/gtksourceview4: Support alternatives for ninja
  7225. libraries/gtksourceview4: Updated for version 4.8.1.
  7226. libraries/gtksourceview: Remove .la files.
  7227. libraries/gtkspell3: Fixed dep info in README
  7228. libraries/gtkspell3: Fixed dep info.
  7229. libraries/gtkspell3: Remove la file.
  7230. libraries/gts: Remove .la files.
  7231. libraries/guichan: Remove .la files.
  7232. libraries/gumbo-parser: Remove .la files.
  7233. libraries/gupnp: Align with new template.
  7234. libraries/gupnp: Compress manpages.
  7235. libraries/gupnp: Fix for no man pages.
  7236. libraries/gupnp: Support alternatives for ninja
  7237. libraries/gupnp: Updated for version 1.2.4.
  7238. libraries/gupnp: Updated for version 1.2.6.
  7239. libraries/gupnp: Updated for version 1.2.7.
  7240. libraries/gupnp: Updated for version 1.3.0.
  7241. libraries/gupnp: Updated for version 1.3.1.
  7242. libraries/gupnp: Updated for version 1.4.0.
  7243. libraries/gupnp: Updated for version 1.4.1.
  7244. libraries/gupnp: Updated for version 1.4.3.
  7245. libraries/gwenhywfar: Build qt5 gui.
  7246. libraries/gwenhywfar: Update for version 5.8.2.
  7247. libraries/hdf5: Remove .la files.
  7248. libraries/hdf: Force use of libtirpc in the CFLAGS.
  7249. libraries/hdf: Remove .la files.
  7250. libraries/hidapi: FIx building with the newer autotools.
  7251. libraries/hidapi: Updated for version 0.10.1.
  7252. libraries/hinnant-date: Removed (included in sqlpp11).
  7253. libraries/hoel: updated for version 1.4.18
  7254. libraries/hpx: Forced c++11 and added a patch for gcc >= 7.x.
  7255. libraries/hpx: Removed (orphaned and FTB).
  7256. libraries/hpx: Updated for version 1.7.1.
  7257. libraries/html5lib: Fix python3-webencodings dep name.
  7258. libraries/html5lib: Update DEP.
  7259. libraries/htmlcxx: Remove .la files.
  7260. libraries/htmlcxx: Use the C++14 standard.
  7261. libraries/htslib: Remove .la files.
  7262. libraries/htslib: Update to version 1.15
  7263. libraries/htslib: Updated for version 1.13.
  7264. libraries/htslib: Updated to version 1.14
  7265. libraries/http-parser: Disabled some warnings-as-errors.
  7266. libraries/hug: Removed (no maintainer).
  7267. libraries/hyperscan: Remove fix unnecessary for current.
  7268. libraries/hyphen: Removed (added to Slackware).
  7269. libraries/id3lib: Removed (added to Slackware).
  7270. libraries/iddawc: updated for version 1.0.0
  7271. libraries/iddawc: updated for version 1.1.1
  7272. libraries/ignition-transport: REQUIRES protobuf => protobuf3.
  7273. libraries/iksemel: Remove .la files.
  7274. libraries/imlib2: Updated for version 1.7.2.
  7275. libraries/imlib2: Updated for version 1.7.3.
  7276. libraries/imlib2: Updated for version 1.7.4.
  7277. libraries/imlib2_loaders: Updated to version 1.7.1
  7278. libraries/imlib: Remove .la files.
  7279. libraries/iniparser: Fix support for PRINT_PACKAGE_NAME
  7280. libraries/irrlicht: Remove a sysctl.h include.
  7281. libraries/isl: Removed (added to Slackware).
  7282. libraries/isodate: Add python3 support.
  7283. libraries/isodate: Update DEP.
  7284. libraries/itcl: Remove .la files.
  7285. libraries/jai-imageio: Removed (No maintainer).
  7286. libraries/jai: Removed (No maintainer).
  7287. libraries/jansson: Removed (added to Slackware).
  7288. libraries/jbig2dec: Remove .la file.
  7289. libraries/jbig2enc: Remove .la file.
  7290. libraries/jcal: Remove .la files.
  7291. libraries/jreen: Add qt4 dependency.
  7292. libraries/json-glib: Removed (added to Slackware).
  7293. libraries/json-parser: Remove .la files.
  7294. libraries/jsoncpp: Fixed dep info
  7295. libraries/jsoncpp: Support alternatives for ninja
  7296. libraries/keybinder: Added (gtk+2 keyboard shortcut library).
  7297. libraries/keybinder: Remove .la files.
  7298. libraries/lablgtk: Added the dependency ocaml-findlib.
  7299. libraries/lablgtk: Remove .la files.
  7300. libraries/lablgtk: Updated for version 2.18.12.
  7301. libraries/lablgtk: Updated for version 2.18.8, changed maintainer.
  7302. libraries/lame: Removed (added to Slackware).
  7303. libraries/lapack-atlas: Removed (Along with atlas).
  7304. libraries/lapack: Updated for version 3.10.0
  7305. libraries/lastfmlib: Removed
  7306. libraries/lastfmlib: Updated maintainer email
  7307. libraries/lensfun: Removed (added to Slackware).
  7308. libraries/leptonica: Updated for version 1.81.1.
  7309. libraries/leptonica: Updated for version 1.82.0.
  7310. libraries/libAfterImage: Fix make command.
  7311. libraries/libAfterImage: Remove .la files.
  7312. libraries/libEMF: Remove .la files.
  7313. libraries/libEMF: i486 => i586.
  7314. libraries/libaacs: Remove .la files.
  7315. libraries/libaacs: Updated for version 0.11.0.
  7316. libraries/libaaio: Remove .la files.
  7317. libraries/libaal: Remove .la files.
  7318. libraries/libabw: Remove .la files.
  7319. libraries/libaec: Updated for version 1.0.6
  7320. libraries/libaec: updated for version 1.0.5
  7321. libraries/libagentcrypt: Fixed dep info
  7322. libraries/libagentcrypt: Remove .la files.
  7323. libraries/libalkimia: Removed (added to Slackware as alkimia).
  7324. libraries/libantlr3c: Remove .la files.
  7325. libraries/libaosd: Remove .la files.
  7326. libraries/libappindicator3: Removed (shipped with Slackware 15.0)
  7327. libraries/libart-lgpl: Added (graphics library).
  7328. libraries/libart-lgpl: Remove .la files.
  7329. libraries/libasr: Remove .la files.
  7330. libraries/libass: Remove la files.
  7331. libraries/libast: Remove .la files.
  7332. libraries/libaudclient: Remove .la files.
  7333. libraries/libavc1394: Remove .la files.
  7334. libraries/libb64: Fix 15.0 build.
  7335. libraries/libbde: Fix DOWNLOAD.
  7336. libraries/libbde: Remove .la files.
  7337. libraries/libbdplus: Remove .la files.
  7338. libraries/libbluray: Removed (added to Slackware).
  7339. libraries/libbonobo: Remove .la files.
  7340. libraries/libbonoboui: Remove .la files.
  7341. libraries/libbsd: Remove la file.
  7342. libraries/libbson: Removed (no longer needed)
  7343. libraries/libbtbb: Fix tarball handling.
  7344. libraries/libburn: Removed (added to Slackware).
  7345. libraries/libc++: Removed (added to Slackware as part of llvm).
  7346. libraries/libcacard: Remove .la files.
  7347. libraries/libcangjie: Remove .la files.
  7348. libraries/libcapsimage: Remove .la files.
  7349. libraries/libcapsimage: Remove template comment.
  7350. libraries/libcbor: updated for version 0.9.0
  7351. libraries/libcdaudio: Remove .la files.
  7352. libraries/libcdr: Remove .la files.
  7353. libraries/libchewing: Remove .la files.
  7354. libraries/libcifpp: Updated for version 3.0.0.
  7355. libraries/libcifpp: added. Dependency for mkDSSP
  7356. libraries/libcitadel: Remove .la files.
  7357. libraries/libclaw: Patches for the newer gcc.
  7358. libraries/libclaw: Removed redundant doinst.sh.
  7359. libraries/libcli: Updated for version 1.10.7
  7360. libraries/libcli: Updated maintainer email
  7361. libraries/libcmis: Remove .la files.
  7362. libraries/libcoap: Remove .la files.
  7363. libraries/libcompizconfig: Remove .la files.
  7364. libraries/libcompizconfig: Updated for version 0.8.18.
  7365. libraries/libconfig: Remove .la files.
  7366. libraries/libcpuid: Remove .la files.
  7367. libraries/libcryptui: Remove .la files.
  7368. libraries/libcsv: version update, new maintainer.
  7369. libraries/libctl: Remove .la files.
  7370. libraries/libcue: Removed (added to Slackware).
  7371. libraries/libcuefile: Specify cmake's path to source, cleanups.
  7372. libraries/libdaemon: Remove la file.
  7373. libraries/libdatrie: Fix DOWNLOAD.
  7374. libraries/libdatrie: Remove .la files.
  7375. libraries/libdbh2: Remove .la files.
  7376. libraries/libdbi-drivers: Remove .la files.
  7377. libraries/libdbi: Remove .la files.
  7378. libraries/libdbus-c++: Don't install .la files
  7379. libraries/libdbus-c++: Updated for version 20160924_e3455d2.
  7380. libraries/libdbus-c++: Updated maintainer email
  7381. libraries/libdbusmenu: Removed (added to Slackware).
  7382. libraries/libdc1394: Remove .la files.
  7383. libraries/libdca: New maintainer. Updated for version 0.0.7
  7384. libraries/libdca: Remove .la files.
  7385. libraries/libde265: Remove .la files.
  7386. libraries/libdesktop-agnostic: Fixed dep info
  7387. libraries/libdesktop-agnostic: Removed (no active maintainer)
  7388. libraries/libdispatch: Fix conflict with libkqueue.
  7389. libraries/libdivecomputer: Remove .la files.
  7390. libraries/libdmapsharing: Remove .la files.
  7391. libraries/libdmtx: Removed (added to Slackware).
  7392. libraries/libdockapp: Updated for version 0.7.3.
  7393. libraries/libdsk: Remove .la files.
  7394. libraries/libdsk: Updated for version 1.5.18.
  7395. libraries/libdv: Don't install *.la files
  7396. libraries/libdv: Updated maintainer email
  7397. libraries/libdvbcsa: Remove .la files.
  7398. libraries/libdvbpsi: Remove .la files.
  7399. libraries/libdvbpsi: Updated for version 1.3.3.
  7400. libraries/libdvdcss: Remove .la files.
  7401. libraries/libdvdcss: Updated for version 1.4.3.
  7402. libraries/libdwarf: Remove .la files.
  7403. libraries/libdynamite: Remove .la files.
  7404. libraries/libe-book: Remove .la files.
  7405. libraries/libeatmydata: Remove .la files.
  7406. libraries/libebml: Added shared lib build to cmake.
  7407. libraries/libebml: Updated for version 1.4.2.
  7408. libraries/libechonest: Remove qt4 support (breaks build).
  7409. libraries/libechonest: Removed.
  7410. libraries/libedit: Removed (added to Slackware).
  7411. libraries/libeditline: Added version 1.17.1.
  7412. libraries/libeditline: Remove .la files.
  7413. libraries/libee: Remove .la files.
  7414. libraries/libeot: Remove .la files.
  7415. libraries/libepubgen: Remove .la files.
  7416. libraries/libesedb: Fix DOWNLOAD.
  7417. libraries/libesedb: Remove .la files.
  7418. libraries/libesmtp: Remove .la files.
  7419. libraries/libestr: Remove .la files.
  7420. libraries/libetonyek: Remove .la files.
  7421. libraries/libetonyek: Updated for version 0.1.10.
  7422. libraries/libetpan: Remove .la files.
  7423. libraries/libetpan: Updated for version 1.9.4.
  7424. libraries/libev: Remove .la files.
  7425. libraries/libevdevplus: Added (C++ event device lib).
  7426. libraries/libevhtp: Updated for version 1.2.16.
  7427. libraries/libevt: Fix DOWNLOAD.
  7428. libraries/libevt: Remove .la files.
  7429. libraries/libevtx: Fix DOWNLOAD.
  7430. libraries/libevtx: Remove .la files.
  7431. libraries/libewf: Enable python3 modules.
  7432. libraries/libewf: Remove .la files.
  7433. libraries/libewf: Updated for version 20140812.
  7434. libraries/libexe: Fix DOWNLOAD.
  7435. libraries/libexe: Remove .la files.
  7436. libraries/libexif-gtk: Remove .la files.
  7437. libraries/libexttextcat: Remove .la files.
  7438. libraries/libfastjson: Remove .la files.
  7439. libraries/libfdk-aac: Remove la file.
  7440. libraries/libfdk-aac: Updated for version 2.0.2
  7441. libraries/libffado: Cleanups, add the new dep libdbus-c++.
  7442. libraries/libffado: Removed icon cache update.
  7443. libraries/libffado: Updated for version 2.4.4, point to python3.
  7444. libraries/libffado: Updated maintainer email
  7445. libraries/libffado: Various script cleanup
  7446. libraries/libfido2: Add udev rule.
  7447. libraries/libfido2: Added (Yubico 2UF C library).
  7448. libraries/libfido2: Updated for versino 1.9.0.
  7449. libraries/libfido2: Updated for version 1.10.0.
  7450. libraries/libfido2: Updated for version 1.8.0.
  7451. libraries/libfilezilla: Updated for version 0.26.0.
  7452. libraries/libfilezilla: Updated for version 0.27.1.
  7453. libraries/libfilezilla: Updated for version 0.28.0.
  7454. libraries/libfilezilla: Updated for version 0.30.0.
  7455. libraries/libfilezilla: Updated for version 0.31.0.
  7456. libraries/libfilezilla: Updated for version 0.31.1.
  7457. libraries/libfilezilla: Updated for version 0.32.0.
  7458. libraries/libfilezilla: Updated for version 0.34.0.
  7459. libraries/libfilezilla: Updated for version 0.34.2.
  7460. libraries/libfilezilla: Updated for version 0.35.0.
  7461. libraries/libfilezilla: Updated for version 0.36.0.
  7462. libraries/libfilteraudio: Fixed dep info
  7463. libraries/libfishsound: Fix README, remove template comment.
  7464. libraries/libfishsound: Fixed dep info in README
  7465. libraries/libfixposix: Remove .la files.
  7466. libraries/libfm-extra: Remove .la files.
  7467. libraries/libfm: Fixed dep info in README
  7468. libraries/libfm: Remove .la files.
  7469. libraries/libfprint: Updated for version 1.94.2.
  7470. libraries/libfreehand: Remove .la files.
  7471. libraries/libfsapfs: Fix DOWNLOAD.
  7472. libraries/libfsapfs: Remove .la files.
  7473. libraries/libfsntfs: Fix DOWNLOAD.
  7474. libraries/libfsntfs: Remove .la files.
  7475. libraries/libftdi1: Removed redundant doinst.sh.
  7476. libraries/libftdi1: Updated for version 1.5.
  7477. libraries/libftdi: Remove .la files.
  7478. libraries/libfvde: Fix DOWNLOAD.
  7479. libraries/libfvde: Remove .la files.
  7480. libraries/libfwnt: Fix download URL.
  7481. libraries/libfwsi: Fix DOWNLOAD.
  7482. libraries/libfwsi: Remove .la files.
  7483. libraries/libg15: Remove .la files.
  7484. libraries/libg15render: Remove .la files.
  7485. libraries/libg3d: Disable gtk-doc building.
  7486. libraries/libg3d: Remove .la files.
  7487. libraries/libgadu: Remove .la files.
  7488. libraries/libgaiagraphics: Removed (obsoleted upstream).
  7489. libraries/libgaminggear: Patch to correctly find the newer harfbuzz.
  7490. libraries/libgcrypt15: Removed (dependency for brackets).
  7491. libraries/libgda: Fixed dep info
  7492. libraries/libgda: Removed.
  7493. libraries/libgdiplus: Updated for version 6.0.5.
  7494. libraries/libgee1: Fixed dep info
  7495. libraries/libgee1: Remove .la files.
  7496. libraries/libgee: Removed (added to Slackware).
  7497. libraries/libgexiv2: Removed (added to Slackware).
  7498. libraries/libgig: Remove .la files.
  7499. libraries/libgig: Updated for version 4.3.0.
  7500. libraries/libgit2-glib: Align with new template.
  7501. libraries/libgit2-glib: Fixed dep info
  7502. libraries/libgit2-glib: Fixed ninja build.
  7503. libraries/libgksu: Avoid using the newer gtk-doc.
  7504. libraries/libgksu: Fixed doinst.sh.
  7505. libraries/libgksu: Remove .la files.
  7506. libraries/libgksu: Update DEP.
  7507. libraries/libglademm: Remove .la files.
  7508. libraries/libgme: Updated for version 0.6.3.
  7509. libraries/libgnome: Fix source files encoding.
  7510. libraries/libgnome: Remove .la files.
  7511. libraries/libgnomecanvas: Added the new dependency libart-lgpl.
  7512. libraries/libgnomecanvas: Remove .la files.
  7513. libraries/libgnomecanvasmm: Don't install .la files
  7514. libraries/libgnomecanvasmm: Updated maintainer email
  7515. libraries/libgnomecups: Remove .la files.
  7516. libraries/libgnomemm: Remove .la files.
  7517. libraries/libgnomeprint: Add the new dependency libart-lgpl.
  7518. libraries/libgnomeprint: Remove .la files.
  7519. libraries/libgnomeprintui: Don't use the newer gtk-doc.
  7520. libraries/libgnomeprintui: Remove .la files.
  7521. libraries/libgnomeui: Fix source files encoding.
  7522. libraries/libgnomeui: Remove .la files.
  7523. libraries/libgnomeuimm: Remove .la files.
  7524. libraries/libgringotts: Remove .la files.
  7525. libraries/libgsasl: Remove .la files.
  7526. libraries/libgtop: Removed (added to Slackware).
  7527. libraries/libgusb: Fixed dep info
  7528. libraries/libgusb: Support alternatives for ninja
  7529. libraries/libgusb: Updated for version 0.3.10.
  7530. libraries/libgusb: Updated for version 0.3.6.
  7531. libraries/libgusb: Updated for version 0.3.7.
  7532. libraries/libgusb: Updated for version 0.3.8.
  7533. libraries/libgusb: Updated for version 0.3.9.
  7534. libraries/libgxps: Fixed dep info
  7535. libraries/libgxps: Support alternatives for ninja
  7536. libraries/libhandy: Added (UI components for gtk+3).
  7537. libraries/libhandy: Remove old template CWD.
  7538. libraries/libhandy: Updated for version 1.5.0.
  7539. libraries/libharu: Remove .la files.
  7540. libraries/libheif: Fix build with newer google-go-lang.
  7541. libraries/libheif: Remove .la files.
  7542. libraries/libhid: Remove .la files.
  7543. libraries/libhoard: Updated for version 3.13
  7544. libraries/libhoard: Updated maintainer email
  7545. libraries/libhtp: Remove .la files.
  7546. libraries/libicns: Get rid of .la file.
  7547. libraries/libidn2: Removed (added to Slackware).
  7548. libraries/libido3: Disable warnings-as-errors.
  7549. libraries/libido3: Fixed dep info
  7550. libraries/libido3: Remove .la files.
  7551. libraries/libido3: Removed.
  7552. libraries/libiec61883: Remove .la files.
  7553. libraries/libilbc: Remove .la files.
  7554. libraries/libilbc: Updated for version 3.0.4.
  7555. libraries/libindi-drivers: Updated for version 1.9.4.
  7556. libraries/libindi: Fix download URL and tarball name.
  7557. libraries/libindi: Update DEP.
  7558. libraries/libindi: Updated for version 1.9.4.
  7559. libraries/libindicator3: Disable warnings-as-errors.
  7560. libraries/libindicator3: Removed (shipped with Slackware 15.0)
  7561. libraries/libinput: Removed (added to Slackware).
  7562. libraries/libiptcdata: Remove .la files.
  7563. libraries/libircclient: Fix to support openssl-1.1.x.
  7564. libraries/libircclient: Remove .la files.
  7565. libraries/libisoburn: Fixed dep info
  7566. libraries/libisoburn: Remove .la files.
  7567. libraries/libisofs: Remove .la files.
  7568. libraries/libixion: Remove .la files.
  7569. libraries/libixion: Updated for version 0.17.0.
  7570. libraries/libixp: Fix for gcc >= 10.x.
  7571. libraries/libjwt: Fixed dep info
  7572. libraries/libjwt: Remove .la files.
  7573. libraries/libjwt: updated for version 1.13.1
  7574. libraries/libkate: Remove .la files.
  7575. libraries/libkface: Removed (unused)
  7576. libraries/libkgeomap4: Removed (unused)
  7577. libraries/libkqueue: Updated for version 2.3.1, switch to cmake.
  7578. libraries/libkvkontakte: Removed (No longer needed).
  7579. libraries/liblangtag: Remove .la files.
  7580. libraries/liblightgrep: Fixed DOWNLOAD.
  7581. libraries/liblightgrep: Remove .la files.
  7582. libraries/liblinebreak: Remove .la files.
  7583. libraries/liblnk: Fix DOWNLOAD.
  7584. libraries/liblnk: Remove .la files.
  7585. libraries/liblo: Remove .la files.
  7586. libraries/liblogging: Remove .la files.
  7587. libraries/liblqr: Remove .la files.
  7588. libraries/liblrdf: Added the new dependency raptor.
  7589. libraries/liblrdf: Remove .la files.
  7590. libraries/liblscp: Remove .la files.
  7591. libraries/liblxi: Remove .la files.
  7592. libraries/libmaa: Disable some warnings-as-errors.
  7593. libraries/libmaa: Remove .la files.
  7594. libraries/libmatheval: Avoid the incompatible guile 3, use 1.8.
  7595. libraries/libmatheval: Remove .la files.
  7596. libraries/libmatroska: Build shared libs.
  7597. libraries/libmatroska: Updated for version 1.6.3.
  7598. libraries/libmediainfo: Add tfsxml patch
  7599. libraries/libmediainfo: Remove .la files.
  7600. libraries/libmediainfo: Version bump, add optional dependency, and copyright update
  7601. libraries/libmemcached: Patch for recent gccs.
  7602. libraries/libmemcached: Remove .la files.
  7603. libraries/libmicrohttpd: Remove .la files.
  7604. libraries/libmigdb: Fix file ownership.
  7605. libraries/libmikmod: Remove .la files.
  7606. libraries/libmimedir: Remove .la files.
  7607. libraries/libmimic: Remove .la files.
  7608. libraries/libminizip: Remove la file.
  7609. libraries/libmirage: Patch for gcc >= 10.x.
  7610. libraries/libmms: Don't install *.la files
  7611. libraries/libmms: Updated maintainer email
  7612. libraries/libmodbus: Remove .la files.
  7613. libraries/libmodplug: Remove .la files.
  7614. libraries/libmp3splt: Fix README.
  7615. libraries/libmp3splt: Get rid of .la files.
  7616. libraries/libmp4v2: Patch for gcc >= 10.x.
  7617. libraries/libmp4v2: Remove .la files.
  7618. libraries/libmp4v2: Use a safer patch.
  7619. libraries/libmpd: Remove .la files.
  7620. libraries/libmpdclient: Remove .la files.
  7621. libraries/libmpeg2: Don't install *.la files
  7622. libraries/libmpeg2: Updated maintainer email
  7623. libraries/libmrss: Remove .la files.
  7624. libraries/libmsiecf: Fix DOWNLOAD.
  7625. libraries/libmsiecf: Remove .la files.
  7626. libraries/libmspack: Remove .la files.
  7627. libraries/libmspub: Fix missing include.
  7628. libraries/libmspub: Remove .la files.
  7629. libraries/libmusicbrainz5: Fix download URL and tarball name.
  7630. libraries/libmusicbrainz5: Patched for the newer cmake.
  7631. libraries/libmusicbrainz: Disabled narrowing warnings.
  7632. libraries/libmusicbrainz: Remove .la files.
  7633. libraries/libmusicbrainz: Use the C++14 standard.
  7634. libraries/libmwaw: Disabled some warnings-as-errors.
  7635. libraries/libmwaw: Remove .la files.
  7636. libraries/libnbcompat: Remove .la files.
  7637. libraries/libnet: Remove .la files.
  7638. libraries/libnfc: Added (Near Field Communication (NFC) library)
  7639. libraries/libnfs: Remove .la files.
  7640. libraries/libnfs: Updated for version 5.0.1.
  7641. libraries/libnice: Removed (added to Slackware).
  7642. libraries/libnids: Remove .la files.
  7643. libraries/libnova: Remove .la files.
  7644. libraries/libnsgif: Remove template comment.
  7645. libraries/libnumbertext: Remove .la files.
  7646. libraries/libnxml: Remove .la files.
  7647. libraries/liboauth: Fix for openssl-1.1.x.
  7648. libraries/liboauth: Remove .la files.
  7649. libraries/liboauth: Remove .la files.
  7650. libraries/liboauth: Remove .la files.
  7651. libraries/libofa: Remove .la files.
  7652. libraries/libofx: Remove .la files.
  7653. libraries/liboglappth: Remove .la files.
  7654. libraries/libolecf: Fix DOWNLOAD.
  7655. libraries/libolecf: Remove .la files.
  7656. libraries/liboop: Remove .la files.
  7657. libraries/libopenmpt: Added (OpenMPT based module player library).
  7658. libraries/libopenmpt: Remove .la files.
  7659. libraries/libopenraw: Fix my own stupidity.
  7660. libraries/libopenraw: Remove .la files.
  7661. libraries/libopenraw: Updated for version 0.3.0.
  7662. libraries/libopenshot: Patch for gcc >= 10.x.
  7663. libraries/libopenshot: Update DEP.
  7664. libraries/libopusenc: Removed (added to Slackware).
  7665. libraries/liborcus: Remove .la files.
  7666. libraries/liborcus: Updated for version 0.17.1.
  7667. libraries/liborocos-kdl: Fix file ownership.
  7668. libraries/libosinfo: Fixed dep info
  7669. libraries/libosinfo: Support alternatives for ninja
  7670. libraries/libosinfo: Updated for version 1.9.0.
  7671. libraries/libosmo-dsp: Remove .la files.
  7672. libraries/libotf: Remove .la files.
  7673. libraries/libotr: Remove .la files.
  7674. libraries/libp11: Remove .la files.
  7675. libraries/libpagemaker: Remove .la files.
  7676. libraries/libpano13: Remove .la files.
  7677. libraries/libpaper: Remove la file.
  7678. libraries/libpar2: Remove .la files.
  7679. libraries/libpeas: Fix parameter.
  7680. libraries/libpeas: Support alternatives for ninja
  7681. libraries/libpeas: Updated for version 1.24.1, switch to meson.
  7682. libraries/libpeas: Updated for version 1.30.0.
  7683. libraries/libpff: Fix download URL.
  7684. libraries/libpff: Remove .la files.
  7685. libraries/libpgf: Fix download URL.
  7686. libraries/libpgf: Updated for version 7.21.7.
  7687. libraries/libpinyin: Removed (added to Slackware).
  7688. libraries/libpng-legacy12: Remove .la file (not needed).
  7689. libraries/libpng-legacy12: Remove template comment.
  7690. libraries/libportal: Added (Flatpak portal library).
  7691. libraries/libportal: Support alternatives for ninja
  7692. libraries/libpqxx: Remove .la files.
  7693. libraries/libpqxx: Updated for version 6.4.8.
  7694. libraries/libprelude: Remove .la files.
  7695. libraries/libpri: Disable -Werror.
  7696. libraries/libpseudo: Remove (no dependees).
  7697. libraries/libpst: Updated for version 0.6.76.
  7698. libraries/libpwquality: Removed (added to Slackware).
  7699. libraries/libqb: Fixed dep info
  7700. libraries/libqb: Remove .la files.
  7701. libraries/libqcow: Fix DOWNLOAD.
  7702. libraries/libqcow: Remove .la files.
  7703. libraries/libqinfinity: Disabled narrowing warnings.
  7704. libraries/libqsqlpsql: Updated maintainer email
  7705. libraries/libquicktime: Add missing dependency.
  7706. libraries/libquicktime: Don't install *.la files
  7707. libraries/libquicktime: Fixed dep info
  7708. libraries/libquicktime: Patch for ffmpeg-4.x.
  7709. libraries/libquicktime: Updated maintainer email
  7710. libraries/libquvi-scripts: Remove .la files.
  7711. libraries/libquvi-scripts: Removed.
  7712. libraries/libquvi: Remove .la files.
  7713. libraries/libquvi: Removed (Not needed as cclive is removed).
  7714. libraries/libqxp: Remove .la files.
  7715. libraries/libqxt: Added the dependency qt4.
  7716. libraries/libqxt: Patch for gcc >= 6.x.
  7717. libraries/libqxt: Remove .la files.
  7718. libraries/libr3: Remove .la files.
  7719. libraries/librapi2: Remove .la files.
  7720. libraries/libraqm: Remove .la files.
  7721. libraries/librcd: Remove .la files.
  7722. libraries/libreadline-java: Fixed dep info in README
  7723. libraries/libregf: Fixed DOWNLOAD.
  7724. libraries/libregf: Remove .la files.
  7725. libraries/librelp: Remove .la files.
  7726. libraries/librep: Removed (no maintainer)
  7727. libraries/libreplaygain: Specify cmake's path to source, cleanups.
  7728. libraries/librevisa: Fix DOWNLOAD.
  7729. libraries/librevisa: Remove .la files.
  7730. libraries/librfm5: Remove .la files.
  7731. libraries/librfm5: Updated for version 5.3.16.4.
  7732. libraries/librhtv: Remove .la files.
  7733. libraries/librra: Remove .la files.
  7734. libraries/librsync: Remove .la files.
  7735. libraries/librtfcomp: Remove .la files.
  7736. libraries/librtfcomp: Updated for version 1.3.
  7737. libraries/libsass: Removed (added to Slackware).
  7738. libraries/libscca: Fix DOWNLOAD.
  7739. libraries/libscca: Remove .la files.
  7740. libraries/libsearpc: Fix DOWNLOAD.
  7741. libraries/libsearpc: Fixed dep info
  7742. libraries/libsearpc: Remove .la files.
  7743. libraries/libsearpc: Updated for version 3.1.0.
  7744. libraries/libsearpc: Updated for version 3.2_latest.
  7745. libraries/libseccomp: Remove la file.
  7746. libraries/libseccomp: Removed (Added to Slackware).
  7747. libraries/libseccomp: Updated for version 2.5.2.
  7748. libraries/libseccomp: Updated for version 2.5.3.
  7749. libraries/libserialport: Remove .la files.
  7750. libraries/libshout: Compress manpages.
  7751. libraries/libshout: Fixed dep info in README
  7752. libraries/libshout: New maintainer. Updated for version 2.4.5
  7753. libraries/libshout: Remove .la files.
  7754. libraries/libsidplay2: Remove .la files.
  7755. libraries/libsidplayfp: Remove .la files.
  7756. libraries/libsidplayfp: Remove .la files.
  7757. libraries/libsidplayfp: Remove .la files.
  7758. libraries/libsidplayfp: Updated for version 1.8.7.
  7759. libraries/libsieve: Remove .la files.
  7760. libraries/libsigc++-legacy12: Removed (no dependees).
  7761. libraries/libsigrok: Remove .la files.
  7762. libraries/libsigrok: Updated for version 20201229_f93bf8b.
  7763. libraries/libsigrok: Updated for version 20220224_6dc55e4.
  7764. libraries/libsigrokdecode: Remove .la files.
  7765. libraries/libsigrokdecode: Updated for version 20201111_3f77dc2.
  7766. libraries/libsigrokdecode: Updated for version 20220224_24ba9e1.
  7767. libraries/libsigscan: Fix DOWNLOAD.
  7768. libraries/libsigscan: Remove .la files.
  7769. libraries/libsixel: Removed. (no longer maintained).
  7770. libraries/libskk: Fixed dep info
  7771. libraries/libskk: Re-added libgee1 as dep
  7772. libraries/libskk: Remove .la files.
  7773. libraries/libslack: Fix file permissions.
  7774. libraries/libslack: Remove .la files.
  7775. libraries/libsmbios: Remove .la files.
  7776. libraries/libsmbios: Updated for version 2.4.3.
  7777. libraries/libsmdev: Fix DOWNLOAD.
  7778. libraries/libsmdev: Remove .la files.
  7779. libraries/libsmf: Fix README.
  7780. libraries/libsmf: Remove .la file.
  7781. libraries/libsmi: Remove .la files.
  7782. libraries/libsmraw: Fix DOWNLOAD.
  7783. libraries/libsmraw: Remove .la files.
  7784. libraries/libsodium: Removed (added to Slackware).
  7785. libraries/libsoup3: Added (an HTTP client/server library).
  7786. libraries/libspectrum: Remove .la files.
  7787. libraries/libspf2: Remove .la files.
  7788. libraries/libspf2: Removed doinst.sh.
  7789. libraries/libsrtp: Disable openssl (not compatible with 1.1.x).
  7790. libraries/libsrtp: Remove .la files.
  7791. libraries/libstaroffice: Remove .la files.
  7792. libraries/libstatgrab: Remove .la files.
  7793. libraries/libstrophe: Remove .la files.
  7794. libraries/libsuinput: Remove .la files.
  7795. libraries/libsuinput: Removed redundant doinst.sh.
  7796. libraries/libsunpinyin: Removed (no maintainer).
  7797. libraries/libsynce: Remove .la files.
  7798. libraries/libtar: Remove .la files.
  7799. libraries/libtecla: Remove .la files.
  7800. libraries/libtelnet: Remove .la files.
  7801. libraries/libtermkey: New maintainer.
  7802. libraries/libtermkey: Remove .la files.
  7803. libraries/libthai: Remove .la files.
  7804. libraries/libticables2: Remove .la files.
  7805. libraries/libticalcs2: Remove .la files.
  7806. libraries/libticonv: Remove .la files.
  7807. libraries/libtifiles2: Remove .la files.
  7808. libraries/libtomcrypt: Remove .la files.
  7809. libraries/libtommath: Remove template comment.
  7810. libraries/libtorrent-rasterbar-legacy: Removed.
  7811. libraries/libtorrent-rasterbar: Remove .la files.
  7812. libraries/libtorrent: Fix DOWNLOAD.
  7813. libraries/libtorrent: Remove .la files.
  7814. libraries/libtsm: Fixed dep info
  7815. libraries/libtsm: Remove .la file.
  7816. libraries/libtubo0: Remove .la files.
  7817. libraries/libtunepimp: Remove .la files.
  7818. libraries/libtunepimp: Removed (ftbfs)
  7819. libraries/libtxc_dxtn: Removed (already included in the newer mesa).
  7820. libraries/libu2f-host: Fix VERSION.
  7821. libraries/libu2f-host: Remove .la files.
  7822. libraries/libu2f-host: Updated for version 1.1.11 (unreleased)
  7823. libraries/libucil: Remove .la files.
  7824. libraries/libuinputplus: Added (C++ uinput lib).
  7825. libraries/libunibreak: Updated for version 4.3, new maintainer.
  7826. libraries/libunicap: Patch for gcc >= 10.x.
  7827. libraries/libunicap: Remove .la files.
  7828. libraries/libunicapgtk: Remove .la files.
  7829. libraries/libunique3: Remove .la files.
  7830. libraries/libunique: Remove .la files.
  7831. libraries/libunwind: Removed (added to Slackware).
  7832. libraries/libupnp-legacy: Remove .la files.
  7833. libraries/libupnp: Updated for version 1.14.12.
  7834. libraries/liburcu: Remove .la files.
  7835. libraries/liburcu: Updated for version 0.13.0.
  7836. libraries/liburcu: Updated for version 0.13.1.
  7837. libraries/liburing: Added (io_uring library).
  7838. libraries/liburing: Removed (added to Slackware).
  7839. libraries/libuv: Removed (added to Slackware).
  7840. libraries/libvdpau-va-gl: Update DEP.
  7841. libraries/libversion: Fixed dep info
  7842. libraries/libvhdi: Fix DOWNLOAD.
  7843. libraries/libvhdi: Remove .la files.
  7844. libraries/libvhdi: Updated for version 20210425.
  7845. libraries/libvidcap: Remove .la files.
  7846. libraries/libviper: Remove (included in vwm already).
  7847. libraries/libvirt-glib: Fixed dep info
  7848. libraries/libvirt-glib: Support alternatives for ninja
  7849. libraries/libvirt-glib: Updated for version 4.0.0.
  7850. libraries/libvirt-python: Updated for version 7.2.0.
  7851. libraries/libvirt-python: Updated for version 7.3.0.
  7852. libraries/libvirt-python: Updated for version 7.4.0.
  7853. libraries/libvirt-python: Updated for version 7.6.0.
  7854. libraries/libvirt-python: Updated for version 7.9.0.
  7855. libraries/libvirt-python: Updated for version 8.0.0.
  7856. libraries/libvirt-python: Updated for version 8.1.0.
  7857. libraries/libvirt: Fix build when qemu not present.
  7858. libraries/libvirt: Support alternatives for ninja
  7859. libraries/libvirt: Updated for version 7.2.0, switch to meson.
  7860. libraries/libvirt: Updated for version 7.3.0.
  7861. libraries/libvirt: Updated for version 7.4.0.
  7862. libraries/libvirt: Updated for version 7.6.0.
  7863. libraries/libvirt: Updated for version 7.9.0.
  7864. libraries/libvirt: Updated for version 8.0.0.
  7865. libraries/libvirt: Updated for version 8.1.0.
  7866. libraries/libvirt: detect bash-completion properly
  7867. libraries/libvmdk: Fix DOWNLOAD.
  7868. libraries/libvmdk: Remove .la files.
  7869. libraries/libvmdk: Updated for version 20210418.
  7870. libraries/libvmdk: Updated for version 20210807.
  7871. libraries/libvmime: Updated for version 5617460.
  7872. libraries/libvorbisidec: Remove .la files.
  7873. libraries/libvshadow: Fix DOWNLOAD.
  7874. libraries/libvshadow: Remove .la files.
  7875. libraries/libvslvm: Fix DOWNLOAD.
  7876. libraries/libvslvm: Remove .la files.
  7877. libraries/libvterm: New maintainer
  7878. libraries/libvterm: Remove .la files.
  7879. libraries/libwacom: Removed (added to Slackware).
  7880. libraries/libwebp: Removed (added to Slackware).
  7881. libraries/libwebsockets: Updated for version 4.2.0.
  7882. libraries/libwfut: Remove .la files.
  7883. libraries/libwfut: Removed redundant doinst.sh.
  7884. libraries/libwnck3: Removed (added to Slackware).
  7885. libraries/libwpe: Fixed dep info
  7886. libraries/libwpe: Updated for version 1.10.0.
  7887. libraries/libwpe: Updated for version 1.10.1.
  7888. libraries/libwpe: Updated for version 1.12.0.
  7889. libraries/libwps: Disable some warning-as-errors.
  7890. libraries/libwps: Remove .la files.
  7891. libraries/libwrc: Fix DOWNLOAD.
  7892. libraries/libwrc: Remove .la files.
  7893. libraries/libx86emu: Updated for version 3.4
  7894. libraries/libx86emu: Updated maintainer email
  7895. libraries/libxdg-basedir: Do not install .la files
  7896. libraries/libxdg-basedir: Update for version 1.2.2.
  7897. libraries/libxfcegui4: Remove .la files.
  7898. libraries/libxfcegui4: Update icon cache in doinst.sh.
  7899. libraries/libxkbcommon: Removed (added to Slackware).
  7900. libraries/libxls: Compress manpages.
  7901. libraries/libxls: Remove .la files.
  7902. libraries/libxmi: Remove .la files.
  7903. libraries/libxml++3: Remove .la files.
  7904. libraries/libxml++: Remove .la files.
  7905. libraries/libxmlb: Align with new template.
  7906. libraries/libxmlb: Fixed dep info
  7907. libraries/libxmlb: Fixed ninja build.
  7908. libraries/libxmlb: Updated for version 0.3.0.
  7909. libraries/libxmlb: Updated for version 0.3.1.
  7910. libraries/libxmlb: Updated for version 0.3.2.
  7911. libraries/libxmlb: Updated for version 0.3.3.
  7912. libraries/libxmlb: Updated for version 0.3.6.
  7913. libraries/libxmlb: Updated for version 0.3.7.
  7914. libraries/libxmp: Remove .la files.
  7915. libraries/libyubikey: Remove .la files.
  7916. libraries/libzdb: Disabled openssl (incompatible with 1.1.x).
  7917. libraries/libzdb: Fixed dep info
  7918. libraries/libzdb: Remove .la files.
  7919. libraries/libzen: Remove .la files.
  7920. libraries/libzen: Version bump and copyright update
  7921. libraries/libzmf: Remove .la files.
  7922. libraries/libzookeeper: Disable warnings-as-errors.
  7923. libraries/libzookeeper: Remove .la files.
  7924. libraries/libzrtpcpp: Updated for version 4.6.6.
  7925. libraries/live555: Fix missing header in glibc >= 2.26.
  7926. libraries/lksctp-tools: Remove .la files.
  7927. libraries/log4c: Remove .la files.
  7928. libraries/log4cplus: Remove .la files.
  7929. libraries/log4cpp: Remove .la files.
  7930. libraries/log4cpp: Updated for version 1.1.3.
  7931. libraries/log4shib: Remove .la files.
  7932. libraries/log4shib: Use the C++14 standard.
  7933. libraries/logilab-common: Update DEP.
  7934. libraries/lua-MessagePack: Removed (no maintainer)
  7935. libraries/lua-cmsgpack: Removed (No maintainer).
  7936. libraries/lua-lpeg: Fix quote.
  7937. libraries/lua-lpeg: New maintainer.
  7938. libraries/lua-luv: New maintainer
  7939. libraries/lua-luv: Updated dependencies.
  7940. libraries/lua-mpack: New maintainer.
  7941. libraries/lua-posix: Install in lib64 on x86_64.
  7942. libraries/lua-zlib: Align with template
  7943. libraries/luacrypto: Updated for version 0.5.1.
  7944. libraries/luasec: Updated for version 1.0.2.
  7945. libraries/lunatic-python: Align with template
  7946. libraries/lvtk: Remove template comment.
  7947. libraries/lxqt-build-tools: Updated for version 0.8.0.
  7948. libraries/mariadb_client: Removed (substituted by connector, FTB).
  7949. libraries/marisa: Removed (added to Slackware).
  7950. libraries/mathgl: Updated for version 2.4.4, use qt5.
  7951. libraries/matplotlib: Fix dependency.
  7952. libraries/matplotlib: Update DEP.
  7953. libraries/mdds: Remove .la files.
  7954. libraries/mdds: Updated for version 2.0.1.
  7955. libraries/meanwhile: Remove .la files.
  7956. libraries/meanwhile: Remove .la files.
  7957. libraries/meanwhile: Remove .la files.
  7958. libraries/med: Disable the swig python bindings (broken).
  7959. libraries/med: Remove .la files.
  7960. libraries/menu-cache: Patch for gcc >= 10.x.
  7961. libraries/menu-cache: Remove .la files.
  7962. libraries/mercator: Remove .la files.
  7963. libraries/miniupnpc: Updated for version 2.2.3.
  7964. libraries/mlt-bindings: Added (bindings for MLT).
  7965. libraries/mongo-c-driver: Updated for version 1 17.3.
  7966. libraries/mongo-cxx-driver: FIx building against the new libmongoc.
  7967. libraries/mowitz: Remove .la files.
  7968. libraries/mpir: Remove .la files.
  7969. libraries/msgpack-c: New maintainer.
  7970. libraries/msgpack-c: Use the C++11 standard.
  7971. libraries/msx264: Fix DOWNLOAD.
  7972. libraries/msx264: Fix download URL.
  7973. libraries/msx264: Remove .la files.
  7974. libraries/muParser: New maintainer.
  7975. libraries/muParser: update for version2.3.2
  7976. libraries/mujs: Updated for version 1.1.2
  7977. libraries/mujs: Updated for version 1.1.3
  7978. libraries/mujs: Updated for version 1.2.0
  7979. libraries/mxml: Remove .la files.
  7980. libraries/mysql++: Remove .la files.
  7981. libraries/mysql++: Updated for version 3.3.0.
  7982. libraries/mysql-connector-c++: Updated for version 8.0.23.
  7983. libraries/mysql-connector-c++: Updated for version 8.0.24.
  7984. libraries/mysql-connector-c++: Updated for version 8.0.25.
  7985. libraries/mysql-connector-c++: Updated for version 8.0.26.
  7986. libraries/mysql-connector-c++: Updated for version 8.0.28.
  7987. libraries/mysql-connector-python: Removed.
  7988. libraries/mysql-connector-python: Updated for version 8.0.23.
  7989. libraries/mysqltcl: Remove .la files.
  7990. libraries/netcdf: Remove .la files.
  7991. libraries/nextaw: Remove .la files.
  7992. libraries/nlopt: Updated for version 2.7.1.
  7993. libraries/nltk: Updated for version 3.6.7
  7994. libraries/nltk: Updated for version 3.7.
  7995. libraries/nltk: updated to version 3.6.5
  7996. libraries/npth: Removed (added to Slackware).
  7997. libraries/nspluginwrapper: Fix file permissions.
  7998. libraries/nspluginwrapper: Remove .la files.
  7999. libraries/ntl: Remove .la files.
  8000. libraries/ntl: Updated for version 11.5.1.
  8001. libraries/nv-codec-headers: Updated for version 11.1.5.1.
  8002. libraries/nx-libs: Compress manpages.
  8003. libraries/nx-libs: Fix build (make -j1).
  8004. libraries/nx-libs: Remove .la files.
  8005. libraries/nx-libs: Updated for version 3.5.99.26, use libtirpc.
  8006. libraries/oath-toolkit: Remove .la files.
  8007. libraries/oath-toolkit: Updated for version 2.6.7.
  8008. libraries/ocaml-batteries: Add missing dep.
  8009. libraries/ocaml-batteries: Fix download URL.
  8010. libraries/ocaml-batteries: Updated for version 3.4.0.
  8011. libraries/ocaml-bisect: Fix DOWNLOAD.
  8012. libraries/ocaml-bisect: Remove .la files.
  8013. libraries/ocaml-bisect: Removed (ftb).
  8014. libraries/ocaml-camomile: Correctly handle github tarball.
  8015. libraries/ocaml-camomile: Fix build and deps.
  8016. libraries/ocaml-camomile: Fix download URL.
  8017. libraries/ocaml-camomile: Updated for version 1.0.2.
  8018. libraries/ocaml-findlib: Remove .la files.
  8019. libraries/ocaml-findlib: Updated for version 1.8.1, changed maint.
  8020. libraries/ocaml-findlib: Updated for version 1.9.1.
  8021. libraries/ocaml-ounit: Fix DOWNLOAD.
  8022. libraries/ocaml-ounit: Removed (ftb).
  8023. libraries/ocl-icd: Removed (added to Slackware).
  8024. libraries/ode: Remove .la files.
  8025. libraries/ogre: Explicitly disable the C# bindings.
  8026. libraries/ogre: Fix 15.0 build.
  8027. libraries/ogre: Fixed dep info
  8028. libraries/ogre: Updated for version 13.2.4.
  8029. libraries/olm: New maintainer
  8030. libraries/olm: Updated for version 3.2.10.
  8031. libraries/olm: Updated for version 3.2.8.
  8032. libraries/onevpl/: Added (oneAPI Video Processing Library)
  8033. libraries/opal: Disabled ffmpeg support (not compatible with 4.x).
  8034. libraries/opal: Fixed dep info
  8035. libraries/opal: Removed.
  8036. libraries/openbabel: Fix download URL, remove jdk dep.
  8037. libraries/openbabel: Missed an i486->i586 change
  8038. libraries/openbabel: Switch to i586.
  8039. libraries/openbabel: Updated for version 2.4.1.
  8040. libraries/openbabel: Updated for version 3.1.1.
  8041. libraries/opencl-amd: Fix support for PRINT_PACKAGE_NAME
  8042. libraries/opencv-legacy: Removed (not compatible with opencv).
  8043. libraries/opencv: Removed (added to Slackware).
  8044. libraries/opendht: Fixed dep info
  8045. libraries/openjfx: Remove.
  8046. libraries/opensaml: Remove .la files.
  8047. libraries/opensaml: Use the C++14 standard.
  8048. libraries/orcania: Compress manpages.
  8049. libraries/orcania: Fixed dep info
  8050. libraries/orcania: updated for version 2.2.1
  8051. libraries/osgQt: Updated for version 20210405_8fa9e2a.
  8052. libraries/paho-mqtt: Moved from thirdparty.
  8053. libraries/pangox-compat: Remove .la files.
  8054. libraries/pangox-compat: Updated for version 20150430_edb9e09.
  8055. libraries/pcl: Updated for version 1.12.1.
  8056. libraries/pcre2: Removed (added to Slackware).
  8057. libraries/pgplot: Removed (abandoned upstream and FTB).
  8058. libraries/pgtcl-ng: Remove .la files.
  8059. libraries/php-imagick: Remove .la files.
  8060. libraries/php-imagick: Updated for version 3.5.1
  8061. libraries/php-imagick: Updated maintainer email
  8062. libraries/php-memcache: Remove .la files.
  8063. libraries/php-memcache: Updated for version 4.0.5.2.
  8064. libraries/php-memcached: Remove .la files.
  8065. libraries/php-memcached: Updated for version 3.1.5.
  8066. libraries/php-mssql: Removed (no more mssql ext in php 7.4.x).
  8067. libraries/php-oci8: Remove .la files.
  8068. libraries/php-oci8: Updated for version 2.2.0.
  8069. libraries/php-pdo_dblib: Remove .la files.
  8070. libraries/php-pdo_dblib: Updated for version 7.4.27.
  8071. libraries/php-pgsql: Remove .la files.
  8072. libraries/php-pgsql: Updated for version 7.4.27
  8073. libraries/php-pgsql: Updated for version 7.4.3.
  8074. libraries/php-pgsql: Updated maintainer email
  8075. libraries/php-redis: Remove .la files.
  8076. libraries/php-ssh2: Remove .la files.
  8077. libraries/php-ssh2: Updated for version 1.3.1.
  8078. libraries/php-stomp: Remove .la files.
  8079. libraries/php-stomp: Updated for version 2.0.2.
  8080. libraries/physfs: Specify cmake's path to source.
  8081. libraries/pidgin-mra: Handle weird wget filenames.
  8082. libraries/pies: Fixed dep info
  8083. libraries/pipewire: Removed (added to Slackware).
  8084. libraries/pjsip: Fix DOWNLOAD.
  8085. libraries/pjsip: Fixed dep info
  8086. libraries/pjsip: Remove .la files.
  8087. libraries/plib: Remove .la files.
  8088. libraries/plplot: Fix build (missing include)
  8089. libraries/plplot: Updated for version 5.15.0.
  8090. libraries/plyr: Include python3 support by default
  8091. libraries/plyr: Removed (no maintainer)
  8092. libraries/poco: Remove .la files.
  8093. libraries/poco: Removed redundant doinst.sh.
  8094. libraries/podofo: Patch to bypass a cmake error.
  8095. libraries/poppler-qt5: Removed (added to Slackware as poppler).
  8096. libraries/protobuf-c: Change maintainer email.
  8097. libraries/protobuf-c: Fix MD5SUM.
  8098. libraries/protobuf-c: Remove .la files.
  8099. libraries/protobuf-c: Updated for version 1.4.0.
  8100. libraries/proxygen: Removed (orphaned and FTB).
  8101. libraries/psqlodbc: Remove .la files.
  8102. libraries/pthsem: Remove .la files.
  8103. libraries/ptlib: Patched for the newer gcc, openssl and make.
  8104. libraries/ptlib: Removed.
  8105. libraries/ptypes: Fix DOWNLOAD.
  8106. libraries/pugixml: Updated for version 1.12.
  8107. libraries/pugixml: Updated for version 1.12.1.
  8108. libraries/pyPEG2: Updated for version 20211118_4dd9d69.
  8109. libraries/pyacoustid: Update DEP.
  8110. libraries/pycparser: Only build for python2.
  8111. libraries/pyechonest: Removed (dead upstream)
  8112. libraries/pyqode.core: Update DEP.
  8113. libraries/python-efl: Updated for version 1.25.0.
  8114. libraries/python-xlrd: Remove redundant doinst.sh.
  8115. libraries/python2-PyYAML: Renamed from PyYAML.
  8116. libraries/python3-PyQt5: Removed (added to Slackware as PyQt5).
  8117. libraries/python3-PyQtWebEngine: Fixed dep info
  8118. libraries/python3-PyQtWebEngine: Updated for version 5.15.0.
  8119. libraries/python3-PyQtWebEngine: Updated for version 5.15.3.
  8120. libraries/python3-PyYAML: Removed (Added to Slackware).
  8121. libraries/python3-PyYAML: Updated for version 5.3.1.
  8122. libraries/python3-pillow: Removed (added to Slackware).
  8123. libraries/python3-pyparsing: Removed (added to Slackware).
  8124. libraries/qca-qt5: Removed (added to Slackware).
  8125. libraries/qmltermwidget: Patch for gcc >= 10.x.
  8126. libraries/qoauth: Updated for version 2.0.0, use qt5.
  8127. libraries/qt-assistant-compat: update for new qt4 build.
  8128. libraries/qt3: Fix README.
  8129. libraries/qt3: Install profiles scripts -x.
  8130. libraries/qt3: Remove .la files.
  8131. libraries/qt4-postgresql: Removed
  8132. libraries/qt4-postgresql: Renamed from libqsqlpsql
  8133. libraries/qt4: Added (legacy Qt version).
  8134. libraries/qt4: Explicitly disable webkit (it was already missing).
  8135. libraries/qt4: Respect TAG.
  8136. libraries/qt5-legacy: Fixed dep info in README
  8137. libraries/qt5-legacy: Removed (yep, it's legacy)
  8138. libraries/qt5-postgresql: Added (Postgresql plugin for Qt5)
  8139. libraries/qt5-styleplugins: Patch for qt-5.15.x.
  8140. libraries/qt5-webkit-legacy: Removed (yep, it's legacy, Jim)
  8141. libraries/qt5-webkit: Removed (added to Slackware).
  8142. libraries/qt5: Removed (added to Slackware).
  8143. libraries/qtermwidget: Updated for version 0.15.0.
  8144. libraries/qtmimetypes: Added the dependency qt4.
  8145. libraries/quazip-qt4: Added the dependency qt4.
  8146. libraries/quazip-qt5: Removed (added to Slackware as quazip).
  8147. libraries/quesoglc: Remove .la files.
  8148. libraries/qutepart: Updated for version 20220131_aa69fe6.
  8149. libraries/qwt-qt5: Removed (redundant; use qwt).
  8150. libraries/qwt5: Removed.
  8151. libraries/qwt: Add optional qt4 support.
  8152. libraries/qwt: Check for Qt5Core.pc.
  8153. libraries/qwt: Remove Qt4 support
  8154. libraries/qwtplot3d: Removed.
  8155. libraries/qwtpolar: Removed (FTBFS, and no dependees).
  8156. libraries/rapidjson: Disable some warnings-as-errors.
  8157. libraries/raptor: Remove .la files.
  8158. libraries/rasqal: Added (RDF parsing library).
  8159. libraries/rasqal: Remove .la files.
  8160. libraries/redland: Added (RDF high-level interface library).
  8161. libraries/redland: Remove .la files.
  8162. libraries/remglk: Remove template comment.
  8163. libraries/rep-gtk: Removed (no maintainer)
  8164. libraries/reportlab: Add missing dependency.
  8165. libraries/rest: Remove .la files.
  8166. libraries/restbed: Updated for version 4.8.
  8167. libraries/rhonabwy: Fixed dep info
  8168. libraries/rhonabwy: updated for version 0.9.9999
  8169. libraries/rhonabwy: updated for version 1.0.0
  8170. libraries/rhonabwy: updated for version 1.1.2
  8171. libraries/ring-daemon: Remove .la files.
  8172. libraries/ring-daemon: Removed (superseded by jami).
  8173. libraries/ring-lrc: Fix download URL.
  8174. libraries/ring-lrc: Removed (superseded by jami).
  8175. libraries/rlog: Removed.
  8176. libraries/rrdtool: Remove .la files.
  8177. libraries/rudiments: Remove .la files.
  8178. libraries/rudiments: Updated for version 1.0.5.
  8179. libraries/rudiments: Updated for version 1.4.2.
  8180. libraries/rxtx: Allow other JDKs besides Oracle's.
  8181. libraries/rxtx: Remove .la files.
  8182. libraries/rxtx: Use zulu-openjdk8.
  8183. libraries/sdformat: Fix DOWNLOAD.
  8184. libraries/sdformat: Patch for cmake >= 3.9.x.
  8185. libraries/secp256k1: Remove .la files.
  8186. libraries/shairplay: Remove .la files.
  8187. libraries/skalibs: Remove INSTALL from doc dir.
  8188. libraries/skalibs: Updated for version 2.11.1.0
  8189. libraries/skstream: Remove .la files.
  8190. libraries/slib: Remove .la files.
  8191. libraries/slv2: Update DEP.
  8192. libraries/smpeg2: Remove .la files.
  8193. libraries/smpeg2: Update DEP.
  8194. libraries/soil: Fix DOWNLOAD.
  8195. libraries/sord: Updated for version 0.16.8.
  8196. libraries/soundtouch: Updated for version 2.3.1
  8197. libraries/soundtouch: Updated maintainer email
  8198. libraries/sparsehash: Remove .la files.
  8199. libraries/spread-sheet-widget: Remove .la files.
  8200. libraries/spread-sheet-widget: Remove redundant doinst.sh.
  8201. libraries/spread-sheet-widget: Updated for version 0.8.
  8202. libraries/sqliteodbc: Avoid a find loop.
  8203. libraries/sqliteodbc: Remove .la files.
  8204. libraries/sqlpp11-connector-mysql: Removed (included in sqlpp11).
  8205. libraries/sqlpp11-connector-sqlite3: Removed (included in sqlpp11).
  8206. libraries/sqlpp11: Update DEP.
  8207. libraries/sqlpp11: Updated for version 0.61.
  8208. libraries/srt: Fix .pc paths and doc permissions.
  8209. libraries/srt: Remove .la files.
  8210. libraries/srt: Updated for version 1.4.3.
  8211. libraries/stfl: Fix the download link in the info file.
  8212. libraries/stk: Remove .la files.
  8213. libraries/swfdec: Note the new dependency gst0-plugins-base.
  8214. libraries/swfdec: Remove .la files.
  8215. libraries/swfdec: Remove .la files.
  8216. libraries/swfdec: Remove .la files.
  8217. libraries/t38modem-opal: Fixed dep info
  8218. libraries/t38modem-opal: Removed (missing dependency).
  8219. libraries/t38modem-ptlib: Removed (incompatible with openssl-1.1.x).
  8220. libraries/t4k_common: Fix for gcc >= 10.x.
  8221. libraries/t4k_common: Fix segfaults with the newer librsvg.
  8222. libraries/t4k_common: Remove .la files.
  8223. libraries/t4k_common: Wrapped lines patch.
  8224. libraries/tDOM: Remove .la files.
  8225. libraries/ta-lib: Fix build (make -j1).
  8226. libraries/ta-lib: Remove .la files.
  8227. libraries/tamu_anova: Remove .la files.
  8228. libraries/tamu_anova: update copyright years
  8229. libraries/tcl-inotify: Remove .la files.
  8230. libraries/tcl-tls: Remove .la files.
  8231. libraries/tcl-tls: Updated for version 1.7.20, changed homepage.
  8232. libraries/tclap: Remove .la files.
  8233. libraries/tcllib: Remove .la files.
  8234. libraries/tkimg: Remove .la files.
  8235. libraries/tlsh: Updated for version 4.8.2.
  8236. libraries/tomcat-native: Use zulu-opendjk11.
  8237. libraries/totem-pl-parser: Align with new template.
  8238. libraries/totem-pl-parser: Support alternatives for ninja
  8239. libraries/totem-pl-parser: Updated for version 3.26.0.
  8240. libraries/tox-extension-messages: Fix download URL.
  8241. libraries/tox-extension-messages: Updated for version 0.0.3.
  8242. libraries/toxext: Updated for version 0.0.3.
  8243. libraries/trader: Remove .la files.
  8244. libraries/tre: New maintainer.
  8245. libraries/tre: Remove .la files.
  8246. libraries/tre: Removed Python 2 support.
  8247. libraries/tree-sitter: Updated for version 0.20.4.
  8248. libraries/trilinos: Fix DOWNLOAD.
  8249. libraries/trilinos: Removed (no dependees; conflicts with mpich and openmpi)
  8250. libraries/tsocks: Remove .la files.
  8251. libraries/ucl: Force using the ISO C90 standard.
  8252. libraries/ucl: Remove .la files.
  8253. libraries/ucommon: Remove .la files.
  8254. libraries/ucommon: Updated for version 7.0.0.
  8255. libraries/ucommon: Use the C++14 standard.
  8256. libraries/udunits: Remove .la files, fix download URL.
  8257. libraries/udunits: Remove .la files.
  8258. libraries/udunits: Updated for version 2.2.28.
  8259. libraries/ulfius: Compress manpages.
  8260. libraries/ulfius: updated for version 2.7.3
  8261. libraries/ulfius: updated for version 2.7.4
  8262. libraries/ulfius: updated for version 2.7.7
  8263. libraries/unibilium: New maintainer.
  8264. libraries/unibilium: Remove .la files.
  8265. libraries/unixODBC: New maintainer.
  8266. libraries/unixODBC: Remove .la files.
  8267. libraries/upscaledb: Removed (orphaned and FTB).
  8268. libraries/urdfdom: Install in lib64 on x86_64.
  8269. libraries/uriparser: Updated for version 0.9.6.
  8270. libraries/uuid: Remove .la files.
  8271. libraries/varconf: Remove .la files.
  8272. libraries/varconf: Use the C++14 standard.
  8273. libraries/vdk: Remove .la files.
  8274. libraries/vdpau-video: Removed (obsolete, abandoned upstream, FTB).
  8275. libraries/vid.stab: Removed (added to Slackware).
  8276. libraries/virglrenderer: Support alternatives for ninja
  8277. libraries/virglrenderer: Updated for version 0.9.1.
  8278. libraries/volk: Added (Vector-Optimized Library of Kernels)
  8279. libraries/vsqlite++: Remove .la file.
  8280. libraries/vte2: Added (gtk+2 terminal emulator widget).
  8281. libraries/vte2: Remove .la files.
  8282. libraries/vte3-ng: Fixed dep info
  8283. libraries/vte3-ng: Removed (conflicts with vte in Slackware).
  8284. libraries/vte3: Removed (added to Slackware).
  8285. libraries/wangle: Removed (orphaned and FTB).
  8286. libraries/wayland: Removed (added to Slackware).
  8287. libraries/wcslib: Remove .la files.
  8288. libraries/wcslib: Update DEP.
  8289. libraries/wcslib: Updated for version 7.7.
  8290. libraries/webkit2gtk4.1: Added (Web content rendering)
  8291. libraries/webkit2gtk4.1: Fix README.
  8292. libraries/webkit2gtk4.1: Remove gst-plugins-bad dependency.
  8293. libraries/webkit2gtk4.1: Update README.
  8294. libraries/webkit2gtk4.1: Updated for version 2.34.5.
  8295. libraries/webkit2gtk4.1: Updated for version 2.34.6.
  8296. libraries/webkit2gtk: Accomodate libsoup and libsoup3.
  8297. libraries/webkit2gtk: Align with new template.
  8298. libraries/webkit2gtk: Build just once, respect jobs number.
  8299. libraries/webkit2gtk: Fix README.
  8300. libraries/webkit2gtk: Fixed dep info.
  8301. libraries/webkit2gtk: Patch for icu4c >= 69.x.
  8302. libraries/webkit2gtk: Remove gst-plugins-bad dependency.
  8303. libraries/webkit2gtk: Revert back to building 4.0 API.
  8304. libraries/webkit2gtk: Update DEP.
  8305. libraries/webkit2gtk: Update README.
  8306. libraries/webkit2gtk: Update README.
  8307. libraries/webkit2gtk: Updated for version 2.32.0, switch to ninja.
  8308. libraries/webkit2gtk: Updated for version 2.32.1.
  8309. libraries/webkit2gtk: Updated for version 2.32.2.
  8310. libraries/webkit2gtk: Updated for version 2.32.3.
  8311. libraries/webkit2gtk: Updated for version 2.34.2.
  8312. libraries/webkit2gtk: Updated for version 2.34.3.
  8313. libraries/webkit2gtk: Updated for version 2.34.4.
  8314. libraries/webkit2gtk: Updated for version 2.34.5.
  8315. libraries/webkit2gtk: Updated for version 2.34.6.
  8316. libraries/webkit2gtk: Use libsoup in Slackware.
  8317. libraries/webkit2gtk: Use libsoup3.
  8318. libraries/webkitgtk3: Add actual patch.
  8319. libraries/webkitgtk3: Fix build against newer glib.
  8320. libraries/webkitgtk3: Fixed dep info
  8321. libraries/webkitgtk3: Patched for icu4c-65, disabled warnings spam.
  8322. libraries/webkitgtk3: Removed (no longer build and obsolete).
  8323. libraries/webkitgtk: Fix build against newer glib.
  8324. libraries/webkitgtk: Fixed dep info
  8325. libraries/webkitgtk: Patched for icu4c-65.1, disabled warnings spam.
  8326. libraries/webkitgtk: Removed.
  8327. libraries/wfmath: Remove .la files.
  8328. libraries/wimlib: Remove .la files.
  8329. libraries/wimlib: Updated for version 1.13.4
  8330. libraries/wpebackend-fdo: Added (freedesktop.org backend for WPE).
  8331. libraries/wpwbackend-fdo: Updated for version 1.8.3.
  8332. libraries/wv: Remove .la files.
  8333. libraries/wv: Updated copyright
  8334. libraries/wvstreams: Apply debian patches, cleanups.
  8335. libraries/wvstreams: Remove .la files.
  8336. libraries/wxGTK3: Remove .la files.
  8337. libraries/wxGTK3: Switch to use GTK+3.
  8338. libraries/wxGTK: Remove .la files.
  8339. libraries/wxPython3: Don't explicitely build internal wxGTK3
  8340. libraries/wxPython3: Fix build (ignore /usr/bin/wx-config).
  8341. libraries/wxPython3: Fix build with wxGTK3 changes.
  8342. libraries/wxPython3: Whoops, hardcoded lib64.
  8343. libraries/wxPython4: Kill python3-sip dep
  8344. libraries/wxPython4: Patched for the newer setuptools.
  8345. libraries/wxPython4: Updated for version 4.1.1.
  8346. libraries/wxPython: Remove .la files.
  8347. libraries/wxPython: Updated maintainer email
  8348. libraries/wxSQLite3: Removed (no maintainer)
  8349. libraries/wxX11: Remove .la files.
  8350. libraries/wxsvg: Remove .la files.
  8351. libraries/wxsvg: Update DEP.
  8352. libraries/wxsvg: Updated for version 1.5.20.
  8353. libraries/xapian-bindings: Remove .la files.
  8354. libraries/xapian-bindings: Updated for version 1.4.19.
  8355. libraries/xawplus: Fix DOWNLOAD.
  8356. libraries/xblas: Remove .la files.
  8357. libraries/xblas: Revert duplicate .la file removal
  8358. libraries/xcb-util-xrm: Remove .la files.
  8359. libraries/xerces-c: Remove .la files.
  8360. libraries/xerces-c: Updated for version 3.2.3.
  8361. libraries/xf86-input-libinput: Removed (added to Slackware).
  8362. libraries/xforms: Remove .la files.
  8363. libraries/xine-plugin: Remove .la files.
  8364. libraries/xlt: Remove .la files.
  8365. libraries/xml-security-c: Fix DOWNLOAD.
  8366. libraries/xml-security-c: Remove .la files.
  8367. libraries/xmlrpc-c: Remove .la files.
  8368. libraries/xmlsec: Updated for version 1.2.32.
  8369. libraries/xmlsec: Updated for version 1.2.33.
  8370. libraries/xmltooling: Remove .la files.
  8371. libraries/xmltooling: Use the C++14 standard.
  8372. libraries/xulrunner: Removed (deprecated).
  8373. libraries/xview: Pass -fcommon for gcc >= 10.x, use libtirpc.
  8374. libraries/xview: Remove template comment.
  8375. libraries/xylib: Remove .la files.
  8376. libraries/yajl: Fix DOWNLOAD url.
  8377. libraries/yaml-cpp: Fix github tarball handling.
  8378. libraries/yaz: Remove .la files.
  8379. libraries/yaz: Remove .la files.
  8380. libraries/yaz: Remove .la files.
  8381. libraries/yder: updated for version 1.4.14
  8382. libraries/zeromq: Remove .la files.
  8383. libraries/zimg: Remove .la files.
  8384. libraries/zita-convolver: Remove template comment.
  8385. libraries/zmusic: Fixed dep info
  8386. libraries/zmusic: Updated for version 1.1.8.
  8387. libraries/zuluplay: Removed (no maintainer)
  8388. libraries/zziplib: Remove .la files.
  8389. misc/Colormake: Removed (no maintainer)
  8390. misc/OSCAR: Updated for version 1.3.0.
  8391. misc/Publican: Removed (missing perl dependencies).
  8392. misc/QCMA: Patch to allow building on -current.
  8393. misc/QCMA: Update DEP.
  8394. misc/abduco: Switch to https.
  8395. misc/abgx360: Removed (upstream is gone).
  8396. misc/abgx360gui: Removed (upstream is gone).
  8397. misc/ardesia: Fix icon path.
  8398. misc/ardesia: Patch to build on -current.
  8399. misc/asr-manpages: Fix DOWNLOAD.
  8400. misc/asterixInspector: Fixed dep info
  8401. misc/asterixInspector: Remove icon cache update.
  8402. misc/bbrun: Fix for gcc >= 10.x.
  8403. misc/bdf2psf: Updated for version 1.207, new maintainer.
  8404. misc/bdfresize: Add argument checking.
  8405. misc/biosdisk: Fix download URL.
  8406. misc/bodr: s,i486,i586,g
  8407. misc/bodr: update copyright years
  8408. misc/boncuk: Added the dependency qt4.
  8409. misc/brewtarget: Updated for version 2.3.1.
  8410. misc/chemical-mime-data: s,i486,i586,g
  8411. misc/chemical-mime-data: update copyright years
  8412. misc/chntpw: Updated for version 140201.
  8413. misc/ciso: New maintainer, add man page.
  8414. misc/clawsker: Add missing doinst.sh.
  8415. misc/cp437: Remove template comment.
  8416. misc/cups-windows: Removed (pretty sure this is obsolete)
  8417. misc/cwiid: Comment out the python-3.10 patch.
  8418. misc/cwiid: Fix build with python 3.10.
  8419. misc/cwiid: Updated for version 0.6.91_2.
  8420. misc/dcc: Updated for version 1.3.163.
  8421. misc/deroff: Remove template comment.
  8422. misc/dmg2img: Patch for openssl-1.1.x.
  8423. misc/doclifter: Updated for version 2.20, new maintainer.
  8424. misc/drg2sbg: Fixed dep info
  8425. misc/dwdiff: Updated for version 2.1.4.
  8426. misc/fbcat: Updated for version 0.5.2.
  8427. misc/fbdump: Remove template comment.
  8428. misc/fcitx-configtool: Removed (added to Slackware).
  8429. misc/fcitx-libpinyin: Removed (added to Slackware).
  8430. misc/fcitx-mozc: Disable building against qt-4.x.
  8431. misc/fcitx-mozc: Fixed dep info
  8432. misc/fcitx-mozc: Fixed dep info
  8433. misc/fcitx-qt5: Removed (added to Slackware).
  8434. misc/fcitx: Removed (added to Slackware).
  8435. misc/figlet: Fix i486 -> i586.
  8436. misc/flashrom: Updated for version v1.2.
  8437. misc/font-unscii: Remove template comment.
  8438. misc/fribid: Removed (not compatible with openssl-1.1.x).
  8439. misc/funny-manpages: Updated for version 2.3.
  8440. misc/g15daemon: Pass -fcommon for gcc >= 10.x.
  8441. misc/g15daemon: Remove .la files.
  8442. misc/g15stats: Update DEP.
  8443. misc/ghostpcl: Removed patch.
  8444. misc/ghostpcl: Updated for version 9.55.0.
  8445. misc/glogg: Fix DOWNLOAD.
  8446. misc/glogg: Updated for version 1.1.4.
  8447. misc/gnome-mime-data: Updated download link
  8448. misc/go-md2man: fix build on newer golang
  8449. misc/goldencheetah: Updated for Slackware 15.0
  8450. misc/gourmet: Add missing doinst.sh.
  8451. misc/gourmet: Fix REQUIRES for python2.
  8452. misc/gourmet: Switch from tostring to tobytes in the code.
  8453. misc/gr-iqbal: Updated for version 20210108_fbee239.
  8454. misc/gramps: Fix icon cache update.
  8455. misc/gramps: Fixed dep info in README
  8456. misc/gxmessage: Fix DOWNLOAD.
  8457. misc/hashkill: Fix github tarball handling.
  8458. misc/hashkill: Fixed dep info in README
  8459. misc/hashkill: Removed (not compatible with openssl-1.1.x).
  8460. misc/heimdall: Fix build (qmake => qmake-qt4).
  8461. misc/heimdall: Use the C++14 standard.
  8462. misc/heyu: Updated for version 2.10.3.
  8463. misc/hoorex: Updated for version 0.9.91
  8464. misc/hoorex: Updated for version 0.9.92
  8465. misc/html2ps: Various fixups for Slackware 15.0
  8466. misc/hxtools: Added (miscellaneous command-line tools).
  8467. misc/ibus-anthy: Removed (added to Slackware).
  8468. misc/ibus-chewing: Fix desktop file handling.
  8469. misc/ibus-chewing: Fixed dep info (ibus)
  8470. misc/ibus-hangul: Removed (added to Slackware).
  8471. misc/ibus-qt: Fixed dep info
  8472. misc/ibus-qt: Small script cleanup and depend on qt4
  8473. misc/ibus-qt: Updated maintainer email
  8474. misc/ibus-skk: Fixed dep info
  8475. misc/ibus-skk: Removed unused code from doinst.sh.
  8476. misc/ibus-unikey: Removed (added to Slackware).
  8477. misc/ibus: Removed (added to Slackware).
  8478. misc/igal2: Removed (ftp + no active maintainer)
  8479. misc/igal2: Updated for version 3.1.
  8480. misc/igal2: update copyright years
  8481. misc/jmri: Remove desktop file handling.
  8482. misc/jmri: Updated for version 4.26.
  8483. misc/kasumi: Use the C++14 standard.
  8484. misc/kcm-fcitx: Removed (added to Slackware).
  8485. misc/kde_cdemu: Fix download URL.
  8486. misc/kde_cdemu: Fix install dir.
  8487. misc/kde_cdemu: Updated for version 0.8.0.
  8488. misc/klibc: Fix support for PRINT_PACKAGE_NAME
  8489. misc/klibc: Updated for version 2.0.9.
  8490. misc/krename: Removed (added to Slackware).
  8491. misc/kronometer: Updated for version 2.2.3.
  8492. misc/lastpass-cli: Fix for gcc >= 10.x.
  8493. misc/libydpdict: Fix DOWNLOAD.
  8494. misc/libydpdict: Remove .la files.
  8495. misc/ltunify: Updated for version 0.3.
  8496. misc/mdic: Added the dependency qt4.
  8497. misc/megatunix: Fix for gcc >= 10.x.
  8498. misc/moreutils: Fix download URL.
  8499. misc/moreutils: Fix the parallel-removing routine.
  8500. misc/moreutils: Update README.
  8501. misc/moreutils: Updated for version 0.65.
  8502. misc/mosquitto: Fixed dep info
  8503. misc/mosquitto: Updated for version 2.0.11
  8504. misc/mosquitto: Updated for version 2.0.12
  8505. misc/mosquitto: Updated for version 2.0.13
  8506. misc/mosquitto: Updated for version 2.0.14
  8507. misc/nixnote: Removed.
  8508. misc/no-more-secrets: Updated for version 1.0.1.
  8509. misc/nvclock: Removed (obsolete and abandoned upstream)
  8510. misc/opencc: Removed (added to Slackware as OpenCC).
  8511. misc/ophcrack: Updated for version 3.8.0.
  8512. misc/oscar: Updated for version 1.2.0.
  8513. misc/owfs: Fix conflict w/libkqueue, rm .la files.
  8514. misc/owfs: Updated for version 3.2p4.
  8515. misc/par2cmdline-tbb: Fix header location.
  8516. misc/par: Remove template comment.
  8517. misc/pinfo: Fix building with gcc >= 10.x.
  8518. misc/pinfo: Fix building with the newer ncurses.
  8519. misc/pinfo: Remove template comment.
  8520. misc/po4a: Added the new dependency perl-Pod-Parser.
  8521. misc/po4a: Updated for version 0.65, new maintainer.
  8522. misc/projectM: Fix icon cache handling.
  8523. misc/projectM: Updated for version 3.1.12.
  8524. misc/projectM: Updated for version 3.1.7.
  8525. misc/protobuf3: Moved to development/protobuf3.
  8526. misc/protobuf3: Updated for version 3.15.8.
  8527. misc/protobuf3: Updated for version 3.16.0.
  8528. misc/protobuf3: Updated for version 3.17.0.
  8529. misc/protobuf3: Updated for version 3.17.1.
  8530. misc/protobuf3: Updated for version 3.17.2.
  8531. misc/protobuf3: Updated for version 3.17.3.
  8532. misc/protobuf3: Updated for version 3.18.0.
  8533. misc/protobuf3: Updated for version 3.18.1.
  8534. misc/protobuf3: Updated for version 3.19.1.
  8535. misc/protobuf3: Updated for version 3.19.3.
  8536. misc/protobuf3: Updated for version 3.19.4.
  8537. misc/protobuf: Fix dependency.
  8538. misc/protobuf: Remove .la files.
  8539. misc/protobuf: Removed (use protobuf3 instead).
  8540. misc/qtkeychain: Removed (added to Slackware).
  8541. misc/qtspell: Updated for version 0.9.0.
  8542. misc/ramdefrag: Fix download URL.
  8543. misc/rarcrack: Remove template comment.
  8544. misc/rbutil: Fixed dep info
  8545. misc/rbutil: Fixed dep info
  8546. misc/rbutil: Updated for Slackware 15.0
  8547. misc/readesm: Removed (no qt4-webkit available).
  8548. misc/recode: Remove .la files.
  8549. misc/rlwrap: Updated for version 0.45.1.
  8550. misc/rsibreak: Updated for version 0.12.13.
  8551. misc/rsibreak: Updated for version 0.12.14.
  8552. misc/samdump2: Patch for openssl-1.1.x.
  8553. misc/sbo-templates: Remove redundant doinst.sh.
  8554. misc/scim-chewing: Removed (no scim in Slackware anymore).
  8555. misc/sdcv: Fix VERSION.
  8556. misc/sdcv: Updated for version 0.5.3.
  8557. misc/sigrok-firmware-fx2lafw: Fix support for PRINT_PACKAGE_NAME
  8558. misc/slop: Compress manpages.
  8559. misc/solunar: Fixed DOWNLOAD.
  8560. misc/ssss: Fix file permissions.
  8561. misc/stardict-tools: Add missing gnome-common dependency.
  8562. misc/stardict-tools: Disabled narrowing warn., added -fpermissive.
  8563. misc/stardict-tools: Updated for version 3.0.6.2.
  8564. misc/stardict: Add missing gnome-common dependency.
  8565. misc/stardict: Updated for version 3.0.6.2.
  8566. misc/subsurface: Add an include for the newer qt5.
  8567. misc/subsurface: Fixed dep info
  8568. misc/tegaki-zinnia-japanese: Fix build when TMP != /tmp.
  8569. misc/texscythe: Removed (no longer needed)
  8570. misc/tidyp: Remove .la files.
  8571. misc/txt2regex: Remove template comment.
  8572. misc/txt2tags: Add the temporary PKG dir to PATH to let it build.
  8573. misc/txt2tags: Fix md5sum.
  8574. misc/txt2tags: Updated for version 3.7, new maintainer.
  8575. misc/utimer: Patch to build on -current.
  8576. misc/vdpauinfo: Updated for version 1.4, updated email
  8577. misc/vttest: Remove template comment.
  8578. misc/wcd: Updated for version 6.0.4_beta2.
  8579. misc/weather: Fix doinst.sh.
  8580. misc/wkhtmltopdf: Updated for version 0.12.6.
  8581. misc/wmbday: Fixed DOWNLOAD.
  8582. misc/xapian-omega: Updated for version 1.4.18.
  8583. misc/xbanish: Remove template comment.
  8584. misc/xdelta: Remove .la files.
  8585. misc/xwinwrap: Fix DOWNLOAD.
  8586. misc/yapet: Added a patch for gcc >= 6.x.
  8587. misc/yapet: Fix desktop file handling.
  8588. misc/yapet: Updated for version 2.5.
  8589. misc/yara: Remove .la files.
  8590. misc/yara: Updated for version 4.1.2.
  8591. misc/ydpdict: Updated for version 1.0.3.
  8592. misc/ykpers: Patch for json-c >= 0.14, pass -fcommon (gcc >= 10.x).
  8593. misc/ykpers: Remove .la files.
  8594. misc/yubioath-desktop: Fix desktop file handling.
  8595. misc/zinnia: Added a patch for gcc >= 6.x.
  8596. misc/zinnia: Remove .la files.
  8597. multimedia/DivFix++: Handle url-encoded filenames.
  8598. multimedia/ExMplayer: Removed (no maintainer)
  8599. multimedia/ExMplayer: Update DEP.
  8600. multimedia/Gem: Add missing ftgl dependency.
  8601. multimedia/Gem: Updated for version 0.94.
  8602. multimedia/HandBrake: Fixed dep info
  8603. multimedia/HandBrake: Kill jansson from REQUIRES
  8604. multimedia/HandBrake: Version bump to 1.5.1
  8605. multimedia/MediathekView: Updated for version 13.8.1.
  8606. multimedia/Mopidy: Update DEP.
  8607. multimedia/MuseScore: Added copyright and license.
  8608. multimedia/MuseScore: Disable WEBENGINE and TELEMETRY.
  8609. multimedia/MuseScore: Fix typo.
  8610. multimedia/MuseScore: Fixed dep info
  8611. multimedia/MuseScore: Updated for version 3.6.1.
  8612. multimedia/MuseScore: Updated for version 3.6.2.
  8613. multimedia/OpenPHT: Fixed dep info
  8614. multimedia/OpenPHT: Fixed dep info (again)
  8615. multimedia/OpenPHT: Removed (superseded by plex media player and plex htpc)
  8616. multimedia/QMPlay2: Update DEP.
  8617. multimedia/QMPlay2: Updated for version 21.03.09.
  8618. multimedia/SimpleSysexxer: Fix 15.0 build.
  8619. multimedia/aces-dev: Updated for version 1.3
  8620. multimedia/aces_container: Updated for version 1.0.2
  8621. multimedia/acetoneiso: Removed (no maintainer)
  8622. multimedia/acetoneiso: Update DEP.
  8623. multimedia/aegisub: Align with template
  8624. multimedia/aegisub: Fix build with the newer boost, icu4c and make.
  8625. multimedia/aegisub: Fix compatibility with newer ffms2.
  8626. multimedia/aegisub: Fixed dep info in README
  8627. multimedia/aegisub: Update HOMEPAGE.
  8628. multimedia/aom: Updated for version 3.3.0.
  8629. multimedia/apetag: Cleanup HTML doc.
  8630. multimedia/audio-recorder: Fixed dep info
  8631. multimedia/audiopreview: Add gstreamer0 dependency.
  8632. multimedia/audiopreview: Killed gst0-plugins-bad note
  8633. multimedia/audiopreview: Remove .la files.
  8634. multimedia/avidemux: Align with template
  8635. multimedia/avidemux: Fixed dep info
  8636. multimedia/avidemux: Patch for qt-5.15.x.
  8637. multimedia/avidemux: Updated for version 2.7.8.
  8638. multimedia/avidemux: Updated for version 2.8.0.
  8639. multimedia/bdtools: Remove .la files.
  8640. multimedia/beets: Fixed dep info
  8641. multimedia/beets: Killed pyechonest mention in README
  8642. multimedia/beets: Update DEP.
  8643. multimedia/beets: Updated for version 1.4.9.
  8644. multimedia/bino: Update DEP.
  8645. multimedia/bino: Updated for version 1.6.8, fix 15.0 build.
  8646. multimedia/bombono-dvd: Added two more patches for the newer gcc.
  8647. multimedia/bombono-dvd: Fix 15.0 build.
  8648. multimedia/bombono-dvd: Fixed dep info
  8649. multimedia/cantata: Update DEP.
  8650. multimedia/cantata: Updated for version 2.4.1.
  8651. multimedia/castget: Fixed dep info
  8652. multimedia/ccextractor: Patch for gcc >= 10.x.
  8653. multimedia/cinelerra: Fixed dep info
  8654. multimedia/cinelerra: Updated for version 20210211_54b918a.
  8655. multimedia/cinelerra: Updated for version 20210331_eabda9c.
  8656. multimedia/coriander: Fix build on -current.
  8657. multimedia/ctl: Fix 15.0 build.
  8658. multimedia/devedeng: Update DEP.
  8659. multimedia/dirac: Remove .la files.
  8660. multimedia/droidcam: Fixed dep info
  8661. multimedia/dsmidiwifi: Fix 15.0 build.
  8662. multimedia/dssi: Document qt4 optional dep.
  8663. multimedia/dvbsnoop: Removed (No maintainer).
  8664. multimedia/dvd-slideshow: Update DEP.
  8665. multimedia/dvd-slideshow: Updated for version 0.8.6_1.
  8666. multimedia/dvdauthor: Removed (added to Slackware).
  8667. multimedia/dvdbackup: Cleanups.
  8668. multimedia/dvdrip: Fix 15.0 build.
  8669. multimedia/dvdstyler: Update DEP.
  8670. multimedia/dvdstyler: Updated for version 3.1.2.
  8671. multimedia/dvgrab: Disabled narrowing warnings.
  8672. multimedia/emoc: Fix 15.0 build.
  8673. multimedia/farsight2: Fix REQUIRES.
  8674. multimedia/farsight2: Fix for gcc >= 10.x, patch for make >= 4.3.
  8675. multimedia/farsight2: Fixed dep info (libnice)
  8676. multimedia/farsight2: Remove .la files.
  8677. multimedia/farstream: Removed (added to Slackware).
  8678. multimedia/fdkaac: Updated for version 1.0.2.
  8679. multimedia/ffmpeg2theora: Fix build with py3 scons.
  8680. multimedia/ffmpeg2theora: Update DEP.
  8681. multimedia/ffmpeg4: Removed (added to Slackware).
  8682. multimedia/ffmpeg: Removed (added to Slackware).
  8683. multimedia/flashplayer-plugin: Removed. Good riddance.
  8684. multimedia/flowblade: Fix github tarball handling.
  8685. multimedia/flowblade: Fixed dep info
  8686. multimedia/flowblade: Updated for version 24564a.
  8687. multimedia/freshplayerplugin: Removed.
  8688. multimedia/freshplayerplugin: Update DEP.
  8689. multimedia/gecko-mediaplayer: Removed.
  8690. multimedia/get_iplayer: Update DEP.
  8691. multimedia/get_iplayer: Updated for version 3.28
  8692. multimedia/get_iplayer: Updated for version 3.29
  8693. multimedia/get_iplayer: updated for version 3.27
  8694. multimedia/gimp-gap: Fixed dep info
  8695. multimedia/glyr: Remove template comment.
  8696. multimedia/gmtp: Fix 15.0 build.
  8697. multimedia/gnash: Added (fixed build post-removal)
  8698. multimedia/gnash: Fixed dep info
  8699. multimedia/gnash: Remove stray space, note the opt dep qt4.
  8700. multimedia/gnash: Removed. It's dead, Jim.
  8701. multimedia/gnash: Updated for Slackware 15.0
  8702. multimedia/gnome-mplayer: Pass -fcommon for gcc >= 10.x.
  8703. multimedia/gnupod: Fixed dep info
  8704. multimedia/google-talkplugin: Fix support for PRINT_PACKAGE_NAME
  8705. multimedia/gpac: Patch for ffmpeg-4.x.
  8706. multimedia/gpac: Updated for version 1.0.1.
  8707. multimedia/gpodder: Update DEP.
  8708. multimedia/gst-libav: Removed (added to Slackware).
  8709. multimedia/gst-plugins-bad-nonfree: Added (encumbered GStreamer plugins).
  8710. multimedia/gst-plugins-bad: Fix build.
  8711. multimedia/gst-plugins-bad: Fix dep info (opencv)
  8712. multimedia/gst-plugins-bad: Removed (conflict w/Slackware gst-plugins-bad-free).
  8713. multimedia/gst-plugins-bad: Support alternatives for ninja
  8714. multimedia/gst-plugins-bad: Updated for version 1.18.3.
  8715. multimedia/gst-plugins-bad: Updated for version 1.18.4.
  8716. multimedia/gst-plugins-bad: Updated for version 1.18.5.
  8717. multimedia/gst-plugins-ugly: Support alternatives for ninja
  8718. multimedia/gst-plugins-ugly: Updated for version 1.18.3.
  8719. multimedia/gst-plugins-ugly: Updated for version 1.18.4.
  8720. multimedia/gst-plugins-ugly: Updated for version 1.18.5.
  8721. multimedia/gst0-ffmpeg: Patch for orc >= 0.4.30.
  8722. multimedia/gst0-plugins-bad: Removed (no more openssl-1.0.x).
  8723. multimedia/gst0-plugins-base: Added (gst plugins base set, v0).
  8724. multimedia/gst0-plugins-base: Remove la file.
  8725. multimedia/gst0-plugins-good: Added (gst plugins good set, v0).
  8726. multimedia/gst0-plugins-ugly: Added gst0-plugins-base dep.
  8727. multimedia/gst0-plugins-ugly: Fixed dep info
  8728. multimedia/gstreamer0: Add a README (thanks dive!).
  8729. multimedia/gstreamer0: Add a fix for the newer glib2 with gcc-11.x.
  8730. multimedia/gstreamer0: Added (streaming multimedia framework, v0).
  8731. multimedia/gstreaner0: Remove la file.
  8732. multimedia/gtick: Fix 15.0 build.
  8733. multimedia/gtkpod: Fix for gcc >= 10.x.
  8734. multimedia/gtkpod: Fixed dep info
  8735. multimedia/gtkpod: Removed.
  8736. multimedia/guvcview: Enable Qt5 support.
  8737. multimedia/guvcview: Update DEP.
  8738. multimedia/guvcview: Updated for version 2.0.7.
  8739. multimedia/hexter: Fix 15.0 build.
  8740. multimedia/huludesktop: Drop flashplayer dependency.
  8741. multimedia/huludesktop: Fix support for PRINT_PACKAGE_NAME
  8742. multimedia/imagination: Update DEP.
  8743. multimedia/imagination: Updated for version to 3.6.
  8744. multimedia/inputstream.adaptive: Added (kodi addon).
  8745. multimedia/k9copy-reloaded: Cleanups.
  8746. multimedia/k9copy-reloaded: Update DEP.
  8747. multimedia/kaffeine: Updated for version 2.0.18.
  8748. multimedia/kdenlive: Removed (added to Slackware).
  8749. multimedia/kodi: Avoid downloading things while building.
  8750. multimedia/kodi: Fix CEC variable.
  8751. multimedia/kodi: Fixed dep info
  8752. multimedia/kodi: Updated for version 19.4.
  8753. multimedia/l-smash: Add README to docdir.
  8754. multimedia/lightspark: Update DEP.
  8755. multimedia/lircaile: Removed (No maintainer).
  8756. multimedia/lives: Cleanups.
  8757. multimedia/lives: Fixed dep info
  8758. multimedia/lives: Remove .la files.
  8759. multimedia/lives: Updated for version 3.2.0.
  8760. multimedia/lsdvd: Remove template comment.
  8761. multimedia/lwks: Fix build script.
  8762. multimedia/lwks: Fix support for PRINT_PACKAGE_NAME
  8763. multimedia/lwks: Removed (membership and licensing changes).
  8764. multimedia/makemkv: Update DEP.
  8765. multimedia/mediainfo: Version bump, update patch, and copyright update
  8766. multimedia/mediatomb: Fixed dep info in README
  8767. multimedia/mediatomb: Removed.
  8768. multimedia/minidlna: Update DEP.
  8769. multimedia/minidlna: Updated for version 1.3.0, fix for gcc >= 10.x.
  8770. multimedia/minitube: Fix missing quote.
  8771. multimedia/minitube: Updated for version 3.9.3.
  8772. multimedia/mirage2iso: Add missing dep.
  8773. multimedia/mirage2iso: Added (convert CD images to ISO).
  8774. multimedia/miro: Killed gst0-plugins-bad note
  8775. multimedia/miro: Removed.
  8776. multimedia/miro: Update DEP.
  8777. multimedia/mjpegtools: Remove .la files.
  8778. multimedia/mjpegtools: Updated for version 2.2.1.
  8779. multimedia/mkclean: Removed (no maintainer)
  8780. multimedia/mkvalidator: Removed (no maintainer)
  8781. multimedia/mkvtoolnix: Fixed dep info in README
  8782. multimedia/mkvtoolnix: Updated for version 55.0.0.
  8783. multimedia/mkvtoolnix: Updated for version 60.0.0.
  8784. multimedia/mkvtoolnix: Updated for version 65.0.0.
  8785. multimedia/mlt: Removed (added to Slackware).
  8786. multimedia/mozplugger: Fix download URL.
  8787. multimedia/mp3fs: Fixed dep info
  8788. multimedia/mplayer-codecs32: Update copyright header
  8789. multimedia/mplayer-codecs64: Update copyright header
  8790. multimedia/mpv: Adjust REQUIRES for 15.0
  8791. multimedia/mpv: Apply upstream patch for the newer libplacebo api.
  8792. multimedia/mpv: Fixed dep info
  8793. multimedia/mpv: Updated for version 0.34.0
  8794. multimedia/mpv: Updated for version 0.34.1
  8795. multimedia/mtpfs: Remove template comment.
  8796. multimedia/musique: Killed gst0-plugins-bad in REQUIRES
  8797. multimedia/musique: Updated for version 1.10.1.
  8798. multimedia/mythplugins: Fix dependency.
  8799. multimedia/mythplugins: Removed (ftb + no active maintainer)
  8800. multimedia/mythtv: Fix qt5 version check.
  8801. multimedia/mythtv: Fixed dep info
  8802. multimedia/mythtv: Removed (ftb + no active maintainer)
  8803. multimedia/mythtv: Updated for version 29.0.
  8804. multimedia/nightingale: Removed (No maintainer).
  8805. multimedia/nted: Fix -current build.
  8806. multimedia/obs-studio: Update DEP.
  8807. multimedia/obs-studio: Updated for version 26.0.2.
  8808. multimedia/obs-studio: Updated for version 26.1.2.
  8809. multimedia/obs-studio: Updated for version 27.0.0
  8810. multimedia/obs-studio: Updated for version 27.0.1
  8811. multimedia/oggvideotools: Disabled narrowing warnings.
  8812. multimedia/openshot: Fixed dep info
  8813. multimedia/parole: Fixed dep info
  8814. multimedia/pepperflash-plugin: Removed.
  8815. multimedia/picard-plugins: Version bump and copyright update
  8816. multimedia/picard: Fix github tarball handling.
  8817. multimedia/picard: Install fix + version bump.
  8818. multimedia/picard: Revert new ownership claim
  8819. multimedia/picard: Updated for version 2.7.1.
  8820. multimedia/picard: Updated for version 2.7.2.
  8821. multimedia/picard: Updated for version 2.7.3.
  8822. multimedia/pitivi: Fixed dep info
  8823. multimedia/pitivi: Fixed dep info (gst-python3 -> gst-python)
  8824. multimedia/pitivi: Remove gst-plugins-bad dependency.
  8825. multimedia/pitivi: Updated for version 2021.05.
  8826. multimedia/playerctl: Updated for version 2.4.1.
  8827. multimedia/plex-home-theater: Fixed dep info
  8828. multimedia/plex-home-theater: Removed (ftbs, upstream dead).
  8829. multimedia/plex-home-theater: Use zulu-openjdk7.
  8830. multimedia/popcorntime: Fix download URL.
  8831. multimedia/pragha: Fix dependency info.
  8832. multimedia/pragha: Fixed dep info + kill gst0-p-bad
  8833. multimedia/pragha: Fixed jmtpfs dep mention
  8834. multimedia/qsampler: Updated for version 0.9.4, switch to cmake.
  8835. multimedia/ripit: Fix README.
  8836. multimedia/ripit: Update docs for -current.
  8837. multimedia/ripperX: Fixed dep info
  8838. multimedia/rosa-media-player: Added qt4 dependency.
  8839. multimedia/rosa-media-player: Fix 15.0 build.
  8840. multimedia/rosa-media-player: Update DEP.
  8841. multimedia/rtmpdump: Use gnutls instead of openssl.
  8842. multimedia/schroedinger: Remove .la files.
  8843. multimedia/shotcut: Fixed dep info
  8844. multimedia/shotcut: Update DEP.
  8845. multimedia/shotcut: Updated for version 21.12.24.
  8846. multimedia/simpleburn: Fix 15.0 build.
  8847. multimedia/simpleburn: Removed (upstream is dead).
  8848. multimedia/sinthgunt: Update DEP.
  8849. multimedia/smpeg: Disabled narrowing warnings, fix underlinking.
  8850. multimedia/smpeg: Don't install *.la files
  8851. multimedia/smpeg: Updated download URL
  8852. multimedia/smpeg: Updated maintainer email
  8853. multimedia/smplayer: Disable warnings-as-errors.
  8854. multimedia/smplayer: Updated for version 21.10.0.
  8855. multimedia/smtube: Build with qt5 by default
  8856. multimedia/spek: Update DEP.
  8857. multimedia/spotify: Align with template
  8858. multimedia/spotify: Fix download URL.
  8859. multimedia/spotify: Updated icon cache.
  8860. multimedia/straw-viewer: Removed (use pipe-viewer instead).
  8861. multimedia/straw-viewer: Updated for version 0.1.3.
  8862. multimedia/strawberry: Fixed dep info
  8863. multimedia/strawberry: REQUIRES protobuf => protobuf3.
  8864. multimedia/subtitlecomposer: Removed (needs kde4).
  8865. multimedia/subtitleeditor: Remove .la files.
  8866. multimedia/subtitleeditor: Updated for version 20191130_4c215f4.
  8867. multimedia/tabu_audio_player: Added gstreamer0 dep.
  8868. multimedia/telepathy-farstream: Remove .la files.
  8869. multimedia/telepathy-glib: Remove .la files.
  8870. multimedia/telepathy-glib: Update DEP.
  8871. multimedia/telepathy-qt: Add qt4 dependency.
  8872. multimedia/tomahawk: Fixed dep info
  8873. multimedia/tomahawk: Removed (libechonest dep is gone)
  8874. multimedia/totem: Fix 15.0 build, WIP, merge.
  8875. multimedia/totem: Fixed dep info in README
  8876. multimedia/totem: Removed (no maintainer, ftbfs).
  8877. multimedia/tovid: Update DEP.
  8878. multimedia/tragtor: Update DEP.
  8879. multimedia/transcode: Build against libv4lconvert
  8880. multimedia/transcode: Fixed dep info
  8881. multimedia/transcode: Patch for glibc >= 2.32, gcc >= 10.x.
  8882. multimedia/transcode: Updated maintainer email
  8883. multimedia/tvheadend: Fix build (network access).
  8884. multimedia/tvheadend: Updated for version 4.2.8.
  8885. multimedia/tvtime: Fix building with the newer compiler.
  8886. multimedia/tvtime: Updated for version 1.0.11, cleanups.
  8887. multimedia/vapoursynth-mvtools: Remove .la files.
  8888. multimedia/vapoursynth: Fix build on current.
  8889. multimedia/vapoursynth: Remove .la files.
  8890. multimedia/vcdimager: Remove .la files.
  8891. multimedia/vcdimager: Updated for version 2.0.1.
  8892. multimedia/vgmplay: Fix 15.0 build.
  8893. multimedia/videocut: Fix 15.0 build.
  8894. multimedia/vitunes-mplayer: Fix README.
  8895. multimedia/vitunes-mplayer: Remove template comment.
  8896. multimedia/vkeybd: Remove template comment.
  8897. multimedia/vlc: Enable libva, disable opencv, cleanups.
  8898. multimedia/vlc: Fix MD5SUM
  8899. multimedia/vlc: Fix build.
  8900. multimedia/vlc: Fixed dep info
  8901. multimedia/vlc: Fixed wayland notes in README
  8902. multimedia/vlc: Fixes for Slackware 15.0
  8903. multimedia/vlc: Remove .la files.
  8904. multimedia/vlc: Remove libupnp & libmatroska from REQUIRES
  8905. multimedia/vlc: Update REQUIRES protobuf to protobuf3.
  8906. multimedia/vlc: Updated for version 3.0.13
  8907. multimedia/vlc: Updated for version 3.0.14
  8908. multimedia/vlc: Updated for version 3.0.16
  8909. multimedia/vobsub2srt: Cleanups.
  8910. multimedia/vobsub2srt: Fix build with newer g++.
  8911. multimedia/vokoscreenNG: Fixed dep info
  8912. multimedia/vokoscreenNG: Updated for version 3.1.0.
  8913. multimedia/w_scan: Patch for gcc >= 10.x.
  8914. multimedia/webvfx: Fixed dep info
  8915. multimedia/winff: Removed (no maintainer)
  8916. multimedia/winff: Update DEP.
  8917. multimedia/wxcam: Force use of wxPython.
  8918. multimedia/wxcam: Use the C++14 standard.
  8919. multimedia/x264: Updated download URL
  8920. multimedia/x264: Updated for version git_20210613_5db6aa6c
  8921. multimedia/x264: Updated maintainer email
  8922. multimedia/x265: Updated for version 3.5.
  8923. multimedia/xawtv: Fix build on Slackware 15.
  8924. multimedia/xjadeo: Fix build with newer portmidi.
  8925. multimedia/xjadeo: Update DEP.
  8926. multimedia/xjadeo: Updated for version 0.8.10.
  8927. multimedia/xjadeo: fix syntax in info file
  8928. multimedia/xmltv: Updated for version 0.6.3, cleanups.
  8929. multimedia/xmms-crossfade: Reflow README.
  8930. multimedia/xmms-cue: Fix download URL.
  8931. multimedia/xvidcore: Updated for version 1.3.7
  8932. multimedia/xvidcore: Updated maintainer email
  8933. multimedia/xvst: Fixed dep info
  8934. multimedia/yarock: Fix 15.0 build.
  8935. multimedia/youtube-viewer: Removed (no maintainer)
  8936. multimedia/zvbi: Remove .la files.
  8937. multimedir/pipe-viewer: Added (youtube CLI/GUI).
  8938. multiple/pyxdg: Update DEP.
  8939. multiple/qt5: Update DEP.
  8940. network/2ping: Updated for version 4.5.1.
  8941. network/BitchX: Removed (ftb)
  8942. network/CherryMusic: Fixed dep info in README
  8943. network/EarthReader-Web: Add Python3 support.
  8944. network/EarthReader-Web: added python3-waitress as REQUIREMENT for python3 version
  8945. network/Electrum-DASH: Fix REQUIRES for python2.
  8946. network/Electrum-DASH: REQUIRES protobuf => protobuf3.
  8947. network/Electrum-DASH: Update DEP.
  8948. network/Electrum-DASH: Use python3/qt5.
  8949. network/Electrum: Fixed dep info
  8950. network/Electrum: Update DEP.
  8951. network/Electrum: Updated for version 4.1.2.
  8952. network/FireWorks: Fix REQUIRES for python2.
  8953. network/FireWorks: Fix dependency.
  8954. network/Free-Cinema: Change BeautifulSoup4 DEP to python2-BeautifulSoup4
  8955. network/GeoIP: Remove .la files.
  8956. network/GhostInTheMail: Add -fcommon to CFLAGS.
  8957. network/Icecat: Removed (unmaintained, ftbfs).
  8958. network/MEGAsync: Fixed dep info
  8959. network/MEGAsync: Kill libuv from REQUIRES
  8960. network/MEGAsync: Killed cryptopp dep
  8961. network/MEGAsync: Updated for version 4.3.7.0.
  8962. network/MEGAsync: Updated for version 4.5.3.0.
  8963. network/NetworkManager-l2tp: Fix github tarball handling.
  8964. network/NetworkManager-l2tp: Updated for version 1.20.0.
  8965. network/NetworkManager-openconnect: Disable libnm-glib compat.
  8966. network/NetworkManager-openconnect: Updated for version 1.2.6.
  8967. network/NetworkManager-openvpn: Removed (added to Slackware).
  8968. network/NetworkManager-pptp: Updated for version 1.2.8.
  8969. network/NetworkManager-pptp: Updated for version 20200716_382a8a2.
  8970. network/NetworkManager-vpnc: Updated for version 1.2.6.
  8971. network/NetworkManager-vpnc: tweaks for Slackware 15.0
  8972. network/NetworkManager: Fix maintainer email typo.
  8973. network/Quaternion: Kill qtkeychain@SBo mention
  8974. network/RTL8192: Fix support for PRINT_PACKAGE_NAME
  8975. network/RTL8192: Removed (waiting for the new version, rtl8192eu).
  8976. network/RYMTacks: Update DEP
  8977. network/RYMTracks: Add python2-BeautifulSoup4 DEP
  8978. network/RYMTracks: Update DEP.
  8979. network/SpiderOakONE: Align with template
  8980. network/TeamSpeak3: Fixed dep info
  8981. network/UDR: Fix github tarball handling.
  8982. network/XD: Fix build with newer google-go-lang.
  8983. network/XD: Fix github tarball handling.
  8984. network/aMule: Fix README wording
  8985. network/aMule: Fix freeze problems.
  8986. network/aMule: Fixed dep info
  8987. network/aMule: Updated for version 2.3.3.
  8988. network/aMule: Updated for version r11055.
  8989. network/aMule: Use wxGTK3.
  8990. network/aircrack-ng: Pass -fcommon for gcc >= 10.x.
  8991. network/aircrack-ng: Remove .la files.
  8992. network/airpwn-ng: Removed
  8993. network/airpwn: Remove .la files.
  8994. network/aldryn-client: Fix REQUIRES for python2.
  8995. network/aldryn-client: Update DEP.
  8996. network/amavisd-new: Create PIDDIR during init
  8997. network/amavisd-new: Updated README.
  8998. network/anydesk: Fix BUILD usage.
  8999. network/anydesk: Updated for version 6.1.1.
  9000. network/argus-clients: Updated for version 3.0.8.3.
  9001. network/aria2: Fixed dep info
  9002. network/aria2: Updated for version 1.36.0.
  9003. network/arm: Removed.
  9004. network/arno-iptables-firewall: Fix support for PRINT_PACKAGE_NAME
  9005. network/arora: Removed (unmaintained upstream).
  9006. network/asciinema: Updated for version 2.1.0.
  9007. network/asterisk: Fixed dep info
  9008. network/asterisk: create piddir during init
  9009. network/atftp: Remove template comment.
  9010. network/atheme: Fixed dep info
  9011. network/authbind: Fix README.
  9012. network/authbind: Remove template comment.
  9013. network/avahi: Disable mono support (broken).
  9014. network/avahi: Enable qt5 for Slackware 15.0
  9015. network/avahi: Fix build.
  9016. network/avahi: Fix path to python3.
  9017. network/avahi: Remove la files.
  9018. network/awscli: Update DEP.
  9019. network/awstats: Updated for version 7.7.
  9020. network/awstats: Updated for version 7.8.
  9021. network/b43-firmware: Fix homepage link in README.
  9022. network/b43-fwcutter: s,i486,i586,g
  9023. network/barnyard2: Fix build on 15.0.
  9024. network/base: Removed (ftp + no active maintainer)
  9025. network/basilisk-bin: Updated for version 2022.01.27.
  9026. network/basilisk: Removed (upstream development suspended).
  9027. network/basilisk: Update DEP.
  9028. network/bip: Disable some warning-as-errors.
  9029. network/bip: Updated for version 0.9.0.
  9030. network/bird: Removed (no maintainer).
  9031. network/bitcoin: Fixed dep info
  9032. network/bitcoin: Patch for qt-5.15.x.
  9033. network/bitcoin: Remove .la files.
  9034. network/bitcoin: Updated for version 22.0.
  9035. network/bluejeans: Fix build after template adjustment.
  9036. network/bluejeans: Updated to version 2.22.0.87
  9037. network/bmon: Fix README.
  9038. network/bmon: Remove template comment.
  9039. network/bollux: Update MD5SUM.
  9040. network/boxcryptor: Removed (No maintainer).
  9041. network/bozohttpd: Fix 15.0 build.
  9042. network/bozohttpd: Updated for version 20210227.
  9043. network/brave-browser: Fixed dep info
  9044. network/brave-browser: Updated for version 1.35.100.
  9045. network/brave-browser: Updated for version 1.35.103.
  9046. network/broadcom-sta: Removed (no maintainer)
  9047. network/btpd: Fix github tarball handling.
  9048. network/bwm-ng: Added a patch for gcc >= 7.x.
  9049. network/bwm-ng: Remove old gcc7 patch.
  9050. network/c-toxcore: Fixed dep info
  9051. network/canto: Update DEP.
  9052. network/cclive: Removed (Not building on 15.0).
  9053. network/ccnet: Fix download URL.
  9054. network/ccnet: Fixed dep info
  9055. network/ccnet: Remove .la files.
  9056. network/ccnet: Updated for version 6.1.8.
  9057. network/cherokee: Remove .la files.
  9058. network/cherokee: Updated for version 20180709_9a75e65.
  9059. network/chrony: Updated for version 4.2.
  9060. network/cicb: Updated for version 5.1.2b1+git20191209.
  9061. network/claws-mail: Updated for version 3.17.8.
  9062. network/claws-mail: Updated for version 4.0.0.
  9063. network/clipgrab: Fixed dep info
  9064. network/cmst: Removed (no maintainer)
  9065. network/connman: Removed (no maintainer)
  9066. network/corebird: Fixed dep info
  9067. network/corebird: Removed.
  9068. network/courier-authlib: Adjust REQUIRES. Disable static.
  9069. network/courier-unicode: Updated for version 2.2.3.
  9070. network/csync: Fixed dep info
  9071. network/cyrus-imapd: Fixed dep info
  9072. network/cyrus-imapd: Remove .la files.
  9073. network/dante: Updated for version 1.4.3.
  9074. network/darkstat: Updated for version 3.0.721.
  9075. network/davmail: Align with template
  9076. network/dbmail: Fixed dep info
  9077. network/dbmail: Removed.
  9078. network/dclib: Fix build on 15.0.
  9079. network/dclib: Removed.
  9080. network/ddgr: Updated for version 1.9.
  9081. network/ddgr: Use systemwide dir for bash-completion file
  9082. network/deis: Fix REQUIRES for python2.
  9083. network/deis: Fix dependency.
  9084. network/deis: Update DEP.
  9085. network/deis: Update DEP.
  9086. network/deluge: Fix REQUIRES.
  9087. network/deluge: Update DEP.
  9088. network/deluge: Update DEP.
  9089. network/deluge: Update DEP.
  9090. network/dianara: Updated for version 1.4.3.
  9091. network/dillo: Patched for openssl >= 1.1.x and gcc >= 10.x.
  9092. network/dirb: Add -fcommon to CFLAGS.
  9093. network/discord: Fixed dep info
  9094. network/discord: Updated for version 0.0.15.
  9095. network/discord: Updated for version 0.0.17.
  9096. network/discord: Version bump to 0.0.16.
  9097. network/dmitry: Fix for gcc >= 10.x.
  9098. network/dnscrypt-proxy: Updated for version 2.0.45.
  9099. network/dnscrypt-wrapper: Fixed dep info
  9100. network/dobbscoin: Add qt4 dependency.
  9101. network/dobbscoin: Fixed dep info
  9102. network/dobbscoin: REQUIRES protobuf => protobuf3.
  9103. network/dobbscoin: Removed.
  9104. network/dobbscoin: Switch to clang to let it build, changed md5sum.
  9105. network/docsis: Add -fcommon to CFLAGS.
  9106. network/dogecoin: Fixed dep info
  9107. network/dogecoin: Removed.
  9108. network/dovecot-pigeonhole: Fixed dep info
  9109. network/dovecot-pigeonhole: Updated for version 0.5.13.
  9110. network/dovecot-pigeonhole: Updated for version 0.5.17.
  9111. network/dovecot: Removed (added to Slackware).
  9112. network/drawterm: Updated for version 1d3e2b3502f1.
  9113. network/drawterm: Updated for version dc703b3438f9.
  9114. network/dropbear: Fix backing up openssh scp.
  9115. network/dropbox: Update desktop file.
  9116. network/dropbox: Updated for version 121.4.4267.
  9117. network/dropbox: Updated for version 123.4.4832.
  9118. network/dropbox: Updated for version 125.4.3474.
  9119. network/dropbox: Updated for version 128.4.2870.
  9120. network/dropbox: Updated for version 129.4.3571.
  9121. network/dropbox: Updated for version 130.4.4978.
  9122. network/dropbox: Updated for version 131.4.3968.
  9123. network/dropbox: Updated for version 133.4.4089.
  9124. network/dropbox: Updated for version 136.4.4345.
  9125. network/dropbox: Updated for version 138.4.2392.
  9126. network/dropbox: Updated for version 139.4.4896.
  9127. network/dropbox: Updated for version 140.4.1951.
  9128. network/dropbox: Updated for version 143.3.4161.
  9129. network/dsniff: Update to the latest debian patches.
  9130. network/dukto: Add the dependency qt4.
  9131. network/dwb: Removed (requires webkitgtk, use vimb instead).
  9132. network/efax-gtk: Fix for gcc >= 10.x.
  9133. network/efax: Pass -fcommon for gcc >= 10.x.
  9134. network/eiskaltdcpp: Updated for version 2.4.2. Add dep miniupnpc.
  9135. network/ekiga: Patch for the newer boost, libresolv and gcc.
  9136. network/ekiga: Removed.
  9137. network/elemental-ircd: Create piddir during init
  9138. network/elemental-ircd: Don't set $USER inside a script
  9139. network/elemental-ircd: Fix logrotate script
  9140. network/elemental-ircd: Removed.
  9141. network/elemental-ircd: Use setpriv instead of su for init
  9142. network/elinks: Fix documentation generation.
  9143. network/elinks: Updated for version git20170723.
  9144. network/emacs-w3m: Removed.
  9145. network/emacs-w3m: Updated for version cvs_1.4.569_0.20170110.
  9146. network/emesene: Removed (No maintainer).
  9147. network/enet: Remove .la files.
  9148. network/et: Fixed dep info
  9149. network/et: Removed.
  9150. network/et: Updated for version 6.1.11.
  9151. network/et: added cmake option -DDISABLE_VCPKG=ON
  9152. network/etcd: Removed.
  9153. network/etherape: Fixed dep info
  9154. network/etherape: Updated for version 0.9.20.
  9155. network/ettercap-NG: Removed (incompatible with the newer openssl).
  9156. network/ettercap: Added the dependency GeoIP.
  9157. network/exim: Updated for version 4.94.2.
  9158. network/fail2ban: Don't remove entire /usr/share directory
  9159. network/fail2ban: Install bash completion by default
  9160. network/fail2ban: Updated for version 0.11.2.
  9161. network/falkon: Removed (added to Slackware).
  9162. network/fcgiwrap: Disabled some warnings-as-errors.
  9163. network/fdm: Fix MD5SUM.
  9164. network/fdm: Fix for upstream tarball change.
  9165. network/fdm: Updated for version 2.0.
  9166. network/fdns: Add -fcommon to CFLAGS.
  9167. network/fdns: Update DEP.
  9168. network/felinks: Fix DOWNLOAD.
  9169. network/felinks: Fix github tarball handling.
  9170. network/filezilla: Remove la files.
  9171. network/filezilla: Updated for version 3.51.0.
  9172. network/filezilla: Updated for version 3.53.1.
  9173. network/filezilla: Updated for version 3.54.1.
  9174. network/filezilla: Updated for version 3.55.0.
  9175. network/filezilla: Updated for version 3.55.1.
  9176. network/filezilla: Updated for version 3.56.0.
  9177. network/filezilla: Updated for version 3.56.2.
  9178. network/filezilla: Updated for version 3.57.0.
  9179. network/filezilla: Updated for version 3.58.0.
  9180. network/firewalld: Fix REQUIRES for python2.
  9181. network/firewalld: Fix REQUIRES.
  9182. network/firewalld: Updated for version 0.9.3.
  9183. network/flexget: Add python2-BeautifulSoup4 DEP
  9184. network/flexget: Update DEP.
  9185. network/flexget: Update DEP.
  9186. network/fqterm: Add qt4 to REQUIRES.
  9187. network/fqterm: Updated for version 0.9.8.4, cleanups.
  9188. network/franz: Updated for version 5.7.0.
  9189. network/franz: Updated for version 5.8.0.
  9190. network/freedownloadmanager: Updated MD5SUM.
  9191. network/freeradius-server: Remove .la files.
  9192. network/freeradius-server: Updated for version 3.0.21.
  9193. network/freerdp: Pass -fcommon for gcc >= 10.x.
  9194. network/freerdp: Removed (added to Slackware).
  9195. network/freerdp: Update DEP.
  9196. network/freerdp: Updated for version 2.3.2, enable wayland.
  9197. network/frr: Disable docs to build on 15.0.
  9198. network/frr: Fixed dep info
  9199. network/frr: Use /var/lib/frr instead of /var/run/frr
  9200. network/ftp-cloudfs: Fix REQUIRES for python2.
  9201. network/ftp-cloudfs: Fix dependency.
  9202. network/fwbuilder: Removed (ftb + no active maintainer)
  9203. network/fwknop: Add -fcommon to CFLAGS.
  9204. network/fwknop: Remove .la files.
  9205. network/gajim: Updated for version 1.3.3.
  9206. network/ganglia-web: Removed.
  9207. network/ganglia: Removed.
  9208. network/glassfish: Removed (No maintainer).
  9209. network/glewlwyd: updated for version 2.5.3
  9210. network/glewlwyd: updated for version 2.5.4
  9211. network/glewlwyd: updated for version 2.6.0
  9212. network/glewlwyd: updated for version 2.6.1
  9213. network/glusterfs: Fix for gcc >= 10.x.
  9214. network/glusterfs: Install bash-completion file to system dir
  9215. network/glusterfs: Remove .la files.
  9216. network/gmvault: Update DEP.
  9217. network/gnome-bluetooth: Remove .la files.
  9218. network/gns3: Align with template
  9219. network/googler: Install bash-completion file to system dir
  9220. network/googler: Updated for version 4.3.2.
  9221. network/gophernicus: Updated for version 3.1.1.
  9222. network/gq: Removed.
  9223. network/graphite-carbon: Fix REQUIRES for python2.
  9224. network/graphite-carbon: Fix REQUIRES.
  9225. network/greenbone-security-assistant: Removed.
  9226. network/grsync: Updated for version 1.2.8.
  9227. network/grsync: Updated for version 1.3.0.
  9228. network/gtk-gnutella: Updated for version 1.2.1.
  9229. network/gtk-gnutella: Updated for version 1.2.2.
  9230. network/gtmess: Removed.
  9231. network/guacamole-client: Fix support for PRINT_PACKAGE_NAME
  9232. network/guacamole-server: Fixed dep info in README
  9233. network/guacamole-server: Removed freerdp dep (part of slackware).
  9234. network/guacamole-server: Removed.
  9235. network/haproxy: Updated for version 2.5.3.
  9236. network/haskell-network-multicast: Updated for version 0.3.2.
  9237. network/havp: Updated for version 0.93.
  9238. network/heimdal: Fixed for Slackware 15.0
  9239. network/hiawatha: Revert php version change needed by 14.2
  9240. network/hping3: Pass -fcommon for gcc >= 10.x.
  9241. network/httpie: Update DEP.
  9242. network/httrack: Remove .la files.
  9243. network/httrack: Updated for version 3.49.2.
  9244. network/hydra: Add -fcommon to CFLAGS.
  9245. network/hylafax+: Updated for version 7.0.5.
  9246. network/hylafax: Patch for the newer gcc.
  9247. network/hylafax: Removed (ftb + no active maintainer)
  9248. network/icinga2: Fix installing docs.
  9249. network/icinga2: Updated for version 2.13.2.
  9250. network/icyque: Fixed dep info
  9251. network/ifstatus: Removed (FTBS and upstream dead).
  9252. network/ike: Fixed dep info
  9253. network/ike: Removed.
  9254. network/imapfilter: Updated for version 2.7.5.
  9255. network/imapproxy: Removed.
  9256. network/insync: Fixing a broken link.
  9257. network/insync: Updated for version 3.3.9
  9258. network/ip2location-c: Remove .la files.
  9259. network/iperf3: Remove .la files.
  9260. network/iperf: Updated for version 2.0.8.
  9261. network/ipscan: Removed (no maintainer)
  9262. network/iptv-analyzer: Fix support for PRINT_PACKAGE_NAME
  9263. network/iptv-analyzer: Removed.
  9264. network/ipv6calc: Updated for version 4.0.1.
  9265. network/ipxnet: Fix doinst.sh.
  9266. network/irc.c: Added (minimalist curses IRC client).
  9267. network/ircII: Updated for version 20210616_2.
  9268. network/ircd-hybrid: Create piddir during init
  9269. network/ircd-hybrid: Updated for version 8.2.38
  9270. network/ircd-hybrid: Updated for version 8.2.39
  9271. network/ircd-hybrid: Use setpriv instead of su for init
  9272. network/irssi-python: Updated for version test4_1.2.3.
  9273. network/irssi_otr: Updated for version 1.2.3.
  9274. network/jabberd2: Create piddir during init
  9275. network/jabberd2: Updated for version 2.7.0.
  9276. network/jigdo: Patch for gcc >= 7.x.
  9277. network/jigdo: Updated for version 0.8.1.
  9278. network/jitsi: Updated for version 5633.
  9279. network/kadu: Removed (unmaintained).
  9280. network/kcm_ufw: Removed.
  9281. network/kea: Remove .la files.
  9282. network/kea: Updated for version 2.1.3.
  9283. network/keepalived: Updated for version 2.2.7.
  9284. network/kfilebox: Removed.
  9285. network/kirc: Added (tiny IRC client).
  9286. network/kismet: Updated for version 2022.02.R1 + new maintainer.
  9287. network/kivy-garden: Update DEP.
  9288. network/kmess: Removed (upstream dead, msn service dead).
  9289. network/knemo: Removed.
  9290. network/knock: Updated for version 0.7, cleanups.
  9291. network/kobby: Removed (no kde4 anymore).
  9292. network/konversation: Removed (added to Slackware).
  9293. network/krb5: Removed (added to Slackware).
  9294. network/kstart: Fixed dep info
  9295. network/kubectl: Updated for version 1.23.0.
  9296. network/kvirc: Fix 15.0 build.
  9297. network/kvirc: Fixed dep info
  9298. network/kvirc: Updated for version 5.0.0.
  9299. network/leafnode: s,i486,i586,g
  9300. network/leechcraft: Removed (unmaintained).
  9301. network/libcapi20: Removed (roger-router is removed).
  9302. network/libdnet: Remove .la files.
  9303. network/libident: Remove .la files.
  9304. network/libident: Updated copyright
  9305. network/libinfinity: Removed (unused).
  9306. network/libiscsi: Fix conflict with cunit.
  9307. network/libiscsi: Remove .la files.
  9308. network/libmaxminddb: Remove .la files.
  9309. network/libnfsidmap: Remove .la files.
  9310. network/libqinfinity: Removed (unused).
  9311. network/libteam: Fixed dep info
  9312. network/libteam: Remove .la files.
  9313. network/licq: Removed (No maintainer).
  9314. network/liferea: Fixed dep info
  9315. network/lighttpd2: Fixed dep info
  9316. network/lighttpd2: Removed (still too unripe).
  9317. network/lighttpd: Updated for version 1.4.59.
  9318. network/lighttpd: Updated for version 1.4.64.
  9319. network/limnoria: Fix github tarball handling.
  9320. network/limnoria: Updated for version 2021_04_11.
  9321. network/linksys-tftp: Add -fcommon to CFLAGS.
  9322. network/linphone: Fix DOWNLOAD.
  9323. network/linphone: Fixed DOWNLOAD.
  9324. network/linphone: Fixed dep info
  9325. network/linphone: Remove .la files.
  9326. network/linssid: Tweak README.
  9327. network/linuxdcpp: Force -std=gnu++98 for the newer gcc.
  9328. network/linuxdcpp: Removed.
  9329. network/livestreamer: Update DEP.
  9330. network/lizardfs: Add -fcommon to CFLAGS.
  9331. network/lldpd: Remove .la files.
  9332. network/luakit: Fix md5sum.
  9333. network/luakit: Updated for version 2.3, change maint. email.
  9334. network/maildrop: Updated for version 3.0.7.
  9335. network/mailman: Update DEP.
  9336. network/mailman: Updated for version 2.1.39.
  9337. network/mailspring: Updated for version 1.9.1.
  9338. network/mailspring: Updated for version 1.9.2
  9339. network/mattermost-desktop: Fix support for PRINT_PACKAGE_NAME
  9340. network/memcached: Updated for version 1.6.9.
  9341. network/midori: Fix github tarball handling.
  9342. network/midori: Patch to fix focus issue.
  9343. network/midori: Support alternatives for ninja
  9344. network/midori: Updated for version 9.0.
  9345. network/miniupnpd: Updated for version 2.3.0.
  9346. network/miredo: Removed (No maintainer).
  9347. network/mitmproxy-bin: Added (interactive HTTPS proxy).
  9348. network/mk-livestatus: Add -fcommon to CFLAGS.
  9349. network/mk-livestatus: Update DOWNLOAD.
  9350. network/mkvserver_mk2: Update DEP.
  9351. network/mldonkey: Removed.
  9352. network/mldonkey: Updated for version 3.1.6, cleanups.
  9353. network/mod_auth_gssapi: Fixed dep info
  9354. network/mod_auth_kerb: Fixed dep info
  9355. network/mod_dnssd: Various tweaks for Slackware 15.0
  9356. network/monkey: Add -fcommon to CFLAGS.
  9357. network/monkey: Don't package /var/run/monkey
  9358. network/mosaic-ck: Updated for version 2.7ck13.
  9359. network/mosh: Added -fpermissive to the CXXFLAGS.
  9360. network/mosh: REQUIRES protobuf => protobuf3.
  9361. network/mrtg: Updated for version 2.7.10.
  9362. network/msmtp: Fix README.
  9363. network/msn-proxy: Removed (MSN Messenger is long dead)
  9364. network/mumble-server: Fix .info.
  9365. network/mumble-server: Fix DOWNLOAD.
  9366. network/mumble-server: Remove NUMJOBS.
  9367. network/mumble-server: Renamed murmur to mumble-server
  9368. network/mumble-server: Upgraded for version 1.4.230
  9369. network/mumble: Fix DOWNLOAD.
  9370. network/mumble: Fixed README (speech-dispatcher mention)
  9371. network/mumble: Fixed dep info
  9372. network/mumble: Remove NUMJOBS.
  9373. network/mumble: Updated maintainer email
  9374. network/mumble: upgraded for version 1.4.230
  9375. network/munge: Fix 15.0 build.
  9376. network/munge: Fix typo in script.
  9377. network/munge: Remove .la files.
  9378. network/murmur: Create piddir during init
  9379. network/murmur: Updated maintainer email
  9380. network/murmur: fix rc.d path
  9381. network/murmur: fix rc.murmur edit
  9382. network/museek+: Removed.
  9383. network/nagios: Add a fix for gcc >= 10.x.
  9384. network/nagios: Updated for version 4.4.6.
  9385. network/nagiosgraph: Fix support for PRINT_PACKAGE_NAME
  9386. network/nbd: Updated for version 3.22
  9387. network/nbd: Updated for version 3.23
  9388. network/ncp: Fix README.
  9389. network/ncp: Fix for recent libowfat.
  9390. network/ncp: Remove template comment.
  9391. network/ncrack: Added -fpermissive to the CXXFLAGS.
  9392. network/ncrack: Updated for version 0.7.
  9393. network/neomutt: Fixed dep info; build with libidn2 by default
  9394. network/netdiscover: Add -fcommon to CFLAGS.
  9395. network/netdrive-connector: Fixed dep info in README
  9396. network/netperf: Updated for version 2.7.0.
  9397. network/netsurf: Updated for version 3.10.
  9398. network/netsurf: fix executable in desktop file.
  9399. network/newsboat: Fixed dep info.
  9400. network/newsboat: Updated for version 2.24.
  9401. network/newsboat: Updated for version 2.25.
  9402. network/newsboat: Updated for version 2.26.
  9403. network/nextclound-client: Fixed dep info
  9404. network/nfdump: Add -fcommon to CFLAGS.
  9405. network/nghttp2: Removed (added to Slackware).
  9406. network/nginx: Fixed dep info in REAME
  9407. network/nginx: Updated for version 1.21.6.
  9408. network/ngircd: Updated for version 26.1.
  9409. network/ngrok: Updated for version 2.3.39
  9410. network/ngrok: Updated for version 2.3.40
  9411. network/nordvpn: Fixed dep info in README
  9412. network/nsd: Align with template
  9413. network/nsd: Create piddir during init
  9414. network/nsd: Fix logrotate file for non-root /var/log subdir
  9415. network/nss-mdns: Tweak for Slackware 15.0
  9416. network/ntop: Removed.
  9417. network/ntpclient: Fix -current build.
  9418. network/offlineimap: Fix duplicated dependencies.
  9419. network/offlineimap: Fixed dep info
  9420. network/offlineimap: Updated for version 7.3.4.
  9421. network/onedrive: Updated for version 2.4.13
  9422. network/onedrive: Updated to version 2.4.25
  9423. network/onedrive: updated to version 2.4.14
  9424. network/onionshare: Change to Flask.
  9425. network/onionshare: Fixed dep info
  9426. network/open-iscsi: Updated for version 2.1.5.
  9427. network/open-isns: Updated for version 0.101.
  9428. network/openconnect: Remove .la files.
  9429. network/opendchub: Add -fcommon to CFLAGS.
  9430. network/opendkim: Added a patch for openssl-1.1.x.
  9431. network/opendkim: Fixed piddir creation at init
  9432. network/opendkim: Remove .la files.
  9433. network/opendmarc: Fix github tarball handling.
  9434. network/opendmarc: Fixed dep info
  9435. network/opendmarc: Updated for version 1.4.1.1.
  9436. network/openfortivpn: Updated for version 1.17.1.
  9437. network/openl2tp: Removed.
  9438. network/openldap-server: Removed (added to Slackware - in openldap).
  9439. network/openntpd: Updated for version 6.8p1.
  9440. network/openrdate: Removed.
  9441. network/openresolv: Removed (added to Slackware).
  9442. network/opensm: Remove .la files.
  9443. network/opensmtpd: Updated for version 6.6.4p1.
  9444. network/opensmtpd: Updated for version 6.8.0p2.
  9445. network/openssh-krb5: Removed (redundant now)
  9446. network/openvas-manager: Removed.
  9447. network/openvswitch-utils: Remove .la files.
  9448. network/openvswitch-utils: Updated for version 2.15.1.
  9449. network/opera-legacy: Remove flashplayer from README.
  9450. network/otter: Updated for version 1.0.02.
  9451. network/owncloud-client: Fixed dep info
  9452. network/owncloud-client: Patch for qt-5.15.x.
  9453. network/owncloud-client: Update for 2.10.0.6519
  9454. network/pCloudDrive: Fix case statement in SlackBuild.
  9455. network/packETH: Add -fcommon to CFLAGS.
  9456. network/packit: Add -fcommon to CFLAGS.
  9457. network/palemoon-bin: Updated for version 29.4.4.
  9458. network/palemoon: Add missing patch.
  9459. network/palemoon: Update DEP.
  9460. network/palemoon: Updated for version 29.4.4.
  9461. network/pdns-recursor: Updated for version 4.6.0.
  9462. network/pdns: Updated for version 4.6.0. Add lua to REQUIRES.
  9463. network/pdnsd: Removed.
  9464. network/pentadactyl: Removed for Slackware 15.
  9465. network/persepolis: Fixed download info
  9466. network/persepolis: Update DEP.
  9467. network/pexip-infinity-connect: Fix .info.
  9468. network/pexip-infinity-connect: Updated to version 1.6.2
  9469. network/pfqueue: Remove .la files.
  9470. network/pgl: Removed (No maintainer).
  9471. network/pgpool-II: Remove .la files.
  9472. network/pgpool-II: Updated for version 3.7.21.
  9473. network/phodav: Align with new template.
  9474. network/phodav: Fixed ninja build.
  9475. network/phodav: Updated for version 2.3, switch to meson.
  9476. network/phpmyadmin: Updated for version 5.1.2.
  9477. network/phpmyadmin: Updated for version 5.1.3.
  9478. network/pidgin-musictracker: Add extra CFLAGS.
  9479. network/pidgin-musictracker: Disabled some warnings-as-errors.
  9480. network/pidgin-opensteamworks: Fixed dep info
  9481. network/pidgin-sipe: Updated for 1.25.0. Add --enable-quality-check.
  9482. network/pidgin-sipe: Updated for version 1.24.0.
  9483. network/plasma-nm-openconnect: Removed. Uninterested.
  9484. network/plowshare-modules: Version bump and copyright update
  9485. network/pmacct: Add -fcommon to CFLAGS.
  9486. network/pmacct: Fix support for PRINT_PACKAGE_NAME
  9487. network/policyd: Add -fcommon to CFLAGS.
  9488. network/postfix: Removed (added to Slackware).
  9489. network/postman: Updated for version 8.2.3
  9490. network/pound: Removed.
  9491. network/pptp: Updated for version 1.10.0.
  9492. network/pptp: s,i486,i586,g
  9493. network/pptpd: Updated for Slackware 15.0 (pppd-2.4.9)
  9494. network/privoxy: Fixed dep info
  9495. network/privoxy: Updated for version 3.0.33
  9496. network/profanity: Add -fcommon to CFLAGS.
  9497. network/profanity: Remove .la files.
  9498. network/prosody-mod-cloud-notify: Updated for version hg4730.
  9499. network/prosody-mod-cloud-notify: Updated for version hg4827.
  9500. network/prosody-mod-csi: Updated for version hg4785.
  9501. network/prosody-mod-http-upload: Updated for version hg4617.
  9502. network/prosody-mod-http-upload: Updated for version hg4654.
  9503. network/prosody-mod-smacks: Updated for version hg4584.
  9504. network/prosody-mod-smacks: Updated for version hg4631.
  9505. network/prosody-mod-smacks: Updated for version hg4637.
  9506. network/prosody-mod-smacks: Updated for version hg4760.
  9507. network/prosody-mod-smacks: Updated for version hg4771.
  9508. network/prosody-mod-vcard-muc: Updated for version hg4879.
  9509. network/prosody: Updated for version 0.11.13.
  9510. network/prosody: Updated for version 0.11.9.
  9511. network/protonmail-bridge: Updated for version 1.8.10.
  9512. network/protonmail-bridge: Updated for version 1.8.12.
  9513. network/protonmail-bridge: Updated for version 2.1.1.
  9514. network/protonmail-import-export-app: Updated for version 1.3.3.
  9515. network/protonvpn-cli: Update DEP.
  9516. network/protonvpn-cli: Update DEP.
  9517. network/protonvpn-cli: Updated for version 2.2.11.
  9518. network/proxytunnel: Add -fcommon to CFLAGS.
  9519. network/psi-plus: Fixed dep info
  9520. network/psi-plus: Updated for version 1.5.1484.
  9521. network/psi-plus: Updated for version 1.5.1600.
  9522. network/psi: Updated for version 1.5. New maintainer.
  9523. network/pulse-sms: Updated for version 4.4.0.
  9524. network/pulse-sms: Updated for version 4.4.1
  9525. network/pulse-sms: Updated for version 4.5.0
  9526. network/pulse-sms: Updated for version 4.5.1
  9527. network/pulse-sms: Updated for version 4.5.2
  9528. network/purple-facebook: Fixed dep info
  9529. network/purple-hangouts: Fix download and requires.
  9530. network/purple-hangouts: Fixed dep info
  9531. network/purple-plugin-pack: Fix DOWNLOAD and HOMEPAGE.
  9532. network/purple-telegram: Fixed dep info (libwebp)
  9533. network/putty: Updated for version 0.75.
  9534. network/putty: Updated for version 0.76.
  9535. network/pydio-sync: Fixed dep info
  9536. network/pysub-dl: Update DEP.
  9537. network/qTox: Disable warnings-as-errors.
  9538. network/qTox: Fixed dep info
  9539. network/qemu: Updated to version 6.1.0
  9540. network/qtmib: Updated for version 1.1.1+20190827_e62ab95.
  9541. network/quagga: Add autoreconf + -fcommon.
  9542. network/quagga: Fix download URL.
  9543. network/quagga: Fixed dep info
  9544. network/quagga: Remove .la files.
  9545. network/quassel-qt5: Fixed dep info
  9546. network/quassel-qt5: Patch for qt5 >= 5.14.x.
  9547. network/quassel: Updated for version 0.14.0.
  9548. network/quotebrowser: Update DEP.
  9549. network/qutebrowser-tox: Fixed dep info
  9550. network/qutebrowser-tox: Removed.
  9551. network/qutebrowser: Fixed dep info
  9552. network/qutebrowser: Update DEP.
  9553. network/qutebrowser: Update REQUIRES.
  9554. network/qutebrowser: Updated for version 2.3.1.
  9555. network/qutebrowser: Updated for version 2.4.0.
  9556. network/quvi: Removed (Not needed as cclive is removed).
  9557. network/r2e: Removed (superseded by rss2email).
  9558. network/r8168: Fix support for PRINT_PACKAGE_NAME
  9559. network/radvd: Updated for version 2.19.
  9560. network/razor-agents: Force a single make job.
  9561. network/rclone: Updated for version 1.5.7.
  9562. network/reaver: Add -fcommon to CFLAGS.
  9563. network/rejik: Add -fcommon to CFLAGS.
  9564. network/rekonq: Removed (KDE4 app).
  9565. network/remmina: Fixed dep info
  9566. network/remmina: Pass -fcommon for gcc >= 10.x.
  9567. network/remmina: Removed freerdp dep (part of slackware).
  9568. network/remmina: Updated for version 1.4.16, enable KF5 wallet.
  9569. network/remmina: Updated for version 1.4.24.
  9570. network/retroshare: Fixed dep info
  9571. network/retroshare: REQUIRES protobuf => protobuf3.
  9572. network/retroshare: Updated for version 0.6.5, fix for qt5 >= 5.14.
  9573. network/retroshare: Updated for version 20220216_3dfcb58.
  9574. network/rhapsody: Security fix.
  9575. network/roger-router: Fixed dep info
  9576. network/roger-router: Removed (source only for flatpak).
  9577. network/rspamd: Create piddir during init
  9578. network/rspamd: Fixed dep info
  9579. network/rspamd: Updated for version 2.6.
  9580. network/rspamd: Updated for version 2.7
  9581. network/rspamd: Updated for version 3.1
  9582. network/rtl8188eu: Fix support for PRINT_PACKAGE_NAME
  9583. network/rtl8188eu: Re-added (fixed build for 15.0).
  9584. network/rtl8188eu: Removed.
  9585. network/rtl8188eu: Respect KERNEL.
  9586. network/rtl8821ce: Delete git2tarxz.sh.
  9587. network/rtl8821ce: Fix support for PRINT_PACKAGE_NAME
  9588. network/rtl8821ce: Re-added (fixed build for 15.0).
  9589. network/rtl8821ce: Removed.
  9590. network/rtorrent: Fix DOWNLOAD.
  9591. network/rtorrent: Updated for version 0.9.7.
  9592. network/rubygem-showterm: Updated for version 0.6.0.
  9593. network/s-nail: Removed (added to Slackware).
  9594. network/sabnzbd: Fix REQUIRES for python2.
  9595. network/scrcpy: Fixed dep info
  9596. network/scrcpy: Support alternatives for ninja
  9597. network/seafile-server: Updated for version 8.0.6.
  9598. network/seafile: Added (Cloud Storage System).
  9599. network/seafile: Fix dependencies.
  9600. network/seafile: Remove .la files.
  9601. network/seafile: Updated for version 8.0.4.
  9602. network/serviio: Create PIDDIR during initialization
  9603. network/serviio: Use setpriv instead of su -c for init
  9604. network/sfeed: Update for 1.2
  9605. network/sfeed: Update for 1.3 (+ change homepage)
  9606. network/sfeed: Updated for version 1.1.
  9607. network/sflowtool: Fix support for PRINT_PACKAGE_NAME
  9608. network/shadowsocks-libev: Fixed dep info
  9609. network/shadowsocks-libev: Remove .la files.
  9610. network/shibboleth-sp: Remove .la files.
  9611. network/shibboleth-sp: Use the C++14 standard.
  9612. network/sic: Updated for version 1.2+20210506_058547e.
  9613. network/sickrage: Updated for version 10.0.50.
  9614. network/siege: Updated for version 4.1.1
  9615. network/siege: Updated maintainer email
  9616. network/signal-desktop: Fixed dep info
  9617. network/signal-desktop: Updated for version 5.18.0.
  9618. network/signal-desktop: Updated for version 5.26.1.
  9619. network/signal-desktop: Updated for version 5.30.0.
  9620. network/signal-desktop: Updated for version 5.32.0 + new maintainer
  9621. network/signal-desktop: Updated for version 5.33.0
  9622. network/signal-desktop: Updated for version 5.34.0
  9623. network/silc-toolkit: Remove .la files.
  9624. network/sks-keyserver: Remove db46 dep (works with Slackware db48).
  9625. network/sks-keyserver: Removed.
  9626. network/skype4pidgin: Fixed dep info
  9627. network/skypeforlinux: Remove skype-dbus-mock workaround.
  9628. network/skypeforlinux: Updated for version 8.73.0.129.
  9629. network/skypeforlinux: Updated for version 8.73.76.16
  9630. network/skypeforlinux: Updated for version 8.79.0.92.
  9631. network/slack: Updated for version 4.17.0.
  9632. network/slimjet: Removed (abandoned by SBo maintainer)
  9633. network/slowhttptest: Updated for version 1.8.2.
  9634. network/slurm: Fix download URL.
  9635. network/slurm: Remove .la files.
  9636. network/smb4k: Removed (No maintainer).
  9637. network/smstools3: Add L(D)FLAGS, DESTDIR patch.
  9638. network/smuxi: Removed (dbus-sharp dep ftbfs)
  9639. network/snmptt: Fix support for PRINT_PACKAGE_NAME
  9640. network/snort: Fix DOWNLOAD.
  9641. network/snort: Fix github tarball handling.
  9642. network/snort: Remove .la files.
  9643. network/snort: Updated for version 2.9.17.
  9644. network/sntpc: Add man page.
  9645. network/sntpc: Added (simple NTP client).
  9646. network/socat: Removed (added to Slackware).
  9647. network/social-engineer-toolkit: Fixed dep info
  9648. network/spamassassin: Fixed dep info
  9649. network/spamassassin: Removed dep perl-IO-Socket-SSL.
  9650. network/speedometer: REQUIRES: python3-urwid -> python-urwid.
  9651. network/speedometer: Update DEP.
  9652. network/spice-gtk: Fix usb redirection.
  9653. network/spice-gtk: Fixed dep info
  9654. network/spice-gtk: Remove NUMJOBS.
  9655. network/spice-gtk: Updated for version 0.39.
  9656. network/spice-gtk: Updated for version 0.40.
  9657. network/spice: Fixed dep info
  9658. network/spice: Remove .la files.
  9659. network/spice: Updated for version 0.14.3.
  9660. network/spice: Updated for version 0.15.0.
  9661. network/sqlninja: Removed dep perl-IO-Socket-SSL.
  9662. network/sqlrelay: Updated for version 1.1.0.
  9663. network/sqlrelay: Updated for version 1.9.2.
  9664. network/squid: Updated for version 4.16.
  9665. network/squidGuard: Removed (upstream no longer maintained).
  9666. network/ssh-chat: Remove template comment.
  9667. network/sshfp: Update DEP.
  9668. network/sshfs-fuse: Removed (added to Slackware as sshfs).
  9669. network/sshuttle: updated for version 1.1.0
  9670. network/sslscan: Updated for version 2.0.10.
  9671. network/sslscan: Updated for version 2.0.11.
  9672. network/sslscan: Updated for version 2.0.12.
  9673. network/sslstrip: Fix REQUIRES.
  9674. network/ssmtp: Clean up build.
  9675. network/sstp-client: Remove .la files.
  9676. network/ssvnc: Removd (ftbfs).
  9677. network/surf: Updated for version 2.1.
  9678. network/suricata: Fixed dep info
  9679. network/suricata: Updated for version 6.0.2.
  9680. network/surl: Remove template comment.
  9681. network/sylpheed: Fix build against new enchant.
  9682. network/sylpheed: Patched for the newer enchant2.
  9683. network/sylpheed: Remove double fix.
  9684. network/syncthing: Update for 1.19.1 (+new maintainer)
  9685. network/synergy: Patch for openssl-1.1.x.
  9686. network/synergy: Updated for version 1.14.3.5.
  9687. network/synergy: Use correct github URL.
  9688. network/t38modem: Removed (missing dependency).
  9689. network/tahoe-lafs: Fix DOWNLOAD.
  9690. network/teams: Updated for version 1.4.00.26453
  9691. network/teamviewer: Fixed dep info
  9692. network/teamviewer: Removed (No longer functional).
  9693. network/telegram-cli: Fixed dep info
  9694. network/telegram-cli: Updated for version 20200106.
  9695. network/telegram: Updated for version 2.7.3.
  9696. network/telegram: Updated for version 2.7.4.
  9697. network/telegram: Updated for version 2.8.0.
  9698. network/telegram: Updated for version 2.8.1.
  9699. network/telegram: Updated for version 2.8.10.
  9700. network/telegram: Updated for version 2.8.9.
  9701. network/telegram: Updated for version 2.9.0.
  9702. network/telegram: Updated for version 2.9.2.
  9703. network/telegram: Updated for version 3.1.1.
  9704. network/telegram: Updated for version 3.2.1.
  9705. network/telegram: Updated for version 3.2.2
  9706. network/telegram: Updated for version 3.2.4.
  9707. network/telegram: Updated for version 3.3.0.
  9708. network/telegram: Updated for version 3.4.3.
  9709. network/telegram: Updated for version 3.4.8.
  9710. network/telegram: Updated for version 3.5.0.
  9711. network/telegram: Updated for version 3.5.2.
  9712. network/thrift: Add network warning.
  9713. network/thrift: Fix go build.
  9714. network/thrift: Remove .la files.
  9715. network/thrift: Updated for version 0.14.2.
  9716. network/tightvnc: Removed (linux development abandoned).
  9717. network/tinyirc: Change default server.
  9718. network/tixati: Updated for version 2.88_1.
  9719. network/tnftp: Updated for version 20210827.
  9720. network/tntnet: Updated for version 3.0.
  9721. network/tor-browser: Updated for version 10.0.16.
  9722. network/tor-browser: Updated for version 10.0.17.
  9723. network/tor-browser: Updated for version 10.0.18.
  9724. network/tor-browser: Updated for version 10.5.
  9725. network/tor-browser: Updated for version 10.5.2.
  9726. network/tor-browser: Updated for version 10.5.4.
  9727. network/tor-browser: Updated for version 10.5.5.
  9728. network/tor-browser: Updated for version 10.5.6.
  9729. network/tor-browser: Updated for version 10.5.8.
  9730. network/tor-browser: Updated for version 11.0.
  9731. network/tor-browser: Updated for version 11.0.1.
  9732. network/tor-browser: Updated for version 11.0.3.
  9733. network/tor-browser: Updated for version 11.0.4.
  9734. network/tor-browser: Updated for version 11.0.6.
  9735. network/tor-browser: Updated for version 11.0.7.
  9736. network/tor: Create /var/run/tor at daemon start.
  9737. network/tor: Fix dep info (zstd)
  9738. network/tornado: Update DEP.
  9739. network/tornado: Update DEP.
  9740. network/toxcore: Fixed dep info
  9741. network/toxcore: Remove .la files.
  9742. network/transmission-qt4: Removed (outdated).
  9743. network/transmission-remote-gtk: Allow disabling libappindicator.
  9744. network/transmission-remote-gtk: Fixed dep info
  9745. network/transmission-remote-gtk: Fixed note re appindicator
  9746. network/transmission-remote-gtk: Patch for gcc >= 10.x.
  9747. network/transmission: Remove autoreconf (breaks build).
  9748. network/transmission: Restore Qt client.
  9749. network/tribler: Removed (no maintainer)
  9750. network/tribler: Update DEP.
  9751. network/trojita: Fixed dep info
  9752. network/trojita: Updated for version 20201106_b4f24d7.
  9753. network/turbolift: Update DEP.
  9754. network/twitter: Updated for version 1.19.3.
  9755. network/uTox: Fixed dep info
  9756. network/ubertooth: Fix github tarball handling.
  9757. network/ucarp: Add -fcommon to CFLAGS.
  9758. network/ucspi-ssl: Removed.
  9759. network/udpcast: Updated for version 20200328
  9760. network/udpcast: Updated maintainer email
  9761. network/ufw: Update README.
  9762. network/uget: Fix build on -current.
  9763. network/unbound: Fixed dep info
  9764. network/unbound: Remove .la files.
  9765. network/urlscan: REQUIRES: python3-urwid -> python-urwid.
  9766. network/urlwatch: Update DEP.
  9767. network/urlwatch: Update DEP.
  9768. network/uwsgi: Updated for version 2.0.20.
  9769. network/vacuum-im: Removed (no maintainer).
  9770. network/valknut: Removed.
  9771. network/varnish: Fix build on 15.0.
  9772. network/vblade: Updated for version 25.
  9773. network/vcspull: Update DEP.
  9774. network/vde2: Patch to build against openssl-1.1.x.
  9775. network/vde2: Remove .la files.
  9776. network/verlihub: Added a patch for gcc-7.x.
  9777. network/verlihub: Remove .la files.
  9778. network/verm: Fix build with newer google-go-lang.
  9779. network/verm: Removed (unused, no dependees).
  9780. network/viber: Fix support for PRINT_PACKAGE_NAME
  9781. network/viber: Updated for version 16.1.0.37.
  9782. network/vivaldi: Fixed dep info
  9783. network/vnstat: Updated for version 2.7.
  9784. network/vnstat: Updated for version 2.8.
  9785. network/vnstat: Updated for version 2.9.
  9786. network/vpnc: s,i486,i586,g
  9787. network/w3af: Update DEP
  9788. network/webalizer: Patched for gcc-10.x.
  9789. network/webhook: Fix build with the newer google-go-lang.
  9790. network/weechat: Updated for version 3.2.
  9791. network/weechat: Updated for version 3.3, new maintainer.
  9792. network/wendzelnntpd: Align with template
  9793. network/wifi-radar: Fix README.
  9794. network/windscribe: Fix path
  9795. network/windscribe: Update path to /opt
  9796. network/windscribe: Updated for version 2.3.15.
  9797. network/wire: Updated for version 3.26.2941.
  9798. network/wireguard-linux-compat: Add a kernel version test block.
  9799. network/wireguard-linux-compat: Amend the README.
  9800. network/wireguard-linux-compat: Fix support for PRINT_PACKAGE_NAME
  9801. network/wireguard-linux-compat: Removed (part of newer kernels).
  9802. network/wireguard-tools: Removed (added to Slackware).
  9803. network/wireshark: Fixed dep info
  9804. network/wireshark: Fixed dep info
  9805. network/wireshark: Updated for version 20210411_cb432b8.
  9806. network/wireshark: Updated for version 3.4.10.
  9807. network/wireshark: Updated for version 3.4.5.
  9808. network/wireshark: Updated for version 3.4.6.
  9809. network/wireshark: Updated for version 3.4.7.
  9810. network/wireshark: Updated for version 3.4.8.
  9811. network/wireshark: Updated for version 3.4.9.
  9812. network/wireshark: Updated for version 3.6.0.
  9813. network/wireshark: Updated for version 3.6.1.
  9814. network/wireshark: Updated for version 3.6.2.
  9815. network/wmnd: Updated for version 0.4.18.
  9816. network/wp-cli: Install bash-completion file to system dir
  9817. network/wput: Updated for version 0.6.2+git20130413_11.
  9818. network/x11spice: Added (export X via spice).
  9819. network/x11spice: Updated for version 20200608_f4593d3.
  9820. network/x11vnc: Patch for gcc >= 10.x.
  9821. network/x2goclient: Updated for version 4.1.2.2.
  9822. network/x2goserver: Updated for version 20201227_08aa5e6.
  9823. network/xaric: Add a fix for gcc >= 10.x.
  9824. network/xaric: Updated for version 0.13.9.
  9825. network/xdman: Removed (no maintainer)
  9826. network/xl2tpd: Updated for version 1.3.16.
  9827. network/xtables-addons: Fix support for PRINT_PACKAGE_NAME
  9828. network/xtables-addons: Remove .la files.
  9829. network/xtables-addons: Updated for version 3.18.
  9830. network/yadifa: Create piddir during init
  9831. network/yadifa: Fix logrotate script
  9832. network/yadifa: Updated for version 2.5.3.
  9833. network/yandex-browser-beta: Removed (no maintainer)
  9834. network/yate: Add qt4 dependency.
  9835. network/yate: Fixed dep info in README
  9836. network/yate: Updated for version 6.4.0_1.
  9837. network/yle-dl: Update DEP.
  9838. network/yle-dl: Updated for version 20210502.
  9839. network/yle-dl: Updated for version 20210704.
  9840. network/yle-dl: Updated for version 20210808.
  9841. network/yle-dl: Updated for version 20210917.
  9842. network/yle-dl: Updated for version 20211203.
  9843. network/yle-dl: Updated for version 20211207.
  9844. network/yle-dl: Updated for version 20211213.
  9845. network/yle-dl: Updated for version 20220213.
  9846. network/yoda: Update DEP.
  9847. network/you-get: Updated for version 0.4.1555.
  9848. network/youtube-dl-server: Add python3 support.
  9849. network/youtube-dl: Fix download link.
  9850. network/youtube-dl: Updated for version 2021.04.26.
  9851. network/youtube-dl: Updated for version 2021.06.06.
  9852. network/youtube-dl: Updated for version 2021.12.17
  9853. network/youtube-upload: Update DEP.
  9854. network/yt-dlp: Added (download videos from youtube).
  9855. network/yturl: Removed (broken and unmaintained).
  9856. network/yturl: Update DEP.
  9857. network/zeek: Updated for version 4.2.0.
  9858. network/zoom-linux: Updated for version 5.6.16775.0418
  9859. network/zoom-linux: Updated for version 5.6.20278.0524
  9860. network/zoom-linux: Updated for version 5.6.22045.0607
  9861. network/zoom-linux: Updated for version 5.7.25958.0621
  9862. network/zoom-linux: Updated for version 5.7.26030.0627
  9863. network/zoom-linux: Updated for version 5.7.28852.0718
  9864. network/zoom-linux: Updated for version 5.7.28991.0726
  9865. network/zoom-linux: Updated for version 5.7.29123.0808
  9866. network/zoom-linux: Updated for version 5.7.31792.0820
  9867. network/zoom-linux: Updated for version 5.8.0.16
  9868. network/zoom-linux: Updated for version 5.8.3.145
  9869. network/zoom-linux: Updated for version 5.8.4.210
  9870. network/zoom-linux: Updated for version 5.8.6.739
  9871. network/zoom-linux: Updated for version 5.9.0.1273
  9872. network/zoom-linux: Updated for version 5.9.1.1380
  9873. network/zoom-linux: Updated for version 5.9.3.1911
  9874. network/zoom-linux: Updated for version 5.9.6.2225
  9875. office/CherryTree: Fix tarball handling in the SlackBuild.
  9876. office/JabRef: Align with template
  9877. office/JabRef: Updated for version 5.5.
  9878. office/LibreOffice: Reenable Skia font rendering
  9879. office/LibreOffice: Updated for version 7.1.2.2.
  9880. office/LibreOffice: Updated for version 7.1.3.2
  9881. office/LibreOffice: Updated for version 7.1.4.2
  9882. office/LibreOffice: Updated for version 7.1.5.2
  9883. office/LibreOffice: Updated for version 7.2.0.4
  9884. office/LibreOffice: Updated for version 7.2.1.2
  9885. office/LibreOffice: Updated for version 7.2.2.2
  9886. office/LibreOffice: Updated for version 7.2.3.2
  9887. office/LibreOffice: Updated for version 7.2.4.1
  9888. office/LibreOffice: Updated for version 7.2.5.2
  9889. office/LibreOffice: Updated for version 7.3.0.3
  9890. office/LibreOffice: Updated for version 7.3.1.3
  9891. office/MasterPDFEditor: Updated for version 5.7.60.
  9892. office/MasterPDFEditor: Updated for version 5.7.90.
  9893. office/MasterPDFEditor: Updated for version 5.8.06.
  9894. office/MasterPDFEditor: Updated for version 5.8.20.
  9895. office/MasterPDFEditor: Updated for version 5.8.30.
  9896. office/MasterPDFEditor: Updated for version 5.8.32.
  9897. office/MasterPDFEditor: Updated for version 5.8.33.
  9898. office/NME: Add missing libminizip dependency.
  9899. office/NME: Fix download URL, add gtk/epub support.
  9900. office/ReText: Fixed dep info
  9901. office/ReText: Fixed dep info again
  9902. office/SOGo: Fixed dep info
  9903. office/SOGo: Make the optional docs truly optional.
  9904. office/TaskCoach: Fix REQUIRES.
  9905. office/abiword: Patched for the newer enchant.
  9906. office/abiword: Updated for version 3.0.5.
  9907. office/abook: Fix for the newer gettext.
  9908. office/adobe-reader: Fix download URL.
  9909. office/adobe-reader: Use systemwide dir for bash-completion file
  9910. office/aiksaurus: Fix README.
  9911. office/aiksaurus: Modified.
  9912. office/aiksaurus: Remove .la files.
  9913. office/aiksaurus: Update DOWNLOAD.
  9914. office/aiksaurus: Use the C++14 standard.
  9915. office/anorack: Remove espeak dep; make NOARCH.
  9916. office/apvlv: Fix 15.0 build.
  9917. office/apvlv: Updated for version 20160627_9ab7626.
  9918. office/asymptote: Update DEP.
  9919. office/asymptote: Update scripts.
  9920. office/asymptote: Updated for version 2.70, added the dep glm.
  9921. office/basket: Fix writes outside DESTDIR during build
  9922. office/basket: Fixed homepage.
  9923. office/basket: Updated for version 2.49b.
  9924. office/beaver: Fix 15.0 build.
  9925. office/broffice.org: Fix support for PRINT_PACKAGE_NAME
  9926. office/calibre-bin: Fixed dep info
  9927. office/calibre: Fix dependency.
  9928. office/calibre: Fixed dep info
  9929. office/calibre: Update DEP.
  9930. office/calibre: Updated for version 3.48.0.
  9931. office/color-theme: Removed (No maintainer).
  9932. office/convertlit: Add man page, use SLKCFLAGS.
  9933. office/coolreader: Updated for version 3.2.57.
  9934. office/coolreader: Updated for version 3.2.59.
  9935. office/cups-pdf: Patch for the newer ghostscript.
  9936. office/diction: Minor man page fix.
  9937. office/diffpdf: Fix 15.0 build.
  9938. office/djvusmooth: Fix REQUIRES for python2.
  9939. office/djvusmooth: Fix REQUIRES.
  9940. office/djvusmooth: Remove template comment.
  9941. office/eqonomize: Removed.
  9942. office/etmtk: Fix dependency.
  9943. office/etmtk: Update DEP.
  9944. office/evince: Updated for version 3.34.2.
  9945. office/evince: Updated for version 40.4.
  9946. office/evince: Updated for version 41.3.
  9947. office/fbpdf: Updated for version 20200617_f590024.
  9948. office/fbreader: Disabled narrowing warnings, move to qt5.
  9949. office/fbreader: Fix download URL.
  9950. office/focuswriter-legacy: Removed (use focuswriter instead).
  9951. office/fop-legacy: Removed (ftbfs)
  9952. office/fop: Fix download URLs.
  9953. office/fop: Updated for version 2.7, noarch, binary repack.
  9954. office/full-pack: Allow building without gbgoffice or kbgoffice.
  9955. office/gbgoffice: Added a patch for gcc >= 6.x.
  9956. office/gbgoffice: update copyright years
  9957. office/gcal: Patched to fix libio errors.
  9958. office/ghostwriter: Remove duplicate loc
  9959. office/ghostwriter: Updated for version 2.1.1.
  9960. office/gnokii: Patch for gcc >= 7.x.
  9961. office/gnokii: Remove .la files.
  9962. office/gnucash-docs: Updated for version 4.5.
  9963. office/gnucash-legacy-docs: Removed.
  9964. office/gnucash-legacy: Added the new dependency guile1.8.
  9965. office/gnucash-legacy: Removed.
  9966. office/gnucash: Cleanups.
  9967. office/gnucash: Fixed dep info
  9968. office/gnucash: Support alternatives for ninja
  9969. office/gnucash: Updated for version 4.5.
  9970. office/gnucash: Updated for version 4.6.
  9971. office/gnucash: Use NINJA=ninja by default.
  9972. office/gnumeric: Avoid the cs help or build will break.
  9973. office/gnumeric: Remove .la files.
  9974. office/gnumeric: Updated for version 1.12.49.
  9975. office/goldendict: Patch for the newer qt5 and ffmpeg.
  9976. office/goldendict: Update DEP.
  9977. office/goldendict: Use the C++14 standard.
  9978. office/gummi: Remove dep gtksourceview3 (part of slack).
  9979. office/gummi: Updated for version 0.8.1.
  9980. office/hamster: Change maintainer email.
  9981. office/hamster: Update DEP.
  9982. office/hevea: Updated for version 2.35.
  9983. office/hunspell-id: Fix download URL, merge with hyphen-id.
  9984. office/hyphen-id: Fix DOWNLOAD.
  9985. office/hyphen-id: Removed (merged with hunspell-id).
  9986. office/impressive: Updated for version 0.13.0_beta2+20220110_r312.
  9987. office/jfbview: Added (framebuffer PDF and image viewer).
  9988. office/jstock: Updated for version 1.0.7.48.
  9989. office/jstock: Updated for version 1.0.7.55.
  9990. office/jstock: Updated for version 1.0.7.56
  9991. office/juffed: Removed.
  9992. office/kate-latex-plugin: Removed (KDE4 app; use kile instead).
  9993. office/kbgoffice: Added patch for gcc >= 6.x.
  9994. office/kbgoffice: Fix 15.0 build (add qt4 dep).
  9995. office/kbibtex: Updated for version 0.9.81.
  9996. office/kbibtex: updated for version 0.9.90
  9997. office/kchmviewer-qt: Updated for version 8.0.
  9998. office/kchmviewer: Removed (redundant; use kchmviewer-qt).
  9999. office/keepassx: Add qt4 to REQUIRES.
  10000. office/keepassxc: Fixed dep info
  10001. office/keepassxc: New maintainer
  10002. office/keepassxc: Updated for Slackware 15.
  10003. office/keepassxc: Updated for version 2.6.6.
  10004. office/kmymoney: Removed (added to Slackware).
  10005. office/krop: Switch to python-poppler-qt5.
  10006. office/latex2rtf: Update DEP.
  10007. office/libreoffice-helppack: Fix support for PRINT_PACKAGE_NAME
  10008. office/libreoffice-helppack: Updated for version 7.1.2.
  10009. office/libreoffice-helppack: Updated for version 7.1.3.
  10010. office/libreoffice-helppack: Updated for version 7.1.4.
  10011. office/libreoffice-helppack: Updated for version 7.1.5.
  10012. office/libreoffice-helppack: Updated for version 7.2.0.
  10013. office/libreoffice-helppack: Updated for version 7.2.1.
  10014. office/libreoffice-helppack: Updated for version 7.2.2.
  10015. office/libreoffice-helppack: Updated for version 7.2.3.
  10016. office/libreoffice-helppack: Updated for version 7.2.4.
  10017. office/libreoffice-helppack: Updated for version 7.2.5.
  10018. office/libreoffice-helppack: Updated for version 7.3.0.
  10019. office/libreoffice-helppack: Updated for version 7.3.1.
  10020. office/libreoffice-langpack: Fix support for PRINT_PACKAGE_NAME
  10021. office/libreoffice-langpack: Updated for version 7.1.2.
  10022. office/libreoffice-langpack: Updated for version 7.1.3.
  10023. office/libreoffice-langpack: Updated for version 7.1.4.
  10024. office/libreoffice-langpack: Updated for version 7.1.5.
  10025. office/libreoffice-langpack: Updated for version 7.2.0.
  10026. office/libreoffice-langpack: Updated for version 7.2.1.
  10027. office/libreoffice-langpack: Updated for version 7.2.2.
  10028. office/libreoffice-langpack: Updated for version 7.2.3.
  10029. office/libreoffice-langpack: Updated for version 7.2.4.
  10030. office/libreoffice-langpack: Updated for version 7.2.5.
  10031. office/libreoffice-langpack: Updated for version 7.3.0.
  10032. office/libreoffice-langpack: Updated for version 7.3.1.
  10033. office/libreoffice: Align with template
  10034. office/libreoffice: Updated for version 7.1.2.
  10035. office/libreoffice: Updated for version 7.1.3.
  10036. office/libreoffice: Updated for version 7.1.4.
  10037. office/libreoffice: Updated for version 7.1.5.
  10038. office/libreoffice: Updated for version 7.2.0.
  10039. office/libreoffice: Updated for version 7.2.1.
  10040. office/libreoffice: Updated for version 7.2.2.
  10041. office/libreoffice: Updated for version 7.2.3.
  10042. office/libreoffice: Updated for version 7.2.4.
  10043. office/libreoffice: Updated for version 7.2.5.
  10044. office/libreoffice: Updated for version 7.3.0.
  10045. office/libreoffice: Updated for version 7.3.1.
  10046. office/lowdown: Updated for version 0.10.0.
  10047. office/lowdown: Updated for version 0.11.0.
  10048. office/lowdown: Updated for version 0.9.2.
  10049. office/lumina-pdf: Fixed dep info
  10050. office/lyx: Re-enable qt5 (there's no qt4 anymore).
  10051. office/marave: Fix download URL.
  10052. office/marave: Removed (PyQt4; unmaintained upstream since 2015)
  10053. office/mathtex: Fix download URL.
  10054. office/mdbtools: Fix 15.0 build.
  10055. office/minidjvu: Remove .la files.
  10056. office/mobiperl: Remove template comment.
  10057. office/moneydance: Fixed VERSION in .info file
  10058. office/moneydance: Updated for version 2021.1.3069.
  10059. office/msee: Add missing dependency on nodejs.
  10060. office/mu: Remove .la files.
  10061. office/mu: Updated for version 1.2.0.
  10062. office/mu: Updated for version 1.6.10.
  10063. office/multivalent-tool-pdf: Move completion file to system dir
  10064. office/mupdf-legacy: Removed (no dependees).
  10065. office/mupdf: Remove template comment.
  10066. office/myrulib: Removed (No maintainer).
  10067. office/mytetra: Fix 15.0 build.
  10068. office/mythes: Remove .la files.
  10069. office/notmuch: Updated for version 0.34.3.
  10070. office/nts: Fix dependency.
  10071. office/onlyoffice-desktopeditors: Fixed dep info
  10072. office/openoffice-langpack: Fix support for PRINT_PACKAGE_NAME
  10073. office/openoffice.org: Fix support for PRINT_PACKAGE_NAME
  10074. office/pandoc-bin: Fix BUILD usage.
  10075. office/pandoc-bin: Fix architecture name
  10076. office/pandoc-bin: Updated for version 2.17.1.1
  10077. office/pandoc-bin: fix typo in slackbuild
  10078. office/pandoc: Install manpage.
  10079. office/pandoc: Updated for version 2.17.1.1.
  10080. office/paps: Fix -current build.
  10081. office/pdf2djvu: Fix for the newer poppler.
  10082. office/pdf2djvu: Updated for version 0.9.18.2.
  10083. office/pdf2djvu: Updated for version 0.9.18.2.
  10084. office/pdfchain: Fix build on 15.0.
  10085. office/pdfpc: Fixed dep info
  10086. office/pdfpc: Updated for version 4.4.1.
  10087. office/pdfpc: updated for version 4.5.0
  10088. office/pdftk: Switch using gcc5.
  10089. office/pstoedit: Remove .la files.
  10090. office/python-gcalcli: Update to 4.3.0. Fix REQUIRES.
  10091. office/qpdfview-qt5: Fixed dep info
  10092. office/qpdfview-qt5: Patched for qt-5.15.x.
  10093. office/qpdfview: Fix 15.0 build.
  10094. office/qute: Fix ARCH, download filename.
  10095. office/re-typeset: Remove template comment.
  10096. office/rednotebook: Fixed dep info
  10097. office/rednotebook: Removed.
  10098. office/referencer: Patch for the newer gcc.
  10099. office/referencer: update copyright years
  10100. office/remind: Fix download URL.
  10101. office/sc-im: Removed (added to Slackware).
  10102. office/scribus: Updated for version 1.5.6.1.
  10103. office/scribus: Updated for version 1.5.7
  10104. office/scribus: Updated maintainer email
  10105. office/siag: Fix 15.0 build.
  10106. office/sigil: Fixed dep info
  10107. office/smoffice2018: Updated for version 2018_982.
  10108. office/sofastats: Removed.
  10109. office/sofastats: Update DEP.
  10110. office/teams-for-linux: Removed (Use official teams).
  10111. office/teapot: Link against libtirpc.
  10112. office/teapot: Removed (website and source are not available).
  10113. office/tellico: Updated for version 3.4.
  10114. office/texlive-docs: Fix doc installation.
  10115. office/texlive-docs: Update information about package.
  10116. office/texlive-docs: Updated for version 2021.210418.
  10117. office/texlive-extra: Fix doc installation.
  10118. office/texlive-extra: Update DEP.
  10119. office/texlive-extra: Update information about package.
  10120. office/texlive-extra: Updated for version 2021.210418.
  10121. office/texlive: Removed (added to Slackware).
  10122. office/texmacs: Updated for version 1.99.19.
  10123. office/texmacs: Updated for version 1.99.20.
  10124. office/texmacs: Updated for version 2.1.
  10125. office/texmacs: Updated for version 2.1.1
  10126. office/texstudio: Updated for version 3.1.2 (using qt5).
  10127. office/texstudio: Updated for version 4.0.2
  10128. office/texworks: Update DEP.
  10129. office/texworks: Updated for version 0.6.6 (python3-based).
  10130. office/texworks: Updated for version 0.6.7.
  10131. office/timetrap: Fix gemspec (hardcoded versions).
  10132. office/trello-cli: Add nodejs dependency.
  10133. office/tudu: Fix conflict with PDCurses.
  10134. office/uncsv: Remove template comment.
  10135. office/verbiste: Fix 15.0 build.
  10136. office/vlna: Fix download URL.
  10137. office/vym: Updated for version 2.8.8
  10138. office/vym: Updated maintainer email
  10139. office/wammu: Fix typo it's => its.
  10140. office/wammu: Updated for version 0.44
  10141. office/wammu: Updated maintainer email
  10142. office/wink: Fix download URL.
  10143. office/wordgrinder: Fix 15.0 build.
  10144. office/wordgrinder: Fixed dep info
  10145. office/wps-office: Updated for version 11.1.0.10702.XA.
  10146. office/wps-office: Updated for version 11.1.0.10920.XA.
  10147. office/wyrd: Removed (ftbfs)
  10148. office/x_x: Fix -current build.
  10149. office/x_x: Fix REQUIRES for python2.
  10150. office/x_x: Update DEP.
  10151. office/xournal: Update slackbuild year.
  10152. office/xpad: Fixed dep info
  10153. office/xreader: Remove .la files.
  10154. office/xtrkcad: Updated for version 20211202.
  10155. office/zathura-cb: Updated for version 0.1.9.
  10156. office/zathura-djvu: Updated for version 0.2.9.
  10157. office/zathura-pdf-mupdf: Updated for version 0.3.7.
  10158. office/zathura-ps: Updated for version 0.2.7.
  10159. office/zathura: Fix README.
  10160. office/zathura: Updated for version 0.4.8.
  10161. office/zim: Updated for version 74.3.
  10162. perl/MoarVM: Fixed dep info
  10163. perl/MoarVM: Remove libuv dep (part of Slackware).
  10164. perl/MoarVM: Updated for version 2021.09
  10165. perl/MoarVM: Updated for version 2021.12.
  10166. perl/Net-SSLeay: Removed (added to Slackware's perl).
  10167. perl/mod_perl: Patch for the newer perls.
  10168. perl/mod_perl: Updated for version 2.0.12.
  10169. perl/nqp: Updated for version 2021.09
  10170. perl/nqp: Updated for version 2021.12
  10171. perl/perl-Alien-SDL: Updated maintainer email
  10172. perl/perl-Astro-SunTime: Removed (no maintainer)
  10173. perl/perl-Audio-FLAC-Header: Add missing dependency.
  10174. perl/perl-Authen-SASL: Removed (added to Slackware's perl).
  10175. perl/perl-CPAN-Changes: Updated for version 0.400002.
  10176. perl/perl-Class-Mix: Don't hardcode lib dir.
  10177. perl/perl-Class-ReturnValue: Add missing dependency.
  10178. perl/perl-Compress-Bzip2: Updated for version 2.28
  10179. perl/perl-Compress-Bzip2: Updated maintainer email
  10180. perl/perl-Config-Find: Fix build if perl-Test-Pod is installed.
  10181. perl/perl-Convert-UU: Removed (no maintainer)
  10182. perl/perl-Crypt-OpenSSL-ECDSA: Updated for version 0.10.
  10183. perl/perl-Crypt-OpenSSL-Guess: Added (perl module).
  10184. perl/perl-Crypt-OpenSSL-RSA: Updated for version 0.31.
  10185. perl/perl-Curses-UI: Add missing dep.
  10186. perl/perl-Data-Printer: Updated for version 1.000004.
  10187. perl/perl-Date-Manip: Updated for version 6.86.
  10188. perl/perl-DateTime-Format-Strptime: Disabled tests.
  10189. perl/perl-DateTime-TimeZone: Updated for version 2.01.
  10190. perl/perl-DateTime: Updated for version 1.25.
  10191. perl/perl-Devel-CheckLib: Removed (added to Slackware's perl).
  10192. perl/perl-Devel-PartialDump: Add missing dependency.
  10193. perl/perl-Digest-MD4: Removed (not used by anything @ SBo)
  10194. perl/perl-EV: Fix build when libkqueue is installed.
  10195. perl/perl-Encode-EUCJPASCII: New maintainer.
  10196. perl/perl-Encode-HanExtra: Add missing dependency.
  10197. perl/perl-Encode-HanExtra: New maintainer.
  10198. perl/perl-Encode-ISO2022: New maintainer.
  10199. perl/perl-Encode-JISX0213: New maintainer.
  10200. perl/perl-File-HomeDir: Fix README filename.
  10201. perl/perl-File-HomeDir: Updated for version 1.006.
  10202. perl/perl-File-ShareDir: Updated for version 1.118
  10203. perl/perl-File-ShareDir: Updated maintainer email
  10204. perl/perl-File-Slurp: Updated for version 9999.27.
  10205. perl/perl-GD: Add missing dependency.
  10206. perl/perl-GD: Fix -current build.
  10207. perl/perl-Gnome2-Vte: Added the new dependency vte2.
  10208. perl/perl-Gtk2-Notify: Add missing dependency.
  10209. perl/perl-Guard: Compress manpages.
  10210. perl/perl-HTML-Template: update copyright years
  10211. perl/perl-IO-Socket-SSL: Removed (added to Slackware's perl).
  10212. perl/perl-IPC-System-Simple: Updated for version 1.30
  10213. perl/perl-IPC-System-Simple: Updated maintainer email
  10214. perl/perl-Image-Magick: Removed (incompatible with imagemagick-7.x).
  10215. perl/perl-Image-Sane: Fix build if dbus not running.
  10216. perl/perl-Locale-Msgfmt: Add missing dependency.
  10217. perl/perl-MIME-Charset: New maintainer.
  10218. perl/perl-MIME-Charset: Updated for version 1.012.2.
  10219. perl/perl-MIME-tools: Add missing dependency.
  10220. perl/perl-MP3-Info: Add missing dependency.
  10221. perl/perl-Module-Implementation: Remove duplicate dependency.
  10222. perl/perl-Module-Manifest: Add missing dependency.
  10223. perl/perl-Module-Runtime: Removed (added to Slackware).
  10224. perl/perl-Mojolicious-Plugin-Humane: Add missing dependency.
  10225. perl/perl-Mojolicious-Plugin-Humane: Don't install in /usr/local.
  10226. perl/perl-Mojolicious-Plugin-I18N: Add missing dependency.
  10227. perl/perl-Mojolicious-Plugin-I18N: Don't install in /usr/local.
  10228. perl/perl-Moo: Removed (added to Slackware).
  10229. perl/perl-MooX-StrictConstructor: Add missing dependencies.
  10230. perl/perl-Moose: Add missing dependency.
  10231. perl/perl-MusicBrainz-DiscID: New maintainer.
  10232. perl/perl-Net-LDAP: Add missing dependency.
  10233. perl/perl-Net-RawIP: Fix build when network not available.
  10234. perl/perl-Net-Works: Add missing dependency.
  10235. perl/perl-PDF-Builder: Fix mandir.
  10236. perl/perl-PHP-Serialization: Removed (no maintainer)
  10237. perl/perl-PPI: Add missing dependency.
  10238. perl/perl-Package-Constants: Update maintainer
  10239. perl/perl-Path-Tiny: Removed (added to Slackware).
  10240. perl/perl-PerlIO-Layers: Removed (no maintainer)
  10241. perl/perl-Pod-Coverage: Added the new dep perl-Pod-Parser.
  10242. perl/perl-Pod-Parser: Added (base class for POD).
  10243. perl/perl-Pod-Parser: Compress manpages.
  10244. perl/perl-Razor2-Client-Agent: Removed (no maintainer)
  10245. perl/perl-String-Random: Add missing dependency.
  10246. perl/perl-Sub-Exporter-Progressive: Updated for version 0.001013.
  10247. perl/perl-Sub-Quote: Removed (added to Slackware).
  10248. perl/perl-Syntax-Highlight-Engine-Kate: Add missing dependency.
  10249. perl/perl-Task-Weaken: Fix REQUIRES.
  10250. perl/perl-Template-Toolkit: Removed (added to Slackware).
  10251. perl/perl-Term-ReadLine-Gnu: Updated for version 1.42, new maint.
  10252. perl/perl-Test-Class: Add missing dependency.
  10253. perl/perl-Test-Most: Updated for version 0.37
  10254. perl/perl-Test-Most: Updated maintainer email
  10255. perl/perl-Test-Script: Add missing dependency.
  10256. perl/perl-Test-utf8: Add missing dependency.
  10257. perl/perl-Text-CharWidth: New maintainer.
  10258. perl/perl-Text-Password-Pronounceable: Add missing dependency.
  10259. perl/perl-Text-Patch: Updated maintainer email
  10260. perl/perl-Text-Soundex: update copyright years
  10261. perl/perl-Text-WrapI18N: New maintainer.
  10262. perl/perl-Tie-Simple: Updated maintainer email
  10263. perl/perl-Tk-TableMatrix: Updated for version 20201024_2c4c333.
  10264. perl/perl-Unicode-LineBreak: New maintainer.
  10265. perl/perl-WWW-Curl: Add missing dependency.
  10266. perl/perl-WWW-Curl: Fix build when no network available.
  10267. perl/perl-WebService-Gyazo-B: Remove duplicate dependency.
  10268. perl/perl-WebService-MusicBrainz: New maintainer.
  10269. perl/perl-X10: Removed (no maintainer)
  10270. perl/perl-XML-SAX-Writer: Add missing dependency.
  10271. perl/perl-ZMQ-Constants: Add missing dependency.
  10272. perl/perl-audio-sndfile: Fix build with Perl 5.34.
  10273. perl/perl-audio-sndfile: Remove template comment.
  10274. perl/perl-data-dump: Updated for version 1.25.
  10275. perl/perl-file-libmagic: Add missing dependency.
  10276. perl/perl-file-libmagic: Remove template comment.
  10277. perl/perl-gnome2-gconf: Take over maintainership
  10278. perl/perl-gstreamer: Add missing dependency.
  10279. perl/perl-image-bmp: Remove template comment.
  10280. perl/perl-libintl: Updated for version 1.32.
  10281. perl/perl-libnet: Removed (added to Slackware's perl).
  10282. perl/perl-lwp-useragent-cached: Remove template comment.
  10283. perl/perl-namespace-autoclean: Add missing dependency.
  10284. perl/perl-palm-pdb: Remove template comment.
  10285. perl/perl-parallel-forkmanager: Add missing dependency.
  10286. perl/perl-rename: Removed (replaced with system/rename.pl).
  10287. perl/perl-text-unaccent: Fix build on -current.
  10288. perl/perl-text-unaccent: Fix build with Perl 5.34.
  10289. perl/perl-tk: update for version 804.036
  10290. perl/perl-xml-fast: Remove template comment.
  10291. perl/perl-xml-parser-lite-tree: Remove template comment.
  10292. perl/perl-xml-parser-lite: Remove template comment.
  10293. perl/perl-xml-twig: Updated maintainer email
  10294. perl/perl-yaml: Updated for version 1.30
  10295. perl/perl-yaml: Updated maintainer email
  10296. perl/rakudo: Updated for version 2021.09
  10297. perl/rakudo: Updated for version 2021.12
  10298. perl/zef: updated to 0.13.7
  10299. python-djvulibre: Rename to python-djvulibre, support py3.
  10300. python-python2-pbr: Renamed from pbr.
  10301. python/*: Switch /bin/sh back to /bin/bash
  10302. python/APScheduler: Fix dependency.
  10303. python/APscheduler: Update DEP.
  10304. python/Automat: Convert python to python2.
  10305. python/Automat: Fix dependency.
  10306. python/Automat: Update DEP.
  10307. python/Automat: new maintainer
  10308. python/Beaker: Convert python to python2.
  10309. python/BeautifulSoup4: Build also for python3 by default.
  10310. python/BeautifulSoup4: Convert python to python2.
  10311. python/BeautifulSoup4: Update for 4.10.0
  10312. python/BeautifulSoup4: Updated for version 4.10.0.
  10313. python/BeautifulSoup4: Updated for version 4.9.3.
  10314. python/DVR-Scan: Fixed dep info
  10315. python/Flask-Babel: Convert python to python2.
  10316. python/Flask-Bcrypt: Change to Flask.
  10317. python/Flask-Compress: Convert python to python2.
  10318. python/Flask-Cors: Convert python to python2.
  10319. python/Flask-Cors: Update DEP.
  10320. python/Flask-Dance: Change to Flask.
  10321. python/Flask-Dance: Update DEP.
  10322. python/Flask-Dance: Updates REQUIRES for python3-urlobject
  10323. python/Flask-Gravatar: Convert python to python2.
  10324. python/Flask-HTMLmin: Convert python to python2.
  10325. python/Flask-Login: Convert python to python2.
  10326. python/Flask-Mail: Convert python to python2.
  10327. python/Flask-Principal: Convert python to python2.
  10328. python/Flask-RESTful: Convert python to python2.
  10329. python/Flask-RESTful: Update DEP.
  10330. python/Flask-SQLAlchemy: Convert python to python2.
  10331. python/Flask-Security: Convert python to python2.
  10332. python/Flask-WTF: Convert python to python2.
  10333. python/Flask: Convert python to python2.
  10334. python/Flask: Removed Python 2 support.
  10335. python/Flask: Update DEP.
  10336. python/Flask: Updated for version 1.1.2.
  10337. python/GeoIP-Python: Convert python to python2.
  10338. python/Kallithea: Convert python to python2.
  10339. python/Kallithea: Fix circular deps.
  10340. python/Kallithea: Fixed dep info
  10341. python/Kallithea: updated for version 0.7.0, and python3
  10342. python/Logbook: Update DEP.
  10343. python/Logbook: Update DEP.
  10344. python/Mako: Removed (added to Slackware).
  10345. python/Markdown: Disable python3 support.
  10346. python/MarkupSafe: Build python2 only.
  10347. python/Parsley: Convert python to python2.
  10348. python/Paste: Add missing dependency.
  10349. python/Paste: Updated for version 3.5.0.
  10350. python/PasteDeploy: Fix README.
  10351. python/PasteDeploy: Fix REQUIRES.
  10352. python/Paver: Removed redundant doinst.sh.
  10353. python/Paver: Update DEP.
  10354. python/PyAudio: Convert python to python2.
  10355. python/PyGithub: Convert python to python2.
  10356. python/PyGreSQL: Convert python to python2.
  10357. python/PyPDF2: Build for python3 too.
  10358. python/PySDL2: Convert python to python2.
  10359. python/PySDL2: Fixed dep info in README
  10360. python/PySDL2: Update DEP.
  10361. python/PyStemmer: Updated for version 2.0.1.
  10362. python/Pygments: Removed (added to Slackware).
  10363. python/Pyro4: Convert python to python2.
  10364. python/PythonQt: Fix MD5SUM.
  10365. python/PythonQt: Fixed dep info
  10366. python/QtPy: Added QtPy (+new maintainer)
  10367. python/Routes: Convert python to python2.
  10368. python/Scrapy: Fix dependency.
  10369. python/TurboGears2: Convert python to python2.
  10370. python/WTForms: Convert python to python2.
  10371. python/WebHelpers: Convert python to python2.
  10372. python/WebHelpers: Update DEP.
  10373. python/Whoosh: Convert python to python2.
  10374. python/affine: Remove Python 2 support.
  10375. python/aiosignal: Added (managing callbacks)
  10376. python/aniso8601: Convert python to python2.
  10377. python/anyjson: Fix build with python 3.10.
  10378. python/anyjson: updated homepage
  10379. python/apprise: Convert python to python2.
  10380. python/apprise: Update DEP.
  10381. python/apprise: Update DEP.
  10382. python/apsw: Always build python3.
  10383. python/argcomplete: Remove redundant doinst.sh.
  10384. python/argon2-cffi: Fixed dep info
  10385. python/argon2-cffi: Updated for version 21.1.0 (+new maintainer)
  10386. python/arrow: Convert python to python2.
  10387. python/artifacts: Convert python to python2.
  10388. python/artifacts: Fix DOWNLOAD.
  10389. python/artifacts: Update DEP.
  10390. python/asciimatics: Convert python to python2.
  10391. python/asciimatics: Fix dependency.
  10392. python/asciimatics: Update DEP.
  10393. python/astroid: Fix REQUIRES for python2.
  10394. python/astroid: Update DEP.
  10395. python/asttokens: Add missing dependencies.
  10396. python/asttokens: Removed dependency.
  10397. python/async-timeout: Updated for version 4.0.2.
  10398. python/attrs: new maintainer
  10399. python/autopep8: Convert python to python2.
  10400. python/autopep8: Remove redundant doinst.sh.
  10401. python/babel: Convert python to python2.
  10402. python/backlash: Convert python to python2.
  10403. python/bcrypt: Fix REQUIRES.
  10404. python/billiard: Fix DOWNLOAD and README.
  10405. python/billiard: Fix DOWNLOAD and README.
  10406. python/bleach: Fix REQUIRES.
  10407. python/bleach: Update DEP.
  10408. python/bleach: new maintainer
  10409. python/bleach: updated for version 4.1.0
  10410. python/blessings: Update DEP.
  10411. python/boto3: Convert python to python2.
  10412. python/boto3: Update DEP.
  10413. python/boto: Convert python to python2.
  10414. python/boto: Update DEP.
  10415. python/boto: Update DEP.
  10416. python/bottle-mysql: Convert python to python2.
  10417. python/bsddb3: Build with python3 unconditionally
  10418. python/buildbot-slave: Convert python to python2.
  10419. python/buildbot-slave: new maintainer
  10420. python/buildbot-worker: Updated for version 3.4.1.
  10421. python/buildbot-worker: fixed REQUIRES
  10422. python/buildbot: Convert python to python2.
  10423. python/buildbot: Update DEP.
  10424. python/buildbot: fixed REQUIRES
  10425. python/buildbot: new maintainer
  10426. python/buildbot: updated for version 3.4.1 and python3
  10427. python/cairocffi: Convert python to python2.
  10428. python/cairocffi: Update for 1.3.0 (+new maintainer)
  10429. python/cariocffi: Add missing pytest-runner dependency.
  10430. python/celery: Convert python to python2.
  10431. python/cheroot: Convert python to python2.
  10432. python/cheroot: Update DEP.
  10433. python/click-default-group: Convert python to python2.
  10434. python/click-plugins: Remove Python 2 support.
  10435. python/click-plugins: new maintainer
  10436. python/click: Updated for version 7.1.2.
  10437. python/clint: Convert python to python2.
  10438. python/cloudscraper: Fixed dep info
  10439. python/cloudscraper: Update DEP.
  10440. python/cocos2d: removed
  10441. python/colorama: Updated for version 0.4.4.
  10442. python/colored: Updated for version 1.4.3.
  10443. python/constantly: also building for python3
  10444. python/constantly: new maintainer
  10445. python/cov-core: Convert python to python2.
  10446. python/coverage: Updated for version 6.3.1.
  10447. python/cryptography: Convert python to python2.
  10448. python/cryptography: Fix URL.
  10449. python/cryptography: Fix offline build.
  10450. python/cryptography: Fixed dep info
  10451. python/cryptography: Update DEP.
  10452. python/cryptography: Updated for version 2.8, added the dep wheel.
  10453. python/cryptography: Updated for version 35.0.0.
  10454. python/css-parser: Added (CSS parser and builder).
  10455. python/cssselect2: Convert python to python2.
  10456. python/cssutils: Build with python3 by default
  10457. python/dbus-python3: Removed (Added to Slackware).
  10458. python/debugpy: Added debugpy
  10459. python/decorator: new maintainer
  10460. python/decorator: updated for version 5.1.1
  10461. python/dfdatetime: Fix DOWNLOAD.
  10462. python/dfvfs: Convert python to python2.
  10463. python/dfvfs: Fix DOWNLOAD.
  10464. python/dfwinreg: Convert python to python2.
  10465. python/dfwinreg: Fix DOWNLOAD.
  10466. python/dfwinreg: Update DEP.
  10467. python/django-sass: Fixed dep info
  10468. python/dnspython: Disable python3 support.
  10469. python/dotty: Update DEP.
  10470. python/dtfabric: Convert python to python2.
  10471. python/dtfabric: Fix DOWNLOAD.
  10472. python/dtfabric: Update DEP.
  10473. python/dulwich: Add python3 support.
  10474. python/dulwich: Removes python3 support for older version, conflicting with python3-dulwich
  10475. python/dxfwrite: Fix DOWNLOAD and upgrade (zips only).
  10476. python/egenix-mx-base: Removed.
  10477. python/elasticsearch5: Update DEP.
  10478. python/entrypoints: Remove Python 2 support.
  10479. python/entrypoints: Updated for version 0.4.0 (+new maintainer)
  10480. python/et_xmlfile: Convert python to python2.
  10481. python/et_xmlfile: Update for 1.1.0
  10482. python/etk.docking: Convert python to python2.
  10483. python/euca2ools: Fix REQUIRES for python2.
  10484. python/fabric: Convert python to python2.
  10485. python/fasteners: Convert python to python2.
  10486. python/fasteners: Update DEP.
  10487. python/feedparser: Updated for version 6.0.8
  10488. python/fixtures: Convert python to python2.
  10489. python/flake8: Convert python to python2.
  10490. python/flake8: Fixed dep info
  10491. python/flake8: Remove redundant doinst.sh.
  10492. python/flask-paginate: Convert python to python2.
  10493. python/flask-restplus: Convert python to python2.
  10494. python/flask-restplus: Update DEP.
  10495. python/foolscap: Convert python to python2.
  10496. python/frosted: Convert python to python2.
  10497. python/frosted: Removed redundant doinst.sh.
  10498. python/frozenlist: Added (list-like structure)
  10499. python/functools-lru-cache: Add missing dependency.
  10500. python/functools-lru-cache: Convert python to python2.
  10501. python/functools-lru-cache: Removed dependency.
  10502. python/gearbox: Convert python to python2.
  10503. python/getdevinfo: Removed (no maintainer)
  10504. python/git-fame: Fix REQUIRES for python2.
  10505. python/git-fame: Updated for version 1.15.0.
  10506. python/git-fame: Updated for version 1.15.1.
  10507. python/gmpy: Removed (no dependees).
  10508. python/google-api-python-client: Convert python to python2.
  10509. python/google-images-download: Fix tarball handling.
  10510. python/gst-python3: Removed (included in gst-python now)
  10511. python/gst-python3: Updated for version 1.16.2, switch to meson.
  10512. python/gst-python: Support alternatives for ninja
  10513. python/gst-python: Updated for version 1.16.2.
  10514. python/gst-python: Updated for version 1.18.4
  10515. python/gst-python: Updated for version 1.18.5.
  10516. python/gst0-python: Fix REQUIRES.
  10517. python/guessit: Convert python to python2.
  10518. python/guessit: Remove redundant doinst.sh.
  10519. python/hachoir-core: Fix DOWNLOAD.
  10520. python/hachoir-metadata: Convert python to python2.
  10521. python/hachoir-metadata: Fix DOWNLOAD.
  10522. python/hachoir-parser: Fix DOWNLOAD.
  10523. python/halberd: Removed makefile patch for latex.
  10524. python/hg-git: Switch to python3.
  10525. python/hg-git: Updates REQUIRES for python3-dulwich
  10526. python/hgsubversion: Convert python to python2.
  10527. python/html2text: Remove template comment.
  10528. python/html5-parser: Convert python to python2.
  10529. python/huepy: Added (python text color library).
  10530. python/hyperlink: new maintainer
  10531. python/hyperlink: updated for version 21.0.0, added python3 build
  10532. python/idna: Removed (added to Slackware).
  10533. python/importlib-resources: Removed dependency.
  10534. python/incremental: new maintainer
  10535. python/incremental: updated for version 21.3.0, added python3 build
  10536. python/internetarchive: Convert python to python2.
  10537. python/internetarchive: Update DEP.
  10538. python/invoke: Remove redundant doinst.sh.
  10539. python/ipaddr-py: Updated for Slackware 15.0
  10540. python/ipython: Removed (abandoned).
  10541. python/ipython: Update for 8.1.1 (+new stack_data dependency)
  10542. python/ipython: Upgraded for version 7.22.0.
  10543. python/ipython: Upgraded for version 7.25.0.
  10544. python/ipython: Upload ipython (+new maintainer)
  10545. python/ipython_genutils: Remove Python 2 support.
  10546. python/ipython_genutils: Removed (abandoned).
  10547. python/ipython_genutils: Upload ipython_genutils (+new maintainer)
  10548. python/isort: Convert python to python2.
  10549. python/itsdangerous: Updated for version 1.1.0.
  10550. python/jaraco-packaging: Add missing dependency..
  10551. python/jaraco-packaging: Fix REQUIRES.
  10552. python/jaraco-packaging: Removed dependency.
  10553. python/jaraco.classes: Convert python to python2.
  10554. python/jaraco.classes: Fix dependencies.
  10555. python/jaraco.classes: Update DEP.
  10556. python/jdcal: Convert python to python2.
  10557. python/jedi: Convert python to python2.
  10558. python/jmespath: Remove redundant doinst.sh.
  10559. python/josepy: Updated for version 1.10.0.
  10560. python/josepy: Updated for version 1.11.0.
  10561. python/josepy: Updated for version 1.12.0.
  10562. python/jsonpatch: Convert python to python2.
  10563. python/jsonschema: Convert python to python2.
  10564. python/jsonschema: Removed redundant doinst.sh.
  10565. python/kallithea-frontend: Fix slack-desc
  10566. python/kallithea-frontend: added, offline frontend data for Kallithea
  10567. python/kaptan: Convert python to python2.
  10568. python/kaptan: Update DEP.
  10569. python/kombu: Convert python to python2.
  10570. python/linecache2: Convert python to python2.
  10571. python/linecache2: Update DEP.
  10572. python/llfuse: Updated for version 1.4.1.
  10573. python/lxml: Add python2-BeautifulSoup4 dependency
  10574. python/lxml: Updated for version 4.6.3.
  10575. python/lxml: Updated for version 4.8.0
  10576. python/mando: Convert python to python2.
  10577. python/mini-amf: Convert python to python2.
  10578. python/mini-amf: Update DEP.
  10579. python/mistune: Build python2 version also.
  10580. python/mistune: Removed Python 2 support.
  10581. python/mistune: new maintainer
  10582. python/mock: Convert python to python2.
  10583. python/mock: Update DEP.
  10584. python/monty: Convert python to python2.
  10585. python/monty: Update DEP.
  10586. python/monty: Update DEP.
  10587. python/more-itertools: Update DEP.
  10588. python/msgpack-python: Updated for version 1.0.2.
  10589. python/munch: Fix REQUIRES and README.
  10590. python/munch: Removed Python 2 support.
  10591. python/munch: Update DEP.
  10592. python/ndg_httpsclient: Convert python to python2.
  10593. python/nest_asyncio: Updated for version 1.5.4 (+new maintainer)
  10594. python/npm: Convert python to python2.
  10595. python/numpydoc: Update DEP.
  10596. python/numpydoc: Updated for version 1.1.0.
  10597. python/nxt-python3: Updated for version 3.0.0.
  10598. python/nxt-python: Fix file permissions.
  10599. python/nyx: Convert python to python2.
  10600. python/odoo: Fix REQUIRES for python2.
  10601. python/odoo: Fix REQUIRES.
  10602. python/odoo: Fixed dep info
  10603. python/odoo: Update DEP.
  10604. python/odoo: Update DEP.
  10605. python/odoo: Update DEP.
  10606. python/optional-django: Fix REQUIRES for python2.
  10607. python/packaging: Removed (added to Slackware).
  10608. python/pandocfilters: Removed Python 2 support.
  10609. python/pandocfilters: Updated for version 1.5.0 (+new maintainer)
  10610. python/paramiko: Convert python to python2.
  10611. python/paramiko: Updated maintainer email
  10612. python/parsel: Convert python to python2.
  10613. python/parso: new maintainer
  10614. python/parso: updated for version 0.8.3
  10615. python/path.py: Add missing dependency.
  10616. python/path.py: Convert python to python2.
  10617. python/path.py: Removed dependency.
  10618. python/pathlib2: Convert python to python2.
  10619. python/pathlib2: Fix REQUIRES for python2.
  10620. python/pathlib2: Update DEP.
  10621. python/pbr: Only build python2.
  10622. python/pbr: Updated for version 5.6.0.
  10623. python/pefile: Fixed dep info in README
  10624. python/pefile: Update DEP.
  10625. python/pelican: Convert python to python2.
  10626. python/pelican: Fixed dep info
  10627. python/pelican: Update DEP.
  10628. python/pendulum: Convert python to python2.
  10629. python/phply: Update DEP.
  10630. python/pickleshare: Removed Python 2 support.
  10631. python/pip: Removed (added to Slackware).
  10632. python/pipdeptree: Update DEP.
  10633. python/pipdeptree: Updated for version 2.2.1.
  10634. python/piprot: Remove redundant doinst.sh.
  10635. python/piprot: Update DEP.
  10636. python/pkginfo: Updated for version 1.8.2.
  10637. python/planes: Convert python to python2.
  10638. python/planes: Removed.
  10639. python/plaso: Convert python to python2.
  10640. python/plaso: Update DEP.
  10641. python/pluggy: Add missing dependency.
  10642. python/pluggy: Convert python to python2.
  10643. python/pluggy: Removed dependency.
  10644. python/ply: Removed (added to Slackware).
  10645. python/portend: Convert python to python2.
  10646. python/progressive: Convert python to python2.
  10647. python/prompt_toolkit1: Convert python to python2.
  10648. python/prompt_toolkit1: Update DEP.
  10649. python/prompt_toolkit: Convert python to python2.
  10650. python/prompt_toolkit: Update DEP.
  10651. python/ptpython: Removed redundant doinst.sh.
  10652. python/pure_eval: Upload pure_eval
  10653. python/purl: Update DEP.
  10654. python/py3cairo: Removed (added to Slackware).
  10655. python/py3sensors: Fix DOWNLOAD.
  10656. python/py4j: Removed (No maintainer).
  10657. python/py: Add missing dependency.
  10658. python/py: Convert python to python2.
  10659. python/py: Removed dependency.
  10660. python/pyOpenSSL: Convert python to python2.
  10661. python/pyasn1-modules: Convert python to python2.
  10662. python/pybind11: Include python libraries in build
  10663. python/pybind11: Updated for version 2.6.2
  10664. python/pybind11: Updated for version 2.7.1
  10665. python/pybind11: Updated for version 2.8.1
  10666. python/pybind11: Updated for version 2.9.0
  10667. python/pybluez: Fix REQUIRES for python2.
  10668. python/pybluez: Updated for version 0.23
  10669. python/pybluez: Updated maintainer email
  10670. python/pycdio: Updated for version 2.1.0.
  10671. python/pychart: Removed.
  10672. python/pycld2: Remove Python 2 support.
  10673. python/pycodestyle: Updated for version 2.8.0.
  10674. python/pycrypto: Updated maintainer email
  10675. python/pycryptodomex: Convert python to python2.
  10676. python/pycryptodomex: Removed dependency.
  10677. python/pycryptodomex: Updated for version 3.10.4.
  10678. python/pycryptodomex: Updated for version 3.11.0.
  10679. python/pycryptodomex: Updated for version 3.12.0.
  10680. python/pycryptodomex: Updated for version 3.13.0.
  10681. python/pycryptodomex: Updated for version 3.14.0.
  10682. python/pycryptodomex: Updated for version 3.14.1.
  10683. python/pycryptopp: Fix build on newer gcc.
  10684. python/pycryptopp: Fixed dep info
  10685. python/pydot: Minor script cleanup
  10686. python/pydot: Update DEP.
  10687. python/pydot: Updated maintainer email
  10688. python/pyfiglet: Removed redundant doinst.sh.
  10689. python/pygame: Convert python to python2.
  10690. python/pygame: Updated for version 2.0.1.
  10691. python/pygame: Updated for version 2.0.2
  10692. python/pygame: Updated for version 2.0.3.
  10693. python/pygobject3-python3: Removed (Added to Slackware).
  10694. python/pyicu: Build with python3 unconditionally
  10695. python/pyicu: Updated for version 2.4.2.
  10696. python/pyicu: Updated for version 2.7.2.
  10697. python/pyicu: Updated for version 2.7.4
  10698. python/pyicu: Updated maintainer email
  10699. python/pyliblo: Add python3 support.
  10700. python/pylirc: Removed (No maintainer).
  10701. python/pymysql: Convert python to python2.
  10702. python/pynacl: Convert python to python2.
  10703. python/pynacl: Update DEP.
  10704. python/pyparsing: Removed (Added to Slackware).
  10705. python/pypoppler: Fix for gcc >= 10.x.
  10706. python/pypy3: Fix DOWNLOAD.
  10707. python/pypy: Fix DOWNLOAD.
  10708. python/pyqode.qt: Fixed dep info
  10709. python/pyresample: Update DEP
  10710. python/pyrsistent: Update DEP.
  10711. python/pysed: Fix DOWNLOAD.
  10712. python/pyside2: Added. Required for latest FreeCAD
  10713. python/pyside2: Updated for version 5.15.2.1
  10714. python/pyside: Fix download URL.
  10715. python/pysqlite: Update DEP.
  10716. python/pytest-runner: Convert python to python2.
  10717. python/pytest: Removed dependency.
  10718. python/pytest: Update DEP.
  10719. python/python-Levenshtein: Renamed python2-Levenshtein.
  10720. python/python-MonthDelta: Renamed python2-MonthDelta.
  10721. python/python-PySnooper: Removed Python 2 support.
  10722. python/python-Safe: Renamed python2-Safe.
  10723. python/python-argopt: Removed dependency.
  10724. python/python-argopt: Updated for version 0.7.0.
  10725. python/python-authres: Renamed python2-authres.
  10726. python/python-autobahn: Renamed python2-autobahn.
  10727. python/python-bigfloat: Renamed python2-bigfloat.
  10728. python/python-bitstring: Fix tarball handling.
  10729. python/python-blake2: Renamed python2-blake2.
  10730. python/python-branca: Removed (abandoned).
  10731. python/python-branca: Update DEP.
  10732. python/python-branca: Update DEP.
  10733. python/python-branca: Updated MD5SUM.
  10734. python/python-certifi: Removed (Added to Slackware).
  10735. python/python-chardet: Removed (added to Slackware).
  10736. python/python-cheetah: Renamed python2-cheetah.
  10737. python/python-clamd: Renamed python2-clamd.
  10738. python/python-cluster: Renamed python2-cluster.
  10739. python/python-cmdln: Removed (abandoned upstream)
  10740. python/python-configargparse: Updated for version 1.4.
  10741. python/python-configargparse: Updated for version 1.4.1.
  10742. python/python-configargparse: Updated for version 1.5.1.
  10743. python/python-css-parser: Added (css for python).
  10744. python/python-css-parser: Duplicate of css-parser.
  10745. python/python-daemon: Renamed python2-daemon.
  10746. python/python-dateutil: Renamed python2-dateutil.
  10747. python/python-dateutil: Update DEP.
  10748. python/python-dateutil: Updated for version 2.8.1.
  10749. python/python-dbus-next: Upload python-dbus-next
  10750. python/python-demjson: Renamed python2-demjson.
  10751. python/python-distro: Removed (added to Slackware).
  10752. python/python-distutils-extra: Build with python3 by default
  10753. python/python-django-legacy: Renamed python2-django-legacy.
  10754. python/python-django-tagging: Fix REQUIRES for python2.
  10755. python/python-django-tagging: Renamed python2-django-tagging.
  10756. python/python-django: Renamed python2-django.
  10757. python/python-djvulibre: Add missing files.
  10758. python/python-djvulibre: Renamed python2-djvulibre.
  10759. python/python-docker-pycreds: Renamed python2-docker-pycreds.
  10760. python/python-docker-pycreds: Update DEP.
  10761. python/python-docker: Fix REQUIRES for python2.
  10762. python/python-docker: Renamed python2-docker.
  10763. python/python-docker: Update DEP.
  10764. python/python-dockerpty: Renamed python2-dockerpty.
  10765. python/python-dockerpty: Update DEP.
  10766. python/python-editor: Renamed python2-editor.
  10767. python/python-editor: Update DEP.
  10768. python/python-editor: Updated for version 1.0.4.
  10769. python/python-elementtree: Renamed python2-elementtree.
  10770. python/python-elementtree: Updated for version 1.3.
  10771. python/python-elib.intl: Renamed python2-elib.intl.
  10772. python/python-emoji: Fix tarball handling.
  10773. python/python-esmre: Renamed python2-esmre.
  10774. python/python-executing: Upload python-executing
  10775. python/python-fonttools: Updated for version 4.29.1.
  10776. python/python-future: Removed (added to Slackware).
  10777. python/python-gammu: Renamed python2-gammu.
  10778. python/python-gattlib: Fix setup.py for the newer boost.
  10779. python/python-gattlib: Renamed python2-gattlib.
  10780. python/python-helpdev: Added python-helpdev
  10781. python/python-importlib_metadata: Updated for version 4.10.1.
  10782. python/python-jeepney: Added (Pure Python DBus interface).
  10783. python/python-joblib: Update for 1.1.0 (+new maintainer)
  10784. python/python-jsonrpclib: Updated for version 0.4.3.
  10785. python/python-kerberos: Fixed dep info
  10786. python/python-keybinder: Renamed python2-keybinder.
  10787. python/python-keyczar: Renamed python2-keyczar.
  10788. python/python-keyring: Add missing dependency.
  10789. python/python-keyring: Removed dependency.
  10790. python/python-keyutils: Renamed python2-keyutils.
  10791. python/python-klein: Renamed python2-klein.
  10792. python/python-lazy-object-proxy: Renamed python2-lazy-object-proxy.
  10793. python/python-ldap: Fix tarball handling.
  10794. python/python-lhafile: Renamed python2-lhafile.
  10795. python/python-libnacl: Fixed dep info
  10796. python/python-libsass: Removed redundant doinst.sh.
  10797. python/python-libsass: Update DEP.
  10798. python/python-libtmux: Updated for version 0.10.3.
  10799. python/python-ly: Updated for version 0.9.7, switch to python3.
  10800. python/python-lz4: Renamed python2-lz4.
  10801. python/python-m2r: Fixed dep info
  10802. python/python-magic: Autodetect python3.
  10803. python/python-magick: Renamed python2-magick.
  10804. python/python-mccabe: Renamed python2-mccabe.
  10805. python/python-memcached: Renamed python2-memcached.
  10806. python/python-memcached: Update DEP.
  10807. python/python-mimeparse: Renamed python2-mimeparse.
  10808. python/python-morbid: Renamed python2-morbid.
  10809. python/python-mpd: Renamed python2-mpd.
  10810. python/python-mysql-replication: Updated for version 0.25.
  10811. python/python-mysql-replication: Updated for version 0.26.
  10812. python/python-mysqlclient: Fix MD5SUM and SRCNAM.
  10813. python/python-mysqlclient: Fix MD5SUM and SRCNAM.
  10814. python/python-nbxmpp: Updated for version 2.0.4.
  10815. python/python-netaddr: Renamed python2-netaddr.
  10816. python/python-notify2: Removed (added to Slackware).
  10817. python/python-oauth2: Renamed python2-oauth2.
  10818. python/python-oauth2client: Renamed python2-oauth2client.
  10819. python/python-oauth: Renamed python2-oauth.
  10820. python/python-openid: Renamed python2-openid.
  10821. python/python-orbited: Fix REQUIRES for python2.
  10822. python/python-orbited: Renamed python2-orbited.
  10823. python/python-parsedatetime: Update DEP.
  10824. python/python-patch: Renamed python2-patch.
  10825. python/python-pdfminer: Renamed python2-pdfminer.
  10826. python/python-pmw: Renamed python2-pmw.
  10827. python/python-poppler-qt4: Removed (needs poppler-qt4).
  10828. python/python-poppler-qt5: Added (Python bindings to poppler-qt5).
  10829. python/python-poppler-qt5: Direct setup.py to qt5 qmake-bin.
  10830. python/python-precis-i18n: Updated for version 1.0.4.
  10831. python/python-progress: Renamed python2-progress.
  10832. python/python-prometheus_client: Update for 0.13.1
  10833. python/python-prometheus_client: Updated for version 0.12.0 (+new maintainer)
  10834. python/python-pydns: Renamed python2-pydns.
  10835. python/python-pyparted: Add -fcommon cflag. Fix DOWNLOAD/MD5SUM.
  10836. python/python-pypolicyd-spf: Renamed python2-pypolicyd-spf.
  10837. python/python-pyspf: Fix REQUIRES for python2.
  10838. python/python-pyspf: Renamed python2-pyspf.
  10839. python/python-qrcode: Update DEP.
  10840. python/python-qrcode: Updated for version 6.1.
  10841. python/python-qrcode: Updated for version 7.1.
  10842. python/python-qrcode: Updated for version 7.3.1.
  10843. python/python-requestbuilder: Renamed python2-requestbuilder.
  10844. python/python-requestbuilder: Update DEP.
  10845. python/python-requests-kerberos: Renamed python2-requests-kerberos.
  10846. python/python-requests-kerberos: Update DEP.
  10847. python/python-requests: Removed (added to Slackware).
  10848. python/python-scandir: Renamed python2-scandir.
  10849. python/python-setuptools-doc: Renamed python2-setuptools-doc.
  10850. python/python-simpy: Renamed python2-simpy.
  10851. python/python-slacklog: Renamed python2-slacklog.
  10852. python/python-slacklog: Updated for version 0.9.6.
  10853. python/python-slip: Include support for python3
  10854. python/python-socks: Updated for version 2.0.3.
  10855. python/python-soupsieve: Renamed python2-soupsieve.
  10856. python/python-stomper: Renamed python2-stomper.
  10857. python/python-suds: Renamed python2-suds.
  10858. python/python-swiftclient: Renamed python2-swiftclient.
  10859. python/python-swiftclient: Update DEP.
  10860. python/python-tabulate: Renamed python2-tabulate.
  10861. python/python-tblib: Renamed python2-tblib.
  10862. python/python-tblib: Update DEP.
  10863. python/python-texttable: Renamed python2-texttable.
  10864. python/python-transaction: Renamed python2-transaction.
  10865. python/python-tvrage: Renamed python2-tvrage.
  10866. python/python-twisted: Renamed python2-twisted.
  10867. python/python-twitter: Renamed python2-twitter.
  10868. python/python-twitter: Update DEP.
  10869. python/python-txaio: Renamed python2-txaio.
  10870. python/python-txaio: Update DEP.
  10871. python/python-unicodecsv: Renamed python2-unicodecsv.
  10872. python/python-unicodedata2: Updated DOWNLOAD.
  10873. python/python-unicodedata2: Updated for version 14.0.0.
  10874. python/python-uri-templates: Renamed python2-uri-templates.
  10875. python/python-urllib3: Removed (added to Slackware).
  10876. python/python-urwid_readline: New submission.
  10877. python/python-uuid: Renamed python2-uuid.
  10878. python/python-vatnumber: Renamed python2-vatnumber.
  10879. python/python-vulndb: Renamed python2-vulndb.
  10880. python/python-webencodings: Removed Python 2 support.
  10881. python/python-webpack: Fix REQUIRES for python2.
  10882. python/python-whisper: Renamed python2-whisper.
  10883. python/python-wordpress-xmlrpc: Renamed python2-wordpress-xmlrpc.
  10884. python/python-wrapt: Renamed python2-wrapt.
  10885. python/python-x11_hash: Renamed python2-x11_hash.
  10886. python/python-xcffib: Renamed python2-xcffib.
  10887. python/python-xcffib: Update DEP.
  10888. python/python-xlib: Add missing dependency.
  10889. python/python-xlib: Removed dependency.
  10890. python/python-xlib: Removed not needed hack.
  10891. python/python-xlib: Update DEP.
  10892. python/python-xlwt: Renamed python2-xlwt.
  10893. python/python-xrandr: Renamed python2-xrandr.
  10894. python/python-yenc: Renamed python2-yenc.
  10895. python/python-zipp: Fix REQUIRES.
  10896. python/python-zipp: Removed dependency.
  10897. python/python-zipp: Updated for version 3.7.0.
  10898. python/python2-BeautifulSoup4: Added (legacy BeautifulSoup4) python2-BeautifulSoup4 (for Python 2 compatibility)
  10899. python/python2-MarkupSafe: Renamed from MarkupSafe.
  10900. python/python2-blake2: Removed (unused, python2, ftbfs).
  10901. python/python2-cached-property: Renamed python2-cached-property.
  10902. python/python2-cheetah: Fixed comment.
  10903. python/python2-cryptography: Added (Python2 cryptography library)
  10904. python/python2-cryptography: Fix PRGNAM in info file
  10905. python/python2-dateutil: Fix dependency.
  10906. python/python2-gammu: Updated for version 2.12
  10907. python/python2-gammu: Updated maintainer email
  10908. python/python2-gattlib: Updated for version 0.20200121
  10909. python/python2-gattlib: Updated maintainer email
  10910. python/python2-keybinder: Removed (keybinder3 in -current dropped python support).
  10911. python/python2-lz4: Updated for version 2.2.1.
  10912. python/python2-pbr: Fix .info.
  10913. python/python2-pillow: Added (Python Imaging Library).
  10914. python/python2-pkgconfig: Added (python module for pkg-tool).
  10915. python/python2-progress: Updated for version 1.6.
  10916. python/python2-psycopg2: renamed from psycopg2 as the latest version supporting python2
  10917. python/python2-pybluez: Renamed from pybluez
  10918. python/python2-pycrypto: Renamed to clarify it's python2 only
  10919. python/python2-pyicu: Renamed from pyicu and updated for version 2.8
  10920. python/python2-selectors2: Added (backported selctors for py2).
  10921. python/python2-setuptools-doc: Removed (does not build.)
  10922. python/python2-setuptools-scm: Added (setuptools-scm for Python 2).
  10923. python/python2-sip: Removed (already in current as sip).
  10924. python/python2-swiftclient: Update DEP.
  10925. python/python2-tabulate: Removed redundant doinst.sh.
  10926. python/python2-twisted: new maintainer
  10927. python/python2-txaio: new maintainer
  10928. python/python3-Cython: Removed (added to Slackware).
  10929. python/python3-Flask-Basicauth: Added (Flask extension).
  10930. python/python3-Flask-Basicauth: Change to Flask.
  10931. python/python3-Flask-RESTful: Change to Flask.
  10932. python/python3-Flask-RESTful: Update DEP.
  10933. python/python3-Flask-httpauth: Change to Flask.
  10934. python/python3-Flask: Removed. (Use Flask).
  10935. python/python3-Flask: Updated for version 1.1.2.
  10936. python/python3-MutatorMath: Added (new dependendency of Type1_to_OTF)
  10937. python/python3-aiohttp-socks: Updated for version 0.7.1.
  10938. python/python3-aiohttp: Change source to pypi.
  10939. python/python3-aiohttp: Fix MD5SUM.
  10940. python/python3-aiohttp: Update DEP.
  10941. python/python3-aiohttp: Updated for version 3.8.1.
  10942. python/python3-alembic: Updated for version 1.7.6.
  10943. python/python3-amqp: Updated for version 5.0.9
  10944. python/python3-appdirs: Removed (added to Slackware).
  10945. python/python3-astroid: Updated dependencies.
  10946. python/python3-astroid: Updated for version 2.5.5.
  10947. python/python3-astroid: Updated for version 2.5.6.
  10948. python/python3-astroid: Updated for version 2.5.7.
  10949. python/python3-astroid: Updated for version 2.5.8.
  10950. python/python3-astroid: Updated for version 2.6.0.
  10951. python/python3-astroid: Updated for version 2.6.2.
  10952. python/python3-astroid: Updated for version 2.6.4.
  10953. python/python3-astroid: Updated for version 2.6.5.
  10954. python/python3-astroid: Updated for version 2.6.6.
  10955. python/python3-astroid: Updated for version 2.7.2.
  10956. python/python3-astroid: Updated for version 2.7.3.
  10957. python/python3-autobahn: cloned from python2-autobahn for python3, updated for version 22.2.2
  10958. python/python3-automat: cloned from Automat for python3, updated for version 20.2.0
  10959. python/python3-babel: new maintainer
  10960. python/python3-babel: updated for version 2.9.1
  10961. python/python3-backlash: renamed from backlash for python3, updated for version 0.3.1
  10962. python/python3-bcrypt: renamed from bcrypt for python3, updated for version 3.2.0
  10963. python/python3-beaker: renamed from Beaker for python3
  10964. python/python3-billiard: Updated for version 3.6.4.0
  10965. python/python3-booleanOperations: Add missing dep, fix script.
  10966. python/python3-booleanOperations: Added (new dependendency of Type1_to_OTF)
  10967. python/python3-booleanOperations: Fix .info file, add missing dep.
  10968. python/python3-celery: renamed from celery for python3, updated for version 5.2.3
  10969. python/python3-configargparse: Renamed from python-configargparse.
  10970. python/python3-configargparse: Updated for version 1.5.3.
  10971. python/python3-crank: renamed from crank for python3
  10972. python/python3-dateutil: Fix REQUIRES.
  10973. python/python3-dateutil: Removed dependency.
  10974. python/python3-dateutil: Update DEP.
  10975. python/python3-dateutil: new maintainer
  10976. python/python3-dateutil: updated for version 2.8.2
  10977. python/python3-defcon: Added (new dependendency of Type1_to_OTF)
  10978. python/python3-defusedxml: Updated for version 0.7.1 (+new maintainer)
  10979. python/python3-django: Install bash-completion file to system dir
  10980. python/python3-dugong: Fix DOWNLOAD.
  10981. python/python3-dulwich: cloned from dulwich for python3, updated for version 0.20.32
  10982. python/python3-editor: Updated for version 1.0.4.
  10983. python/python3-fasteners: Replaced PyPI binary as source.
  10984. python/python3-fasteners: Updated for version 0.17.2.
  10985. python/python3-fasteners: Updated for version 0.17.3.
  10986. python/python3-fontMath: Added (new dependendency of Type1_to_OTF)
  10987. python/python3-fontParts: Added (new dependendency of Type1_to_OTF)
  10988. python/python3-fontPens: Added (New dependendency of Type1_to_OTF)
  10989. python/python3-fontPens: Fix PRGNAM in script and info file.
  10990. python/python3-formencode: cloned from FormEncode for python3, updated for version 2.0.1
  10991. python/python3-fs: Added (New dependendency of Type1_to_OTF)
  10992. python/python3-future: Removed (added to Slackware).
  10993. python/python3-gattlib: Added
  10994. python/python3-gearbox: renamed from gearbox for python3
  10995. python/python3-geventhttpclient: Added (HTTP client library).
  10996. python/python3-geventhttpclient: Updated for version 1.5.3.
  10997. python/python3-gmpy2: Updated for version 2.1.0rc1.
  10998. python/python3-hupper: renamed from hupper for python3, updated for version 1.10.3
  10999. python/python3-ipaddr: added for Kallithea
  11000. python/python3-ipython-sql: Fix dependency.
  11001. python/python3-ipython-sql: Removed (no more ipython).
  11002. python/python3-ipython-sql: Update python3-ipython3-sql for 0.4.0
  11003. python/python3-ipython: Removed (replaced by python/ipython).
  11004. python/python3-isort: Updated for version 5.10.1.
  11005. python/python3-isort: Updated for version 5.9.1.
  11006. python/python3-isort: Updated for version 5.9.2.
  11007. python/python3-isort: Updated for version 5.9.3.
  11008. python/python3-isounidecode: Replaced PyPI binary as source.
  11009. python/python3-jedi: Update for 0.18.1 (+new maintainer)
  11010. python/python3-kombu: renamed from kombu for python3, updated for version 5.2.3
  11011. python/python3-lazy-object-proxy: Allow newer setuptools.
  11012. python/python3-lazy-object-proxy: Removed dependency.
  11013. python/python3-lazy-object-proxy: Updated for version 1.7.1.
  11014. python/python3-matplotlib-inline: Upload python3-matplotlib-inline (+new maintainer)
  11015. python/python3-monotonic: Replaced PyPI binary as source.
  11016. python/python3-mpmath: Removed dependency.
  11017. python/python3-multidict: Updated for version 6.2.0.
  11018. python/python3-natsort: Added (Python Sorting Library)
  11019. python/python3-natsort: Replaced PyPI binary as source.
  11020. python/python3-natsort: Updated for version 8.0.0.
  11021. python/python3-natsort: Updated for version 8.0.2.
  11022. python/python3-natsort: Updated for version 8.1.0.
  11023. python/python3-nltk: Fix slack-desc.
  11024. python/python3-nltk: renamed from libraries/ntlk
  11025. python/python3-obspy: Update DEP.
  11026. python/python3-obspy: Update DEP.
  11027. python/python3-openpyxl: Fix MD5SUM
  11028. python/python3-openpyxl: Fixed dep info
  11029. python/python3-openpyxl: Update for 3.0.9
  11030. python/python3-packaging: Removed (added to Slackware).
  11031. python/python3-paginate: added, requirement for Kallithea
  11032. python/python3-paginate_sqlalchemy: added, requirement for Kallithea
  11033. python/python3-pandas: Update for 1.4.1 (+new maintainer)
  11034. python/python3-paramiko: Added (Python3 SSH module)
  11035. python/python3-paste: renamed from Paste for python3
  11036. python/python3-pastedeploy: renamed from PasteDeploy for python3, updated for version 2.1.1
  11037. python/python3-patsy: Update DEP.
  11038. python/python3-patsy: Update for 0.5.2
  11039. python/python3-plexapi: Replaced PyPI binary as source.
  11040. python/python3-plexapi: Updated for version 4.10.0.
  11041. python/python3-plexapi: Updated for version 4.5.2.
  11042. python/python3-plexapi: Updated for version 4.7.2.
  11043. python/python3-plexapi: Updated for version 4.8.0.
  11044. python/python3-plexapi: Updated for version 4.9.1.
  11045. python/python3-plexapi: Updated for version 4.9.2.
  11046. python/python3-prompt_toolkit: Update DEP.
  11047. python/python3-prompt_toolkit: new maintainer
  11048. python/python3-prompt_toolkit: updated for version 3.0.28
  11049. python/python3-psautohint: Added (new dependendency of Type1_to_OTF)
  11050. python/python3-pulsectl: Updated for version 21.10.5.
  11051. python/python3-pulsectl: Updated for version 21.5.0.
  11052. python/python3-pulsectl: Updated for version 22.1.0.
  11053. python/python3-pulsectl: Updated for version 22.1.3.
  11054. python/python3-pybluez: Added (Python BlueZ bindings)
  11055. python/python3-pyclipper: Added (new dependendency of Type1_to_OTF)
  11056. python/python3-pyicu: Added (python wrapper for icu4c)
  11057. python/python3-pyjwt: Updated for version 2.3.0, switch to python3.
  11058. python/python3-pylint: Updated for version 2.10.1.
  11059. python/python3-pylint: Updated for version 2.8.0.
  11060. python/python3-pylint: Updated for version 2.8.2.
  11061. python/python3-pylint: Updated for version 2.9.3.
  11062. python/python3-pylint: Updated for version 2.9.4.
  11063. python/python3-pylint: Updated for version 2.9.5.
  11064. python/python3-pylint: Updated for version 2.9.6.
  11065. python/python3-pylyrics: Add the dependency BeautifulSoup4.
  11066. python/python3-pylyrics: Fix for version 1.1.0.
  11067. python/python3-pyparted: Add -fcommon cflag. DOWNLOAD/MD5SUM, i486.
  11068. python/python3-pypresence: Replaced PyPI binary as source.
  11069. python/python3-pypresence: Updated for version 4.2.1.
  11070. python/python3-pyrsistent: Update DEP.
  11071. python/python3-pyrsistent: Updated for version 0.18.1 (+new maintainer)
  11072. python/python3-pysdl2: Updated for version 0.9.10.
  11073. python/python3-pysdl2: Updated for version 0.9.11.
  11074. python/python3-pysdl2: Updated for version 0.9.9.
  11075. python/python3-pytest: Removed dependency.
  11076. python/python3-pytest: Update DEP.
  11077. python/python3-pythondialog: Updated for version 3.5.2.
  11078. python/python3-pyusb: Added (Python Module)
  11079. python/python3-pyzmq: Updated for version 19.0.2
  11080. python/python3-repoze.lru: renamed from repoze.lru for python3
  11081. python/python3-routes: renamed from Routes for python3, updated for version 2.5.1
  11082. python/python3-seaborn: Update for 0.11.2
  11083. python/python3-semantic-version: Added (Python Library).
  11084. python/python3-semantic-version: Fix MD5SUM.
  11085. python/python3-semantic-version: Updated for version 2.9.0.
  11086. python/python3-setuptools-rust: Added (Setuptools plugin for Rust).
  11087. python/python3-setuptools-rust: Fix dependency.
  11088. python/python3-setuptools-rust: Removed dependency.
  11089. python/python3-setuptools-rust: Update DEP.
  11090. python/python3-setuptools_scm_git_archive: added, requirement for Kallithea
  11091. python/python3-sge: Added (2d game engine).
  11092. python/python3-sge: Remove old template CWD.
  11093. python/python3-sgmllib3k: Added (python3 port of python 2 sgmllib)
  11094. python/python3-sip: Removed (already in current as sip).
  11095. python/python3-six: Removed (added to Slackware).
  11096. python/python3-soupsieve: Update for 2.3.1
  11097. python/python3-statsmodels: Update for 0.13.2 (+fix slack-desc)
  11098. python/python3-sympy: Updated README.
  11099. python/python3-tekore: Replaced PyPI binary as source.
  11100. python/python3-tekore: Updated for version 3.7.1.
  11101. python/python3-tekore: Updated for version 4.0.0.
  11102. python/python3-tekore: Updated for version 4.1.0.
  11103. python/python3-tekore: Updated for version 4.2.0.
  11104. python/python3-tgext.routes: renamed from tgext.routes for python3, updated for version 0.2.1
  11105. python/python3-toml: Added (Python Library).
  11106. python/python3-toml: Removed (part of python-toml).
  11107. python/python3-turbogears2: renamed from TurboGears2 for python3, updated for version 2.4.3
  11108. python/python3-twisted: Updated for version 22.1.0.
  11109. python/python3-txaio: cloned from python2-txaio for python3,updated for version 22.2.1
  11110. python/python3-ufoProcessor: Added (new dependendency Type1_to_OTF)
  11111. python/python3-ufonormalizer: Added (new dependendency of Type1_to_OTF)
  11112. python/python3-ufonormalizer: Fix script.
  11113. python/python3-urlobject: renamed from URLObject for python3
  11114. python/python3-waitress: cloned from waitress forpython3, updated for version 2.0.0
  11115. python/python3-wcwidth: new maintainer
  11116. python/python3-webencodings: Renamed to python3.
  11117. python/python3-webencodings: new maintainer
  11118. python/python3-webhelpers2: added for Kallithea
  11119. python/python3-webob: Updated for version 1.8.7
  11120. python/python3-whoosh: renamed from Whoosh for python3
  11121. python/python3-xcffib: Upload python3-xcffib (dependency of qtile)
  11122. python/python3-zopfli: Added (new dependendency of Type1_to_OTF)
  11123. python/python3: Removed (added to Slackware).
  11124. python/pytsk: Fixed DOWNLOAD.
  11125. python/pytsk: Updated for version 20210801.
  11126. python/pytz: Minor script cleanup
  11127. python/pytz: Updated for version 2021.3.
  11128. python/pytz: Updated maintainer email
  11129. python/pyudev: Update DEP.
  11130. python/pyusb: Add missing dependencies.
  11131. python/pyusb: Add missing dependency.
  11132. python/pyusb: Fix REQUIRES and README.
  11133. python/pyusb: Fix REQUIRES and README.
  11134. python/pyusb: Removed dependency.
  11135. python/pyusb: Updated for version 1.2.1
  11136. python/pywebkitgtk: Removed.
  11137. python/pyxdg: Removed (added to Slackware).
  11138. python/pyzmq: new maintainer
  11139. python/ramlfications: Convert python to python2.
  11140. python/readme_renderer: Fixed dep info
  11141. python/readme_renderer: Updated for version 32.0.
  11142. python/rebulk: Convert python to python2.
  11143. python/rebulk: Update DEP.
  11144. python/recommonmark: Convert python to python2.
  11145. python/recommonmark: Fix tarball handling.
  11146. python/recommonmark: Fixed dep info
  11147. python/reedsolo: Fix building with gcc on -current.
  11148. python/relatorio: Convert python to python2.
  11149. python/rencode: Add missing dependency.
  11150. python/requests-futures: Update DEP.
  11151. python/requests-oathlib: Update DEP.
  11152. python/requests-oauthlib: Convert python to python2.
  11153. python/requests-toolbelt: Update DEP.
  11154. python/requests-toolbelt: Updated for version 0.9.1.
  11155. python/requirements-detector: Convert python to python2.
  11156. python/requirements-detector: Remove redundant doinst.sh.
  11157. python/rfc6555: Added (Happy Eyeballs in Python).
  11158. python/rsa: Convert python to python2.
  11159. python/rst-linker: Add missing dependency.
  11160. python/rst-linker: Fix REQUIRES.
  11161. python/rst-linker: Fix REQUIRES.
  11162. python/rst-linker: Removed dependency.
  11163. python/ruffus: Convert to python3
  11164. python/s3cmd: Convert python to python2.
  11165. python/s3transfer: Convert python to python2.
  11166. python/s3transfer: Update DEP.
  11167. python/schema: Convert python to python2.
  11168. python/scikit-learn: Update for 1.0.2 (+new maintainer)
  11169. python/scikit-umfpack: Convert python to python2.
  11170. python/secretstorage: Added missing dependency.
  11171. python/secretstorage: Convert python to python2.
  11172. python/secretstorage: Updated for version 3.3.1.
  11173. python/selenium: Update DEP.
  11174. python/send2trash: Removed Python 2 support.
  11175. python/send2trash: Updated for version 1.8.0 (+new maintainer)
  11176. python/service_identity: Convert python to python2.
  11177. python/setuptools-scm-git-archive: Convert python to python2.
  11178. python/setuptools-scm-git-archive: Fix dependency.
  11179. python/setuptools-scm: Removed (added to slackware.)
  11180. python/setuptools-scm: Updated for version 6.0.1.
  11181. python/sge-pygame: Update DEP.
  11182. python/sge-pygame: Updated for version 2.0.
  11183. python/shutil_get_terminal_size: Removed.
  11184. python/shutil_which: Removed.
  11185. python/simplegeneric: Removed Python 2 support.
  11186. python/singledispatch: Update DEP.
  11187. python/six: Removed (added to Slackware).
  11188. python/slpkg: Update DEP.
  11189. python/snuggs: Convert python to python2.
  11190. python/snuggs: Fixed dep info
  11191. python/snuggs: Removed Python 2 support.
  11192. python/soundcloud: Convert python to python2.
  11193. python/soundcloud: Update DEP.
  11194. python/sphinxcontrib-htmlhelp: Updated for version 2.0.0.
  11195. python/sphinxcontrib-plantuml: Removed.
  11196. python/sphinxcontrib-serializinghtml: Updated for version 1.1.5.
  11197. python/sqlalchemy-migrate: Always build for python3
  11198. python/sqlalchemy-migrate: Update DEP.
  11199. python/sqlalchemy-migrate: Update DEP.
  11200. python/stack_data: Upload stack_data
  11201. python/statsmodels: Convert python to python2.
  11202. python/stevedore: Convert python to python2.
  11203. python/stevedore: Update DEP.
  11204. python/stevedore: Update DEP.
  11205. python/tagpy: Fix boost_libname.
  11206. python/tempita: Always build for python3
  11207. python/tempita: Fix build with newer setuputils.
  11208. python/tempora: Convert python to python2.
  11209. python/tempora: Fix dependency.
  11210. python/tempora: Update DEP.
  11211. python/terminado: Convert python to python2.
  11212. python/terminado: Removed Python 2 support.
  11213. python/terminado: Updated for version 0.13.1 (+new maintainer)
  11214. python/testpath: Removed Python 2 support.
  11215. python/testpath: Updated for version 0.5.0 (+new maintainer)
  11216. python/testscenarios: Convert python to python2.
  11217. python/testtools: Fix REQUIRES for python2.
  11218. python/testtools: Fix dependencies.
  11219. python/testtools: Update DEP.
  11220. python/thonny: Fixed dep info
  11221. python/threadpoolctl: Added (threadpoolctl)
  11222. python/thunarx-python: Add -fcommon cflag.
  11223. python/thunarx-python: Updated for version 0.5.1.
  11224. python/tinycss2: Fix REQUIRES.
  11225. python/tinycss2: Fixed REQUIRES.
  11226. python/tinycss2: Removed python2 support.
  11227. python/tornado_systemd: Convert python to python2.
  11228. python/tox: Convert python to python2.
  11229. python/tox: Remove redundant doinst.sh.
  11230. python/tox: Removed dependency.
  11231. python/tox: Update DEP.
  11232. python/tqdm: Removed dependency.
  11233. python/tqdm: Updated for version 4.62.0.
  11234. python/tqdm: Updated for version 4.63.0
  11235. python/traceback2: Convert python to python2.
  11236. python/traitlets: Fixed dep info
  11237. python/traitlets: Removed (abandoned).
  11238. python/traitlets: Upload traitlets, update for 5.1.1 (+new maintainer)
  11239. python/traittypes: Removed (abandoned).
  11240. python/trezor: Convert python to python2.
  11241. python/trezor: REQUIRES protobuf => protobuf3.
  11242. python/trollius: Update DEP.
  11243. python/tweepy: Fix ARCH.
  11244. python/tweepy: Update DEP.
  11245. python/tweepy: Updated for version 3.10.0.
  11246. python/txi2p: Convert python to python2.
  11247. python/txrequests: Convert python to python2.
  11248. python/txrequests: Update DEP.
  11249. python/txsocksx: Convert python to python2.
  11250. python/txtorcon: Convert python to python2.
  11251. python/typed_ast: Updated dependencies.
  11252. python/typing-extensions: Update for 3.10.0.2 (+new maintainer)
  11253. python/typing: Removed (added to Slackware as part of M2Crypto).
  11254. python/tzlocal: Convert python to python2.
  11255. python/unrardll: Convert python to python2.
  11256. python/vanguards: Convert python to python2.
  11257. python/veryprettytable: Convert python to python2.
  11258. python/virtualenvwrapper: Convert python to python2.
  11259. python/vobject: Convert python to python2.
  11260. python/vobject: Updated for version 0.9.6.1
  11261. python/vobject: Updated maintainer email
  11262. python/w3lib: Update DEP.
  11263. python/w3lib: Updated for version 1.22.0.
  11264. python/waitress: removed python3 support in favor of python3-waitress
  11265. python/watchdog: Convert python to python2.
  11266. python/websocket-client: Add support for python3.
  11267. python/websocket-client: Update DEP.
  11268. python/websocket-client: Updated for version 0.59.0.
  11269. python/winpdb: Convert python to python2.
  11270. python/xarray: Updated for version 0.21.1, changed maintainer.
  11271. python/xopen: update copyright years
  11272. python/yara-python: Updated for version 4.1.2.
  11273. python/yarl: Fix tarball handling.
  11274. python/yarl: Update DEP.
  11275. python/yarl: Update for 1.7.2
  11276. python/yarl: Updated for version 1.6.3.
  11277. python2-paramiko: Renamed from paramiko and updated to 2.9.2
  11278. python3-fasteners: Added (fasteners, required in python3)
  11279. python3-monotonic: Added (monotonic, required in python3)
  11280. ruby/rbenv: Updated for version 1.2.0.
  11281. ruby/ruby-build: Updated for verion 20210526.
  11282. ruby/ruby-build: Updated for version 20210420.
  11283. ruby/ruby-build: Updated for version 20210510.
  11284. ruby/ruby-build: Updated for version 20210611.
  11285. ruby/ruby-build: Updated for version 20210707.
  11286. ruby/ruby-build: Updated for version 20210720.
  11287. ruby/ruby-build: Updated for version 20210726.
  11288. ruby/ruby-build: Updated for version 20210804.
  11289. ruby/ruby-build: Updated for version 20210825.
  11290. ruby/ruby-build: Updated for version 20210928.
  11291. ruby/ruby-build: Updated for version 20211019.
  11292. ruby/ruby-build: Updated for version 20211109.
  11293. ruby/ruby-build: Updated for version 20211203.
  11294. ruby/ruby-build: Updated for version 20211227.
  11295. ruby/ruby-build: Updated for version 20220125.
  11296. ruby/ruby-build: Updated for version 20220218.
  11297. ruby/ruby-faraday: Removed (no maintainer)
  11298. ruby/ruby-gist: Removed (no maintainer)
  11299. ruby/ruby-haste: Removed (no maintainer)
  11300. ruby/ruby-json: Removed (no maintainer)
  11301. ruby/ruby-multipart-post: Removed (no maintainer)
  11302. ruby/rubygem-asciidoctor: Removed (added to Slackware).
  11303. ruby/rubygem-atk: Updated for version 3.4.9.
  11304. ruby/rubygem-bundler: Removed (added to Slackware).
  11305. ruby/rubygem-cairo-gobject: Added (cairo-gobject bindings).
  11306. ruby/rubygem-cairo: Updated for version 1.17.5.
  11307. ruby/rubygem-cool.io: Updated for version 1.7.1.
  11308. ruby/rubygem-gdk3: Added (Ruby GDK3 bindings).
  11309. ruby/rubygem-gdk_pixbuf2: Updated for version 3.4.9.
  11310. ruby/rubygem-gio2: Added (VFS API ruby bindings).
  11311. ruby/rubygem-glib2: Updated for version 3.4.9.
  11312. ruby/rubygem-gobject-introspection: Added (Ruby gobjects).
  11313. ruby/rubygem-gosu: Fixed dep info
  11314. ruby/rubygem-gosu: Updated for version 1.2.0.
  11315. ruby/rubygem-gtk2: Updated for version 3.4.3.
  11316. ruby/rubygem-gtk3: Added (Ruby GTK3 bindings).
  11317. ruby/rubygem-jaro_winkler: Removed (unused).
  11318. ruby/rubygem-lolcat: Remove empty man dir.
  11319. ruby/rubygem-matrix: Added (matrix and vector classes).
  11320. ruby/rubygem-msgpack: Fix VERSION.
  11321. ruby/rubygem-msgpack: Updated for version 1.4.2.
  11322. ruby/rubygem-native-package-installer: Added (native pkg helper).
  11323. ruby/rubygem-pango: Updated for version 3.4.9.
  11324. ruby/rubygem-parallel: Updated for version 1.20.1.
  11325. ruby/rubygem-parser: Updated for version 3.0.2.0.
  11326. ruby/rubygem-pkg-config: Updated for version 1.4.6.
  11327. ruby/rubygem-powerpack: Removed (unused).
  11328. ruby/rubygem-rainbow: Removed (unused).
  11329. ruby/rubygem-red-colors: Added (color utility).
  11330. ruby/rubygem-rubocop: Removed (unused).
  11331. ruby/rubygem-ruby-progressbar: Removed (unused).
  11332. ruby/rubygem-ruumba: Remove Ruby 2.2 fixes.
  11333. ruby/rubygem-ruumba: Removed (unused).
  11334. ruby/rubygem-unicode-display_width: Removed (unused).
  11335. ruby/rubygem-yajl-ruby: Updated for version 1.4.1
  11336. ruby/rubygems-update: Updated for version 3.2.16.
  11337. system/AnonymousPro: Rewrote SlackBuild, updated link.
  11338. system/Attic: Fix build with newer openssl.
  11339. system/CPU-X: Do not write to real /usr.
  11340. system/Eterm: Remove .la files.
  11341. system/GentiumPlus: Fix support for PRINT_PACKAGE_NAME
  11342. system/I-Nex: Add missing .desktop files.
  11343. system/I-Nex: Various fixes.
  11344. system/Iosevka-slab: Updated for version 10.1.1.
  11345. system/Iosevka-slab: Updated for version 10.3.0.
  11346. system/Iosevka-slab: Updated for version 11.1.1
  11347. system/Iosevka-slab: Updated for version 11.2.4
  11348. system/Iosevka-slab: Updated for version 11.3.0
  11349. system/Iosevka-slab: Updated for version 14.0.1
  11350. system/Iosevka: Updated for version 10.1.1.
  11351. system/Iosevka: Updated for version 10.3.0.
  11352. system/Iosevka: Updated for version 11.1.1.
  11353. system/Iosevka: Updated for version 11.2.4.
  11354. system/Iosevka: Updated for version 11.3.0
  11355. system/Iosevka: Updated for version 14.0.1
  11356. system/Sl: Remove template comment.
  11357. system/Solaar: Fix udev rules file and move to correct location.
  11358. system/TermRecord: Removed Python 2 support.
  11359. system/TermRecord: Update DEP.
  11360. system/Type1_to_OTF: Added for 15.0 (OTF fonts converted from Type1 fonts)
  11361. system/Type1_to_OTF: Removed (ftbfs).
  11362. system/ZoneMinder: Kill X10 notes
  11363. system/ZoneMinder: Mirror download URL.
  11364. system/ZoneMinder: Update DEP.
  11365. system/a2tools: Remove template comment.
  11366. system/acpi_call: Fix for the newer kernels.
  11367. system/acpi_call: Fix support for PRINT_PACKAGE_NAME
  11368. system/adobe-source-sans-pro-font: Updated for version 3.046R.
  11369. system/adobe-source-serif-pro-font: Updated for version 4.004.
  11370. system/afdko: Add network warning to README.
  11371. system/afdko: Update DEP.
  11372. system/afdko: Updated for version 3.8.0
  11373. system/afio: Fix 15.0 build.
  11374. system/afpfs-ng: Fix for gcc >= 10.x.
  11375. system/afpfs-ng: Remove .la files.
  11376. system/agedu: Remove template comment.
  11377. system/aha: Remove template comment.
  11378. system/alacritty: Install desktop file.
  11379. system/alacritty: Updated for version 0.10.0.
  11380. system/alacritty: Updated for version 0.10.1.
  11381. system/alacritty: Updated for version 0.7.2.
  11382. system/alacritty: Updated for version 0.8.0.
  11383. system/alacritty: Updated for version 0.9.0.
  11384. system/amanda: Updated DOWNLOAD.
  11385. system/amanda: Updated for version 3.3.9, use libtirpc.
  11386. system/anacron: Removed (no maintainer)
  11387. system/android-file-transfer: Fix 15.0 build.
  11388. system/andromeda: Add qt4 dependency.
  11389. system/ansible: Update DEP.
  11390. system/ansible: Update DEP.
  11391. system/apache-cassandra: Fix start option.
  11392. system/apache-cassandra: Updated for version 4.0.1.
  11393. system/apache-tomcat: Fix download URL.
  11394. system/apache-tomcat: Updated for version 10.0.13
  11395. system/apache-tomcat: Updated for version 10.0.14.
  11396. system/apache-tomcat: Updated for version 10.0.17.
  11397. system/apache-tomcat: Updated maintainer email
  11398. system/apg: Remove template comment.
  11399. system/apparmor: Remove .la files.
  11400. system/aqemu: No longer usable with qemu.
  11401. system/arc: Add a fix for gcc >= 10.x.
  11402. system/arc: Remove template comment.
  11403. system/archivemount: Remove template comment.
  11404. system/archmage: Added (CHM to HTML/PDF/text converter)
  11405. system/argyllcms: Fix 15.0 build.
  11406. system/arj: Remove template comment.
  11407. system/aterm: Fix building on current.
  11408. system/atop: Updated for version 2.7.1.
  11409. system/audit: Remove .la files.
  11410. system/audit: Update to HTTPS.
  11411. system/audit: Updated for version 3.0.1.
  11412. system/audit: Updated for version 3.0.7.
  11413. system/augeas: Remove la files.
  11414. system/autoarchive: Updated for version 2.0.2.
  11415. system/autocutsel: Fix README.
  11416. system/autocutsel: Updated for version 0.10.1.
  11417. system/avfs: Remove .la files.
  11418. system/babeltrace: Remove .la files.
  11419. system/bacula-client: Remove .la files.
  11420. system/bacula: Remove .la files.
  11421. system/bareos-client: Removed (orphaned, ftbfs).
  11422. system/bareos: Removed (orphaned, ftbfs).
  11423. system/barman: Fix dependency.
  11424. system/bat: New maintainer + update to 0.18.3
  11425. system/bat: Updated for version 0.18.1.
  11426. system/betty: Fixed README (remove speech-dispatcher mention)
  11427. system/bicon: New maintainer.
  11428. system/bit-babbler: Fix download URL.
  11429. system/bitmapfont2ttf: Add REQUIRES="fontforge".
  11430. system/blktrace: Updated for version 1.3.0.
  11431. system/bochs: Updated for version 2.7.
  11432. system/bogofilter: Align with template
  11433. system/bogofilter: Updated for version 1.2.5.
  11434. system/borgbackup: Removed dependency.
  11435. system/borgbackup: Update DEP.
  11436. system/brasero: Disabled some warnings-as-errors.
  11437. system/brasero: Fixed dep info
  11438. system/brasero: Updated for version 3.12.3.
  11439. system/btop: Added (system resources monitor).
  11440. system/btrbk: Fixed dep info.
  11441. system/buildah: Fix build with newer google-go-lang.
  11442. system/bulk_extractor: Updated for version 20170403_779dbe1.
  11443. system/bulk_extractor: Updated for version 20210928_692ee97.
  11444. system/busybox: Updated for version 1.32.1
  11445. system/c-icap: Remove .la files.
  11446. system/can-utils: Updated for version 2021.08.0.
  11447. system/caprice32: Disabled narrowing warnings, respect CXXFLAGS.
  11448. system/cbmbasic: Fix -current build.
  11449. system/ccd2cue: Remove template comment.
  11450. system/ccid: Align with template
  11451. system/ccid: Updated for version 1.4.36
  11452. system/ccrypt: Fix download URL.
  11453. system/ccrypt: Fix download URL.
  11454. system/cdemu-daemon: Fix permission.
  11455. system/cdrkit: Fixed dep info in README
  11456. system/cdrkit: Patch for gcc >= 10.x.
  11457. system/cdw: Fixed dep info
  11458. system/cfengine: Fixed dep info
  11459. system/cfengine: Updated for version 3.15.2.
  11460. system/chipsec: Respect KERNEL.
  11461. system/chipsec: Updated for version 1.8.1.
  11462. system/chkrootkit: Updated for version 0.55.
  11463. system/chronograf: Updated for version 1.9.0
  11464. system/chronograf: Updated for version 1.9.1
  11465. system/chronograf: Updated for version 1.9.3
  11466. system/chrpath: s,i486,i586,g
  11467. system/ciopfs: Fix README.
  11468. system/ciopfs: Remove template comment.
  11469. system/clamav: Don't use wildcards for the source.
  11470. system/clamav: Updated for version 0.103.3.
  11471. system/clamav: Updated for version 0.104.0, switch to cmake.
  11472. system/clamav: Updated for version 0.104.1.
  11473. system/clamav: Updated for version 0.104.2.
  11474. system/clamsmtp: Fix 15.0 build.
  11475. system/clamtk: update for version 6.11
  11476. system/cldr-emoji-annotation: Removed (added to Slackware).
  11477. system/cluster-glue: Fix 15.0 build.
  11478. system/cluster-glue: Remove .la files.
  11479. system/cndrvcups-capt: Fix 15.0 build.
  11480. system/cndrvcups-capt: Remove .la files.
  11481. system/cndrvcups-common: Fix 15.0 build.
  11482. system/cnijfilter2: Patch for gcc >= 10.x.
  11483. system/cnijfilter2: Respect ARCH if already set.
  11484. system/cnijfilter2: Updated for version 6.10.1 and bug fixes.
  11485. system/cnijfilter2: Updated for version 6.20.1.
  11486. system/collectd: Updated for version 5.12.0.
  11487. system/colord-gtk: Support alternatives for ninja
  11488. system/colord-gtk: Updated for version 0.2.0.
  11489. system/colord: Align with new template.
  11490. system/colord: Fix path.
  11491. system/colord: Patch version to build against -current's polkit.
  11492. system/colord: Support alternatives for ninja
  11493. system/colord: Updated for version 1.4.5.
  11494. system/colord: Updated for version 1.4.6.
  11495. system/colorize: Remove template comment.
  11496. system/commons-daemon: Build and install manpage
  11497. system/commons-daemon: Updated for version 1.2.4
  11498. system/commons-daemon: Updated maintainer email
  11499. system/conky: Patch for gcc >= 7.x.
  11500. system/conky: Updated for version 1.12.2.
  11501. system/consolation: Fixed dep info
  11502. system/consolation: Updated for version 0.0.8.
  11503. system/conspy: Remove template comment.
  11504. system/containerd: Fix MD5SUM.
  11505. system/containerd: Updated for version 1.4.4
  11506. system/containerd: Updated for version 1.5.7.
  11507. system/containerd: Updated for version 1.5.8.
  11508. system/corosync: Remove .la files.
  11509. system/courier-prime: Fix download URL.
  11510. system/courier-screenplay: Fix MD5SUM.
  11511. system/cpmtools: Remove template comment.
  11512. system/cpuid: Updated for version 20211210.
  11513. system/cpulimit: Patch for glibc >= 2.32.
  11514. system/crashplan: Fix download URL.
  11515. system/crc32_simple: Remove template comment.
  11516. system/csh: Updated for version 20110502_6.
  11517. system/csvutils: Added (inspect/manipulate CSV data).
  11518. system/cups-bjnp: Disabeld some warnings-as-errors.
  11519. system/cups-bjnp: Updated for version 2.0.3.
  11520. system/curlftpfs: Updated maintainer email
  11521. system/cutecom: Add qt4 dependency.
  11522. system/cve-check-tool: Disable some warnings-as-errors.
  11523. system/d-feet: Support alternatives for ninja
  11524. system/d-feet: Updated for version 0.3.15.
  11525. system/d52: Remove template comment.
  11526. system/dahdi-complete: Fix support for PRINT_PACKAGE_NAME
  11527. system/dahdi-complete: Remove .la files.
  11528. system/dahdi-complete: Updated for version 20201116_5c840cf.
  11529. system/dahdi-complete: Updated for version 3.0.0.
  11530. system/dahdi-complete: Updated for version 3.1.0.
  11531. system/dash: Removed (added to Slackware).
  11532. system/dateutils: Updated for version 0.4.9.
  11533. system/davfs2: Updated for version 1.6.0.
  11534. system/davfs2: Updated for version 1.6.1.
  11535. system/ddcutil: Updated for version 0.9.7.
  11536. system/ddrescue-gui: Removed (no maintainer)
  11537. system/ddrescue-gui: Update DEP.
  11538. system/ded: Reflow README, rm template comment.
  11539. system/dehydrated: Removed (added to Slackware).
  11540. system/dfc: Fix download URL.
  11541. system/dfu-util: Updated for version 0.11
  11542. system/dget: Fix download URL.
  11543. system/dieharder: Fix 15.0 build.
  11544. system/dieharder: Fix build with gcc>=10.
  11545. system/diit: Removed (No maintainer).
  11546. system/dina-font: Reflow README.
  11547. system/dislocker: Patch for ruby >= 3.x.
  11548. system/dislocker: Updated for version 0.7.3.
  11549. system/displaylink: Update README for new URL.
  11550. system/docker-cli: Updated for version 20.10.10.
  11551. system/docker-cli: Updated for version 20.10.11.
  11552. system/docker-cli: Updated for version 20.10.6
  11553. system/docker-compose: Fix REQUIRES for python2.
  11554. system/docker-compose: Fix dep info.
  11555. system/docker-compose: Fixed dep info
  11556. system/docker-compose: Update DEP.
  11557. system/docker-machine-kvm: Adjust docker-machine source.
  11558. system/docker-machine-kvm: Fix build with newer google-go-lang.
  11559. system/docker-machine: Updated for version 0.16.2.
  11560. system/docker-proxy: Updated for version 20210125_b350742
  11561. system/docker: Updated for version 20.10.10.
  11562. system/docker: Updated for version 20.10.11.
  11563. system/docker: Updated for version 20.10.6
  11564. system/dos33fsprogs: Fix README.
  11565. system/dos33fsprogs: Remove template comment.
  11566. system/dosbox-dev: Align with template
  11567. system/dosbox-dev: updated for version 0.75_pre4446
  11568. system/dosbox-dev: updated for version 0.75_pre4454
  11569. system/dosbox-dev: updated for version 0.75_pre4471
  11570. system/dosbox-x: Updated for version 0.83.22.
  11571. system/dosbox-x: Updated for version 0.83.8.
  11572. system/drbd-utils: Updated for version 9.18.2.
  11573. system/dse-typewriter-font: Fix README.
  11574. system/dse-typewriter-font: Remove template comment.
  11575. system/dump: Updated for version 0.4b47.
  11576. system/duplicity: Update DEP.
  11577. system/dust: Updated for version 0.6.0.
  11578. system/dust: Updated for version 0.7.5 + New maintainer.
  11579. system/dvdisaster: Fix 15.0 build.
  11580. system/dvdisaster: Updated for version 0.79.9.
  11581. system/dymo-cups-drivers: Fix build with newer cups.
  11582. system/dymo-cups-drivers: Fix download URL.
  11583. system/dymo-cups-drivers: Patch for the newer cups.
  11584. system/dynamips: Fix 15.0 build.
  11585. system/dynamips: Fixed linking against zlib.
  11586. system/eaglemode: Updated for version 0.95.1.
  11587. system/ecryptfs-utils: Patched against openssl-1.1.x.
  11588. system/ecryptfs-utils: Remove .la files.
  11589. system/edid-decode: Fix README.
  11590. system/edid-decode: Updated for version 0.1~git20201230.95d81c9.
  11591. system/efitools: Updated for version 1.9.2.
  11592. system/elo-mt-usb: Fix support for PRINT_PACKAGE_NAME
  11593. system/elo-mt-usb: Removed (download is gone, we dont have the hardware to test new versions).
  11594. system/eltclsh: Fixed dep info
  11595. system/eltclsh: Remove .la files.
  11596. system/eltclsh: Updated for version 1.18.
  11597. system/emelfm2: Fix build with newer gcc, adapt to template.
  11598. system/encfs: Fix VERSION in the info file.
  11599. system/encfs: Updated for version 1.9.5
  11600. system/encfs: Updated maintainer email
  11601. system/epson-inkjet-printer-escpr2: Remove .la files.
  11602. system/epson-inkjet-printer-escpr: Remove .la files.
  11603. system/epson-printer-utility: Fix 15.0 build.
  11604. system/esekeyd: Remove template comment.
  11605. system/etsh: Remove template comment.
  11606. system/evdi-kernel: Fix support for PRINT_PACKAGE_NAME
  11607. system/evdi-kernel: Upgraded for version 1.10.0.
  11608. system/evdi: Updated for version 1.10.0.
  11609. system/eventlog: Remove .la files.
  11610. system/evhz: Updated for version 35b7526e.
  11611. system/evilvte: Added the new dependency vte2.
  11612. system/evilvte: Removed (no maintainer)
  11613. system/evtest: Added (monitor input device events).
  11614. system/exa: Updated for version 0.10.1.
  11615. system/execline: Updated for version 2.8.2.0
  11616. system/exomizer: Better download link.
  11617. system/exomizer: Updated for version 3.1.1.
  11618. system/ext4magic: Fix build with newer gcc.
  11619. system/extract-xiso: Removed (no maintainer)
  11620. system/extundelete: Added a patch for the newer e2fprogs.
  11621. system/f2fs_tools: Removed (added to Slackware).
  11622. system/facter: Disable some warning-as-errors.
  11623. system/facter: Fix 15.0 build.
  11624. system/fakechroot: Updated for version 2.20.1.
  11625. system/fakeroot: Remove .la files.
  11626. system/fakeroot: Updated for version 1.25.3.
  11627. system/fatsort: Updated for version 1.6.4.625.
  11628. system/fbterm: Add checkfb man page.
  11629. system/fd: Updated for version 8.3.0.
  11630. system/fd: Updated for version 8.3.1.
  11631. system/fd: Updated for version 8.3.2.
  11632. system/fdclone: Convert .jp docs to UTF-8.
  11633. system/fence-agents: Update DEP.
  11634. system/file-roller: Support alternatives for ninja
  11635. system/file-roller: Updated for version 3.36.2, switch to meson.
  11636. system/filerunner: Remove (unmaintainable mess).
  11637. system/findcmd: Updated for version 0.1.2.
  11638. system/fio: Updated for version 3.29.
  11639. system/firejail: Updated for version 0.9.66.
  11640. system/firejail: Updated for version 0.9.68.
  11641. system/firmware-gobi-2000: Fix download URL.
  11642. system/fish: Fixed dep info in README
  11643. system/flSynclient: Removed (no maintainer).
  11644. system/flexbackup: Add patch.
  11645. system/font-manager: Fix build when webkit2gtk not installed.
  11646. system/font-manager: Fixed dep info
  11647. system/font-manager: Fixed dep info
  11648. system/font-manager: Updated for version 0.8.8.
  11649. system/foremost: Patch for gcc >= 10.x.
  11650. system/forkstat: Removed (no maintainer)
  11651. system/fountain: Added (pipe stdin to multiple processes).
  11652. system/fpm2: Fix 15.0 build.
  11653. system/fr: Updated for version 3.0.
  11654. system/franny: Make man pages match script names.
  11655. system/freeipmi: Remove .la files.
  11656. system/fsarchiver: Updated for version 0.8.6.
  11657. system/fsv: Fix README.
  11658. system/fsv: Fix building with the newer autotools.
  11659. system/fsv: Remove template comment.
  11660. system/fsviewer: Fix README.
  11661. system/fsviewer: Fix build on -current.
  11662. system/fswatch: Remove .la files.
  11663. system/ft2demos: Updated for version 2.11.1.
  11664. system/fuse-overlayfs: Update DEP.
  11665. system/fuse3: Removed (added to Slackware).
  11666. system/fwupd: Align with new template.
  11667. system/fwupd: Fixed dep info
  11668. system/fwupd: Fixed dep info in README
  11669. system/fwupd: Fixed ninja build.
  11670. system/fwupd: Kill py3cairo dep mention
  11671. system/fwupd: Updated for version 1.3.12.
  11672. system/fwupdate: Disabled some warnings-as-errors.
  11673. system/fwupdate: Fixed dep info
  11674. system/fwupdate: Removed (part of fwupd).
  11675. system/fzf: Updated for version 0.27.1.
  11676. system/fzf: Updated for version 0.27.2.
  11677. system/fzf: Updated for version 0.27.3.
  11678. system/fzf: Updated for version 0.28.0.
  11679. system/fzf: Updated for version 0.29.0.
  11680. system/gammu: Updated for version 1.42.0
  11681. system/gammu: Updated maintainer email
  11682. system/gencfs: Fix 15.0 build.
  11683. system/gentoo: Updated homepage.
  11684. system/geoclue2: Fixed dep info
  11685. system/geoclue2: Remove la file.
  11686. system/geoclue: Remove .la files.
  11687. system/geoclue: Removed NetworkManager support.
  11688. system/gimp-help: Updated for version 2.10.0.
  11689. system/gitolite: Updated for version 3.6.12.
  11690. system/gkrellm-volume: Removed (upstream disappeared).
  11691. system/gnome-commander: Updated for version 1.14.0.
  11692. system/gnome-disk-utility: Remove NUMJOBS.
  11693. system/gnome-disk-utility: Update DEP.
  11694. system/gnome-disk-utility: Updated for version 3.38.1.
  11695. system/gnome-disk-utility: Updated for version 3.38.2.
  11696. system/gnome-terminal: Added the new dependency vte2.
  11697. system/gnome-terminal: Updated for version 2.33.5.
  11698. system/gnome-vfs: Patched for openssl-1.1.x.
  11699. system/gnome-vfs: Remove .la files.
  11700. system/gnomint: Apply patches from debian.
  11701. system/gnomint: Fix 15.0 build.
  11702. system/gnomint: Updated DOWNLOAD.
  11703. system/gnu-unifont: Updated for version 14.0.01.
  11704. system/go-mtree: Updated for version 0.5.0.
  11705. system/goaccess: Updated for version 1.4.6.
  11706. system/gohu-font: Fix README.
  11707. system/gohu-font: Remove template comment.
  11708. system/google-fonts: Fix MD5SUM.
  11709. system/google-fonts: Kill noto-fonts conflict mention
  11710. system/gphotofs: Remove template comment.
  11711. system/grub_legacy: Fix download URL.
  11712. system/gtk-vnc: Align with new template.
  11713. system/gtk-vnc: Fix build.
  11714. system/gtk-vnc: Fixed dep info
  11715. system/gtk-vnc: Updated for version 1.2.0.
  11716. system/gtk-vnc: Updated for version 1.3.0.
  11717. system/gtklp: Updated for version 1.3.4.
  11718. system/guake: Fixed dep info
  11719. system/guake: Update DEP.
  11720. system/guake: Updated for version 3.8.5.
  11721. system/guefi: Added (GTK+3 frontend for efibootmgr).
  11722. system/guix: Kill guile-json dep reference
  11723. system/guix: Removed (no maintainer)
  11724. system/hack-font-ttf: Removed (added to Slackware).
  11725. system/hal-flash: Remove .la files.
  11726. system/hashcat: Fixed dep info
  11727. system/hashcat: Updated for version 6.2.4.
  11728. system/haveged: Removed (added to Slackware).
  11729. system/hddtemp: Fix installation instruction.
  11730. system/heartbeat: Fix 15.0 build.
  11731. system/heartbeat: Remove .la files.
  11732. system/hebe: Removed (KDE4 app).
  11733. system/heirloom-doctools: Updated for version 191015.
  11734. system/heirloom-pax: Fix 15.0 build.
  11735. system/hercules: Remove .la files.
  11736. system/hercules: Updated for version 3.13
  11737. system/herculesstudio: Fix 15.0 build, new-style icons.
  11738. system/hexec: Get rid of static lib.
  11739. system/hfsprogs: Fix 15.0 build.
  11740. system/hime: Fix 15.0 build and other issues.
  11741. system/hstr: Updated for version 2.5
  11742. system/hungrycat: Reflow README, https URL.
  11743. system/hwinfo: Fix 15.0 build.
  11744. system/hwinfo: Updated for version 21.78
  11745. system/hwinfo: Updated maintainer email
  11746. system/hwloc: Fix 15.0 build.
  11747. system/icingaweb2: Install bash-completion file to systemwide dir
  11748. system/imwheel: Fix README.
  11749. system/incron: Change maintainer email.
  11750. system/incron: Fix 15.0 build.
  11751. system/influxdb: Update DOWNLOAD.
  11752. system/info2man: Remove template comment.
  11753. system/innotop: Removed (included in the newer mariadb).
  11754. system/intel-microcode: Updated for version 20210608
  11755. system/intel-microcode: Updated for version 20220207.
  11756. system/intelmas: Updated for version 1.12.
  11757. system/inxi: Removed (added to Slackware).
  11758. system/ioping: Updated for version 1.2.
  11759. system/ipmitool: Add many patches from fedora.
  11760. system/irqbalance: Updated for version 1.8.0.
  11761. system/iscan-data: Added (EPSON Image Scan! data files).
  11762. system/iscan-data: Updated for version 1.39.2.
  11763. system/iscan: Added (front-end for EPSON all-in-one devices).
  11764. system/isextract: Remove template comment.
  11765. system/isextract: Update man page.
  11766. system/isomd5sum: Remove template comment.
  11767. system/jdupes: updated for version 1.20.0
  11768. system/jdupes: updated for version 1.20.1
  11769. system/jdupes: updated for version 1.20.2
  11770. system/jenkins: Updated for version 2.277.3.
  11771. system/jenkins: Updated for version 2.277.4.
  11772. system/jenkins: Updated for version 2.289.1.
  11773. system/jenkins: Updated for version 2.289.2.
  11774. system/jenkins: Updated for version 2.289.3.
  11775. system/jenkins: Updated for version 2.303.1.
  11776. system/jenkins: Updated for version 2.303.2.
  11777. system/jenkins: Updated for version 2.303.3.
  11778. system/jenkins: Updated for version 2.319.1.
  11779. system/jenkins: Updated for version 2.319.2
  11780. system/jenkins: Updated for version 2.319.3.
  11781. system/jenkins: Updated for version 2.332.1.
  11782. system/jmtpfs: Removed (added to Slackware).
  11783. system/joyce: Fix 15.0 build.
  11784. system/joyce: Updated for version 2.2.15.
  11785. system/jq: Fixed dep info
  11786. system/jq: Remove .la files.
  11787. system/jshon: Fixed dep info
  11788. system/kapacitor: Updated for version 1.6.1
  11789. system/kapacitor: Updated for version 1.6.2
  11790. system/kapacitor: Updated for version 1.6.3
  11791. system/kbfs: Fixed dep info in README
  11792. system/kbfs: Update README and URL.
  11793. system/kbfs: Updated for version 5.7.1.
  11794. system/kbfs: Updated for version 5.8.1_20210930160723.
  11795. system/kbfs: Updated for version 5.9.3_20220216215910.
  11796. system/kc: Fix dep info in README
  11797. system/kcm_touchpad: Removed (KDE4 app).
  11798. system/kcollectd: Removed (KDE4 app).
  11799. system/kegs: Updated for version 1.12.
  11800. system/kexec-tools: Updated for version 2.0.21.
  11801. system/keybase: Removed.
  11802. system/kfc: Updated for version 0.1.3.
  11803. system/kitchen-sync: Removed (unused, no dependees).
  11804. system/kitchen-sync: Updated for version 2.11.
  11805. system/kitchen-sync: Updated for version 2.14.
  11806. system/kitty: Fixed dep info
  11807. system/kitty: Updated for version 0.23.1.
  11808. system/klish: Remove .la files.
  11809. system/kmscon: Updated for version 8+20140708_0b34527.
  11810. system/komparator4: Removed (KDE4 app).
  11811. system/krusader: Removed (added to Slackware).
  11812. system/ktsuss: update copyright years
  11813. system/kvantum-qt5: Updated for version 1.0.0.
  11814. system/kvantum-qt5: Updated for version 1.0.1.
  11815. system/kvpm: Removed (KDE4 app).
  11816. system/kyotocabinet: Fix URLs (bad certificate).
  11817. system/laptop-mode-tools: Fixed dep info
  11818. system/laptop-mode-tools: don't install systemd files
  11819. system/lbench: Fix 15.0 build.
  11820. system/lbzip2: Removed (added to Slackware).
  11821. system/lddsafe: Remove template comment.
  11822. system/letsencrypt: Update DEP.
  11823. system/letsencrypt: Updated for versino 1.21.0.
  11824. system/letsencrypt: Updated for version 1.15.0.
  11825. system/letsencrypt: Updated for version 1.16.0.
  11826. system/letsencrypt: Updated for version 1.17.0.
  11827. system/letsencrypt: Updated for version 1.18.0.
  11828. system/letsencrypt: Updated for version 1.19.0.
  11829. system/letsencrypt: Updated for version 1.20.0.
  11830. system/letsencrypt: Updated for version 1.22.0.
  11831. system/letsencrypt: Updated for version 1.23.0.
  11832. system/letsencrypt: Updated for version 1.24.0.
  11833. system/lhasa: Removed (added to Slackware).
  11834. system/libcloudproviders: Upload libcloudproviders (new dependency for owncloud-client)
  11835. system/libnatspec: Remove .la files.
  11836. system/libtrash: Switch /bin/sh back to /bin/bash
  11837. system/libtrash: Update for 3.7
  11838. system/lilyterm: Updated for version 0.9.9.4.
  11839. system/linkchecker: Update DEP.
  11840. system/linkchecker: Use Python2 explicitly.
  11841. system/linux-vt-setcolors: Remove template comment.
  11842. system/linuxconsoletools: Reflow README and remove SDL2 ref.
  11843. system/lirc: Docs in /usr/doc, not /usr/share/doc.
  11844. system/lirc: Fix 15.0 build.
  11845. system/lirc: Fix support for PRINT_PACKAGE_NAME
  11846. system/lirc: Update DEP.
  11847. system/lnav: Updated for version 0.10.1.
  11848. system/local-persist: Fix build without glide.
  11849. system/localepurge: Stop writing to $CWD, make noarch.
  11850. system/locust: Added (performance testing tool)
  11851. system/locust: Fix missing deps.
  11852. system/loggedfs: Removed (rlog dep is gone)
  11853. system/logkeys: Updated for version 0.2.0.
  11854. system/logtool: Removed (no maintainer)
  11855. system/logwatch: Updated for version 7.6
  11856. system/logwatch: updated for version 7.5.6
  11857. system/loksh: Fixed dep info
  11858. system/lomoco: Fix for glibc-2.33.
  11859. system/lsb-release: Stop writing to $CWD, make noarch.
  11860. system/luckybackup: Switch to qt5.
  11861. system/lv: Updated for version 4.51_8.
  11862. system/lvm2-cluster: Fix 15.0 build.
  11863. system/lvm2-lockd: Fix 15.0 build.
  11864. system/lxd: Removed (ftb, no maintainer).
  11865. system/lxsession: Fixed dep info
  11866. system/lxterminal: Add the new dependency vte2.
  11867. system/lxterminal: Fixed dep info in README
  11868. system/lynis: Install bash-completion file to systemwide dir
  11869. system/lynis: Updated for version 3.0.4.
  11870. system/lynis: Updated for version 3.0.5.
  11871. system/lynis: Updated for version 3.0.6.
  11872. system/lynis: Updated for version 3.0.7.
  11873. system/lz4: Removed (added to Slackware).
  11874. system/lzop: Remove template comment.
  11875. system/macemu: Disable some warnings-as-errors.
  11876. system/macutils: Remove template comment.
  11877. system/mailutils: Remove .la files.
  11878. system/makefile2graph: Fix README.
  11879. system/makefile2graph: Remove template comment.
  11880. system/makepasswd: Remove template comment.
  11881. system/makepp: Updated for version 2.0.99.2.
  11882. system/makeself: Updated for version 2.4.5.
  11883. system/man-db: Removed (added to Slackware).
  11884. system/man-pages-es: Remove template comment.
  11885. system/man-pages-fr: Default to UTF-8.
  11886. system/man-pages-ja: Fix README.
  11887. system/man-pages-ja: Updated for version 20210815.
  11888. system/man-pages-ru: Use correct install path.
  11889. system/mandoc: Fix 15.0 build.
  11890. system/maxcso: Fixed dep info
  11891. system/mbootpack: Fix 15.0 build.
  11892. system/md5deep: Fix 15.0 build.
  11893. system/mediaextract: Added (extract embedded media files)
  11894. system/memtest86+: Patch for newer binutils
  11895. system/memtest86: Patch for newer binutils
  11896. system/memtester: Updated for version 4.5.1_1.
  11897. system/mhddfs: Fix 15.0 build.
  11898. system/microemulator: Removed (No maintainer).
  11899. system/mjpg-streamer: Removed.
  11900. system/mlocate: Removed (already in Slackware).
  11901. system/mlterm: Fix MD5SUM.
  11902. system/mlterm: Remove .la files.
  11903. system/mlterm: Updated for version 3.9.2.
  11904. system/mmv: Remove template comment.
  11905. system/mongo-tools: Fix build with newer google-go-lang.
  11906. system/mongodb: Update DEP.
  11907. system/mongodb: Updated for version 3.4.24.
  11908. system/mongodb: Updated for version 5.0.4.
  11909. system/monit: Install bash-completion file to systemwide dir
  11910. system/monitoring-plugins: Updated for version 2.3.1.
  11911. system/monitorix: Fix download URL.
  11912. system/mpack: Fix download URL.
  11913. system/mpich: Fix building with gfortran >= 10.x.
  11914. system/mpich: Mention conflict with openmpi.
  11915. system/mpich: Remove .la files.
  11916. system/mpich: Updated for version 3.4.2
  11917. system/mpich: Updated for version 3.4.3
  11918. system/mrxvt: Fix 15.0 build.
  11919. system/msitools: Remove .la files.
  11920. system/multibootusb: Fixed dep info
  11921. system/multicorn: Removed (FTBFS, even with debian patches and/or latest git).
  11922. system/multicorn: Updated for version 1.4.0.
  11923. system/multiload-ng: Fix 15.0 build.
  11924. system/multipath-tools: Updated for version 0.8.7.
  11925. system/multitail: Fix download URL.
  11926. system/munin-node: Fix 15.0 build.
  11927. system/munin-node: Fix tarball handling.
  11928. system/munin-node: Use zulu-openjdk8.
  11929. system/mysql-utilities: Removed (EOL).
  11930. system/nanum-coding-fonts-ttf: Fix build.
  11931. system/nbench: Fix download URL.
  11932. system/netatop: Fix support for PRINT_PACKAGE_NAME
  11933. system/netatop: Updated for version 3.1.
  11934. system/netdata: Fixed dep info
  11935. system/netdata: Update DEP.
  11936. system/netdata: Updated for version 1.30.1.
  11937. system/netdata: Updated for version 1.31.0.
  11938. system/netdata: Updated for version 1.32.0.
  11939. system/netdata: Updated for version 1.32.1.
  11940. system/netdata: Updated for version 1.33.0.
  11941. system/netdata: Updated for version 1.33.1.
  11942. system/newLd: Fix build.
  11943. system/nilfs-utils: Updated for version 2.2.8
  11944. system/nilfs-utils: Updated maintainer email
  11945. system/nix: Fixed dep info
  11946. system/nix: Update DEP.
  11947. system/nix: Updated for version 2.3.16.
  11948. system/nix: Updated for version 2.4.
  11949. system/nix: Updated for version 2.5.1.
  11950. system/nix: Updated for version 2.6.0.
  11951. system/nix: Updated for version 2.6.1.
  11952. system/nnn: Updated for version 4.4.
  11953. system/noto-fonts: Removed (added to Slackware as noto-fonts-ttf).
  11954. system/nrg2cue: Added (convert .nrg CD images)
  11955. system/nss-pam-ldapd: Removed (added to Slackware).
  11956. system/nss_ldap: Fix download URL.
  11957. system/numactl: Remove .la files.
  11958. system/nut: Dynamically create /var/run/nut/
  11959. system/nut: Install bash-completion file to systemwide dir
  11960. system/nut: Remove .la files.
  11961. system/nut: Use the C++14 standard.
  11962. system/nvidia-driver: Fix support for PRINT_PACKAGE_NAME
  11963. system/nvidia-driver: Updated for version 460.73.01, cleanups.
  11964. system/nvidia-driver: Updated for version 460.84.
  11965. system/nvidia-driver: Updated for version 470.63.01.
  11966. system/nvidia-kernel: Fix support for PRINT_PACKAGE_NAME
  11967. system/nvidia-kernel: Updated for version 460.73.01.
  11968. system/nvidia-kernel: Updated for version 460.84.
  11969. system/nvidia-kernel: Updated for version 470.63.01.
  11970. system/nvidia-legacy304-driver: Fix support for PRINT_PACKAGE_NAME
  11971. system/nvidia-legacy304-driver: No libGL.la, fix for gcc >= 10.x
  11972. system/nvidia-legacy304-driver: Removed (unmaintained, ftbfs).
  11973. system/nvidia-legacy304-kernel: Fix support for PRINT_PACKAGE_NAME
  11974. system/nvidia-legacy304-kernel: Patched for the newer kernels.
  11975. system/nvidia-legacy304-kernel: Removed (unmaintained, ftbfs).
  11976. system/nvidia-legacy340-driver: Fix *GL versions in nvidia-switch.
  11977. system/nvidia-legacy340-driver: Fix support for PRINT_PACKAGE_NAME
  11978. system/nvidia-legacy340-driver: Use libtirpc, no libGL.la.
  11979. system/nvidia-legacy340-kernel: Fix support for PRINT_PACKAGE_NAME
  11980. system/nvidia-legacy340-kernel: Patch for the newer kernels.
  11981. system/nvidia-legacy390-driver: Fix support for PRINT_PACKAGE_NAME
  11982. system/nvidia-legacy390-driver: Updated for version 390.143.
  11983. system/nvidia-legacy390-driver: Updated for version 390.144.
  11984. system/nvidia-legacy390-driver: Use libtirpc, no libGL.la.
  11985. system/nvidia-legacy390-kernel: Disable some warnings-as-errors.
  11986. system/nvidia-legacy390-kernel: Fix support for PRINT_PACKAGE_NAME
  11987. system/nvidia-legacy390-kernel: Patch for kernel 5.12.x.
  11988. system/nvidia-legacy390-kernel: Patch for kernel 5.13.x.
  11989. system/nvidia-legacy390-kernel: Updated for version 390.143.
  11990. system/nvidia-legacy390-kernel: Updated for version 390.144.
  11991. system/nvme-cli: Removed (added to Slackware).
  11992. system/ocfs2-tools: Fix 15.0 build.
  11993. system/ohmyalias: Fix download URL.
  11994. system/oldschool-pc-fonts: Remove template comment.
  11995. system/omnidb-app: Fix download URL.
  11996. system/opam: Updated for version 2.0.5.
  11997. system/opam: Updated for version 2.1.2.
  11998. system/opam: Updated for version 2.1.2.
  11999. system/open-vm-tools: Disable warnings-as-errors.
  12000. system/open-vm-tools: Remove .la files.
  12001. system/open-vm-tools: Updated for version 11.3.5_18557794.
  12002. system/openct: Remove .la files.
  12003. system/opendoas: Fix download URL.
  12004. system/opendoas: Updated for version 6.8.2.
  12005. system/opendoas: Workaround internal usage of the $BUILD variable.
  12006. system/openmpi: Mention conflict with mpich.
  12007. system/openrc: Fix 15.0 build.
  12008. system/openrc: Updated for version 0.44.10.
  12009. system/opensc: Remove .la files.
  12010. system/openscap: Updated for version 1.3.6.
  12011. system/openstego: Remove template comment.
  12012. system/oracle-instantclient-basic: Updated DOWNLOAD.
  12013. system/oracle-instantclient-basic: Updated for version 21.5.0.0.0.
  12014. system/oracle-instantclient-devel: Updated DOWNLOAD.
  12015. system/oracle-instantclient-devel: Updated for version 21.5.0.0.0.
  12016. system/oracle-xe: Removed (old version, not available for download).
  12017. system/osinfo-db-tools: Fixed dep info
  12018. system/osinfo-db-tools: Support alternatives for ninja
  12019. system/osinfo-db-tools: Updated for version 1.9.0.
  12020. system/osinfo-db: Updated for version 20210426.
  12021. system/osinfo-db: Updated for version 20211216 (+ Slackware 15.0)
  12022. system/osquery-bin: Updated for version 4.8.0.
  12023. system/osquery-bin: Updated for version 4.9.0.
  12024. system/osquery-bin: Updated for version 5.0.1.
  12025. system/osquery-bin: Updated for version 5.1.0.
  12026. system/osquery-bin: Updated for version 5.2.2.
  12027. system/ossec-agent: Fixed dep info
  12028. system/ossec-agent: Patch for gcc >= 10.x.
  12029. system/ossec-local: Fixed dep info
  12030. system/ossec-local: Patch for gcc >= 10.x.
  12031. system/ossec-server: Fixed dep info
  12032. system/ossec-server: Patch for gcc >= 10.x.
  12033. system/ostree: Remove .la files.
  12034. system/ostree: Updated for version 2021.3.
  12035. system/otf-hermit: Updated for version 2.0.
  12036. system/otf2bdf: Reflow README.
  12037. system/ovmf: removed
  12038. system/p7zip: Patch for gcc >= 10.x.
  12039. system/p7zip: Updated for version 17.04
  12040. system/p7zip: Updated maintainer email
  12041. system/p7zip: Use the C++14 standard.
  12042. system/pacemaker: Remove .la files.
  12043. system/pacemaker: Updated for version 2.0.5.
  12044. system/packagekit: Fixed dep info
  12045. system/packagekit: Removed.
  12046. system/packagekit: Updated for version 1.1.12.
  12047. system/parallel: Removed (added to Slackware).
  12048. system/partclone: Fix download URL.
  12049. system/partclone: Updated for version 0.3.18.
  12050. system/partimage: Fix -current build.
  12051. system/partimage: Fix README.
  12052. system/pass-import: Switch /bin/sh back to /bin/bash
  12053. system/pass-import: Upload pass-import
  12054. system/pass-otp: Fixed dep info
  12055. system/passwdqc: Updated for version 2.0.2.
  12056. system/password-store: Updated for version 1.7.4.
  12057. system/passwordsafe: Fixed dep info
  12058. system/patchelf: Removed (added to Slackware).
  12059. system/pce: Fix 15.0 build.
  12060. system/pce: Updated for version 20220220-991c55d9.
  12061. system/pcf2bdf: Reflow README, rm template comment.
  12062. system/pcsc-lite: Remove .la files.
  12063. system/pcsc-lite: Updated for version 1.9.4.
  12064. system/pcsc-perl: Align with template
  12065. system/pcsc-tools: Fix download URL.
  12066. system/pcsc-tools: Updated for version 1.5.7
  12067. system/pcsc-tools: Updated for version 1.5.8.
  12068. system/percona-toolkit: Updated for version 3.3.1
  12069. system/percona-toolkit: Updated maintainer email
  12070. system/percona-xtrabackup: Removed (included in the newer mariadb).
  12071. system/pgadmin3: Removed.
  12072. system/pgbadger: Fix homepage and download URLs.
  12073. system/phoronix-test-suite: Updated for version 10.4.0.
  12074. system/phoronix-test-suite: Updated for version 10.6.1.
  12075. system/phoronix-test-suite: Updated for version 10.8.0.
  12076. system/phoronix-test-suite: Updated for version 10.8.1.
  12077. system/phoronix-test-suite: Updated for version 10.8.2.
  12078. system/pigz: Updated for version 2.7.
  12079. system/pipemeter: Updated for version 1.1.5.
  12080. system/pixma: Patched for SL15.0
  12081. system/pixma: Update HOMEPAGE
  12082. system/plan9port: Updated for version 20211019_d0d4408.
  12083. system/plocate: Added (a much faster locate).
  12084. system/plymouth: Remove .la files.
  12085. system/podman: Fix github tarball handling.
  12086. system/podman: correct the MD5 digest :sigh:
  12087. system/polyglotman: Remove template comment.
  12088. system/pommed-light: Fix 15.0 build.
  12089. system/porg: Remove .la files.
  12090. system/posixovl: Fix 15.0 build.
  12091. system/postgresql: Updated for version 10.17.
  12092. system/postgresql: Updated for version 14.1.
  12093. system/postgresql: Updated for version 14.2.
  12094. system/postgresql: Use same data dir for all 14.x releases.
  12095. system/powernowd: Use -std=gnu90.
  12096. system/powershell: Updated for version 7.2.0.
  12097. system/preload: s,i486,i586,g
  12098. system/profile-cleaner: Update DEP.
  12099. system/prometheus: Updated for version 2.27.0.
  12100. system/prometheus: Updated for version 2.27.1
  12101. system/prometheus: Updated to version 2.28.0
  12102. system/prometheus: Updated to version 2.28.1
  12103. system/prometheus: Updated to version 2.29.1
  12104. system/prometheus: Updated to version 2.29.2
  12105. system/prometheus: Updated to version 2.30.0
  12106. system/prometheus: Updated to version 2.30.3
  12107. system/prometheus: Updated to version 2.31.1
  12108. system/prometheus: Updated to version 2.32.1
  12109. system/prometheus: Updated to version 2.33.0
  12110. system/prometheus: Updated to version 2.33.1
  12111. system/prometheus: Updated to version 2.33.3
  12112. system/prometheus: Updated to version 2.33.4
  12113. system/prometheus: Updated to version 2.33.5
  12114. system/pspg: Updated for version 5.0.4.
  12115. system/pspg: Updated for version 5.0.5.
  12116. system/ptop: Fix 15.0 build.
  12117. system/pucrunch: Reflow README.
  12118. system/pv: updated for version 1.6.20
  12119. system/pwgem: Update HOMEPAGE.
  12120. system/pwgen: Fix DOWNLOAD.
  12121. system/pwgen: Updated for version 2.08.
  12122. system/pwman: Fix 15.0 build.
  12123. system/python-urwid: Added (python console UI module)
  12124. system/python-urwid: Updated for version 2.1.2.
  12125. system/python3-urwid: Removed.
  12126. system/pytrash: Install bash-completion file to systemwide dir
  12127. system/qemu: Fixup README; remove NUMJOBS from script
  12128. system/qemu: Patch for binutils-2.36.x.
  12129. system/qemu: Update DEP.
  12130. system/qemu: Update README.
  12131. system/qemu: Updated email
  12132. system/qemu: Updated for version 5.2.0.
  12133. system/qemu: Updated for version 6.0.0.
  12134. system/qemu: Updated for version 6.2.0
  12135. system/qemu: Use MAKEFLAGS to pass numjobs.
  12136. system/qingy: Change package pam.d file, not fs.
  12137. system/qingy: Fix 15.0 build.
  12138. system/qingy: Removed (old age, lack of use).
  12139. system/qingy_0.3_themepack: Removed (old age, lack of use).
  12140. system/qjoypad: Updated for version 4.3.1.
  12141. system/qstardict: Fix download URL.
  12142. system/qstardict: Updated for version 1.3.
  12143. system/qterminal: Updated for version 0.15.0.
  12144. system/qtgzmanager: Fix 15.0 build.
  12145. system/rEFInd: Fix for gcc-10.x.
  12146. system/rEFInd: Patch for the newer gnuefi.
  12147. system/rEFInd: Updated for version 0.13.2.
  12148. system/rabbitmq-server: Updated for version 3.8.14.
  12149. system/ranger: use python3 by default now
  12150. system/read-edid: Fix -current build.
  12151. system/read-edid: Fix README.
  12152. system/recoverdm: Fix download URL.
  12153. system/refind: Updated for version 0.13.2.
  12154. system/reiser4progs: Remove .la files.
  12155. system/rename.pl: Added (rename multiple files).
  12156. system/reprepro: Remove NUMJOBS.
  12157. system/reptyr: Remove template comment.
  12158. system/resource-agents: Fix 15.0 build.
  12159. system/restic: Updated for version 0.12.1
  12160. system/restic: man/completion files for version 0.12.1
  12161. system/rfdump: Fix 15.0 build.
  12162. system/rhash: Always build static lib.
  12163. system/rhash: Fix parallel builds.
  12164. system/rhash: Updated for version 1.4.2
  12165. system/ripgrep: Build with pcre2 support.
  12166. system/ripgrep: Updated for version 13.0.0.
  12167. system/rlwrap: Updated for version 0.45.2.
  12168. system/rmw: Updated for version 0.8.0_2.
  12169. system/rmw: Updated for version 0.8.1.
  12170. system/routersploit: Add python2-BeautifulSoup4 DEP
  12171. system/routersploit: Update DEP.
  12172. system/roxterm: Added the dependency vte2.
  12173. system/roxterm: Fix 15.0 build.
  12174. system/rsyslog: Fixed dep info
  12175. system/rtirq: Updated for version 20210530_acf01e7.
  12176. system/runc: Update DEP.
  12177. system/runc: Updated for version 1.0.0-rc93
  12178. system/runc: Updated for version 1.0.2.
  12179. system/rxvt-unicode: Removed (added to Slackware).
  12180. system/s3fs-fuse: Updated for version 1.90.
  12181. system/s3ql: Fix Build.
  12182. system/s3ql: Fix homepage and download.
  12183. system/s3ql: Update DEP.
  12184. system/s6-linux-init: Updated for version 1.0.7.2
  12185. system/s6-rc: Updated for version 0.5.3.0
  12186. system/s6: Updated for version 2.11.0.1, move root-only binaries to /sbin
  12187. system/sakura: Fixed dep info
  12188. system/salt: Update DEP.
  12189. system/salt: Update DEP.
  12190. system/salt: Update DEP.
  12191. system/salt: Update DEP.
  12192. system/samhain: Updated for version 4.4.6.
  12193. system/samsung-mfp-drivers: Changed to version 1.00.06.
  12194. system/sandbox: Updated for version 2.23.
  12195. system/sandy: Remove template comment.
  12196. system/sanlock: Fix MD5SUM.
  12197. system/sargon: Fix build with newer google-go-lang.
  12198. system/sbbdep: Patch for gcc >= 11.x.
  12199. system/sbotools: Fix ARCH.
  12200. system/sbotools: Fix support for PRINT_PACKAGE_NAME
  12201. system/sbsigntools: Updated for version 0.9.1.
  12202. system/scangearmp2: Update for version 4.10.1 and bug fix.
  12203. system/scanmem: Remove .la files.
  12204. system/scdoc: Fix MD5SUM.
  12205. system/sddm: Removed (added to Slackware).
  12206. system/sdl-jstest: Update README.
  12207. system/shake: Updated for version 1.0.
  12208. system/skim: Install bash-completion file to systemwide dir
  12209. system/slack-utils: Handle weird download filename.
  12210. system/slackrepo-hints: Added (hints for slackrepo).
  12211. system/slackrepo: Added (automated slackbuild builder)
  12212. system/slackroll: Updated for version v49.
  12213. system/slackyd: Add a fix for gcc >= 10.x.
  12214. system/sleepd: Fix 15.0 build.
  12215. system/sleuthkit: Disable Java support by default.
  12216. system/sleuthkit: Remove .la files.
  12217. system/sleuthkit: Updated for version 4.11.0.
  12218. system/slim: Add PAM support, fix for gcc >= 11.x, cleanups.
  12219. system/slmenu: Added (single line menu)
  12220. system/slpkg: Updated for version 3.9.2.
  12221. system/slpkg: Updated for version 3.9.3.
  12222. system/snapscreenshot: Remove (broken on modern kernels).
  12223. system/snapscreenshot: Updated for version 1.0.15.
  12224. system/snore: Added (sleep with visual feedback)
  12225. system/socketcand: Fix 15.0 build.
  12226. system/solarize-12x29-psf: Fix README.
  12227. system/solarize-12x29-psf: Remove template comment.
  12228. system/spacefm: Patch for glibc >= 2.28 and gcc >= 10.x.
  12229. system/speedcontrol: Updated download URL
  12230. system/speedcontrol: Updated maintainer email
  12231. system/spice-vdagent: Fix startup script.
  12232. system/spkg: Updated for version 1.4.
  12233. system/spl-solaris: Fix support for PRINT_PACKAGE_NAME
  12234. system/spl-solaris: Removed (fails to build, unused).
  12235. system/spman: Install bash-completion file to systemwide dir
  12236. system/spman: Update DEP.
  12237. system/sqlcipher: Remove .la files.
  12238. system/sqldiff: Remove NUMJOBS.
  12239. system/sqldiff: Use 15.0 download link.
  12240. system/sqldiff: updated for version 3.35.5
  12241. system/sqldiff: updated for version 3.36.0
  12242. system/sqldiff: updated for version 3.37.2
  12243. system/sqlite2: Removed.
  12244. system/ssdeep: Remove .la files.
  12245. system/st: Fix ncurses conflict; many enhancements.
  12246. system/st: Update README.
  12247. system/statifier: Fix README.
  12248. system/statifier: Remove template comment.
  12249. system/steamos-xpad: Fix support for PRINT_PACKAGE_NAME
  12250. system/steamos-xpad: Respect KERNEL.
  12251. system/steghide: Enable patches for 15.0.
  12252. system/stress-ng: Download URL updated.
  12253. system/stress-ng: Fix download URL.
  12254. system/stress-ng: Updated for version 0.12.07.
  12255. system/stressapptest: Added (system stress test).
  12256. system/suckless-tools: Reflow README.
  12257. system/suhosin: Removed (not compatible with newer PHP).
  12258. system/sunflower: Update DEP.
  12259. system/sunflower: Update for 0.5.63
  12260. system/swun: Added qt4 dependency.
  12261. system/sysdig: Fix offline build.
  12262. system/sysdig: Fix support for PRINT_PACKAGE_NAME
  12263. system/sysdig: Updated for version 0.28.0.
  12264. system/sysdig: Use correct github URL.
  12265. system/syslog-ng: Remove .la files.
  12266. system/syslog-ng: Updated for version 3.35.1.
  12267. system/system76-io-dkms: Add douninst.sh.
  12268. system/system76-power: Fix github tarball handling.
  12269. system/system76-power: Fix one of the 63 download URLs.
  12270. system/system76-power: Fix to respect Content-disposition header.
  12271. system/system76-power: Updated for version 1.1.18.
  12272. system/system76-power: Updated for version 1.1.20.
  12273. system/t1utils: Removed (added to Slackware as part of texlive).
  12274. system/tabbed: Fix README.
  12275. system/tabbed: Remove template comment.
  12276. system/tagainijisho: Updated for version 1.1.90.
  12277. system/tagainijisho: Updated for version 1.1.92.
  12278. system/tagainijisho: Updated for version gita84d46b.
  12279. system/tagtools: Mirror download URL.
  12280. system/targetcli-fb: Update DEP.
  12281. system/tbsm: Update for 0.6
  12282. system/tc-play: Fix 15.0 build.
  12283. system/telegraf: Updated for version 1.18.2
  12284. system/telegraf: Updated for version 1.18.3
  12285. system/telegraf: Updated for version 1.19.0
  12286. system/telegraf: Updated for version 1.19.1
  12287. system/telegraf: Updated for version 1.19.2
  12288. system/telegraf: Updated for version 1.19.3
  12289. system/telegraf: Updated for version 1.20.0
  12290. system/telegraf: Updated for version 1.20.2
  12291. system/telegraf: Updated for version 1.20.4
  12292. system/telegraf: Updated for version 1.21.1
  12293. system/telegraf: Updated for version 1.21.2
  12294. system/telegraf: Updated for version 1.21.3
  12295. system/telegraf: Updated for version 1.21.4
  12296. system/termenu: Updated for version 1.2.5.
  12297. system/terminator: Added the new dependency vte2.
  12298. system/terminology: Align with new template.
  12299. system/terminology: Fix ninja brokenness.
  12300. system/terminology: Updated for version 1.12.1.
  12301. system/termite: Removed (obsoleted by alacritty).
  12302. system/termsaver: Updated for version 0.4.
  12303. system/the_silver_searcher: Fix for gcc >= 10.x.
  12304. system/the_silver_searcher: New maintainer.
  12305. system/thermald: Updated for version 2.4.4.
  12306. system/thermald: Updated for version 2.4.5.
  12307. system/thermald: Updated for version 2.4.6.
  12308. system/thermald: Updated for version 2.4.8.
  12309. system/tilda: Fixed dep info
  12310. system/tilix: Fixed dep info
  12311. system/tilix: Removed (ftbfs, no maintainer).
  12312. system/tinyterm: Added the new dependency vte2.
  12313. system/tinyterm: Reflow README, relicense as WTFPL.
  12314. system/tinyvm: Removed (no dependees).
  12315. system/tm: Make noarch, fix zsh completion.
  12316. system/tmuxp: Update DEP.
  12317. system/tmuxp: Updated for version 1.9.4.
  12318. system/tomb: Fixed dep info
  12319. system/tp_smapi: Fix support for PRINT_PACKAGE_NAME
  12320. system/tpc: Fix 15.0 build.
  12321. system/tpe-kmod: Fix download URL.
  12322. system/tpe-kmod: Fix support for PRINT_PACKAGE_NAME
  12323. system/tpe-kmod: Removed (ftbfs, no upstream activity).
  12324. system/tracker: Updated for version 3.2.1.
  12325. system/trackfs: Fix README.
  12326. system/trackfs: remove template comment.
  12327. system/trash: Fix download URL.
  12328. system/trashy: Fix .info.
  12329. system/trashy: Updated for version 2.5.1
  12330. system/triggerhappy: Expand/fix README.
  12331. system/trmaid: Update DEP.
  12332. system/trmaid: Update DEP.
  12333. system/ttf-aller: Fix download URL.
  12334. system/ttf-ancient-fonts: Remove template comment.
  12335. system/ttf-arphic-uming: Updated for version 0.2.20080216.2.
  12336. system/ttf-coda: Fix download URL.
  12337. system/ttf-console-fonts: Remove template comment.
  12338. system/ttf-ipaex: Fix download URL.
  12339. system/ttyrec: Patch for the newer glibc and fix the CFLAGS.
  12340. system/twapake: Fix download URL.
  12341. system/twin: Fix 15.0 build.
  12342. system/u3-tool: Updated for version 1.0.
  12343. system/uae: Fix 15.0 build.
  12344. system/udftools: Updated for version 2.3.
  12345. system/udiskie: Update DEP.
  12346. system/uhd: Fix github tarball handling.
  12347. system/uhd: Fixed python2-cheetah dependency.
  12348. system/uhd: Update DEP.
  12349. system/uhd: Updated for version 003_009_007.
  12350. system/uhd: Updated for version 4.1.0.5.
  12351. system/unac: Fix download URL.
  12352. system/unac: Updated for version 1.8.0_9.
  12353. system/unetbootin: Switch to Qt5.
  12354. system/unetbootin: Updated for version 702.
  12355. system/unicode-character-database: Updated for version .
  12356. system/unigine-heaven-benchmark: Fixed broken link in /usr/bin
  12357. system/unigine-valley-benchmark: Fixed broken link in /usr/bin
  12358. system/unionfs-fuse: updated for version 2.2
  12359. system/unison: Updated for version 2.51.4.
  12360. system/unison: Updated for version 2.51.5.
  12361. system/univga-font: Remove template comment, use https URLs.
  12362. system/unshield: Updated for version 1.4.3.
  12363. system/unshieldv3: Added (extract v3 InstallShield files).
  12364. system/untex: Fix download URL.
  12365. system/upass: python3-urwid -> python-urwid in REQUIRES.
  12366. system/uptimed: Remove .la files.
  12367. system/usbguard: Fixed dep info
  12368. system/usbguard: REQUIRES protobuf => protobuf3.
  12369. system/usbguard: Remove .la files.
  12370. system/usbguard: Update README.
  12371. system/usbmon: Remove template comment.
  12372. system/usbredir: Remove la files.
  12373. system/usbredir: Updated for version 0.12.0.
  12374. system/usbredir: Updated for version 0.9.0.
  12375. system/usbview: Updated for version 2.1
  12376. system/usbview: Updated for version 3.0
  12377. system/usermin: Updated for version 1.830.
  12378. system/usermin: Updated for version 1.832.
  12379. system/usermin: Updated for version 1.833.
  12380. system/usermin: Updated for version 1.834.
  12381. system/usermin: Updated for version 1.840.
  12382. system/v4l2loopback: Updated email
  12383. system/v4l2loopback: Use KERNEL env var.
  12384. system/vcp: Fix README.
  12385. system/vcp: Fix build on -current.
  12386. system/veracrypt: Updated for version 1.25.7.
  12387. system/vhba-module: Disable -Werror.
  12388. system/vhba-module: Fix support for PRINT_PACKAGE_NAME
  12389. system/vhba-module: Updated for version 20210418.
  12390. system/vhba-module: Updated for version 20211023.
  12391. system/vhba-module: Updated for version 20211218.
  12392. system/vice: Fix for gcc >= 10.x.
  12393. system/vice: Updated for version 3.5.
  12394. system/vifm: Remove template comment.
  12395. system/vifm: Updated for version 0.11.
  12396. system/vinterm: Reflow README.
  12397. system/virt-manager: Fixed dep info
  12398. system/virt-manager: Updated for version 3.2.0.
  12399. system/virt-viewer: Support alternatives for ninja
  12400. system/virt-viewer: Updated for version 10.0.
  12401. system/virtualbox-addons: Fake gcc-9.x support.
  12402. system/virtualbox-addons: Updated for version 6.1.26
  12403. system/virtualbox-addons: Updated for version 6.1.28
  12404. system/virtualbox-addons: Updated for version 6.1.32
  12405. system/virtualbox-addons: Updated maintainer email
  12406. system/virtualbox-extension-pack: Revert commit 8280900.
  12407. system/virtualbox-extension-pack: Update for version 6.1.32
  12408. system/virtualbox-extension-pack: Updated for version 6.1.18.
  12409. system/virtualbox-extension-pack: Updated for version 6.1.18.
  12410. system/virtualbox-extension-pack: Updated for version 6.1.22.
  12411. system/virtualbox-extension-pack: Updated for version 6.1.26.
  12412. system/virtualbox-extension-pack: Updated for version 6.1.28.
  12413. system/virtualbox-extension-pack: Updated for version 6.1.8.
  12414. system/virtualbox-extension-pack: Updated maintainer email
  12415. system/virtualbox-kernel-addons: Fix support for PRINT_PACKAGE_NAME
  12416. system/virtualbox-kernel-addons: Removed.
  12417. system/virtualbox-kernel-addons: Updated for version 5.2.8.
  12418. system/virtualbox-kernel-addons: Updated maintainer email
  12419. system/virtualbox-kernel: Drop support for non-hardened virtualbox
  12420. system/virtualbox-kernel: Fix support for PRINT_PACKAGE_NAME
  12421. system/virtualbox-kernel: Revert commit 14f2c05.
  12422. system/virtualbox-kernel: Updated for version 6.1.18.
  12423. system/virtualbox-kernel: Updated for version 6.1.18.
  12424. system/virtualbox-kernel: Updated for version 6.1.22.
  12425. system/virtualbox-kernel: Updated for version 6.1.26.
  12426. system/virtualbox-kernel: Updated for version 6.1.28.
  12427. system/virtualbox-kernel: Updated for version 6.1.32
  12428. system/virtualbox-kernel: Updated for version 6.1.8.
  12429. system/virtualbox-kernel: Updated maintainer email
  12430. system/virtualbox: Fix kernel module detection on 'rc.vboxdrv start'
  12431. system/virtualbox: Revert commit b41b5db.
  12432. system/virtualbox: Script simplifications and python3 support
  12433. system/virtualbox: Updated for version 6.1.18.
  12434. system/virtualbox: Updated for version 6.1.18.
  12435. system/virtualbox: Updated for version 6.1.22.
  12436. system/virtualbox: Updated for version 6.1.26.
  12437. system/virtualbox: Updated for version 6.1.28, detect python 3.10.
  12438. system/virtualbox: Updated for version 6.1.32
  12439. system/virtualbox: Updated for version 6.1.8.
  12440. system/virtualbox: Updated maintainer email
  12441. system/vlock: Remove template comment.
  12442. system/vms: Fix support for PRINT_PACKAGE_NAME
  12443. system/vms: Fixed dep info
  12444. system/wacomtablet: Removed (added to Slackware).
  12445. system/wdiff: Add --enable-experimental.
  12446. system/wdiff: Fix README.
  12447. system/webmin: Updated for version 1.979.
  12448. system/webmin: Updated for version 1.981.
  12449. system/webmin: Updated for version 1.982.
  12450. system/webmin: Updated for version 1.983.
  12451. system/webmin: Updated for version 1.984.
  12452. system/webmin: Updated for version 1.990.
  12453. system/whowatch: Fix 15.0 build, download URL.
  12454. system/wiimms-iso-tools: Fix 15.0 build.
  12455. system/wine-staging: Fixed dep info
  12456. system/wine-staging: Updated for version 6.18.
  12457. system/wine-staging: Updated for version 7.1.
  12458. system/wine: Fixed dep info in README
  12459. system/wine: Updated for version 6.0.1.
  12460. system/wine: Updated for version 7.0.
  12461. system/winusb: Fix 15.0 build and wx 2/3 stupidity.
  12462. system/wipe: Removed (no maintainer)
  12463. system/wmgtemp: Minor fixes.
  12464. system/worker: Updated for version 4.10.0.
  12465. system/worker: Updated for version 4.8.1.
  12466. system/worker: Updated for version 4.9.0
  12467. system/wqy-microhei-font-ttf: Fix fontconfig syntax.
  12468. system/xar: Added (eXtensible ARchiver)
  12469. system/xarchiver: Updated email
  12470. system/xautomation: Minor fixes.
  12471. system/xboxdrv-linux: Fix 15.0 build.
  12472. system/xboxdrv-linux: Handle either download filename.
  12473. system/xchm: Don't depend on wx-config symlink.
  12474. system/xdg-dbus-proxy: Added (D-Bus proxy).
  12475. system/xen: Updated for version 4.15.0.
  12476. system/xen: Updated for version 4.15.1.
  12477. system/xen: XSA 385-390 update.
  12478. system/xf86-video-qxl: Patch for the newer libdrm.
  12479. system/xfburn: Fixed dep info
  12480. system/xfburn: Updated for version 0.6.2.
  12481. system/xfe: Updated for version 1.44.
  12482. system/xidel: remove template comment.
  12483. system/xinput_calibrator: Fix tarball filename mess.
  12484. system/xldconfig: Fix download URL.
  12485. system/xnp2: Patched for gcc >= 6.x.
  12486. system/xonsh: Fixed dep info
  12487. system/xonsh: Updated for version 0.11.0.
  12488. system/xosd: Remove .la files.
  12489. system/xpipe: Added (split input and feed it into the given utility)
  12490. system/xwiimote: Remove .la files.
  12491. system/yakuake: Removed (added to Slackware).
  12492. system/yeahconsole: Update man page.
  12493. system/yelp-tools: Support alternatives for ninja
  12494. system/yelp-tools: Updated for version 40.0.
  12495. system/yelp-tools: Updated for version 41.0.
  12496. system/yelp-xsl: Remove NUMJOBS.
  12497. system/yelp-xsl: Update DEP.
  12498. system/yelp-xsl: Updated for version 40.2.
  12499. system/yelp-xsl: Updated for version 41.1.
  12500. system/yelp-yelp: Updated for version 40.0.
  12501. system/yelp: Remove .la files.
  12502. system/yelp: Update DEP.
  12503. system/yelp: Updated for version 40.0.
  12504. system/yelp: Updated for version 40.2.
  12505. system/yelp: Updated for version 40.3.
  12506. system/yelp: Updated for version 40.3.
  12507. system/yelp: Updated for version 41.2.
  12508. system/yelp: Updated for version 41.2.
  12509. system/zarfy: Fix 15.0 build.
  12510. system/zerofree: Removed (added to Slackware).
  12511. system/zfs-auto-snapshot: Fix github tarball handling.
  12512. system/zfs-on-linux: Fix support for PRINT_PACKAGE_NAME
  12513. system/zfs-on-linux: Updated for version 2.1.0.
  12514. system/zfs-on-linux: Updated for version 2.1.2.
  12515. system/zfs-on-linux: Use KERNEL env var.
  12516. system/zookeeper: Fix download URL.
  12517. system/zpaq: Fixed dep info
  12518. system/zstd: Removed (added to Slackware).
  12519. system/zuluCrypt: Removed (no maintainer)
  12520. system/zulyCrypt: Update DEP.
  12521. thirdparty/paho-mqtt: Added
  12522. various: Fixed man-db dep references
  12523. various: Fixed texlive notes in README files
  12524. various: Kill dvdauthor dep mentions
  12525. various: Kill lots of python3 dep mentions
  12526. various: Kill lz4 dep mention
  12527. various: Kill now-in-Slackware Mako dep
  12528. various: Kill perl/* deps no longer needed
  12529. various: Kill pygobject3-python3 dep mention
  12530. various: Kill python-chardet dep mention
  12531. various: Kill python-requests dep mention
  12532. various: Kill python-urllib3 dep mentions
  12533. various: Kill python3-Cython dep mentions
  12534. various: Kill python3-six dep mentions
  12535. various: Kill xulrunner dep mention
  12536. various: Tweak haveged dep mentions
  12537. various: Use zulu jdk builds for REQUIRES.
  12538. various: kill idna dep mentions
  12539. various: kill now-in-Slackware Pygments dep
  12540. various: kill perl/Net-SSLeay dep notes
  12541. various: kill wayland dep mentions
  12542. +--------------------------+