2
1

DEVELOPERS 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501
  1. # Syntax:
  2. #
  3. # N: Firstname Lastname <email>
  4. # F: file pattern or directory
  5. # F: file pattern or directory
  6. #
  7. # The "F" entries can be:
  8. #
  9. # - A directory, in which case all patches touching any file in this
  10. # directory or its subdirectories will be CC'ed to the developer.
  11. # - A pattern, in which case the pattern will be expanded, and then
  12. # all files/directories (and their subdirectories) will be
  13. # considered when matching against a patch
  14. #
  15. # Notes:
  16. #
  17. # - When a developer adds an "arch/Config.in.<arch>" file to its list
  18. # of files, he is considered a developer of this architecture. He
  19. # will receive e-mail notifications about build failures occuring on
  20. # this architecture. Not more than one e-mail per day is sent.
  21. # - When a developer adds a directory that contains one or several
  22. # packages, this developer will be notified when build failures
  23. # occur. Not more than one e-mail per day is sent.
  24. # - When a developer adds an "package/pkg-<infra>.mk" file to its list
  25. # of files, he is considered interested by this package
  26. # infrastructure, and will be CC'ed on all patches that add or
  27. # modify packages that use this infrastructure.
  28. N: Adam Duskett <adam.duskett@amarulasolutions.com>
  29. F: package/depot-tools/
  30. F: package/dmenu-wayland/
  31. F: package/fcft/
  32. F: package/foot/
  33. F: package/flutter-engine/
  34. F: package/flutter-packages/
  35. F: package/flutter-packages/flutter-adaptive-scaffold-example/
  36. F: package/flutter-packages/flutter-animations-example/
  37. F: package/flutter-packages/flutter-go-router-example/
  38. F: package/flutter-packages/flutter-image-example/
  39. F: package/flutter-packages/flutter-markdown-example/
  40. F: package/flutter-packages/flutter-rfw-local-example/
  41. F: package/flutter-pi/
  42. F: package/flutter-sdk-bin/
  43. F: package/ivi-homescreen/
  44. F: package/libutempter/
  45. F: package/tllist/
  46. F: support/testing/tests/package/test_flutter.py
  47. N: Adam Heinrich <adam@adamh.cz>
  48. F: package/jack1/
  49. N: Adrian Perez de Castro <aperez@igalia.com>
  50. F: package/brotli/
  51. F: package/bubblewrap/
  52. F: package/cage/
  53. F: package/cog/
  54. F: package/libavif/
  55. F: package/libdex/
  56. F: package/libepoxy/
  57. F: package/libmanette/
  58. F: package/libpsl/
  59. F: package/libwpe/
  60. F: package/sysprof/
  61. F: package/webkitgtk/
  62. F: package/wlroots/
  63. F: package/woff2/
  64. F: package/wpebackend-fdo/
  65. F: package/wpewebkit/
  66. F: package/xdg-dbus-proxy/
  67. N: Adrien Gallouët <adrien@gallouet.fr>
  68. F: package/bird/
  69. F: package/glorytun/
  70. N: Akhilesh Nema <nemaakhilesh@gmail.com>
  71. F: board/freescale/ls1046a-rdb/
  72. F: configs/ls1046a-rdb_defconfig
  73. F: board/freescale/ls1043a-rdb/
  74. F: configs/ls1043a-rdb_defconfig
  75. N: Alejandro González <alejandro.gonzalez.correo@gmail.com>
  76. F: package/qprint/
  77. F: package/watchdog/
  78. N: Aleksander Morgado <aleksander@aleksander.es>
  79. F: package/libmbim/
  80. F: package/libqmi/
  81. F: package/modem-manager/
  82. N: Aleksandr Makarov <aleksandr.o.makarov@gmail.com>
  83. F: package/cpp-httplib/
  84. N: Alessandro Partesotti <a.partesotti@gmail.com>
  85. F: package/oatpp/
  86. N: Alex Michel <alex.michel@wiedemann-group.com>
  87. F: package/libzenoh-c/
  88. F: package/libzenoh-pico/
  89. F: package/network-manager-openvpn/
  90. N: Alex Suykov <alex.suykov@gmail.com>
  91. F: board/chromebook/snow/
  92. F: configs/chromebook_snow_defconfig
  93. F: package/vboot-utils/
  94. N: Alexander Clouter <alex+buildroot@digriz.org.uk>
  95. F: package/odhcp6c/
  96. N: Alexander Dahl <post@lespocky.de>
  97. F: package/fastd/
  98. F: package/libuecc/
  99. F: package/siproxd/
  100. F: package/putty/
  101. N: Alexander Egorenkov <egorenar-dev@posteo.net>
  102. F: package/makedumpfile/
  103. F: package/multipath-tools/
  104. N: Alexander Egorenkov <egorenar@linux.ibm.com>
  105. F: arch/Config.in.s390x
  106. F: board/qemu/s390x/
  107. F: configs/qemu_s390x_defconfig
  108. F: package/s390-tools/
  109. N: Alexander Kurz <akurz@blala.de>
  110. F: package/minimodem/
  111. N: Alexander Lukichev <alexander.lukichev@gmail.com>
  112. F: package/openpgm/
  113. N: Aleksandr Makarov <aleksandr.o.makarov@gmail.com>
  114. F: package/libest/
  115. N: Alexander Sverdlin <alexander.sverdlin@gmail.com>
  116. F: package/mini-snmpd/
  117. N: Alexander Varnin <fenixk19@mail.ru>
  118. F: package/liblog4c-localtime/
  119. N: Alexandre Belloni <alexandre.belloni@bootlin.com>
  120. F: package/tz/
  121. N: Alexandre Esse <alexandre.esse.dev@gmail.com>
  122. F: package/kvazaar/
  123. F: package/v4l2loopback/
  124. N: Alexey Brodkin <alexey.brodkin@synopsys.com>
  125. F: board/cubietech/cubieboard2/
  126. F: configs/cubieboard2_defconfig
  127. N: Alexey Lukyanchuk <skif@skif-web.ru>
  128. F: package/zabbix/
  129. N: Alistair Francis <alistair@alistair23.me>
  130. F: board/sifive/
  131. F: boot/opensbi/
  132. F: configs/hifive_unleashed_defconfig
  133. F: package/libspdm/
  134. F: package/xen/
  135. N: Alvaro G. M <alvaro.gamez@hazent.com>
  136. F: package/dcron/
  137. F: package/libxmlrpc/
  138. F: package/python-docopt/
  139. N: Anand Gadiyar <gadiyar@ti.com>
  140. F: board/ti/am62x-sk/
  141. F: board/ti/am64x-sk/
  142. F: boot/ti-k3-boot-firmware/
  143. F: boot/ti-k3-r5-loader/
  144. F: configs/ti_am62x_sk_defconfig
  145. F: configs/ti_am64x_sk_defconfig
  146. N: André Zwing <nerv@dawncrow.de>
  147. F: package/libkrb5/
  148. F: package/p7zip/
  149. F: package/wine/
  150. N: Andreas Klinger <ak@it-klinger.de>
  151. F: package/ply/
  152. N: Andreas Naumann <dev@andin.de>
  153. F: package/evemu/
  154. F: package/libevdev/
  155. F: package/pkg-qmake.mk
  156. F: package/qt5/qt5opcua/
  157. F: package/qt6/qt6opcua/
  158. N: Andreas Ziegler <br015@umbiko.net>
  159. F: package/mpd/
  160. N: Andrey Smirnov <andrew.smirnov@gmail.com>
  161. F: package/python-decorator/
  162. F: package/python-ipython-genutils/
  163. F: package/python-pickleshare/
  164. F: package/python-scandir/
  165. F: package/python-simplegeneric/
  166. F: package/python-systemd/
  167. F: package/python-traitlets/
  168. F: package/zstd/
  169. N: Andrey Yurovsky <yurovsky@gmail.com>
  170. F: package/rauc/
  171. N: Angelo Compagnucci <angelo.compagnucci@gmail.com>
  172. F: board/sipeed/lichee_rv/
  173. F: board/sipeed/lichee_rv_dock/
  174. F: configs/sipeed_lichee_rv*
  175. F: package/apparmor/
  176. F: package/corkscrew/
  177. F: package/cups/
  178. F: package/cups-filters/
  179. F: package/cutekeyboard/
  180. F: package/fail2ban/
  181. F: package/grep/
  182. F: package/gtkiostream/
  183. F: package/htpdate/
  184. F: package/i2c-tools/
  185. F: package/jq/
  186. F: package/libapparmor/
  187. F: package/libb64/
  188. F: package/libdill/
  189. F: package/mender/
  190. F: package/mender-artifact/
  191. F: package/mono/
  192. F: package/mono-gtksharp3/
  193. F: package/monolite/
  194. F: package/openjpeg/
  195. F: package/python-can/
  196. F: package/python-minimalmodbus/
  197. F: package/python-pillow/
  198. F: package/python-pydal/
  199. F: package/python-spidev/
  200. F: package/python-web2py/
  201. F: package/qt5/qt5coap/
  202. F: package/qt5/qt5knx/
  203. F: package/qt5/qt5mqtt/
  204. F: package/rtl8723ds/
  205. F: package/rtl8723ds-bt/
  206. F: package/sam-ba/
  207. F: package/sshguard/
  208. F: package/sunwait/
  209. F: package/sysdig/
  210. N: Andy Shevchenko <andy.shevchenko@gmail.com>
  211. F: package/fb-test-app/
  212. F: package/iotools/
  213. N: Anthony Viallard <viallard@syscom-instruments.com>
  214. F: package/gnuplot/
  215. N: Antoine Tenart <atenart@kernel.org>
  216. F: package/libselinux/
  217. F: package/refpolicy/
  218. F: support/testing/tests/core/test_selinux/
  219. F: support/testing/tests/core/test_selinux.py
  220. F: support/testing/tests/init/test_systemd_selinux/
  221. F: support/testing/tests/init/test_systemd_selinux.py
  222. N: Antony Pavlov <antonynpavlov@gmail.com>
  223. F: package/lsscsi/
  224. N: ARC Maintainers <arc-buildroot@synopsys.com>
  225. F: arch/Config.in.arc
  226. F: board/synopsys/
  227. F: configs/snps_arc700_axs101_defconfig
  228. F: configs/snps_archs38_axs103_defconfig
  229. F: configs/snps_archs38_haps_defconfig
  230. F: configs/snps_archs38_hsdk_defconfig
  231. N: Arnaud Aujon <arnaud@intelibre.fr>
  232. F: package/espeak/
  233. N: Arno Messiaen <arnomessiaen@gmail.com>
  234. F: package/python-aiohttp-sse-client/
  235. N: Arnout Vandecappelle <arnout@rnout.be>
  236. F: package/arp-scan/
  237. F: package/dehydrated/
  238. F: package/dracut/
  239. F: package/freescale-imx/firmware-imx/
  240. F: package/freescale-imx/imx-lib/
  241. F: package/libpagekite/
  242. F: package/lua-bit32/
  243. F: package/owfs/
  244. F: package/python-bottle/
  245. F: package/sqlcipher/
  246. F: package/stress/
  247. N: Ash Charles <ashcharles@gmail.com>
  248. F: package/pru-software-support/
  249. F: package/ti-cgt-pru/
  250. N: Assaf Inbal <shmuelzon@gmail.com>
  251. F: package/lbase64/
  252. F: package/luabitop/
  253. F: package/luaexpatutils/
  254. F: package/luaposix/
  255. F: package/luasec/
  256. F: package/lua-ev/
  257. F: package/orbit/
  258. N: Attila Wagner <attila.wagner@onyxinsight.com>
  259. F: package/python-canopen/
  260. N: Ayoub Zaki <ayoub.zaki@embetrix.com>
  261. F: package/bmap-writer/
  262. N: Bagas Sanjaya <bagasdotme@gmail.com>
  263. F: package/git/
  264. N: Bartosz Bilas <b.bilas@grinn-global.com>
  265. F: board/stmicroelectronics/stm32mp157a-dk1/
  266. F: configs/stm32mp157a_dk1_defconfig
  267. F: package/log4qt/
  268. F: package/python-esptool/
  269. F: package/python-pyaes/
  270. F: package/ttyd/
  271. F: package/qt5/qt5scxml/
  272. F: package/qt5/qt5webview/
  273. N: Baruch Siach <baruch@tkos.co.il>
  274. F: board/solidrun/clearfog_gt_8k/
  275. F: configs/solidrun_clearfog_gt_8k_defconfig
  276. F: package/18xx-ti-utils/
  277. F: package/cpuburn-arm/
  278. F: package/daemon/
  279. F: package/dropbear/
  280. F: package/ebtables/
  281. F: package/i2c-tools/
  282. F: package/libcurl/
  283. F: package/libpcap/
  284. F: package/sexpect/
  285. F: package/socat/
  286. F: package/strace/
  287. F: package/tcpdump/
  288. F: package/ti-uim/
  289. F: package/uhubctl/
  290. N: Baxiche Su <baxiche@gmail.com>
  291. F: package/qt6/qt6multimedia/
  292. N: Ben Boeckel <mathstuf@gmail.com>
  293. F: package/taskd/
  294. N: Benjamin Kamath <kamath.ben@gmail.com>
  295. F: package/lapack/
  296. N: Bernd Kuhls <bernd@kuhls.net>
  297. F: package/alsa-lib/
  298. F: package/alsa-utils/
  299. F: package/apache/
  300. F: package/apg/
  301. F: package/apr/
  302. F: package/apr-util/
  303. F: package/bcg729/
  304. F: package/bento4/
  305. F: package/bitcoin/
  306. F: package/clamav/
  307. F: package/dav1d/
  308. F: package/dht/
  309. F: package/dnsmasq/
  310. F: package/dovecot/
  311. F: package/dovecot-pigeonhole/
  312. F: package/dtv-scan-tables/
  313. F: package/ethtool/
  314. F: package/eudev/
  315. F: package/exim/
  316. F: package/fetchmail/
  317. F: package/ffmpeg/
  318. F: package/flac/
  319. F: package/flatbuffers/
  320. F: package/freeswitch/
  321. F: package/freeswitch-mod-bcg729/
  322. F: package/freetype/
  323. F: package/fstrcmp/
  324. F: package/ghostscript/
  325. F: package/giflib/
  326. F: package/gkrellm/
  327. F: package/gpsd/
  328. F: package/gptfdisk/
  329. F: package/hddtemp/
  330. F: package/hdparm/
  331. F: package/igt-gpu-tools/
  332. F: package/intel-gmmlib/
  333. F: package/intel-mediadriver/
  334. F: package/intel-mediasdk/
  335. F: package/intel-microcode/
  336. F: package/intel-vpl-gpu-rt/
  337. F: package/jsoncpp/
  338. F: package/kodi*
  339. F: package/lame/
  340. F: package/lcms2/
  341. F: package/leafnode2/
  342. F: package/libaacs/
  343. F: package/libass/
  344. F: package/libbdplus/
  345. F: package/libbluray/
  346. F: package/libbroadvoice/
  347. F: package/libcap/
  348. F: package/libcdio/
  349. F: package/libcec/
  350. F: package/libcodec2/
  351. F: package/libcrossguid/
  352. F: package/libde265/
  353. F: package/libdecor/
  354. F: package/libdeflate/
  355. F: package/libdisplay-info/
  356. F: package/libdrm/
  357. F: package/libdvbcsa/
  358. F: package/libdvdcss/
  359. F: package/libdvdnav/
  360. F: package/libdvdread/
  361. F: package/libebur128/
  362. F: package/libfreeglut/
  363. F: package/libfribidi/
  364. F: package/libg7221/
  365. F: package/libglew/
  366. F: package/libglu/
  367. F: package/libhdhomerun/
  368. F: package/libheif/
  369. F: package/libilbc/
  370. F: package/libldns/
  371. F: package/libmicrohttpd/
  372. F: package/libminiupnpc/
  373. F: package/libmspack/
  374. F: package/libnatpmp/
  375. F: package/libnpth/
  376. F: package/libogg/
  377. F: package/libopenh264/
  378. F: package/libpciaccess/
  379. F: package/libplatform/
  380. F: package/libpng/
  381. F: package/libsidplay2/
  382. F: package/libsilk/
  383. F: package/libsndfile/
  384. F: package/libsoundtouch/
  385. F: package/libudfread/
  386. F: package/libunibreak/
  387. F: package/liburiparser/
  388. F: package/libutp/
  389. F: package/libuv/
  390. F: package/libva/
  391. F: package/libva-intel-driver/
  392. F: package/libva-utils/
  393. F: package/libvorbis/
  394. F: package/libvpl/
  395. F: package/libvpx/
  396. F: package/libyuv/
  397. F: package/linux-firmware/
  398. F: package/mc/
  399. F: package/mesa3d/
  400. F: package/minidlna/
  401. F: package/mjpg-streamer/
  402. F: package/mpg123/
  403. F: package/ntp/
  404. F: package/nut/
  405. F: package/openconnect/
  406. F: package/openvpn/
  407. F: package/opus/
  408. F: package/pciutils/
  409. F: package/perl-crypt-openssl-guess/
  410. F: package/perl-crypt-openssl-random/
  411. F: package/perl-crypt-openssl-rsa/
  412. F: package/perl-digest-sha1/
  413. F: package/perl-encode-detect/
  414. F: package/perl-encode-locale/
  415. F: package/perl-file-listing/
  416. F: package/perl-html-parser/
  417. F: package/perl-html-tagset/
  418. F: package/perl-http-cookies/
  419. F: package/perl-http-daemon/
  420. F: package/perl-http-date/
  421. F: package/perl-http-message/
  422. F: package/perl-http-negotiate/
  423. F: package/perl-io-html/
  424. F: package/perl-lwp-mediatypes/
  425. F: package/perl-mail-dkim/
  426. F: package/perl-mailtools/
  427. F: package/perl-netaddr-ip/
  428. F: package/perl-net-dns/
  429. F: package/perl-net-http/
  430. F: package/perl-timedate/
  431. F: package/perl-uri/
  432. F: package/perl-www-robotrules/
  433. F: package/php/
  434. F: package/pngquant/
  435. F: package/pppd/
  436. F: package/privoxy/
  437. F: package/pure-ftpd/
  438. F: package/python-couchdb/
  439. F: package/python-cssutils/
  440. F: package/python-glslang/
  441. F: package/python-mako/
  442. F: package/python-mwclient/
  443. F: package/python-mwscrape/
  444. F: package/python-mwscrape2slob/
  445. F: package/python-oauthlib/
  446. F: package/python-pyicu/
  447. F: package/python-pylru/
  448. F: package/python-requests-oauthlib/
  449. F: package/python-slob/
  450. F: package/rrdtool/
  451. F: package/rsync/
  452. F: package/rtmpdump/
  453. F: package/samba4/
  454. F: package/sofia-sip/
  455. F: package/spandsp/
  456. F: package/sqlite/
  457. F: package/stellarium/
  458. F: package/taglib/
  459. F: package/tinyxml2/
  460. F: package/tor/
  461. F: package/transmission/
  462. F: package/tvheadend/
  463. F: package/unixodbc/
  464. F: package/utfcpp/
  465. F: package/vlc/
  466. F: package/wget/
  467. F: package/wireless-regdb/
  468. F: package/wireless_tools/
  469. F: package/x264/
  470. F: package/x265/
  471. F: package/xmrig/
  472. F: package/ytree/
  473. F: package/znc/
  474. F: support/testing/tests/package/test_perl_html_parser.py
  475. N: Biagio Montaruli <biagio.hkr@gmail.com>
  476. F: board/acmesystems/
  477. F: configs/acmesystems_*
  478. N: Bilal Wasim <bilalwasim676@gmail.com>
  479. F: board/chromebook/elm/
  480. F: configs/chromebook_elm_defconfig
  481. N: Boerge Struempfel <boerge.struempfel@gmail.com>
  482. F: package/libgpiod2/
  483. N: Bogdan Radulescu <bogdan@nimblex.net>
  484. F: package/iftop/
  485. F: package/ncdu/
  486. N: Brandon Maier <brandon.maier@collins.com>
  487. F: board/freescale/ls1046a-frwy/
  488. F: configs/ls1046a-frwy_defconfig
  489. F: package/atftp/
  490. F: package/bats-assert/
  491. F: package/bats-file/
  492. F: package/bats-support/
  493. F: package/mtd/
  494. F: package/python-pysensors/
  495. F: package/qoriq-fm-ucode/
  496. F: package/unifdef/
  497. F: package/vmtouch/
  498. F: support/testing/tests/package/test_atftp.py
  499. F: support/testing/tests/package/test_zip.py
  500. N: Brandon Maier <brandon.maier@gmail.com>
  501. F: package/dtc/
  502. F: support/testing/tests/package/test_dtc*
  503. N: Brock Williams <brock@cottonwoodcomputer.com>
  504. F: package/pdmenu/
  505. N: Bryan Brattlof <bb@ti.com>
  506. F: board/ti/
  507. F: board/beagleboard/beagleplay/
  508. F: boot/ti-k3-boot-firmware/
  509. F: boot/ti-k3-r5-loader/
  510. F: configs/beagleplay_defconfig
  511. F: configs/ti_am62ax_sk_defconfig
  512. F: configs/ti_am62px_sk_defconfig
  513. F: configs/ti_am62x_sk_defconfig
  514. F: configs/ti_am64x_sk_defconfig
  515. N: Carlo Caione <carlo.caione@gmail.com>
  516. F: package/jailhouse/
  517. F: package/sunxi-boards/
  518. N: Carsten Schoenert <c.schoenert@gmail.com>
  519. F: package/dvbsnoop/
  520. F: package/libdvbsi/
  521. F: package/libsvg/
  522. F: package/libsvg-cairo/
  523. N: Cédric Chépied <cedric.chepied@gmail.com>
  524. F: package/znc/
  525. N: Cédric Le Goater <clg@kaod.org>
  526. F: board/aspeed/
  527. F: board/qemu/ppc-bamboo/
  528. F: board/qemu/ppc64le-powernv8/readme.txt
  529. F: configs/aspeed*
  530. F: configs/qemu_ppc_bamboo_defconfig
  531. F: configs/qemu_ppc64le_powernv8_defconfig
  532. N: Charles Hardin <ckhardin@gmail.com>
  533. F: package/alsa-plugins/
  534. N: Changming Huang <jerry.huang@nxp.com>
  535. F: package/qoriq-cadence-dp-firmware/
  536. N: Chris Packham <judge.packham@gmail.com>
  537. F: package/coremark/
  538. F: package/coremark-pro/
  539. F: package/gstreamer1/gst1-shark/
  540. F: package/micropython/
  541. F: package/syslog-ng/
  542. N: Christian Hitz <christian@klarinett.li>
  543. F: package/qt6/qt6scxml/
  544. N: Christian Kellermann <christian.kellermann@solectrix.de>
  545. F: package/python-pylibftdi/
  546. N: Christian Stewart <christian@aperture.us>
  547. F: package/balena-engine/
  548. F: package/batman-adv/
  549. F: package/catatonit/
  550. F: package/cni-plugins/
  551. F: package/conmon/
  552. F: package/containerd/
  553. F: package/crun/
  554. F: package/delve/
  555. F: package/docker-cli/
  556. F: package/docker-compose/
  557. F: package/docker-engine/
  558. F: package/embiggen-disk/
  559. F: package/fuse-overlayfs/
  560. F: package/go/
  561. F: package/gocryptfs/
  562. F: package/mbpfan/
  563. F: package/moby-buildkit/
  564. F: package/mosh/
  565. F: package/nerdctl/
  566. F: package/pkg-golang.mk
  567. F: package/rtl8821au/
  568. F: package/rtl8821cu/
  569. F: package/runc/
  570. F: package/tini/
  571. F: support/testing/tests/package/test_docker_compose.py
  572. N: Christophe Priouzeau <christophe.priouzeau@foss.st.com>
  573. F: board/stmicroelectronics/stm32f429-disco/
  574. F: board/stmicroelectronics/stm32f469-disco/
  575. F: configs/stm32f429_disco_xip_defconfig
  576. F: configs/stm32f469_disco_sd_defconfig
  577. F: configs/stm32f469_disco_xip_defconfig
  578. N: Christophe Vu-Brugier <cvubrugier@fastmail.fm>
  579. F: package/drbd-utils/
  580. F: package/iotop/
  581. F: package/python-configshell-fb/
  582. F: package/python-rtslib-fb/
  583. F: package/python-urwid/
  584. F: package/targetcli-fb/
  585. N: Christopher McCrory <chrismcc@gmail.com>
  586. F: package/perl-appconfig/
  587. F: package/perl-astro-suntime/
  588. F: package/perl-class-load/
  589. F: package/perl-class-std/
  590. F: package/perl-class-std-fast/
  591. F: package/perl-data-dump/
  592. F: package/perl-data-optlist/
  593. F: package/perl-data-uuid/
  594. F: package/perl-date-manip/
  595. F: package/perl-dbd-mysql/
  596. F: package/perl-dbi/
  597. F: package/perl-device-serialport/
  598. F: package/perl-dist-checkconflicts/
  599. F: package/perl-file-slurp/
  600. F: package/perl-io-interface/
  601. F: package/perl-io-socket-multicast/
  602. F: package/perl-json-maybexs/
  603. F: package/perl-mime-tools/
  604. F: package/perl-module-implementation/
  605. F: package/perl-module-runtime/
  606. F: package/perl-number-bytes-human/
  607. F: package/perl-package-stash/
  608. F: package/perl-params-util/
  609. F: package/perl-sub-install/
  610. F: package/perl-sys-cpu/
  611. F: package/perl-sys-meminfo/
  612. F: package/perl-sys-mmap/
  613. F: package/perl-time-parsedate/
  614. F: package/perl-x10/
  615. N: Clayton Shotwell <clayton.shotwell@collins.com>
  616. F: package/audit/
  617. F: package/checkpolicy/
  618. F: package/cpio/
  619. F: package/libcgroup/
  620. F: package/libee/
  621. F: package/libestr/
  622. F: package/liblogging/
  623. F: package/libselinux/
  624. F: package/libsemanage/
  625. F: package/libsepol/
  626. F: package/policycoreutils/
  627. N: Clément Péron <peron.clem@gmail.com>
  628. F: board/beelink/gs1/
  629. F: configs/beelink_gs1_defconfig
  630. N: Colin Foster <colin.foster@in-advantage.com>
  631. F: package/python-tftpy/
  632. F: package/rauc-hawkbit-updater/
  633. F: support/testing/tests/package/sample_python_tftpy.py
  634. F: support/testing/tests/package/test_python_tftpy.py
  635. N: Corentin Guillevic <corentin.guillevic@smile.fr>
  636. F: package/libloki/
  637. N: Cyril Bur <cyrilbur@gmail.com>
  638. F: arch/Config.in.powerpc
  639. F: package/kvm-unit-tests
  640. N: Dagg Stompler <daggs@gmx.com>
  641. F: board/hardkernel/odroidc2/
  642. F: configs/odroidc2_defconfig
  643. F: package/meson-tools/
  644. F: package/odroidc2-firmware/
  645. N: Daniel J. Leach <dleach@belcan.com>
  646. F: package/dacapo/
  647. N: Daniel Lang <dalang@gmx.at>
  648. F: package/atkmm/
  649. F: package/atkmm2_28/
  650. F: package/cairomm/
  651. F: package/cairomm1_14/
  652. F: package/dbus-cxx/
  653. F: package/glibmm/
  654. F: package/glibmm2_66/
  655. F: package/gtkmm3/
  656. F: package/libsigc/
  657. F: package/libsigc2/
  658. F: package/llvm-project/
  659. F: package/paho-mqtt-cpp/
  660. F: package/pangomm/
  661. F: package/pangomm2_46/
  662. F: package/sam-ba/
  663. N: Damien Lanson <damien@kal-host.com>
  664. F: package/libvdpau/
  665. F: package/log4cpp/
  666. N: Damien Le Moal <dlemoal@kernel.org>
  667. F: package/python-kflash/
  668. F: board/canaan/
  669. F: configs/canaan_kd233_defconfig
  670. F: board/sipeed/
  671. F: configs/sipeed_maix_bit_defconfig
  672. F: configs/sipeed_maix_bit_sdcard_defconfig
  673. F: configs/sipeed_maixduino_defconfig
  674. F: configs/sipeed_maixduino_sdcard_defconfig
  675. F: configs/sipeed_maix_dock_defconfig
  676. F: configs/sipeed_maix_dock_sdcard_defconfig
  677. F: configs/sipeed_maix_go_defconfig
  678. F: configs/sipeed_maix_go_sdcard_defconfig
  679. N: Daniel Nicoletti <dantti12@gmail.com>
  680. F: package/cutelyst/
  681. N: Daniel Price <daniel.price@gmail.com>
  682. F: package/nodejs/
  683. F: package/redis/
  684. N: Daniel Sangue <daniel.sangue@sangue.ch>
  685. F: package/libftdi1/
  686. N: Danilo Bargen <mail@dbrgn.ch>
  687. F: board/pcengines/apu2/
  688. F: configs/pcengines_apu2_defconfig
  689. F: package/tealdeer/
  690. N: Danomi Manchego <danomimanchego123@gmail.com>
  691. F: package/cjson/
  692. F: package/jq/
  693. F: package/libwebsockets/
  694. F: package/ljsyscall/
  695. F: package/lua-cjson/
  696. F: package/luaexpat/
  697. F: package/xinetd/
  698. N: Dario Binacchi <dario.binacchi@amarulasolutions.com>
  699. F: board/bsh/
  700. F: board/stmicroelectronics/stm32f746-disco/
  701. F: board/stmicroelectronics/stm32f769-disco/
  702. F: boot/ti-k3-boot-firmware/
  703. F: configs/imx6ulz_bsh_smm_m2_defconfig
  704. F: configs/imx8mn_bsh_smm_s2_defconfig
  705. F: configs/imx8mn_bsh_smm_s2_pro_defconfig
  706. F: configs/stm32f746_disco_sd_defconfig
  707. F: configs/stm32f769_disco_sd_defconfig
  708. F: package/aespipe/
  709. F: package/armadillo/
  710. F: package/babeld/
  711. F: package/iana-assignments/
  712. F: package/inih/
  713. F: package/sscep/
  714. F: package/tinyinit/
  715. F: package/uuu/
  716. N: Dario Binacchi <dariobin@libero.it>
  717. F: package/uboot-bootcount/
  718. F: package/libmnl/
  719. N: David Bender <codehero@gmail.com>
  720. F: package/benejson/
  721. F: package/freeradius-client/
  722. F: package/openldap/
  723. N: David du Colombier <0intro@gmail.com>
  724. F: package/x264/
  725. N: David GOUARIN <dgouarin@gmail.com>
  726. F: package/freeradius-server/
  727. F: package/librelp/
  728. F: package/libtalloc/
  729. N: David Lechner <david@lechnology.com>
  730. F: board/lego/ev3/
  731. F: configs/lego_ev3_defconfig
  732. F: linux/linux-ext-ev3dev-linux-drivers.mk
  733. F: package/brickd/
  734. F: package/ev3dev-linux-drivers/
  735. N: David Pierret <david.pierret@smile.fr>
  736. F: package/bat/
  737. N: Davide Viti <zinosat@gmail.com>
  738. F: package/flann/
  739. F: package/python-paho-mqtt/
  740. F: package/qhull/
  741. F: package/tcllib/
  742. N: Denis Bodor <lefinnois@lefinnois.net>
  743. F: package/libstrophe/
  744. N: Dick Olsson <hi@senzilla.io>
  745. F: board/aarch64-efi/
  746. F: board/pc/
  747. F: board/qemu/aarch64-sbsa/
  748. F: boot/arm-trusted-firmware/
  749. F: boot/edk2/
  750. F: configs/qemu_aarch64_sbsa_defconfig
  751. F: package/bearssl/
  752. F: package/bitcoin/
  753. F: package/edk2-platforms/
  754. F: package/execline/
  755. F: package/mdevd/
  756. F: package/s6-dns/
  757. F: package/s6-linux-init/
  758. F: package/s6-linux-utils/
  759. F: package/s6-networking/
  760. F: package/s6-portable-utils/
  761. F: package/s6-rc/
  762. F: package/s6/
  763. F: package/skalibs/
  764. F: support/testing/tests/boot/test_edk2.py
  765. N: Dimitar Tomov <dimi@tpm.dev>
  766. F: package/wolftpm/
  767. N: Dimitrios Siganos <dimitris@siganos.org>
  768. F: package/wireless-regdb/
  769. N: Dmitry Chestnykh <dm.chestnykh@gmail.com>
  770. F: board/qemu/sparc-ss10/
  771. F: configs/qemu_sparc_ss10_defconfig
  772. F: package/uclibc-ng-test/
  773. N: Dominik Faessler <faessler@was.ch>
  774. F: package/logsurfer/
  775. N: Dominik Michael Rauh <dmrauh@posteo.de>
  776. F: package/gdal/
  777. N: Dong Wang <wangdong115@foxmail.com>
  778. F: board/friendlyarm/nanopi-neo/
  779. F: configs/friendlyarm_nanopi_neo_defconfig
  780. N: Doug Kehn <rdkehn@gmail.com>
  781. F: package/nss-pam-ldapd/
  782. F: package/sp-oops-extract/
  783. F: package/unscd/
  784. N: Dushara Jayasinghe <nidujay@gmail.com>
  785. F: package/prosody/
  786. N: Edgar Bonet <bonet@grenoble.cnrs.fr>
  787. F: board/acmesystems/acqua-a5/
  788. F: configs/acmesystems_acqua_a5_256mb_defconfig
  789. F: configs/acmesystems_acqua_a5_512mb_defconfig
  790. N: Eero Aaltonen <eero.aaltonen@vaisala.com>
  791. F: package/docopt-cpp/
  792. N: Eloi Bail <eloi.bail@savoirfairelinux.com>
  793. F: package/bayer2rgb-neon/
  794. F: package/gstreamer1/gst1-plugins-bayer2rgb-neon/
  795. N: Eric Le Bihan <eric.le.bihan.dev@free.fr>
  796. F: docs/manual/adding-packages-meson.adoc
  797. F: package/adwaita-icon-theme/
  798. F: package/darkhttpd/
  799. F: package/eudev/
  800. F: package/execline/
  801. F: package/hicolor-icon-theme/
  802. F: package/jemalloc/
  803. F: package/mdevd/
  804. F: package/meson/
  805. F: package/ninja/
  806. F: package/pkg-meson.mk
  807. F: package/rust-bin/
  808. F: package/rust/
  809. F: package/s6/
  810. F: package/s6-dns/
  811. F: package/s6-linux-init/
  812. F: package/s6-linux-utils/
  813. F: package/s6-networking/
  814. F: package/s6-portable-utils/
  815. F: package/s6-rc/
  816. F: package/skalibs/
  817. F: package/smack/
  818. F: package/xvisor/
  819. N: Eric Limpens <limpens@gmail.com>
  820. F: package/pifmrds/
  821. F: package/ympd/
  822. N: Erik Larsson <karl.erik.larsson@gmail.com>
  823. F: package/imx-mkimage/
  824. N: Erik Stromdahl <erik.stromdahl@gmail.com>
  825. F: package/mxsldr/
  826. N: Ernesto L. Williams Jr <realcontrols@gmail.com>
  827. F: package/szip/
  828. N: Esben Haabendal <esben@haabendal.dk>
  829. F: package/python-kiwisolver/
  830. N: Etienne Carriere <etienne.carriere@foss.st.com>
  831. F: boot/optee-os/
  832. F: package/optee-client/
  833. F: package/optee-examples/
  834. F: package/optee-test/
  835. N: Eugen Hristev <eugen.hristev@microchip.com>
  836. F: board/atmel/readme.txt
  837. F: board/microchip/sama7g5ek/
  838. F: configs/microchip_sama7g5ek*
  839. N: Eugene Tarassov <eugene@largest.net>
  840. F: package/tcf-agent/
  841. N: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
  842. F: board/ci20/
  843. F: configs/ci20_defconfig
  844. F: package/fio/
  845. F: package/iptraf-ng/
  846. F: package/jimtcl/
  847. F: package/nodm/
  848. F: package/openbox/
  849. F: package/supertuxkart/
  850. N: Fabio Estevam <festevam@gmail.com>
  851. F: board/warp7/
  852. F: configs/freescale_imx*
  853. F: configs/imx23evk_defconfig
  854. F: configs/imx6-sabre*
  855. F: configs/imx6slevk_defconfig
  856. F: configs/imx6sx-sdb_defconfig
  857. F: configs/imx6ulevk_defconfig
  858. F: configs/imx6ullevk_defconfig
  859. F: configs/imx6ulpico_defconfig
  860. F: configs/imx7d-sdb_defconfig
  861. F: configs/imx7dpico_defconfig
  862. F: configs/imx8mqevk_defconfig
  863. F: configs/mx51evk_defconfig
  864. F: configs/mx53loco_defconfig
  865. F: configs/mx6cubox_defconfig
  866. F: configs/mx6sx_udoo_neo_defconfig
  867. F: configs/mx6udoo_defconfig
  868. F: configs/wandboard_defconfig
  869. F: configs/warp7_defconfig
  870. F: package/atest/
  871. F: package/crucible/
  872. F: package/kmscube/
  873. N: Fabio Porcedda <fabio.porcedda@gmail.com>
  874. F: package/netsurf-buildsystem/
  875. N: Fabio Urquiza <fabiorush@gmail.com>
  876. F: package/bitcoin/
  877. N: Fabrice Fontaine <fabrice.fontaine@orange.com>
  878. F: package/domoticz/
  879. F: package/libmediaart/
  880. F: package/libmaxminddb/
  881. F: package/openzwave/
  882. N: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  883. F: package/bearssl/
  884. F: package/belle-sip/
  885. F: package/belr/
  886. F: package/boinc/
  887. F: package/cairo/
  888. F: package/daq3/
  889. F: package/duktape/
  890. F: package/expat/
  891. F: package/flatbuffers/
  892. F: package/freeipmi/
  893. F: package/gdk-pixbuf-xlib/
  894. F: package/gerbera/
  895. F: package/gtksourceview/
  896. F: package/gssdp/
  897. F: package/gupnp/
  898. F: package/gupnp-dlna/
  899. F: package/gupnp-tools/
  900. F: package/haproxy/
  901. F: package/hiredis/
  902. F: package/i2pd/
  903. F: package/igd2-for-linux/
  904. F: package/json-c/
  905. F: package/ksmbd-tools/
  906. F: package/lcms2/
  907. F: package/lftp/
  908. F: package/libcap-ng/
  909. F: package/libcdio-paranoia/
  910. F: package/libcgicc/
  911. F: package/libconfig/
  912. F: package/libcue/
  913. F: package/libebml/
  914. F: package/libgee/
  915. F: package/libglib2/
  916. F: package/libgtk2/
  917. F: package/libgtk3/
  918. F: package/libhtp/
  919. F: package/libidn/
  920. F: package/libidn2/
  921. F: package/libjpeg/
  922. F: package/liblockfile/
  923. F: package/libmatroska/
  924. F: package/libmd/
  925. F: package/libmpdclient/
  926. F: package/libnetfilter_conntrack/
  927. F: package/libnetfilter_queue/
  928. F: package/libnpupnp/
  929. F: package/liboping/
  930. F: package/libpfm4/
  931. F: package/libraw/
  932. F: package/libraw1394/
  933. F: package/libroxml/
  934. F: package/librsvg/
  935. F: package/librsync/
  936. F: package/libsoup/
  937. F: package/libsoxr/
  938. F: package/libupnp/
  939. F: package/liburing/
  940. F: package/libv4l/
  941. F: package/libxslt/
  942. F: package/mbedtls/
  943. F: package/minissdpd/
  944. F: package/minizip/
  945. F: package/minizip-zlib/
  946. F: package/motion/
  947. F: package/mutt/
  948. F: package/ncmpc/
  949. F: package/oniguruma/
  950. F: package/opencv4/
  951. F: package/oprofile/
  952. F: package/pcmanfm/
  953. F: package/perl-extutils-pkgconfig/
  954. F: package/python-backcall/
  955. F: package/python-jedi/
  956. F: package/python-parso/
  957. F: package/python-yatl/
  958. F: package/rocksdb/
  959. F: package/rtl_433/
  960. F: package/rygel/
  961. F: package/safeclib/
  962. F: package/snort3/
  963. F: package/suricata/
  964. F: package/tinycbor/
  965. F: package/tinydtls/
  966. F: package/whois/
  967. F: package/x11r7/xlib_libXpresent/
  968. F: package/zeek/
  969. N: Fabrice Goucem <fabrice.goucem@oss.nxp.com>
  970. F: board/freescale/imx6ullevk/
  971. F: configs/freescale_imx6ullevk_defconfig
  972. N: Falco Hyfing <hyfinglists@gmail.com>
  973. F: package/python-pymodbus/
  974. N: Fiona Klute <fiona.klute@gmx.de>
  975. F: package/*/S*
  976. F: package/panel-mipi-dbi-firmware/
  977. F: package/python-aiomqtt/
  978. F: package/python-dunamai/
  979. F: package/python-poetry-dynamic-versioning/
  980. F: package/python-pyasynchat/
  981. F: package/python-pyasyncore/
  982. F: support/testing/tests/package/sample_python_networkmanager_goi.py
  983. F: support/testing/tests/package/test_python_networkmanager_goi.py
  984. N: Flávio Tapajós <flavio.tapajos@newtesc.com.br>
  985. F: configs/asus_tinker-s_rk3288_defconfig
  986. F: board/asus/tinker-s/
  987. F: package/python-paho-mqtt/
  988. F: package/python-sqlalchemy/
  989. F: package/rsyslog/
  990. N: Florian Fainelli <f.fainelli@gmail.com>
  991. F: package/cpulimit/
  992. N: Floris Bos <bos@je-eigen-domein.nl>
  993. F: package/ipmitool/
  994. F: package/odhcploc/
  995. N: Francis Laniel <flaniel@linux.microsoft.com>
  996. F: package/falcosecurity-libs
  997. F: package/pahole/
  998. F: package/sysdig/
  999. F: package/tbb/
  1000. N: Francisco Gonzalez <gzmorell@gmail.com>
  1001. F: package/ser2net/
  1002. N: Francois Dugast <francois.dugast.foss@gmail.com>
  1003. F: board/sipeed/licheepi_nano/
  1004. F: board/visionfive2/
  1005. F: configs/sipeed_licheepi_nano_defconfig
  1006. F: configs/visionfive2_defconfig
  1007. N: Francois Perrad <francois.perrad@gadz.org>
  1008. F: board/freescale/ls1028ardb/
  1009. F: board/olimex/a20_olinuxino
  1010. F: board/olimex/imx233_olinuxino/
  1011. F: board/olimex/stmp1_olinuxino/
  1012. F: configs/ls1028ardb_defconfig
  1013. F: configs/olimex_a20_olinuxino_*
  1014. F: configs/olimex_imx233_olinuxino_defconfig
  1015. F: configs/olimex_stmp157_olinuxino_lime_defconfig
  1016. F: package/4th/
  1017. F: package/cgilua/
  1018. F: package/chipmunk/
  1019. F: package/cog/
  1020. F: package/collectl/
  1021. F: package/copas/
  1022. F: package/coxpcall/
  1023. F: package/dado/
  1024. F: package/ficl/
  1025. F: package/graphene/
  1026. F: package/janet/
  1027. F: package/libgtk4/
  1028. F: package/libtomcrypt/
  1029. F: package/libtommath/
  1030. F: package/libwpe/
  1031. F: package/linenoise/
  1032. F: package/ljlinenoise/
  1033. F: package/lua-inotify/
  1034. F: package/lmdb/
  1035. F: package/lpeg/
  1036. F: package/lpty/
  1037. F: package/lrandom/
  1038. F: package/lsqlite3/
  1039. F: package/lua*
  1040. F: package/lynis/
  1041. F: package/lzlib/
  1042. F: package/moarvm/
  1043. F: package/mstpd/
  1044. F: package/netsurf/
  1045. F: package/perl*
  1046. F: package/pkg-perl.mk
  1047. F: package/pkg-luarocks.mk
  1048. F: package/quickjs/
  1049. F: package/rings/
  1050. F: package/tekui/
  1051. F: package/wpebackend-fdo/
  1052. F: package/wpewebkit/
  1053. F: package/wsapi/
  1054. F: package/wsapi-fcgi/
  1055. F: package/wsapi-xavante/
  1056. F: package/xavante/
  1057. F: support/testing/tests/package/test_lua*
  1058. F: support/testing/tests/package/test_lynis.py
  1059. F: utils/scancpan
  1060. N: Frank Hunleth <fhunleth@troodon-software.com>
  1061. F: package/am335x-pru-package/
  1062. F: package/libconfuse/
  1063. F: package/libdmtx/
  1064. F: package/libsodium/
  1065. F: package/php-amqp/
  1066. F: package/python-cherrypy/
  1067. F: package/sane-backends/
  1068. F: package/upx/
  1069. F: package/zxing-cpp/
  1070. N: Frank Vanbever <frank.vanbever@mind.be>
  1071. F: package/libmodsecurity/
  1072. F: package/nginx-modsecurity/
  1073. N: Gaël PORTAY <gael.portay+rtone@gmail.com>
  1074. F: board/raspberrypi/
  1075. F: configs/raspberrypi*
  1076. N: Gao Xiang <hsiangkao@aol.com>
  1077. F: package/erofs-utils/
  1078. N: Gary Bisson <bisson.gary@gmail.com>
  1079. F: board/boundarydevices/
  1080. F: configs/nitrogen*
  1081. F: package/freescale-imx/
  1082. F: package/freescale-imx/imx-vpu-hantro-daemon/
  1083. F: package/gstreamer1/gst1-imx/
  1084. F: package/libimxvpuapi/
  1085. F: package/mfgtools/
  1086. F: package/sshpass/
  1087. N: Geoff Levand <geoff@infradead.org>
  1088. F: package/flannel/
  1089. N: Geoffrey Ragot <geoffreyragot@gmail.com>
  1090. F: package/python-pyyaml/
  1091. N: Gero Schwaericke <gero.schwaericke@posteo.de>
  1092. F: board/cubietech/cubieboard1/
  1093. F: configs/cubieboard1_defconfig
  1094. N: Gilles Talis <gilles.talis@gmail.com>
  1095. F: board/freescale/imx8mmevk/
  1096. F: board/friendlyarm/nanopi-r2s/
  1097. F: configs/freescale_imx8mmevk_defconfig
  1098. F: configs/friendlyarm_nanopi_r2s_defconfig
  1099. F: package/cctz/
  1100. F: package/clpeak/
  1101. F: package/faad2/
  1102. F: package/fdk-aac/
  1103. F: package/hawktracer/
  1104. F: package/httping/
  1105. F: package/iozone/
  1106. F: package/leptonica/
  1107. F: package/libeXosip2/
  1108. F: package/libolm/
  1109. F: package/libosip2/
  1110. F: package/ocrad/
  1111. F: package/opencl-clhpp/
  1112. F: package/opusfile/
  1113. F: package/restclient-cpp/
  1114. F: package/tesseract-ocr/
  1115. F: package/webp/
  1116. F: package/xapian/
  1117. N: Giulio Benetti <giulio.benetti@benettiengineering.com>
  1118. F: board/bananapi/bananapi-m2-ultra/
  1119. F: board/freescale/imx6ullevk/
  1120. F: board/freescale/imxrt1050evk/
  1121. F: board/mangopi/mq1rdw2/
  1122. F: board/olimex/a*
  1123. F: board/pine64/rockpro64
  1124. F: configs/amarula_vyasa_rk3288_defconfig
  1125. F: configs/asus_tinker_rk3288_defconfig
  1126. F: configs/bananapi_m2_berry_defconfig
  1127. F: configs/bananapi_m2_ultra_defconfig
  1128. F: configs/freescale_imx6ullevk_defconfig
  1129. F: configs/imx6ullevk_defconfig
  1130. F: configs/imxrt1050-evk_defconfig
  1131. F: configs/mangopi_mq1rdw2_defconfig
  1132. F: configs/olimex_a*
  1133. F: configs/rockpro64_defconfig
  1134. F: package/at/
  1135. F: package/binutils/
  1136. F: package/cryptsetup/
  1137. F: package/erlang-jiffy/
  1138. F: package/esp-hosted/
  1139. F: package/gcc/
  1140. F: package/harfbuzz/
  1141. F: package/libblockdev/
  1142. F: package/libfuse3/
  1143. F: package/libnspr/
  1144. F: package/libnss/
  1145. F: package/libnvme/
  1146. F: package/libtraceevent/
  1147. F: package/libtracefs
  1148. F: package/linux-tools/linux-tool-rtla.mk.in
  1149. F: package/mali-driver/
  1150. F: package/minicom/
  1151. F: package/mongoose/
  1152. F: package/mmc-utils/
  1153. F: package/nfs-utils/
  1154. F: package/python-libconf/
  1155. F: package/python-uvloop/
  1156. F: package/qt5/
  1157. F: package/rockchip-mali/
  1158. F: package/rtl8188eu/
  1159. F: package/rtl8189es/
  1160. F: package/rtl8192eu/
  1161. F: package/rtl8723bu/
  1162. F: package/rtl8723ds/
  1163. F: package/rtl8812au-aircrack-ng/
  1164. F: package/rtl8821au/
  1165. F: package/rtl8821cu/
  1166. F: package/sunxi-mali-utgard/
  1167. F: package/sunxi-mali-utgard-driver/
  1168. F: package/sunxi-tools/
  1169. F: package/swugenerator/
  1170. F: package/swupdate/
  1171. F: package/trace-cmd/
  1172. F: package/udisks/
  1173. F: package/wilc-driver/
  1174. F: toolchain/
  1175. N: Graeme Smecher <gsmecher@threespeedlogic.com>
  1176. F: package/python-orjson/
  1177. N: Gregory Dymarek <gregd72002@gmail.com>
  1178. F: package/ding-libs/
  1179. F: package/gengetopt/
  1180. F: package/janus-gateway/
  1181. F: package/libnice/
  1182. F: package/libsrtp/
  1183. F: package/libwebsock/
  1184. F: package/sofia-sip/
  1185. N: Grzegorz Blach <grzegorz@blach.pl>
  1186. F: fs/f2fs/
  1187. F: package/bluez5_utils-headers/
  1188. F: package/f2fs-tools/
  1189. F: package/graphicsmagick/
  1190. F: package/pigpio/
  1191. F: package/python-aioblescan/
  1192. F: package/python-bluezero/
  1193. F: package/python-crontab/
  1194. F: package/python-falcon/
  1195. F: package/python-ifaddr/
  1196. F: package/python-hiredis/
  1197. F: package/python-mimeparse/
  1198. F: package/python-pigpio/
  1199. F: package/python-pyjwt/
  1200. F: package/python-redis/
  1201. F: package/python-rpi-ws281x/
  1202. F: package/python-wtforms/
  1203. F: package/rpi-rgb-led-matrix/
  1204. N: Guillaume William Brs <guillaume.bressaix@gmail.com>
  1205. F: package/libnids/
  1206. F: package/libxcrypt/
  1207. F: package/liquid-dsp/
  1208. F: package/mbw/
  1209. F: package/pixiewps/
  1210. F: package/python-beniget/
  1211. F: package/python-gast/
  1212. F: package/python-pybind/
  1213. F: package/python-pythran/
  1214. F: package/python-scipy/
  1215. F: package/reaver/
  1216. F: support/testing/tests/package/br2-external/python-pybind
  1217. F: support/testing/tests/package/sample_python_pybind.py
  1218. F: support/testing/tests/package/sample_python_scipy.py
  1219. F: support/testing/tests/package/test_python_pybind.py
  1220. F: support/testing/tests/package/test_python_scipy.py
  1221. N: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
  1222. F: board/terasic/de10nano_cyclone5/
  1223. F: configs/terasic_de10nano_cyclone5_defconfig
  1224. F: package/gnuradio/
  1225. F: package/gqrx/
  1226. F: package/gr-osmosdr/
  1227. F: package/librtlsdr/
  1228. F: package/libusbgx/
  1229. F: package/matio/
  1230. F: package/python-cheetah/
  1231. F: package/python-markdown/
  1232. F: package/python-remi/
  1233. F: package/python-sip/
  1234. F: package/uhd/
  1235. F: package/volk/
  1236. N: Heiko Thiery <heiko.thiery@gmail.com>
  1237. F: board/kontron/bl-imx8mm/
  1238. F: board/kontron/smarc-sal28/
  1239. F: board/kontron/pitx-imx8m/
  1240. F: configs/kontron_bl_imx8mm_defconfig
  1241. F: configs/kontron_smarc_sal28_defconfig
  1242. F: configs/kontron_pitx_imx8m_defconfig
  1243. F: package/altera-stapl/
  1244. F: package/blake3/
  1245. F: package/ipmitool/
  1246. F: package/libnetconf2/
  1247. F: package/libyang/
  1248. F: package/linuxptp/
  1249. F: package/netopeer2/
  1250. F: package/python-yamllint/
  1251. F: package/rauc/
  1252. F: package/sysrepo/
  1253. F: support/testing/tests/package/sample_python_yamllint.py
  1254. F: support/testing/tests/package/test_python_yamllint.py
  1255. N: Hervé Codina <herve.codina@bootlin.com>
  1256. F: package/alchemy/
  1257. F: package/dtbocfg/
  1258. F: package/libdbi/
  1259. F: package/libdbi-drivers/
  1260. F: package/libfutils/
  1261. F: package/libshdata/
  1262. F: package/lua-augeas/
  1263. F: package/modsecurity2/
  1264. F: package/php-apcu/
  1265. F: package/php-lua/
  1266. F: package/php-pam/
  1267. F: package/php-pecl-dbus/
  1268. F: package/ulog/
  1269. F: support/testing/tests/package/test_dtbocfg.py
  1270. F: support/testing/tests/package/test_libshdata.py
  1271. F: support/testing/tests/package/test_lua_augeas.py
  1272. F: support/testing/tests/package/test_php_apcu.py
  1273. F: support/testing/tests/package/test_php_lua.py
  1274. F: support/testing/tests/package/test_php_pam.py
  1275. F: support/testing/tests/package/test_php_pecl_dbus.py
  1276. N: Hiroshi Kawashima <kei-k@ca2.so-net.ne.jp>
  1277. F: package/gauche/
  1278. F: package/gmrender-resurrect/
  1279. F: package/squeezelite/
  1280. N: Horatiu Vultur <horatiu.vultur@microchip.com>
  1281. F: package/cfm/
  1282. F: package/easyframes/
  1283. F: package/mrp/
  1284. N: Ian Haylock <haylocki@yahoo.co.uk>
  1285. F: package/python-rpi-gpio/
  1286. N: Ibai Erkiaga <ibai.erkiaga-elorza@amd.com>
  1287. F: package/binutils-bare-metal/
  1288. F: package/gcc-bare-metal/
  1289. F: package/newlib-bare-metal/
  1290. F: toolchain/toolchain-bare-metal-buildroot/
  1291. N: Ilias Apalodimas <apalos@gmail.com>
  1292. F: package/keepalived/
  1293. N: Ilya Averyanov <averyanovin@gmail.com>
  1294. F: package/exempi/
  1295. N: Ismael Luceno <ismael@iodev.co.uk>
  1296. F: package/axel/
  1297. F: package/mawk/
  1298. N: J. Neuschäfer <j.neuschaefer@gmx.net>
  1299. F: package/execline/
  1300. F: package/mdevd/
  1301. F: package/python-rgbmatrix/
  1302. F: package/rpi-rgb-led-matrix/
  1303. F: package/s6/
  1304. F: package/s6-linux-init/
  1305. F: package/s6-linux-utils/
  1306. F: package/s6-networking/
  1307. F: package/s6-portable-utils/
  1308. F: package/s6-rc/
  1309. F: package/skalibs/
  1310. F: package/snooze/
  1311. F: package/tipidee/
  1312. N: Jagan Teki <jagan@amarulasolutions.com>
  1313. F: board/amarula/
  1314. F: board/asus/
  1315. F: board/bananapi/
  1316. F: board/engicam/
  1317. F: board/olimex/a33_olinuxino/
  1318. F: board/olimex/a64-olinuxino/
  1319. F: board/orangepi/orangepi-lite2/
  1320. F: board/orangepi/orangepi-one-plus
  1321. F: board/orangepi/orangepi-zero-plus2/
  1322. F: board/pine64/
  1323. F: configs/amarula_vyasa_rk3288_defconfig
  1324. F: configs/asus_tinker_rk3288_defconfig
  1325. F: configs/engicam_imx6qdl_icore_defconfig
  1326. F: configs/engicam_imx6qdl_icore_qt5_defconfig
  1327. F: configs/engicam_imx6qdl_icore_rqs_defconfig
  1328. F: configs/engicam_imx6ul_geam_defconfig
  1329. F: configs/engicam_imx6ul_isiot_defconfig
  1330. F: configs/olimex_a33_olinuxino_defconfig
  1331. F: configs/olimex_a64_olinuxino_defconfig
  1332. F: configs/orangepi_lite2_defconfig
  1333. F: configs/orangepi_one_plus_defconfig
  1334. F: configs/orangepi_zero_plus2_defconfig
  1335. F: configs/pine64_defconfig
  1336. F: configs/pine64_sopine_defconfig
  1337. F: package/python-scipy/
  1338. F: support/testing/tests/package/sample_python_scipy.py
  1339. F: support/testing/tests/package/test_python_scipy.py
  1340. N: James Hilliard <james.hilliard1@gmail.com>
  1341. F: package/apcupsd/
  1342. F: package/bpftool/
  1343. F: package/cloudflared/
  1344. F: package/exfatprogs/
  1345. F: package/fwupd/
  1346. F: package/fwupd-efi/
  1347. F: package/fxdiv/
  1348. F: package/gensio/
  1349. F: package/lua-std-debug/
  1350. F: package/lua-std-normalize/
  1351. F: package/libjcat/
  1352. F: package/libucontext/
  1353. F: package/lilv/
  1354. F: package/lv2/
  1355. F: package/neon-2-sse/
  1356. F: package/pipewire/
  1357. F: package/python*
  1358. F: package/rtl8192eu/
  1359. F: package/serd/
  1360. F: package/sord/
  1361. F: package/sratom/
  1362. F: package/stb/
  1363. F: package/superiotool/
  1364. F: package/tailscale/
  1365. F: package/uefisettings/
  1366. F: package/zchunk/
  1367. F: support/testing/tests/package/sample_python_rtoml.py
  1368. F: support/testing/tests/package/test_python_rtoml.py
  1369. N: James Knight <james.knight@collins.com>
  1370. F: package/atkmm/
  1371. F: package/cairomm/
  1372. F: package/glibmm/
  1373. F: package/gtkmm3/
  1374. F: package/libpqxx/
  1375. F: package/pangomm/
  1376. F: package/rpm/
  1377. F: package/swaybg/
  1378. F: package/yad/
  1379. N: Jamie Gibbons <jamie.gibbons@microchip.com>
  1380. F: board/beagleboard/beaglev_fire/
  1381. F: board/microchip/mpfs_icicle/
  1382. F: configs/beaglev_fire_defconfig
  1383. F: configs/microchip_mpfs_icicle_defconfig
  1384. F: package/microchip-hss-payload-generator/
  1385. N: Jan Havran <havran.jan@email.cz>
  1386. F: board/pine64/pinecube/
  1387. F: configs/pine64_pinecube_defconfig
  1388. N: Jan Heylen <jan.heylen@nokia.com>
  1389. F: package/opentracing-cpp/
  1390. N: Jan Kraval <jan.kraval@gmail.com>
  1391. F: board/orangepi/orangepi-lite
  1392. F: configs/orangepi_lite_defconfig
  1393. N: Jan Kundrát <jan.kundrat@cesnet.cz>
  1394. F: configs/solidrun_clearfog_defconfig
  1395. F: board/solidrun/clearfog/
  1396. F: package/libnetconf2/
  1397. F: package/libyang/
  1398. F: package/sysrepo/
  1399. N: Jan Pedersen <jp@jp-embedded.com>
  1400. F: package/zip/
  1401. N: Jared Bents <jared.bents@rockwellcollins.com>
  1402. F: package/libvirt/
  1403. N: Jarkko Sakkinen <jarkko@kernel.org>
  1404. F: package/libtpms/
  1405. F: package/quota/
  1406. F: package/swtpm/
  1407. N: Jason Pruitt <jrspruitt@gmail.com>
  1408. F: package/librtlsdr/
  1409. N: Javad Rahimi <javad321javad@gmail.com>
  1410. F: board/orangepi/orangepi-pc2
  1411. F: configs/orangepi_pc2_defconfig
  1412. N: Jean Burgat <jeanburgat33@gmail.com>
  1413. F: package/openfpgaloader/
  1414. N: Jens Kleintje <scooby22@web.de>
  1415. F: package/gcnano-binaries/
  1416. N: Jens Rosenboom <j.rosenboom@x-ion.de>
  1417. F: package/sl/
  1418. N: Jens Zettelmeyer <zettelmeyerj@gmail.com>
  1419. F: package/batctl/
  1420. N: Jeremy Rosen <jeremy.rosen@openwide.fr>
  1421. F: package/fxload/
  1422. N: Jérôme Oufella <jerome.oufella@savoirfairelinux.com>
  1423. F: package/libdri2/
  1424. F: package/qt-webkit-kiosk/
  1425. N: Jérôme Pouiller <jezz@sysmic.org>
  1426. F: package/apitrace/
  1427. F: package/freescale-imx/gpu-amd-bin-mx51/
  1428. F: package/freescale-imx/libz160/
  1429. F: package/lxc/
  1430. F: package/strongswan/
  1431. F: package/wmctrl/
  1432. F: package/x11r7/xdriver_xf86-video-imx/
  1433. N: Jesse Taube <Mr.Bossman075@gmail.com>
  1434. F: board/freescale/imxrt1050evk/
  1435. F: configs/imxrt1050-evk_defconfig
  1436. N: Jesse Van Gavere <jesseevg@gmail.com>
  1437. F: package/qt6/
  1438. N: Jianhui Zhao <zhaojh329@gmail.com>
  1439. F: package/libuhttpd/
  1440. F: package/libuwsc/
  1441. F: package/rtty/
  1442. N: Joachim Wiberg <troglobit@gmail.com>
  1443. F: configs/globalscale_espressobin_defconfig
  1444. F: board/globalscale/espressobin/
  1445. F: package/inadyn/
  1446. F: package/libconfuse/
  1447. F: package/libite/
  1448. F: package/libnet/
  1449. F: package/libteam/
  1450. F: package/libuev/
  1451. F: package/mg/
  1452. F: package/mdnsd/
  1453. F: package/mini-snmpd/
  1454. F: package/mrouted/
  1455. F: package/netcalc/
  1456. F: package/pimd/
  1457. F: package/redir/
  1458. F: package/smcroute/
  1459. F: package/ssdp-responder/
  1460. F: package/sysklogd/
  1461. F: package/uredir/
  1462. F: package/watchdogd/
  1463. N: Jochen Baltes <jochen.baltes@gmail.com>
  1464. F: package/altera-stapl
  1465. N: Joel Carlson <JoelsonCarl@gmail.com>
  1466. F: package/c-capnproto/
  1467. F: package/capnproto/
  1468. F: package/cmocka/
  1469. F: package/flatcc/
  1470. F: package/libcorrect/
  1471. N: Joel Stanley <joel@jms.id.au>
  1472. F: package/pdbg/
  1473. F: board/qemu/ppc64le-pseries/
  1474. F: configs/qemu_ppc64le_pseries_defconfig
  1475. F: board/qemu/ppc-mac99/
  1476. F: configs/qemu_ppc_mac99_defconfig
  1477. F: board/aspeed/
  1478. F: configs/aspeed*
  1479. N: Johan Derycke <johanderycke@gmail.com>
  1480. F: package/python-libconfig/
  1481. N: Johan Oudinet <johan.oudinet@gmail.com>
  1482. F: package/ejabberd/
  1483. F: package/erlang-base64url/
  1484. F: package/erlang-eimp/
  1485. F: package/erlang-fast-xml/
  1486. F: package/erlang-fast-yaml/
  1487. F: package/erlang-goldrush/
  1488. F: package/erlang-idna/
  1489. F: package/erlang-jiffy/
  1490. F: package/erlang-jose/
  1491. F: package/erlang-lager/
  1492. F: package/erlang-p1-acme/
  1493. F: package/erlang-p1-cache-tab/
  1494. F: package/erlang-p1-mqtree/
  1495. F: package/erlang-p1-oauth2/
  1496. F: package/erlang-p1-pkix/
  1497. F: package/erlang-p1-sip/
  1498. F: package/erlang-p1-stringprep/
  1499. F: package/erlang-p1-tls/
  1500. F: package/erlang-p1-utils/
  1501. F: package/erlang-p1-yconf/
  1502. F: package/erlang-p1-zlib/
  1503. F: package/erlang-stun/
  1504. F: package/erlang-xmpp/
  1505. F: package/forge/
  1506. F: package/nginx-dav-ext/
  1507. F: package/vis-network/
  1508. F: package/vuejs/
  1509. N: John Stile <johns@msli.com>
  1510. F: package/dhcpcd/
  1511. N: John Faith <jfaith@impinj.com>
  1512. F: package/python-inflection/
  1513. F: package/sdbusplus/
  1514. N: Jon Ringle <jringle@gridpoint.com>
  1515. F: package/mbpoll/
  1516. N: Jon Henrik Bjørnstad <jonhenrik@qbee.io>
  1517. F: package/qbee-agent/
  1518. N: Jonathan Ben Avraham <yba@tkos.co.il>
  1519. F: arch/Config.in.xtensa
  1520. F: package/autofs/
  1521. F: package/dawgdic/
  1522. F: package/libphidget/
  1523. F: package/phidgetwebservice/
  1524. F: package/rapidxml/
  1525. F: package/sphinxbase/
  1526. N: Joris Offouga <offougajoris@gmail.com>
  1527. F: package/python-colorlog/
  1528. F: package/python-simplelogging/
  1529. N: Joris Lijssens <joris.lijssens@gmail.com>
  1530. F: package/emlog/
  1531. F: package/libcoap/
  1532. F: package/libnet/
  1533. F: package/libuio/
  1534. F: package/netsniff-ng/
  1535. F: package/rabbitmq-c/
  1536. N: José Luis Salvador Rufo <salvador.joseluis@gmail.com>
  1537. F: package/zfs/
  1538. F: support/testing/tests/package/test_zfs.py
  1539. N: Joseph Kogut <joseph.kogut@gmail.com>
  1540. F: package/at-spi2-core/
  1541. F: package/earlyoom/
  1542. F: package/gconf/
  1543. F: package/libnss/
  1544. F: package/llvm-project/clang/
  1545. F: package/llvm-project/lld/
  1546. F: package/llvm-project/llvm/
  1547. F: package/python-cython/
  1548. F: package/python-pycups/
  1549. F: package/python-raven/
  1550. F: package/python-schedule/
  1551. F: package/python-sentry-sdk/
  1552. F: package/python-websockets/
  1553. F: package/python-xlib/
  1554. F: package/sentry-cli/
  1555. F: package/sentry-native/
  1556. F: package/unclutter-xfixes/
  1557. N: Joshua Henderson <joshua.henderson@microchip.com>
  1558. F: package/qt5/qt5wayland/
  1559. N: Juha Rantanen <juha@codercoded.com>
  1560. F: package/acsccid/
  1561. N: Julian Scheel <julian@jusst.de>
  1562. F: package/bitstream/
  1563. F: package/cbootimage/
  1564. F: package/cryptopp/
  1565. F: package/dvblast/
  1566. F: package/tegrarcm/
  1567. N: Julien Boibessot <julien.boibessot@armadeus.com>
  1568. F: board/armadeus/
  1569. F: configs/armadeus*
  1570. F: package/abootimg/
  1571. F: package/gpm/
  1572. F: package/lbreakout2/
  1573. F: package/libcddb/
  1574. F: package/libmodbus/
  1575. F: package/ltris/
  1576. F: package/opentyrian/
  1577. N: Julien Corjon <corjon.j@ecagroup.com>
  1578. F: package/qt5/
  1579. N: Julien Grossholtz <julien.grossholtz@openest.io>
  1580. F: board/raspberrypi/
  1581. F: board/technologic/ts7680/
  1582. F: configs/raspberrypizero2w_defconfig
  1583. F: configs/ts7680_defconfig
  1584. F: package/paho-mqtt-c
  1585. N: Julien Olivain <ju.o@free.fr>
  1586. F: board/qemu/riscv64-virt-efi/
  1587. F: board/spike/
  1588. F: board/technexion/imx8mmpico/
  1589. F: configs/imx8mmpico_defconfig
  1590. F: configs/qemu_riscv64_virt_efi_defconfig
  1591. F: configs/spike_riscv32_defconfig
  1592. F: configs/spike_riscv64_defconfig
  1593. F: package/fluid-soundfont/
  1594. F: package/fluidsynth/
  1595. F: package/glslsandbox-player/
  1596. F: package/gnupg2/
  1597. F: package/highway/
  1598. F: package/kexec/
  1599. F: package/libjxl/
  1600. F: package/libopenmpt/
  1601. F: package/mokutil/
  1602. F: package/oath-toolkit/
  1603. F: package/octave/
  1604. F: package/ola/
  1605. F: package/openblas/
  1606. F: package/opencsd/
  1607. F: package/openmpi/
  1608. F: package/perftest/
  1609. F: package/ptm2human/
  1610. F: package/python-distro/
  1611. F: package/python-gnupg/
  1612. F: package/python-hkdf/
  1613. F: package/python-hwdata/
  1614. F: package/python-magic-wormhole/
  1615. F: package/python-magic-wormhole-mailbox-server/
  1616. F: package/python-magic-wormhole-transit-relay/
  1617. F: package/python-midiutil/
  1618. F: package/python-ml-dtypes/
  1619. F: package/python-pyalsa/
  1620. F: package/python-spake2/
  1621. F: package/rdma-core/
  1622. F: package/riscv-isa-sim/
  1623. F: package/swipl/
  1624. F: package/tig/
  1625. F: package/tinycompress/
  1626. F: package/z3/
  1627. F: package/zynaddsubfx/
  1628. F: support/testing/tests/boot/test_optee_os.py
  1629. F: support/testing/tests/boot/test_optee_os/
  1630. F: support/testing/tests/fs/test_btrfs.py
  1631. F: support/testing/tests/fs/test_btrfs/
  1632. F: support/testing/tests/fs/test_erofs.py
  1633. F: support/testing/tests/fs/test_erofs/
  1634. F: support/testing/tests/package/sample_python_distro.py
  1635. F: support/testing/tests/package/sample_python_gnupg.py
  1636. F: support/testing/tests/package/sample_python_hwdata.py
  1637. F: support/testing/tests/package/sample_python_midiutil.py
  1638. F: support/testing/tests/package/sample_python_ml_dtypes.py
  1639. F: support/testing/tests/package/sample_python_mpmath.py
  1640. F: support/testing/tests/package/sample_python_pyalsa.py
  1641. F: support/testing/tests/package/sample_python_spake2.py
  1642. F: support/testing/tests/package/sample_python_sympy.py
  1643. F: support/testing/tests/package/test_4th.py
  1644. F: support/testing/tests/package/test_acl.py
  1645. F: support/testing/tests/package/test_acpica.py
  1646. F: support/testing/tests/package/test_acpica/
  1647. F: support/testing/tests/package/test_apache.py
  1648. F: support/testing/tests/package/test_attr.py
  1649. F: support/testing/tests/package/test_audio_codec_base.py
  1650. F: support/testing/tests/package/test_audit.py
  1651. F: support/testing/tests/package/test_bc.py
  1652. F: support/testing/tests/package/test_bcc.py
  1653. F: support/testing/tests/package/test_bcc/
  1654. F: support/testing/tests/package/test_bitcoin.py
  1655. F: support/testing/tests/package/test_brotli.py
  1656. F: support/testing/tests/package/test_btrfs_progs.py
  1657. F: support/testing/tests/package/test_btrfs_progs/
  1658. F: support/testing/tests/package/test_bzip2.py
  1659. F: support/testing/tests/package/test_compressor_base.py
  1660. F: support/testing/tests/package/test_coremark.py
  1661. F: support/testing/tests/package/test_cryptsetup.py
  1662. F: support/testing/tests/package/test_cryptsetup/
  1663. F: support/testing/tests/package/test_ddrescue.py
  1664. F: support/testing/tests/package/test_ddrescue/
  1665. F: support/testing/tests/package/test_dmidecode.py
  1666. F: support/testing/tests/package/test_dos2unix.py
  1667. F: support/testing/tests/package/test_dosfstools.py
  1668. F: support/testing/tests/package/test_dosfstools/
  1669. F: support/testing/tests/package/test_dpdk.py
  1670. F: support/testing/tests/package/test_ed.py
  1671. F: support/testing/tests/package/test_ethtool.py
  1672. F: support/testing/tests/package/test_ethtool/
  1673. F: support/testing/tests/package/test_exfatprogs.py
  1674. F: support/testing/tests/package/test_exfatprogs/
  1675. F: support/testing/tests/package/test_file.py
  1676. F: support/testing/tests/package/test_file/
  1677. F: support/testing/tests/package/test_fluidsynth.py
  1678. F: support/testing/tests/package/test_fluidsynth/
  1679. F: support/testing/tests/package/test_fping.py
  1680. F: support/testing/tests/package/test_fwts.py
  1681. F: support/testing/tests/package/test_gawk.py
  1682. F: support/testing/tests/package/test_ghostscript.py
  1683. F: support/testing/tests/package/test_ghostscript/
  1684. F: support/testing/tests/package/test_git.py
  1685. F: support/testing/tests/package/test_glslsandbox_player.py
  1686. F: support/testing/tests/package/test_glslsandbox_player/
  1687. F: support/testing/tests/package/test_gnupg2.py
  1688. F: support/testing/tests/package/test_gnuplot.py
  1689. F: support/testing/tests/package/test_gnuplot/
  1690. F: support/testing/tests/package/test_gnuradio.py
  1691. F: support/testing/tests/package/test_gnuradio/
  1692. F: support/testing/tests/package/test_gpsd.py
  1693. F: support/testing/tests/package/test_gpsd/
  1694. F: support/testing/tests/package/test_gstreamer1.py
  1695. F: support/testing/tests/package/test_gzip.py
  1696. F: support/testing/tests/package/test_highway.py
  1697. F: support/testing/tests/package/test_hwloc.py
  1698. F: support/testing/tests/package/test_hyperfine.py
  1699. F: support/testing/tests/package/test_iozone.py
  1700. F: support/testing/tests/package/test_iperf.py
  1701. F: support/testing/tests/package/test_iperf3.py
  1702. F: support/testing/tests/package/test_iproute2.py
  1703. F: support/testing/tests/package/test_iptables.py
  1704. F: support/testing/tests/package/test_iputils.py
  1705. F: support/testing/tests/package/test_jailhouse.py
  1706. F: support/testing/tests/package/test_jq.py
  1707. F: support/testing/tests/package/test_jq/
  1708. F: support/testing/tests/package/test_kexec.py
  1709. F: support/testing/tests/package/test_kexec/
  1710. F: support/testing/tests/package/test_kmod.py
  1711. F: support/testing/tests/package/test_kmod/
  1712. F: support/testing/tests/package/test_kmscube.py
  1713. F: support/testing/tests/package/test_kmscube/
  1714. F: support/testing/tests/package/test_lame.py
  1715. F: support/testing/tests/package/test_less.py
  1716. F: support/testing/tests/package/test_libcamera.py
  1717. F: support/testing/tests/package/test_libcamera/
  1718. F: support/testing/tests/package/test_libcurl.py
  1719. F: support/testing/tests/package/test_libgpgme.py
  1720. F: support/testing/tests/package/test_libjxl.py
  1721. F: support/testing/tests/package/test_lighttpd.py
  1722. F: support/testing/tests/package/test_links.py
  1723. F: support/testing/tests/package/test_links/
  1724. F: support/testing/tests/package/test_lrzip.py
  1725. F: support/testing/tests/package/test_lrzsz.py
  1726. F: support/testing/tests/package/test_ltp_testsuite.py
  1727. F: support/testing/tests/package/test_ltrace.py
  1728. F: support/testing/tests/package/test_lvm2.py
  1729. F: support/testing/tests/package/test_lzip.py
  1730. F: support/testing/tests/package/test_lsof.py
  1731. F: support/testing/tests/package/test_lz4.py
  1732. F: support/testing/tests/package/test_lzop.py
  1733. F: support/testing/tests/package/test_make.py
  1734. F: support/testing/tests/package/test_make/
  1735. F: support/testing/tests/package/test_mariadb.py
  1736. F: support/testing/tests/package/test_mawk.py
  1737. F: support/testing/tests/package/test_mdadm.py
  1738. F: support/testing/tests/package/test_mdadm/
  1739. F: support/testing/tests/package/test_micropython.py
  1740. F: support/testing/tests/package/test_micropython/
  1741. F: support/testing/tests/package/test_mosquitto.py
  1742. F: support/testing/tests/package/test_mtools.py
  1743. F: support/testing/tests/package/test_mtr.py
  1744. F: support/testing/tests/package/test_ncdu.py
  1745. F: support/testing/tests/package/test_netcat.py
  1746. F: support/testing/tests/package/test_netsnmp.py
  1747. F: support/testing/tests/package/test_netsnmp/
  1748. F: support/testing/tests/package/test_nftables.py
  1749. F: support/testing/tests/package/test_nftables/
  1750. F: support/testing/tests/package/test_ngrep.py
  1751. F: support/testing/tests/package/test_nmap.py
  1752. F: support/testing/tests/package/test_ntp.py
  1753. F: support/testing/tests/package/test_ntp/
  1754. F: support/testing/tests/package/test_numactl.py
  1755. F: support/testing/tests/package/test_numactl/
  1756. F: support/testing/tests/package/test_oath_toolkit.py
  1757. F: support/testing/tests/package/test_octave.py
  1758. F: support/testing/tests/package/test_ola.py
  1759. F: support/testing/tests/package/test_ola/
  1760. F: support/testing/tests/package/test_openblas.py
  1761. F: support/testing/tests/package/test_openocd.py
  1762. F: support/testing/tests/package/test_parted.py
  1763. F: support/testing/tests/package/test_patch.py
  1764. F: support/testing/tests/package/test_patch/
  1765. F: support/testing/tests/package/test_pciutils.py
  1766. F: support/testing/tests/package/test_perftest.py
  1767. F: support/testing/tests/package/test_pigz.py
  1768. F: support/testing/tests/package/test_postgresql.py
  1769. F: support/testing/tests/package/test_pppd.py
  1770. F: support/testing/tests/package/test_pppd/
  1771. F: support/testing/tests/package/test_proj.py
  1772. F: support/testing/tests/package/test_pv.py
  1773. F: support/testing/tests/package/test_python_distro.py
  1774. F: support/testing/tests/package/test_python_gnupg.py
  1775. F: support/testing/tests/package/test_python_hkdf.py
  1776. F: support/testing/tests/package/test_python_hwdata.py
  1777. F: support/testing/tests/package/test_python_magic_wormhole.py
  1778. F: support/testing/tests/package/test_python_midiutil.py
  1779. F: support/testing/tests/package/test_python_ml_dtypes.py
  1780. F: support/testing/tests/package/test_python_mpmath.py
  1781. F: support/testing/tests/package/test_python_pyalsa.py
  1782. F: support/testing/tests/package/test_python_pyqt5.py
  1783. F: support/testing/tests/package/test_python_pyqt5/
  1784. F: support/testing/tests/package/test_python_spake2.py
  1785. F: support/testing/tests/package/test_python_sympy.py
  1786. F: support/testing/tests/package/test_rdma_core.py
  1787. F: support/testing/tests/package/test_rdma_core/
  1788. F: support/testing/tests/package/test_rrdtool.py
  1789. F: support/testing/tests/package/test_rt_tests.py
  1790. F: support/testing/tests/package/test_screen.py
  1791. F: support/testing/tests/package/test_sed.py
  1792. F: support/testing/tests/package/test_socat.py
  1793. F: support/testing/tests/package/test_sox.py
  1794. F: support/testing/tests/package/test_sqlite.py
  1795. F: support/testing/tests/package/test_strace.py
  1796. F: support/testing/tests/package/test_stress_ng.py
  1797. F: support/testing/tests/package/test_swipl.py
  1798. F: support/testing/tests/package/test_swipl/
  1799. F: support/testing/tests/package/test_tcl.py
  1800. F: support/testing/tests/package/test_tcl/
  1801. F: support/testing/tests/package/test_tcpdump.py
  1802. F: support/testing/tests/package/test_tesseract_ocr.py
  1803. F: support/testing/tests/package/test_thttpd.py
  1804. F: support/testing/tests/package/test_trace_cmd.py
  1805. F: support/testing/tests/package/test_trace_cmd/
  1806. F: support/testing/tests/package/test_unbound.py
  1807. F: support/testing/tests/package/test_unbound/
  1808. F: support/testing/tests/package/test_usbip.py
  1809. F: support/testing/tests/package/test_usbip/
  1810. F: support/testing/tests/package/test_usbutils.py
  1811. F: support/testing/tests/package/test_usbutils/
  1812. F: support/testing/tests/package/test_vorbis_tools.py
  1813. F: support/testing/tests/package/test_weston.py
  1814. F: support/testing/tests/package/test_weston/
  1815. F: support/testing/tests/package/test_wget.py
  1816. F: support/testing/tests/package/test_which.py
  1817. F: support/testing/tests/package/test_wine.py
  1818. F: support/testing/tests/package/test_xfsprogs.py
  1819. F: support/testing/tests/package/test_xfsprogs/
  1820. F: support/testing/tests/package/test_xvisor.py
  1821. F: support/testing/tests/package/test_xxhash.py
  1822. F: support/testing/tests/package/test_xz.py
  1823. F: support/testing/tests/package/test_z3.py
  1824. F: support/testing/tests/package/test_z3/
  1825. F: support/testing/tests/package/test_zbar.py
  1826. F: support/testing/tests/package/test_zchunk.py
  1827. F: support/testing/tests/package/test_zstd.py
  1828. N: Julien Viard de Galbert <julien@vdg.name>
  1829. F: package/dieharder/
  1830. F: package/easy-rsa/
  1831. N: Justin Maggard <jmaggard@netgear.com>
  1832. F: package/dtach/
  1833. N: Kadambini Nema <kadambini.nema@gmail.com>
  1834. F: package/ustreamer/
  1835. N: Kamel Bouhara <kamel.bouhara@gmail.com>
  1836. F: package/libodb-boost/
  1837. F: package/libodb-mysql/
  1838. F: package/libqb/
  1839. F: package/usbguard/
  1840. N: Karoly Kasza <kaszak@gmail.com>
  1841. F: package/irqbalance/
  1842. F: package/openvmtools/
  1843. N: Kelvin Cheung <keguang.zhang@gmail.com>
  1844. F: package/cpuload/
  1845. F: package/bwm-ng/
  1846. N: Kieran Bingham <kieran.bingham@ideasonboard.com>
  1847. F: package/libcamera/
  1848. N: Kilian Zinnecker <kilian.zinnecker@mail.de>
  1849. F: board/avnet/rzboard_v2l/
  1850. F: board/radxa/rock5b/
  1851. F: configs/avnet_rzboard_v2l_defconfig
  1852. F: configs/rock5b_defconfig
  1853. F: package/rockchip-rkbin/
  1854. N: Klaus Heinrich Kiwi <klaus@linux.vnet.ibm.com>
  1855. F: package/wqy-zenhei/
  1856. N: Koen Martens <gmc@sonologic.nl>
  1857. F: package/capnproto/
  1858. F: package/linuxconsoletools/
  1859. N: Kory Maincent <kory.maincent@bootlin.com>
  1860. F: board/octavo/osd32mp1-brk/
  1861. F: board/octavo/osd32mp1-red/
  1862. F: configs/octavo_osd32mp1_brk_defconfig
  1863. F: configs/octavo_osd32mp1_red_defconfig
  1864. N: Kris Bahnsen <kris@embeddedTS.com>
  1865. F: package/wilc-firmware/
  1866. F: package/wilc-driver/
  1867. N: Kurt Van Dijck <dev.kurt@vandijck-laurijssen.be>
  1868. F: package/bcusdk/
  1869. F: package/libpthsem/
  1870. F: package/nilfs-utils/
  1871. N: Laurent Cans <laurent.cans@gmail.com>
  1872. F: package/aircrack-ng/
  1873. N: Laurent Charpentier <laurent_pubs@yahoo.com>
  1874. F: package/open-lldp/
  1875. N: Laurent Vivier <laurent@vivier.eu>
  1876. F: package/petitboot/
  1877. N: Lee Jones <lee.jones@linaro.org>
  1878. F: boot/afboot-stm32/
  1879. N: Leon Anavi <leon.anavi@konsulko.com>
  1880. F: board/olimex/a10_olinuxino
  1881. F: configs/olimex_a10_olinuxino_lime_defconfig
  1882. N: Leonid Yuriev <leo@yuriev.ru>
  1883. F: package/libmdbx/
  1884. N: Lionel Flandrin <lionel@svkt.org>
  1885. F: package/python-babel/
  1886. F: package/python-daemonize/
  1887. F: package/python-flask/
  1888. F: package/python-flask-babel/
  1889. F: package/python-gunicorn/
  1890. F: support/testing/tests/package/sample_python_flask.py
  1891. F: support/testing/tests/package/test_python_flask.py
  1892. N: Lionel Orry <lionel.orry@gmail.com>
  1893. F: package/mongrel2/
  1894. N: Lothar Felten <lothar.felten@gmail.com>
  1895. F: board/bananapi/bananapi-m2-ultra/
  1896. F: board/beagleboard/beaglebone/
  1897. F: configs/bananapi_m2_ultra_defconfig
  1898. F: configs/beaglebone_defconfig
  1899. F: configs/beaglebone_qt5_defconfig
  1900. F: package/ti-sgx-demos/
  1901. F: package/ti-sgx-km/
  1902. F: package/ti-sgx-um/
  1903. N: Louis Aussedat <aussedat.louis@gmail.com>
  1904. F: package/mfoc
  1905. F: package/libpam-nfc
  1906. F: package/python-dnspython/
  1907. F: package/python-future/
  1908. F: package/python-huepy/
  1909. F: package/python-tqdm/
  1910. F: package/rtl8189es/
  1911. N: Luca Ceresoli <luca.ceresoli@bootlin.com>
  1912. F: board/olimex/a20_olinuxino/
  1913. F: board/zynq/
  1914. F: board/zynqmp/
  1915. F: configs/olimex_a20_olinuxino_*
  1916. F: configs/zynq_microzed_defconfig
  1917. F: configs/zynq_zed_defconfig
  1918. F: configs/zynq_zc706_defconfig
  1919. F: configs/zynqmp_zcu106_defconfig
  1920. F: package/agentpp/
  1921. F: package/exim/
  1922. F: package/libpjsip/
  1923. F: package/linux-tools/linux-tool-usbtools.mk.in
  1924. F: package/qpid-proton/
  1925. F: package/rtl8188eu/
  1926. F: package/snmppp/
  1927. F: package/stm32flash/
  1928. F: package/unzip/
  1929. F: support/legal-info/
  1930. N: Lucas De Marchi <lucas.de.marchi@gmail.com>
  1931. F: package/fswebcam/
  1932. N: Lubomir Rintel <lkundrak@v3.sk>
  1933. F: board/olpc/
  1934. F: configs/olpc_xo1_defconfig
  1935. F: configs/olpc_xo175_defconfig
  1936. N: Ludovic Desroches <ludovic.desroches@microchip.com>
  1937. F: board/atmel/
  1938. F: board/microchip/
  1939. F: configs/at91*
  1940. F: configs/atmel_*
  1941. F: configs/microchip_*
  1942. F: package/fb-test-app/
  1943. F: package/python-json-schema-validator/
  1944. F: package/python-keyring/
  1945. F: package/python-simplejson/
  1946. F: package/python-versiontools/
  1947. F: package/wilc-firmware/
  1948. N: Ludwig Kormann <ludwig.kormann@ict42.de>
  1949. F: board/in-circuit/
  1950. F: configs/icnova*
  1951. N: Mahyar Koshkouei <mahyar.koshkouei@gmail.com>
  1952. F: package/ffmpeg/
  1953. F: package/mpv/
  1954. F: package/rpi-firmware/
  1955. F: package/rpi-userland/
  1956. N: Marcin Bis <marcin@bis.org.pl>
  1957. F: package/bluez5_utils/
  1958. F: package/cc-tool/
  1959. F: package/ecryptfs-utils/
  1960. N: Marcin Niestroj <m.niestroj@grinn-global.com>
  1961. F: board/grinn/
  1962. F: board/orangepi/orangepi-zero-plus/
  1963. F: board/orangepi/orangepi-zero3/
  1964. F: configs/grinn_*
  1965. F: configs/orangepi_zero_plus_defconfig
  1966. F: configs/orangepi_zero3_defconfig
  1967. F: package/argparse/
  1968. F: package/dt-utils/
  1969. F: package/easydbus/
  1970. F: package/gitlab-runner/
  1971. F: package/lua-flu/
  1972. F: package/lua-stdlib/
  1973. F: package/luaossl/
  1974. F: package/murata-cyw-fw/
  1975. F: package/netdata/
  1976. F: package/python-ansicolors/
  1977. F: package/python-bleak/
  1978. F: package/python-dbus-fast/
  1979. F: package/python-dbus-next/
  1980. F: package/python-iniconfig/
  1981. F: package/python-intelhex/
  1982. F: package/python-packaging/
  1983. F: package/python-pluggy/
  1984. F: package/python-pytest/
  1985. F: package/python-pytest-asyncio/
  1986. F: package/python-typing-extensions/
  1987. F: package/python-xmodem/
  1988. F: package/rs485conf/
  1989. F: package/turbolua/
  1990. F: support/testing/tests/package/sample_python_dbus_fast.py
  1991. F: support/testing/tests/package/sample_python_dbus_next.py
  1992. F: support/testing/tests/package/sample_python_pytest.py
  1993. F: support/testing/tests/package/sample_python_pytest_asyncio.py
  1994. F: support/testing/tests/package/test_netdata.py
  1995. F: support/testing/tests/package/test_python_dbus_next.py
  1996. F: support/testing/tests/package/test_python_pytest.py
  1997. F: support/testing/tests/package/test_python_pytest_asyncio.py
  1998. N: Marcus Folkesson <marcus.folkesson@gmail.com>
  1999. F: package/criu/
  2000. F: package/libcamera/
  2001. F: package/libcamera-apps/
  2002. F: package/libostree/
  2003. F: package/libselinux/
  2004. F: package/libsemanage/
  2005. F: package/libsepol/
  2006. F: package/selinux-python/
  2007. F: support/testing/tests/package/sample_python_asn1crypto.py
  2008. F: support/testing/tests/package/test_python_asn1crypto.py
  2009. F: utils/config
  2010. F: utils/diffconfig
  2011. N: Marcus Hoffmann <bubu@bubu1.eu>
  2012. F: package/nethogs/
  2013. F: package/pico-sdk/
  2014. F: package/picotool/
  2015. F: package/python-immutabledict/
  2016. F: package/python-jc/
  2017. F: package/python-ruamel-yaml-clib/
  2018. F: package/python-waitress/
  2019. F: support/testing/tests/package/test_python_fastapi.py
  2020. F: support/testing/tests/package/test_python_ruamel_yaml.py
  2021. F: support/testing/tests/package/test_python_waitress.py
  2022. F: support/testing/tests/package/sample_python_fastapi.py
  2023. F: support/testing/tests/package/sample_python_ruamel_yaml.py
  2024. N: Marek Belisko <marek.belisko@open-nandra.com>
  2025. F: package/libatasmart/
  2026. F: package/polkit/
  2027. F: package/sg3_utils/
  2028. F: package/udisks/
  2029. N: Mario Lang <mlang@blind.guru>
  2030. F: package/brltty/
  2031. F: package/lynx/
  2032. N: Mario Rugiero <mrugiero@gmail.com>
  2033. F: package/ratpoison/
  2034. N: Mark Corbin <mark@dibsco.co.uk>
  2035. F: arch/arch.mk.riscv
  2036. F: arch/Config.in.riscv
  2037. F: board/qemu/riscv32-virt/
  2038. F: board/qemu/riscv64-virt/
  2039. F: configs/qemu_riscv32_virt_defconfig
  2040. F: configs/qemu_riscv64_virt_defconfig
  2041. N: Marleen Vos <marleen.vos@mind.be>
  2042. F: board/stmicroelectronics/common/stm32mp1xx/
  2043. F: configs/avenger96_defconfig
  2044. F: configs/stm32mp157a_dk1_defconfig
  2045. F: configs/stm32mp157c_dk2_defconfig
  2046. N: Martin Bark <martin@barkynet.com>
  2047. F: board/raspberrypi/
  2048. F: configs/raspberrypi3_defconfig
  2049. F: package/brcmfmac_sdio-firmware-rpi/
  2050. F: package/ca-certificates/
  2051. F: package/connman/
  2052. F: package/nodejs/
  2053. F: package/rpi-firmware/
  2054. F: package/tzdata/
  2055. F: package/zic/
  2056. N: Martin Hundebøll <martin@geanix.com>
  2057. F: package/python-apispec/
  2058. F: package/python-flask-smorest/
  2059. F: package/python-marshmallow/
  2060. F: package/python-marshmallow-sqlalchemy/
  2061. F: package/python-webargs/
  2062. N: Martin Kepplinger <martink@posteo.de>
  2063. F: package/tslib/
  2064. F: package/x11r7/xdriver_xf86-input-tslib/
  2065. F: package/x11vnc/
  2066. N: Martin Povišer <povik+lin@cutebit.org>
  2067. F: package/python-construct/
  2068. F: support/testing/tests/package/sample_python_construct.py
  2069. F: support/testing/tests/package/test_python_construct.py
  2070. N: Masahiro Yamada <yamada.masahiro@socionext.com>
  2071. F: board/arm/foundation-v8/
  2072. F: configs/arm_foundationv8_defconfig
  2073. N: Matt Flax <flatmax@flatmax.org>
  2074. F: package/gtkiostream/
  2075. N: Matt Silva <dev@matt-silva.com>
  2076. F: package/rlwrap/
  2077. N: Mauro Condarelli <mc5686@mclink.it>
  2078. F: package/mc/
  2079. F: package/python-autobahn/
  2080. F: package/python-cbor/
  2081. F: package/python-characteristic/
  2082. F: package/python-click/
  2083. F: package/python-lmdb/
  2084. F: package/python-mistune/
  2085. F: package/python-netaddr/
  2086. F: package/python-pygments/
  2087. F: package/python-pynacl/
  2088. F: package/python-pytrie/
  2089. F: package/python-service-identity/
  2090. F: package/python-setproctitle/
  2091. F: package/python-shutilwhich/
  2092. F: package/python-treq/
  2093. F: package/python-txaio/
  2094. F: package/python-ujson/
  2095. F: package/python-wsaccel/
  2096. N: Maksim Kiselev <bigunclemax@gmail.com>
  2097. F: package/ledmon/
  2098. N: Max Filippov <jcmvbkbc@gmail.com>
  2099. F: arch/Config.in.xtensa
  2100. N: Maxim Kochetkov <fido_max@inbox.ru>
  2101. F: package/libgeos/
  2102. F: package/libosmium/
  2103. F: package/osm2pgsql/
  2104. F: package/postgis/
  2105. F: package/postgresql/
  2106. F: package/protozero/
  2107. F: package/timescaledb/
  2108. N: Maxime Chevallier <maxime.chevallier@bootlin.com>
  2109. F: package/libtraceevent/
  2110. F: package/libtracefs
  2111. F: package/linux-tools/linux-tool-rtla.mk.in
  2112. N: Michael Durrant <mdurrant@arcturusnetworks.com>
  2113. F: board/arcturus/
  2114. F: configs/arcturus_ucp1020_defconfig
  2115. F: configs/arcturus_ucls1012a_defconfig
  2116. N: Michael Fischer <mf@go-sys.de>
  2117. F: package/gnuplot/
  2118. F: package/sdl2/
  2119. N: Michael Nosthoff <buildroot@heine.tech>
  2120. F: package/boost/
  2121. F: package/catch2/
  2122. F: package/fmt/
  2123. F: package/grpc/
  2124. F: package/gtest/
  2125. F: package/json-for-modern-cpp/
  2126. F: package/libabseil-cpp/
  2127. F: package/networkd-dispatcher/
  2128. F: package/protobuf/
  2129. F: package/re2/
  2130. F: package/spdlog/
  2131. F: package/sqlitecpp/
  2132. N: Michael Trimarchi <michael@amarulasolutions.com>
  2133. F: board/bsh/
  2134. F: configs/imx6ulz_bsh_smm_m2_defconfig
  2135. F: configs/imx8mn_bsh_smm_s2_defconfig
  2136. F: configs/imx8mn_bsh_smm_s2_pro_defconfig
  2137. F: package/python-spidev/
  2138. N: Michael Vetter <jubalh@iodoru.org>
  2139. F: package/jasper/
  2140. F: package/libstrophe/
  2141. N: Michael Walle <michael@walle.cc>
  2142. F: board/kontron/smarc-sal28/
  2143. F: configs/kontron_smarc_sal28_defconfig
  2144. F: package/libavl/
  2145. F: package/rcw-smarc-sal28/
  2146. N: Michał Łyszczek <michal.lyszczek@bofc.pl>
  2147. F: board/altera/socrates_cyclone5/
  2148. F: board/pine64/rock64
  2149. F: configs/rock64_defconfig
  2150. F: configs/socrates_cyclone5_defconfig
  2151. F: package/netifrc/
  2152. F: package/openrc/
  2153. F: package/skeleton-init-openrc/
  2154. N: Michel Stempin <michel.stempin@wanadoo.fr>
  2155. F: board/sipeed/licheepi_zero/
  2156. F: configs/sipeed_licheepi_zero_defconfig
  2157. N: Mika Westerberg <mika.westerberg@linux.intel.com>
  2158. F: package/tbtools/
  2159. N: Mike Frampton <mikeframpo@gmail.com>
  2160. F: package/qcom-db410c-firmware/
  2161. N: Mikhail Boiko <mikhailboiko85@gmail.com>
  2162. F: package/libfribidi/
  2163. N: Mircea Gliga <gliga.mircea@gmail.com>
  2164. F: package/mbuffer/
  2165. N: Murat Demirten <mdemirten@yh.com.tr>
  2166. F: package/jpeg-turbo/
  2167. F: package/libgeotiff/
  2168. N: Nasser Afshin <afshin.nasser@gmail.com>
  2169. F: package/python-pycrate/
  2170. N: Nathaniel Roach <nroach44@gmail.com>
  2171. F: package/bandwidthd/
  2172. F: package/libgudev/
  2173. N: Neal Frager <neal.frager@amd.com>
  2174. F: board/versal/
  2175. F: board/xilinx/
  2176. F: board/zynq/
  2177. F: board/zynqmp/
  2178. F: boot/xilinx-embeddedsw/
  2179. F: boot/xilinx-prebuilt/
  2180. F: configs/versal_vck190_defconfig
  2181. F: configs/versal_vek280_defconfig
  2182. F: configs/versal_vpk180_defconfig
  2183. F: configs/zynq_zc702_defconfig
  2184. F: configs/zynq_zc706_defconfig
  2185. F: configs/zynqmp_kria_kd240_defconfig
  2186. F: configs/zynqmp_kria_kr260_defconfig
  2187. F: configs/zynqmp_kria_kv260_defconfig
  2188. F: configs/zynqmp_zcu102_defconfig
  2189. F: configs/zynqmp_zcu104_defconfig
  2190. F: configs/zynqmp_zcu106_defconfig
  2191. F: package/binutils-bare-metal/
  2192. F: package/bootgen/
  2193. F: package/gcc-bare-metal/
  2194. F: package/newlib-bare-metal/
  2195. F: toolchain/toolchain-bare-metal-buildroot/
  2196. N: Nicola Di Lieto <nicola.dilieto@gmail.com>
  2197. F: package/uacme/
  2198. N: Nicholas Sielicki <sielicki@yandex.com>
  2199. F: board/intel/galileo/
  2200. F: configs/galileo_defconfig
  2201. N: Nicolas Carrier <nicolas.carrier@orolia.com>
  2202. F: package/bmap-tools/
  2203. F: package/composer/
  2204. F: package/libdbi/
  2205. F: package/libdbi-drivers/
  2206. F: package/lua-augeas/
  2207. F: package/modsecurity2/
  2208. F: package/php-apcu/
  2209. F: package/php-lua/
  2210. F: package/php-pam/
  2211. F: package/php-pecl-dbus/
  2212. F: package/php-xdebug/
  2213. F: package/python-augeas/
  2214. F: package/python-flask-expects-json/
  2215. F: package/python-git/
  2216. F: package/python-unittest-xml-reporting/
  2217. F: support/testing/tests/package/sample_bmap_tools.sh
  2218. F: support/testing/tests/package/sample_python_augeas.py
  2219. F: support/testing/tests/package/sample_python_flask_expects_json.py
  2220. F: support/testing/tests/package/sample_python_git.py
  2221. F: support/testing/tests/package/sample_python_unittest_xml_reporting.py
  2222. F: support/testing/tests/package/test_bmap_tools.py
  2223. F: support/testing/tests/package/test_lua_augeas.py
  2224. F: support/testing/tests/package/test_php_apcu.py
  2225. F: support/testing/tests/package/test_php_pecl_dbus.py
  2226. F: support/testing/tests/package/test_php_lua.py
  2227. F: support/testing/tests/package/test_php_pam.py
  2228. F: support/testing/tests/package/test_python_augeas.py
  2229. F: support/testing/tests/package/test_python_flask_expects_json.py
  2230. F: support/testing/tests/package/test_python_git.py
  2231. F: support/testing/tests/package/test_python_unittest_xml_reporting.py
  2232. N: Nicolas Cavallari <nicolas.cavallari@green-communications.fr>
  2233. F: package/bluez-alsa/
  2234. F: package/libgit2/
  2235. N: Nicolas Serafini <nicolas.serafini@ik.me>
  2236. F: package/exiv2/
  2237. F: package/ofono/
  2238. N: Niklas Cassel <niklas.cassel@wdc.com>
  2239. F: configs/qemu_riscv64_nommu_virt_defconfig
  2240. N: Nikolay Dimitrov <nikolay.dimitrov@retrohub.org>
  2241. F: board/embest/riotboard/
  2242. F: configs/riotboard_defconfig
  2243. N: Nimai Mahajan <nimaim@gmail.com>
  2244. F: package/libucl/
  2245. N: Noé Rubinstein <noe.rubinstein@gmail.com>
  2246. F: package/tpm-tools/
  2247. F: package/trousers/
  2248. N: Norbert Lange <nolange79@gmail.com>
  2249. F: package/dbus-broker/
  2250. F: package/systemd/
  2251. F: package/tcf-agent/
  2252. N: Leo Yu-Chi Liang <ycliang@andestech.com>
  2253. F: board/andes
  2254. F: configs/andes_ae350_45_defconfig
  2255. F: package/andes-spi-burn/
  2256. F: package/kmon/
  2257. N: Olaf Rempel <razzor@kopf-tisch.de>
  2258. F: package/ctorrent/
  2259. N: Oleksandr Zhadan <oleks@arcturusnetworks.com>
  2260. F: board/arcturus/
  2261. F: configs/arcturus_ucp1020_defconfig
  2262. F: configs/arcturus_ucls1012a_defconfig
  2263. N: Oli Vogt <oli.vogt.pub01@gmail.com>
  2264. F: package/python-django/
  2265. F: package/python-flup/
  2266. N: Olivier Matz <olivier.matz@6wind.com>
  2267. F: package/python-pyelftools/
  2268. N: Olivier Schonken <olivier.schonken@gmail.com>
  2269. F: package/cups/
  2270. F: package/cups-filters/
  2271. F: package/ijs/
  2272. F: package/poppler/
  2273. F: package/qpdf/
  2274. F: package/openjpeg/
  2275. N: Olivier Singla <olivier.singla@gmail.com>
  2276. F: package/shellinabox/
  2277. N: Parnell Springmeyer <parnell@digitalmentat.com>
  2278. F: package/scrypt/
  2279. N: Pascal de Bruijn <p.debruijn@unilogic.nl>
  2280. F: package/libargon2/
  2281. F: package/linux-tools/S10hyperv
  2282. F: package/linux-tools/hyperv*.service
  2283. F: package/linux-tools/linux-tool-hv.mk.in
  2284. N: Pascal Huerst <pascal.huerst@gmail.com>
  2285. F: package/google-breakpad/
  2286. N: Patrick Gerber <kpa_info@yahoo.fr>
  2287. F: package/yavta/
  2288. N: Patrick Havelange <patrick.havelange@essensium.com>
  2289. F: support/testing/tests/package/test_lxc.py
  2290. F: support/testing/tests/package/test_lxc/
  2291. N: Patrick Oppenlander <patrick.oppenlander@gmail.com>
  2292. F: package/minisign/
  2293. N: Patrik Olsson <johan.patrik.olsson@gmail.com>
  2294. F: board/radxa/rock4se
  2295. F: configs/rock4se_defconfig
  2296. N: Paul Cercueil <paul@crapouillou.net>
  2297. F: package/libiio/
  2298. F: package/lightning/
  2299. F: package/umtprd/
  2300. N: Pedro Aguilar <paguilar@paguilar.org>
  2301. F: package/bdwgc/
  2302. F: package/guile/
  2303. F: package/libunistring/
  2304. N: Peter Korsgaard <peter@korsgaard.com>
  2305. F: board/arrow/avenger96/
  2306. F: board/beagleboard/beagleboneai/
  2307. F: board/minnowboard/
  2308. F: board/nezha/
  2309. F: board/librecomputer/lafrite/
  2310. F: board/nexbox/a95x/
  2311. F: board/openblocks/a6/
  2312. F: board/orangepi/
  2313. F: board/roseapplepi/
  2314. F: board/visionfive/
  2315. F: boot/shim/
  2316. F: configs/avenger96_defconfig
  2317. F: configs/beagleboneai_defconfig
  2318. F: configs/lafrite_defconfig
  2319. F: configs/minnowboard_max_defconfig
  2320. F: configs/nexbox_a95x_defconfig
  2321. F: configs/nezha_defconfig
  2322. F: configs/openblocks_a6_defconfig
  2323. F: configs/orangepi_pc_defconfig
  2324. F: configs/orangepi_r1_defconfig
  2325. F: configs/roseapplepi_defconfig
  2326. F: configs/sheevaplug_defconfig
  2327. F: configs/visionfive_defconfig
  2328. F: package/bats-core/
  2329. F: package/dfu-programmer/
  2330. F: package/docker-compose/
  2331. F: package/dump1090/
  2332. F: package/fatcat/
  2333. F: package/fscryptctl/
  2334. F: package/ifmetric/
  2335. F: package/jo/
  2336. F: package/jose/
  2337. F: package/libfastjson/
  2338. F: package/luksmeta/
  2339. F: package/lzop/
  2340. F: package/memtool/
  2341. F: package/mosquitto/
  2342. F: package/python-alsaaudio/
  2343. F: package/python-cached-property/
  2344. F: package/python-docker/
  2345. F: package/python-dockerpty/
  2346. F: package/python-docker-pycreds/
  2347. F: package/python-hid/
  2348. F: package/python-psutil/
  2349. F: package/python-request-id/
  2350. F: package/python-semver/
  2351. F: package/python-texttable/
  2352. F: package/python-validators/
  2353. F: package/python-webob/
  2354. F: package/python-websocket-client/
  2355. F: package/rnnoise/
  2356. F: package/sedutil/
  2357. F: package/tpm2-totp/
  2358. F: package/triggerhappy/
  2359. F: package/wireguard-linux-compat/
  2360. F: package/wireguard-tools/
  2361. F: support/testing/tests/package/test_docker_compose.py
  2362. F: support/testing/tests/package/test_python_hid.py
  2363. N: Peter Seiderer <ps.report@gmx.net>
  2364. F: package/dotconf/
  2365. F: package/fft-eval/
  2366. F: package/python-blinker/
  2367. F: package/qt5/qt5speech/
  2368. F: package/speechd/
  2369. N: Peter Thompson <peter.macleod.thompson@gmail.com>
  2370. F: package/sdl2_gfx/
  2371. F: package/sdl2_image/
  2372. F: package/sdl2_ttf/
  2373. N: Petr Kulhavy <brain@jikos.cz>
  2374. F: package/linuxptp/
  2375. N: Petr Vorel <petr.vorel@gmail.com>
  2376. F: package/ima-evm-utils/
  2377. F: package/iproute2/
  2378. F: package/iputils/
  2379. F: package/libqrtr-glib/
  2380. F: package/libtirpc/
  2381. F: package/linux-backports/
  2382. F: package/ltp-testsuite/
  2383. F: package/nfs-utils/
  2384. F: package/rpcbind/
  2385. F: support/kconfig/
  2386. N: Phil Eichinger <phil.eichinger@gmail.com>
  2387. F: package/libqrencode/
  2388. F: package/psplash/
  2389. F: package/sispmctl/
  2390. F: package/zsh/
  2391. N: Philipp Richter <richterphilipp.pops@gmail.com>
  2392. F: package/libtorrent-rasterbar/
  2393. N: Philippe Proulx <eeppeliteloop@gmail.com>
  2394. F: package/babeltrace2/
  2395. F: package/lttng-babeltrace/
  2396. F: package/lttng-libust/
  2397. F: package/lttng-modules/
  2398. F: package/lttng-tools/
  2399. F: package/python-ipython/
  2400. F: package/liburcu/
  2401. N: Philippe Reynes <philippe.reynes@softathome.com>
  2402. F: package/ibm-sw-tpm2/
  2403. N: Pierre Crokaert <pct@crookies.net>
  2404. F: board/hardkernel/odroidxu4/
  2405. F: configs/odroidxu4_defconfig
  2406. N: Pierre Ducroquet <pinaraf@pinaraf.info>
  2407. F: package/kf5/
  2408. N: Pierre Floury <pierre.floury@gmail.com>
  2409. F: package/trace-cmd/
  2410. N: Pierre-Jean Texier <texier.pj2@gmail.com>
  2411. F: package/fping/
  2412. F: package/genimage/
  2413. F: package/haveged/
  2414. F: package/ipset/
  2415. F: package/libarchive/
  2416. F: package/libevent/
  2417. F: package/libubootenv/
  2418. F: package/libxml2/
  2419. F: package/mongoose/
  2420. F: package/mxml/
  2421. F: package/numactl/
  2422. F: package/python-modbus-tk/
  2423. F: package/python-periphery/
  2424. F: package/raspi-gpio/
  2425. F: package/sbc/
  2426. F: package/stunnel/
  2427. F: package/tree/
  2428. N: Pieter De Gendt <pieter.degendt@gmail.com>
  2429. F: package/libvips/
  2430. N: Pieterjan Camerlynck <pieterjanca@gmail.com>
  2431. F: package/libdvbpsi/
  2432. F: package/mraa/
  2433. F: package/synergy/
  2434. N: Prabhu Sannachi <prabhu.sannachi@collins.com>
  2435. F: package/redis-plus-plus/
  2436. N: Qais Yousef <qais.yousef@arm.com>
  2437. F: package/bpftrace/
  2438. N: Rafal Susz <rafal.susz@gmail.com>
  2439. F: board/avnet/s6lx9_microboard/
  2440. F: configs/s6lx9_microboard_defconfig
  2441. N: Rafał Miłecki <rafal@milecki.pl>
  2442. F: board/broadcom/northstar/
  2443. F: configs/broadcom_northstar_defconfig
  2444. F: package/firmware-utils/
  2445. N: Rahul Bedarkar <rahulbedarkar89@gmail.com>
  2446. F: package/cxxtest/
  2447. F: package/gflags/
  2448. F: package/glog/
  2449. F: package/gssdp/
  2450. F: package/gupnp/
  2451. F: package/gupnp-av/
  2452. F: package/let-me-create/
  2453. F: package/nanomsg/
  2454. N: Ralf Dragon <hypnotoad@lindra.de>
  2455. F: package/python-pyqt5-sip/
  2456. N: Ramon Fried <rfried.dev@gmail.com>
  2457. F: package/bitwise/
  2458. N: Raphaël Mélotte <raphael.melotte@mind.be>
  2459. F: package/gumbo-parser/
  2460. F: package/jbig2dec/
  2461. F: package/mupdf/
  2462. F: package/python-boto3/
  2463. F: package/python-botocore/
  2464. F: package/python-jmespath/
  2465. F: package/python-pymupdf/
  2466. F: package/python-rsa/
  2467. F: package/python-s3transfer/
  2468. F: package/python-sdbus/
  2469. F: package/python-sdbus-networkmanager/
  2470. F: support/testing/tests/package/sample_python_jmespath.py
  2471. F: support/testing/tests/package/sample_python_pymupdf.py
  2472. F: support/testing/tests/package/sample_python_rsa.py
  2473. F: support/testing/tests/package/sample_python_s3transfer.py
  2474. F: support/testing/tests/package/sample_python_sdbus.py
  2475. F: support/testing/tests/package/sample_python_sdbus_networkmanager.py
  2476. F: support/testing/tests/package/sample_python_urllib3.py
  2477. F: support/testing/tests/package/test_python_jmespath.py
  2478. F: support/testing/tests/package/test_python_pymupdf.py
  2479. F: support/testing/tests/package/test_python_rsa.py
  2480. F: support/testing/tests/package/test_python_s3transfer.py
  2481. F: support/testing/tests/package/test_python_sdbus.py
  2482. F: support/testing/tests/package/test_python_sdbus_networkmanager.py
  2483. F: support/testing/tests/package/test_python_urllib3.py
  2484. N: Raphael Pavlidis <raphael.pavlidis@gmail.com>
  2485. F: package/nvidia-persistenced/
  2486. F: package/shadow/
  2487. F: package/slirp4netns/
  2488. F: package/sway/
  2489. F: package/x11r7/xwayland/
  2490. N: Refik Tuzakli <tuzakli.refik@gmail.com>
  2491. F: package/freescale-imx/
  2492. F: package/paho-mqtt-cpp/
  2493. N: Rémi Rérolle <remi.rerolle@gmail.com>
  2494. F: package/libfreeimage/
  2495. N: Renaud Aubin <root@renaud.io>
  2496. F: package/libhttpparser/
  2497. N: Ricardo Martincoski <ricardo.martincoski@datacom.com.br>
  2498. F: .flake8
  2499. F: .shellcheckrc
  2500. F: package/atop/
  2501. F: package/thermald/
  2502. F: support/testing/infra/
  2503. F: support/testing/run-tests
  2504. F: support/testing/tests/package/test_atop.py
  2505. F: support/testing/tests/utils/test_check_package.py
  2506. F: utils/check-package
  2507. F: utils/check-symbols
  2508. F: utils/checkpackagelib/
  2509. F: utils/checksymbolslib/
  2510. F: utils/docker-run
  2511. N: Richard Braun <rbraun@sceen.net>
  2512. F: package/curlftpfs/
  2513. F: package/tzdata/
  2514. N: RJ Ascani <rj.ascani@gmail.com>
  2515. F: package/azmq/
  2516. N: Robert Marko <robimarko@gmail.com>
  2517. F: package/mdio-tools/
  2518. F: package/mhz/
  2519. N: Robert Rose <robertroyrose@gmail.com>
  2520. F: package/grpc/
  2521. N: Roberto Medina <robertoxmed@gmail.com>
  2522. F: board/firefly/roc-rk3399-pc/
  2523. F: configs/roc_pc_rk3399_defconfig
  2524. N: Rodrigo Rebello <rprebello@gmail.com>
  2525. F: package/chocolate-doom/
  2526. F: package/irssi/
  2527. F: package/vnstat/
  2528. N: Romain Naour <romain.naour@gmail.com>
  2529. F: board/beagleboard/beagleboneai64/
  2530. F: board/qemu/
  2531. F: board/ti/am574x-idk/
  2532. F: configs/qemu_*
  2533. F: configs/am574x_idk_defconfig
  2534. F: configs/beagleboneai64_defconfig
  2535. F: package/alure/
  2536. F: package/aubio/
  2537. F: package/bcc/
  2538. F: package/binutils/
  2539. F: package/bpftrace/
  2540. F: package/bullet/
  2541. F: package/clinfo/
  2542. F: package/efl/
  2543. F: package/enet/
  2544. F: package/enlightenment/
  2545. F: package/flare-engine/
  2546. F: package/flare-game/
  2547. F: package/gcc/
  2548. F: package/gitlab-runner/
  2549. F: package/glibc/
  2550. F: package/irrlicht/
  2551. F: package/liblinear/
  2552. F: package/lensfun/
  2553. F: package/libbpf/
  2554. F: package/libgta/
  2555. F: package/libiec61850/
  2556. F: package/libspatialindex/
  2557. F: package/linux-syscall-support/
  2558. F: package/llvm-project/clang/
  2559. F: package/llvm-project/libclc/
  2560. F: package/llvm-project/llvm/
  2561. F: package/lugaru/
  2562. F: package/mcelog/
  2563. F: package/mesa3d/
  2564. F: package/minetest/
  2565. F: package/minetest-game/
  2566. F: package/ogre/
  2567. F: package/openpowerlink/
  2568. F: package/physfs/
  2569. F: package/piglit/
  2570. F: package/python-libevdev/
  2571. F: package/python-pkgconfig/
  2572. F: package/python-tpm2-pytss/
  2573. F: package/qemu/
  2574. F: package/solarus/
  2575. F: package/stress-ng/
  2576. F: package/supertux/
  2577. F: package/supertuxkart/
  2578. F: package/terminology/
  2579. F: package/tk/
  2580. F: package/tpm2-openssl/
  2581. F: package/upower/
  2582. F: package/waffle/
  2583. F: package/xenomai/
  2584. F: package/zziplib/
  2585. F: support/testing/tests/package/sample_python_mako.py
  2586. F: support/testing/tests/package/sample_python_mako_ext.py
  2587. F: support/testing/tests/package/test_glxinfo.py
  2588. F: support/testing/tests/package/test_openssh.py
  2589. F: support/testing/tests/package/test_python_mako.py
  2590. F: toolchain/
  2591. N: Roy Kollen Svendsen <roykollensvendsen@gmail.com>
  2592. F: package/dlib/
  2593. F: package/qt6/
  2594. N: Rufus Segar <rhs@riseup.net>
  2595. F: package/agent-proxy/
  2596. N: Ryan Wilkins <ryan@deadfrog.net>
  2597. F: package/biosdevname/
  2598. N: Saeed Kazemi <kazemi.ms@gmail.com>
  2599. F: package/eza/
  2600. F: package/fd/
  2601. F: package/parsec/
  2602. F: package/parsec-tool/
  2603. F: package/procs/
  2604. F: package/mxt-app/
  2605. F: package/zoxide/
  2606. N: Sam Lancia <sam@gpsm.co.uk>
  2607. F: package/lrzip/
  2608. N: Sam Voss <sam.voss@gmail.com>
  2609. F: package/ripgrep/
  2610. N: Sébastien Szymanski <sebastien.szymanski@armadeus.com>
  2611. F: board/armadeus/
  2612. F: configs/armadeus*
  2613. F: package/nxp-bt-wifi-firmware/
  2614. F: package/nxp-mwifiex/
  2615. F: package/mmc-utils/
  2616. F: package/python-flask-jsonrpc/
  2617. F: package/python-flask-login/
  2618. F: package/qt5/qt5charts/
  2619. F: package/wlr-randr/
  2620. N: Semyon Kolganov <semenak94@mail.ru>
  2621. F: package/fmt/
  2622. F: package/libbson/
  2623. F: package/lua-resty-http/
  2624. F: package/mpir/
  2625. N: Sen Hastings <sen@hastings.org>
  2626. F: package/systemd
  2627. F: support/scripts/pkg-stats
  2628. N: Sergey Bobrenok <bobrofon@gmail.com>
  2629. F: package/basu/
  2630. F: package/sdbus-cpp/
  2631. N: Sergey Matyukevich <geomatsi@gmail.com>
  2632. F: boot/arm-trusted-firmware/
  2633. F: board/linksprite/pcduino
  2634. F: board/orangepi/orangepi-5-plus
  2635. F: board/orangepi/orangepi-zero
  2636. F: board/orangepi/orangepi-one
  2637. F: board/orangepi/orangepi-pc-plus/
  2638. F: board/orangepi/orangepi-zero-plus2/
  2639. F: board/orangepi/orangepi-zero2w/
  2640. F: configs/linksprite_pcduino_defconfig
  2641. F: configs/orangepi_5_plus_defconfig
  2642. F: configs/orangepi_one_defconfig
  2643. F: configs/orangepi_pc_plus_defconfig
  2644. F: configs/orangepi_zero_defconfig
  2645. F: configs/orangepi_zero_plus2_defconfig
  2646. F: configs/orangepi_zero2w_defconfig
  2647. F: package/armbian-firmware/
  2648. F: package/hostapd/
  2649. F: package/rtl8189fs/
  2650. F: package/wpa_supplicant/
  2651. F: package/xr819-xradio/
  2652. N: Sergio Prado <sergio.prado@e-labworks.com>
  2653. F: board/toradex/apalis-imx6/
  2654. F: configs/toradex_apalis_imx6_defconfig
  2655. F: package/aoetools/
  2656. F: package/asn1c/
  2657. F: package/azure-iot-sdk-c/
  2658. F: package/curlpp/
  2659. F: package/daq/
  2660. F: package/libgdiplus/
  2661. F: package/pimd/
  2662. F: package/sloci-image/
  2663. F: package/snort/
  2664. F: package/stella/
  2665. F: package/tio/
  2666. F: package/traceroute/
  2667. F: package/tunctl/
  2668. F: package/ubus/
  2669. F: package/wolfssl/
  2670. N: Simon Dawson <spdawson@gmail.com>
  2671. F: boot/at91bootstrap3/
  2672. F: package/cppzmq/
  2673. F: package/czmq/
  2674. F: package/filemq/
  2675. F: package/googlefontdirectory/
  2676. F: package/jansson/
  2677. F: package/jquery-ui/
  2678. F: package/jquery-ui-themes/
  2679. F: package/json-javascript/
  2680. F: package/lcdapi/
  2681. F: package/libfreefare/
  2682. F: package/libjson/
  2683. F: package/libnfc/
  2684. F: package/libserial/
  2685. F: package/libsigsegv/
  2686. F: package/macchanger/
  2687. F: package/minicom/
  2688. F: package/minidlna/
  2689. F: package/msgpack/
  2690. F: package/nanocom/
  2691. F: package/neard/
  2692. F: package/neardal/
  2693. F: package/owl-linux/
  2694. F: package/rapidjson/
  2695. F: package/sconeserver/
  2696. F: package/sound-theme-borealis/
  2697. F: package/sound-theme-freedesktop/
  2698. F: package/vlc/
  2699. F: package/xscreensaver/
  2700. F: package/zmqpp/
  2701. F: package/zyre/
  2702. N: Simon Doppler <dopsi@dopsi.ch>
  2703. F: board/seeed/
  2704. F: configs/stm32mp157c_odyssey_defconfig
  2705. N: Spenser Gilliland <spenser@gillilanding.com>
  2706. F: arch/Config.in.microblaze
  2707. F: package/a10disp/
  2708. F: package/glmark2/
  2709. F: package/libvpx/
  2710. F: package/mesa3d-demos/
  2711. F: package/ti-gfx/
  2712. N: Stefan Hager <stefan.hager@ginzinger.com>
  2713. F: package/cpuinfo/
  2714. F: package/farmhash/
  2715. F: package/fp16/
  2716. F: package/fft2d/
  2717. F: package/gemmlowp/
  2718. F: package/psimd/
  2719. F: package/pthreadpool/
  2720. F: package/ruy/
  2721. F: package/tensorflow-lite/
  2722. F: package/xnnpack/
  2723. N: Stefan Nickl <Stefan.Nickl@gmail.com>
  2724. F: board/freescale/imx8dxlevk/
  2725. F: configs/freescale_imx8dxlevk_defconfig
  2726. N: Stefan Ott <stefan@ott.net>
  2727. F: package/unbound/
  2728. N: Stefan Sørensen <stefan.sorensen@spectralink.com>
  2729. F: package/cracklib/
  2730. F: package/libpwquality/
  2731. F: package/libscrypt/
  2732. N: Stephan Hoffmann <sho@relinux.de>
  2733. F: package/cache-calibrator/
  2734. F: package/gtest/
  2735. F: package/libhttpserver/
  2736. F: package/mtdev/
  2737. N: Stephane Viau <stephane.viau@oss.nxp.com>
  2738. F: board/freescale/imx8mnevk/
  2739. F: board/freescale/imx8mpevk/
  2740. F: configs/freescale_imx8mnevk_defconfig
  2741. F: configs/freescale_imx8mpevk_defconfig
  2742. N: Steve Calfee <stevecalfee@gmail.com>
  2743. F: package/python-pymysql/
  2744. F: package/python-pyratemp/
  2745. N: Steve James <ste@junkomatic.net>
  2746. F: package/leveldb/
  2747. F: package/libcli/
  2748. N: Steve Kenton <skenton@ou.edu>
  2749. F: package/dvdauthor/
  2750. F: package/dvdrw-tools/
  2751. F: package/memtest86/
  2752. F: package/mjpegtools/
  2753. F: package/udftools/
  2754. F: package/xorriso/
  2755. N: Steven Noonan <steven@uplinklabs.net>
  2756. F: package/hwloc/
  2757. F: package/powertop/
  2758. N: Suniel Mahesh <sunil@amarulasolutions.com>
  2759. F: board/pine64/rockpro64
  2760. F: board/radxa/rockpi-n8
  2761. F: configs/rock_pi_n8_defconfig
  2762. F: configs/rockpro64_defconfig
  2763. F: package/arm-gnu-toolchain/
  2764. N: Sven Oliver Moll <svolli@svolli.de>
  2765. F: package/most/
  2766. N: TIAN Yuanhao <tianyuanhao3@163.com>
  2767. F: package/cli11/
  2768. F: package/libsolv/
  2769. F: package/open-iscsi/
  2770. F: package/open-isns/
  2771. F: package/reproc/
  2772. F: package/termcolor/
  2773. F: package/tl-expected/
  2774. N: Takumi Takahashi <takumiiinn@gmail.com>
  2775. F: package/gsettings-desktop-schemas/
  2776. F: package/libcanberra/
  2777. N: Tan En De <ende.tan@starfivetech.com>
  2778. F: package/libkcapi/
  2779. N: Theo Debrouwere <t.debrouwere@televic.com>
  2780. F: package/pugixml/
  2781. N: Thierry Bultel <tbultel@free.fr>
  2782. F: package/dracut/
  2783. F: package/mpd-mpc/
  2784. N: Thijs Vermeir <thijsvermeir@gmail.com>
  2785. F: package/ranger/
  2786. F: package/x265/
  2787. N: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
  2788. F: board/pine64/star64
  2789. F: configs/pine64_star64_defconfig
  2790. F: package/starfive-spltool/
  2791. N: Thomas Claveirole <thomas.claveirole@green-communications.fr>
  2792. F: package/fcgiwrap/
  2793. F: package/openlayers/
  2794. F: package/vuejs/
  2795. F: package/vuejs-router/
  2796. N: Thomas Devoogdt <thomas@devoogdt.com>
  2797. F: package/fluent-bit/
  2798. F: package/libsoup3/
  2799. N: Thomas Huth <huth@tuxfamily.org>
  2800. F: package/ascii-invaders/
  2801. F: package/kvm-unit-tests/
  2802. F: package/xorcurses/
  2803. N: Thomas Perale <thomas.perale@mind.be>
  2804. F: package/go/
  2805. F: utils/generate-cyclonedx
  2806. N: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
  2807. F: arch/Config.in.arm
  2808. F: board/stmicroelectronics/stm32mp157c-dk2/
  2809. F: boot/boot-wrapper-aarch64/
  2810. F: boot/grub2/
  2811. F: configs/stm32mp157c_dk2_defconfig
  2812. F: package/android-tools/
  2813. F: package/b43-firmware/
  2814. F: package/b43-fwcutter/
  2815. F: package/bmap-tools/
  2816. F: package/c-periphery/
  2817. F: package/cdrkit/
  2818. F: package/cifs-utils/
  2819. F: package/cloop/
  2820. F: package/cmake/
  2821. F: package/cramfs/
  2822. F: package/cross-ldd/
  2823. F: package/dmidecode/
  2824. F: package/double-conversion/
  2825. F: package/flashrom/
  2826. F: package/gcc/
  2827. F: package/genext2fs/
  2828. F: package/getent/
  2829. F: package/gnu-efi/
  2830. F: package/heirloom-mailx/
  2831. F: package/igh-ethercat/
  2832. F: package/intltool/
  2833. F: package/jh71xx-tools/
  2834. F: package/libb2/
  2835. F: package/libcap/
  2836. F: package/libffi/
  2837. F: package/libsha1/
  2838. F: package/libtirpc/
  2839. F: package/libxkbcommon/
  2840. F: package/libxml-parser-perl/
  2841. F: package/localedef/
  2842. F: package/log4cxx/
  2843. F: package/monit/
  2844. F: package/mpdecimal/
  2845. F: package/msmtp/
  2846. F: package/musl/
  2847. F: package/musl-fts/
  2848. F: package/ne10/
  2849. F: package/nodejs/
  2850. F: package/pkg-python.mk
  2851. F: package/pkg-autotools.mk
  2852. F: package/pkg-generic.mk
  2853. F: package/python3/
  2854. F: package/python-augeas/
  2855. F: package/python-flask-expects-json/
  2856. F: package/python-git/
  2857. F: package/python-qrcode/
  2858. F: package/python-serial/
  2859. F: package/python-unittest-xml-reporting/
  2860. F: package/qextserialport/
  2861. F: package/qt6/
  2862. F: package/riscv64-elf-toolchain/
  2863. F: package/rpcbind/
  2864. F: package/rt-tests/
  2865. F: package/rtc-tools/
  2866. F: package/sam-ba/
  2867. F: package/scons/
  2868. F: package/squashfs/
  2869. F: package/tinifier/
  2870. F: package/wayland/
  2871. F: package/weston/
  2872. F: support/testing/tests/boot/test_grub.py
  2873. F: support/testing/tests/boot/test_grub/
  2874. F: support/testing/tests/boot/test_syslinux.py
  2875. F: support/testing/tests/package/sample_nodejs_basic.js
  2876. F: support/testing/tests/package/sample_nodejs_module.js
  2877. F: support/testing/tests/package/sample_python_augeas.py
  2878. F: support/testing/tests/package/sample_python_flask.py
  2879. F: support/testing/tests/package/sample_python_flask_expects_json.py
  2880. F: support/testing/tests/package/sample_python_git.py
  2881. F: support/testing/tests/package/sample_python_unittest_xml_reporting.py
  2882. F: support/testing/tests/package/test_nodejs.py
  2883. F: support/testing/tests/package/test_python_augeas.py
  2884. F: support/testing/tests/package/test_python_flask.py
  2885. F: support/testing/tests/package/test_python_flask_expects_json.py
  2886. F: support/testing/tests/package/test_python_git.py
  2887. F: support/testing/tests/package/test_python_unittest_xml_reporting.py
  2888. F: support/testing/tests/toolchain/test_external_arm.py
  2889. F: toolchain/
  2890. N: Timo Ketola <timo.ketola@exertus.fi>
  2891. F: package/fbgrab/
  2892. N: Titouan Christophe <titouan.christophe@mind.be>
  2893. F: package/avro-c/
  2894. F: package/mosquitto/
  2895. F: package/python-avro/
  2896. F: package/redis/
  2897. F: package/waf/
  2898. F: support/testing/tests/package/test_crudini.py
  2899. F: support/testing/tests/package/test_redis.py
  2900. N: Tobias Waldekranz <tobias@waldekranz.com>
  2901. F: package/kmemd/
  2902. N: Torben Voltmer <mail@t-voltmer.net>
  2903. F: package/espflash/
  2904. N: Tudor Holton <buildroot@tudorholton.com>
  2905. F: package/openjdk/
  2906. N: Tzu-Jung Lee <roylee17@gmail.com>
  2907. F: package/dropwatch/
  2908. F: package/tstools/
  2909. N: Uladzimir Bely <wiselord1983@gmail.com>
  2910. F: package/python-mpd2/
  2911. N: Vadim Kochan <vadim4j@gmail.com>
  2912. F: package/brcm-patchram-plus/
  2913. F: package/frr/
  2914. F: package/gettext-tiny/
  2915. F: package/tinyssh/
  2916. N: Valentin Korenblit <valentinkorenblit@gmail.com>
  2917. F: package/clinfo/
  2918. F: package/llvm-project/clang/
  2919. F: package/llvm-project/libclc/
  2920. F: package/llvm-project/llvm/
  2921. N: Vanya Sergeev <vsergeev@gmail.com>
  2922. F: package/lua-periphery/
  2923. N: Viacheslav Bocharov <adeep@lexina.in>
  2924. F: package/rtl8822cs/
  2925. N: Victor Huesca <victor.huesca@bootlin.com>
  2926. F: support/testing/tests/core/test_root_password.py
  2927. N: Vincent Jardin <vjardin@free.fr>
  2928. F: board/nvidia/bf3/
  2929. F: configs/nvidia_bf3_defconfig
  2930. F: package/bfscripts/
  2931. F: package/dpdk/
  2932. F: package/libecoli/
  2933. N: Vincent Prince <vincent.prince.fr@gmail.com>
  2934. F: package/nss-myhostname/
  2935. F: package/utp_com/
  2936. N: Vincent Stehlé <vincent.stehle@arm.com>
  2937. F: board/arm/fvp-ebbr/
  2938. F: board/qemu/aarch64-ebbr/
  2939. F: board/qemu/arm-ebbr/
  2940. F: configs/arm_fvp_ebbr_defconfig
  2941. F: configs/qemu_aarch64_ebbr_defconfig
  2942. F: configs/qemu_arm_ebbr_defconfig
  2943. F: package/edk2-non-osi/
  2944. F: support/testing/tests/boot/test_edk2.py
  2945. N: Vincent Stehlé <vincent.stehle@laposte.net>
  2946. F: board/arm/foundation-v8/
  2947. F: board/bananapi/bananapi-m2-zero/
  2948. F: configs/arm_foundationv8_defconfig
  2949. F: configs/bananapi_m2_zero_defconfig
  2950. F: configs/uevm5432_defconfig
  2951. F: package/i7z/
  2952. F: package/msr-tools/
  2953. F: package/pixz/
  2954. F: package/zerofree/
  2955. F: support/testing/tests/package/test_msr_tools*
  2956. F: support/testing/tests/package/test_pixz.py
  2957. F: support/testing/tests/package/test_xen.py
  2958. F: support/testing/tests/package/test_xen/
  2959. F: support/testing/tests/package/test_zerofree.py
  2960. N: Vinicius Tinti <viniciustinti@gmail.com>
  2961. F: package/python-thrift/
  2962. N: Vivien Didelot <vivien.didelot@gmail.com>
  2963. F: board/technologic/ts5500/
  2964. F: configs/ts5500_defconfig
  2965. N: Volkov Viacheslav <sv99@inbox.ru>
  2966. F: package/v4l2grab/
  2967. F: package/zbar/
  2968. N: Wade Berrier <wberrier@gmail.com>
  2969. F: package/ngrep/
  2970. N: Waldemar Brodkorb <wbx@openadk.org>
  2971. F: board/qemu/riscv32-virt/
  2972. F: board/stmicroelectronics/stm32f746-disco/
  2973. F: configs/qemu_riscv32_nommu_virt_defconfig
  2974. F: configs/stm32f746_disco_sd_defconfig
  2975. F: package/asterisk/
  2976. F: package/evilwm/
  2977. F: package/fbv/
  2978. F: package/libjwt/
  2979. F: package/mksh/
  2980. F: package/ruby/
  2981. F: package/uclibc/
  2982. F: package/uclibc-ng-test/
  2983. F: package/zabbix/
  2984. F: support/testing/tests/package/test_ruby.py
  2985. N: Will Newton <will.newton@gmail.com>
  2986. F: package/enchant/
  2987. F: package/erlang/
  2988. F: package/libmicrohttpd/
  2989. F: package/time/
  2990. N: Will Wagner <will_wagner@carallon.com>
  2991. F: package/yaffs2utils/
  2992. N: Witold Lipieta <witold.lipieta@thaumatec.com>
  2993. F: package/python-segno/
  2994. F: support/testing/tests/package/sample_python_segno.py
  2995. F: support/testing/tests/package/test_python_segno.py
  2996. N: Wojciech M. Zabolotny <wzab01@gmail.com>
  2997. F: package/avrdude/
  2998. F: package/jack2/
  2999. F: package/python-msgpack/
  3000. F: package/python-pyusb/
  3001. N: Wojciech Niziński <niziak@spox.org>
  3002. F: package/fwup/
  3003. N: Woodrow Douglass <wdouglass@carnegierobotics.com>
  3004. F: package/chicken
  3005. F: package/opencv4
  3006. F: package/opencv4-contrib
  3007. N: Xuanhao Shi <X15000177@gmail.com>
  3008. F: board/ti/am62x-sk/
  3009. F: board/ti/am64x-sk/
  3010. F: boot/ti-k3-boot-firmware/
  3011. F: boot/ti-k3-r5-loader/
  3012. F: configs/ti_am62x_sk_defconfig
  3013. F: configs/ti_am64x_sk_defconfig
  3014. N: Yair Ben Avraham <yairba@protonmail.com>
  3015. F: package/casync/
  3016. F: package/gloox/
  3017. F: package/tpm2-pkcs11/
  3018. N: Yann E. MORIN <yann.morin@orange.com>
  3019. F: .editorconfig
  3020. F: package/gpsd/
  3021. F: package/skopeo/
  3022. N: Yegor Yefremov <yegorslists@googlemail.com>
  3023. F: configs/beaglebone_defconfig
  3024. F: configs/beaglebone_qt5_defconfig
  3025. F: package/acl/
  3026. F: package/attr/
  3027. F: package/avrdude/
  3028. F: package/boost/
  3029. F: package/bootstrap/
  3030. F: package/cannelloni/
  3031. F: package/can-utils/
  3032. F: package/circus/
  3033. F: package/dhcpcd/
  3034. F: package/feh/
  3035. F: package/hostapd/
  3036. F: package/imlib2/
  3037. F: package/jquery-datetimepicker/
  3038. F: package/jquery-sidebar/
  3039. F: package/kmod/
  3040. F: package/libftdi1/
  3041. F: package/libical/
  3042. F: package/libmbim/
  3043. F: package/libndp/
  3044. F: package/libnftnl/
  3045. F: package/libqmi/
  3046. F: package/libqrtr-glib/
  3047. F: package/libsoc/
  3048. F: package/libsocketcan/
  3049. F: package/libubox/
  3050. F: package/libuci/
  3051. F: package/libxmlb/
  3052. F: package/linux-firmware/
  3053. F: package/linux-serial-test/
  3054. F: package/modem-manager/
  3055. F: package/ncftp/
  3056. F: package/nftables/
  3057. F: package/nuttcp/
  3058. F: package/parted/
  3059. F: package/phytool/
  3060. F: package/poco/
  3061. F: package/python*
  3062. F: package/ser2net/
  3063. F: package/socketcand/
  3064. F: package/swig/
  3065. F: package/qt5/qt5serialbus/
  3066. F: package/sdparm/
  3067. F: package/ti-utils/
  3068. F: package/wpa_supplicant/
  3069. F: package/x11r7/xapp_xconsole/
  3070. F: package/x11r7/xapp_xinput-calibrator/
  3071. F: package/zlog/
  3072. F: support/testing/tests/package/sample_python_dicttoxml2.py
  3073. F: support/testing/tests/package/sample_python_dtschema.py
  3074. F: support/testing/tests/package/sample_python_munch.py
  3075. F: support/testing/tests/package/sample_python_pysmb.py
  3076. F: support/testing/tests/package/test_libftdi1.py
  3077. F: support/testing/tests/package/test_python_can.py
  3078. F: support/testing/tests/package/test_python_dicttoxml2.py
  3079. F: support/testing/tests/package/test_python_dtschema.py
  3080. F: support/testing/tests/package/test_python_munch.py
  3081. F: support/testing/tests/package/test_python_pysmb.py
  3082. F: utils/scanpypi
  3083. N: Yunhao Tian <t123yh.xyz@gmail.com>
  3084. F: package/libopenaptx/
  3085. N: Zoltan Gyarmati <zgyarmati@zgyarmati.de>
  3086. F: package/crudini/
  3087. F: package/grantlee/
  3088. F: package/libusb/
  3089. F: package/libusb-compat/
  3090. F: package/proj/
  3091. F: package/python-iniparse/
  3092. F: package/qjson/
  3093. F: package/qt6/qt6core5compat/
  3094. F: package/quazip/
  3095. F: package/shapelib/
  3096. F: package/simple-mail/
  3097. F: package/tinc/