├── .gitignore ├── ABANDONED ├── FINISHED ├── README.md ├── archivers ├── gzip │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── jcat │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Compress-LZF │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Compress-Raw-Bzip2 │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Compress-Raw-Lzma │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Compress-Raw-Zlib │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Compress-Stream-Zstd │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-IO-Compress-Lzf │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-IO-Compress-Lzma │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-IO-Compress-Lzop │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-IO-Compress-Zstd │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── p5-IO-Compress │ ├── Makefile │ ├── distinfo │ ├── patches │ └── patch-Makefile.PL │ └── pkg │ ├── DESCR │ └── PLIST ├── astro └── p5-App-wu │ ├── Makefile │ ├── distinfo │ └── pkg │ ├── DESCR │ └── PLIST ├── audio ├── DMusic │ ├── Makefile │ ├── distinfo │ └── patches │ │ ├── patch-src_gui_configuration_nim │ │ ├── patch-src_gui_qmlUtils_nim │ │ ├── patch-src_gui_qt_nim │ │ ├── patch-src_gui_remoteAudio_nim │ │ └── patch-src_taglib_nim ├── adlplug │ ├── Makefile │ ├── TODO │ └── distinfo ├── artyfx │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── blop │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── csound │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-Frontends_csound_csound_main_c │ │ ├── patch-Top_csound_c │ │ └── patch-cmake_CompilerOptimizations_cmake │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── dgedit │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-src-Makefile_in │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── drumgizmo │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-man-Makefile_in │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── element │ ├── Makefile │ ├── TODO │ └── distinfo ├── gmtp │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── libadlmidi │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── libopnmidi │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── librespot │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── libsmf │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── muse │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ ├── patch-audio_convert_CMakeLists_txt │ │ ├── patch-muse_CMakeLists_txt │ │ ├── patch-muse_midiseq_cpp │ │ ├── patch-muse_thread_cpp │ │ ├── patch-sandbox_CMakeLists_txt │ │ ├── patch-synti_CMakeLists_txt │ │ └── patch-synti_libsimpleplugin_CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── spot │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ ├── patches │ │ ├── patch-Cargo_toml │ │ ├── patch-meson_build │ │ └── patch-src_meson_build │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── strawberry │ ├── Makefile │ ├── distinfo │ ├── files │ │ └── config.h.in │ ├── patches │ │ └── patch-tests_src_songplaylistitem_test_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── supersonic │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── wildmidi │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ └── patch-src_CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── yandex-music-api │ ├── Makefile │ ├── distinfo │ └── pkg │ ├── DESCR │ └── PLIST ├── books └── x86-manpages │ ├── Makefile │ ├── distinfo │ └── pkg │ ├── DESCR │ └── PLIST ├── cad ├── freecad │ ├── Makefile │ ├── README │ ├── distinfo │ ├── patches │ │ ├── patch-src_Mod_Assembly_Gui_CMakeLists_txt │ │ ├── patch-src_Mod_Part_App_CMakeLists_txt │ │ ├── patch-tests_CMakeLists_txt │ │ ├── patch-tests_src_Mod_Assembly_CMakeLists_txt │ │ ├── patch-tests_src_Mod_Material_CMakeLists_txt │ │ ├── patch-tests_src_Mod_Measure_CMakeLists_txt │ │ ├── patch-tests_src_Mod_MeshPart_CMakeLists_txt │ │ ├── patch-tests_src_Mod_Mesh_CMakeLists_txt │ │ ├── patch-tests_src_Mod_PartDesign_CMakeLists_txt │ │ ├── patch-tests_src_Mod_Part_CMakeLists_txt │ │ ├── patch-tests_src_Mod_Points_CMakeLists_txt │ │ └── patch-tests_src_Mod_Sketcher_CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── orcaslicer │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── fix-define.pl │ ├── patches │ ├── patch-CMakeLists_txt │ ├── patch-src_CMakeLists_txt │ ├── patch-src_OrcaSlicer_cpp │ ├── patch-src_imgui_imgui_demo_cpp │ ├── patch-src_imgui_imgui_widgets_cpp │ ├── patch-src_libslic3r_CMakeLists_txt │ ├── patch-src_libslic3r_LocalesUtils_cpp │ ├── patch-src_libslic3r_PrintObject_cpp │ ├── patch-src_libslic3r_Thread_cpp │ ├── patch-src_libslic3r_utils_cpp │ ├── patch-src_miniz_miniz_h │ ├── patch-src_slic3r_CMakeLists_txt │ ├── patch-src_slic3r_GUI_CalibrationPanel_cpp │ ├── patch-src_slic3r_GUI_CalibrationWizardPage_cpp │ ├── patch-src_slic3r_GUI_CalibrationWizardStartPage_cpp │ ├── patch-src_slic3r_GUI_ConfigWizard_cpp │ ├── patch-src_slic3r_GUI_EditGCodeDialog_cpp │ ├── patch-src_slic3r_GUI_EditGCodeDialog_hpp │ ├── patch-src_slic3r_GUI_ExtraRenderers_cpp │ ├── patch-src_slic3r_GUI_Field_cpp │ ├── patch-src_slic3r_GUI_GLCanvas3D_cpp │ ├── patch-src_slic3r_GUI_GUI_App_cpp │ ├── patch-src_slic3r_GUI_GUI_App_hpp │ ├── patch-src_slic3r_GUI_GUI_Preview_cpp │ ├── patch-src_slic3r_GUI_GUI_Preview_hpp │ ├── patch-src_slic3r_GUI_GUI_Utils_cpp │ ├── patch-src_slic3r_GUI_HMSPanel_cpp │ ├── patch-src_slic3r_GUI_InstanceCheck_cpp │ ├── patch-src_slic3r_GUI_MarkdownTip_cpp │ ├── patch-src_slic3r_GUI_MediaPlayCtrl_h │ ├── patch-src_slic3r_GUI_Monitor_cpp │ ├── patch-src_slic3r_GUI_Mouse3DController_cpp │ ├── patch-src_slic3r_GUI_Mouse3DController_hpp │ ├── patch-src_slic3r_GUI_NetworkTestDialog_hpp │ ├── patch-src_slic3r_GUI_PhysicalPrinterDialog_cpp │ ├── patch-src_slic3r_GUI_Plater_cpp │ ├── patch-src_slic3r_GUI_PresetComboBoxes_cpp │ ├── patch-src_slic3r_GUI_PresetComboBoxes_hpp │ ├── patch-src_slic3r_GUI_PrintHostDialogs_cpp │ ├── patch-src_slic3r_GUI_Tab_cpp │ ├── patch-src_slic3r_GUI_UnsavedChangesDialog_cpp │ ├── patch-src_slic3r_GUI_UnsavedChangesDialog_hpp │ ├── patch-src_slic3r_GUI_Widgets_Label_cpp │ ├── patch-src_slic3r_GUI_Widgets_WebView_cpp │ ├── patch-src_slic3r_GUI_wxMediaCtrl2_cpp │ ├── patch-src_slic3r_Utils_FontConfigHelp_hpp │ ├── patch-src_slic3r_Utils_Process_cpp │ └── patch-src_slic3r_Utils_Serial_cpp │ └── pkg │ ├── DESCR │ └── PLIST ├── comms ├── aprx │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-Makefile │ │ └── patch-Makefile_in │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── direwolf │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-Makefile.linux │ │ ├── patch-audio_h │ │ └── patch-kissutil_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── gqrx │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-gqrx_pro │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── gr-osmosdr │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── lua-rs232 │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-adb │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── scrcpy │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ ├── DESCR-main │ ├── DESCR-server │ ├── PLIST-main │ └── PLIST-server ├── converters └── p5-Locale-SubCountry │ ├── Makefile │ ├── distinfo │ └── pkg │ ├── DESCR │ └── PLIST ├── databases ├── p5-DBD-Informix │ ├── Makefile │ ├── distinfo │ ├── make.log │ └── pkg │ │ └── DESCR ├── p5-DBD-ODBC │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-dbdimp_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ports-snapshot │ ├── Makefile │ ├── TODO │ └── pkg │ │ └── DESCR ├── ruby-activerecord │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-arel │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-couch_potato │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── sqlite-jdbc │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── table_log │ ├── Makefile │ └── distinfo └── veil │ ├── Makefile │ ├── distinfo │ └── patches │ └── patch-src_veil_datatypes_h ├── devel ├── abi-compliance-checker │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-abi-compliance-checker_pl │ │ ├── patch-modules_Internals_RegTests_pm │ │ └── patch-modules_Internals_TUDump_pm │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── actionlint │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── arduino │ ├── Makefile │ ├── distinfo │ ├── files │ │ ├── Makefile │ │ ├── alibs.mk │ │ ├── arduinoboot │ │ ├── arduinoproject │ │ ├── fetch_extra_libs.py │ │ ├── gen_alibs_mk.py │ │ └── template.ino │ ├── patches │ │ └── patch-hardware_arduino_avr_cores_arduino_Arduino_h │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── arm-none-eabi │ ├── Makefile │ ├── Makefile.inc │ ├── UPDATE │ ├── binutils │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ ├── patch-bfd_doc_Makefile_in │ │ │ ├── patch-binutils_doc_Makefile_in │ │ │ ├── patch-gas_doc_Makefile_in │ │ │ ├── patch-gprof_Makefile_in │ │ │ ├── patch-ld_Makefile_in │ │ │ ├── patch-libiberty_Makefile_in │ │ │ └── patch-libiberty_testsuite_Makefile_in │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── gcc-linaro-bootstrap │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ ├── patch-gcc_Makefile_in │ │ │ ├── patch-gcc_config_arm_none_eabi_h │ │ │ ├── patch-gcc_config_arm_t-arm-elf │ │ │ ├── patch-gcc_config_arm_unknown-elf_h │ │ │ ├── patch-gcc_gcc_c │ │ │ ├── patch-libgcc_Makefile_in │ │ │ └── patch-libiberty_Makefile_in │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── gcc-linaro │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ ├── patch-Makefile_in │ │ │ ├── patch-gcc_Makefile_in │ │ │ ├── patch-gcc_config_arm_none_eabi_h │ │ │ ├── patch-gcc_config_arm_t-arm-elf │ │ │ ├── patch-gcc_config_arm_unknown-elf_h │ │ │ ├── patch-gcc_gcc_c │ │ │ ├── patch-libgcc_Makefile_in │ │ │ └── patch-libiberty_Makefile_in │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── gdb │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ ├── patch-bfd_doc_Makefile_in │ │ │ ├── patch-gdb_doc_Makefile_in │ │ │ └── patch-libiberty_Makefile_in │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ └── newlib │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ └── patch-etc_Makefile_in │ │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── benchmark │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── breakpad │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-configure │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── cargo-nextest │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ccls │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── codeblocks │ ├── Makefile │ ├── UPDATE │ ├── distinfo │ ├── patches │ │ ├── patch-bootstrap │ │ ├── patch-configure_ac │ │ ├── patch-src_base_tinyxml_Makefile_am │ │ ├── patch-src_plugins_compilergcc_compilergcc_cpp │ │ ├── patch-src_plugins_contrib_dragscroll_dragscrollcfg_h │ │ ├── patch-src_sdk_mozilla_chardet_include_nsprpub_pr_include_prcpucfg_linux_h │ │ └── patch-src_src_appglobals_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── cpphs │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR-lib │ │ ├── DESCR-main │ │ ├── PLIST-lib │ │ └── PLIST-main ├── cryptopp │ ├── Makefile │ ├── distinfo │ ├── files │ │ └── cryptopp.pc │ ├── patch-GNUmakefile │ ├── patch-algparam_h │ ├── patches │ │ ├── patch-config_h │ │ ├── patch-cryptlib_h │ │ ├── patch-filters_h │ │ ├── patch-misc_h │ │ ├── patch-osrng_cpp │ │ ├── patch-osrng_h │ │ ├── patch-pubkey_h │ │ ├── patch-secblock_h │ │ ├── patch-seckey_h │ │ ├── patch-simple_h │ │ ├── patch-stdcpp_h │ │ └── patch-trap_h │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── deviceatlas-enterprise-c │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── eclipse │ ├── Makefile │ ├── plugins │ │ ├── Makefile │ │ ├── Makefile.inc │ │ ├── emf │ │ │ ├── Makefile │ │ │ ├── distinfo │ │ │ └── pkg │ │ │ │ ├── DESCR │ │ │ │ └── PLIST │ │ ├── epic │ │ │ ├── Makefile │ │ │ ├── distinfo │ │ │ └── pkg │ │ │ │ ├── DESCR │ │ │ │ └── PLIST │ │ ├── findbugs │ │ │ ├── Makefile │ │ │ ├── distinfo │ │ │ └── pkg │ │ │ │ ├── DESCR │ │ │ │ └── PLIST │ │ ├── gef │ │ │ ├── Makefile │ │ │ ├── distinfo │ │ │ └── pkg │ │ │ │ ├── DESCR │ │ │ │ └── PLIST │ │ ├── py-dev │ │ │ ├── Makefile │ │ │ ├── distinfo │ │ │ └── pkg │ │ │ │ ├── DESCR │ │ │ │ ├── MESSAGE │ │ │ │ └── PLIST │ │ ├── subclipse │ │ │ ├── Makefile │ │ │ ├── distinfo │ │ │ └── pkg │ │ │ │ ├── DESCR │ │ │ │ └── PLIST │ │ ├── uml2 │ │ │ ├── Makefile │ │ │ ├── distinfo │ │ │ └── pkg │ │ │ │ ├── DESCR │ │ │ │ └── PLIST │ │ └── wtp │ │ │ ├── Makefile │ │ │ ├── distinfo │ │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ └── sdk │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ └── eclipse-natives-20130306235606.tar.gz │ │ ├── make-natives-snapshot.sh │ │ ├── patches │ │ ├── patch-launcher_bundles_org_eclipse_equinox_executable_library_gtk_make_openbsd_mak │ │ ├── patch-libgnomeproxy_bundles_org_eclipse_core_net_natives_unix_openbsd_makefile │ │ ├── patch-libunixfile_bundles_org_eclipse_core_filesystem_natives_unix_openbsd_Makefile │ │ ├── patch-swt_cairo_h │ │ ├── patch-swt_make_openbsd_mak │ │ ├── patch-swt_os_c │ │ ├── patch-swt_swt_h │ │ ├── patch-swt_webkitgtk_c │ │ └── patch-swt_webkitgtk_h │ │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── editline │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── fileb0x │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── gh-dash │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── gh-gr │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── git-absorb │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── git-gpg │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── git-graph │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── gitoxide │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ ├── patches │ │ └── patch-build_rs │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── go-bindata │ └── Makefile ├── go-btcsuite-btclog │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── go-btcsuite-btcutil │ ├── Makefile │ ├── distinfo │ └── pkg │ │ └── DESCR ├── go-btcsuite-seelog │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── go-btcsuite-websocket │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── gold │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-bfd_Makefile_in │ │ ├── patch-bfd_config_bfd │ │ ├── patch-elfcpp_elfcpp_h │ │ ├── patch-gas_Makefile_in │ │ ├── patch-gas_configure_tgt │ │ ├── patch-gold_dirsearch_cc │ │ ├── patch-gold_dirsearch_h │ │ ├── patch-gold_fileread_cc │ │ ├── patch-gold_gold_cc │ │ ├── patch-gold_layout_cc │ │ ├── patch-gold_layout_h │ │ ├── patch-gold_options_cc │ │ ├── patch-gold_options_h │ │ ├── patch-gold_output_cc │ │ ├── patch-gold_script_cc │ │ ├── patch-gold_testsuite_Makefile_in │ │ └── patch-gold_x86_64_cc │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── gotestsum │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ ├── patches │ │ └── patch-cmd_main_go │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-BoundedChan │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-Decimal │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-Diff │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-QuickCheck │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-SHA │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-StateVar │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-aeson │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-ansi-terminal │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-ansi-wl-pprint │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-asn1-encoding │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-asn1-types │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-async │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-attoparsec │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-base-compat-batteries │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-base-compat │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-base-orphans │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-basement │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-bifunctors │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-blaze-builder │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-blaze-html │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-blaze-markup │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-brick │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-byteable │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-bytestring-builder │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-case-insensitive │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-cereal │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-cipher-aes │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-clientsession │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-clock │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-cmdargs │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-colour │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-comonad │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-conduit-extra │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-conduit │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-config-ini │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-constraints │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-contravariant │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-control-monad-free │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-cookie │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-cprng-aes │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-crypto-api │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-crypto-cipher-types │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-crypto-random │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-cryptonite │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-csv │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-data-clist │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-data-default-class │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-data-default-instances-containers │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-data-default-instances-dlist │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-data-default-instances-old-locale │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-data-default │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-distributive │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-dlist │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-enclosed-exceptions │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-entropy │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-exceptions │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-extra │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-fail │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-file-embed │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-foundation │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-free │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-fsnotify │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-generic-deriving │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-hans │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-hans_cabal │ └── pkg │ │ └── DESCR ├── hs-hashable │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-hashtables │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-haskell-lexer │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-haskell-src-exts │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-haskell-src-meta │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-heaps │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-here │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-hjsmin │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-hledger-lib │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-hourglass │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-html │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-http-client │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-http-conduit │ ├── Makefile │ ├── distinfo │ └── pkg │ │ └── DESCR ├── hs-http-types │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-integer-gmp │ ├── Makefile │ ├── distinfo │ └── pkg │ │ └── DESCR ├── hs-integer-logarithms │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-language-javascript │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-lifted-async │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-lifted-base │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-lucid │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-math-functions │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-megaparsec │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-memory │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-microlens-ghc │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-microlens-mtl │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-microlens-platform │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-microlens-th │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-microlens │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-mime-types │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-mmorph │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-monad-control │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-monadLib │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-mono-traversable │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-mtl-compat │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-mtl │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-mwc-random │ ├── Makefile │ ├── distinfo │ └── pkg │ │ └── DESCR ├── hs-network-uri │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-optparse-applicative │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-parallel │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-parsec │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-parser-combinators │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-prelude-extras │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-pretty-show │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-primitive │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-primitive_cabal │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-profunctors │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-psqueues │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-regex-base │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-regex-tdfa │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-resourcet │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-safe │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-scientific │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-securemem │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-semigroupoids │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-semigroups │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-setenv │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-shakespeare │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-shelly │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-skein │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-socks │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-streaming-commons │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-system-fileio │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-system-filepath │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-tabular │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-tagged │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-temporary │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-text-zipper │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-text │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-tf-random │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-th-abstraction │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-th-expand-syns │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-th-lift-instances │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-th-lift │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-th-orphans │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-th-reify-many │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-time-locale-compat │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-transformers-base │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-transformers-compat │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-transformers │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-typed-process │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-uglymemo │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-unliftio-core │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-unordered-containers │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-utility-ht │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-uuid-types │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-vector-algorithms │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-vector-algorithms_cabal │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-vector-th-unbox │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-vector │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-vector_cabal │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-vty │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-wizards │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-wizards_cabal │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-word-wrap │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-xdg-basedir │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hs-zlib │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hub │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hwloc │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── isl │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── jetbrains-clion │ ├── Makefile │ ├── distinfo │ ├── files │ │ ├── clion │ │ ├── clion.1 │ │ └── clion.desktop │ ├── patches │ │ └── patch-bin_clion_sh │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── kati │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-Makefile_ckati │ │ ├── patch-src_eval_cc │ │ └── patch-src_fileutil_cc │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── libextractor │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-configure │ │ └── patch-src_main_getopt_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── libpare │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── libtgvoip │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-audio_AudioInput_cpp │ │ ├── patch-audio_AudioOutput_cpp │ │ ├── patch-os_posix_NetworkSocketPosix_cpp │ │ └── patch-threading_h │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── libxtend │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── lua-argparse │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── luabasexx │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── luacheck │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── luaevent │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── luaffi │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-test_lua │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── luajson │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-Makefile │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── luaotp │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── luarocks │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── lunit │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-lunit │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── mimalloc │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── mold │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-common_filepath_cc │ │ ├── patch-elf_cmdline_cc │ │ ├── patch-elf_elf_h │ │ ├── patch-elf_main_cc │ │ ├── patch-elf_mold_h │ │ ├── patch-elf_output-chunks_cc │ │ ├── patch-elf_passes_cc │ │ ├── patch-third-party_tbb_include_oneapi_tbb_detail__config_h │ │ └── patch-third-party_tbb_src_tbb_semaphore_h │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── nyan │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ └── patch-nyan_CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ocaml-biniou │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-Makefile │ └── pkg │ │ ├── DESCR │ │ ├── PFRAG.dynlink-native │ │ ├── PFRAG.native │ │ └── PLIST ├── ocaml-easy-format │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ ├── PFRAG.dynlink-native │ │ ├── PFRAG.native │ │ └── PLIST ├── ocaml-merlin │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-Makefile_ocamlmakefile │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ocaml-yojson │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-Makefile │ └── pkg │ │ ├── DESCR │ │ ├── PFRAG.dynlink-native │ │ ├── PFRAG.native │ │ └── PLIST ├── ocp-indent │ ├── Makefile │ ├── distinfo │ ├── files │ │ └── ocaml.vim │ ├── patches │ │ ├── patch-Makefile_simple │ │ ├── patch-_tags │ │ ├── patch-src_ocp-indent-lib_mllib │ │ └── patch-tests_test_sh │ └── pkg │ │ ├── DESCR │ │ ├── PFRAG.native │ │ └── PLIST ├── ondselsolver │ ├── Makefile │ ├── README.md │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── openmp │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── files │ │ └── libgomp.spec │ ├── patches │ │ ├── patch-runtime_CMakeLists_txt │ │ ├── patch-runtime_src_kmp_ftn_entry_h │ │ ├── patch-runtime_src_kmp_h │ │ ├── patch-runtime_src_kmp_platform_h │ │ ├── patch-runtime_src_kmp_runtime_cpp │ │ ├── patch-runtime_src_kmp_wrapper_malloc_h │ │ └── patch-runtime_src_z_Linux_util_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-AI-MXNet │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Alien-SDL │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-AnyEvent-AIO │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Business-UPS-Tracking │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Class-Refresh │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Compiler-Lexer │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-DVD-Read │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Data-Currency │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Data-Validate-Domain │ ├── Makefile │ ├── distinfo │ ├── make.log │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Data-Validate-URI │ ├── Makefile │ ├── distinfo │ ├── make.log │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Data-Validator │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Devel-OverrideGlobalRequire │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Device-Nest │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Excel-Writer-XLSX │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Exporter-Declare │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Fennec-Lite │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-File-Map │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-File-Util │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Finance-Bitcoin │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Finance-BlockIO │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Finance-Currency-Convert-WebserviceX │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Function-Parameters │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-Makefile_PL │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Furl │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Google-API-Client │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-HTTP-Response-Stringable │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Hash-AsObject │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Hash-SafeKeys │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-JSON-RPC │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-LWP-Authen-OAuth2 │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Locale-Currency-Format │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Log-Minimal │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Log-Report-Optional │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Log-Report │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Meta-Builder │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Minion │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Mock-Quick │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Mojo-UserAgent-Role-Queued │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-MooX-Types-MooseLike-DateTime │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-NDFD-Weather-Report │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Net-Curl-Simple │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Net-Curl │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Net-Evernote-Simple │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Net-Evernote │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Number-Tolerant │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-OAuth-Cmdline │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-OAuth-Lite │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-OpenAI-API │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-OpenGL-Image │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-OpenGL │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-PDL-CCS │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-PDL-VectorValued │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-PDL │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Perl6-Export │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Perl6-Form │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Role-EventEmitter │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Shipment │ ├── Makefile │ ├── distinfo │ ├── env │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-String-Compare-ConstantTime │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-String-Print │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Temperature-Windchill │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Test-Fatal │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Test-Mock-LWP-Dispatch │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Test2-Suite │ ├── Makefile │ ├── distinfo │ ├── make.log │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Text-Patch │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-WWW-Curl-Simple │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-WWW-Namecheap-API │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-WWW-Netflix-API │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-WWW-Netflix │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-WWW-Twilio-API │ ├── Makefile │ ├── distinfo │ ├── make.log │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-WWW-Wunderground-API │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-WWW-YouTube-Download-Channel │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-WWW-YouTube-Download │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-WebService-Client │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-WebService-Coinbase │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-XML-Compile-Tester │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-XML-Compile │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-XML-LibXML-Simple │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── perl-languageserver │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── pijul │ ├── Makefile │ ├── TODO │ ├── crates.inc │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── pocl │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ └── patch-lib_CL_pocl_timing_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-aiofiles │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-cxxfilt │ ├── Makefile │ ├── distinfo │ ├── files │ │ └── test_cxxfilt.py │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-debtcollector │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-dncil │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-dnfile │ ├── Makefile │ ├── distinfo │ ├── files │ │ └── fixtures.py │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-hachoir │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-httpretty │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-ipywidgets │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-libusb1 │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-lru │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-monotonic │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-oslo-config │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-oslo-i18n │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-oslo-serialization │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-oslo-utils │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-pipenv │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-proglog │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-progressbar2 │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-python_utils │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-sdl2 │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-shtab │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-side2 │ ├── Makefile │ ├── README.md │ ├── distinfo │ ├── patches │ │ ├── patch-build_scripts_config_py │ │ ├── patch-sources_cmake_helpers_helpers_cmake │ │ ├── patch-sources_pyside2-tools_pylupdate_CMakeLists_txt │ │ ├── patch-sources_pyside2_CMakeLists_txt │ │ ├── patch-sources_pyside2_PySide2_Qt3DCore_typesystem_3dcore_xml │ │ ├── patch-sources_pyside2_PySide2_support_generate_pyi_py │ │ ├── patch-sources_pyside2_libpyside_feature_select_cpp │ │ ├── patch-sources_pyside2_libpyside_pysideproperty_cpp │ │ ├── patch-sources_pyside2_libpyside_pysidesignal_cpp │ │ ├── patch-sources_pyside2_tests_QtWidgets_bug_662_py │ │ ├── patch-sources_pyside2_tests_signals_bug_79_py │ │ ├── patch-sources_shiboken2_ApiExtractor_clangparser_compilersupport_cpp │ │ ├── patch-sources_shiboken2_ApiExtractor_parser_codemodel_cpp │ │ ├── patch-sources_shiboken2_ApiExtractor_parser_codemodel_h │ │ ├── patch-sources_shiboken2_ApiExtractor_tests_testtemplates_cpp │ │ ├── patch-sources_shiboken2_ApiExtractor_typesystem_typedefs_h │ │ ├── patch-sources_shiboken2_doc_CMakeLists_txt │ │ ├── patch-sources_shiboken2_generator_generator_cpp │ │ ├── patch-sources_shiboken2_libshiboken_helper_h │ │ ├── patch-sources_shiboken2_libshiboken_pep384impl_cpp │ │ ├── patch-sources_shiboken2_libshiboken_pep384impl_h │ │ ├── patch-sources_shiboken2_libshiboken_signature_signature_cpp │ │ ├── patch-sources_shiboken2_libshiboken_signature_signature_helper_cpp │ │ ├── patch-sources_shiboken2_shibokenmodule_files_dir_shibokensupport_signature_errorhandler_py │ │ └── patch-sources_shiboken2_tests_samplebinding_enum_test_py │ ├── pkg │ │ ├── DESCR-main │ │ ├── DESCR-shiboken │ │ ├── PLIST-main │ │ └── PLIST-shiboken │ └── x11-qt5-qtbase.patch ├── py-stevedore │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-test-twisted │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-virtualenv-clone │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-widgetsnbextension │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── rapidjson │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ ├── patch-example_CMakeLists_txt │ │ └── patch-test_unittest_CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── re2 │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── riscv-isa-sim │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── rizin │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-librz_analysis_p_analysis_mips_cs_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-actionpack │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-activemodel │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-activesupport │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-hike │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-i18n │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-journey │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-paper_trail │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-rdoc │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-sprockets │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-tzinfo │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── scc │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── sdl3 │ ├── BUILD.log │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-CMakeLists_txt │ ├── pkg │ │ ├── DESCR │ │ └── PLIST │ └── test.log ├── socket_wrapper │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── task │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── thrift │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ └── DESCR ├── tokei │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── twintk │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── uid_wrapper │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── vim-command-t │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-ruby_command-t_watchman_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── z88dk │ ├── Makefile │ ├── distinfo │ ├── patches │ ├── patch-Makefile │ ├── patch-build_sh │ ├── patch-src_sccz80_Makefile │ └── patch-src_ticks_Makefile │ └── pkg │ ├── DESCR │ └── PLIST ├── editors ├── ape │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── libreoffice │ ├── Makefile │ ├── distinfo │ ├── files │ │ └── soffice.sh │ ├── patches │ │ ├── patch-RepositoryExternal_mk │ │ ├── patch-basic_source_classes_sbxmod_cxx │ │ ├── patch-basic_source_runtime_methods_cxx │ │ ├── patch-bean_Library_officebean_mk │ │ ├── patch-bridges_Library_cpp_uno_mk │ │ ├── patch-bridges_source_cpp_uno_gcc3_linux_intel_share_hxx │ │ ├── patch-clucene_configs__clucene-config-OPENBSD_h │ │ ├── patch-configure │ │ ├── patch-connectivity_Executable_mork_helper_mk │ │ ├── patch-connectivity_Library_mysqlc_mk │ │ ├── patch-cppunit_openbsd-cppunit_patch │ │ ├── patch-desktop_Executable_oosplash_mk │ │ ├── patch-desktop_Executable_soffice_bin_mk │ │ ├── patch-desktop_source_app_app_cxx │ │ ├── patch-desktop_unx_source_pagein_c │ │ ├── patch-external_coinmp_ExternalPackage_coinmp_mk │ │ ├── patch-external_cppunit_ExternalProject_cppunit_mk │ │ ├── patch-external_cppunit_UnpackedTarball_cppunit_mk │ │ ├── patch-external_cppunit_openbsd-cppunit_patch_0 │ │ ├── patch-external_libetonyek_ExternalPackage_libetonyek_mk │ │ ├── patch-external_libetonyek_ExternalProject_libetonyek_mk │ │ ├── patch-external_libexttextcat_UnpackedTarball_libexttextcat_mk │ │ ├── patch-external_libexttextcat_openbsd_patch │ │ ├── patch-external_libfreehand_ExternalProject_libfreehand_mk │ │ ├── patch-external_liblangtag_ExternalPackage_liblangtag_mk │ │ ├── patch-external_liblangtag_ExternalProject_liblangtag_mk │ │ ├── patch-external_libmspub_ExternalProject_libmspub_mk │ │ ├── patch-external_libmwaw_ExternalPackage_libmwaw_mk │ │ ├── patch-external_libmwaw_ExternalProject_libmwaw_mk │ │ ├── patch-external_libodfgen_ExternalPackage_libodfgen_mk │ │ ├── patch-external_libodfgen_ExternalProject_libodfgen_mk │ │ ├── patch-external_liborcus_ExternalPackage_liborcus_mk │ │ ├── patch-external_liborcus_ExternalProject_liborcus_mk │ │ ├── patch-external_liborcus_openbsd_patch │ │ ├── patch-external_libpagemaker_ExternalProject_libpagemaker_mk │ │ ├── patch-external_libqxp_UnpackedTarball_libqxp_mk │ │ ├── patch-external_libqxp_fabs_patch │ │ ├── patch-external_librevenge_ExternalPackage_librevenge_mk │ │ ├── patch-external_libstaroffice_ExternalPackage_libstaroffice_mk │ │ ├── patch-external_libstaroffice_ExternalProject_libstaroffice_mk │ │ ├── patch-external_libvisio_ExternalProject_libvisio_mk │ │ ├── patch-external_libwpd_ExternalPackage_libwpd_mk │ │ ├── patch-external_libwpd_ExternalProject_libwpd_mk │ │ ├── patch-external_libwpg_ExternalPackage_libwpg_mk │ │ ├── patch-external_libwpg_ExternalProject_libwpg_mk │ │ ├── patch-external_libwps_ExternalPackage_libwps_mk │ │ ├── patch-external_libwps_ExternalProject_libwps_mk │ │ ├── patch-external_lpsolve_UnpackedTarball_lpsolve_mk │ │ ├── patch-external_pdfium_UnpackedTarball_pdfium_mk │ │ ├── patch-external_pdfium_pdfium-openbsd_patch │ │ ├── patch-i18npool_source_collator_data_ko_charset_txt │ │ ├── patch-idl_source_objects_types_cxx │ │ ├── patch-include_osl_endian_h │ │ ├── patch-libexttextcat_openbsd_patch │ │ ├── patch-lpsolve_lp_solve-timeb_patch │ │ ├── patch-sal_cppunittester_cppunittester_cxx │ │ ├── patch-sal_osl_unx_sockimpl_hxx │ │ ├── patch-sal_osl_unx_system_hxx │ │ ├── patch-sal_osl_unx_thread_cxx │ │ ├── patch-sal_osl_unx_uunxapi_cxx │ │ ├── patch-sc_source_core_data_column3_cxx │ │ ├── patch-sc_source_core_data_types_cxx │ │ ├── patch-sdext_Module_sdext_mk │ │ ├── patch-shell_source_unix_exec_shellexec_cxx │ │ ├── patch-shell_source_unix_misc_senddoc_sh │ │ ├── patch-solenv_bin_ooinstall │ │ ├── patch-solenv_gbuild_platform_com_GCC_defs_mk │ │ ├── patch-solenv_gbuild_platform_unxgcc_mk │ │ ├── patch-svtools_Executable_langsupport_mk │ │ ├── patch-svx_Executable_gengal_mk │ │ ├── patch-sw_source_filter_ww8_ww8par_cxx │ │ ├── patch-sw_source_filter_ww8_ww8toolbar_cxx │ │ ├── patch-vcl_Library_desktop_detector_mk │ │ ├── patch-vcl_Library_vclplug_gen_mk │ │ ├── patch-vcl_Library_vclplug_gtk3_kde5_mk │ │ ├── patch-vcl_Library_vclplug_gtk3_mk │ │ ├── patch-vcl_Library_vclplug_gtk_mk │ │ ├── patch-vcl_Library_vclplug_kde5_mk │ │ ├── patch-vcl_Library_vclplug_qt5_mk │ │ ├── patch-vcl_StaticLibrary_glxtest_mk │ │ ├── patch-vcl_qt5_Qt5Instance_cxx │ │ ├── patch-vcl_source_app_svapp_cxx │ │ ├── patch-vcl_source_salmain_salmain_cxx │ │ ├── patch-vcl_unx_generic_app_geninst_cxx │ │ ├── patch-vcl_unx_generic_app_wmadaptor_cxx │ │ ├── patch-vcl_unx_kde5_KDE5SalInstance_cxx │ │ ├── patch-writerfilter_source_rtftok_rtfsprm_hxx │ │ └── patch-xmlsecurity_Executable_pdfverify_mk │ └── pkg │ │ ├── DESCR-i18n-ar │ │ ├── DESCR-i18n-bg │ │ ├── DESCR-i18n-ca │ │ ├── DESCR-i18n-de │ │ ├── DESCR-i18n-es │ │ ├── DESCR-i18n-fa │ │ ├── DESCR-i18n-fi │ │ ├── DESCR-i18n-fr │ │ ├── DESCR-i18n-hu │ │ ├── DESCR-i18n-it │ │ ├── DESCR-i18n-ja │ │ ├── DESCR-i18n-kk │ │ ├── DESCR-i18n-ko │ │ ├── DESCR-i18n-lt │ │ ├── DESCR-i18n-lv │ │ ├── DESCR-i18n-nl │ │ ├── DESCR-i18n-pl │ │ ├── DESCR-i18n-pt-br │ │ ├── DESCR-i18n-ru │ │ ├── DESCR-i18n-sl │ │ ├── DESCR-i18n-sv │ │ ├── DESCR-java │ │ ├── DESCR-kde │ │ ├── DESCR-main │ │ ├── PFRAG.no-no_java-i18n-ar │ │ ├── PFRAG.no-no_java-i18n-bg │ │ ├── PFRAG.no-no_java-i18n-ca │ │ ├── PFRAG.no-no_java-i18n-de │ │ ├── PFRAG.no-no_java-i18n-es │ │ ├── PFRAG.no-no_java-i18n-fa │ │ ├── PFRAG.no-no_java-i18n-fi │ │ ├── PFRAG.no-no_java-i18n-fr │ │ ├── PFRAG.no-no_java-i18n-hu │ │ ├── PFRAG.no-no_java-i18n-it │ │ ├── PFRAG.no-no_java-i18n-kk │ │ ├── PFRAG.no-no_java-i18n-lt │ │ ├── PFRAG.no-no_java-i18n-lv │ │ ├── PFRAG.no-no_java-i18n-nl │ │ ├── PFRAG.no-no_java-i18n-pl │ │ ├── PFRAG.no-no_java-i18n-pt-br │ │ ├── PFRAG.no-no_java-i18n-ru │ │ ├── PFRAG.no-no_java-i18n-sl │ │ ├── PFRAG.no-no_java-i18n-sv │ │ ├── PLIST-i18n-ar │ │ ├── PLIST-i18n-bg │ │ ├── PLIST-i18n-ca │ │ ├── PLIST-i18n-de │ │ ├── PLIST-i18n-es │ │ ├── PLIST-i18n-fa │ │ ├── PLIST-i18n-fi │ │ ├── PLIST-i18n-fr │ │ ├── PLIST-i18n-hu │ │ ├── PLIST-i18n-it │ │ ├── PLIST-i18n-kk │ │ ├── PLIST-i18n-lt │ │ ├── PLIST-i18n-lv │ │ ├── PLIST-i18n-nl │ │ ├── PLIST-i18n-pl │ │ ├── PLIST-i18n-pt-br │ │ ├── PLIST-i18n-ru │ │ ├── PLIST-i18n-sl │ │ ├── PLIST-i18n-sv │ │ ├── PLIST-java │ │ ├── PLIST-kde │ │ └── PLIST-main ├── mined │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── treesheets │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ └── patch-CMakeLists_txt │ └── pkg │ ├── DESCR │ └── PLIST ├── education └── avogadro │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ ├── patch-CMakeLists_txt │ ├── patch-avogadro_src_CMakeLists_txt │ ├── patch-cmake_modules_FindLinguist_cmake │ ├── patch-doc_CMakeLists_txt │ ├── patch-libavogadro_src_CMakeLists_txt │ ├── patch-libavogadro_src_extensions_surfaces_openqube_gaussianset_cpp │ └── patch-libavogadro_src_glwidget_h │ └── pkg │ ├── DESCR │ ├── PFRAG.shared │ └── PLIST ├── emulators ├── 86Box │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-src_codegen_codegen_x86-64_c │ │ ├── patch-src_codegen_codegen_x86_c │ │ └── patch-src_unix_unix_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── bsnes │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-hiro_GNUmakefile │ │ ├── patch-libco_amd64_c │ │ ├── patch-nall_GNUmakefile │ │ ├── patch-nall_inode_hpp │ │ └── patch-ruby_GNUmakefile │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── gns3-gui │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-gns3_settings_py │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── lime3ds │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ ├── patch-externals_dynarmic_CMakeLists_txt │ │ ├── patch-src_common_aarch64_cpu_detect_cpp │ │ └── patch-src_common_dynamic_library_dynamic_library_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── m64py │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-src_m64py_loader_py │ │ └── patch-src_m64py_platform_py │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── melonds │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ └── patch-src_frontend_duckstation_gl_context_egl_wayland_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── pcem │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-configure_ac │ │ ├── patch-src_codegen_allocator_c │ │ ├── patch-src_codegen_backend_arm64_c │ │ ├── patch-src_codegen_backend_arm_c │ │ ├── patch-src_codegen_backend_x86-64_c │ │ ├── patch-src_codegen_backend_x86_c │ │ ├── patch-src_codegen_x86-64_c │ │ ├── patch-src_vid_voodoo_codegen_x86-64_h │ │ ├── patch-src_vid_voodoo_codegen_x86_h │ │ ├── patch-src_wx-sdl2_c │ │ └── patch-src_wx-thread_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── wine │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ ├── patch-dlls_nsiproxy_sys_ip_c │ ├── patch-dlls_nsiproxy_sys_tcp_c │ ├── patch-dlls_nsiproxy_sys_udp_c │ ├── patch-dlls_ntdll_unix_loader_c │ ├── patch-dlls_ntdll_unix_server_c │ ├── patch-dlls_ntdll_unix_signal_x86_64_c │ ├── patch-dlls_ntdll_unix_socket_c │ ├── patch-dlls_ws2_32_unixlib_c │ └── patch-include_winnt_h │ └── pkg │ ├── DESCR │ └── PLIST ├── fonts ├── cascadia-code │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── iosevka-fonts │ ├── Makefile │ ├── Makefile.inc │ └── default │ │ ├── Makefile │ │ ├── distinfo │ │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── juliamono │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── sudo-font │ ├── Makefile │ ├── distinfo │ └── pkg │ ├── DESCR │ └── PLIST ├── games ├── 7kaa │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR-data │ │ ├── DESCR-main │ │ ├── PLIST-data │ │ ├── PLIST-main │ │ └── README-main ├── cosmo-engine │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── doom64ex │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-include_imp_util_Endian │ │ └── patch-src_engine_CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── fallout1-ce │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-src_movie_lib_cc │ │ ├── patch-src_plib_db_db_cc │ │ └── patch-third_party_fpattern_CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── fallout2-ce │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-src_file_find_cc │ │ └── patch-third_party_fpattern_CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── freeciv21 │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── good-robot │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-SteamLeaderboardMenu_cpp │ │ ├── patch-SteamLeaderboard_cpp │ │ ├── patch-main_cpp │ │ ├── patch-master_h │ │ ├── patch-render_h │ │ ├── patch-stb_vorbis_cpp │ │ ├── patch-steam_data_cpp │ │ ├── patch-steamworks_public_steam_steam_api_h │ │ └── patch-system_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hereticdata │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── liquidwar6 │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-src_Makefile_in │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── openage │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-buildsystem_HandleCXXOptions_cmake │ │ ├── patch-libopenage_CMakeLists_txt │ │ ├── patch-libopenage_error_handlers_cpp │ │ ├── patch-libopenage_util_os_cpp │ │ ├── patch-libopenage_util_pty_h │ │ └── patch-openage_default_dirs_py │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── opendungeons │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ ├── patch-source_utils_Helper_cpp │ │ └── patch-source_utils_Helper_h │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── opengothic │ ├── BUILD │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ ├── patch-lib_Tempest_Engine_CMakeLists_txt │ │ └── patch-lib_Tempest_Engine_sound_sounddevice_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── openhexagon │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── openrw │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── openspades │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-Resources_CMakeLists_txt │ │ ├── patch-Sources_AngelScript_include_angelscript_h │ │ └── patch-Sources_AngelScript_source_as_callfunc_x64_gcc_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── opentesarena │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── pokerth │ ├── Makefile │ ├── UPDATE │ ├── distinfo │ ├── patches │ │ ├── patch-pokerth_desktop │ │ ├── patch-src_game_defs_h │ │ └── patch-src_gui_qt6-qml_CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── prismlauncher │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-launcher_minecraft_LaunchProfile_cpp │ │ ├── patch-launcher_minecraft_MinecraftInstance_cpp │ │ ├── patch-launcher_ui_pages_global_AccountListPage_cpp │ │ ├── patch-libraries_javacheck_CMakeLists_txt │ │ └── patch-libraries_launcher_CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── raceintospace │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-Makefile_in │ │ ├── patch-options_c │ │ ├── patch-port_c │ │ ├── patch-prefs_c │ │ └── patch-put-data │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── regoth │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ ├── patch-lib_bgfx-cmake_bgfx_examples_common_nanovg_fontstash_h │ │ ├── patch-lib_bgfx-cmake_bx_include_bx_bx_h │ │ ├── patch-lib_bgfx-cmake_bx_src_allocator_cpp │ │ └── patch-lib_bgfx-cmake_bx_src_mutex_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── reminiscence │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-Makefile │ │ ├── patch-README_txt │ │ └── patch-main_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── retrobattle │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-src_Makefile │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── runelite │ ├── Makefile │ ├── distinfo │ ├── files │ │ ├── runelite.desktop │ │ └── runelite.sh │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── secondlife │ ├── FL-1.13.3.57876 │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ ├── patch-indra_Makefile │ │ │ ├── patch-indra_Makefile_inc │ │ │ ├── patch-indra_Makefile_llinc │ │ │ ├── patch-indra_SConstruct │ │ │ ├── patch-indra_linux_crash_logger_linux_crash_logger_cpp │ │ │ ├── patch-indra_llaudio_Makefile │ │ │ ├── patch-indra_llcharacter_Makefile │ │ │ ├── patch-indra_llcommon_Makefile │ │ │ ├── patch-indra_llcommon_linden_common_h │ │ │ ├── patch-indra_llcommon_llapr_h │ │ │ ├── patch-indra_llcommon_lldate_cpp │ │ │ ├── patch-indra_llcommon_llerrorbuffer_cpp │ │ │ ├── patch-indra_llcommon_llfasttimer_cpp │ │ │ ├── patch-indra_llcommon_llfile_cpp │ │ │ ├── patch-indra_llcommon_llhash_h │ │ │ ├── patch-indra_llcommon_llpagemem_h │ │ │ ├── patch-indra_llcommon_llpreprocessor_h │ │ │ ├── patch-indra_llcommon_llprocessor_cpp │ │ │ ├── patch-indra_llcommon_llsdserialize_cpp │ │ │ ├── patch-indra_llcommon_llsdserialize_xml_cpp │ │ │ ├── patch-indra_llcommon_llstring_h │ │ │ ├── patch-indra_llcommon_llsys_cpp │ │ │ ├── patch-indra_llcommon_llthread_h │ │ │ ├── patch-indra_llcommon_lltimer_cpp │ │ │ ├── patch-indra_llimage_Makefile │ │ │ ├── patch-indra_llimage_llimagej2c_cpp │ │ │ ├── patch-indra_llimage_llimagejpeg_h │ │ │ ├── patch-indra_llimagej2coj_Makefile │ │ │ ├── patch-indra_llimagej2coj_llimagej2coj_cpp │ │ │ ├── patch-indra_llimagej2coj_llimagej2coj_h │ │ │ ├── patch-indra_llinventory_Makefile │ │ │ ├── patch-indra_llmath_Makefile │ │ │ ├── patch-indra_llmath_llmath_h │ │ │ ├── patch-indra_llmath_llrand_h │ │ │ ├── patch-indra_llmath_lluuid_cpp │ │ │ ├── patch-indra_llmedia_Makefile │ │ │ ├── patch-indra_llmessage_Makefile │ │ │ ├── patch-indra_llmessage_llbuffer_h │ │ │ ├── patch-indra_llmessage_llfiltersd2xmlrpc_cpp │ │ │ ├── patch-indra_llmessage_llhttpassetstorage_cpp │ │ │ ├── patch-indra_llmessage_lliopipe_h │ │ │ ├── patch-indra_llmessage_lliosocket_h │ │ │ ├── patch-indra_llmessage_llmail_cpp │ │ │ ├── patch-indra_llmessage_llpumpio_cpp │ │ │ ├── patch-indra_llmessage_llpumpio_h │ │ │ ├── patch-indra_llmessage_llurlrequest_cpp │ │ │ ├── patch-indra_llmessage_message_cpp │ │ │ ├── patch-indra_llprimitive_Makefile │ │ │ ├── patch-indra_llrender_Makefile │ │ │ ├── patch-indra_llui_Makefile │ │ │ ├── patch-indra_llvfs_Makefile │ │ │ ├── patch-indra_llvfs_files_openbsd4_lst │ │ │ ├── patch-indra_llwindow_Makefile │ │ │ ├── patch-indra_llwindow_files_openbsd4_lst │ │ │ ├── patch-indra_llwindow_llgl_cpp │ │ │ ├── patch-indra_llwindow_llglheaders_h │ │ │ ├── patch-indra_llwindow_llwindowsdl_cpp │ │ │ ├── patch-indra_llxml_Makefile │ │ │ ├── patch-indra_llxml_llxmlnode_h │ │ │ ├── patch-indra_llxml_llxmlparser_h │ │ │ ├── patch-indra_lscript_Makefile │ │ │ ├── patch-indra_newview_Makefile │ │ │ ├── patch-indra_newview_gpu_table_txt │ │ │ ├── patch-indra_newview_linux_tools_client-manifest-i686-bsd │ │ │ ├── patch-indra_newview_linux_tools_package-client_sh │ │ │ ├── patch-indra_newview_linux_tools_wrapper_sh │ │ │ ├── patch-indra_newview_llcontroldef_cpp │ │ │ ├── patch-indra_newview_llfloateranimpreview_cpp │ │ │ ├── patch-indra_newview_llfloaterimagepreview_cpp │ │ │ ├── patch-indra_newview_llfloaternamedesc_cpp │ │ │ ├── patch-indra_newview_llfloaterreporter_cpp │ │ │ ├── patch-indra_newview_llgesturemgr_cpp │ │ │ ├── patch-indra_newview_llinventorymodel_cpp │ │ │ ├── patch-indra_newview_llselectmgr_cpp │ │ │ ├── patch-indra_newview_llstartup_cpp │ │ │ ├── patch-indra_newview_lluserauth_cpp │ │ │ ├── patch-indra_newview_llviewerjointmesh_cpp │ │ │ ├── patch-indra_newview_llviewermenu_cpp │ │ │ ├── patch-indra_newview_llviewerobjectlist_cpp │ │ │ ├── patch-indra_newview_llviewerwindow_cpp │ │ │ ├── patch-indra_newview_llwindebug_cpp │ │ │ ├── patch-indra_newview_moviemaker_h │ │ │ ├── patch-indra_newview_pipeline_cpp │ │ │ ├── patch-indra_newview_viewer_cpp │ │ │ ├── patch-indra_test_io_cpp │ │ │ └── patch-indra_test_test_cpp │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── FL-1.13.3.58018 │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ ├── patch-indra_Makefile │ │ │ ├── patch-indra_Makefile_inc │ │ │ ├── patch-indra_Makefile_llinc │ │ │ ├── patch-indra_SConstruct │ │ │ ├── patch-indra_linux_crash_logger_linux_crash_logger_cpp │ │ │ ├── patch-indra_llaudio_Makefile │ │ │ ├── patch-indra_llcharacter_Makefile │ │ │ ├── patch-indra_llcommon_Makefile │ │ │ ├── patch-indra_llcommon_linden_common_h │ │ │ ├── patch-indra_llcommon_llapr_h │ │ │ ├── patch-indra_llcommon_lldate_cpp │ │ │ ├── patch-indra_llcommon_llerrorbuffer_cpp │ │ │ ├── patch-indra_llcommon_llfasttimer_cpp │ │ │ ├── patch-indra_llcommon_llfile_cpp │ │ │ ├── patch-indra_llcommon_llhash_h │ │ │ ├── patch-indra_llcommon_llpagemem_h │ │ │ ├── patch-indra_llcommon_llpreprocessor_h │ │ │ ├── patch-indra_llcommon_llprocessor_cpp │ │ │ ├── patch-indra_llcommon_llsdserialize_cpp │ │ │ ├── patch-indra_llcommon_llsdserialize_xml_cpp │ │ │ ├── patch-indra_llcommon_llstring_h │ │ │ ├── patch-indra_llcommon_llsys_cpp │ │ │ ├── patch-indra_llcommon_llthread_h │ │ │ ├── patch-indra_llcommon_lltimer_cpp │ │ │ ├── patch-indra_llimage_Makefile │ │ │ ├── patch-indra_llimage_llimagej2c_cpp │ │ │ ├── patch-indra_llimage_llimagejpeg_h │ │ │ ├── patch-indra_llimagej2coj_Makefile │ │ │ ├── patch-indra_llimagej2coj_llimagej2coj_cpp │ │ │ ├── patch-indra_llimagej2coj_llimagej2coj_h │ │ │ ├── patch-indra_llinventory_Makefile │ │ │ ├── patch-indra_llmath_Makefile │ │ │ ├── patch-indra_llmath_llmath_h │ │ │ ├── patch-indra_llmath_llrand_h │ │ │ ├── patch-indra_llmath_lluuid_cpp │ │ │ ├── patch-indra_llmedia_Makefile │ │ │ ├── patch-indra_llmessage_Makefile │ │ │ ├── patch-indra_llmessage_llbuffer_h │ │ │ ├── patch-indra_llmessage_llfiltersd2xmlrpc_cpp │ │ │ ├── patch-indra_llmessage_llhttpassetstorage_cpp │ │ │ ├── patch-indra_llmessage_lliopipe_h │ │ │ ├── patch-indra_llmessage_lliosocket_h │ │ │ ├── patch-indra_llmessage_llmail_cpp │ │ │ ├── patch-indra_llmessage_llpumpio_cpp │ │ │ ├── patch-indra_llmessage_llpumpio_h │ │ │ ├── patch-indra_llmessage_llurlrequest_cpp │ │ │ ├── patch-indra_llmessage_message_cpp │ │ │ ├── patch-indra_llprimitive_Makefile │ │ │ ├── patch-indra_llrender_Makefile │ │ │ ├── patch-indra_llui_Makefile │ │ │ ├── patch-indra_llvfs_Makefile │ │ │ ├── patch-indra_llvfs_files_openbsd4_lst │ │ │ ├── patch-indra_llwindow_Makefile │ │ │ ├── patch-indra_llwindow_files_openbsd4_lst │ │ │ ├── patch-indra_llwindow_llgl_cpp │ │ │ ├── patch-indra_llwindow_llglheaders_h │ │ │ ├── patch-indra_llwindow_llwindowsdl_cpp │ │ │ ├── patch-indra_llxml_Makefile │ │ │ ├── patch-indra_llxml_llxmlnode_h │ │ │ ├── patch-indra_llxml_llxmlparser_h │ │ │ ├── patch-indra_lscript_Makefile │ │ │ ├── patch-indra_newview_Makefile │ │ │ ├── patch-indra_newview_gpu_table_txt │ │ │ ├── patch-indra_newview_linux_tools_client-manifest-i686-bsd │ │ │ ├── patch-indra_newview_linux_tools_package-client_sh │ │ │ ├── patch-indra_newview_linux_tools_wrapper_sh │ │ │ ├── patch-indra_newview_llcontroldef_cpp │ │ │ ├── patch-indra_newview_llfloateranimpreview_cpp │ │ │ ├── patch-indra_newview_llfloaterimagepreview_cpp │ │ │ ├── patch-indra_newview_llfloaternamedesc_cpp │ │ │ ├── patch-indra_newview_llfloaterreporter_cpp │ │ │ ├── patch-indra_newview_llgesturemgr_cpp │ │ │ ├── patch-indra_newview_llinventorymodel_cpp │ │ │ ├── patch-indra_newview_llselectmgr_cpp │ │ │ ├── patch-indra_newview_llstartup_cpp │ │ │ ├── patch-indra_newview_lluserauth_cpp │ │ │ ├── patch-indra_newview_llviewerjointmesh_cpp │ │ │ ├── patch-indra_newview_llviewermenu_cpp │ │ │ ├── patch-indra_newview_llviewerobjectlist_cpp │ │ │ ├── patch-indra_newview_llviewerwindow_cpp │ │ │ ├── patch-indra_newview_llwindebug_cpp │ │ │ ├── patch-indra_newview_moviemaker_h │ │ │ ├── patch-indra_newview_pipeline_cpp │ │ │ ├── patch-indra_newview_viewer_cpp │ │ │ ├── patch-indra_test_io_cpp │ │ │ └── patch-indra_test_test_cpp │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── FL-1.13.3.59558 │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ ├── patch-indra_Makefile │ │ │ ├── patch-indra_Makefile_inc │ │ │ ├── patch-indra_Makefile_llinc │ │ │ ├── patch-indra_SConstruct │ │ │ ├── patch-indra_linux_crash_logger_linux_crash_logger_cpp │ │ │ ├── patch-indra_llaudio_Makefile │ │ │ ├── patch-indra_llcharacter_Makefile │ │ │ ├── patch-indra_llcommon_Makefile │ │ │ ├── patch-indra_llcommon_linden_common_h │ │ │ ├── patch-indra_llcommon_llapr_h │ │ │ ├── patch-indra_llcommon_llbase64_cpp │ │ │ ├── patch-indra_llcommon_lldate_cpp │ │ │ ├── patch-indra_llcommon_llfasttimer_cpp │ │ │ ├── patch-indra_llcommon_llfile_cpp │ │ │ ├── patch-indra_llcommon_llhash_h │ │ │ ├── patch-indra_llcommon_llpagemem_h │ │ │ ├── patch-indra_llcommon_llpreprocessor_h │ │ │ ├── patch-indra_llcommon_llprocessor_cpp │ │ │ ├── patch-indra_llcommon_llsdserialize_cpp │ │ │ ├── patch-indra_llcommon_llsdserialize_xml_cpp │ │ │ ├── patch-indra_llcommon_llstring_h │ │ │ ├── patch-indra_llcommon_llsys_cpp │ │ │ ├── patch-indra_llcommon_llthread_h │ │ │ ├── patch-indra_llcommon_lltimer_cpp │ │ │ ├── patch-indra_llimage_Makefile │ │ │ ├── patch-indra_llimage_llimagej2c_cpp │ │ │ ├── patch-indra_llimage_llimagejpeg_h │ │ │ ├── patch-indra_llimagej2coj_Makefile │ │ │ ├── patch-indra_llimagej2coj_llimagej2coj_cpp │ │ │ ├── patch-indra_llinventory_Makefile │ │ │ ├── patch-indra_llmath_Makefile │ │ │ ├── patch-indra_llmath_llmath_h │ │ │ ├── patch-indra_llmath_llrand_h │ │ │ ├── patch-indra_llmath_lluuid_cpp │ │ │ ├── patch-indra_llmedia_Makefile │ │ │ ├── patch-indra_llmessage_Makefile │ │ │ ├── patch-indra_llmessage_llbuffer_h │ │ │ ├── patch-indra_llmessage_llfiltersd2xmlrpc_cpp │ │ │ ├── patch-indra_llmessage_llhttpassetstorage_cpp │ │ │ ├── patch-indra_llmessage_lliopipe_h │ │ │ ├── patch-indra_llmessage_lliosocket_h │ │ │ ├── patch-indra_llmessage_llmail_cpp │ │ │ ├── patch-indra_llmessage_llpumpio_cpp │ │ │ ├── patch-indra_llmessage_llpumpio_h │ │ │ ├── patch-indra_llmessage_llurlrequest_cpp │ │ │ ├── patch-indra_llmessage_message_cpp │ │ │ ├── patch-indra_llprimitive_Makefile │ │ │ ├── patch-indra_llrender_Makefile │ │ │ ├── patch-indra_llui_Makefile │ │ │ ├── patch-indra_llvfs_Makefile │ │ │ ├── patch-indra_llvfs_files_openbsd4_lst │ │ │ ├── patch-indra_llwindow_Makefile │ │ │ ├── patch-indra_llwindow_files_openbsd4_lst │ │ │ ├── patch-indra_llwindow_llgl_cpp │ │ │ ├── patch-indra_llwindow_llglheaders_h │ │ │ ├── patch-indra_llwindow_llwindowsdl_cpp │ │ │ ├── patch-indra_llxml_Makefile │ │ │ ├── patch-indra_llxml_llxmlnode_h │ │ │ ├── patch-indra_llxml_llxmlparser_h │ │ │ ├── patch-indra_lscript_Makefile │ │ │ ├── patch-indra_newview_Makefile │ │ │ ├── patch-indra_newview_gpu_table_txt │ │ │ ├── patch-indra_newview_linux_tools_client-manifest-i686-bsd │ │ │ ├── patch-indra_newview_linux_tools_wrapper_sh │ │ │ ├── patch-indra_newview_llcontroldef_cpp │ │ │ ├── patch-indra_newview_llfloateranimpreview_cpp │ │ │ ├── patch-indra_newview_llfloaterimagepreview_cpp │ │ │ ├── patch-indra_newview_llfloaternamedesc_cpp │ │ │ ├── patch-indra_newview_llfloaterreporter_cpp │ │ │ ├── patch-indra_newview_llgesturemgr_cpp │ │ │ ├── patch-indra_newview_llinventorymodel_cpp │ │ │ ├── patch-indra_newview_llselectmgr_cpp │ │ │ ├── patch-indra_newview_llstartup_cpp │ │ │ ├── patch-indra_newview_lluserauth_cpp │ │ │ ├── patch-indra_newview_llviewerjointmesh_cpp │ │ │ ├── patch-indra_newview_llviewermenu_cpp │ │ │ ├── patch-indra_newview_llviewerobjectlist_cpp │ │ │ ├── patch-indra_newview_llviewerwindow_cpp │ │ │ ├── patch-indra_newview_llwindebug_cpp │ │ │ ├── patch-indra_newview_moviemaker_h │ │ │ ├── patch-indra_newview_pipeline_cpp │ │ │ ├── patch-indra_newview_viewer_cpp │ │ │ ├── patch-indra_test_io_cpp │ │ │ └── patch-indra_test_test_cpp │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── Makefile.inc │ ├── R-1.18.4 │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ ├── patch-indra_Makefile │ │ │ ├── patch-indra_Makefile_inc │ │ │ ├── patch-indra_Makefile_llinc │ │ │ ├── patch-indra_linux_crash_logger_linux_crash_logger_cpp │ │ │ ├── patch-indra_llaudio_Makefile │ │ │ ├── patch-indra_llcharacter_Makefile │ │ │ ├── patch-indra_llcommon_Makefile │ │ │ ├── patch-indra_llcommon_linden_common_h │ │ │ ├── patch-indra_llcommon_llapr_h │ │ │ ├── patch-indra_llcommon_llares_cpp │ │ │ ├── patch-indra_llcommon_llbase64_cpp │ │ │ ├── patch-indra_llcommon_lldate_cpp │ │ │ ├── patch-indra_llcommon_llfasttimer_cpp │ │ │ ├── patch-indra_llcommon_llfile_cpp │ │ │ ├── patch-indra_llcommon_llhash_h │ │ │ ├── patch-indra_llcommon_llpreprocessor_h │ │ │ ├── patch-indra_llcommon_llprocessor_cpp │ │ │ ├── patch-indra_llcommon_llsdserialize_cpp │ │ │ ├── patch-indra_llcommon_llsdserialize_xml_cpp │ │ │ ├── patch-indra_llcommon_llstring_h │ │ │ ├── patch-indra_llcommon_llsys_cpp │ │ │ ├── patch-indra_llcommon_llthread_h │ │ │ ├── patch-indra_llcommon_lltimer_cpp │ │ │ ├── patch-indra_llcommon_stdtypes_h │ │ │ ├── patch-indra_llimage_Makefile │ │ │ ├── patch-indra_llimage_llimagej2c_cpp │ │ │ ├── patch-indra_llimage_llimagejpeg_h │ │ │ ├── patch-indra_llimagej2coj_Makefile │ │ │ ├── patch-indra_llimagej2coj_llimagej2coj_cpp │ │ │ ├── patch-indra_llinventory_Makefile │ │ │ ├── patch-indra_llmath_Makefile │ │ │ ├── patch-indra_llmath_llmath_h │ │ │ ├── patch-indra_llmath_llrand_h │ │ │ ├── patch-indra_llmath_lluuid_cpp │ │ │ ├── patch-indra_llmedia_Makefile │ │ │ ├── patch-indra_llmessage_Makefile │ │ │ ├── patch-indra_llmessage_llbuffer_h │ │ │ ├── patch-indra_llmessage_llfiltersd2xmlrpc_cpp │ │ │ ├── patch-indra_llmessage_llhttpassetstorage_cpp │ │ │ ├── patch-indra_llmessage_lliopipe_h │ │ │ ├── patch-indra_llmessage_lliosocket_h │ │ │ ├── patch-indra_llmessage_llmail_cpp │ │ │ ├── patch-indra_llmessage_llpumpio_cpp │ │ │ ├── patch-indra_llmessage_llpumpio_h │ │ │ ├── patch-indra_llmessage_llurlrequest_cpp │ │ │ ├── patch-indra_llmessage_message_cpp │ │ │ ├── patch-indra_llmessage_net_cpp │ │ │ ├── patch-indra_llprimitive_Makefile │ │ │ ├── patch-indra_llrender_Makefile │ │ │ ├── patch-indra_llui_Makefile │ │ │ ├── patch-indra_llvfs_Makefile │ │ │ ├── patch-indra_llvfs_files_openbsd4_lst │ │ │ ├── patch-indra_llwindow_Makefile │ │ │ ├── patch-indra_llwindow_files_openbsd4_lst │ │ │ ├── patch-indra_llwindow_llgl_cpp │ │ │ ├── patch-indra_llwindow_llglheaders_h │ │ │ ├── patch-indra_llwindow_llwindowsdl_cpp │ │ │ ├── patch-indra_llxml_Makefile │ │ │ ├── patch-indra_llxml_llxmlnode_h │ │ │ ├── patch-indra_llxml_llxmlparser_h │ │ │ ├── patch-indra_lscript_Makefile │ │ │ ├── patch-indra_newview_Makefile │ │ │ ├── patch-indra_newview_gpu_table_txt │ │ │ ├── patch-indra_newview_linux_tools_client-manifest-i686-bsd │ │ │ ├── patch-indra_newview_linux_tools_wrapper_sh │ │ │ ├── patch-indra_newview_llcontroldef_cpp │ │ │ ├── patch-indra_newview_lldirpicker_cpp │ │ │ ├── patch-indra_newview_lldirpicker_h │ │ │ ├── patch-indra_newview_llfilepicker_cpp │ │ │ ├── patch-indra_newview_llfloateranimpreview_cpp │ │ │ ├── patch-indra_newview_llfloaterimagepreview_cpp │ │ │ ├── patch-indra_newview_llfloaternamedesc_cpp │ │ │ ├── patch-indra_newview_llfloaterreporter_cpp │ │ │ ├── patch-indra_newview_llgesturemgr_cpp │ │ │ ├── patch-indra_newview_llselectmgr_cpp │ │ │ ├── patch-indra_newview_llstartup_cpp │ │ │ ├── patch-indra_newview_lluserauth_cpp │ │ │ ├── patch-indra_newview_llviewerjointmesh_cpp │ │ │ ├── patch-indra_newview_llviewermenu_cpp │ │ │ ├── patch-indra_newview_llviewerobjectlist_cpp │ │ │ ├── patch-indra_newview_llviewerwindow_cpp │ │ │ ├── patch-indra_newview_llwebbrowserctrl_cpp │ │ │ ├── patch-indra_newview_llwindebug_cpp │ │ │ ├── patch-indra_newview_llxmlrpctransaction_cpp │ │ │ ├── patch-indra_newview_moviemaker_h │ │ │ ├── patch-indra_newview_pipeline_cpp │ │ │ ├── patch-indra_newview_viewer_cpp │ │ │ ├── patch-indra_test_io_cpp │ │ │ └── patch-indra_test_test_cpp │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── R-1.18.5.3 │ │ ├── Makefile │ │ ├── distinfo │ │ ├── log2 │ │ ├── patches │ │ │ ├── patch-indra_Makefile │ │ │ ├── patch-indra_Makefile_inc │ │ │ ├── patch-indra_Makefile_llinc │ │ │ ├── patch-indra_linux_crash_logger_linux_crash_logger_cpp │ │ │ ├── patch-indra_llaudio_Makefile │ │ │ ├── patch-indra_llcharacter_Makefile │ │ │ ├── patch-indra_llcommon_Makefile │ │ │ ├── patch-indra_llcommon_linden_common_h │ │ │ ├── patch-indra_llcommon_llapr_h │ │ │ ├── patch-indra_llcommon_llares_cpp │ │ │ ├── patch-indra_llcommon_llbase64_cpp │ │ │ ├── patch-indra_llcommon_lldate_cpp │ │ │ ├── patch-indra_llcommon_llfasttimer_cpp │ │ │ ├── patch-indra_llcommon_llfile_cpp │ │ │ ├── patch-indra_llcommon_llhash_h │ │ │ ├── patch-indra_llcommon_llpreprocessor_h │ │ │ ├── patch-indra_llcommon_llprocessor_cpp │ │ │ ├── patch-indra_llcommon_llsdserialize_cpp │ │ │ ├── patch-indra_llcommon_llsdserialize_xml_cpp │ │ │ ├── patch-indra_llcommon_llstring_h │ │ │ ├── patch-indra_llcommon_llsys_cpp │ │ │ ├── patch-indra_llcommon_llthread_h │ │ │ ├── patch-indra_llcommon_lltimer_cpp │ │ │ ├── patch-indra_llcommon_stdtypes_h │ │ │ ├── patch-indra_llimage_Makefile │ │ │ ├── patch-indra_llimage_llimagej2c_cpp │ │ │ ├── patch-indra_llimage_llimagejpeg_h │ │ │ ├── patch-indra_llimagej2coj_Makefile │ │ │ ├── patch-indra_llimagej2coj_llimagej2coj_cpp │ │ │ ├── patch-indra_llinventory_Makefile │ │ │ ├── patch-indra_llmath_Makefile │ │ │ ├── patch-indra_llmath_llmath_h │ │ │ ├── patch-indra_llmath_llrand_h │ │ │ ├── patch-indra_llmath_lluuid_cpp │ │ │ ├── patch-indra_llmedia_Makefile │ │ │ ├── patch-indra_llmessage_Makefile │ │ │ ├── patch-indra_llmessage_llbuffer_h │ │ │ ├── patch-indra_llmessage_llfiltersd2xmlrpc_cpp │ │ │ ├── patch-indra_llmessage_llhttpassetstorage_cpp │ │ │ ├── patch-indra_llmessage_lliopipe_h │ │ │ ├── patch-indra_llmessage_lliosocket_h │ │ │ ├── patch-indra_llmessage_llmail_cpp │ │ │ ├── patch-indra_llmessage_llpumpio_cpp │ │ │ ├── patch-indra_llmessage_llpumpio_h │ │ │ ├── patch-indra_llmessage_llurlrequest_cpp │ │ │ ├── patch-indra_llmessage_message_cpp │ │ │ ├── patch-indra_llmessage_net_cpp │ │ │ ├── patch-indra_llprimitive_Makefile │ │ │ ├── patch-indra_llrender_Makefile │ │ │ ├── patch-indra_llui_Makefile │ │ │ ├── patch-indra_llvfs_Makefile │ │ │ ├── patch-indra_llvfs_files_openbsd4_lst │ │ │ ├── patch-indra_llwindow_Makefile │ │ │ ├── patch-indra_llwindow_files_openbsd4_lst │ │ │ ├── patch-indra_llwindow_llgl_cpp │ │ │ ├── patch-indra_llwindow_llglheaders_h │ │ │ ├── patch-indra_llwindow_llwindowsdl_cpp │ │ │ ├── patch-indra_llxml_Makefile │ │ │ ├── patch-indra_llxml_llxmlnode_h │ │ │ ├── patch-indra_llxml_llxmlparser_h │ │ │ ├── patch-indra_lscript_Makefile │ │ │ ├── patch-indra_newview_Makefile │ │ │ ├── patch-indra_newview_gpu_table_txt │ │ │ ├── patch-indra_newview_linux_tools_client-manifest-i686-bsd │ │ │ ├── patch-indra_newview_linux_tools_wrapper_sh │ │ │ ├── patch-indra_newview_llcontroldef_cpp │ │ │ ├── patch-indra_newview_lldirpicker_cpp │ │ │ ├── patch-indra_newview_lldirpicker_h │ │ │ ├── patch-indra_newview_llfilepicker_cpp │ │ │ ├── patch-indra_newview_llfloateranimpreview_cpp │ │ │ ├── patch-indra_newview_llfloaterimagepreview_cpp │ │ │ ├── patch-indra_newview_llfloaternamedesc_cpp │ │ │ ├── patch-indra_newview_llfloaterreporter_cpp │ │ │ ├── patch-indra_newview_llgesturemgr_cpp │ │ │ ├── patch-indra_newview_llselectmgr_cpp │ │ │ ├── patch-indra_newview_llstartup_cpp │ │ │ ├── patch-indra_newview_lluserauth_cpp │ │ │ ├── patch-indra_newview_llviewerjointmesh_cpp │ │ │ ├── patch-indra_newview_llviewermenu_cpp │ │ │ ├── patch-indra_newview_llviewerobjectlist_cpp │ │ │ ├── patch-indra_newview_llviewerwindow_cpp │ │ │ ├── patch-indra_newview_llvoiceclient_cpp │ │ │ ├── patch-indra_newview_llwebbrowserctrl_cpp │ │ │ ├── patch-indra_newview_llwindebug_cpp │ │ │ ├── patch-indra_newview_llxmlrpctransaction_cpp │ │ │ ├── patch-indra_newview_moviemaker_h │ │ │ ├── patch-indra_newview_pipeline_cpp │ │ │ ├── patch-indra_newview_viewer_cpp │ │ │ ├── patch-indra_test_io_cpp │ │ │ └── patch-indra_test_test_cpp │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ └── release │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ ├── patch-indra_Makefile │ │ ├── patch-indra_Makefile_inc │ │ ├── patch-indra_Makefile_llinc │ │ ├── patch-indra_SConstruct │ │ ├── patch-indra_linux_crash_logger_linux_crash_logger_cpp │ │ ├── patch-indra_llaudio_Makefile │ │ ├── patch-indra_llcharacter_Makefile │ │ ├── patch-indra_llcommon_Makefile │ │ ├── patch-indra_llcommon_linden_common_h │ │ ├── patch-indra_llcommon_llapr_h │ │ ├── patch-indra_llcommon_lldate_cpp │ │ ├── patch-indra_llcommon_llerrorbuffer_cpp │ │ ├── patch-indra_llcommon_llfasttimer_cpp │ │ ├── patch-indra_llcommon_llhash_h │ │ ├── patch-indra_llcommon_llpagemem_h │ │ ├── patch-indra_llcommon_llpreprocessor_h │ │ ├── patch-indra_llcommon_llprocessor_cpp │ │ ├── patch-indra_llcommon_llsdserialize_cpp │ │ ├── patch-indra_llcommon_llsdserialize_xml_cpp │ │ ├── patch-indra_llcommon_llstring_h │ │ ├── patch-indra_llcommon_llsys_cpp │ │ ├── patch-indra_llcommon_llthread_h │ │ ├── patch-indra_llcommon_lltimer_cpp │ │ ├── patch-indra_llimage_Makefile │ │ ├── patch-indra_llimage_llimagej2c_cpp │ │ ├── patch-indra_llimage_llimagejpeg_h │ │ ├── patch-indra_llimagej2coj_Makefile │ │ ├── patch-indra_llimagej2coj_llimagej2coj_cpp │ │ ├── patch-indra_llimagej2coj_llimagej2coj_h │ │ ├── patch-indra_llinventory_Makefile │ │ ├── patch-indra_llmath_Makefile │ │ ├── patch-indra_llmath_llmath_h │ │ ├── patch-indra_llmath_llrand_h │ │ ├── patch-indra_llmath_lluuid_cpp │ │ ├── patch-indra_llmedia_Makefile │ │ ├── patch-indra_llmessage_Makefile │ │ ├── patch-indra_llmessage_llbuffer_h │ │ ├── patch-indra_llmessage_llfiltersd2xmlrpc_cpp │ │ ├── patch-indra_llmessage_llhttpassetstorage_cpp │ │ ├── patch-indra_llmessage_lliopipe_h │ │ ├── patch-indra_llmessage_lliosocket_h │ │ ├── patch-indra_llmessage_llmail_cpp │ │ ├── patch-indra_llmessage_llpumpio_cpp │ │ ├── patch-indra_llmessage_llpumpio_h │ │ ├── patch-indra_llmessage_llurlrequest_cpp │ │ ├── patch-indra_llmessage_message_cpp │ │ ├── patch-indra_llprimitive_Makefile │ │ ├── patch-indra_llrender_Makefile │ │ ├── patch-indra_llui_Makefile │ │ ├── patch-indra_llvfs_Makefile │ │ ├── patch-indra_llvfs_files_openbsd4_lst │ │ ├── patch-indra_llwindow_Makefile │ │ ├── patch-indra_llwindow_files_openbsd4_lst │ │ ├── patch-indra_llwindow_llgl_cpp │ │ ├── patch-indra_llwindow_llglheaders_h │ │ ├── patch-indra_llwindow_llwindowsdl_cpp │ │ ├── patch-indra_llxml_Makefile │ │ ├── patch-indra_llxml_llxmlnode_h │ │ ├── patch-indra_llxml_llxmlparser_h │ │ ├── patch-indra_lscript_Makefile │ │ ├── patch-indra_newview_Makefile │ │ ├── patch-indra_newview_gpu_table_txt │ │ ├── patch-indra_newview_linux_tools_client-manifest-i686-bsd │ │ ├── patch-indra_newview_linux_tools_package-client_sh │ │ ├── patch-indra_newview_linux_tools_wrapper_sh │ │ ├── patch-indra_newview_llcontroldef_cpp │ │ ├── patch-indra_newview_llfloateranimpreview_cpp │ │ ├── patch-indra_newview_llfloaterimagepreview_cpp │ │ ├── patch-indra_newview_llfloaternamedesc_cpp │ │ ├── patch-indra_newview_llfloaterreporter_cpp │ │ ├── patch-indra_newview_llgesturemgr_cpp │ │ ├── patch-indra_newview_llinventorymodel_cpp │ │ ├── patch-indra_newview_llselectmgr_cpp │ │ ├── patch-indra_newview_llstartup_cpp │ │ ├── patch-indra_newview_lluserauth_cpp │ │ ├── patch-indra_newview_llviewerjointmesh_cpp │ │ ├── patch-indra_newview_llviewermenu_cpp │ │ ├── patch-indra_newview_llviewerobjectlist_cpp │ │ ├── patch-indra_newview_llviewerwindow_cpp │ │ ├── patch-indra_newview_llwindebug_cpp │ │ ├── patch-indra_newview_moviemaker_h │ │ ├── patch-indra_newview_pipeline_cpp │ │ ├── patch-indra_newview_viewer_cpp │ │ ├── patch-indra_test_io_cpp │ │ └── patch-indra_test_test_cpp │ │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── serioussam │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-SamTFE_Sources_Engine_Engine_cpp │ │ └── patch-SamTSE_Sources_Engine_Engine_cpp │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── slade │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── files │ │ └── slade │ ├── patches │ │ ├── patch-src_MainApp_cpp │ │ └── patch-src_zreaders_m_alloc_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── spring │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-AI_Skirmish_CircuitAI_CMakeLists_txt │ │ ├── patch-AI_Skirmish_CircuitAI_src_circuit_setup_SetupManager_cpp │ │ ├── patch-AI_Skirmish_CircuitAI_src_circuit_util_math_EncloseCircle_cpp │ │ ├── patch-CMakeLists_txt │ │ ├── patch-rts_CMakeLists_txt │ │ ├── patch-rts_Game_GameSetup_cpp │ │ ├── patch-rts_Lua_LuaUtils_cpp │ │ ├── patch-rts_Lua_LuaZip_cpp │ │ ├── patch-rts_Rendering_Env_Decals_DecalsDrawerGL4_cpp │ │ ├── patch-rts_Rendering_GlobalRendering_cpp │ │ ├── patch-rts_Sim_Misc_SimObjectIDPool_cpp │ │ ├── patch-rts_Sim_Path_Default_PathEstimator_cpp │ │ ├── patch-rts_Sim_Projectiles_ProjectileHandler_cpp │ │ ├── patch-rts_System_CMakeLists_txt │ │ ├── patch-rts_System_FileSystem_Archives_VirtualArchive_cpp │ │ ├── patch-rts_System_FileSystem_DataDirLocater_cpp │ │ ├── patch-rts_System_GlobalRNG_h │ │ ├── patch-rts_System_LoadSave_LuaLoadSaveHandler_cpp │ │ ├── patch-rts_System_Platform_Linux_CrashHandler_cpp │ │ ├── patch-rts_System_Platform_Linux_Futex_h │ │ ├── patch-rts_System_Platform_Linux_ThreadSupport_cpp │ │ ├── patch-rts_System_Platform_Linux_ThreadSupport_h │ │ ├── patch-rts_System_Platform_Misc_cpp │ │ ├── patch-rts_System_Platform_Threading_cpp │ │ ├── patch-rts_System_Platform_errorhandler_h │ │ ├── patch-rts_System_Threading_SpringThreading_h │ │ ├── patch-rts_lib_assimp_CMakeLists_txt │ │ ├── patch-rts_lib_assimp_code_CMakeLists_txt │ │ ├── patch-rts_lib_streflop_CMakeLists_txt │ │ ├── patch-test_CMakeLists_txt │ │ ├── patch-tools_pr-downloader_CMakeLists_txt │ │ └── patch-tools_pr-downloader_src_FileSystem_File_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── springlobby │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-src_address_cpp │ │ ├── patch-src_downloader_lib_src_FileSystem_File_cpp │ │ ├── patch-src_downloader_lib_src_lsl_lslunitsync_CMakeLists_txt │ │ └── patch-src_downloader_lib_src_lsl_lslunitsync_image_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── stuntrally │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ └── patch-source_vdrift_numprocessors_h │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── terasology │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-run_linux_sh │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── tic80 │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ └── patch-src_studio_screens_console_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── trackballs │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-share_icons_Makefile_in │ │ ├── patch-share_trackballs_6 │ │ ├── patch-src_ball_cc │ │ └── patch-src_enterHighScoreMode_h │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── tremulous │ ├── Makefile │ ├── distinfo │ ├── files │ │ ├── tremulous │ │ └── tremulous-server │ ├── patches │ │ ├── patch-Makefile │ │ ├── patch-scr_cmdlib │ │ ├── patch-scr_q3asm │ │ ├── patch-src-0003-Don-t-build-q3lcc │ │ ├── patch-src-0005-Fix-unaligned-access-issue │ │ ├── patch-src-0006-fix-abuse-of-strcpy-overlapping-source-and-dest │ │ ├── patch-src-0007-Fix-to-disappearing-cursor-on-map-load-Com_Error-bug │ │ ├── patch-src-0008-Fixed-sort-by-ping │ │ ├── patch-src-0010-CVE-2006-2082-do-not-allow-download-of-arbitrary-fil │ │ ├── patch-src-0011-CVE-2006-2236-add-bounds-checking-to-COM_StripExtens │ │ ├── patch-src-0012-CVE-2006-2875-fix-stack-buffer-overflow-in-CL_ParseD │ │ ├── patch-src-0013-CVE-2006-3324-fix-arbitrary-file-overwrite-on-client │ │ ├── patch-src-0014-CVE-2006-3325-fix-arbitrary-cvar-overwriting │ │ ├── patch-src-0015-CVE-2011-3012-CVE-2011-2764-backport-from-ioquake3-t │ │ ├── patch-src-0016-Always-behave-as-if-cl_allowDownload-was-false │ │ ├── patch-src-0017-Sys_Error-do-not-overflow-if-an-error-message-exceed │ │ ├── patch-src-0018-Avoid-non-literal-format-strings │ │ ├── patch-src-0019-Annotate-printf-and-scanf-like-functions-with-gcc-at │ │ ├── patch-src-0020-Rate-limit-getstatus-and-rcon-connectionless-request │ │ ├── patch-src_qcommon_q_platform_h │ │ ├── patch-src_renderer_qgl_h │ │ ├── patch-src_renderer_tr_types_h │ │ ├── patch-src_unix_unix_glw_h │ │ └── patch-src_vm_interpreted │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── xash3d │ ├── Makefile │ ├── TODO │ ├── bshift │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ │ └── blueshift.sh │ │ └── pkg │ │ │ ├── DESCR │ │ │ ├── PLIST │ │ │ └── README │ ├── engine │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ │ └── xash3d.sh │ │ ├── patches │ │ │ ├── patch-common_port_h │ │ │ └── patch-mainui_CMakeLists_txt │ │ └── pkg │ │ │ ├── DESCR │ │ │ ├── PLIST │ │ │ └── README │ ├── hl │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ │ └── halflife.sh │ │ └── pkg │ │ │ ├── DESCR │ │ │ ├── PLIST │ │ │ └── README │ └── opfor │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ └── opposingforce.sh │ │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README └── xoreos │ ├── Makefile │ ├── Makefile.inc │ ├── TODO │ ├── tools │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST │ └── xoreos │ ├── Makefile │ ├── distinfo │ └── pkg │ └── DESCR ├── geo ├── osmlr-tile-spec │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── osmpbf │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── valhalla │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── files │ └── locales.h │ ├── patches │ ├── patch-locales_make_locales_sh │ ├── patch-scripts_valhalla_build_elevation │ └── patch-src_mjolnir_valhalla_build_connectivity_cc │ └── pkg │ ├── DESCR │ └── PLIST ├── graphics ├── converseen │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── draco │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── luminance │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ ├── patch-build_files_Modules_CompilerSettings_cmake │ │ ├── patch-src_Common_CommonFunctions_cpp │ │ ├── patch-src_Common_archs_h_in │ │ ├── patch-test_TestMantiuk06Basic_cpp │ │ ├── patch-test_TestMantiuk06Pyramid_cpp │ │ └── patch-test_TestPfsRotate_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── mandelbulber2 │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-makefiles_mandelbulber_pro │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── openshadinglanguage │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-src_liboslexec_CMakeLists_txt │ │ ├── patch-src_shaders_CMakeLists_txt │ │ └── patch-src_shaders_MaterialX_CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── photoflare │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-PhotoFlare_pro │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── timg │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── xfractint │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-Makefile │ │ └── patch-headers_port_h │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── yagf │ ├── Makefile │ ├── distinfo │ ├── patches │ ├── patch-CMakeLists_txt │ ├── patch-src_core_qipblackandwhiteimage_cpp │ └── patch-src_core_qipblackandwhiteimage_h │ └── pkg │ ├── DESCR │ └── PLIST ├── lang ├── chibicc │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── cld3 │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── cowgol │ ├── Makefile │ ├── distinfo │ ├── files │ │ └── cowgolc.sh │ ├── patches │ │ ├── patch-Makefile │ │ ├── patch-src_build_lua │ │ ├── patch-third_party_emu2_src_dis_c │ │ ├── patch-third_party_emu2_src_main_c │ │ ├── patch-third_party_lemon_lemon-cowgol_c │ │ ├── patch-third_party_rc2014emu_6800_c │ │ ├── patch-third_party_zmac_build_lua │ │ ├── patch-toolchains_lua │ │ ├── patch-tools_cpmemu_fileio_c │ │ ├── patch-tools_fuzix6303emu_main_c │ │ ├── patch-tools_newgen_globals_h │ │ └── patch-tools_newgen_utils_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── emojicode │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ └── patch-utf8_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── flang │ └── f18 │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ └── patch-CMakeLists_txt │ │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── fpm │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-fpm-0_2_0_f90 │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── gnu-smalltalk │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-Makefile_in │ │ ├── patch-configure │ │ ├── patch-libgst_Makefile_in │ │ ├── patch-libgst_cint_c │ │ └── patch-libgst_sysdep_posix_timer_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hobbes │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-include_hobbes_eval_jitcc_H │ │ ├── patch-include_hobbes_storage_H │ │ ├── patch-include_hobbes_util_llvm_H │ │ ├── patch-lib_hobbes_eval_jitcc_C │ │ └── patch-lib_hobbes_util_str_C │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── lci │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ldc-bootstrap │ ├── Makefile │ ├── distinfo │ └── patches │ │ ├── patch-runtime_druntime_src_core_runtime_d │ │ ├── patch-runtime_druntime_src_core_stdc_config_d │ │ ├── patch-runtime_druntime_src_core_stdc_errno_d │ │ ├── patch-runtime_druntime_src_core_stdc_fenv_d │ │ ├── patch-runtime_druntime_src_core_stdc_locale_d │ │ ├── patch-runtime_druntime_src_core_stdc_math_d │ │ ├── patch-runtime_druntime_src_core_stdc_stdio_d │ │ ├── patch-runtime_druntime_src_core_stdc_stdlib_d │ │ ├── patch-runtime_druntime_src_core_stdc_string_d │ │ ├── patch-runtime_druntime_src_core_stdc_time_d │ │ ├── patch-runtime_druntime_src_core_stdc_wchar__d │ │ ├── patch-runtime_druntime_src_core_sys_openbsd_dlfcn_d │ │ ├── patch-runtime_druntime_src_core_sys_openbsd_execinfo_d │ │ ├── patch-runtime_druntime_src_core_sys_openbsd_pthread_np_d │ │ ├── patch-runtime_druntime_src_core_sys_openbsd_sys_cdefs_d │ │ ├── patch-runtime_druntime_src_core_sys_openbsd_sys_elf32_d │ │ ├── patch-runtime_druntime_src_core_sys_openbsd_sys_elf64_d │ │ ├── patch-runtime_druntime_src_core_sys_openbsd_sys_elf_common_d │ │ ├── patch-runtime_druntime_src_core_sys_openbsd_sys_elf_d │ │ ├── patch-runtime_druntime_src_core_sys_openbsd_sys_event_d │ │ ├── patch-runtime_druntime_src_core_sys_openbsd_sys_link_elf_d │ │ ├── patch-runtime_druntime_src_core_sys_openbsd_sys_mman_d │ │ ├── patch-runtime_druntime_src_core_sys_openbsd_sys_types_d │ │ ├── patch-runtime_druntime_src_core_sys_openbsd_time_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_arpa_inet_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_dirent_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_dlfcn_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_fcntl_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_grp_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_net_if__d │ │ ├── patch-runtime_druntime_src_core_sys_posix_netdb_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_netinet_in__d │ │ ├── patch-runtime_druntime_src_core_sys_posix_netinet_tcp_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_poll_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_pthread_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_pwd_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sched_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_semaphore_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_setjmp_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_signal_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_stdio_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_stdlib_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sys_ioctl_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sys_ipc_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sys_mman_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sys_resource_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sys_select_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sys_shm_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sys_socket_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sys_stat_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sys_time_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sys_types_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sys_uio_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sys_un_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sys_utsname_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_sys_wait_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_time_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_unistd_d │ │ ├── patch-runtime_druntime_src_core_sys_posix_utime_d │ │ ├── patch-runtime_druntime_src_core_thread_d │ │ ├── patch-runtime_druntime_src_core_time_d │ │ ├── patch-runtime_druntime_src_rt_dmain2_d │ │ ├── patch-runtime_druntime_src_rt_sections_d │ │ ├── patch-runtime_druntime_src_rt_sections_elf_shared_d │ │ ├── patch-runtime_druntime_src_rt_sections_ldc_d │ │ ├── patch-runtime_phobos_std_parallelism_d │ │ ├── patch-runtime_phobos_std_socket_d │ │ └── patch-runtime_phobos_std_stdio_d ├── ldc │ ├── Makefile │ └── distinfo ├── lfortran │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-cmake_UserOverride_cmake │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── lily │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-src_CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── never │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── nwcc │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-Makefile_skel │ │ ├── patch-builtins_c │ │ ├── patch-cc1_main_c │ │ └── patch-cc_main_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── owl-lisp │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── pharo │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── picolisp │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-bin_pil │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── pypy │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-lib_pypy__cffi_ssl__cffi_src_openssl_crypto_py │ │ ├── patch-lib_pypy__cffi_ssl__cffi_src_openssl_ct_py │ │ ├── patch-lib_pypy__cffi_ssl__cffi_src_openssl_dh_py │ │ ├── patch-lib_pypy__cffi_ssl__cffi_src_openssl_evp_py │ │ ├── patch-lib_pypy__cffi_ssl__cffi_src_openssl_hmac_py │ │ ├── patch-lib_pypy__cffi_ssl__cffi_src_openssl_ocsp_py │ │ ├── patch-lib_pypy__cffi_ssl__cffi_src_openssl_ssl_py │ │ ├── patch-lib_pypy__cffi_ssl__cffi_src_openssl_x509_py │ │ ├── patch-lib_pypy__cffi_ssl__cffi_src_openssl_x509name_py │ │ ├── patch-lib_pypy__posixshmem_build_py │ │ ├── patch-lib_pypy__tkinter_tklib_build_py │ │ ├── patch-rpython_jit_backend_detect_cpu_py │ │ ├── patch-rpython_jit_backend_x86_detect_feature_py │ │ ├── patch-rpython_rlib_rmmap_py │ │ ├── patch-rpython_tool_udir_py │ │ └── patch-rpython_translator_platform_openbsd_py │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── python │ └── 3.11 │ │ ├── Makefile │ │ ├── TODO │ │ ├── distinfo │ │ ├── files │ │ └── CHANGES.OpenBSD │ │ ├── patches │ │ ├── patch-Modules__hashopenssl_c │ │ ├── patch-Python_fileutils_c │ │ └── patch-configure_ac │ │ └── pkg │ │ ├── DESCR-gdbm │ │ ├── DESCR-idle │ │ ├── DESCR-main │ │ ├── DESCR-tests │ │ ├── DESCR-tkinter │ │ ├── PLIST-gdbm │ │ ├── PLIST-idle │ │ ├── PLIST-main │ │ ├── PLIST-tests │ │ └── PLIST-tkinter ├── solidity │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-cmake_EthCompilerSettings_cmake │ │ └── patch-libsolidity_inlineasm_AsmParser_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── voc │ ├── Makefile │ ├── distinfo │ ├── patches │ ├── patch-src_compiler_extTools_Mod │ ├── patch-src_tools_make_addlibrary_sh │ ├── patch-src_tools_make_configure_c │ └── patch-src_tools_make_oberon_mk │ └── pkg │ ├── DESCR │ └── PLIST ├── mail ├── p5-Email-Outlook-Message │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── ruby-actionmailer │ ├── Makefile │ ├── distinfo │ └── pkg │ ├── DESCR │ └── PLIST ├── math ├── arb │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── atlas-math │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ └── DESCR ├── bcal │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-Makefile │ │ ├── patch-README_md │ │ ├── patch-bcal_1 │ │ └── patch-src_bcal_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── brial │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-bootstrap_sh │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── cfitsio │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-configure │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── cliquer │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── cryptominisat │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── eclib │ ├── Makefile │ ├── TODO │ └── distinfo ├── flint │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── flintqs │ ├── Makefile │ └── distinfo ├── m4ri │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-Makefile_in │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── octave │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-configure │ │ └── patch-scripts_pkg_private_configure_make_m │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── openblas │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-Makefile │ │ ├── patch-Makefile_install │ │ ├── patch-Makefile_system │ │ └── patch-exports_Makefile │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Math-Random-ISAAC-XS │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── pc │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-lattice │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-README │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-statsmodels │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── sagemath │ ├── Makefile │ ├── TODO │ └── distinfo └── superlu │ ├── Makefile │ ├── distinfo │ ├── patches │ ├── patch-SRC_CMakeLists_txt │ └── patch-TESTING_CMakeLists_txt │ └── pkg │ ├── DESCR │ └── PLIST ├── meta ├── Makefile.inc └── freenet │ ├── Makefile │ └── pkg │ ├── DESCR │ ├── PLIST │ └── README ├── misc ├── cdrdao │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-scsilib_RULES_i386-openbsd-cc_rul │ │ ├── patch-scsilib_RULES_rules1_top │ │ ├── patch-scsilib_RULES_rules_cnf │ │ ├── patch-scsilib_include_btorder_h │ │ ├── patch-scsilib_libscg_scsi-bsd_c │ │ ├── patch-trackdb_FormatConverter_cc │ │ └── patch-trackdb_FormatConverter_h │ └── pkg │ │ ├── DESCR │ │ ├── PFRAG.audio │ │ └── PLIST ├── grc │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── openbabel │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ └── patch-test_cml_sh │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Finance-Bank-Kraken │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Finance-BitStamp-API │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-Makefile_PL │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Finance-OFX │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Finance-QIF │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── p5-Palm-Keyring │ ├── Makefile │ ├── distinfo │ └── pkg │ ├── DESCR │ └── PLIST ├── multimedia ├── aegisub │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-automation_Makefile │ │ ├── patch-configure │ │ ├── patch-src_Makefile │ │ └── patch-tools_Makefile │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ffms2 │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── obs-studio │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── files │ │ ├── FindSndio.cmake │ │ └── sndio │ │ │ ├── CMakeLists.txt │ │ │ ├── data │ │ │ └── locale │ │ │ │ ├── en-US.ini │ │ │ │ └── ru-RU.ini │ │ │ ├── sndio-input.c │ │ │ ├── sndio-input.h │ │ │ └── sndio.c │ ├── patches │ │ ├── patch-libobs_CMakeLists_txt │ │ ├── patch-libobs_graphics_graphics_h │ │ ├── patch-plugins_CMakeLists_txt │ │ ├── patch-plugins_linux-jack_jack-input_c │ │ ├── patch-plugins_linux-v4l2_v4l2-controls_c │ │ ├── patch-plugins_linux-v4l2_v4l2-helpers_h │ │ ├── patch-plugins_linux-v4l2_v4l2-input_c │ │ └── patch-plugins_linux-v4l2_v4l2-output_c │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── olive │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-CMakeLists_txt │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-movie │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-moviepy_config_defaults_py │ │ └── patch-moviepy_editor_py │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── shotcut │ ├── Makefile │ ├── UPDATE │ ├── distinfo │ ├── patches │ │ ├── patch-src_CMakeLists_txt │ │ ├── patch-src_mainwindow_cpp │ │ └── patch-src_util_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── xuggler │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-configure │ │ ├── patch-csrc_com_xuggle_Makefile_dependencies_in │ │ ├── patch-csrc_com_xuggle_Makefile_in │ │ ├── patch-csrc_com_xuggle_xuggler_Codec_cpp │ │ ├── patch-csrc_com_xuggle_xuggler_Codec_h │ │ ├── patch-csrc_com_xuggle_xuggler_Container_cpp │ │ ├── patch-csrc_com_xuggle_xuggler_StreamCoder_cpp │ │ ├── patch-csrc_com_xuggle_xuggler_StreamCoder_h │ │ ├── patch-csrc_com_xuggle_xuggler_Stream_cpp │ │ ├── patch-csrc_com_xuggle_xuggler_Stream_h │ │ ├── patch-mk_buildtools_Makefile_global_in │ │ ├── patch-mk_buildtools_build_properties │ │ ├── patch-mk_buildtools_buildhelper_xml │ │ ├── patch-mk_buildtools_install-build_sh │ │ └── patch-mk_buildtools_ivysettings_xml │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ytfzf │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-ytfzf │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── zoneminder │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── files │ └── zm_fbsd_camera.cpp │ ├── patches │ ├── patch-CMakeLists_txt │ ├── patch-cmake_Modules_Pod2Man_cmake │ ├── patch-docs_Makefile │ ├── patch-onvif_modules_CMakeLists_txt │ ├── patch-onvif_proxy_CMakeLists_txt │ ├── patch-scripts_ZoneMinder_CMakeLists_txt │ ├── patch-scripts_ZoneMinder_lib_ZoneMinder_Memory_pm_in │ ├── patch-src_zm_event_cpp │ ├── patch-src_zm_ffmpeg_camera_cpp │ ├── patch-src_zm_local_camera_cpp │ ├── patch-src_zm_local_camera_h │ ├── patch-src_zm_logger_cpp │ ├── patch-src_zm_monitor_cpp │ ├── patch-src_zm_mpeg_cpp │ ├── patch-src_zm_remote_camera_h │ ├── patch-src_zm_thread_cpp │ ├── patch-src_zm_thread_h │ ├── patch-src_zm_timer_h │ ├── patch-src_zmc_cpp │ ├── patch-src_zmu_cpp │ └── patch-zoneminder-config_cmake │ └── pkg │ ├── DESCR-main │ ├── DESCR-web │ ├── PLIST-main │ ├── PLIST-web │ └── README-main ├── net ├── R-curl │ ├── Makefile │ ├── distinfo │ ├── files │ │ └── install.R │ ├── patches │ │ └── patch-src_nslookup_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── abaddon │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── files │ │ └── abaddon │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ └── patch-src_platform_cpp │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── adguardhome │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── athens │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── athens.rc ├── ddgr │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── djbdns │ ├── Makefile │ ├── distinfo │ ├── files │ │ └── README.OpenBSD │ ├── patches │ │ ├── patch-Makefile │ │ ├── patch-dnscache-conf_c │ │ └── patch-hier_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── doggo │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── fetch │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-Makefile │ │ └── patch-fetch_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── freenet │ ├── Makefile │ ├── Makefile.inc │ ├── floghelper │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ └── patch-src_plugins_floghelper_data_Flog_java │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── fred │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ │ ├── freenet.ini.dist │ │ │ ├── run.sh │ │ │ └── wrapper.config │ │ ├── patches │ │ │ ├── patch-build_gradle │ │ │ └── patch-gradle_wrapper_gradle-wrapper_properties │ │ └── pkg │ │ │ ├── DESCR │ │ │ ├── PLIST │ │ │ └── freenet.rc │ ├── freemail │ │ ├── Makefile │ │ ├── distinfo │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── freereader │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ └── patch-build_xml │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── jstun │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ └── patch-build_xml │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── keepalive │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ ├── patch-build_gradle │ │ │ └── patch-src_keepalive_service_reinserter_Reinserter_java │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── keyutils │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ ├── patch-build_gradle │ │ │ └── patch-gradle_wrapper_gradle-wrapper_properties │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── library │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ └── patch-src_plugins_Library_search_Search_java │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── mdnsdiscovery │ │ ├── Makefile │ │ ├── distinfo │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── sharesite │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ └── patch-src_net_java_textilej_parser_markup_ContentState_java │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── snmp │ │ ├── Makefile │ │ ├── distinfo │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── spider │ │ ├── Makefile │ │ ├── distinfo │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── thawindexbrowser │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ └── patch-build_xml │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── upnp │ │ ├── Makefile │ │ ├── distinfo │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── upnp2 │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ ├── patch-build_gradle │ │ │ └── patch-gradle_wrapper_gradle-wrapper_properties │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ └── weboftrust │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ └── patch-build_xml │ │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── geoloc │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── gnunet │ ├── Makefile │ ├── Makefile.inc │ ├── base │ │ ├── Makefile │ │ ├── TODO │ │ ├── distinfo │ │ ├── patches │ │ │ ├── patch-configure_ac │ │ │ ├── patch-contrib_Makefile_in │ │ │ ├── patch-gnunet_config_h_in │ │ │ ├── patch-src_dns_Makefile_in │ │ │ └── patch-src_include_platform_h │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ ├── fuse │ │ ├── Makefile │ │ ├── distinfo │ │ └── pkg │ │ │ ├── DESCR │ │ │ └── PLIST │ └── gtk │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ ├── patch-mkinstalldirs │ │ ├── patch-pixmaps_icon-theme-installer │ │ └── patch-src_setup_gnunet-setup-transport_c │ │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── go-ethereum │ ├── Makefile │ ├── distinfo │ ├── files │ │ └── geth.conf │ ├── modules.inc │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── geth.rc ├── gokr-rsync │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ ├── patches │ │ ├── patch-internal_receivermaincmd_generatorsymlink_go │ │ └── patch-internal_receivermaincmd_receiverrenameio_go │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── googler │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── gurk-rs │ ├── Makefile │ ├── TODO │ ├── crates.inc │ ├── distinfo │ ├── files │ │ ├── config │ │ ├── create_vendor_tarball.sh │ │ └── notification.rs.patch │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── horst │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-capture-pcap_c │ │ ├── patch-display-statistics_c │ │ ├── patch-horst_conf │ │ ├── patch-main_c │ │ ├── patch-protocol_parser_c │ │ └── patch-util_h │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── icb │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ii │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ipxe │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-src_Makefile_housekeeping │ │ ├── patch-src_config_local_crypto_h │ │ ├── patch-src_config_local_general_h │ │ ├── patch-src_util_elf2efi_c │ │ └── patch-src_util_genfsimg │ └── pkg │ │ ├── DESCR │ │ ├── PFRAG.efi │ │ ├── PFRAG.pcbios │ │ └── PLIST ├── lbry-sdk │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── files │ │ └── daemon_settings.yml │ ├── patches │ │ └── patch-setup_py │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── lbrynet.rc ├── lft │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-lft_types_h │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── libfetch │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-Makefile │ │ ├── patch-common_c │ │ ├── patch-common_h │ │ ├── patch-fetch_c │ │ ├── patch-file_c │ │ ├── patch-ftp_c │ │ ├── patch-http_c │ │ └── patch-shlib_version │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── libtorrent │ ├── Makefile │ ├── UPDATE │ ├── distinfo │ ├── patches │ │ └── patch-src_torrent_net_socket_address_key_h │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── lith │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-Lith_pro │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── metronome │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-Makefile │ │ ├── patch-certs_Makefile │ │ ├── patch-metronome │ │ ├── patch-metronome_cfg_lua_dist │ │ ├── patch-metronomectl │ │ ├── patch-util_auxiliary_lua │ │ └── patch-util_metronomectl_lua │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ ├── README │ │ └── metronome.rc ├── microsocks │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-microsocks_1 │ │ └── patch-sockssrv_c │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── microsocks.rc ├── mongooseim │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-rel_files_ejabberd_cfg │ │ └── patch-rel_files_mongooseimctl │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ ├── README │ │ └── mongooseim.rc ├── munin3 │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── files │ │ ├── bgpd │ │ ├── if_pps_ │ │ ├── intr │ │ ├── openbsd-packages │ │ ├── pf_changes │ │ ├── pf_searches │ │ ├── pf_states │ │ ├── sensors_ │ │ └── vmstat │ ├── patches │ │ ├── patch-Build_PL │ │ ├── patch-Makefile_config │ │ ├── patch-etc_munin-node_conf_PL │ │ ├── patch-plugins_node_d_amavis │ │ ├── patch-plugins_node_d_courier_ │ │ ├── patch-plugins_node_d_exim_mailstats │ │ ├── patch-plugins_node_d_mailscanner │ │ ├── patch-plugins_node_d_named │ │ ├── patch-plugins_node_d_perdition │ │ ├── patch-plugins_node_d_postfix_mailstats │ │ ├── patch-plugins_node_d_postfix_mailvolume │ │ ├── patch-plugins_node_d_psu_ │ │ ├── patch-plugins_node_d_sendmail_mailqueue │ │ ├── patch-plugins_node_d_squeezebox_ │ │ ├── patch-script_munin-check │ │ ├── patch-script_munin-get │ │ ├── patch-script_munin-node │ │ ├── patch-script_munin-node-configure │ │ └── patch-script_munin-run │ └── pkg │ │ ├── DESCR-main │ │ ├── DESCR-server │ │ ├── PLIST-main │ │ ├── PLIST-server │ │ ├── README-main │ │ ├── README-server │ │ ├── munin_asyncd.rc │ │ ├── munin_httpd.rc │ │ └── munin_node.rc ├── nqptp │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── nqptp.rc ├── obfsproxy │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── openafs │ └── patches │ │ └── patch-src_afsd_afsd_fuse_c ├── p5-Net-OAuth2 │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Router-Simple │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Transmission-Client │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-lib_Transmission_AttributeRole_pm │ │ └── patch-lib_Transmission_Client_pm │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── perkeep │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ └── DESCR ├── prime_server │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── psi │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-src_systeminfo_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── psimedia │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-gstprovider_deviceenum_deviceenum_unix_cpp │ │ ├── patch-gstprovider_devices_cpp │ │ ├── patch-gstprovider_gstcustomelements_gstcustomelements_h │ │ ├── patch-gstprovider_gstelements_static_gstelements_h │ │ ├── patch-gstprovider_gstprovider_pri │ │ ├── patch-gstprovider_gstthread_cpp │ │ ├── patch-gstprovider_gstthread_h │ │ ├── patch-gstprovider_rwcontrol_h │ │ └── patch-psimedia_pro │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-aiohttp_socks │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-aiorpcx │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-keystoneclient │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-netifaces2 │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ ├── patches │ │ ├── patch-python_netifaces___init___py │ │ ├── patch-python_netifaces_routes_py │ │ └── patch-src_linux_rs │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-novaclient │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-pyrax │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-python-socks │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-sleekxmpp │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-sleekxmpp_thirdparty___init___py │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-swiftclient │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-setup_cfg │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-synapse │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── quassel │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-cmake_QuasselCompileSettings_cmake │ └── pkg │ │ ├── DESCR-client │ │ ├── DESCR-common │ │ ├── DESCR-core │ │ ├── DESCR-main │ │ ├── PLIST-client │ │ ├── PLIST-common │ │ ├── PLIST-core │ │ ├── PLIST-main │ │ └── README-core ├── repology │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── rtorrent │ ├── Makefile │ ├── UPDATE │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── ruby-net-ldap │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── rustscan │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ ├── patches │ │ └── patch-Cargo_toml │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── s3cmd │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── sshs │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── synergy │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ ├── patch-src_CMakeLists_txt │ │ ├── patch-src_lib_arch_CMakeLists_txt │ │ └── patch-src_lib_synergy_ProtocolUtil_h │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── tcpdump │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-Makefile_in │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── tcptrack │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-src_Guesser_h │ │ ├── patch-src_IPAddress_h │ │ ├── patch-src_IPv6Address_cc │ │ ├── patch-src_Makefile_in │ │ ├── patch-src_PacketBuffer_cc │ │ ├── patch-src_Sniffer_cc │ │ ├── patch-src_Sniffer_h │ │ ├── patch-src_TCContainer_cc │ │ ├── patch-src_TCContainer_h │ │ ├── patch-src_TextUI_cc │ │ ├── patch-src_defs_h │ │ ├── patch-src_headers_h │ │ └── patch-src_util_cc │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── telepathy │ ├── Makefile.inc │ ├── TODO │ └── telepathy-rakia │ │ ├── Makefile │ │ ├── TODO │ │ ├── distinfo │ │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── tootle │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-meson_build │ │ ├── patch-src_Services_Cache_ImageCache_vala │ │ ├── patch-src_Services_Network_Network_vala │ │ └── patch-src_Utils_Host_vala │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── transmission │ ├── Makefile │ ├── UPDATE │ ├── distinfo │ └── pkg │ │ ├── DESCR-gtk │ │ ├── DESCR-main │ │ ├── DESCR-qt │ │ ├── PLIST-gtk │ │ ├── PLIST-main │ │ ├── PLIST-qt │ │ └── transmission_daemon.rc ├── unison-gitignore │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── wireless │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── zerotier │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ └── patch-make-bsd_mk │ └── pkg │ ├── DESCR │ └── PLIST ├── print ├── luametatex │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── xournalpp │ ├── Makefile │ ├── distinfo │ ├── patches │ ├── patch-man_CMakeLists_txt │ ├── patch-src_control_settings_LatexSettings_h │ ├── patch-src_control_settings_Settings_cpp │ └── patch-src_util_Stacktrace_cpp │ ├── pkg │ ├── DESCR │ └── PLIST │ └── portaudio-svn.diff ├── productivity ├── electrum │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hledger-iadd │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hledger-ui │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── hledger │ ├── Makefile │ ├── README │ ├── distinfo │ └── pkg │ │ ├── DESCR-lib │ │ ├── DESCR-main │ │ ├── PLIST-lib │ │ └── PLIST-main ├── py-nv │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── treesheets │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ ├── DESCR │ └── PLIST ├── security ├── ausweisapp2 │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-cmake_Libraries_cmake │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── browserpass-native │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── modules.inc │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── johnny │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── legba │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── libgssglue │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-doc_gssapi_mech_conf │ │ ├── patch-libgssglue_pc_in │ │ └── patch-src_Makefile_in │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Crypt-URandom │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── phrasendrescher │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-configure_ac │ │ └── patch-src_plugin_c │ └── pkg │ │ ├── DESCR-gpg │ │ ├── DESCR-main │ │ ├── PLIST-gpg │ │ └── PLIST-main ├── py-base58 │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-coincurve │ ├── Makefile │ ├── distinfo │ ├── install_id │ ├── lbrynet.log │ ├── patches │ │ └── patch-setup_support_py │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-rack-openid │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── secp256k1 │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── step-ca │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── step-cli │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── vsmartcard │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── wpa_gui │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── yara-x │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ ├── patches │ ├── patch-lib_Cargo_toml │ └── patch-modcargo-crates_wasmtime-38_0_4_src_runtime_vm_sys_unix_signals_rs │ └── pkg │ ├── DESCR │ └── PLIST ├── shells └── oil │ ├── Makefile │ ├── TODO │ └── distinfo ├── sysutils ├── acts │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-acts_conf_sample │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── afetch │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-src_fetch_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── athens │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── auto-admin │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── bareos │ ├── Makefile │ ├── distinfo │ └── patches │ │ ├── patch-core_CMakeLists_txt │ │ └── patch-core_platforms_openbsd_CMakeLists_txt ├── binwalkv3 │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── boulder │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-vendor_github_com_miekg_pkcs11_pkcs11_go │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── btcd │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ └── DESCR ├── conky │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-cmake_ConkyPlatformChecks_cmake │ │ ├── patch-cmake_Conky_cmake │ │ ├── patch-src_core_cc │ │ ├── patch-src_fs_cc │ │ ├── patch-src_mixer_cc │ │ ├── patch-src_openbsd_cc │ │ └── patch-src_openbsd_h │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── desktop-installer │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── dinit │ ├── Makefile │ ├── distinfo │ ├── files │ │ └── boot.example │ ├── patches │ │ └── patch-configs_mconfig_OpenBSD │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ ├── README │ │ └── dinit.rc ├── duply │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-duply │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── efibootmgr │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-src_efi_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── fastfetch │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── fq │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── fwupd │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-libfwupdplugin_fu-common-freebsd_c │ │ ├── patch-libfwupdplugin_fu-efivar-freebsd_c │ │ ├── patch-libfwupdplugin_meson_build │ │ └── patch-meson_build │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── gdu │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ ├── patches │ │ ├── patch-cmd_gdu_app_app_test_go │ │ ├── patch-cmd_gdu_main_go │ │ └── patch-gdu_1 │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── glow │ ├── Makefile │ ├── distinfo │ ├── modules.inc │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── jmtpfs │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ └── patch-src_jmtpfs_cpp │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── libcpuid │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── libtree │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-libtree_c │ │ └── patch-tests_07_origin_is_relative_to_symlink_location_not_realpath_Makefile │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── mgitstatus │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── netdata │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-collectors_charts_d_plugin_charts_d_conf │ │ ├── patch-collectors_plugins_d_plugins_d_c │ │ ├── patch-configure_ac │ │ ├── patch-libnetdata_libnetdata_c │ │ ├── patch-libnetdata_libnetdata_h │ │ ├── patch-libnetdata_log_log_c │ │ ├── patch-libnetdata_os_h │ │ ├── patch-libnetdata_popen_popen_c │ │ ├── patch-libnetdata_threads_threads_c │ │ └── patch-system_netdata_conf │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ocp-build │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-Makefile │ │ └── patch-config_Makefile_in │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── osquery │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── patches │ │ ├── patch-cmake_flags_cmake │ │ ├── patch-cmake_globals_cmake │ │ ├── patch-cmake_packaging_cmake │ │ └── patch-tools_lib_sh ├── ovmf │ ├── Makefile │ ├── distinfo │ └── patches │ │ ├── patch-BaseTools_Conf_build_rule_template │ │ ├── patch-BaseTools_GNUmakefile │ │ ├── patch-BaseTools_Source_C_GNUmakefile │ │ ├── patch-BaseTools_Source_C_Makefiles_header_makefile │ │ ├── patch-MdeModulePkg_MdeModulePkg_dec │ │ └── patch-MdeModulePkg_MdeModulePkg_dsc ├── p5-Pod-Cpandoc │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── packagekit │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── files │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── OpenBSD │ │ │ ├── Makefile.am │ │ │ └── PackageKit │ │ │ │ ├── Categories.pm │ │ │ │ ├── DBIModel.pm │ │ │ │ ├── Makefile.am │ │ │ │ ├── Pkg.pm │ │ │ │ ├── Pkg │ │ │ │ ├── Add.pm │ │ │ │ ├── Delete.pm │ │ │ │ └── Makefile.am │ │ │ │ └── Tools.pm │ │ ├── PackageKit │ │ │ ├── Makefile.am │ │ │ ├── enums.pm │ │ │ └── prints.pm │ │ ├── openbsd-backend.pl │ │ ├── openbsd-ports-backend.sh │ │ ├── pk-backend-openbsd-ports.c │ │ └── pk-backend-openbsd.c │ ├── patches │ │ ├── patch-backends_Makefile_am │ │ ├── patch-configure_ac │ │ ├── patch-etc_Vendor_conf │ │ └── patch-src_plugins_pk-lsof_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── pkg_readme │ ├── Makefile │ ├── files │ │ ├── pkg_readme │ │ └── pkg_readme.1 │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ports │ ├── Makefile │ └── pkg │ │ └── DESCR ├── puppetserver │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-ext_bin_puppetserver │ │ └── patch-ext_config_conf_d_puppetserver_conf │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── puppetserver.rc ├── ruby-rhc │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── runas │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── shuf │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── signing │ ├── Makefile │ ├── distinfo │ ├── list │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── starship │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── systembsd │ ├── Makefile │ ├── files │ │ └── os-release.in │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── tailspin │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── tarsnap-gui │ ├── Makefile │ ├── UPDATE │ ├── distinfo │ ├── files │ │ └── tarsnap-gui.desktop │ ├── patches │ │ ├── patch-tests_task_test-task_cpp │ │ └── patch-tests_taskmanager_test-taskmanager_cpp │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── README ├── usbmuxd │ ├── Makefile │ ├── TODO │ ├── distinfo │ ├── patches │ │ ├── patch-daemon_client_c │ │ ├── patch-daemon_main_c │ │ └── patch-libusbmuxd_libusbmuxd_c │ └── pkg │ │ ├── DESCR │ │ ├── PLIST │ │ └── usbmuxd.rc ├── velociraptor │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── patches │ │ └── patch-magefile_go ├── wireguard-ui │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── yasr │ ├── Makefile │ ├── distinfo │ ├── patches │ └── patch-yasr_conf │ └── pkg │ ├── DESCR │ └── PLIST ├── textproc ├── hs-polyparse │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-LaTeX-Table │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ ├── MESSAGE │ │ └── PLIST ├── py-nbsphinx │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-pdftotext │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── rapidjson │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-coderay │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-erubis │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-test_test-users-guide_rb │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── scdoc │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── simdjson │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── tree-sitter-cli │ ├── Makefile │ ├── crates.inc │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST └── utf8proc │ ├── Makefile │ ├── distinfo │ ├── patches │ └── patch-Makefile │ └── pkg │ ├── DESCR │ └── PLIST ├── wayland └── cage │ ├── Makefile │ ├── distinfo │ └── pkg │ ├── DESCR │ └── PLIST ├── www ├── badwolf │ ├── Makefile │ ├── distinfo │ ├── patches │ │ └── patch-version_sh │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── browsh │ ├── Makefile │ └── distinfo ├── edbrowse │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-CMakeLists_txt │ │ └── patch-src_http_c │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── links+ │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-html_c │ │ └── patch-https_c │ └── pkg │ │ ├── DESCR │ │ ├── MESSAGE.x11 │ │ └── PLIST ├── llhttp │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── nyxt │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── patches │ │ └── patch-nyxt-quicklisp_asd ├── p5-Dancer2-Session-Cookie │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Google-Chat-WebHooks │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-HTML-Selector-XPath │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-HTML-TreeBuilder-LibXML │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-RT-Extension-MergeUsers │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ ├── MESSAGE │ │ └── PLIST ├── p5-Session-Storage-Secure │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-WWW-Namecheap-API │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-Web-Query │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── p5-WebService-Discord-Webhook │ ├── Makefile │ ├── distinfo │ ├── make.log │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── py-aioupnp │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── redmine │ ├── Makefile │ ├── distinfo │ ├── patches │ │ ├── patch-Gemfile_dist │ │ ├── patch-config_configuration_yml_example │ │ └── patch-config_database_yml_example │ ├── pkg │ │ ├── DESCR-extra │ │ ├── DESCR-main │ │ ├── PLIST-extra │ │ ├── PLIST-main │ │ ├── README-main │ │ └── redmine.rc │ └── redmine.port.mk ├── ruby-activeresource │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-jquery-rails │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-rack-cache │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-rack-mount │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-rack-ssl │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-rails │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── ruby-railties │ ├── Makefile │ ├── distinfo │ └── pkg │ │ ├── DESCR │ │ └── PLIST ├── servo │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── patches │ │ └── patch-servobuild_example ├── uwsgi │ ├── Makefile │ ├── distinfo │ ├── files │ │ └── openbsd_pkg.ini │ ├── patches │ │ ├── patch-core_utils_c │ │ └── patch-uwsgiconfig_py │ └── pkg │ │ ├── DESCR-lua │ │ ├── DESCR-main │ │ ├── DESCR-python │ │ ├── PLIST-lua │ │ ├── PLIST-main │ │ └── PLIST-python └── yacy │ ├── Makefile │ ├── TODO │ ├── distinfo │ └── pkg │ ├── DESCR │ ├── PLIST │ └── yacy.rc └── x11 ├── ayatana-ido ├── Makefile ├── distinfo └── pkg │ ├── DESCR │ └── PLIST ├── bino ├── Makefile ├── distinfo └── pkg │ ├── DESCR │ └── PLIST ├── cde ├── Makefile ├── distinfo ├── patches │ └── patch-configure_ac └── pkg │ ├── DESCR │ ├── PLIST │ ├── README │ └── dtlogin.rc ├── fluxbox ├── Makefile ├── distinfo ├── patches │ └── patch-Makefile_in └── pkg │ ├── DESCR │ └── PLIST ├── gnome └── packagekit │ ├── Makefile │ ├── distinfo │ └── pkg │ ├── DESCR │ └── PLIST ├── gnustep └── stepsync │ ├── Makefile │ ├── distinfo │ └── pkg │ ├── DESCR │ └── PLIST ├── intel-vaapi-driver ├── Makefile ├── TODO ├── distinfo ├── patches │ ├── patch-src_Makefile_am │ ├── patch-src_i965_encoder_utils_c │ ├── patch-test_Makefile_am │ ├── patch-test_i965_avce_context_test_cpp │ ├── patch-test_i965_chipset_test_cpp │ ├── patch-test_i965_internal_decl_h │ ├── patch-test_i965_jpeg_decode_test_cpp │ ├── patch-test_i965_jpeg_encode_test_cpp │ ├── patch-test_i965_jpeg_test_data_cpp │ ├── patch-test_i965_jpeg_test_data_h │ ├── patch-test_i965_test_environment_cpp │ ├── patch-test_object_heap_test_cpp │ └── patch-test_test_h └── pkg │ ├── DESCR │ └── PLIST ├── kvantum-qt5 ├── Makefile ├── distinfo └── pkg │ ├── DESCR │ └── PLIST ├── kvantum ├── Makefile ├── distinfo └── pkg │ ├── DESCR │ └── PLIST ├── libayatana-indicator ├── Makefile ├── distinfo └── pkg │ ├── DESCR │ └── PLIST ├── libva-utils ├── Makefile ├── TODO ├── distinfo ├── patches │ ├── patch-encode_jpegenc_utils_h │ ├── patch-encode_mpeg2vaenc_c │ ├── patch-putsurface_putsurface_x11_c │ ├── patch-test_Makefile_am │ ├── patch-test_test_h │ ├── patch-test_test_va_api_createsurfaces_cpp │ ├── patch-test_test_va_api_display_attribs_cpp │ ├── patch-test_test_va_api_fixture_cpp │ ├── patch-test_test_va_api_fixture_h │ └── patch-test_test_va_api_get_create_config_cpp └── pkg │ ├── DESCR │ └── PLIST ├── libva ├── Makefile ├── TODO ├── distinfo ├── patches │ ├── patch-va_va_backend_h │ ├── patch-va_va_c │ ├── patch-va_va_h │ └── patch-va_va_trace_c └── pkg │ ├── DESCR │ └── PLIST ├── luatekui ├── Makefile ├── TODO ├── distinfo ├── patches │ └── patch-config └── pkg │ ├── DESCR │ └── PLIST ├── reddit-wallpaper ├── Makefile ├── TODO ├── distinfo └── pkg │ ├── DESCR │ └── PLIST ├── snixembed ├── Makefile ├── distinfo └── pkg │ ├── DESCR │ ├── PLIST │ └── README └── xpra ├── Makefile ├── README.md ├── distinfo ├── patches ├── patch-setup_py └── patch-xpra_buffers_memalign_c └── pkg ├── DESCR └── PLIST /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/.gitignore -------------------------------------------------------------------------------- /ABANDONED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/ABANDONED -------------------------------------------------------------------------------- /FINISHED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/FINISHED -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/README.md -------------------------------------------------------------------------------- /archivers/gzip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/archivers/gzip/Makefile -------------------------------------------------------------------------------- /archivers/gzip/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/archivers/gzip/distinfo -------------------------------------------------------------------------------- /archivers/jcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/archivers/jcat/Makefile -------------------------------------------------------------------------------- /archivers/jcat/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/archivers/jcat/distinfo -------------------------------------------------------------------------------- /archivers/p5-Compress-Raw-Bzip2/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Low-Level Interface to bzip2 comprssion library 2 | -------------------------------------------------------------------------------- /archivers/p5-Compress-Raw-Lzma/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Low-Level Interface to Lzma comprssion library 2 | -------------------------------------------------------------------------------- /archivers/p5-Compress-Raw-Zlib/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Low-Level Interface to Zlib comprssion library 2 | -------------------------------------------------------------------------------- /archivers/p5-Compress-Stream-Zstd/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Perl interface to the Zstd (Zstandard) (de)compressor 2 | -------------------------------------------------------------------------------- /archivers/p5-IO-Compress-Lzf/pkg/DESCR: -------------------------------------------------------------------------------- 1 | interface to write lzf comp. data to files or buffers 2 | -------------------------------------------------------------------------------- /archivers/p5-IO-Compress-Lzop/pkg/DESCR: -------------------------------------------------------------------------------- 1 | interface to write lzop comp. data to files or buffers 2 | -------------------------------------------------------------------------------- /archivers/p5-IO-Compress-Zstd/pkg/DESCR: -------------------------------------------------------------------------------- 1 | interface to write zstd comp. data to files or buffers 2 | -------------------------------------------------------------------------------- /archivers/p5-IO-Compress/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Base Class for IO::Compress modules 2 | -------------------------------------------------------------------------------- /audio/DMusic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/DMusic/Makefile -------------------------------------------------------------------------------- /audio/DMusic/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/DMusic/distinfo -------------------------------------------------------------------------------- /audio/adlplug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/adlplug/Makefile -------------------------------------------------------------------------------- /audio/adlplug/TODO: -------------------------------------------------------------------------------- 1 | Requires JUCE(https://github.com/juce-framework/JUCE) 2 | -------------------------------------------------------------------------------- /audio/adlplug/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/adlplug/distinfo -------------------------------------------------------------------------------- /audio/artyfx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/artyfx/Makefile -------------------------------------------------------------------------------- /audio/artyfx/TODO: -------------------------------------------------------------------------------- 1 | Testing 2 | -------------------------------------------------------------------------------- /audio/artyfx/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/artyfx/distinfo -------------------------------------------------------------------------------- /audio/artyfx/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/artyfx/pkg/DESCR -------------------------------------------------------------------------------- /audio/artyfx/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/artyfx/pkg/PLIST -------------------------------------------------------------------------------- /audio/blop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/blop/Makefile -------------------------------------------------------------------------------- /audio/blop/TODO: -------------------------------------------------------------------------------- 1 | Needs testing. 2 | -------------------------------------------------------------------------------- /audio/blop/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/blop/distinfo -------------------------------------------------------------------------------- /audio/blop/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/blop/pkg/DESCR -------------------------------------------------------------------------------- /audio/blop/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/blop/pkg/PLIST -------------------------------------------------------------------------------- /audio/csound/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/csound/Makefile -------------------------------------------------------------------------------- /audio/csound/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/csound/TODO -------------------------------------------------------------------------------- /audio/csound/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/csound/distinfo -------------------------------------------------------------------------------- /audio/csound/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/csound/pkg/DESCR -------------------------------------------------------------------------------- /audio/csound/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/csound/pkg/PLIST -------------------------------------------------------------------------------- /audio/dgedit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/dgedit/Makefile -------------------------------------------------------------------------------- /audio/dgedit/TODO: -------------------------------------------------------------------------------- 1 | - Update until submission 2 | -------------------------------------------------------------------------------- /audio/dgedit/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/dgedit/distinfo -------------------------------------------------------------------------------- /audio/dgedit/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/dgedit/pkg/DESCR -------------------------------------------------------------------------------- /audio/dgedit/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/dgedit/pkg/PLIST -------------------------------------------------------------------------------- /audio/drumgizmo/TODO: -------------------------------------------------------------------------------- 1 | - Needs proper testing of gui with a suitable DAW 2 | -------------------------------------------------------------------------------- /audio/element/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/element/Makefile -------------------------------------------------------------------------------- /audio/element/TODO: -------------------------------------------------------------------------------- 1 | All of it. 2 | Dependencies, Build, PLIST, DESCR, Testing 3 | -------------------------------------------------------------------------------- /audio/element/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/element/distinfo -------------------------------------------------------------------------------- /audio/gmtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/gmtp/Makefile -------------------------------------------------------------------------------- /audio/gmtp/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/gmtp/distinfo -------------------------------------------------------------------------------- /audio/gmtp/pkg/DESCR: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /audio/gmtp/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/gmtp/pkg/PLIST -------------------------------------------------------------------------------- /audio/libadlmidi/TODO: -------------------------------------------------------------------------------- 1 | submit to ports@ 2 | -------------------------------------------------------------------------------- /audio/libopnmidi/TODO: -------------------------------------------------------------------------------- 1 | submit to ports@ 2 | -------------------------------------------------------------------------------- /audio/librespot/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/librespot 2 | -------------------------------------------------------------------------------- /audio/libsmf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/libsmf/Makefile -------------------------------------------------------------------------------- /audio/libsmf/TODO: -------------------------------------------------------------------------------- 1 | - Testing with consumer drumgizmo 2 | -------------------------------------------------------------------------------- /audio/libsmf/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/libsmf/distinfo -------------------------------------------------------------------------------- /audio/libsmf/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/libsmf/pkg/DESCR -------------------------------------------------------------------------------- /audio/libsmf/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/libsmf/pkg/PLIST -------------------------------------------------------------------------------- /audio/muse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/muse/Makefile -------------------------------------------------------------------------------- /audio/muse/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/muse/distinfo -------------------------------------------------------------------------------- /audio/muse/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/muse/pkg/DESCR -------------------------------------------------------------------------------- /audio/muse/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/muse/pkg/PLIST -------------------------------------------------------------------------------- /audio/spot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/spot/Makefile -------------------------------------------------------------------------------- /audio/spot/crates.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/spot/crates.inc -------------------------------------------------------------------------------- /audio/spot/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/spot/distinfo -------------------------------------------------------------------------------- /audio/spot/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Gtk/Rust native Spotify client for the GNOME desktop. 2 | -------------------------------------------------------------------------------- /audio/spot/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/spot/pkg/PLIST -------------------------------------------------------------------------------- /audio/supersonic/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/supersonic 2 | -------------------------------------------------------------------------------- /audio/wildmidi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/wildmidi/Makefile -------------------------------------------------------------------------------- /audio/wildmidi/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/audio/wildmidi/distinfo -------------------------------------------------------------------------------- /cad/freecad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/cad/freecad/Makefile -------------------------------------------------------------------------------- /cad/freecad/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/cad/freecad/README -------------------------------------------------------------------------------- /cad/freecad/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/cad/freecad/distinfo -------------------------------------------------------------------------------- /cad/freecad/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/cad/freecad/pkg/DESCR -------------------------------------------------------------------------------- /cad/freecad/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/cad/freecad/pkg/PLIST -------------------------------------------------------------------------------- /cad/orcaslicer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/cad/orcaslicer/Makefile -------------------------------------------------------------------------------- /cad/orcaslicer/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/cad/orcaslicer/TODO -------------------------------------------------------------------------------- /cad/orcaslicer/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/cad/orcaslicer/distinfo -------------------------------------------------------------------------------- /comms/aprx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/aprx/Makefile -------------------------------------------------------------------------------- /comms/aprx/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/aprx/TODO -------------------------------------------------------------------------------- /comms/aprx/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/aprx/distinfo -------------------------------------------------------------------------------- /comms/aprx/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/aprx/pkg/DESCR -------------------------------------------------------------------------------- /comms/aprx/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/aprx/pkg/PLIST -------------------------------------------------------------------------------- /comms/direwolf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/direwolf/Makefile -------------------------------------------------------------------------------- /comms/direwolf/TODO: -------------------------------------------------------------------------------- 1 | Fix gpsd / hamlib not being found 2 | -------------------------------------------------------------------------------- /comms/direwolf/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/direwolf/distinfo -------------------------------------------------------------------------------- /comms/gqrx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/gqrx/Makefile -------------------------------------------------------------------------------- /comms/gqrx/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/gqrx/TODO -------------------------------------------------------------------------------- /comms/gqrx/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/gqrx/distinfo -------------------------------------------------------------------------------- /comms/gqrx/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/gqrx/pkg/DESCR -------------------------------------------------------------------------------- /comms/gqrx/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | @bin bin/gqrx 3 | -------------------------------------------------------------------------------- /comms/gr-osmosdr/TODO: -------------------------------------------------------------------------------- 1 | Proper DESCR 2 | Testing 3 | -------------------------------------------------------------------------------- /comms/py-adb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/py-adb/Makefile -------------------------------------------------------------------------------- /comms/py-adb/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/py-adb/distinfo -------------------------------------------------------------------------------- /comms/py-adb/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/py-adb/pkg/DESCR -------------------------------------------------------------------------------- /comms/py-adb/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/py-adb/pkg/PLIST -------------------------------------------------------------------------------- /comms/scrcpy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/scrcpy/Makefile -------------------------------------------------------------------------------- /comms/scrcpy/TODO: -------------------------------------------------------------------------------- 1 | I haven't tested it; see https://marc.info/?l=openbsd-bugs&m=160550940202628&w=2 2 | -------------------------------------------------------------------------------- /comms/scrcpy/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/comms/scrcpy/distinfo -------------------------------------------------------------------------------- /converters/p5-Locale-SubCountry/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Convert names to/from ISO 3166-2 codes 2 | -------------------------------------------------------------------------------- /databases/p5-DBD-Informix/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Informix Database Driver for DBI 2 | -------------------------------------------------------------------------------- /databases/veil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/databases/veil/Makefile -------------------------------------------------------------------------------- /databases/veil/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/databases/veil/distinfo -------------------------------------------------------------------------------- /devel/actionlint/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/actionlint 2 | -------------------------------------------------------------------------------- /devel/arduino/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/arduino/Makefile -------------------------------------------------------------------------------- /devel/arduino/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/arduino/distinfo -------------------------------------------------------------------------------- /devel/arduino/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/arduino/pkg/DESCR -------------------------------------------------------------------------------- /devel/arduino/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/arduino/pkg/PLIST -------------------------------------------------------------------------------- /devel/arm-none-eabi/gcc-linaro/patches/patch-Makefile_in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devel/benchmark/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A library to benchmark code snippets, similar to unit tests. 2 | -------------------------------------------------------------------------------- /devel/breakpad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/breakpad/Makefile -------------------------------------------------------------------------------- /devel/breakpad/TODO: -------------------------------------------------------------------------------- 1 | Finish porting Telegram 2 | -------------------------------------------------------------------------------- /devel/breakpad/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/breakpad/distinfo -------------------------------------------------------------------------------- /devel/cargo-nextest/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/cargo-nextest 2 | -------------------------------------------------------------------------------- /devel/ccls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/ccls/Makefile -------------------------------------------------------------------------------- /devel/ccls/TODO: -------------------------------------------------------------------------------- 1 | Testing/checking -------------------------------------------------------------------------------- /devel/ccls/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/ccls/distinfo -------------------------------------------------------------------------------- /devel/ccls/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/ccls/pkg/DESCR -------------------------------------------------------------------------------- /devel/ccls/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD: PLIST,v$ 2 | @bin bin/ccls 3 | -------------------------------------------------------------------------------- /devel/codeblocks/UPDATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/codeblocks/UPDATE -------------------------------------------------------------------------------- /devel/cpphs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/cpphs/Makefile -------------------------------------------------------------------------------- /devel/cpphs/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/cpphs/distinfo -------------------------------------------------------------------------------- /devel/cryptopp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/cryptopp/Makefile -------------------------------------------------------------------------------- /devel/cryptopp/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/cryptopp/distinfo -------------------------------------------------------------------------------- /devel/eclipse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/eclipse/Makefile -------------------------------------------------------------------------------- /devel/editline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/editline/Makefile -------------------------------------------------------------------------------- /devel/editline/TODO: -------------------------------------------------------------------------------- 1 | verify deps 2 | -------------------------------------------------------------------------------- /devel/editline/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/editline/distinfo -------------------------------------------------------------------------------- /devel/fileb0x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/fileb0x/Makefile -------------------------------------------------------------------------------- /devel/fileb0x/TODO: -------------------------------------------------------------------------------- 1 | verify functionality 2 | -------------------------------------------------------------------------------- /devel/fileb0x/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/fileb0x/distinfo -------------------------------------------------------------------------------- /devel/fileb0x/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/fileb0x/pkg/DESCR -------------------------------------------------------------------------------- /devel/fileb0x/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD: PLIST,v$ 2 | @bin bin/fileb0x 3 | -------------------------------------------------------------------------------- /devel/gh-dash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/gh-dash/Makefile -------------------------------------------------------------------------------- /devel/gh-dash/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/gh-dash/distinfo -------------------------------------------------------------------------------- /devel/gh-dash/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/gh-dash/pkg/DESCR -------------------------------------------------------------------------------- /devel/gh-dash/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/gh-dash 2 | -------------------------------------------------------------------------------- /devel/gh-gr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/gh-gr/Makefile -------------------------------------------------------------------------------- /devel/gh-gr/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/gh-gr/distinfo -------------------------------------------------------------------------------- /devel/gh-gr/modules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/gh-gr/modules.inc -------------------------------------------------------------------------------- /devel/gh-gr/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/gh-gr/pkg/DESCR -------------------------------------------------------------------------------- /devel/gh-gr/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/gh-gr 2 | -------------------------------------------------------------------------------- /devel/git-absorb/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/git-absorb 2 | -------------------------------------------------------------------------------- /devel/git-gpg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/git-gpg/Makefile -------------------------------------------------------------------------------- /devel/git-gpg/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/git-gpg/distinfo -------------------------------------------------------------------------------- /devel/git-gpg/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/git-gpg/pkg/DESCR -------------------------------------------------------------------------------- /devel/git-gpg/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | bin/git-gpg 3 | -------------------------------------------------------------------------------- /devel/git-graph/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/git-graph 2 | -------------------------------------------------------------------------------- /devel/gitoxide/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/gitoxide/Makefile -------------------------------------------------------------------------------- /devel/gitoxide/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/gitoxide/distinfo -------------------------------------------------------------------------------- /devel/go-btcsuite-btclog/pkg/DESCR: -------------------------------------------------------------------------------- 1 | a subsystem aware logger backed by seelog 2 | -------------------------------------------------------------------------------- /devel/go-btcsuite-btcutil/pkg/DESCR: -------------------------------------------------------------------------------- 1 | bitcoin-specific convenience functions and types 2 | -------------------------------------------------------------------------------- /devel/go-btcsuite-websocket/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A WebSocket implemetnation for Go. 2 | -------------------------------------------------------------------------------- /devel/gold/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/gold/Makefile -------------------------------------------------------------------------------- /devel/gold/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/gold/distinfo -------------------------------------------------------------------------------- /devel/gold/pkg/DESCR: -------------------------------------------------------------------------------- 1 | This package contains the GNU gold ELF-only linker. 2 | -------------------------------------------------------------------------------- /devel/gold/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/gold/pkg/PLIST -------------------------------------------------------------------------------- /devel/gold/pkg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/gold/pkg/README -------------------------------------------------------------------------------- /devel/hs-BoundedChan/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Implementation of bounded channels. -------------------------------------------------------------------------------- /devel/hs-Diff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-Diff/Makefile -------------------------------------------------------------------------------- /devel/hs-Diff/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-Diff/distinfo -------------------------------------------------------------------------------- /devel/hs-Diff/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-Diff/pkg/DESCR -------------------------------------------------------------------------------- /devel/hs-Diff/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-Diff/pkg/PLIST -------------------------------------------------------------------------------- /devel/hs-QuickCheck/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Automatic testing of Haskell programs -------------------------------------------------------------------------------- /devel/hs-SHA/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-SHA/Makefile -------------------------------------------------------------------------------- /devel/hs-SHA/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-SHA/distinfo -------------------------------------------------------------------------------- /devel/hs-SHA/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-SHA/pkg/DESCR -------------------------------------------------------------------------------- /devel/hs-SHA/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-SHA/pkg/PLIST -------------------------------------------------------------------------------- /devel/hs-aeson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-aeson/Makefile -------------------------------------------------------------------------------- /devel/hs-aeson/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-aeson/distinfo -------------------------------------------------------------------------------- /devel/hs-asn1-types/pkg/DESCR: -------------------------------------------------------------------------------- 1 | ASN.1 types -------------------------------------------------------------------------------- /devel/hs-async/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-async/Makefile -------------------------------------------------------------------------------- /devel/hs-async/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-async/distinfo -------------------------------------------------------------------------------- /devel/hs-base-orphans/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Backwards-compatible orphan instances for base -------------------------------------------------------------------------------- /devel/hs-basement/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Foundation scrap box of array & string -------------------------------------------------------------------------------- /devel/hs-bifunctors/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Bifunctors -------------------------------------------------------------------------------- /devel/hs-brick/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-brick/Makefile -------------------------------------------------------------------------------- /devel/hs-brick/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-brick/distinfo -------------------------------------------------------------------------------- /devel/hs-brick/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A declarative terminal user interface library -------------------------------------------------------------------------------- /devel/hs-byteable/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Type class for sequence of bytes -------------------------------------------------------------------------------- /devel/hs-bytestring-builder/pkg/DESCR: -------------------------------------------------------------------------------- 1 | The new bytestring builder, packaged outside of GHC -------------------------------------------------------------------------------- /devel/hs-cereal/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A binary serialization library -------------------------------------------------------------------------------- /devel/hs-clientsession/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Securely store session data in a client-side cookie. -------------------------------------------------------------------------------- /devel/hs-clock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-clock/Makefile -------------------------------------------------------------------------------- /devel/hs-clock/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-clock/distinfo -------------------------------------------------------------------------------- /devel/hs-comonad/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Comonads -------------------------------------------------------------------------------- /devel/hs-config-ini/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A library for simple INI-based configuration files. -------------------------------------------------------------------------------- /devel/hs-constraints/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Constraint manipulation -------------------------------------------------------------------------------- /devel/hs-contravariant/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Haskell 98 contravariant functors 2 | -------------------------------------------------------------------------------- /devel/hs-cookie/pkg/DESCR: -------------------------------------------------------------------------------- 1 | HTTP cookie parsing and rendering -------------------------------------------------------------------------------- /devel/hs-cprng-aes/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Crypto Pseudo Random Number Generator using AES in counter mode. -------------------------------------------------------------------------------- /devel/hs-crypto-api/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A generic interface for cryptographic operations -------------------------------------------------------------------------------- /devel/hs-crypto-cipher-types/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Generic cryptography cipher types -------------------------------------------------------------------------------- /devel/hs-crypto-random/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Simple cryptographic random related types -------------------------------------------------------------------------------- /devel/hs-cryptonite/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Cryptography Primitives sink -------------------------------------------------------------------------------- /devel/hs-csv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-csv/Makefile -------------------------------------------------------------------------------- /devel/hs-csv/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-csv/distinfo -------------------------------------------------------------------------------- /devel/hs-csv/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-csv/pkg/DESCR -------------------------------------------------------------------------------- /devel/hs-csv/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-csv/pkg/PLIST -------------------------------------------------------------------------------- /devel/hs-data-clist/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Simple functional ring type. -------------------------------------------------------------------------------- /devel/hs-data-default-class/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Class for types with a default value. 2 | -------------------------------------------------------------------------------- /devel/hs-data-default-instances-containers/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Class for types with a default value. 2 | -------------------------------------------------------------------------------- /devel/hs-data-default-instances-dlist/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Class for types with a default value. 2 | -------------------------------------------------------------------------------- /devel/hs-data-default-instances-old-locale/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Class for types with a default value. 2 | -------------------------------------------------------------------------------- /devel/hs-data-default/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Class for types with a default value. 2 | -------------------------------------------------------------------------------- /devel/hs-distributive/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Distributive functors -- Dual to Traversable -------------------------------------------------------------------------------- /devel/hs-dlist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-dlist/Makefile -------------------------------------------------------------------------------- /devel/hs-dlist/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-dlist/distinfo -------------------------------------------------------------------------------- /devel/hs-extra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-extra/Makefile -------------------------------------------------------------------------------- /devel/hs-extra/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-extra/distinfo -------------------------------------------------------------------------------- /devel/hs-fail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-fail/Makefile -------------------------------------------------------------------------------- /devel/hs-fail/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-fail/distinfo -------------------------------------------------------------------------------- /devel/hs-fail/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Forward-compatible MonadFail class -------------------------------------------------------------------------------- /devel/hs-fail/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-fail/pkg/PLIST -------------------------------------------------------------------------------- /devel/hs-free/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-free/Makefile -------------------------------------------------------------------------------- /devel/hs-free/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-free/distinfo -------------------------------------------------------------------------------- /devel/hs-free/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Monads for free -------------------------------------------------------------------------------- /devel/hs-free/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-free/pkg/PLIST -------------------------------------------------------------------------------- /devel/hs-fsnotify/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Cross platform library for file change notification. -------------------------------------------------------------------------------- /devel/hs-hans/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-hans/Makefile -------------------------------------------------------------------------------- /devel/hs-hans/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-hans/distinfo -------------------------------------------------------------------------------- /devel/hs-hans/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Network Stack -------------------------------------------------------------------------------- /devel/hs-haskell-lexer/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A fully compliant Haskell 98 lexer. 2 | -------------------------------------------------------------------------------- /devel/hs-heaps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-heaps/Makefile -------------------------------------------------------------------------------- /devel/hs-heaps/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-heaps/distinfo -------------------------------------------------------------------------------- /devel/hs-heaps/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Asymptotically optimal Brodal/Okasaki heaps. -------------------------------------------------------------------------------- /devel/hs-here/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-here/Makefile -------------------------------------------------------------------------------- /devel/hs-here/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-here/distinfo -------------------------------------------------------------------------------- /devel/hs-here/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Here docs & interpolated strings via quasiquotation 2 | -------------------------------------------------------------------------------- /devel/hs-here/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-here/pkg/PLIST -------------------------------------------------------------------------------- /devel/hs-hjsmin/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Haskell implementation of a javascript minifier -------------------------------------------------------------------------------- /devel/hs-hourglass/pkg/DESCR: -------------------------------------------------------------------------------- 1 | simple performant time related library -------------------------------------------------------------------------------- /devel/hs-html/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-html/Makefile -------------------------------------------------------------------------------- /devel/hs-html/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-html/distinfo -------------------------------------------------------------------------------- /devel/hs-html/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-html/pkg/DESCR -------------------------------------------------------------------------------- /devel/hs-html/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-html/pkg/PLIST -------------------------------------------------------------------------------- /devel/hs-http-client/pkg/DESCR: -------------------------------------------------------------------------------- 1 | An HTTP client engine -------------------------------------------------------------------------------- /devel/hs-http-conduit/pkg/DESCR: -------------------------------------------------------------------------------- 1 | HTTP client package with conduit interface and HTTPS support. -------------------------------------------------------------------------------- /devel/hs-integer-gmp/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Integer library based on GMP -------------------------------------------------------------------------------- /devel/hs-language-javascript/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Parser for JavaScript -------------------------------------------------------------------------------- /devel/hs-lifted-base/pkg/DESCR: -------------------------------------------------------------------------------- 1 | lifted IO operations from the base library -------------------------------------------------------------------------------- /devel/hs-lucid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-lucid/Makefile -------------------------------------------------------------------------------- /devel/hs-lucid/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-lucid/distinfo -------------------------------------------------------------------------------- /devel/hs-math-functions/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Collection of tools for numeric computations -------------------------------------------------------------------------------- /devel/hs-memory/pkg/DESCR: -------------------------------------------------------------------------------- 1 | memory and related abstraction stuff -------------------------------------------------------------------------------- /devel/hs-microlens-platform/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Feature-complete microlens -------------------------------------------------------------------------------- /devel/hs-monadLib/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A collection of monad transformers. -------------------------------------------------------------------------------- /devel/hs-mtl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-mtl/Makefile -------------------------------------------------------------------------------- /devel/hs-mtl/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-mtl/distinfo -------------------------------------------------------------------------------- /devel/hs-mtl/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-mtl/pkg/DESCR -------------------------------------------------------------------------------- /devel/hs-mtl/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-mtl/pkg/PLIST -------------------------------------------------------------------------------- /devel/hs-mwc-random/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Fast, high quality pseudo random number generation -------------------------------------------------------------------------------- /devel/hs-network-uri/pkg/DESCR: -------------------------------------------------------------------------------- 1 | URI manipulation -------------------------------------------------------------------------------- /devel/hs-parallel/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Parallel programming library -------------------------------------------------------------------------------- /devel/hs-profunctors/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Profunctors -------------------------------------------------------------------------------- /devel/hs-psqueues/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Pure priority search queues -------------------------------------------------------------------------------- /devel/hs-safe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-safe/Makefile -------------------------------------------------------------------------------- /devel/hs-safe/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-safe/distinfo -------------------------------------------------------------------------------- /devel/hs-safe/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-safe/pkg/DESCR -------------------------------------------------------------------------------- /devel/hs-safe/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-safe/pkg/PLIST -------------------------------------------------------------------------------- /devel/hs-semigroupoids/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Semigroupoids: Category sans id -------------------------------------------------------------------------------- /devel/hs-setenv/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A cross-platform library for setting environment variables -------------------------------------------------------------------------------- /devel/hs-shelly/pkg/DESCR: -------------------------------------------------------------------------------- 1 | shell-like (systems) programming in Haskell -------------------------------------------------------------------------------- /devel/hs-skein/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-skein/Makefile -------------------------------------------------------------------------------- /devel/hs-skein/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-skein/distinfo -------------------------------------------------------------------------------- /devel/hs-socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-socks/Makefile -------------------------------------------------------------------------------- /devel/hs-socks/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-socks/distinfo -------------------------------------------------------------------------------- /devel/hs-socks/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Socks proxy (ver 5) -------------------------------------------------------------------------------- /devel/hs-temporary/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Functions for creating temporary files and directories. 2 | -------------------------------------------------------------------------------- /devel/hs-text-zipper/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A text editor zipper library -------------------------------------------------------------------------------- /devel/hs-text/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-text/Makefile -------------------------------------------------------------------------------- /devel/hs-text/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-text/distinfo -------------------------------------------------------------------------------- /devel/hs-text/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-text/pkg/DESCR -------------------------------------------------------------------------------- /devel/hs-text/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-text/pkg/PLIST -------------------------------------------------------------------------------- /devel/hs-tf-random/pkg/DESCR: -------------------------------------------------------------------------------- 1 | High-quality splittable pseudorandom number generator -------------------------------------------------------------------------------- /devel/hs-th-expand-syns/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Expands type synonyms in Template Haskell ASTs. 2 | -------------------------------------------------------------------------------- /devel/hs-th-lift/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Derive Template Haskell's Lift class for datatypes. 2 | -------------------------------------------------------------------------------- /devel/hs-th-reify-many/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Recurseively reify template haskell datatype info -------------------------------------------------------------------------------- /devel/hs-vector-algorithms/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Efficient algorithms for vector arrays -------------------------------------------------------------------------------- /devel/hs-vector-th-unbox/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Deriver for Data.Vector.Unboxed using Template Haskell -------------------------------------------------------------------------------- /devel/hs-vty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-vty/Makefile -------------------------------------------------------------------------------- /devel/hs-vty/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-vty/distinfo -------------------------------------------------------------------------------- /devel/hs-vty/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A simple terminal UI library -------------------------------------------------------------------------------- /devel/hs-vty/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-vty/pkg/PLIST -------------------------------------------------------------------------------- /devel/hs-word-wrap/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A library for word-wrapping -------------------------------------------------------------------------------- /devel/hs-zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-zlib/Makefile -------------------------------------------------------------------------------- /devel/hs-zlib/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-zlib/distinfo -------------------------------------------------------------------------------- /devel/hs-zlib/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-zlib/pkg/DESCR -------------------------------------------------------------------------------- /devel/hs-zlib/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hs-zlib/pkg/PLIST -------------------------------------------------------------------------------- /devel/hub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hub/Makefile -------------------------------------------------------------------------------- /devel/hub/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hub/distinfo -------------------------------------------------------------------------------- /devel/hub/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hub/pkg/DESCR -------------------------------------------------------------------------------- /devel/hub/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hub/pkg/PLIST -------------------------------------------------------------------------------- /devel/hwloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hwloc/Makefile -------------------------------------------------------------------------------- /devel/hwloc/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hwloc/distinfo -------------------------------------------------------------------------------- /devel/hwloc/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hwloc/pkg/DESCR -------------------------------------------------------------------------------- /devel/hwloc/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/hwloc/pkg/PLIST -------------------------------------------------------------------------------- /devel/isl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/isl/Makefile -------------------------------------------------------------------------------- /devel/isl/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/isl/distinfo -------------------------------------------------------------------------------- /devel/isl/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/isl/pkg/DESCR -------------------------------------------------------------------------------- /devel/isl/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/isl/pkg/PLIST -------------------------------------------------------------------------------- /devel/kati/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/kati/Makefile -------------------------------------------------------------------------------- /devel/kati/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/kati/distinfo -------------------------------------------------------------------------------- /devel/kati/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/kati/pkg/DESCR -------------------------------------------------------------------------------- /devel/kati/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD: PLIST,v$ 2 | @bin bin/ckati 3 | -------------------------------------------------------------------------------- /devel/libpare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/libpare/Makefile -------------------------------------------------------------------------------- /devel/libpare/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/libpare/distinfo -------------------------------------------------------------------------------- /devel/libpare/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/libpare/pkg/DESCR -------------------------------------------------------------------------------- /devel/libpare/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/libpare/pkg/PLIST -------------------------------------------------------------------------------- /devel/libtgvoip/TODO: -------------------------------------------------------------------------------- 1 | Finish porting Telegram 2 | -------------------------------------------------------------------------------- /devel/libtgvoip/pkg/DESCR: -------------------------------------------------------------------------------- 1 | libtgvoip is a VoIP library for Telegram clients. 2 | -------------------------------------------------------------------------------- /devel/libxtend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/libxtend/Makefile -------------------------------------------------------------------------------- /devel/libxtend/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/libxtend/distinfo -------------------------------------------------------------------------------- /devel/lua-argparse/pkg/PLIST: -------------------------------------------------------------------------------- 1 | share/lua/${MODLUA_VERSION}/argparse.lua 2 | -------------------------------------------------------------------------------- /devel/luabasexx/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | share/lua/${MODLUA_VERSION}/basexx.lua 3 | -------------------------------------------------------------------------------- /devel/luacheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luacheck/Makefile -------------------------------------------------------------------------------- /devel/luacheck/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luacheck/distinfo -------------------------------------------------------------------------------- /devel/luaevent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luaevent/Makefile -------------------------------------------------------------------------------- /devel/luaevent/TODO: -------------------------------------------------------------------------------- 1 | Regress tests fail 2 | -------------------------------------------------------------------------------- /devel/luaevent/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luaevent/distinfo -------------------------------------------------------------------------------- /devel/luaffi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luaffi/Makefile -------------------------------------------------------------------------------- /devel/luaffi/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luaffi/distinfo -------------------------------------------------------------------------------- /devel/luaffi/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luaffi/pkg/DESCR -------------------------------------------------------------------------------- /devel/luaffi/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luaffi/pkg/PLIST -------------------------------------------------------------------------------- /devel/luajson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luajson/Makefile -------------------------------------------------------------------------------- /devel/luajson/TODO: -------------------------------------------------------------------------------- 1 | Fails tests 2 | -------------------------------------------------------------------------------- /devel/luajson/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luajson/distinfo -------------------------------------------------------------------------------- /devel/luajson/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luajson/pkg/DESCR -------------------------------------------------------------------------------- /devel/luajson/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luajson/pkg/PLIST -------------------------------------------------------------------------------- /devel/luaotp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luaotp/Makefile -------------------------------------------------------------------------------- /devel/luaotp/TODO: -------------------------------------------------------------------------------- 1 | - verify it works 2 | -------------------------------------------------------------------------------- /devel/luaotp/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luaotp/distinfo -------------------------------------------------------------------------------- /devel/luaotp/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luaotp/pkg/DESCR -------------------------------------------------------------------------------- /devel/luaotp/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | share/lua/${MODLUA_VERSION}/otp.lua 3 | -------------------------------------------------------------------------------- /devel/luarocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luarocks/Makefile -------------------------------------------------------------------------------- /devel/luarocks/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/luarocks/distinfo -------------------------------------------------------------------------------- /devel/lunit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/lunit/Makefile -------------------------------------------------------------------------------- /devel/lunit/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/lunit/distinfo -------------------------------------------------------------------------------- /devel/lunit/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/lunit/pkg/DESCR -------------------------------------------------------------------------------- /devel/lunit/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/lunit/pkg/PLIST -------------------------------------------------------------------------------- /devel/mimalloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/mimalloc/Makefile -------------------------------------------------------------------------------- /devel/mimalloc/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/mimalloc/distinfo -------------------------------------------------------------------------------- /devel/mold/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/mold/Makefile -------------------------------------------------------------------------------- /devel/mold/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/mold/distinfo -------------------------------------------------------------------------------- /devel/mold/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/mold/pkg/DESCR -------------------------------------------------------------------------------- /devel/mold/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/mold/pkg/PLIST -------------------------------------------------------------------------------- /devel/nyan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/nyan/Makefile -------------------------------------------------------------------------------- /devel/nyan/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/nyan/distinfo -------------------------------------------------------------------------------- /devel/nyan/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/nyan/pkg/DESCR -------------------------------------------------------------------------------- /devel/nyan/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/nyan/pkg/PLIST -------------------------------------------------------------------------------- /devel/openmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/openmp/Makefile -------------------------------------------------------------------------------- /devel/openmp/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/openmp/TODO -------------------------------------------------------------------------------- /devel/openmp/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/openmp/distinfo -------------------------------------------------------------------------------- /devel/openmp/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/openmp/pkg/DESCR -------------------------------------------------------------------------------- /devel/openmp/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/openmp/pkg/PLIST -------------------------------------------------------------------------------- /devel/p5-AI-MXNet/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Perl interface to MXNet machine learning library 2 | -------------------------------------------------------------------------------- /devel/p5-Business-UPS-Tracking/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Interface to the UPS tracking webservice 2 | -------------------------------------------------------------------------------- /devel/p5-Compiler-Lexer/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Compiler::Lexer is a lexical analyzer for Perl5. 2 | -------------------------------------------------------------------------------- /devel/p5-DVD-Read/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/p5-DVD-Read/TODO -------------------------------------------------------------------------------- /devel/p5-DVD-Read/pkg/DESCR: -------------------------------------------------------------------------------- 1 | libdvdread perl binding 2 | -------------------------------------------------------------------------------- /devel/p5-Data-Currency/pkg/DESCR: -------------------------------------------------------------------------------- 1 | basic currency formatting and conversion 2 | -------------------------------------------------------------------------------- /devel/p5-Data-Validate-Domain/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Domain and host name validation 2 | -------------------------------------------------------------------------------- /devel/p5-Data-Validate-URI/pkg/DESCR: -------------------------------------------------------------------------------- 1 | common url validation methods 2 | -------------------------------------------------------------------------------- /devel/p5-Data-Validator/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Rule based validator on type constraint system 2 | -------------------------------------------------------------------------------- /devel/p5-Device-Nest/pkg/DESCR: -------------------------------------------------------------------------------- 1 | perl methods for the Nest API 2 | -------------------------------------------------------------------------------- /devel/p5-Excel-Writer-XLSX/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Creates a new file in Excel 2007+ XLSX format 2 | -------------------------------------------------------------------------------- /devel/p5-Exporter-Declare/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Exporting done right 2 | -------------------------------------------------------------------------------- /devel/p5-Fennec-Lite/pkg/DESCR: -------------------------------------------------------------------------------- 1 | 0.004 2 | -------------------------------------------------------------------------------- /devel/p5-File-Map/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Memory mapping made simple and safe. 2 | -------------------------------------------------------------------------------- /devel/p5-File-Util/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Easy, versatile, portable file handling 2 | -------------------------------------------------------------------------------- /devel/p5-Finance-Bitcoin/pkg/DESCR: -------------------------------------------------------------------------------- 1 | manage a bitcoin instance 2 | -------------------------------------------------------------------------------- /devel/p5-Finance-BlockIO/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Perl wrapper to JSON-based Block.io API 2 | -------------------------------------------------------------------------------- /devel/p5-Finance-Currency-Convert-WebserviceX/pkg/DESCR: -------------------------------------------------------------------------------- 1 | currency converter using WebserviceX.net 2 | -------------------------------------------------------------------------------- /devel/p5-Function-Parameters/pkg/DESCR: -------------------------------------------------------------------------------- 1 | subroutine definitions with parameter lists 2 | -------------------------------------------------------------------------------- /devel/p5-Furl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/p5-Furl/Makefile -------------------------------------------------------------------------------- /devel/p5-Furl/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/p5-Furl/distinfo -------------------------------------------------------------------------------- /devel/p5-Furl/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Lightning-fast URL fetcher 2 | -------------------------------------------------------------------------------- /devel/p5-Furl/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/p5-Furl/pkg/PLIST -------------------------------------------------------------------------------- /devel/p5-Google-API-Client/pkg/DESCR: -------------------------------------------------------------------------------- 1 | client for Google APIs Discover Service 2 | -------------------------------------------------------------------------------- /devel/p5-HTTP-Response-Stringable/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Makes HTTP::Response objects stringable 2 | -------------------------------------------------------------------------------- /devel/p5-JSON-RPC/pkg/DESCR: -------------------------------------------------------------------------------- 1 | JSON RPC 2.0 Server Implementation 2 | -------------------------------------------------------------------------------- /devel/p5-LWP-Authen-OAuth2/pkg/DESCR: -------------------------------------------------------------------------------- 1 | make requests to OAuth2 APIs -------------------------------------------------------------------------------- /devel/p5-Log-Minimal/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Minimal but customizable logger. 2 | -------------------------------------------------------------------------------- /devel/p5-Log-Report-Optional/pkg/DESCR: -------------------------------------------------------------------------------- 1 | helpful routines to Log::Report 2 | -------------------------------------------------------------------------------- /devel/p5-Log-Report/pkg/DESCR: -------------------------------------------------------------------------------- 1 | report a problem 2 | -------------------------------------------------------------------------------- /devel/p5-Minion/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/p5-Minion/TODO -------------------------------------------------------------------------------- /devel/p5-Mock-Quick/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Quickly mock objects and classes, even temporarily 2 | -------------------------------------------------------------------------------- /devel/p5-Mojo-UserAgent-Role-Queued/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A role to process non-blocking requests 2 | -------------------------------------------------------------------------------- /devel/p5-MooX-Types-MooseLike-DateTime/pkg/DESCR: -------------------------------------------------------------------------------- 1 | DateTime type for Moo 2 | -------------------------------------------------------------------------------- /devel/p5-NDFD-Weather-Report/pkg/DESCR: -------------------------------------------------------------------------------- 1 | National Weather Service API 2 | -------------------------------------------------------------------------------- /devel/p5-Net-Curl-Simple/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Easy wraper of Net::Curl modules 2 | -------------------------------------------------------------------------------- /devel/p5-Net-Curl/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Perl interface for libcurl 2 | -------------------------------------------------------------------------------- /devel/p5-Net-Evernote-Simple/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Simple interface to Evernote API 2 | -------------------------------------------------------------------------------- /devel/p5-Net-Evernote/pkg/DESCR: -------------------------------------------------------------------------------- 1 | API for Evernote 2 | -------------------------------------------------------------------------------- /devel/p5-OAuth-Cmdline/pkg/DESCR: -------------------------------------------------------------------------------- 1 | OAuth2 for command line apps using web services 2 | -------------------------------------------------------------------------------- /devel/p5-OAuth-Lite/pkg/DESCR: -------------------------------------------------------------------------------- 1 | OAuth framework 2 | -------------------------------------------------------------------------------- /devel/p5-OpenGL-Image/pkg/DESCR: -------------------------------------------------------------------------------- 1 | abstract for image interfaces 2 | -------------------------------------------------------------------------------- /devel/p5-OpenGL/pkg/DESCR: -------------------------------------------------------------------------------- 1 | OpenGL bindings to perl 2 | -------------------------------------------------------------------------------- /devel/p5-PDL-CCS/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Sparse N-dimensional PDLs with compressed column storage 2 | -------------------------------------------------------------------------------- /devel/p5-PDL-VectorValued/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Utilities for vector-valued PDL 2 | -------------------------------------------------------------------------------- /devel/p5-PDL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/p5-PDL/Makefile -------------------------------------------------------------------------------- /devel/p5-PDL/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/p5-PDL/distinfo -------------------------------------------------------------------------------- /devel/p5-PDL/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Perl Data Language 2 | -------------------------------------------------------------------------------- /devel/p5-PDL/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/p5-PDL/pkg/PLIST -------------------------------------------------------------------------------- /devel/p5-Perl6-Export/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Implements the Perl 6 'is export(...)' trait 2 | -------------------------------------------------------------------------------- /devel/p5-Perl6-Form/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Implements the Perl 6 'form' built-in 2 | -------------------------------------------------------------------------------- /devel/p5-Role-EventEmitter/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Event Emitter role 2 | -------------------------------------------------------------------------------- /devel/p5-Shipment/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/p5-Shipment/env -------------------------------------------------------------------------------- /devel/p5-Shipment/pkg/DESCR: -------------------------------------------------------------------------------- 1 | interface to popular shipping/courier services 2 | -------------------------------------------------------------------------------- /devel/p5-String-Print/pkg/DESCR: -------------------------------------------------------------------------------- 1 | printf alternative 2 | -------------------------------------------------------------------------------- /devel/p5-Temperature-Windchill/pkg/DESCR: -------------------------------------------------------------------------------- 1 | calculate effective temperature on exposed skin 2 | -------------------------------------------------------------------------------- /devel/p5-Test-Mock-LWP-Dispatch/pkg/DESCR: -------------------------------------------------------------------------------- 1 | mocks LWP::UserAgent and handles requests/responses 2 | -------------------------------------------------------------------------------- /devel/p5-Test2-Suite/pkg/DESCR: -------------------------------------------------------------------------------- 1 | ALMOST a drop-in replacement for Test::More 2 | -------------------------------------------------------------------------------- /devel/p5-Text-Patch/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Patches text with given patch 2 | -------------------------------------------------------------------------------- /devel/p5-WWW-Curl-Simple/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Simpler interface to WWW::Curl 2 | -------------------------------------------------------------------------------- /devel/p5-WWW-Namecheap-API/pkg/DESCR: -------------------------------------------------------------------------------- 1 | interface to the Namecheap API 2 | -------------------------------------------------------------------------------- /devel/p5-WWW-Netflix-API/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Interface for Netflix's API 2 | -------------------------------------------------------------------------------- /devel/p5-WWW-Netflix/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Get/set ratings/queue for Netflix accounts 2 | -------------------------------------------------------------------------------- /devel/p5-WWW-Twilio-API/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Accessing Twilio's REST API 2 | -------------------------------------------------------------------------------- /devel/p5-WWW-Wunderground-API/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Use Weather Underground's JSON/XML API 2 | -------------------------------------------------------------------------------- /devel/p5-WWW-YouTube-Download/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Very simple YouTube video download interface 2 | -------------------------------------------------------------------------------- /devel/p5-WebService-Coinbase/pkg/DESCR: -------------------------------------------------------------------------------- 1 | coinbase.com API bindings 2 | -------------------------------------------------------------------------------- /devel/p5-XML-Compile-Tester/pkg/DESCR: -------------------------------------------------------------------------------- 1 | supoprt XML::Compile testing 2 | -------------------------------------------------------------------------------- /devel/p5-XML-Compile/pkg/DESCR: -------------------------------------------------------------------------------- 1 | xml compilation 2 | -------------------------------------------------------------------------------- /devel/pijul/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/pijul/Makefile -------------------------------------------------------------------------------- /devel/pijul/TODO: -------------------------------------------------------------------------------- 1 | Builds and packages. Only very basic testing done. 2 | -------------------------------------------------------------------------------- /devel/pijul/crates.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/pijul/crates.inc -------------------------------------------------------------------------------- /devel/pijul/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/pijul/distinfo -------------------------------------------------------------------------------- /devel/pijul/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/pijul/pkg/DESCR -------------------------------------------------------------------------------- /devel/pijul/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/pijul 2 | -------------------------------------------------------------------------------- /devel/pocl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/pocl/Makefile -------------------------------------------------------------------------------- /devel/pocl/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/pocl/distinfo -------------------------------------------------------------------------------- /devel/pocl/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/pocl/pkg/DESCR -------------------------------------------------------------------------------- /devel/pocl/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/pocl/pkg/PLIST -------------------------------------------------------------------------------- /devel/py-dncil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/py-dncil/Makefile -------------------------------------------------------------------------------- /devel/py-dncil/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/py-dncil/distinfo -------------------------------------------------------------------------------- /devel/py-lru/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/py-lru/Makefile -------------------------------------------------------------------------------- /devel/py-lru/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/py-lru/distinfo -------------------------------------------------------------------------------- /devel/py-lru/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/py-lru/pkg/DESCR -------------------------------------------------------------------------------- /devel/py-lru/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/py-lru/pkg/PLIST -------------------------------------------------------------------------------- /devel/py-sdl2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/py-sdl2/Makefile -------------------------------------------------------------------------------- /devel/py-sdl2/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/py-sdl2/distinfo -------------------------------------------------------------------------------- /devel/py-sdl2/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/py-sdl2/pkg/DESCR -------------------------------------------------------------------------------- /devel/py-sdl2/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/py-sdl2/pkg/PLIST -------------------------------------------------------------------------------- /devel/py-shtab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/py-shtab/Makefile -------------------------------------------------------------------------------- /devel/py-shtab/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/py-shtab/distinfo -------------------------------------------------------------------------------- /devel/py-side2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/py-side2/Makefile -------------------------------------------------------------------------------- /devel/py-side2/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/py-side2/distinfo -------------------------------------------------------------------------------- /devel/py-widgetsnbextension/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Interactive HTML widgets for Jupyter notebooks. 2 | -------------------------------------------------------------------------------- /devel/rapidjson/TODO: -------------------------------------------------------------------------------- 1 | Need more checking/testing -------------------------------------------------------------------------------- /devel/re2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/re2/Makefile -------------------------------------------------------------------------------- /devel/re2/TODO: -------------------------------------------------------------------------------- 1 | An indirect dependency of clang-callgraph. 2 | -------------------------------------------------------------------------------- /devel/re2/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/re2/distinfo -------------------------------------------------------------------------------- /devel/re2/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/re2/pkg/DESCR -------------------------------------------------------------------------------- /devel/re2/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/re2/pkg/PLIST -------------------------------------------------------------------------------- /devel/riscv-isa-sim/TODO: -------------------------------------------------------------------------------- 1 | * Verify/update the SHARED_LIB stuff. 2 | -------------------------------------------------------------------------------- /devel/rizin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/rizin/Makefile -------------------------------------------------------------------------------- /devel/rizin/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/rizin/distinfo -------------------------------------------------------------------------------- /devel/rizin/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/rizin/pkg/DESCR -------------------------------------------------------------------------------- /devel/rizin/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/rizin/pkg/PLIST -------------------------------------------------------------------------------- /devel/scc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/scc/Makefile -------------------------------------------------------------------------------- /devel/scc/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/scc/distinfo -------------------------------------------------------------------------------- /devel/scc/modules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/scc/modules.inc -------------------------------------------------------------------------------- /devel/scc/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/scc/pkg/DESCR -------------------------------------------------------------------------------- /devel/scc/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/scc/pkg/PLIST -------------------------------------------------------------------------------- /devel/sdl3/BUILD.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/sdl3/BUILD.log -------------------------------------------------------------------------------- /devel/sdl3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/sdl3/Makefile -------------------------------------------------------------------------------- /devel/sdl3/TODO: -------------------------------------------------------------------------------- 1 | - import it in multimedia/ ? 2 | - fix SDL_TESTS (4 failing; see test.log) 3 | -------------------------------------------------------------------------------- /devel/sdl3/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/sdl3/distinfo -------------------------------------------------------------------------------- /devel/sdl3/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/sdl3/pkg/DESCR -------------------------------------------------------------------------------- /devel/sdl3/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/sdl3/pkg/PLIST -------------------------------------------------------------------------------- /devel/sdl3/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/sdl3/test.log -------------------------------------------------------------------------------- /devel/task/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/task/Makefile -------------------------------------------------------------------------------- /devel/task/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/task/distinfo -------------------------------------------------------------------------------- /devel/task/modules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/task/modules.inc -------------------------------------------------------------------------------- /devel/task/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/task/pkg/DESCR -------------------------------------------------------------------------------- /devel/task/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/task/pkg/PLIST -------------------------------------------------------------------------------- /devel/thrift/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/thrift/Makefile -------------------------------------------------------------------------------- /devel/thrift/TODO: -------------------------------------------------------------------------------- 1 | - Figure out why boost isn't being picked up. 2 | - Enable other langs? 3 | 4 | -------------------------------------------------------------------------------- /devel/thrift/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/thrift/distinfo -------------------------------------------------------------------------------- /devel/thrift/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/thrift/pkg/DESCR -------------------------------------------------------------------------------- /devel/tokei/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/tokei/Makefile -------------------------------------------------------------------------------- /devel/tokei/crates.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/tokei/crates.inc -------------------------------------------------------------------------------- /devel/tokei/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/tokei/distinfo -------------------------------------------------------------------------------- /devel/tokei/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/tokei/pkg/DESCR -------------------------------------------------------------------------------- /devel/tokei/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/tokei 2 | -------------------------------------------------------------------------------- /devel/twintk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/twintk/Makefile -------------------------------------------------------------------------------- /devel/twintk/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/twintk/distinfo -------------------------------------------------------------------------------- /devel/twintk/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/twintk/pkg/DESCR -------------------------------------------------------------------------------- /devel/twintk/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/twintk/pkg/PLIST -------------------------------------------------------------------------------- /devel/z88dk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/z88dk/Makefile -------------------------------------------------------------------------------- /devel/z88dk/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/z88dk/distinfo -------------------------------------------------------------------------------- /devel/z88dk/pkg/DESCR: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devel/z88dk/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/devel/z88dk/pkg/PLIST -------------------------------------------------------------------------------- /editors/ape/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/editors/ape/Makefile -------------------------------------------------------------------------------- /editors/ape/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/editors/ape/distinfo -------------------------------------------------------------------------------- /editors/ape/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/editors/ape/pkg/DESCR -------------------------------------------------------------------------------- /editors/ape/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/editors/ape/pkg/PLIST -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-ar: -------------------------------------------------------------------------------- 1 | Arabic language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-bg: -------------------------------------------------------------------------------- 1 | Bulgarian language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-ca: -------------------------------------------------------------------------------- 1 | Catalan language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-de: -------------------------------------------------------------------------------- 1 | German language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-es: -------------------------------------------------------------------------------- 1 | Spanish language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-fa: -------------------------------------------------------------------------------- 1 | Persian language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-fi: -------------------------------------------------------------------------------- 1 | Finnish language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-fr: -------------------------------------------------------------------------------- 1 | French language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-hu: -------------------------------------------------------------------------------- 1 | Hungarian language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-it: -------------------------------------------------------------------------------- 1 | Italian language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-ja: -------------------------------------------------------------------------------- 1 | Japanese language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-kk: -------------------------------------------------------------------------------- 1 | Kazakh language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-ko: -------------------------------------------------------------------------------- 1 | Korean language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-lv: -------------------------------------------------------------------------------- 1 | Latvian language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-nl: -------------------------------------------------------------------------------- 1 | Dutch language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-pl: -------------------------------------------------------------------------------- 1 | Polish language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-ru: -------------------------------------------------------------------------------- 1 | Russian language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-sl: -------------------------------------------------------------------------------- 1 | Slovenian language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /editors/libreoffice/pkg/DESCR-i18n-sv: -------------------------------------------------------------------------------- 1 | Swedish language pack (UI and spell check) for LibreOffice. 2 | -------------------------------------------------------------------------------- /emulators/bsnes/TODO: -------------------------------------------------------------------------------- 1 | Doesn't seem to work: it freezes once you select a game. 2 | -------------------------------------------------------------------------------- /emulators/gns3-gui/pkg/DESCR: -------------------------------------------------------------------------------- 1 | GNS3 Graphical Network Simulator 2 | -------------------------------------------------------------------------------- /emulators/m64py/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/emulators/m64py/TODO -------------------------------------------------------------------------------- /emulators/pcem/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD: PLIST,v$ 2 | @bin bin/pcem 3 | -------------------------------------------------------------------------------- /emulators/wine/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/emulators/wine/TODO -------------------------------------------------------------------------------- /emulators/wine/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Run windows stuff on OpenBSD 2 | -------------------------------------------------------------------------------- /games/7kaa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/7kaa/Makefile -------------------------------------------------------------------------------- /games/7kaa/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/7kaa/distinfo -------------------------------------------------------------------------------- /games/7kaa/pkg/DESCR-data: -------------------------------------------------------------------------------- 1 | Seven Kingdoms: Ancient Adversaries game data. 2 | -------------------------------------------------------------------------------- /games/cosmo-engine/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD: PLIST,v$ 2 | @bin bin/cosmo_engine 3 | -------------------------------------------------------------------------------- /games/doom64ex/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/doom64ex/TODO -------------------------------------------------------------------------------- /games/fallout1-ce/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/fallout-ce 2 | share/doc/pkg-readmes/${PKGSTEM} 3 | -------------------------------------------------------------------------------- /games/fallout2-ce/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/fallout2-ce 2 | share/doc/pkg-readmes/${PKGSTEM} 3 | -------------------------------------------------------------------------------- /games/freeciv21/TODO: -------------------------------------------------------------------------------- 1 | - need pitch for adding this besides freeciv 2 | -------------------------------------------------------------------------------- /games/good-robot/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD: PLIST,v$ 2 | @bin bin/good_robot 3 | -------------------------------------------------------------------------------- /games/liquidwar6/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/liquidwar6/TODO -------------------------------------------------------------------------------- /games/opengothic/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/opengothic/TODO -------------------------------------------------------------------------------- /games/openrw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/openrw/Makefile -------------------------------------------------------------------------------- /games/openrw/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/openrw/distinfo -------------------------------------------------------------------------------- /games/openrw/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | @bin bin/rwgame 3 | -------------------------------------------------------------------------------- /games/pokerth/UPDATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/pokerth/UPDATE -------------------------------------------------------------------------------- /games/regoth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/regoth/Makefile -------------------------------------------------------------------------------- /games/regoth/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/regoth/distinfo -------------------------------------------------------------------------------- /games/regoth/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Gothic I/II engine opensource implementation 2 | -------------------------------------------------------------------------------- /games/regoth/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | @bin bin/REGoth 3 | -------------------------------------------------------------------------------- /games/runelite/pkg/DESCR: -------------------------------------------------------------------------------- 1 | RuneLite is a free, open source OldSchool RuneScape client. 2 | -------------------------------------------------------------------------------- /games/slade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/slade/Makefile -------------------------------------------------------------------------------- /games/slade/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/slade/TODO -------------------------------------------------------------------------------- /games/slade/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/slade/distinfo -------------------------------------------------------------------------------- /games/slade/files/slade: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # $OpenBSD$ 4 | 5 | ${PREFIX}/lib/slade "$@" 6 | -------------------------------------------------------------------------------- /games/slade/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/slade/pkg/DESCR -------------------------------------------------------------------------------- /games/slade/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/slade/pkg/PLIST -------------------------------------------------------------------------------- /games/spring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/spring/Makefile -------------------------------------------------------------------------------- /games/spring/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/spring/TODO -------------------------------------------------------------------------------- /games/spring/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/spring/distinfo -------------------------------------------------------------------------------- /games/terasology/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/terasology/TODO -------------------------------------------------------------------------------- /games/tic80/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/tic80/Makefile -------------------------------------------------------------------------------- /games/tic80/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/tic80/distinfo -------------------------------------------------------------------------------- /games/tic80/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/tic80/pkg/DESCR -------------------------------------------------------------------------------- /games/tic80/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/tic80/pkg/PLIST -------------------------------------------------------------------------------- /games/trackballs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/trackballs/TODO -------------------------------------------------------------------------------- /games/xash3d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/xash3d/Makefile -------------------------------------------------------------------------------- /games/xash3d/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/xash3d/TODO -------------------------------------------------------------------------------- /games/xoreos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/xoreos/Makefile -------------------------------------------------------------------------------- /games/xoreos/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/games/xoreos/TODO -------------------------------------------------------------------------------- /geo/osmpbf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/geo/osmpbf/Makefile -------------------------------------------------------------------------------- /geo/osmpbf/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/geo/osmpbf/distinfo -------------------------------------------------------------------------------- /geo/osmpbf/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/geo/osmpbf/pkg/DESCR -------------------------------------------------------------------------------- /geo/osmpbf/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/geo/osmpbf/pkg/PLIST -------------------------------------------------------------------------------- /geo/valhalla/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/geo/valhalla/Makefile -------------------------------------------------------------------------------- /geo/valhalla/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/geo/valhalla/TODO -------------------------------------------------------------------------------- /geo/valhalla/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/geo/valhalla/distinfo -------------------------------------------------------------------------------- /graphics/draco/TODO: -------------------------------------------------------------------------------- 1 | - Try to enable tests 2 | -------------------------------------------------------------------------------- /graphics/mandelbulber2/TODO: -------------------------------------------------------------------------------- 1 | Get devel/openmp in the tree. 2 | -------------------------------------------------------------------------------- /lang/chibicc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/chibicc/Makefile -------------------------------------------------------------------------------- /lang/chibicc/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/chibicc/distinfo -------------------------------------------------------------------------------- /lang/cld3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/cld3/Makefile -------------------------------------------------------------------------------- /lang/cld3/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/cld3/distinfo -------------------------------------------------------------------------------- /lang/cld3/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/cld3/pkg/DESCR -------------------------------------------------------------------------------- /lang/cld3/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/cld3/pkg/PLIST -------------------------------------------------------------------------------- /lang/cowgol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/cowgol/Makefile -------------------------------------------------------------------------------- /lang/cowgol/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/cowgol/distinfo -------------------------------------------------------------------------------- /lang/cowgol/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/cowgol/pkg/DESCR -------------------------------------------------------------------------------- /lang/cowgol/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/cowgol/pkg/PLIST -------------------------------------------------------------------------------- /lang/emojicode/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/emojicode/TODO -------------------------------------------------------------------------------- /lang/flang/f18/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD: PLIST,v$ 2 | @bin bin/f18 3 | -------------------------------------------------------------------------------- /lang/fpm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/fpm/Makefile -------------------------------------------------------------------------------- /lang/fpm/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/fpm/TODO -------------------------------------------------------------------------------- /lang/fpm/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/fpm/distinfo -------------------------------------------------------------------------------- /lang/fpm/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/fpm/pkg/DESCR -------------------------------------------------------------------------------- /lang/fpm/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD: PLIST,v$ 2 | @bin bin/fpm 3 | -------------------------------------------------------------------------------- /lang/hobbes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/hobbes/Makefile -------------------------------------------------------------------------------- /lang/hobbes/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/hobbes/TODO -------------------------------------------------------------------------------- /lang/hobbes/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/hobbes/distinfo -------------------------------------------------------------------------------- /lang/hobbes/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/hobbes/pkg/DESCR -------------------------------------------------------------------------------- /lang/hobbes/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/hobbes/pkg/PLIST -------------------------------------------------------------------------------- /lang/lci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/lci/Makefile -------------------------------------------------------------------------------- /lang/lci/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/lci/distinfo -------------------------------------------------------------------------------- /lang/lci/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/lci/pkg/DESCR -------------------------------------------------------------------------------- /lang/lci/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | @bin bin/lci 3 | -------------------------------------------------------------------------------- /lang/ldc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/ldc/Makefile -------------------------------------------------------------------------------- /lang/ldc/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/ldc/distinfo -------------------------------------------------------------------------------- /lang/lily/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/lily/Makefile -------------------------------------------------------------------------------- /lang/lily/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/lily/TODO -------------------------------------------------------------------------------- /lang/lily/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/lily/distinfo -------------------------------------------------------------------------------- /lang/lily/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/lily/pkg/DESCR -------------------------------------------------------------------------------- /lang/lily/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/lily/pkg/PLIST -------------------------------------------------------------------------------- /lang/never/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/never/Makefile -------------------------------------------------------------------------------- /lang/never/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/never/distinfo -------------------------------------------------------------------------------- /lang/never/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/never/pkg/DESCR -------------------------------------------------------------------------------- /lang/never/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/never/pkg/PLIST -------------------------------------------------------------------------------- /lang/nwcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/nwcc/Makefile -------------------------------------------------------------------------------- /lang/nwcc/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/nwcc/distinfo -------------------------------------------------------------------------------- /lang/nwcc/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/nwcc/pkg/DESCR -------------------------------------------------------------------------------- /lang/nwcc/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/nwcc/pkg/PLIST -------------------------------------------------------------------------------- /lang/pharo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/pharo/Makefile -------------------------------------------------------------------------------- /lang/pharo/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/pharo/TODO -------------------------------------------------------------------------------- /lang/pharo/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/pharo/distinfo -------------------------------------------------------------------------------- /lang/pharo/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/pharo/pkg/DESCR -------------------------------------------------------------------------------- /lang/pharo/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD: PLIST,v$ 2 | -------------------------------------------------------------------------------- /lang/picolisp/TODO: -------------------------------------------------------------------------------- 1 | - Figure out if WRKDIR is proper 2 | - Probably need to install more things 3 | -------------------------------------------------------------------------------- /lang/pypy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/pypy/Makefile -------------------------------------------------------------------------------- /lang/pypy/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/pypy/distinfo -------------------------------------------------------------------------------- /lang/pypy/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/pypy/pkg/DESCR -------------------------------------------------------------------------------- /lang/pypy/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/pypy/pkg/PLIST -------------------------------------------------------------------------------- /lang/python/3.11/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/python/3.11/TODO -------------------------------------------------------------------------------- /lang/solidity/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | @bin bin/solc 3 | -------------------------------------------------------------------------------- /lang/voc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/voc/Makefile -------------------------------------------------------------------------------- /lang/voc/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/voc/distinfo -------------------------------------------------------------------------------- /lang/voc/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/voc/pkg/DESCR -------------------------------------------------------------------------------- /lang/voc/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/lang/voc/pkg/PLIST -------------------------------------------------------------------------------- /mail/p5-Email-Outlook-Message/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Read Outlook .msg files 2 | -------------------------------------------------------------------------------- /math/arb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/arb/Makefile -------------------------------------------------------------------------------- /math/arb/TODO: -------------------------------------------------------------------------------- 1 | - Update until submission 2 | -------------------------------------------------------------------------------- /math/arb/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/arb/distinfo -------------------------------------------------------------------------------- /math/arb/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/arb/pkg/DESCR -------------------------------------------------------------------------------- /math/arb/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/arb/pkg/PLIST -------------------------------------------------------------------------------- /math/atlas-math/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/atlas-math/TODO -------------------------------------------------------------------------------- /math/atlas-math/pkg/DESCR: -------------------------------------------------------------------------------- 1 | ATLAS 2 | -------------------------------------------------------------------------------- /math/bcal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/bcal/Makefile -------------------------------------------------------------------------------- /math/bcal/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/bcal/distinfo -------------------------------------------------------------------------------- /math/bcal/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/bcal/pkg/DESCR -------------------------------------------------------------------------------- /math/bcal/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/bcal/pkg/PLIST -------------------------------------------------------------------------------- /math/brial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/brial/Makefile -------------------------------------------------------------------------------- /math/brial/TODO: -------------------------------------------------------------------------------- 1 | - 1/1 tests fail 2 | -------------------------------------------------------------------------------- /math/brial/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/brial/distinfo -------------------------------------------------------------------------------- /math/brial/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/brial/pkg/DESCR -------------------------------------------------------------------------------- /math/brial/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/brial/pkg/PLIST -------------------------------------------------------------------------------- /math/cfitsio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/cfitsio/Makefile -------------------------------------------------------------------------------- /math/cfitsio/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/cfitsio/distinfo -------------------------------------------------------------------------------- /math/cliquer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/cliquer/Makefile -------------------------------------------------------------------------------- /math/cliquer/TODO: -------------------------------------------------------------------------------- 1 | - Update until submission 2 | -------------------------------------------------------------------------------- /math/cliquer/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/cliquer/distinfo -------------------------------------------------------------------------------- /math/eclib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/eclib/Makefile -------------------------------------------------------------------------------- /math/eclib/TODO: -------------------------------------------------------------------------------- 1 | - Enable pari shared library 2 | -------------------------------------------------------------------------------- /math/eclib/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/eclib/distinfo -------------------------------------------------------------------------------- /math/flint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/flint/Makefile -------------------------------------------------------------------------------- /math/flint/TODO: -------------------------------------------------------------------------------- 1 | - Update until submission 2 | -------------------------------------------------------------------------------- /math/flint/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/flint/distinfo -------------------------------------------------------------------------------- /math/flint/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/flint/pkg/DESCR -------------------------------------------------------------------------------- /math/flint/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/flint/pkg/PLIST -------------------------------------------------------------------------------- /math/flintqs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/flintqs/Makefile -------------------------------------------------------------------------------- /math/flintqs/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/flintqs/distinfo -------------------------------------------------------------------------------- /math/m4ri/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/m4ri/Makefile -------------------------------------------------------------------------------- /math/m4ri/TODO: -------------------------------------------------------------------------------- 1 | - 2/14 tests fail 2 | - Update until submission 3 | -------------------------------------------------------------------------------- /math/m4ri/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/m4ri/distinfo -------------------------------------------------------------------------------- /math/m4ri/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/m4ri/pkg/DESCR -------------------------------------------------------------------------------- /math/m4ri/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/m4ri/pkg/PLIST -------------------------------------------------------------------------------- /math/octave/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/octave/Makefile -------------------------------------------------------------------------------- /math/octave/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/octave/distinfo -------------------------------------------------------------------------------- /math/octave/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/octave/pkg/DESCR -------------------------------------------------------------------------------- /math/octave/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/octave/pkg/PLIST -------------------------------------------------------------------------------- /math/pc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/pc/Makefile -------------------------------------------------------------------------------- /math/pc/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/pc/distinfo -------------------------------------------------------------------------------- /math/pc/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/pc/pkg/DESCR -------------------------------------------------------------------------------- /math/pc/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/pc/pkg/PLIST -------------------------------------------------------------------------------- /math/sagemath/TODO: -------------------------------------------------------------------------------- 1 | - Update cblas to the latest 2 | -------------------------------------------------------------------------------- /math/superlu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/superlu/Makefile -------------------------------------------------------------------------------- /math/superlu/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/math/superlu/distinfo -------------------------------------------------------------------------------- /meta/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/meta/Makefile.inc -------------------------------------------------------------------------------- /meta/freenet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/meta/freenet/Makefile -------------------------------------------------------------------------------- /misc/cdrdao/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/misc/cdrdao/Makefile -------------------------------------------------------------------------------- /misc/cdrdao/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/misc/cdrdao/distinfo -------------------------------------------------------------------------------- /misc/cdrdao/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/misc/cdrdao/pkg/DESCR -------------------------------------------------------------------------------- /misc/cdrdao/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/misc/cdrdao/pkg/PLIST -------------------------------------------------------------------------------- /misc/grc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/misc/grc/Makefile -------------------------------------------------------------------------------- /misc/grc/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/misc/grc/distinfo -------------------------------------------------------------------------------- /misc/grc/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/misc/grc/pkg/DESCR -------------------------------------------------------------------------------- /misc/grc/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/misc/grc/pkg/PLIST -------------------------------------------------------------------------------- /misc/openbabel/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/misc/openbabel/TODO -------------------------------------------------------------------------------- /misc/p5-Finance-Bank-Kraken/pkg/DESCR: -------------------------------------------------------------------------------- 1 | api.kraken.com connector 2 | -------------------------------------------------------------------------------- /misc/p5-Finance-BitStamp-API/pkg/DESCR: -------------------------------------------------------------------------------- 1 | BitStamp API and IPN calls 2 | -------------------------------------------------------------------------------- /misc/p5-Finance-OFX/pkg/DESCR: -------------------------------------------------------------------------------- 1 | OFX client implementation 2 | -------------------------------------------------------------------------------- /misc/p5-Finance-QIF/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Parse and create Quicken Interchange Format files 2 | -------------------------------------------------------------------------------- /multimedia/obs-studio/pkg/DESCR: -------------------------------------------------------------------------------- 1 | zz 2 | -------------------------------------------------------------------------------- /multimedia/shotcut/UPDATE: -------------------------------------------------------------------------------- 1 | CI for multimedia/shotcut 2 | -------------------------------------------------------------------------------- /multimedia/zoneminder/TODO: -------------------------------------------------------------------------------- 1 | readme 2 | @extraunexec bits 3 | -------------------------------------------------------------------------------- /net/R-curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/R-curl/Makefile -------------------------------------------------------------------------------- /net/R-curl/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/R-curl/distinfo -------------------------------------------------------------------------------- /net/R-curl/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/R-curl/pkg/DESCR -------------------------------------------------------------------------------- /net/R-curl/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/R-curl/pkg/PLIST -------------------------------------------------------------------------------- /net/abaddon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/abaddon/Makefile -------------------------------------------------------------------------------- /net/abaddon/TODO: -------------------------------------------------------------------------------- 1 | fix crash on launch -------------------------------------------------------------------------------- /net/abaddon/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/abaddon/distinfo -------------------------------------------------------------------------------- /net/abaddon/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/abaddon/pkg/DESCR -------------------------------------------------------------------------------- /net/abaddon/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/abaddon/pkg/PLIST -------------------------------------------------------------------------------- /net/adguardhome/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/adguardhome/TODO -------------------------------------------------------------------------------- /net/adguardhome/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD: PLIST,v$ 2 | @bin bin/AdGuardHome 3 | -------------------------------------------------------------------------------- /net/athens/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/athens/Makefile -------------------------------------------------------------------------------- /net/athens/TODO: -------------------------------------------------------------------------------- 1 | - Add _athens user 2 | - Test rc script 3 | -------------------------------------------------------------------------------- /net/athens/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/athens/distinfo -------------------------------------------------------------------------------- /net/athens/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A proxy server for the Go Modules download API. 2 | -------------------------------------------------------------------------------- /net/athens/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/athens/pkg/PLIST -------------------------------------------------------------------------------- /net/ddgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/ddgr/Makefile -------------------------------------------------------------------------------- /net/ddgr/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/ddgr/distinfo -------------------------------------------------------------------------------- /net/ddgr/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/ddgr/pkg/DESCR -------------------------------------------------------------------------------- /net/ddgr/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/ddgr/pkg/PLIST -------------------------------------------------------------------------------- /net/djbdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/djbdns/Makefile -------------------------------------------------------------------------------- /net/djbdns/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/djbdns/distinfo -------------------------------------------------------------------------------- /net/djbdns/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/djbdns/pkg/DESCR -------------------------------------------------------------------------------- /net/djbdns/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/djbdns/pkg/PLIST -------------------------------------------------------------------------------- /net/doggo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/doggo/Makefile -------------------------------------------------------------------------------- /net/doggo/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/doggo/distinfo -------------------------------------------------------------------------------- /net/doggo/modules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/doggo/modules.inc -------------------------------------------------------------------------------- /net/doggo/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/doggo/pkg/DESCR -------------------------------------------------------------------------------- /net/doggo/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/doggo/pkg/PLIST -------------------------------------------------------------------------------- /net/fetch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/fetch/Makefile -------------------------------------------------------------------------------- /net/fetch/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/fetch/distinfo -------------------------------------------------------------------------------- /net/fetch/pkg/DESCR: -------------------------------------------------------------------------------- 1 | This package is a port of the fetch(1) utility from FreeBSD. 2 | -------------------------------------------------------------------------------- /net/fetch/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/fetch/pkg/PLIST -------------------------------------------------------------------------------- /net/freenet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/freenet/Makefile -------------------------------------------------------------------------------- /net/freenet/keepalive/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Tool to keep some keys within Freenet accessible. 2 | -------------------------------------------------------------------------------- /net/freenet/upnp2/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Tool to keep some keys within Freenet accessible. 2 | -------------------------------------------------------------------------------- /net/geoloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/geoloc/Makefile -------------------------------------------------------------------------------- /net/geoloc/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/geoloc/distinfo -------------------------------------------------------------------------------- /net/geoloc/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/geoloc/pkg/DESCR -------------------------------------------------------------------------------- /net/geoloc/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/geoloc/pkg/PLIST -------------------------------------------------------------------------------- /net/gnunet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/gnunet/Makefile -------------------------------------------------------------------------------- /net/gnunet/base/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/gnunet/base/TODO -------------------------------------------------------------------------------- /net/go-ethereum/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Official Golang implementation of the Ethereum protocol. 2 | -------------------------------------------------------------------------------- /net/googler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/googler/Makefile -------------------------------------------------------------------------------- /net/googler/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/googler/distinfo -------------------------------------------------------------------------------- /net/googler/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/googler/pkg/DESCR -------------------------------------------------------------------------------- /net/googler/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/googler/pkg/PLIST -------------------------------------------------------------------------------- /net/gurk-rs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/gurk-rs/Makefile -------------------------------------------------------------------------------- /net/gurk-rs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/gurk-rs/TODO -------------------------------------------------------------------------------- /net/gurk-rs/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/gurk-rs/distinfo -------------------------------------------------------------------------------- /net/gurk-rs/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/gurk-rs/pkg/DESCR -------------------------------------------------------------------------------- /net/gurk-rs/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/gurk 2 | -------------------------------------------------------------------------------- /net/horst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/horst/Makefile -------------------------------------------------------------------------------- /net/horst/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/horst/distinfo -------------------------------------------------------------------------------- /net/horst/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/horst/pkg/DESCR -------------------------------------------------------------------------------- /net/horst/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/horst/pkg/PLIST -------------------------------------------------------------------------------- /net/icb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/icb/Makefile -------------------------------------------------------------------------------- /net/icb/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/icb/distinfo -------------------------------------------------------------------------------- /net/icb/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/icb/pkg/DESCR -------------------------------------------------------------------------------- /net/icb/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/icb/pkg/PLIST -------------------------------------------------------------------------------- /net/ii/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/ii/Makefile -------------------------------------------------------------------------------- /net/ii/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/ii/distinfo -------------------------------------------------------------------------------- /net/ii/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/ii/pkg/DESCR -------------------------------------------------------------------------------- /net/ii/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/ii/pkg/PLIST -------------------------------------------------------------------------------- /net/ipxe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/ipxe/Makefile -------------------------------------------------------------------------------- /net/ipxe/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/ipxe/distinfo -------------------------------------------------------------------------------- /net/ipxe/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/ipxe/pkg/DESCR -------------------------------------------------------------------------------- /net/ipxe/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/ipxe/pkg/PLIST -------------------------------------------------------------------------------- /net/lbry-sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/lbry-sdk/Makefile -------------------------------------------------------------------------------- /net/lbry-sdk/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/lbry-sdk/TODO -------------------------------------------------------------------------------- /net/lbry-sdk/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/lbry-sdk/distinfo -------------------------------------------------------------------------------- /net/lft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/lft/Makefile -------------------------------------------------------------------------------- /net/lft/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/lft/TODO -------------------------------------------------------------------------------- /net/lft/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/lft/distinfo -------------------------------------------------------------------------------- /net/lft/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/lft/pkg/DESCR -------------------------------------------------------------------------------- /net/lft/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/lft/pkg/PLIST -------------------------------------------------------------------------------- /net/libfetch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/libfetch/Makefile -------------------------------------------------------------------------------- /net/libfetch/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/libfetch/distinfo -------------------------------------------------------------------------------- /net/libtorrent/UPDATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/libtorrent/UPDATE -------------------------------------------------------------------------------- /net/lith/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/lith/Makefile -------------------------------------------------------------------------------- /net/lith/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/lith/TODO -------------------------------------------------------------------------------- /net/lith/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/lith/distinfo -------------------------------------------------------------------------------- /net/lith/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/lith/pkg/DESCR -------------------------------------------------------------------------------- /net/lith/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/lith/pkg/PLIST -------------------------------------------------------------------------------- /net/munin3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/munin3/Makefile -------------------------------------------------------------------------------- /net/munin3/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/munin3/TODO -------------------------------------------------------------------------------- /net/munin3/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/munin3/distinfo -------------------------------------------------------------------------------- /net/munin3/files/bgpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/munin3/files/bgpd -------------------------------------------------------------------------------- /net/munin3/files/intr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/munin3/files/intr -------------------------------------------------------------------------------- /net/nqptp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/nqptp/Makefile -------------------------------------------------------------------------------- /net/nqptp/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/nqptp/distinfo -------------------------------------------------------------------------------- /net/nqptp/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/nqptp/pkg/DESCR -------------------------------------------------------------------------------- /net/nqptp/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/nqptp/pkg/PLIST -------------------------------------------------------------------------------- /net/p5-Net-OAuth2/pkg/DESCR: -------------------------------------------------------------------------------- 1 | OAuth 2.0 implementation -------------------------------------------------------------------------------- /net/p5-Router-Simple/pkg/DESCR: -------------------------------------------------------------------------------- 1 | simple HTTP router 2 | -------------------------------------------------------------------------------- /net/perkeep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/perkeep/Makefile -------------------------------------------------------------------------------- /net/perkeep/TODO: -------------------------------------------------------------------------------- 1 | append to MODGO_GOPATH?! 2 | -------------------------------------------------------------------------------- /net/perkeep/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/perkeep/distinfo -------------------------------------------------------------------------------- /net/perkeep/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/perkeep/pkg/DESCR -------------------------------------------------------------------------------- /net/psi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/psi/Makefile -------------------------------------------------------------------------------- /net/psi/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/psi/distinfo -------------------------------------------------------------------------------- /net/psi/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/psi/pkg/DESCR -------------------------------------------------------------------------------- /net/psi/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/psi/pkg/PLIST -------------------------------------------------------------------------------- /net/psimedia/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/psimedia/Makefile -------------------------------------------------------------------------------- /net/psimedia/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/psimedia/distinfo -------------------------------------------------------------------------------- /net/py-pyrax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/py-pyrax/Makefile -------------------------------------------------------------------------------- /net/py-pyrax/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/py-pyrax/distinfo -------------------------------------------------------------------------------- /net/py-synapse/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/py-synapse/TODO -------------------------------------------------------------------------------- /net/quassel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/quassel/Makefile -------------------------------------------------------------------------------- /net/quassel/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/quassel/TODO -------------------------------------------------------------------------------- /net/quassel/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/quassel/distinfo -------------------------------------------------------------------------------- /net/quassel/pkg/PLIST-core: -------------------------------------------------------------------------------- 1 | @bin bin/quasselcore 2 | share/doc/pkg-readmes/${PKGSTEM} 3 | -------------------------------------------------------------------------------- /net/repology/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/repology/Makefile -------------------------------------------------------------------------------- /net/repology/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/repology/distinfo -------------------------------------------------------------------------------- /net/rtorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/rtorrent/Makefile -------------------------------------------------------------------------------- /net/rtorrent/UPDATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/rtorrent/UPDATE -------------------------------------------------------------------------------- /net/rtorrent/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/rtorrent/distinfo -------------------------------------------------------------------------------- /net/rustscan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/rustscan/Makefile -------------------------------------------------------------------------------- /net/rustscan/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/rustscan/distinfo -------------------------------------------------------------------------------- /net/rustscan/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/rustscan 2 | -------------------------------------------------------------------------------- /net/s3cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/s3cmd/Makefile -------------------------------------------------------------------------------- /net/s3cmd/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/s3cmd/distinfo -------------------------------------------------------------------------------- /net/s3cmd/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/s3cmd/pkg/DESCR -------------------------------------------------------------------------------- /net/s3cmd/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/s3cmd/pkg/PLIST -------------------------------------------------------------------------------- /net/sshs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/sshs/Makefile -------------------------------------------------------------------------------- /net/sshs/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/sshs/distinfo -------------------------------------------------------------------------------- /net/sshs/modules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/sshs/modules.inc -------------------------------------------------------------------------------- /net/sshs/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/sshs/pkg/DESCR -------------------------------------------------------------------------------- /net/sshs/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/sshs 2 | -------------------------------------------------------------------------------- /net/synergy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/synergy/Makefile -------------------------------------------------------------------------------- /net/synergy/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/synergy/distinfo -------------------------------------------------------------------------------- /net/synergy/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/synergy/pkg/DESCR -------------------------------------------------------------------------------- /net/synergy/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/synergy/pkg/PLIST -------------------------------------------------------------------------------- /net/tcpdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/tcpdump/Makefile -------------------------------------------------------------------------------- /net/tcpdump/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/tcpdump/distinfo -------------------------------------------------------------------------------- /net/tcpdump/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/tcpdump/pkg/DESCR -------------------------------------------------------------------------------- /net/tcpdump/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/tcpdump/pkg/PLIST -------------------------------------------------------------------------------- /net/tcptrack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/tcptrack/Makefile -------------------------------------------------------------------------------- /net/tcptrack/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/tcptrack/distinfo -------------------------------------------------------------------------------- /net/telepathy/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/telepathy/TODO -------------------------------------------------------------------------------- /net/tootle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/tootle/Makefile -------------------------------------------------------------------------------- /net/tootle/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/tootle/distinfo -------------------------------------------------------------------------------- /net/tootle/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Tootle is a GTK+ Mastodon client. 2 | -------------------------------------------------------------------------------- /net/tootle/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/tootle/pkg/PLIST -------------------------------------------------------------------------------- /net/wireless/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/wireless/Makefile -------------------------------------------------------------------------------- /net/wireless/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/wireless/distinfo -------------------------------------------------------------------------------- /net/zerotier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/zerotier/Makefile -------------------------------------------------------------------------------- /net/zerotier/TODO: -------------------------------------------------------------------------------- 1 | - drop privs not working? 2 | -------------------------------------------------------------------------------- /net/zerotier/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/net/zerotier/distinfo -------------------------------------------------------------------------------- /print/luametatex/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Minimal TeX engine for use with ConTeXt. 2 | -------------------------------------------------------------------------------- /print/luametatex/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/luametatex 2 | -------------------------------------------------------------------------------- /productivity/hledger-iadd/pkg/DESCR: -------------------------------------------------------------------------------- 1 | A terminal UI as drop-in replacement for hledger add -------------------------------------------------------------------------------- /productivity/hledger-iadd/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | @bin bin/hledger-iadd 3 | -------------------------------------------------------------------------------- /productivity/hledger/pkg/DESCR-lib: -------------------------------------------------------------------------------- 1 | hledger library 2 | -------------------------------------------------------------------------------- /productivity/hledger/pkg/PLIST-main: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | @bin bin/hledger 3 | -------------------------------------------------------------------------------- /productivity/treesheets/TODO: -------------------------------------------------------------------------------- 1 | - figure out what's going on with the install directory 2 | -------------------------------------------------------------------------------- /security/browserpass-native/TODO: -------------------------------------------------------------------------------- 1 | Add instructions how this works with firefox to pkg/README 2 | -------------------------------------------------------------------------------- /security/johnny/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | @bin bin/johnny 3 | -------------------------------------------------------------------------------- /security/legba/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/legba 2 | -------------------------------------------------------------------------------- /security/phrasendrescher/pkg/PLIST-gpg: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | lib/phrasendrescher/enc-file.so 3 | -------------------------------------------------------------------------------- /security/py-coincurve/install_id: -------------------------------------------------------------------------------- 1 | 3KTo9vrf33eh2PMiCZ1RhqTqrax575EYQyh3WaAyKBQPUNCBDVhJwzbe2zdHuUMYAW -------------------------------------------------------------------------------- /security/step-cli/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/step-cli 2 | -------------------------------------------------------------------------------- /security/wpa_gui/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/security/wpa_gui/TODO -------------------------------------------------------------------------------- /security/wpa_gui/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | @bin sbin/wpa_gui 3 | -------------------------------------------------------------------------------- /shells/oil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/shells/oil/Makefile -------------------------------------------------------------------------------- /shells/oil/TODO: -------------------------------------------------------------------------------- 1 | Build is broken currently 2 | -------------------------------------------------------------------------------- /shells/oil/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/shells/oil/distinfo -------------------------------------------------------------------------------- /sysutils/acts/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/sysutils/acts/TODO -------------------------------------------------------------------------------- /sysutils/afetch/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/afetch 2 | -------------------------------------------------------------------------------- /sysutils/athens/TODO: -------------------------------------------------------------------------------- 1 | - rc script 2 | - example config 3 | -------------------------------------------------------------------------------- /sysutils/athens/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD: PLIST,v$ 2 | @bin bin/athens 3 | -------------------------------------------------------------------------------- /sysutils/boulder/TODO: -------------------------------------------------------------------------------- 1 | maybe rename some of the bins 2 | -------------------------------------------------------------------------------- /sysutils/btcd/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/sysutils/btcd/TODO -------------------------------------------------------------------------------- /sysutils/dinit/files/boot.example: -------------------------------------------------------------------------------- 1 | type = internal 2 | waits-for.d = boot.d 3 | -------------------------------------------------------------------------------- /sysutils/duply/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | bin/duply 3 | -------------------------------------------------------------------------------- /sysutils/fq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/sysutils/fq/Makefile -------------------------------------------------------------------------------- /sysutils/fq/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/sysutils/fq/distinfo -------------------------------------------------------------------------------- /sysutils/fq/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/sysutils/fq/pkg/DESCR -------------------------------------------------------------------------------- /sysutils/fq/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/fq 2 | -------------------------------------------------------------------------------- /sysutils/gdu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/sysutils/gdu/Makefile -------------------------------------------------------------------------------- /sysutils/gdu/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/sysutils/gdu/distinfo -------------------------------------------------------------------------------- /sysutils/jmtpfs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/sysutils/jmtpfs/TODO -------------------------------------------------------------------------------- /sysutils/jmtpfs/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | @bin bin/jmtpfs 3 | -------------------------------------------------------------------------------- /sysutils/osquery/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/sysutils/osquery/TODO -------------------------------------------------------------------------------- /sysutils/puppetserver/TODO: -------------------------------------------------------------------------------- 1 | - look into reviving os-settings.conf 2 | -------------------------------------------------------------------------------- /sysutils/signing/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/sysutils/signing/list -------------------------------------------------------------------------------- /sysutils/systembsd/pkg/DESCR: -------------------------------------------------------------------------------- 1 | XXXTODO 2 | -------------------------------------------------------------------------------- /sysutils/usbmuxd/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/sysutils/usbmuxd/TODO -------------------------------------------------------------------------------- /sysutils/wireguard-ui/pkg/DESCR: -------------------------------------------------------------------------------- 1 | TODO 2 | -------------------------------------------------------------------------------- /sysutils/wireguard-ui/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD: PLIST,v$ 2 | @bin bin/wireguard-ui 3 | -------------------------------------------------------------------------------- /textproc/py-pdftotext/TODO: -------------------------------------------------------------------------------- 1 | - Testing 2 | -------------------------------------------------------------------------------- /textproc/scdoc/TODO: -------------------------------------------------------------------------------- 1 | WANTLIB? 2 | -------------------------------------------------------------------------------- /textproc/tree-sitter-cli/pkg/PLIST: -------------------------------------------------------------------------------- 1 | @bin bin/tree-sitter 2 | -------------------------------------------------------------------------------- /wayland/cage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/wayland/cage/Makefile -------------------------------------------------------------------------------- /wayland/cage/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/wayland/cage/distinfo -------------------------------------------------------------------------------- /www/badwolf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/badwolf/Makefile -------------------------------------------------------------------------------- /www/badwolf/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/badwolf/distinfo -------------------------------------------------------------------------------- /www/badwolf/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/badwolf/pkg/DESCR -------------------------------------------------------------------------------- /www/badwolf/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/badwolf/pkg/PLIST -------------------------------------------------------------------------------- /www/browsh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/browsh/Makefile -------------------------------------------------------------------------------- /www/browsh/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/browsh/distinfo -------------------------------------------------------------------------------- /www/edbrowse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/edbrowse/Makefile -------------------------------------------------------------------------------- /www/edbrowse/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/edbrowse/distinfo -------------------------------------------------------------------------------- /www/links+/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/links+/Makefile -------------------------------------------------------------------------------- /www/links+/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/links+/distinfo -------------------------------------------------------------------------------- /www/links+/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/links+/pkg/DESCR -------------------------------------------------------------------------------- /www/links+/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/links+/pkg/PLIST -------------------------------------------------------------------------------- /www/llhttp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/llhttp/Makefile -------------------------------------------------------------------------------- /www/llhttp/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/llhttp/distinfo -------------------------------------------------------------------------------- /www/llhttp/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/llhttp/pkg/DESCR -------------------------------------------------------------------------------- /www/llhttp/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/llhttp/pkg/PLIST -------------------------------------------------------------------------------- /www/nyxt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/nyxt/Makefile -------------------------------------------------------------------------------- /www/nyxt/TODO: -------------------------------------------------------------------------------- 1 | Required dependency: asdf 2 | -------------------------------------------------------------------------------- /www/nyxt/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/nyxt/distinfo -------------------------------------------------------------------------------- /www/p5-Google-Chat-WebHooks/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Google Chat WebHooks module 2 | -------------------------------------------------------------------------------- /www/p5-WWW-Namecheap-API/pkg/DESCR: -------------------------------------------------------------------------------- 1 | oo interface to namecheap.com 2 | -------------------------------------------------------------------------------- /www/redmine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/redmine/Makefile -------------------------------------------------------------------------------- /www/redmine/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/redmine/distinfo -------------------------------------------------------------------------------- /www/servo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/servo/Makefile -------------------------------------------------------------------------------- /www/servo/TODO: -------------------------------------------------------------------------------- 1 | Nothing is ready yet. 2 | -------------------------------------------------------------------------------- /www/servo/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/servo/distinfo -------------------------------------------------------------------------------- /www/uwsgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/uwsgi/Makefile -------------------------------------------------------------------------------- /www/uwsgi/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/uwsgi/distinfo -------------------------------------------------------------------------------- /www/uwsgi/pkg/DESCR-lua: -------------------------------------------------------------------------------- 1 | This package contains the lua plugin for uWSGI. 2 | -------------------------------------------------------------------------------- /www/uwsgi/pkg/DESCR-python: -------------------------------------------------------------------------------- 1 | This package contains the Python 2.7 plugin for uWSGI. 2 | -------------------------------------------------------------------------------- /www/uwsgi/pkg/PLIST-lua: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | lib/uwsgi/lua_plugin.so 3 | -------------------------------------------------------------------------------- /www/yacy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/yacy/Makefile -------------------------------------------------------------------------------- /www/yacy/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/yacy/TODO -------------------------------------------------------------------------------- /www/yacy/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/yacy/distinfo -------------------------------------------------------------------------------- /www/yacy/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/yacy/pkg/DESCR -------------------------------------------------------------------------------- /www/yacy/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/yacy/pkg/PLIST -------------------------------------------------------------------------------- /www/yacy/pkg/yacy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/www/yacy/pkg/yacy.rc -------------------------------------------------------------------------------- /x11/bino/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/bino/Makefile -------------------------------------------------------------------------------- /x11/bino/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/bino/distinfo -------------------------------------------------------------------------------- /x11/bino/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/bino/pkg/DESCR -------------------------------------------------------------------------------- /x11/bino/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/bino/pkg/PLIST -------------------------------------------------------------------------------- /x11/cde/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/cde/Makefile -------------------------------------------------------------------------------- /x11/cde/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/cde/distinfo -------------------------------------------------------------------------------- /x11/cde/pkg/DESCR: -------------------------------------------------------------------------------- 1 | Common Desktop Environment 2 | -------------------------------------------------------------------------------- /x11/cde/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/cde/pkg/PLIST -------------------------------------------------------------------------------- /x11/cde/pkg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/cde/pkg/README -------------------------------------------------------------------------------- /x11/fluxbox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/fluxbox/Makefile -------------------------------------------------------------------------------- /x11/fluxbox/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/fluxbox/distinfo -------------------------------------------------------------------------------- /x11/fluxbox/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/fluxbox/pkg/DESCR -------------------------------------------------------------------------------- /x11/fluxbox/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/fluxbox/pkg/PLIST -------------------------------------------------------------------------------- /x11/kvantum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/kvantum/Makefile -------------------------------------------------------------------------------- /x11/kvantum/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/kvantum/distinfo -------------------------------------------------------------------------------- /x11/kvantum/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/kvantum/pkg/DESCR -------------------------------------------------------------------------------- /x11/kvantum/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/kvantum/pkg/PLIST -------------------------------------------------------------------------------- /x11/libva-utils/TODO: -------------------------------------------------------------------------------- 1 | not useful until intel-vaapi-driver is ready-to-use 2 | -------------------------------------------------------------------------------- /x11/libva/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/libva/Makefile -------------------------------------------------------------------------------- /x11/libva/TODO: -------------------------------------------------------------------------------- 1 | not useful until intel-vaapi-driver is ready-to-use 2 | -------------------------------------------------------------------------------- /x11/libva/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/libva/distinfo -------------------------------------------------------------------------------- /x11/libva/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/libva/pkg/DESCR -------------------------------------------------------------------------------- /x11/libva/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/libva/pkg/PLIST -------------------------------------------------------------------------------- /x11/luatekui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/luatekui/Makefile -------------------------------------------------------------------------------- /x11/luatekui/TODO: -------------------------------------------------------------------------------- 1 | - test 2 | - see if there are newer releases 3 | -------------------------------------------------------------------------------- /x11/luatekui/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/luatekui/distinfo -------------------------------------------------------------------------------- /x11/reddit-wallpaper/TODO: -------------------------------------------------------------------------------- 1 | Worth a package? 2 | -------------------------------------------------------------------------------- /x11/xpra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/xpra/Makefile -------------------------------------------------------------------------------- /x11/xpra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/xpra/README.md -------------------------------------------------------------------------------- /x11/xpra/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/xpra/distinfo -------------------------------------------------------------------------------- /x11/xpra/pkg/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/xpra/pkg/DESCR -------------------------------------------------------------------------------- /x11/xpra/pkg/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasperla/openbsd-wip/HEAD/x11/xpra/pkg/PLIST --------------------------------------------------------------------------------