url stringlengths 11 2.25k | text stringlengths 88 50k | ts timestamp[s]date 2026-01-13 08:47:33 2026-01-13 09:30:40 |
|---|---|---|
https://id-id.facebook.com/login/?next=https%3A%2F%2Fl.facebook.com%2Fl.php%3Fu%3Dhttps%253A%252F%252Fwww.instagram.com%252F%26amp%253Bh%3DAT0f7mNL_a3czBRxj5oEEAbuyPqzmstjfJwLfSHwF6_D3Lu0faGCrzyUQo8B3hC5IemgFXwltPfLtsIIq0A5SXyEIYMxe89sBldeFpXK2PiDDHQ-jTrujxRZkg-jTnyUN9NQiBQaOZhfDrJ5vUXUcCCePEv83g | Facebook Facebook Email atau telepon Kata Sandi Lupa akun? Buat Akun Baru Anda Diblokir Sementara Anda Diblokir Sementara Sepertinya Anda menyalahgunakan fitur ini dengan menggunakannya terlalu cepat. Anda dilarang menggunakan fitur ini untuk sementara. Back Bahasa Indonesia 한국어 English (US) Tiếng Việt ภาษาไทย Español 中文(简体) 日本語 Português (Brasil) Français (France) Deutsch Daftar Masuk Messenger Facebook Lite Video Meta Pay Meta Store Meta Quest Ray-Ban Meta Meta AI Konten Meta AI lainnya Instagram Threads Pusat Informasi Pemilu Kebijakan Privasi Pusat Privasi Tentang Buat Iklan Buat Halaman Developer Karier Cookie Pilihan Iklan Ketentuan Bantuan Pengunggahan Kontak & Non-Pengguna Pengaturan Log aktivitas Meta © 2026 | 2026-01-13T09:30:28 |
https://snyk.io/blog/why-npm-lockfiles-can-be-a-security-blindspot-for-injecting-malicious-modules/ | Why npm lockfiles can be a security blindspot for injecting malicious modules | Snyk You need to enable JavaScript to run this app. Skip to main content Platform Platform Snyk AI Security Platform Modern security in a single platform Snyk AI Workflows AI-driven workflows to secure applications DeepCode AI Purpose-built security AI Integrations SDLC-spanning security Snyk Learn Developer security education Pricing Products Snyk Code Secure your code as it's written Snyk Open Source Avoid vulnerable dependencies Snyk Container Keep your base images secure Snyk IaC Fix IaC misconfigurations in-code Snyk API & Web (DAST) Find and test APIs and web apps Snyk Studio Fix and secure AI-generated code Solutions Secure-AI-Generated Code AI writes, Snyk secures Application Security Build secure, stay secure Software Supply Chain Security Mitigate supply chain risk Zero-Day Vulnerabilities Fix the first day with Snyk Security Intelligence Comprehensive vulnerability data Code Checker Write better code for free Risk-Based Prioritization Fix what matters most Snyk Announces First AI Security Platform Watch on-demand Resources Our resources Resource Library Browse our extensive database Customer Resources The one stop shop for customers Ethical Hacking How ethical hacking can help you Top 10 Vulns See the most common vuln types Snyk Blog Snyk's Podcasts Snyk’s YouTube AI Glossary Knowledge & Docs Snyk Labs Research on AI, vulnerabilities, and DevSecOps Snyk Learn Security education from Snyk Snyk User Docs Get started with Snyk Snyk Support How can we help? Snyk Vuln Database Find new vulnerabilities Snyk Updates Stay in the loop Snyk Partner Solutions Directory Explore Snyk Partner Integrations Our community & games Events & Webinars Ambassadors DevSecCon Community VulnVortex Audience Snyk For Devs Dev-centric info on demand Snyk For Government Mission-informed AppSec Snyk For Security Leaders Insights from industry leaders Read Snyk’s Total Economic Impact™ Study Learn more Company Newsletter Patched & Dispatched Your monthly roundup of Snyk content – the latest insights patched in, dispatched straight to your inbox. No fluff. Just the good stuff. Subscribe to our newsletter Our Services Maximize your AppSec ROI Our Customers We help customers save time and money Our Partners Bringing business class security with partners Case Studies Check out our customer stories and stats Newsroom See the latest press releases Contact Us Get in touch with any feedback or questions Careers Join Snyk today Compete in Fetch the Flag 2026! Register now Pricing Evo New EN Select your language English Deutsch Español Français 日本語 Português (BR) Login Free and Team Plan Customers Snyk app.snyk.io Enterprise Plan Customers 🇺🇸 Snyk US - 1 app.snyk.io 🇺🇸 Snyk US - 2 app.us.snyk.io 🇪🇺 Snyk EU app.eu.snyk.io 🇦🇺 Snyk AU app.au.snyk.io The region where your data is hosted follows local agreements, and it may not align with your own location. Find out more . Snyk API & Web - All Customers Snyk API & Web (DAST) plus.probely.app Sign up Book a live demo Snyk Blog Why npm lockfiles can be a security blindspot for injecting malicious modules Written by Liran Tal September 24, 2019 0 mins read I recently started playing around with the idea of threat modeling packages on the npm ecosystem. Can an event-stream incident happen again? How about other supply chain attacks? What will be the next vector of attack that we haven’t seen yet and might it be entirely preventable? And then, one day I had a eureka! ? Let me show you how easy it is to introduce back doors that are easily missed by project owners… leaving your code insecure. The following picture shows how I injected a malicious package through a pull request I made on an open source package on npm. Take a closer look and see if you can spot it: Now, when I go through my pull request review checklist for this PR, this is how it looks: The packages I introduced are known in the ecosystem and are vulnerabilities free - check. There are no typosquatting attempts in these package names - check. These are valid versions of those packages and aren’t malicious in and of themselves - check. Looks good to me. Let’s go ahead and merge! But wait. Did you carefully review that lockfile? Of course not, and I don’t blame you. It’s not at all obvious, considering these restraints: GitHub’s interface defaults to folding diffs whenever they are larger than a couple hundred lines of code in length. What’s the point in reviewing this file? It’s machine-generated and it’s also not very reader-friendly. Regardless of these restraints, what could go wrong really? Let’s expand the diff and take a look at what’s inside: When a lockfile is present, whether that is Yarn's yarn.lock or npm's package-lock.json , an install will consult the lockfile as the primary source of truth for package versions and their sources for dependencies installation. See what I meant before? A 500-line change on a lockfile is actually a pretty low number. I’ve seen thousands of line changes applied to an npm package-lock.json or a Yarn yarn.lock file. I mean, who really reviews thousands of lines of character changes? To make matters worse, in this lockfile we’ve seen dependency version changes and metadata updates– nothing really out of the ordinary all in all. If we scroll a bit further down to review the rest of the changes applied to this file we find this gem: What becomes clear when you look closer, is that I replaced the original ms npm package to resolve it with my own version, which is stored in my GitHub repository. I should have gotten it from the official npm registry, just as was originally set in the lockfile of the project. This project uses a few different semvers of ms, while I only changed ms@2.1.1 to use my own customized rendition: yarn list --pattern ms yarn list v1 .17 .3 ├─ @babel/helper- module -transforms@ 7.4 .4 ├─ debug@ 2.6 .9 │ └─ ms@ 2.0 .0 ├─ express@ 4.17 .1 │ └─ ms@ 2.1 .1 ├─ ms@ 2.1 .2 ├─ send@ 0.16 .2 │ └─ ms@ 2.0 .0 ├─ serve- static @ 1.14 .1 │ └─ ms@ 2.1 .1 ✨ Done in 0. 49s. It’s pretty hard to remember to review on such a granular level - and it’s no wonder so few actually review lockfile changes character-by-character! So, what does my own version of ms@2.1.1 do? When this pull request gets merged, I inject my malicious version of ms@2.1.1 into the code in order to control its behavior during runtime. In this way, I could introduce a backdoor, alter the logic of the ms module or I could run some postinstall scripts. Additionally, the hosting URL at https://github.com/lirantal/ms/tarball/master is obviously alarming for this experiment but would it be easy for you to spot it if I were to buy a typosquatting domain to host it under https://registry.npmgs.org/ms/ ? For the sake of this experiment, my ms-hosted package has a simple postinstall script that outputs some text and writes to a file so that if you were to install the package itself, you could then confirm that the post-install event simply executes upon a yarn install : "scripts" : { "postinstall" : "echo im installed && echo hello > /tmp/world.txt" , } For project-based applications, lockfile security is critical and is susceptible to the type of malicious injection attacks as this article outlines. Lockfiles being used in packages as libraries however, are solely designed for use within the development workflow of the package itself. For that reason, when the project (package) is installed as a dependency in another project, its lockfile isn’t used. This means that lockfile injection would primarily compromise and risk project maintainers and collaborators as far as libraries are concerned. What can we do to increase lockfile security? Because lockfiles are meant to be read by machines it means that they are easy to process automatically. That makes it the perfect job for a linter and some preset policies! As a countermeasure against the above attack vector, I built lockfile-lint to help with this task. I added the file as another short step of the static code analysis that you can run on a CI server such as Travis CI or Circle CI. At the very least, you should validate all resources that are served: over HTTPS from a trusted source As an example, to run those checks in CI for a Yarn project, it’s as simple as: $ npx lockfile-lint --path yarn.lock --type yarn --validate-https --allowed-hosts yarnpkg.org Here's an example showing common errors detected while linting a project's lockfile: Summary Attacks can manifest in many different forms and types… even from lockfiles! With the event-stream incident we’ve seen the first successful launch of a social engineering attack on open source project maintainers. This was perhaps one of the most sophisticated attacks we’ve seen on software supply-chain security in the npm and JavaScript ecosystem to date. A lockfile injection could attack in a similar fashion, and so you should have proper practices in place to mitigate this issue, or at least reduce the risk. Consider the following: Carefully review changes to lockfiles ( lockfile-lint can help with that). Allow lockfile changes from core maintainers and not sporadic contributors. Avoid the use of lockfiles entirely for libraries. If you're interested to read more about lockfiles and how they are used, I wrote in depth about making sense of package lockfiles in the npm ecosystem . Get started in capture the flag Learn how to solve capture the flag challenges by watching our virtual 101 workshop on demand. Watch now Posted in : Vulnerability Insights Open Source Security Application Security Snyk Top 10: Vulnerabilites you should know Find out which types of vulnerabilities are most likely to appear in your projects based on Snyk scan results and security research. See the report Platform Snyk AI Security Platform Snyk AI Workflows DeepCode AI Integrations Our Resources Resource Library Blog Snyk’s Podcasts Knowledge & Docs Snyk Labs Snyk Learn Snyk User Docs Snyk Support Snyk Vuln Database Snyk Updates Snyk Trust Center Company & Community About Snyk Contact Us Book A Demo Careers Events & Webinars Ambassadors Why Snyk Snyk vs GitHub Advanced Security Snyk vs Veracode Snyk vs Checkmarx Snyk vs Black Duck Snyk vs Wiz Patched & Dispatched Your monthly roundup of Snyk content – the latest insights patched in, dispatched straight to your inbox. No fluff. Just the good stuff. Subscribe to our newsletter © 2025 Snyk Limited Registered in England and Wales Legal terms Privacy Notice Terms of use California residents: do not sell my information | 2026-01-13T09:30:28 |
https://ja-jp.facebook.com/login/?next=https%3A%2F%2Fl.facebook.com%2Fl.php%3Fu%3Dhttps%253A%252F%252Fwww.instagram.com%252F%26amp%253Bh%3DAT0f7mNL_a3czBRxj5oEEAbuyPqzmstjfJwLfSHwF6_D3Lu0faGCrzyUQo8B3hC5IemgFXwltPfLtsIIq0A5SXyEIYMxe89sBldeFpXK2PiDDHQ-jTrujxRZkg-jTnyUN9NQiBQaOZhfDrJ5vUXUcCCePEv83g | Facebook Facebook メールアドレスまたは電話番号 パスワード アカウントを忘れた場合 新しいアカウントを作成 機能の一時停止 機能の一時停止 この機能の使用ペースが早過ぎるため、機能の使用が一時的にブロックされました。 Back 日本語 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 中文(简体) Português (Brasil) Français (France) Deutsch アカウント登録 ログイン Messenger Facebook Lite 動画 Meta Pay Metaストア Meta Quest Ray-Ban Meta Meta AI Meta AIのコンテンツをもっと見る Instagram Threads 投票情報センター プライバシーポリシー プライバシーセンター Facebookについて 広告を作成 ページを作成 開発者 採用情報 Cookie AdChoices 規約 ヘルプ 連絡先のアップロードと非ユーザー 設定 アクティビティログ Meta © 2026 | 2026-01-13T09:30:28 |
https://zh-cn.facebook.com/login/?next=https%3A%2F%2Fl.facebook.com%2Fl.php%3Fu%3Dhttps%253A%252F%252Fwww.instagram.com%252F%26amp%253Bh%3DAT0f7mNL_a3czBRxj5oEEAbuyPqzmstjfJwLfSHwF6_D3Lu0faGCrzyUQo8B3hC5IemgFXwltPfLtsIIq0A5SXyEIYMxe89sBldeFpXK2PiDDHQ-jTrujxRZkg-jTnyUN9NQiBQaOZhfDrJ5vUXUcCCePEv83g | Facebook Facebook 邮箱或手机号 密码 忘记账户了? 创建新账户 你暂时被禁止使用此功能 你暂时被禁止使用此功能 似乎你过度使用了此功能,因此暂时被阻止,不能继续使用。 Back 中文(简体) 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 日本語 Português (Brasil) Français (France) Deutsch 注册 登录 Messenger Facebook Lite 视频 Meta Pay Meta 商店 Meta Quest Ray-Ban Meta Meta AI Meta AI 更多内容 Instagram Threads 选民信息中心 隐私政策 隐私中心 关于 创建广告 创建公共主页 开发者 招聘信息 Cookie Ad Choices 条款 帮助 联系人上传和非用户 设置 动态记录 Meta © 2026 | 2026-01-13T09:30:28 |
http://web.comlab.ox.ac.uk/jeremy.gibbons/publications/bib.html#SCP | Jeremy Gibbons' Publications: BibTeX entries OUCL news research teaching people calendar resources login OXFORD UNIVERSITY COMPUTING LABORATORY BibTeX entries @UNPUBLISHED{ adt , author = {Jeremy Gibbons}, title = {Unfolding Abstract Datatypes}, note = {Submitted for publication}, month = JAN, year = {2008}, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/adt.pdf }, abstract = {One of the most fundamental tools in the programmer's toolbox is the abstract datatype. However, abstract datatypes are not widely used in functional programming, perhaps because they are not subject to familiar proof methods such as equational reasoning and induction~--- in essence, because they are a form of codata rather than a form of data. We show that proof methods for corecursive programs are the appropriate techniques to use. In particular, building on established work on final coalgebra semantics for object-oriented programs, we show that the reasoning principles of unfold operators are perfectly suited for the task. We illustrate with solutions to two recent problems in the literature.} } @INPROCEEDINGS{ wsrfmodeling , author = {Tianyi Zang and Radu Calinescu and Steve Harris and Andrew Tsui and Marta Kwiatkowska and Jeremy Gibbons and Jim Davies and Peter Maccallum and Carlos Caldas}, title = {{WSRF}-Based Modeling of Clinical Trial Information for Collaborative Cancer Research}, booktitle = {8th IEEE International Symposium on Cluster Computing and the Grid (CCGrid08)}, note = {To appear}, year = 2008, month = MAY, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/wsrfmodeling.pdf }, abstract = {The CancerGrid consortium is developing open-standards cancer informatics to address the challenges posed by the modern cancer clinical trials. This paper presents a service-oriented software paradigm implemented in CancerGrid to derive clinical trial information management systems for collaborative cancer research across multiple institutions. Our proposal is founded on a combination of a clinical trial (meta)model and WSRF (Web Services Resource Framework),and is currently being evaluated for use in early phase trials. Although primarily targeted at cancer research, our approach is readily applicable to other areas for which a similar information model is available.} } @ARTICLE{ iterator , author = {Jeremy Gibbons and Bruno C. d. S. Oliveira}, title = {The Essence of the {I}terator Pattern}, journal = {Submitted for publication}, year = {2007}, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/iterator.pdf }, note = {Revised (December 2007) version of \cite{iterator-msfp}}, abstract = {The \textsc{Iterator} pattern gives a clean interface for element-by-element access to a collection. Imperative iterations using the pattern have two simultaneous aspects: \emph{mapping} and \emph{accumulating}. Various existing functional iterations model one or other of these, but not both simultaneously. We argue that McBride and Paterson's \emph{applicative functors}, and in particular the corresponding \emph{traverse} operator, do exactly this, and therefore capture the essence of the \textsc{Iterator} pattern. We present some axioms for traversal, and illustrate with a simple example, the \emph{wordcount} problem.} } @INPROCEEDINGS{ icegov , author = {Charles Crichton and Jim Davies and Jeremy Gibbons and Steve Harris and Aadya Shukla}, title = {Semantics Frameworks for e-Government}, booktitle = {First International Conference on Theory and Practice of Electronic Governance}, year = {2007}, editor = {Tomasz Janowski and Theresa Pardo}, address = {Macau}, month = DEC, organization = {International Institute for Software Technology, United Nations University}, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/icegov.pdf }, abstract = {This paper explains how semantic frameworks can be used to support successful e-Government initiatives by connecting system design to a shared understanding of interactions and processes. It shows how metadata standards and repositories can be used to establish and maintain such an understanding, and how they can be used in the automatic generation and instantiation of components and services. It includes an account of a successful implementation at an international level, and a brief review of related approaches.} } @UNPUBLISHED{ cufp2007 , author = {Jeremy Gibbons}, title = {Report on {F}ourth {W}orkshop on ``{C}ommercial {U}sers of {F}unctional {P}rogramming''}, note = {Oxford University Computing Laboratory}, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/cufp2007.pdf }, month = DEC, year = {2007}, abstract = {The goal of the \textit{Commercial Users of Functional Programming} series of workshops is ``to build a community for users of functional programming languages and technology''. The fourth workshop in the series took place in Freiburg, Germany on 4th October 2007, colocated as usual with the \textit{International Conference on Functional Programming}. The workshop is flourishing, having grown from an intimate gathering of 25 people in Snowbird in 2004, through 40 in Tallinn in 2005 and 57 in Portland in 2006, to 104 registered participants (and more than a handful of casual observers) this time. \par For the first time this year, the organisers had the encouraging dilemma of receiving more offers of presentations than would fit in the available time. The eventual schedule included an invited talk by Xavier Leroy, eleven contributed presentations, and an energetic concluding discussion. Brief summaries of each appear below.} } @UNPUBLISHED{ parametric , author = {Jeremy Gibbons and Ross Paterson}, title = {Parametric Datatype-Genericity}, note = {Submitted for publication}, month = JUL, year = {2007}, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/parametric.pdf }, abstract = {Datatype-generic programs are programs that are parametrized by a \emph{datatype} or \emph{type functor}. There are two main styles of datatype-generic programming: the \emph{Algebra of Programming} approach, characterized by structured recursion operators parametrized by a shape functor, and the \emph{Generic Haskell} approach, characterized by case analysis over the structure of a datatype. We show that the former enjoys a kind of parametricity, relating the behaviours of generic functions at different types; in contrast, the latter is more ad~hoc, with no coherence required or provided between the various clauses of a definition.} } @ARTICLE{ bpmn-csp , author = {Peter Y.H. Wong and Jeremy Gibbons}, title = {A Process Semantics for {BPMN}}, journal = {Draft}, year = {2007}, url = { http://www.comlab.ox.ac.uk/peter.wong/pub/bpmnsem.pdf }, abstract = {Business Process Modelling Notation (BPMN), developed by the Business Process Management Initiative (BPMI), intends to bridge the gap between business process design and implementation. However, the specification of the notation does not include a formal semantics. This paper shows how a subset of the BPMN can be given a process semantics in Communicating Sequential Processes. Such a semantics allows developers to formally analyse and compare BPMN diagrams. A realistic example of a complex business process is included. } } @INPROCEEDINGS{ cgmda , author = {Radu Calinescu and Steve Harris and Jeremy Gibbons and Jim Davies and Igor Toujilov and Sylvia Nagl}, title = {Model-Driven Architecture for Cancer Research}, booktitle = {Software Engineering and Formal Methods}, year = 2007, month = SEP, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/cgmda.pdf }, abstract = {It is a common phenomenon for research projects to collect and analyse valuable data using ad-hoc information systems. These costly-to-build systems are often composed of incompatible variants of the same modules, and record data in ways that prevent any meaningful result analysis across similar projects. We present a framework that uses a combination of formal methods, model-driven development and service-oriented architecture (SOA) technologies to automate the generation of data management systems for cancer clinical trial research, an area particularly affected by these problems. The SOA solution generated by the framework is based on an information model of a cancer clinical trial, and comprises components for both the collection and analysis of cancer research data, within and across clinical trial boundaries. While primarily targeted at cancer research, our approach is readily applicable to other areas for which a similar information model is available.} } @INPROCEEDINGS{ uto , author = {Michael Anthony Smith and Jeremy Gibbons}, title = {Unifying Theories of Objects}, crossref = { ifm2007 }, pages = {599-618}, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/uto.pdf }, abstract = {We present an approach to modelling Abadi--Cardelli-style object calculi as UTP \emph{designs}. Here we provide a core object calculus with an operational \emph{small-step evaluation rule} semantics, and a corresponding UTP model with a denotational \emph{relational predicate} semantics. For clarity, the UTP model is defined in terms of an operand stack, which is used to store the results of subprograms. Models of a less operational nature are briefly discussed. The consistency of the UTP model is demonstrated by a structural induction proof over the operations of the core object calculus. Overall, our UTP model is intended to provide facilities for encoding both object-based and class-based languages.} } @PROCEEDINGS{ ifm2007 , title = {Integrated Formal Methods}, booktitle = {Integrated Formal Methods}, year = {2007}, editor = {Jim Davies and Jeremy Gibbons}, volume = {4591}, series = {Lecture Notes in Computer Science}, publisher = {Springer-Verlag}, image = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/ifm2007.jpg }, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/ifm2007-preface.pdf }, abstract = {The design and analysis of computing systems presents a significant challenge: systems need to be understood at many different levels of abstraction, and examined from many different perspectives. Formal methods---languages, tools, and techniques with a sound, mathematical basis---can be used to develop a thorough understanding, and to support rigorous examination. \par Further research into effective integration is required if these methods are to have a significant impact outside academia. The Integrated Formal Methods (IFM) series of conferences seeks to promote that research, to bring together the researchers carrying it out, and to disseminate the results of that research among the wider academic and industrial community. \par Earlier meetings in the series were held at: York (1999); Dagstuhl (2000); Turku (2002); Kent (2004); Eindhoven (2005). IFM 2007 is the largest to date, with 32 technical papers (from 85 submissions), 3 invited talks, 3 workshops, and a tutorial. The success of the series reflects the enthusiasm and efforts of the IFM community, and the organisers would like to thank the speakers, the committee, and the reviewers for their contributions.} } @INPROCEEDINGS{ dgp , author = {Jeremy Gibbons}, title = {Datatype-Generic Programming}, crossref = { ssdgp }, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/dgp.pdf }, abstract = {\emph{Generic programming} aims to increase the flexibility of programming languages, by expanding the possibilities for parametrization~--- ideally, without also expanding the possibilities for uncaught errors. The term means different things to different people: \emph{parametric polymorphism}, \emph{data abstraction}, \emph{meta-programming}, and so on. We use it to mean polytypism, that is, parametrization by the \emph{shape} of data structures rather than their contents. To avoid confusion with other uses, we have coined the qualified term \emph{datatype-generic programming} for this purpose. In these lecture notes, we expand on the definition of datatype-generic programming, and present some examples of datatype-generic programs. We also explore the connection with \emph{design patterns} in object-oriented programming; in particular, we argue that certain design patterns are just higher-order datatype-generic programs.} } @PROCEEDINGS{ ssdgp , title = {Spring School on Datatype-Generic Programming}, booktitle = {Spring School on Datatype-Generic Programming}, year = {2007}, editor = {Roland Backhouse and Jeremy Gibbons and Ralf Hinze and Johan Jeuring}, volume = {4719}, series = {Lecture Notes in Computer Science}, publisher = {Springer-Verlag}, image = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/ssdgp.jpg }, doi = {10.1007/978-3-540-76786-2}, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/ssdgp-preface.pdf }, abstract = {A leitmotif in the evolution of programming paradigms has been the level and extent of parametrisation that is facilitated~--- the so-called \emph{genericity} of the paradigm. The sorts of parameters that can be envisaged in a programming language range from simple values, like integers and floating-point numbers,through structured values, types and classes, to kinds (the type of types and/or classes). \emph{Datatype-generic programming} is about parametrising programs by the structure of the data that they manipulate, exploiting that structure when it is relevant and ignoring it when it is not. Programming languages most commonly used at the present time do not provide effective mechanisms for documenting and implementing datatype genericity. This volume is a contribution towards improving the state of the art.} } @INPROCEEDINGS{ gip , author = {Jeremy Gibbons and Meng Wang and Bruno C. d. S. Oliveira}, title = {Generic and Indexed Programming}, booktitle = {Trends in Functional Programming}, year = {2007}, editor = {Marco Morazan}, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/gip.pdf }, abstract = {The EPSRC-funded \emph{Generic and Indexed Programming} project will explore the interaction between \emph{datatype-generic programming} (DGP) ---~programs parametrized by the shape of their data~--- and \emph{indexed programming} (IP) ---~lightweight dependently-typed programming, with programs indexed by type-level representations of properties. Integrating these two notions will provide new ways for programmers to \emph{capture abstractions}.} } @INPROCEEDINGS{ compatibility , author = {Peter Y. H. Wong and Jeremy Gibbons}, title = {Verifying Business Process Compatibility}, booktitle = {3rd International Workshop on Methods and Tools for Coordinating Concurrent, Distributed and Mobile Systems (MTCoord'07)}, year = {2007}, address = {Paphos, Cyprus}, month = JUN, note = {A shorter version of this paper was presented at the 2nd European Young Researchers Workshop on Service Oriented Computing, Leicester, United Kingdom, June 1997}, abstract = {Business Process Modelling Notation (BPMN), developed by the Business Process Management Initiative (BPMI), intends to bridge the gap between business process design and implementation. In this paper we describe a process-algebraic approach to verifying process interactions for business collaboration described in BPMN. We first describe briefly a process semantics for BPMN in Communicating Sequential Processes; we then use a simple example of business collaboration to demonstrate how our semantic model may be used to verify compatibility between business participants in a collaboration.} } @INPROCEEDINGS{ workflow , author = {Peter Y. H. Wong and Jeremy Gibbons}, title = {A Process-Algebraic Approach to Workflow Specification and Refinement}, booktitle = {Software Composition}, year = {2007}, url = { http://web.comlab.ox.ac.uk/oucl/work/peter.wong/pub/sc2007.pdf }, abstract = {This paper describes a process algebraic approach to specification and refinement of workflow processes. In particular, we model both specification and implementation of workflows as CSP processes. CSP's behavioural models and their respective refinement relations not only enable us to prove correctness properties of an individual workflow process against its behavioural specification, but also allows us to design and develop workflow processes compositionally. Moreover, coupled with CSP is an industrial strength automated model checker FDR, which allows behavioural properties of workflow models to be proved automatically. This paper details some CSP models of van der Aalst et al.'s control flow workflow patterns, and illustrates behavioural specification and refinement of workflow systems with a business process scenario.} } @INPROCEEDINGS{ crosstrial , author = {Radu Calinescu and Steve Harris and Jeremy Gibbons and Jim Davies}, title = {Cross-Trial Query System for Cancer Clinical Trials}, booktitle = {International Joint Conferences on Computer, Information and Systems Sciences and Engineering (CISSE)}, year = {2006}, month = DEC, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/crosstrial.pdf }, abstract = {Data sharing represents one of the key objectives and major challenges of today's cancer research. CancerGrid, a consortium of clinicians, cancer researchers, computational biologists and software engineers from leading UK institutions, is developing open-standards cancer informatics addressing this challenge. The CancerGrid solution involves the representation of a widely accepted clinical trials model in controlled vocabulary and common data elements (CDEs) as the enabling factor for cancer data sharing. This paper describes a cancer data query system that supports data sharing across CancerGrid-compliant clinical trial boundaries. The formal specification of the query system allows the model-driven development of a flexible, web-based interface that cancer researchers with limited IT experience can use to identify and query common data across multiple clinical trials.} } @INPROCEEDINGS{ iterator-msfp , author = {Jeremy Gibbons and Bruno C. d. S. Oliveira}, title = {The Essence of the {I}terator Pattern}, booktitle = {Mathematically-Structured Functional Programming}, year = {2006}, editor = {Conor McBride and Tarmo Uustalu}, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/iterator-msfp.pdf }, note = {Superseded by \cite{iterator}}, abstract = {The Iterator pattern gives a clean interface for element-by-element access to a collection. Imperative iterations using the pattern have two simultaneous aspects: mapping and accumulating. Various functional iterations model one or other of these, but not both simultaneously. We argue that McBride and Paterson's idioms, and in particular the corresponding traverse operator, do exactly this, and therefore capture the essence of the Iterator pattern. We present some axioms for traversal, and illustrate with a simple example, the repmin problem.} } @INPROCEEDINGS{ hodgp , author = {Jeremy Gibbons}, title = {Design Patterns as Higher-Order Datatype-generic Programs}, booktitle = {Workshop on Generic Programming}, year = {2006}, editor = {Ralf Hinze}, month = SEP, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/hodgp.pdf }, abstract = {Design patterns are reusable abstractions in object-oriented software. However, using current programming languages, these elements can only be expressed extra-linguistically: as prose, pictures, and prototypes. We believe that this is not inherent in the patterns themselves, but evidence of a lack of expressivity in the languages of today. We expect that, in the languages of the future, the code part of design patterns will be expressible as reusable library components. Indeed, we claim that the languages of tomorrow will suffice; the future is not far away. The necessary features are \emph{higher-order} and \emph{datatype-generic} constructs; these features are already or nearly available now. We argue the case by presenting higher-order datatype-generic programs capturing Origami, a small suite of patterns for recursive data structures.} } @INPROCEEDINGS{ fission , author = {Jeremy Gibbons}, title = {Fission for Program Comprehension}, booktitle = {Mathematics of Program Construction}, volume = {4014}, series = {Lecture Notes in Computer Science}, year = {2006}, editor = {Tarmo Uustalu}, pages = {162-179}, publisher = {Springer-Verlag}, url = { http://www.comlab.ox.ac.uk/jeremy.gibbons/publications/fission.pdf }, abstract = {Fusion is a program transformation that combines adjacent computations, flattening structure and improving efficiency at the cost of clarity. Fission is the same transformation, in reverse: creating structure, ex nihilo. We explore the use of fission for program comprehension, that is, for reconstructing the design of a program from its implementation. We illustrate through rational reconstructions of the designs for three different C programs that count the words in a text file.} } @ARTICLE{ metamorphisms-scp , author = {Jeremy Gibbons}, title = {Metamorphisms: Streaming Representation-Changers}, journal = SCP , year = {2007}, volume = 65, pages = {108-139}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/metamorphisms-scp.pdf }, note = {Revised version of \cite{metamorphisms-mpc}}, abstract = {\emph{Unfolds} generate data structures, and \emph{folds} consume them. A \emph{hylomorphism} is a fold after an unfold, generating then consuming a \emph{virtual data structure}. A \emph{metamorphism} is the opposite composition, an unfold after a fold; typically, it will convert from one data representation to another. In general, metamorphisms are less interesting than hylomorphisms: there is no automatic \emph{fusion} to \emph{deforest} the intermediate virtual data structure. However, under certain conditions fusion is possible: some of the work of the unfold can be done before all of the work of the fold is complete. This permits \emph{streaming metamorphisms}, and among other things allows conversion of \emph{infinite data representations}. We present the theory of metamorphisms and outline some examples.} } @INPROCEEDINGS{ fast+loose , author = {Nils Anders Danielsson and Jeremy Gibbons and John Hughes and Patrik Jansson}, title = {Fast and Loose Reasoning is Morally Correct}, booktitle = {Principles of Programming Languages}, year = {2006}, month = JAN, pages = {206-217}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/fast+loose.pdf }, note = {Accompanying proofs at \url{http://www.cs.chalmers.se/~nad/repos/fast-and-loose-proofs/}}, abstract = {We justify reasoning about non-total (partial) functional languages using methods seemingly only valid for total ones; this permits `fast and loose' reasoning without actually being loose. \par Two languages are defined, one total and one partial, with identical syntax. The semantics of the partial language includes partial and infinite values and lifted types, including lifted function spaces. A partial equivalence relation is then defined, the domain of which is the total subset of the partial language. It is proved that if two closed terms have the same semantics in the total language, then they have related semantics in the partial language. It is also shown that the partial equivalence relation gives rise to a bicartesian closed category, which can be used to reason about values in the domain of the relation.}, annote = {} } @ARTICLE{ spigot , author = {Jeremy Gibbons}, title = {An Unbounded Spigot Algorithm for the Digits of $\pi$}, journal = {American Mathematical Monthly}, year = {2006}, volume = {113}, number = {4}, pages = {318-328}, note = {One of the algorithms described in this paper won a prize for \textit{most useful submission} at the \textit{Succ Zeroth International Obfuscated Haskell Code Contest}!}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/spigot.pdf }, abstract = {Rabinowitz and Wagon (\textit{American Mathematical Monthly} 102(3):195--203, 1995) present a \emph{spigot algorithm} for computing the digits of $\pi$. A spigot algorithm yields its outputs incrementally, and does not reuse them after producing them. Their algorithm is inherently \emph{bounded}; it requires a commitment in advance to the number of digits to be computed, and in fact might still produce an incorrect last few digits. We propose two \emph{streaming algorithms} based on the same characterization of $\pi$, with the same incremental characteristics but without requiring the prior bound.} } @ARTICLE{ rationals , author = {Jeremy Gibbons and David Lester and Richard Bird}, title = {Enumerating the Rationals}, journal = {Journal of Functional Programming}, volume = {16}, number = {4}, year = {2006}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/rationals.pdf }, abstract = {We present a series of programs for enumerating the rational numbers without duplication, drawing on some elegant results of Neil Calkin, Herbert Wilf and Moshe Newman.} } @INPROCEEDINGS{ typecase , author = {Bruno C\'esar dos Santos Oliveira and Jeremy Gibbons}, title = {Type{C}ase: A Design Pattern for Type-Indexed Functions}, booktitle = {Haskell Workshop}, year = {2005}, editor = {Daan Leijen}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/typecase.pdf }, abstract = {A \emph{type-indexed function} is a function that is defined for each member of some family of types. Haskell's type class mechanism provides collections of \emph{open type-indexed functions}, in which the indexing family can be extended by defining a new type class instance but the collection of functions is fixed. The purpose of this paper is to present \emph{TypeCase}: a design pattern that allows the definition of \emph{closed type-indexed functions}, in which the index family is fixed but the collection of functions is extensible. It is inspired by Cheney and Hinze's work on lightweight approaches to generic programming. We generalise their techniques as a \emph{design pattern}. Furthermore, we show that \emph{type-indexed functions} with \emph{type-indexed types}, and consequently \emph{generic functions} with \emph{generic types}, can also be encoded in a lightweight manner, thereby overcoming one of the main limitations of the lightweight approaches.} } @INPROCEEDINGS{ hodgp-oopsla , author = {Jeremy Gibbons}, title = {Design Patterns as Higher-Order Datatype-Generic Programs}, booktitle = {Object-Oriented Programming: Systems, Languages, Applications}, year = {2005}, address = {San Diego}, month = OCT, note = {Tutorial. A revision of \cite{hodgp-ecoop}}, url = { http://www.oopsla.org/2005/ShowEvent.do?id=121 }, abstract = {The purpose of this tutorial is to draw together ideas from the Design Patterns community (the Gang of Four: Gamma, Helm, Johnson, Vlissides) and the Functional Programming world (eg Bird, Meertens, Hughes). In particular, the thesis is that whereas design patterns must be expressed extra-linguistically (as prose, diagrams, examples) in object-oriented languages, they may be captured directly as abstractions using higher-order operators in functional programming languages. Therefore, they may be reasoned about, type-checked, applied and reused, just as any other abstractions may be. \par We argue this case by developing the idea of higher-order operators, specifically for capturing patterns of computation in programs. We then build on this to show how the intentions behind a number of the Gang of Four patterns---such as Composite, Visitor, Iterator, and Builder---have higher-order operators as their analogues in functional languages. Specifically, the structure of these patterns is determined essentially by the structure of the data involved, and they can be captured as generic programs parametrized by that datatype. \par The aim is to give greater insight into and understanding of already-familiar patterns.} } @INPROCEEDINGS{ hodgp-ecoop , author = {Jeremy Gibbons}, title = {Design Patterns as Higher-Order Datatype-Generic Programs}, booktitle = {European Conference on Object-Oriented Programming}, year = {2005}, address = {Glasgow}, month = JUL, note = {Tutorial. Later version appears as \cite{hodgp-oopsla}}, url = { http://2005.ecoop.org/8.html }, abstract = {The aim of this tutorial is to draw together ideas from the Design Patterns community (the Gang of Four: Gamma, Helm, Johnson, Vlissides) and the Functional Programming world (eg Bird, Meertens, Hughes). In particular, the thesis is that whereas design patterns must be expressed extra-linguistically (as prose, diagrams, examples) in object-oriented languages, they may be captured directly as abstractions using higher-order operators in functional programming languages. Therefore, they may be reasoned about, type-checked, applied and reused, just as any other abstractions may be. We argue this case by developing the idea of higher-order operators, specifically for capturing patterns of computation in programs. We then bring this around to show how the intentions behind a number of the Gang of Four patterns---such as Composite, Visitor, Iterator, and Builder---have higher-order operators as their analogues in functional languages.} } @INPROCEEDINGS{ metamorphisms-mpc , author = {Jeremy Gibbons}, title = {Streaming Representation-Changers}, booktitle = {Mathematics of Program Construction}, year = {2004}, month = JUL, volume = {3125}, pages = {142-168}, series = {Lecture Notes in Computer Science}, editor = {Dexter Kozen}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/metamorphisms-mpc.pdf }, note = {Superseded by \cite{metamorphisms-scp}}, abstract = {\emph{Unfolds} generate data structures, and \emph{folds} consume them. A \emph{hylomorphism} is a fold after an unfold, generating then consuming a \emph{virtual data structure}. A \emph{metamorphism} is the opposite composition, an unfold after a fold; typically, it will convert from one data representation to another. In general, metamorphisms are less interesting than hylomorphisms: there is no automatic \emph{fusion} to \emph{deforest} the intermediate virtual data structure. However, under certain conditions fusion is possible: some of the work of the unfold can be done before all of the work of the fold is complete. This permits \emph{streaming metamorphisms}, and among other things allows conversion of \emph{infinite data representations}. We present the theory of metamorphisms and outline some examples.} } @INPROCEEDINGS{ patterns , author = {Jeremy Gibbons}, title = {Patterns in Datatype-Generic Programming}, booktitle = {Multiparadigm Programming}, year = {2003}, pages = {277-289}, editor = {J{\"o}rg Striegnitz and Kei Davis}, publisher = {John von {N}eumann Institute for Computing (NIC)}, volume = {27}, isbn = {3-00-016005-1}, note = {First International Workshop on Declarative Programming in the Context of Object-Oriented Languages (DPCOOL)}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/patterns.pdf }, abstract = {\emph{Generic programming} consists of increasing the expressiveness of programs by allowing a wider variety of kinds of parameter than is usual. The most popular instance of this scheme is the C++ Standard Template Library. \emph{Datatype-generic programming} is another instance, in which the parameters take the form of datatypes. We argue that datatype-generic programming is sufficient to express essentially all the genericity found in the Standard Template Library. Moreover, datatype-generic programming is a precisely-defined notion with a rigorous mathematical foundation, in contrast to generic programming in general and the C++ template mechanism in particular, and thereby offers the prospect of better static checking and a greater ability to reason about generic programs. This paper describes work in progress.} } @INPROCEEDINGS{ arith , author = {Richard Bird and Jeremy Gibbons}, title = {Arithmetic Coding with Folds and Unfolds}, booktitle = {Advanced Functional Programming 4}, pages = {1-26}, volume = {2638}, series = {Lecture Notes in Computer Science}, year = {2003}, editor = {Johan Jeuring and Simon Peyton Jones}, publisher = {Springer-Verlag}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/arith.pdf }, note = {Code available at \url{http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/arith.zip}}, abstract = {Arithmetic coding is a method for data compression. It produces a theoretically optimal compression under much weaker assumptions than Huffman and Shannon-Fano, and can compress within one bit of the limit imposed by Shannon's Noiseless Coding Theorem. Earlier presentations provided little in the way of proof of why the various steps in the encoding process were correct, particularly when it came to the specification of precisely what problem the implementation solved, and the details of why the inverse operation of decoding was correct. Our aim in these lectures is to provide a formal derivation of basic algorithms for coding and decoding. Our development makes heavy use of the algebraic laws of folds and unfolds. One novel result concerns a new pattern of computation, which we call \emph{streaming}, whereby elements of an output list are produced as soon as they are determined (and which has nothing to do with lazy evaluation).} } @BOOK{ ssgp , editor = {Roland Backhouse and Jeremy Gibbons}, title = {Summer School on Generic Programming}, booktitle = {Summer School on Generic Programming}, publisher = {Springer-Verlag}, year = {2003}, series = {Lecture Notes in Computer Science}, volume = {2793}, image = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/ssgp.jpg }, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/ssgp-toc.pdf }, abstract = {Generic programming is about making programming more effective by making it more general. This volume is about a novel form of genericity in programs, based on parameterizing programs by the structure of the data they manipulate. The material is based on lectures presented at a summer school on Generic Programming held at the University of Oxford in August 2002.} } @INCOLLECTION{ origami , author = {Jeremy Gibbons}, title = {Origami Programming}, crossref = { fop }, pages = {41-60}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/origami.pdf }, note = {}, abstract = {One style of functional programming is based purely on recursive equations. Such equations are easy to explain, and adequate for any computational purpose, but hard to use well as programs get bigger and more complicated. In a sense, recursive equations are the `assembly language' of functional programming, and direct recursion the \emph{goto}. As computer scientists discovered in the 1960s with structured programming, it is better to identify common patterns of use of such too-powerful tools, and capture these patterns as new constructions and abstractions. In functional programming, in contrast to imperative programming, we can often express the new constructions as higher-order operations within the language, whereas the move from unstructured to structured programming entailed the development of new languages. \par In this chapter we will look at folds and unfolds as abstractions. In a precise technical sense, folds and unfolds are the natural patterns of computation over recursive datatypes; unfolds generate data structures and folds consume them. Functional programmers are very familiar with the \emph{foldr} function on lists, and its directional dual \emph{foldl}; they are gradually coming to terms with the generalisation to folds on other datatypes. The computational duals, unfolds, are still rather unfamiliar; we hope to show here that they are no more complicated than, and just as useful as, folds, and to promote a style of programming based on these and similar recursion patterns.} } @BOOK{ fop , editor = {Jeremy Gibbons and Oege de Moor}, title = {The Fun of Programming}, booktitle = {The Fun of Programming}, publisher = {Palgrave}, year = {2003}, series = {Cornerstones in Computing}, isbn = {1-4039-0772-2}, note = {ISBN 0333992857 in paperback (\url{http://www.palgrave.com/catalogue/catalogue.asp?Title_Id=0333992857}, \url{http://www.amazon.co.uk/exec/obidos/ASIN/0333992857/}), 1403907722 in hardback (\url{http://www.palgrave.com/catalogue/catalogue.asp?Title_Id=1403907722}, \url{http://www.amazon.co.uk/exec/obidos/ASIN/1403907722/})}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/fop-preface.pdf }, image = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/fop.jpg }, abstract = {Functional programming has come of age: it is now a standard course in any computer science curriculum. Ideas that were first developed in the laboratory environment of functional programming have proved their values in wider settings, such as generic Java and XML. The time is ripe, therefore, to teach a second course on functional programming, delving deeper into the subject. This book is the text for such a course. The emphasis is on the fun of programming in a modern, well designed programming language such as Haskell. There are chapters that focus on applications, in particular pretty printing, musical composition, hardware description, and graphical design. These applications are interspersed with chapters on techniques, such as the design of efficient data structures, interpreters for other languages, program testing and optimisation. These topics are of interest to every aspiring programmer, not just to those who choose to work in a functional language. Haskell just happens to be a very convenient vehicle for expressing the ideas, and the theme of functional programming as a lingua franca to communicate ideas runs throughout the book. } } @INPROCEEDINGS{ softeng-projects , author = {Andrew Simpson and Andrew Martin and Jeremy Gibbons and Jim Davies and Steve McKeever}, title = {On The Supervision and Assessment Of Part-Time Postgraduate Software Engineering Projects }, booktitle = {International Conference on Software Engineering}, year = {2003}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/softeng-projects.pdf }, abstract = {This paper describes existing practices in the supervision and assessment of projects undertaken by part-time, postgraduate students in Software Engineering. It considers this aspect of the learning experience, and the educational issues raised, in the context of existing literature---much of which is focussed upon the experience of full-time, undergraduate students. The importance of these issues will increase with the popularity of part-time study at a postgraduate level; the paper presents a set of guidelines for project supervision and assessment.} } @ARTICLE{ efolds , author = {Clare Martin and Jeremy Gibbons and Ian Bayley}, title = {Disciplined, efficient, generalised folds for nested datatypes}, journal = {Formal Aspects of Computing}, year = {2004}, volume = {16}, number = {1}, pages = {19-35}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/efolds.pdf }, abstract = {Nested (or non-uniform, or non-regular) datatypes have recursive definitions in which the type parameter changes. Their folds are restricted in power due to type constraints. Bird and Paterson introduced \emph{generalised folds} for extra power, but at the cost of a loss of efficiency: folds may take more than linear time to evaluate. Hinze introduced \emph{efficient generalised folds} to counter this inefficiency, but did so in a pragmatic way, at the cost of a loss of reasoning power: without categorical or equivalent underpinnings, there are no universal properties for manipulating folds. We combine the efficiency of Hinze's construction with the powerful reasoning tools of Bird and Paterson's.} } @PROCEEDINGS{ wcgp , title = {Generic Programming}, year = {2003}, editor = {Jeremy Gibbons and Johan Jeuring}, publisher = {Kluwer Academic Publishers}, note = {Proceedings of the IFIP TC2 Working Conference on Generic Programming, Schlo\ss{} Dagstuhl, July 2002}, image = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/wcgp.jpg }, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/wcgp-preface.pdf }, abstract = {Generic programming techniques have always been of interest, both to practitioners and to theoreticians, but only recently have generic programming techniques become a specific focus of research in the functional and ob ject-oriented programming language communities. The IFIP TC2 Working Conference on Generic Programming, held at Schlo\ss{} Dagstuhl,Germany, on 11th and 12th July 2002, brought together leading researchers in generic programming from around the world, and featured papers capturing the state of the art in this important emerging area. The conference was sponsored by IFIP Technical Committee 2, and organized in cooperation with Working Group 2.1 on Algorithmic Languages and Calculi. This book contains revised versions of the papers that were presented at the conference.} } @INCOLLECTION{ acmmpc-calcfp , author = {Jeremy Gibbons}, title = {Calculating Functional Programs}, crossref = { acmmpc }, pages = {148--203}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/acmmpc-calcfp.pdf }, abstract = {Functional programs are merely equations; they may be manipulated by straightforward equational reasoning. In particular, one can use this style of reasoning to \emph{calculate} programs, in the same way that one calculates numeric values in arithmetic. Many useful theorems for such reasoning derive from an \emph{algebraic} view of programs, built around datatypes and their operations. Traditional algebraic methods concentrate on initial algebras, constructors, and values; dual \emph{co-algebraic} methods concentrate on final co-algebras, destructors, and processes. Both methods are elegant and powerful; they deserve to be combined. } } @INCOLLECTION{ acmmpc-optimization , author = {Richard Bird and Jeremy Gibbons and Shin Cheng Mu}, title = {Algebraic Methods for Optimization Problems}, crossref = { acmmpc }, pages = {281--307}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/acmmpc-optimization.pdf }, abstract = {We argue for the benefits of relations over functions for modelling programs, and even more so for modelling specifications. To support this argument, we present an extended case study for a class of optimization problems, deriving efficient functional programs from concise relational specifications.} } @BOOK{ acmmpc , editor = {Roland Backhouse and Roy Crole and Jeremy Gibbons}, title = {Algebraic and Coalgebraic Methods in the Mathematics of Program Construction}, booktitle = {Algebraic and Coalgebraic Methods in the Mathematics of Program Construction}, publisher = {Springer-Verlag}, year = {2002}, volume = {2297}, series = {Lecture Notes in Computer Science}, image = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/acmmpc.jpg }, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/acmmpc-toc.pdf }, abstract = {Program construction is about turning specifications of computer software into implementations. Doing so in a way that guarantees correctness is an undertaking requiring deep understanding of the languages and tools being used, as well as of the application domain. Recent research aimed at improving the process of program construction exploits insights from abstract algebraic tools such as lattice theory, fixpoint calculus, universal algebra, category theory and allegory theory. This book provides an introduction to these mathematical theories and how they are applied to practical problems.} } @INPROCEEDINGS{ superposition , author = {Jeremy Gibbons}, title = {Towards a Colimit-Based Semantics for Visual Programming}, booktitle = {Coordination Models and Languages}, volume = {2315}, series = {Lecture Notes in Computer Science}, year = {2002}, month = APR, pages = {166--173}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/superposition-extended.pdf }, abstract = {Software architects such as Garlan and Katz promote the separation of \emph{computation} from \emph{coordination}. They encourage the study of \emph{connectors} as first-class entities, and \emph{superposition} of connectors onto components as a paradigm for component-oriented programming. We demonstrate that this is a good model for what \emph{visual programming tools} like IBM's VisualAge actually do. Moreover, Fiadeiro and Maibaum's categorical semantics of parallel programs is applicable to this model, so we can make progress towards a formal semantics of visual programming.} } @ARTICLE{ kernels , author = {Jeremy Gibbons and Graham Hutton and Thorsten Altenkirch}, title = {When is a Function a Fold or an Unfold?}, note = {Proceedings of Coalgebraic Methods in Computer Science}, journal = {entcs}, volume = 44, number = 1, year = {2001}, month = APR, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/kernels.ps.gz }, abstract = {We give a necessary and sufficient condition for when a set-theoretic function can be written using the recursion operator fold, and a dual condition for the recursion operator unfold. The conditions are simple, practically useful, and generic in the underlying datatype.} } @ARTICLE{ corecursive , author = {Jeremy Gibbons and Graham Hutton}, title = {Proof Methods for Corecursive Programs}, journal = {Fundamenta Informatica}, year = {2005}, volume = {66}, number = {4}, pages = {353-366}, month = {April/May}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/corecursive.pdf }, abstract = {Recursion is a well-known and powerful programming technique, with a wide variety of applications. The dual technique of corecursion is less well-known, but is increasingly proving to be just as useful. This article is a tutorial on the four main methods for proving properties of corecursive programs: fixpoint induction, the approximation (or take) lemma, coinduction, and fusion.} } @ARTICLE{ semantics , author = {Clare Martin and Jeremy Gibbons}, title = {On the Semantics of Nested Datatypes}, journal = IPL , year = {2001}, month = DEC, volume = {80}, number = {5}, pages = {233--238}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/semantics.ps.gz }, abstract = {Nested (or non-regular or non-uniform) datatypes are recursively defined parameterised datatypes in which the parameter of the datatype changes in the recursive call. The standard semantic definition of recursively defined datatypes is as initial algebras in the category $\mathit{Set}$ of sets and total functions. Bird and Meertens have shown that this theory is inadequate to describe nested datatypes. Instead, one solution proposed there was to define them as initial algebras in the functor category $\mathit{Nat}(\mathit{Set})$, with objects all endofunctors on $\mathit{Set}$ and arrows all natural transformations between them. We show here that initial algebras are not guaranteed to exist in the functor category itself, but that they do exist in one of its subcategories: the category of all \emph{cocontinuous} endofunctors and natural transformations. This category is then a suitable semantic domain for nested datatypes, both first order and higher-order.} } @INPROCEEDINGS{ pointwise , author = {Oege de Moor and Jeremy Gibbons}, title = {Pointwise Relational Programming}, booktitle = {Algebraic Methodology and Software Technology}, volume = {1816}, series = {Lecture Notes in Computer Science}, pages = {371--390}, year = {2000}, month = MAY, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/pointwise.ps.gz }, abstract = {The point-free relational calculus has been very successful as a language for discussing general programming principles. However, when it comes to specific applications, the calculus can be rather awkward to use: some things are more clearly and simply expressed using variables. The combination of variables and relational combinators such as converse and choice yields a kind of nondeterministic functional programming language. We give a semantics for such a language, and illustrate with an example application.} } @ARTICLE{ approx , author = {Graham Hutton and Jeremy Gibbons}, title = {The Generic Approximation Lemma}, journal = {Information Processing Letters}, volume = {79}, number = {4}, pages = {197--201}, year = 2001, month = AUG, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/approx.ps.gz }, abstract = {The approximation lemma was recently introduced as a simplification of the well-known take lemma, and is used to prove properties of programs that produce lists of values. We show how the approximation lemma, unlike the take lemma, can naturally be generalised from lists to a large class of datatypes, and present a generic approximation lemma that is parametric in the datatype to which it applies. As a useful by-product, we find that generalising the approximation lemma in this way also simplifies its proof.} } @ARTICLE{ bridging , author = {Oege de Moor and Jeremy Gibbons}, title = {Bridging the Algorithm Gap: A Linear-Time Functional Program for Paragraph Formatting}, journal = SCP , year = {1999}, volume = {35}, number = {1}, url = { http://www.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/bridging.ps.gz }, abstract = {In the constructive programming community it is commonplace to see formal developments of textbook algorithms. In the algorithm design community, on the other hand, it may be well known that the textbook solution to a problem is not the most efficient possible. However, in presenting the more efficient solution, the algorithm designer will | 2026-01-13T09:30:28 |
https://yarnpkg.com/corepack | Corepack | Yarn Skip to main content Yarn Get Started Features CLI Configuration Advanced Blog API master (4.12.0-dev) master (4.12.0-dev) 3.8.7 1.22.22 Discord GitHub Search Starting with Yarn Introduction Installation Usage Migrating from 1.x / npm Benefits Step-by-step To go further Good to Know Corepack Editor SDKs Questions & Answers Recipes Good to Know Corepack On this page Corepack You may notice by reading our installation guide that we don't tell you to run npm install -g yarn to install Yarn - we even recommend against it. The reason is simple: just like your project dependencies must be locked, so should be the package manager itself. Installing Yarn as a global binary meant you always used whatever was the latest version published. Most of the time it worked fine, but every once in a while something was shipped that could impact the way your project was installed - be it a bugfix, new bug, or breaking change. To counter that, Yarn joined forces with the Node.js project to start the development of Corepack , an official Node.js tool letting you define which package manager version you want to use on a per-project basis, just like your lockfile does for your project dependencies. info Corepack is marked experimental so we can iterate on its CLI faster, but it's already the preferred way to install package managers - both for Yarn and for pnpm. Installation Corepack is included with all official Node.js releases starting from Node.js 14.19 / 16.9. It's however opt-in for the duration of the experimental stage, so you'll need to run corepack enable before it's active. You can quickly check whether Corepack is enabled by running yarn exec env : if you get a path as output, Corepack is properly installed. If not, something may be messing with how the shims are installed. In that case check the Troubleshooting section for advices. danger Some third-party distributors may not include Corepack by default, in particular if you install Node.js from your system package manager. If that happens, running npm install -g corepack before corepack enable should do the trick. Troubleshooting Offline workflow If you use an airgapped network, as is often the case in company CIs, you may hit problems where Corepack isn't able to download the Yarn binary for the active project. The Corepack documentation includes a dedicated section explaining how to avoid this problem. Volta Volta doesn't currently integrate with Corepack, as it installs its own shims which prevent the Corepack ones from being applied. You will need to run the following two commands to force the integration: npm install -g corepack # Specifying an explicit install-directory makes corepack overwrite volta's yarn shims, which is what we want corepack enable --install-directory ~/.volta/bin Edit this page Previous To go further Next Editor SDKs Installation Troubleshooting Offline workflow Volta Copyright © 2026 Yarn Contributors, Inc. Built with Docusaurus. | 2026-01-13T09:30:28 |
https://yarnpkg.com/configuration/manifest#main | Manifest (package.json) | Yarn Skip to main content Yarn Get Started Features CLI Configuration Advanced Blog API master (4.12.0-dev) master (4.12.0-dev) 3.8.7 1.22.22 Discord GitHub Search Manifest (package.json) Settings (.yarnrc.yml) Manifest (package.json) Manifest (package.json) Manifest files (also called package.json because of their name) contain everything needed to describe the settings unique to one particular package. Project will contain multiple such manifests if they use the workspace feature, as each workspace is described through its own manifest. Note that defaults for these fields can be set via the initFields settings. name Name of the package. Used to identify it across the application, especially amongst multiple workspaces. The first part of the name (here @scope/ ) is optional and is used as a namespace). name : "@scope/name" , version Version of the package. Usually doesn't have any impact on your project, except when it is a workspace - then its version must match the specified ranges for the workspace to be selected as resolution candidate. version : "1.2.3" , packageManager Define the package manager that should be used when working on this project. This field is used by Corepack and similar tools to detect the Yarn version in use in a project - in a sense, it has the same purpose as your lockfile, but only for Yarn itself. Yarn will automatically set this value when running yarn set version . packageManager : "yarn@4.0.0" , type Define how should be interpreted .js files. A Node.js v13.x option . Possible values are commonjs (the default) and module . Yarn 3+ will generate a .pnp.cjs file when using PnP regardless of this option. type : "commonjs" | "module" , private Define whether the package is meant to be published. If true, the package is considered private and Yarn will refuse to publish it regardless of the circumstances. private : true , license SPDX identifier defining the license under which the package is distributed. license : "MIT" , os Set of platforms on which this package works. The value of process.platform() will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. os : [ "linux" , "darwin" , "win32" , ] , cpu Set of CPU architectures on which this package works. The value of process.arch() will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. cpu : [ "x64" , "ia32" , "arm64" , ] , libc Set of C standard libraries on which this package depends. The host standard library will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. libc : [ "glibc" , "musl" , ] , main Path of the file that should be resolved when requiring the package via a bare identifier. This field can be modified at publish-time through the use of the publishConfig.main field. main : "./sources/index.js" , module Path of the file that should be resolved when requiring the package via a bare identifier in an ES6-compatible bundler environment. This field should be considered deprecated, with exports being its official replacement. module : "./sources/index.mjs" , languageName Arbitrary value selecting the linker to use when installing the dependency. This is an internal package setting that shouldn't be touched unless you really know what you're doing. languageName : "node" , bin Set of files to expose via yarn run bin-name and the shell environment. If set to a string, the binary value will be the package name (not including its scope part). bin : { my-bin : "./dist/my-bin.js" , } , scripts Set of scripts to expose via yarn run script-name , or as lifecycle hooks. Scripts in Yarn are executed by a POSIX-like shell which implements most features you would want to use in one-liner scripts. For example you can assign environment variables using the POSIX syntax, and Yarn will make it work across both Linux, OSX, and Windows. scripts : { test : "NODE_OPTIONS='--max-old-space-size=2048' jest" , build : "webpack-cli --config ./webpack.config.js" , count-words : "echo \"$@\" | wc -w" , } , dependencies Set of dependencies that must be made available to the current package in order for it to work properly. Consult the protocol documentation for more information. dependencies : { webpack : "^5.0.0" , } , optionalDependencies Set of dependencies that Yarn should only try to install if the os/cpu/libc fields match those of the host platform. Unlike regular dependencies, those listed in optionalDependencies are allowed to have a failing postinstall step - in fact, they won't even be installed at all if the os/cpu/libc filters don't cover the host platform. Note that optionalDependencies only cares about whether the package should install/build or not - it should still be resolvable, as otherwise it's impossible to tell whether a failure to retrieve the package metadata is intentional or not. optionalDependencies : { fsevents : "^5.0.0" , } , devDependencies Set of dependencies that must be made available to the current package in order for it to work properly as a workspace. Unlike regular dependencies, those listed in devDependencies will only be required when the package is installed as part of a workspace project - usually by cloning the project repository then running yarn install inside it. devDependencies : { webpack : "^5.0.0" , } , peerDependencies Set of dependencies that the package must inherit from its ancestor in the dependency tree. The semantic of peer dependencies guarantee that when the package require the dependency, it will be returned the exact same object instance as the one that would be returned to the package's ancestor. This mechanism makes peer dependencies the best way to share singleton states across multiple packages. As an extension, Yarn supports "peer dependencies with default": dependencies listed in both the dependencies and a peerDependencies fields will try to solve the peer dependency first, but will fallback to the regular dependency if it can't be satisfied otherwise. peerDependencies : { react : "*" , react-dom : "*" , } , workspaces Array of folder glob patterns referencing the workspaces of the project. Workspaces are an optional feature used by monorepos to split a large project into semi-independent subprojects, each one listing their own set of dependencies. The workspaces field is a list of glob patterns that match all directories that should become workspaces of your application. Consult the workspaces documentation for more information. workspaces : [ "packages/*" , ] , dependenciesMeta Extra settings affecting how the dependencies and devDependencies fields are interpreted. In the context of a workspaced project most of these settings will affect all workspaces and as such must be specified at the root of the project. Unless noted otherwise, the dependenciesMeta field will be ignored if found within a workspace. dependenciesMeta : { fsevents : { dependenciesMeta.built Define whether to run the postinstall script or not. If false, the package will never be built (deny-list). This behavior is reversed when the enableScripts yarnrc setting is toggled off - when that happens, only packages with built explicitly set to true will be built (allow-list); as for those with built explicitly set to false , they will simply see their build script warnings downgraded into simple notices. built : false , dependenciesMeta.optional Define whether the dependency is optional or not. Unlike most other settings in dependenciesMeta , optional is allowed anywhere in the dependency tree. It has the exact same effect as optionalDependencies - in fact, that's internally what optionalDependencies compiles down to. optional : false , dependenciesMeta.unplugged Define whether the package must be unplugged or not. If true, the specified package will be automatically unplugged at install time. This should only be needed for packages that contain scripts in other languages than Javascript (for example nan contains C++ headers). unplugged : true , } , } , peerDependenciesMeta Extra settings affecting how the peerDependencies field is interpreted. Unlike dependenciesMeta , peerDependenciesMeta is allowed in any parts of the dependency tree. peerDependenciesMeta : { react-dom : { peerDependenciesMeta.optional Define whether to log a warning when the peer dependency can't be satisfied. If true, the selected peer dependency will be marked as optional by the package manager, silencing any warning we would otherwise emit. optional : true , } , } , resolutions Override the resolutions of specific dependencies. This field allows you to instruct Yarn to use a specific resolution (specific package version) instead of anything the resolver would normally pick. This is useful to enforce all your packages to use a single version of a dependency, or backport a fix. The syntax for the resolution key accepts one level of specificity, so all the following examples are correct. Note: When a path is relative, like it can be with the file: and portal: protocols, it is resolved relative to the path of the project. Note: The resolutions field can only be set at the root of the project, and will generate a warning if used in any other workspace. resolutions : { relay-compiler : "3.0.0" , webpack/memory-fs : "0.4.1" , @babel/core/json5 : "2.1.0" , @babel/core/@babel/generator : "7.3.4" , @babel/core@npm:7.0.0/@babel/generator : "7.3.4" , } , preferUnplugged Define whether the package must be unplugged or not. While Yarn attempts to reference and load packages directly from their zip archives, it may not always be possible. A heuristic tries to detect cases where zip-loading would be problematic and unpack the files on disk instead but, being just a heuristic, it may report incorrect results. The preferUnplugged field lets you define yourself, as a package author, whether your package works or not when stored as an archive. If set, it will override the default heuristic. preferUnplugged : false , files Array of file glob patterns that will be included within the published tarball. File patterns follow a similar syntax to .gitignore , but reversed: including a file, directory, or glob pattern ( * , **/* , and such) will make it so that file is included in the tarball when it’s packed. Omitting the field will make it default to ["*"] , which means it will include all files. If this field is missing, Yarn will use the project's .gitignore to generate the pack list, or the .npmignore file instead if available. Some special files and directories are also included or excluded regardless of whether they exist in the files array. files : [ "dist/**/*" , "lib/**/*" , ] , publishConfig Extra settings affecting how the package is published. publishConfig : { publishConfig.access Define the access to use when publishing the package. Valid values are public and restricted , but restricted usually requires to register for a paid plan (this is up to the registry you use). access : "public" | "restricted" , publishConfig.bin Replacement of the package's bin field, used in the published tarball over the main one. bin : "./build/bin.js" , publishConfig.browser Replacement of the package's browser field, used in the published tarball over the main one. browser : "./build/browser.js" , publishConfig.executableFiles Set of files that must be marked as executable (+x) in the published tarball. executableFiles : [ "./dist/shim.js" , ] , publishConfig.main Replacement of the package's main field, used in the published tarball over the main one. main : "./build/index.js" , publishConfig.module Replacement of the package's module field, used in the published tarball over the main one. module : "./build/index.mjs" , publishConfig.provenance Define whether to produce a provenance statement for the package when publishing. Overrides all other provenance settings. provenance : true , publishConfig.registry If present, will replace whatever registry is defined in the configuration when the package is about to be pushed to a remote location. registry : "https://npm.pkg.github.com" , publishConfig.type Replacement of the package's type field, used in the published tarball over the main one. type : "./build/index.d.ts" , } , installConfig Extra settings affecting how the package is installed. installConfig : { installConfig.hoistingLimits Defines the highest point where packages can be hoisted. See nmHoistingLimits for more information. hoistingLimits : "workspaces" | "dependencies" | "none" , installConfig.selfReferences Defines whether workspaces are allowed to require themselves. See nmSelfReferences for more information. selfReferences : true , } , Edit this page Next Settings (.yarnrc.yml) Copyright © 2026 Yarn Contributors, Inc. Built with Docusaurus. | 2026-01-13T09:30:28 |
https://www.facebook.com/share_channel/?type=reshare&amp%3Blink=https%3A%2F%2Fdev.to%2Fcodesolutionshub%2Fhow-to-use-large-language-models-llms-to-improve-your-software-development-process-3f6h&amp%3Bapp_id=966242223397117&amp%3Bsource_surface=external_reshare&amp%3Bdisplay&amp%3Bhashtag | Facebook Facebook 이메일 또는 휴대폰 비밀번호 계정을 잊으셨나요? 새 계정 만들기 일시적으로 차단됨 일시적으로 차단됨 회원님의 이 기능 사용 속도가 너무 빠른 것 같습니다. 이 기능 사용에서 일시적으로 차단되었습니다. Back 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 中文(简体) 日本語 Português (Brasil) Français (France) Deutsch 가입하기 로그인 Messenger Facebook Lite 동영상 Meta Pay Meta 스토어 Meta Quest Ray-Ban Meta Meta AI Meta AI 콘텐츠 더 보기 Instagram Threads 투표 정보 센터 개인정보처리방침 개인정보 보호 센터 정보 광고 만들기 페이지 만들기 개발자 채용 정보 쿠키 AdChoices 이용 약관 고객 센터 연락처 업로드 및 비사용자 설정 활동 로그 Meta © 2026 | 2026-01-13T09:30:28 |
https://yarnpkg.com/configuration/manifest#name | Manifest (package.json) | Yarn Skip to main content Yarn Get Started Features CLI Configuration Advanced Blog API master (4.12.0-dev) master (4.12.0-dev) 3.8.7 1.22.22 Discord GitHub Search Manifest (package.json) Settings (.yarnrc.yml) Manifest (package.json) Manifest (package.json) Manifest files (also called package.json because of their name) contain everything needed to describe the settings unique to one particular package. Project will contain multiple such manifests if they use the workspace feature, as each workspace is described through its own manifest. Note that defaults for these fields can be set via the initFields settings. name Name of the package. Used to identify it across the application, especially amongst multiple workspaces. The first part of the name (here @scope/ ) is optional and is used as a namespace). name : "@scope/name" , version Version of the package. Usually doesn't have any impact on your project, except when it is a workspace - then its version must match the specified ranges for the workspace to be selected as resolution candidate. version : "1.2.3" , packageManager Define the package manager that should be used when working on this project. This field is used by Corepack and similar tools to detect the Yarn version in use in a project - in a sense, it has the same purpose as your lockfile, but only for Yarn itself. Yarn will automatically set this value when running yarn set version . packageManager : "yarn@4.0.0" , type Define how should be interpreted .js files. A Node.js v13.x option . Possible values are commonjs (the default) and module . Yarn 3+ will generate a .pnp.cjs file when using PnP regardless of this option. type : "commonjs" | "module" , private Define whether the package is meant to be published. If true, the package is considered private and Yarn will refuse to publish it regardless of the circumstances. private : true , license SPDX identifier defining the license under which the package is distributed. license : "MIT" , os Set of platforms on which this package works. The value of process.platform() will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. os : [ "linux" , "darwin" , "win32" , ] , cpu Set of CPU architectures on which this package works. The value of process.arch() will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. cpu : [ "x64" , "ia32" , "arm64" , ] , libc Set of C standard libraries on which this package depends. The host standard library will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. libc : [ "glibc" , "musl" , ] , main Path of the file that should be resolved when requiring the package via a bare identifier. This field can be modified at publish-time through the use of the publishConfig.main field. main : "./sources/index.js" , module Path of the file that should be resolved when requiring the package via a bare identifier in an ES6-compatible bundler environment. This field should be considered deprecated, with exports being its official replacement. module : "./sources/index.mjs" , languageName Arbitrary value selecting the linker to use when installing the dependency. This is an internal package setting that shouldn't be touched unless you really know what you're doing. languageName : "node" , bin Set of files to expose via yarn run bin-name and the shell environment. If set to a string, the binary value will be the package name (not including its scope part). bin : { my-bin : "./dist/my-bin.js" , } , scripts Set of scripts to expose via yarn run script-name , or as lifecycle hooks. Scripts in Yarn are executed by a POSIX-like shell which implements most features you would want to use in one-liner scripts. For example you can assign environment variables using the POSIX syntax, and Yarn will make it work across both Linux, OSX, and Windows. scripts : { test : "NODE_OPTIONS='--max-old-space-size=2048' jest" , build : "webpack-cli --config ./webpack.config.js" , count-words : "echo \"$@\" | wc -w" , } , dependencies Set of dependencies that must be made available to the current package in order for it to work properly. Consult the protocol documentation for more information. dependencies : { webpack : "^5.0.0" , } , optionalDependencies Set of dependencies that Yarn should only try to install if the os/cpu/libc fields match those of the host platform. Unlike regular dependencies, those listed in optionalDependencies are allowed to have a failing postinstall step - in fact, they won't even be installed at all if the os/cpu/libc filters don't cover the host platform. Note that optionalDependencies only cares about whether the package should install/build or not - it should still be resolvable, as otherwise it's impossible to tell whether a failure to retrieve the package metadata is intentional or not. optionalDependencies : { fsevents : "^5.0.0" , } , devDependencies Set of dependencies that must be made available to the current package in order for it to work properly as a workspace. Unlike regular dependencies, those listed in devDependencies will only be required when the package is installed as part of a workspace project - usually by cloning the project repository then running yarn install inside it. devDependencies : { webpack : "^5.0.0" , } , peerDependencies Set of dependencies that the package must inherit from its ancestor in the dependency tree. The semantic of peer dependencies guarantee that when the package require the dependency, it will be returned the exact same object instance as the one that would be returned to the package's ancestor. This mechanism makes peer dependencies the best way to share singleton states across multiple packages. As an extension, Yarn supports "peer dependencies with default": dependencies listed in both the dependencies and a peerDependencies fields will try to solve the peer dependency first, but will fallback to the regular dependency if it can't be satisfied otherwise. peerDependencies : { react : "*" , react-dom : "*" , } , workspaces Array of folder glob patterns referencing the workspaces of the project. Workspaces are an optional feature used by monorepos to split a large project into semi-independent subprojects, each one listing their own set of dependencies. The workspaces field is a list of glob patterns that match all directories that should become workspaces of your application. Consult the workspaces documentation for more information. workspaces : [ "packages/*" , ] , dependenciesMeta Extra settings affecting how the dependencies and devDependencies fields are interpreted. In the context of a workspaced project most of these settings will affect all workspaces and as such must be specified at the root of the project. Unless noted otherwise, the dependenciesMeta field will be ignored if found within a workspace. dependenciesMeta : { fsevents : { dependenciesMeta.built Define whether to run the postinstall script or not. If false, the package will never be built (deny-list). This behavior is reversed when the enableScripts yarnrc setting is toggled off - when that happens, only packages with built explicitly set to true will be built (allow-list); as for those with built explicitly set to false , they will simply see their build script warnings downgraded into simple notices. built : false , dependenciesMeta.optional Define whether the dependency is optional or not. Unlike most other settings in dependenciesMeta , optional is allowed anywhere in the dependency tree. It has the exact same effect as optionalDependencies - in fact, that's internally what optionalDependencies compiles down to. optional : false , dependenciesMeta.unplugged Define whether the package must be unplugged or not. If true, the specified package will be automatically unplugged at install time. This should only be needed for packages that contain scripts in other languages than Javascript (for example nan contains C++ headers). unplugged : true , } , } , peerDependenciesMeta Extra settings affecting how the peerDependencies field is interpreted. Unlike dependenciesMeta , peerDependenciesMeta is allowed in any parts of the dependency tree. peerDependenciesMeta : { react-dom : { peerDependenciesMeta.optional Define whether to log a warning when the peer dependency can't be satisfied. If true, the selected peer dependency will be marked as optional by the package manager, silencing any warning we would otherwise emit. optional : true , } , } , resolutions Override the resolutions of specific dependencies. This field allows you to instruct Yarn to use a specific resolution (specific package version) instead of anything the resolver would normally pick. This is useful to enforce all your packages to use a single version of a dependency, or backport a fix. The syntax for the resolution key accepts one level of specificity, so all the following examples are correct. Note: When a path is relative, like it can be with the file: and portal: protocols, it is resolved relative to the path of the project. Note: The resolutions field can only be set at the root of the project, and will generate a warning if used in any other workspace. resolutions : { relay-compiler : "3.0.0" , webpack/memory-fs : "0.4.1" , @babel/core/json5 : "2.1.0" , @babel/core/@babel/generator : "7.3.4" , @babel/core@npm:7.0.0/@babel/generator : "7.3.4" , } , preferUnplugged Define whether the package must be unplugged or not. While Yarn attempts to reference and load packages directly from their zip archives, it may not always be possible. A heuristic tries to detect cases where zip-loading would be problematic and unpack the files on disk instead but, being just a heuristic, it may report incorrect results. The preferUnplugged field lets you define yourself, as a package author, whether your package works or not when stored as an archive. If set, it will override the default heuristic. preferUnplugged : false , files Array of file glob patterns that will be included within the published tarball. File patterns follow a similar syntax to .gitignore , but reversed: including a file, directory, or glob pattern ( * , **/* , and such) will make it so that file is included in the tarball when it’s packed. Omitting the field will make it default to ["*"] , which means it will include all files. If this field is missing, Yarn will use the project's .gitignore to generate the pack list, or the .npmignore file instead if available. Some special files and directories are also included or excluded regardless of whether they exist in the files array. files : [ "dist/**/*" , "lib/**/*" , ] , publishConfig Extra settings affecting how the package is published. publishConfig : { publishConfig.access Define the access to use when publishing the package. Valid values are public and restricted , but restricted usually requires to register for a paid plan (this is up to the registry you use). access : "public" | "restricted" , publishConfig.bin Replacement of the package's bin field, used in the published tarball over the main one. bin : "./build/bin.js" , publishConfig.browser Replacement of the package's browser field, used in the published tarball over the main one. browser : "./build/browser.js" , publishConfig.executableFiles Set of files that must be marked as executable (+x) in the published tarball. executableFiles : [ "./dist/shim.js" , ] , publishConfig.main Replacement of the package's main field, used in the published tarball over the main one. main : "./build/index.js" , publishConfig.module Replacement of the package's module field, used in the published tarball over the main one. module : "./build/index.mjs" , publishConfig.provenance Define whether to produce a provenance statement for the package when publishing. Overrides all other provenance settings. provenance : true , publishConfig.registry If present, will replace whatever registry is defined in the configuration when the package is about to be pushed to a remote location. registry : "https://npm.pkg.github.com" , publishConfig.type Replacement of the package's type field, used in the published tarball over the main one. type : "./build/index.d.ts" , } , installConfig Extra settings affecting how the package is installed. installConfig : { installConfig.hoistingLimits Defines the highest point where packages can be hoisted. See nmHoistingLimits for more information. hoistingLimits : "workspaces" | "dependencies" | "none" , installConfig.selfReferences Defines whether workspaces are allowed to require themselves. See nmSelfReferences for more information. selfReferences : true , } , Edit this page Next Settings (.yarnrc.yml) Copyright © 2026 Yarn Contributors, Inc. Built with Docusaurus. | 2026-01-13T09:30:28 |
https://yarnpkg.com/configuration/manifest#type | Manifest (package.json) | Yarn Skip to main content Yarn Get Started Features CLI Configuration Advanced Blog API master (4.12.0-dev) master (4.12.0-dev) 3.8.7 1.22.22 Discord GitHub Search Manifest (package.json) Settings (.yarnrc.yml) Manifest (package.json) Manifest (package.json) Manifest files (also called package.json because of their name) contain everything needed to describe the settings unique to one particular package. Project will contain multiple such manifests if they use the workspace feature, as each workspace is described through its own manifest. Note that defaults for these fields can be set via the initFields settings. name Name of the package. Used to identify it across the application, especially amongst multiple workspaces. The first part of the name (here @scope/ ) is optional and is used as a namespace). name : "@scope/name" , version Version of the package. Usually doesn't have any impact on your project, except when it is a workspace - then its version must match the specified ranges for the workspace to be selected as resolution candidate. version : "1.2.3" , packageManager Define the package manager that should be used when working on this project. This field is used by Corepack and similar tools to detect the Yarn version in use in a project - in a sense, it has the same purpose as your lockfile, but only for Yarn itself. Yarn will automatically set this value when running yarn set version . packageManager : "yarn@4.0.0" , type Define how should be interpreted .js files. A Node.js v13.x option . Possible values are commonjs (the default) and module . Yarn 3+ will generate a .pnp.cjs file when using PnP regardless of this option. type : "commonjs" | "module" , private Define whether the package is meant to be published. If true, the package is considered private and Yarn will refuse to publish it regardless of the circumstances. private : true , license SPDX identifier defining the license under which the package is distributed. license : "MIT" , os Set of platforms on which this package works. The value of process.platform() will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. os : [ "linux" , "darwin" , "win32" , ] , cpu Set of CPU architectures on which this package works. The value of process.arch() will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. cpu : [ "x64" , "ia32" , "arm64" , ] , libc Set of C standard libraries on which this package depends. The host standard library will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. libc : [ "glibc" , "musl" , ] , main Path of the file that should be resolved when requiring the package via a bare identifier. This field can be modified at publish-time through the use of the publishConfig.main field. main : "./sources/index.js" , module Path of the file that should be resolved when requiring the package via a bare identifier in an ES6-compatible bundler environment. This field should be considered deprecated, with exports being its official replacement. module : "./sources/index.mjs" , languageName Arbitrary value selecting the linker to use when installing the dependency. This is an internal package setting that shouldn't be touched unless you really know what you're doing. languageName : "node" , bin Set of files to expose via yarn run bin-name and the shell environment. If set to a string, the binary value will be the package name (not including its scope part). bin : { my-bin : "./dist/my-bin.js" , } , scripts Set of scripts to expose via yarn run script-name , or as lifecycle hooks. Scripts in Yarn are executed by a POSIX-like shell which implements most features you would want to use in one-liner scripts. For example you can assign environment variables using the POSIX syntax, and Yarn will make it work across both Linux, OSX, and Windows. scripts : { test : "NODE_OPTIONS='--max-old-space-size=2048' jest" , build : "webpack-cli --config ./webpack.config.js" , count-words : "echo \"$@\" | wc -w" , } , dependencies Set of dependencies that must be made available to the current package in order for it to work properly. Consult the protocol documentation for more information. dependencies : { webpack : "^5.0.0" , } , optionalDependencies Set of dependencies that Yarn should only try to install if the os/cpu/libc fields match those of the host platform. Unlike regular dependencies, those listed in optionalDependencies are allowed to have a failing postinstall step - in fact, they won't even be installed at all if the os/cpu/libc filters don't cover the host platform. Note that optionalDependencies only cares about whether the package should install/build or not - it should still be resolvable, as otherwise it's impossible to tell whether a failure to retrieve the package metadata is intentional or not. optionalDependencies : { fsevents : "^5.0.0" , } , devDependencies Set of dependencies that must be made available to the current package in order for it to work properly as a workspace. Unlike regular dependencies, those listed in devDependencies will only be required when the package is installed as part of a workspace project - usually by cloning the project repository then running yarn install inside it. devDependencies : { webpack : "^5.0.0" , } , peerDependencies Set of dependencies that the package must inherit from its ancestor in the dependency tree. The semantic of peer dependencies guarantee that when the package require the dependency, it will be returned the exact same object instance as the one that would be returned to the package's ancestor. This mechanism makes peer dependencies the best way to share singleton states across multiple packages. As an extension, Yarn supports "peer dependencies with default": dependencies listed in both the dependencies and a peerDependencies fields will try to solve the peer dependency first, but will fallback to the regular dependency if it can't be satisfied otherwise. peerDependencies : { react : "*" , react-dom : "*" , } , workspaces Array of folder glob patterns referencing the workspaces of the project. Workspaces are an optional feature used by monorepos to split a large project into semi-independent subprojects, each one listing their own set of dependencies. The workspaces field is a list of glob patterns that match all directories that should become workspaces of your application. Consult the workspaces documentation for more information. workspaces : [ "packages/*" , ] , dependenciesMeta Extra settings affecting how the dependencies and devDependencies fields are interpreted. In the context of a workspaced project most of these settings will affect all workspaces and as such must be specified at the root of the project. Unless noted otherwise, the dependenciesMeta field will be ignored if found within a workspace. dependenciesMeta : { fsevents : { dependenciesMeta.built Define whether to run the postinstall script or not. If false, the package will never be built (deny-list). This behavior is reversed when the enableScripts yarnrc setting is toggled off - when that happens, only packages with built explicitly set to true will be built (allow-list); as for those with built explicitly set to false , they will simply see their build script warnings downgraded into simple notices. built : false , dependenciesMeta.optional Define whether the dependency is optional or not. Unlike most other settings in dependenciesMeta , optional is allowed anywhere in the dependency tree. It has the exact same effect as optionalDependencies - in fact, that's internally what optionalDependencies compiles down to. optional : false , dependenciesMeta.unplugged Define whether the package must be unplugged or not. If true, the specified package will be automatically unplugged at install time. This should only be needed for packages that contain scripts in other languages than Javascript (for example nan contains C++ headers). unplugged : true , } , } , peerDependenciesMeta Extra settings affecting how the peerDependencies field is interpreted. Unlike dependenciesMeta , peerDependenciesMeta is allowed in any parts of the dependency tree. peerDependenciesMeta : { react-dom : { peerDependenciesMeta.optional Define whether to log a warning when the peer dependency can't be satisfied. If true, the selected peer dependency will be marked as optional by the package manager, silencing any warning we would otherwise emit. optional : true , } , } , resolutions Override the resolutions of specific dependencies. This field allows you to instruct Yarn to use a specific resolution (specific package version) instead of anything the resolver would normally pick. This is useful to enforce all your packages to use a single version of a dependency, or backport a fix. The syntax for the resolution key accepts one level of specificity, so all the following examples are correct. Note: When a path is relative, like it can be with the file: and portal: protocols, it is resolved relative to the path of the project. Note: The resolutions field can only be set at the root of the project, and will generate a warning if used in any other workspace. resolutions : { relay-compiler : "3.0.0" , webpack/memory-fs : "0.4.1" , @babel/core/json5 : "2.1.0" , @babel/core/@babel/generator : "7.3.4" , @babel/core@npm:7.0.0/@babel/generator : "7.3.4" , } , preferUnplugged Define whether the package must be unplugged or not. While Yarn attempts to reference and load packages directly from their zip archives, it may not always be possible. A heuristic tries to detect cases where zip-loading would be problematic and unpack the files on disk instead but, being just a heuristic, it may report incorrect results. The preferUnplugged field lets you define yourself, as a package author, whether your package works or not when stored as an archive. If set, it will override the default heuristic. preferUnplugged : false , files Array of file glob patterns that will be included within the published tarball. File patterns follow a similar syntax to .gitignore , but reversed: including a file, directory, or glob pattern ( * , **/* , and such) will make it so that file is included in the tarball when it’s packed. Omitting the field will make it default to ["*"] , which means it will include all files. If this field is missing, Yarn will use the project's .gitignore to generate the pack list, or the .npmignore file instead if available. Some special files and directories are also included or excluded regardless of whether they exist in the files array. files : [ "dist/**/*" , "lib/**/*" , ] , publishConfig Extra settings affecting how the package is published. publishConfig : { publishConfig.access Define the access to use when publishing the package. Valid values are public and restricted , but restricted usually requires to register for a paid plan (this is up to the registry you use). access : "public" | "restricted" , publishConfig.bin Replacement of the package's bin field, used in the published tarball over the main one. bin : "./build/bin.js" , publishConfig.browser Replacement of the package's browser field, used in the published tarball over the main one. browser : "./build/browser.js" , publishConfig.executableFiles Set of files that must be marked as executable (+x) in the published tarball. executableFiles : [ "./dist/shim.js" , ] , publishConfig.main Replacement of the package's main field, used in the published tarball over the main one. main : "./build/index.js" , publishConfig.module Replacement of the package's module field, used in the published tarball over the main one. module : "./build/index.mjs" , publishConfig.provenance Define whether to produce a provenance statement for the package when publishing. Overrides all other provenance settings. provenance : true , publishConfig.registry If present, will replace whatever registry is defined in the configuration when the package is about to be pushed to a remote location. registry : "https://npm.pkg.github.com" , publishConfig.type Replacement of the package's type field, used in the published tarball over the main one. type : "./build/index.d.ts" , } , installConfig Extra settings affecting how the package is installed. installConfig : { installConfig.hoistingLimits Defines the highest point where packages can be hoisted. See nmHoistingLimits for more information. hoistingLimits : "workspaces" | "dependencies" | "none" , installConfig.selfReferences Defines whether workspaces are allowed to require themselves. See nmSelfReferences for more information. selfReferences : true , } , Edit this page Next Settings (.yarnrc.yml) Copyright © 2026 Yarn Contributors, Inc. Built with Docusaurus. | 2026-01-13T09:30:28 |
http://hackage.haskell.org/package/semigroupoids-1.2.5/docs/Data-Functor-Apply.html | Data.Functor.Apply Source Contents Index semigroupoids-1.2.5: Haskell 98 semigroupoids: Category sans id Portability portable Stability provisional Maintainer Edward Kmett <ekmett@gmail.com> Data.Functor.Apply Contents Functors Apply - a strong lax semimonoidal endofunctor Wrappers Description Synopsis class Functor f where fmap :: (a -> b) -> f a -> f b (<$) :: a -> f b -> f a (<$>) :: Functor f => (a -> b) -> f a -> f b ($>) :: Functor f => f a -> b -> f b class Functor f => Apply f where (<.>) :: f (a -> b) -> f a -> f b (.>) :: f a -> f b -> f b (<.) :: f a -> f b -> f a (<..>) :: Apply w => w a -> w (a -> b) -> w b liftF2 :: Apply w => (a -> b -> c) -> w a -> w b -> w c liftF3 :: Apply w => (a -> b -> c -> d) -> w a -> w b -> w c -> w d newtype WrappedApplicative f a = WrapApplicative { unwrapApplicative :: f a } newtype MaybeApply f a = MaybeApply { runMaybeApply :: Either (f a) a } Functors class Functor f where The Functor class is used for types that can be mapped over. Instances of Functor should satisfy the following laws: fmap id == id fmap (f . g) == fmap f . fmap g The instances of Functor for lists, Data.Maybe.Maybe and System.IO.IO satisfy these laws. Methods fmap :: (a -> b) -> f a -> f b (<$) :: a -> f b -> f a Replace all locations in the input with the same value. The default definition is fmap . const , but this may be overridden with a more efficient version. Instances Functor [] Functor IO Functor Id Functor ZipList Functor Maybe Functor FingerTree Functor Digit Functor Node Functor Elem Functor Id Functor Tree Functor Seq Functor ViewL Functor ViewR Functor IntMap Functor Option Functor NonEmpty Functor Identity Functor ((->) r) Functor ( Either a) Functor ( (,) a) Functor (StateL s) Functor (StateR s) Functor ( Const m) Monad m => Functor ( WrappedMonad m) Functor (State s) Functor ( Map k) Functor m => Functor ( MaybeT m) Functor m => Functor ( ListT m) Functor m => Functor ( IdentityT m) Functor f => Functor ( MaybeApply f) Functor f => Functor ( WrappedApplicative f) Functor f => Functor (Act f) Arrow a => Functor ( WrappedArrow a b) Functor ( Cokleisli w a) Functor m => Functor ( WriterT w m) Functor m => Functor ( WriterT w m) Functor m => Functor ( StateT s m) Functor m => Functor ( StateT s m) Functor m => Functor ( ReaderT r m) Functor m => Functor ( ErrorT e m) Functor ( ContT r m) ( Functor f, Functor g) => Functor ( Compose f g) ( Functor f, Functor g) => Functor ( Product f g) Functor f => Functor ( Static f a) Functor m => Functor ( RWST r w s m) Functor m => Functor ( RWST r w s m) (<$>) :: Functor f => (a -> b) -> f a -> f b An infix synonym for fmap . ($>) :: Functor f => f a -> b -> f b Source TODO: move into Data.Functor Apply - a strong lax semimonoidal endofunctor class Functor f => Apply f where Source A strong lax semi-monoidal endofunctor. This is equivalent to an Applicative without pure . Laws: associative composition: (.) <$> u <.> v <.> w = u <.> (v <.> w) Methods (<.>) :: f (a -> b) -> f a -> f b Source (.>) :: f a -> f b -> f b Source a .> b = const id $ a . b (<.) :: f a -> f b -> f a Source a . b = const <$ a . b Instances Apply [] Apply IO Apply ZipList Apply Maybe Apply Tree Apply Seq Apply IntMap An IntMap is not Applicative , but it is an instance of Apply Apply Option Apply NonEmpty Apply Identity Apply ((->) m) Apply ( Either a) Semigroup m => Apply ( (,) m) Semigroup m => Apply ( Const m) Monad m => Apply ( WrappedMonad m) Ord k => Apply ( Map k) A Map is not Applicative , but it is an instance of Apply ( Bind m, Monad m) => Apply ( MaybeT m) Apply m => Apply ( ListT m) Apply w => Apply ( IdentityT w) Apply f => Apply ( MaybeApply f) Applicative f => Apply ( WrappedApplicative f) Arrow a => Apply ( WrappedArrow a b) Apply ( Cokleisli w a) ( Apply m, Semigroup w) => Apply ( WriterT w m) ( Apply m, Semigroup w) => Apply ( WriterT w m) Bind m => Apply ( StateT s m) Bind m => Apply ( StateT s m) Apply m => Apply ( ReaderT e m) ( Bind m, Monad m) => Apply ( ErrorT e m) Apply ( ContT r m) ( Apply f, Apply g) => Apply ( Compose f g) ( Apply f, Apply g) => Apply ( Product f g) Apply f => Apply ( Static f a) ( Bind m, Semigroup w) => Apply ( RWST r w s m) ( Bind m, Semigroup w) => Apply ( RWST r w s m) (<..>) :: Apply w => w a -> w (a -> b) -> w b Source A variant of <.> with the arguments reversed. liftF2 :: Apply w => (a -> b -> c) -> w a -> w b -> w c Source Lift a binary function into a comonad with zipping liftF3 :: Apply w => (a -> b -> c -> d) -> w a -> w b -> w c -> w d Source Lift a ternary function into a comonad with zipping Wrappers newtype WrappedApplicative f a Source Wrap an Applicative to be used as a member of Apply Constructors WrapApplicative Fields unwrapApplicative :: f a Instances Functor f => Functor ( WrappedApplicative f) Applicative f => Applicative ( WrappedApplicative f) Alternative f => Alternative ( WrappedApplicative f) Applicative f => Apply ( WrappedApplicative f) Alternative f => Alt ( WrappedApplicative f) Alternative f => Plus ( WrappedApplicative f) newtype MaybeApply f a Source Transform a Apply into an Applicative by adding a unit. Constructors MaybeApply Fields runMaybeApply :: Either (f a) a Instances Functor f => Functor ( MaybeApply f) Apply f => Applicative ( MaybeApply f) Comonad f => Comonad ( MaybeApply f) Extend f => Extend ( MaybeApply f) Apply f => Apply ( MaybeApply f) Produced by Haddock version 2.9.2 | 2026-01-13T09:30:28 |
https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.instagram.com%2F&h=AT0yIsB1zlJduJp7XrHsdX6Vh3kxMUv3-OPc13B-deLz8LGCeIAoOldp8IFPR5YgqAE4potHP6jxwVDN3rFv0bcTfSvl6mFiYLbCTW0AMOGJJJhnd_EJcFjxLqHbfcFmzyGFVH2z3pdboQY5 | Facebook Facebook 이메일 또는 휴대폰 비밀번호 계정을 잊으셨나요? 새 계정 만들기 일시적으로 차단됨 일시적으로 차단됨 회원님의 이 기능 사용 속도가 너무 빠른 것 같습니다. 이 기능 사용에서 일시적으로 차단되었습니다. Back 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 中文(简体) 日本語 Português (Brasil) Français (France) Deutsch 가입하기 로그인 Messenger Facebook Lite 동영상 Meta Pay Meta 스토어 Meta Quest Ray-Ban Meta Meta AI Meta AI 콘텐츠 더 보기 Instagram Threads 투표 정보 센터 개인정보처리방침 개인정보 보호 센터 정보 광고 만들기 페이지 만들기 개발자 채용 정보 쿠키 AdChoices 이용 약관 고객 센터 연락처 업로드 및 비사용자 설정 활동 로그 Meta © 2026 | 2026-01-13T09:30:28 |
https://yarnpkg.com/configuration/manifest#cpu | Manifest (package.json) | Yarn Skip to main content Yarn Get Started Features CLI Configuration Advanced Blog API master (4.12.0-dev) master (4.12.0-dev) 3.8.7 1.22.22 Discord GitHub Search Manifest (package.json) Settings (.yarnrc.yml) Manifest (package.json) Manifest (package.json) Manifest files (also called package.json because of their name) contain everything needed to describe the settings unique to one particular package. Project will contain multiple such manifests if they use the workspace feature, as each workspace is described through its own manifest. Note that defaults for these fields can be set via the initFields settings. name Name of the package. Used to identify it across the application, especially amongst multiple workspaces. The first part of the name (here @scope/ ) is optional and is used as a namespace). name : "@scope/name" , version Version of the package. Usually doesn't have any impact on your project, except when it is a workspace - then its version must match the specified ranges for the workspace to be selected as resolution candidate. version : "1.2.3" , packageManager Define the package manager that should be used when working on this project. This field is used by Corepack and similar tools to detect the Yarn version in use in a project - in a sense, it has the same purpose as your lockfile, but only for Yarn itself. Yarn will automatically set this value when running yarn set version . packageManager : "yarn@4.0.0" , type Define how should be interpreted .js files. A Node.js v13.x option . Possible values are commonjs (the default) and module . Yarn 3+ will generate a .pnp.cjs file when using PnP regardless of this option. type : "commonjs" | "module" , private Define whether the package is meant to be published. If true, the package is considered private and Yarn will refuse to publish it regardless of the circumstances. private : true , license SPDX identifier defining the license under which the package is distributed. license : "MIT" , os Set of platforms on which this package works. The value of process.platform() will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. os : [ "linux" , "darwin" , "win32" , ] , cpu Set of CPU architectures on which this package works. The value of process.arch() will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. cpu : [ "x64" , "ia32" , "arm64" , ] , libc Set of C standard libraries on which this package depends. The host standard library will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. libc : [ "glibc" , "musl" , ] , main Path of the file that should be resolved when requiring the package via a bare identifier. This field can be modified at publish-time through the use of the publishConfig.main field. main : "./sources/index.js" , module Path of the file that should be resolved when requiring the package via a bare identifier in an ES6-compatible bundler environment. This field should be considered deprecated, with exports being its official replacement. module : "./sources/index.mjs" , languageName Arbitrary value selecting the linker to use when installing the dependency. This is an internal package setting that shouldn't be touched unless you really know what you're doing. languageName : "node" , bin Set of files to expose via yarn run bin-name and the shell environment. If set to a string, the binary value will be the package name (not including its scope part). bin : { my-bin : "./dist/my-bin.js" , } , scripts Set of scripts to expose via yarn run script-name , or as lifecycle hooks. Scripts in Yarn are executed by a POSIX-like shell which implements most features you would want to use in one-liner scripts. For example you can assign environment variables using the POSIX syntax, and Yarn will make it work across both Linux, OSX, and Windows. scripts : { test : "NODE_OPTIONS='--max-old-space-size=2048' jest" , build : "webpack-cli --config ./webpack.config.js" , count-words : "echo \"$@\" | wc -w" , } , dependencies Set of dependencies that must be made available to the current package in order for it to work properly. Consult the protocol documentation for more information. dependencies : { webpack : "^5.0.0" , } , optionalDependencies Set of dependencies that Yarn should only try to install if the os/cpu/libc fields match those of the host platform. Unlike regular dependencies, those listed in optionalDependencies are allowed to have a failing postinstall step - in fact, they won't even be installed at all if the os/cpu/libc filters don't cover the host platform. Note that optionalDependencies only cares about whether the package should install/build or not - it should still be resolvable, as otherwise it's impossible to tell whether a failure to retrieve the package metadata is intentional or not. optionalDependencies : { fsevents : "^5.0.0" , } , devDependencies Set of dependencies that must be made available to the current package in order for it to work properly as a workspace. Unlike regular dependencies, those listed in devDependencies will only be required when the package is installed as part of a workspace project - usually by cloning the project repository then running yarn install inside it. devDependencies : { webpack : "^5.0.0" , } , peerDependencies Set of dependencies that the package must inherit from its ancestor in the dependency tree. The semantic of peer dependencies guarantee that when the package require the dependency, it will be returned the exact same object instance as the one that would be returned to the package's ancestor. This mechanism makes peer dependencies the best way to share singleton states across multiple packages. As an extension, Yarn supports "peer dependencies with default": dependencies listed in both the dependencies and a peerDependencies fields will try to solve the peer dependency first, but will fallback to the regular dependency if it can't be satisfied otherwise. peerDependencies : { react : "*" , react-dom : "*" , } , workspaces Array of folder glob patterns referencing the workspaces of the project. Workspaces are an optional feature used by monorepos to split a large project into semi-independent subprojects, each one listing their own set of dependencies. The workspaces field is a list of glob patterns that match all directories that should become workspaces of your application. Consult the workspaces documentation for more information. workspaces : [ "packages/*" , ] , dependenciesMeta Extra settings affecting how the dependencies and devDependencies fields are interpreted. In the context of a workspaced project most of these settings will affect all workspaces and as such must be specified at the root of the project. Unless noted otherwise, the dependenciesMeta field will be ignored if found within a workspace. dependenciesMeta : { fsevents : { dependenciesMeta.built Define whether to run the postinstall script or not. If false, the package will never be built (deny-list). This behavior is reversed when the enableScripts yarnrc setting is toggled off - when that happens, only packages with built explicitly set to true will be built (allow-list); as for those with built explicitly set to false , they will simply see their build script warnings downgraded into simple notices. built : false , dependenciesMeta.optional Define whether the dependency is optional or not. Unlike most other settings in dependenciesMeta , optional is allowed anywhere in the dependency tree. It has the exact same effect as optionalDependencies - in fact, that's internally what optionalDependencies compiles down to. optional : false , dependenciesMeta.unplugged Define whether the package must be unplugged or not. If true, the specified package will be automatically unplugged at install time. This should only be needed for packages that contain scripts in other languages than Javascript (for example nan contains C++ headers). unplugged : true , } , } , peerDependenciesMeta Extra settings affecting how the peerDependencies field is interpreted. Unlike dependenciesMeta , peerDependenciesMeta is allowed in any parts of the dependency tree. peerDependenciesMeta : { react-dom : { peerDependenciesMeta.optional Define whether to log a warning when the peer dependency can't be satisfied. If true, the selected peer dependency will be marked as optional by the package manager, silencing any warning we would otherwise emit. optional : true , } , } , resolutions Override the resolutions of specific dependencies. This field allows you to instruct Yarn to use a specific resolution (specific package version) instead of anything the resolver would normally pick. This is useful to enforce all your packages to use a single version of a dependency, or backport a fix. The syntax for the resolution key accepts one level of specificity, so all the following examples are correct. Note: When a path is relative, like it can be with the file: and portal: protocols, it is resolved relative to the path of the project. Note: The resolutions field can only be set at the root of the project, and will generate a warning if used in any other workspace. resolutions : { relay-compiler : "3.0.0" , webpack/memory-fs : "0.4.1" , @babel/core/json5 : "2.1.0" , @babel/core/@babel/generator : "7.3.4" , @babel/core@npm:7.0.0/@babel/generator : "7.3.4" , } , preferUnplugged Define whether the package must be unplugged or not. While Yarn attempts to reference and load packages directly from their zip archives, it may not always be possible. A heuristic tries to detect cases where zip-loading would be problematic and unpack the files on disk instead but, being just a heuristic, it may report incorrect results. The preferUnplugged field lets you define yourself, as a package author, whether your package works or not when stored as an archive. If set, it will override the default heuristic. preferUnplugged : false , files Array of file glob patterns that will be included within the published tarball. File patterns follow a similar syntax to .gitignore , but reversed: including a file, directory, or glob pattern ( * , **/* , and such) will make it so that file is included in the tarball when it’s packed. Omitting the field will make it default to ["*"] , which means it will include all files. If this field is missing, Yarn will use the project's .gitignore to generate the pack list, or the .npmignore file instead if available. Some special files and directories are also included or excluded regardless of whether they exist in the files array. files : [ "dist/**/*" , "lib/**/*" , ] , publishConfig Extra settings affecting how the package is published. publishConfig : { publishConfig.access Define the access to use when publishing the package. Valid values are public and restricted , but restricted usually requires to register for a paid plan (this is up to the registry you use). access : "public" | "restricted" , publishConfig.bin Replacement of the package's bin field, used in the published tarball over the main one. bin : "./build/bin.js" , publishConfig.browser Replacement of the package's browser field, used in the published tarball over the main one. browser : "./build/browser.js" , publishConfig.executableFiles Set of files that must be marked as executable (+x) in the published tarball. executableFiles : [ "./dist/shim.js" , ] , publishConfig.main Replacement of the package's main field, used in the published tarball over the main one. main : "./build/index.js" , publishConfig.module Replacement of the package's module field, used in the published tarball over the main one. module : "./build/index.mjs" , publishConfig.provenance Define whether to produce a provenance statement for the package when publishing. Overrides all other provenance settings. provenance : true , publishConfig.registry If present, will replace whatever registry is defined in the configuration when the package is about to be pushed to a remote location. registry : "https://npm.pkg.github.com" , publishConfig.type Replacement of the package's type field, used in the published tarball over the main one. type : "./build/index.d.ts" , } , installConfig Extra settings affecting how the package is installed. installConfig : { installConfig.hoistingLimits Defines the highest point where packages can be hoisted. See nmHoistingLimits for more information. hoistingLimits : "workspaces" | "dependencies" | "none" , installConfig.selfReferences Defines whether workspaces are allowed to require themselves. See nmSelfReferences for more information. selfReferences : true , } , Edit this page Next Settings (.yarnrc.yml) Copyright © 2026 Yarn Contributors, Inc. Built with Docusaurus. | 2026-01-13T09:30:28 |
https://yarnpkg.com/getting-started/recipes | Recipes | Yarn Skip to main content Yarn Get Started Features CLI Configuration Advanced Blog API master (4.12.0-dev) master (4.12.0-dev) 3.8.7 1.22.22 Discord GitHub Search Starting with Yarn Introduction Installation Usage Migrating from 1.x / npm Benefits Step-by-step To go further Good to Know Corepack Editor SDKs Questions & Answers Recipes Good to Know Recipes On this page Recipes TypeScript + PnP quick start: Initialize the repo using Yarn 2: yarn init - 2 Add typescript and enable VSCode integration : yarn add -- dev typescript yarn dlx @yarnpkg/sdks vscode Running a Yarn CLI command in the specified directory: Starting a new library inside a monorepo directly, without manually creating directories for it. yarn packages/my-new-lib init Running an arbitrary command inside a specific workspace: yarn packages/app tsc --noEmit Hybrid PnP + node_modules mono-repo: You may sometimes need to use node_modules on just part of your workspace (for example, if you use React-Native). Create a separate directory for the node_modules project. mkdir nm-packages/myproj touch nm-packages/myproj/yarn.lock Enable the node-modules linker : yarn -- cwd packages/myproj config set nodeLinker node-modules Add a PnP ignore pattern for this path in your main .yarnrc.yml at the root of your monorepo: pnpIgnorePatterns : - ./nm - packages/ ** Run yarn install to apply pnpIgnorePatterns in the repo root. Run cd nm-packages/myproj && yarn to install the now isolated project. Edit this page Previous Questions & Answers TypeScript + PnP quick start: Running a Yarn CLI command in the specified directory: Hybrid PnP + node_modules mono-repo: Copyright © 2026 Yarn Contributors, Inc. Built with Docusaurus. | 2026-01-13T09:30:28 |
https://yarnpkg.com/cli/install | yarn install | Yarn Skip to main content Yarn Get Started Features CLI Configuration Advanced Blog API master (4.12.0-dev) master (4.12.0-dev) 3.8.7 1.22.22 Discord GitHub Search @yarnpkg/cli yarn add yarn bin yarn cache clean yarn config yarn config get yarn config set yarn config unset yarn constraints yarn constraints query yarn constraints source yarn dedupe yarn dlx yarn exec yarn explain yarn explain peer-requirements yarn info yarn init yarn init yarn install yarn link yarn node yarn npm audit yarn npm info yarn npm login yarn npm logout yarn npm publish yarn npm tag add yarn npm tag list yarn npm tag remove yarn npm whoami yarn pack yarn patch yarn patch-commit yarn plugin check yarn plugin import yarn plugin import from sources yarn plugin list yarn plugin remove yarn plugin runtime yarn rebuild yarn remove yarn run yarn search yarn set resolution yarn set version yarn set version from sources yarn stage yarn unlink yarn unplug yarn up yarn upgrade-interactive yarn version yarn version apply yarn version check yarn why yarn workspace yarn workspaces focus yarn workspaces foreach yarn workspaces list @yarnpkg/builder yarn builder build bundle yarn builder build plugin yarn builder new plugin @yarnpkg/pnpify yarn pnpify run @yarnpkg/sdks yarn sdks @yarnpkg/cli yarn install On this page yarn install Install the project dependencies. Usage $ yarn install Examples Install the project : yarn install Validate a project when using Zero-Installs : yarn install -- immutable -- immutable-cache Validate a project when using Zero-Installs (slightly safer if you accept external PRs) : yarn install -- immutable -- immutable-cache -- check-cache Details This command sets up your project if needed. The installation is split into four different steps that each have their own characteristics: Resolution: First the package manager will resolve your dependencies. The exact way a dependency version is privileged over another isn't standardized outside of the regular semver guarantees. If a package doesn't resolve to what you would expect, check that all dependencies are correctly declared (also check our website for more information: ). Fetch: Then we download all the dependencies if needed, and make sure that they're all stored within our cache (check the value of cacheFolder in yarn config to see where the cache files are stored). Link: Then we send the dependency tree information to internal plugins tasked with writing them on the disk in some form (for example by generating the .pnp.cjs file you might know). Build: Once the dependency tree has been written on the disk, the package manager will now be free to run the build scripts for all packages that might need it, in a topological order compatible with the way they depend on one another. See https://yarnpkg.com/advanced/lifecycle-scripts for detail. Note that running this command is not part of the recommended workflow. Yarn supports zero-installs, which means that as long as you store your cache and your .pnp.cjs file inside your repository, everything will work without requiring any install right after cloning your repository or switching branches. If the --immutable option is set (defaults to true on CI), Yarn will abort with an error exit code if the lockfile was to be modified (other paths can be added using the immutablePatterns configuration setting). For backward compatibility we offer an alias under the name of --frozen-lockfile , but it will be removed in a later release. If the --immutable-cache option is set, Yarn will abort with an error exit code if the cache folder was to be modified (either because files would be added, or because they'd be removed). If the --refresh-lockfile option is set, Yarn will keep the same resolution for the packages currently in the lockfile but will refresh their metadata. If used together with --immutable , it can validate that the lockfile information are consistent. This flag is enabled by default when Yarn detects it runs within a pull request context. If the --check-cache option is set, Yarn will always refetch the packages and will ensure that their checksum matches what's 1/ described in the lockfile 2/ inside the existing cache files (if present). This is recommended as part of your CI workflow if you're both following the Zero-Installs model and accepting PRs from third-parties, as they'd otherwise have the ability to alter the checked-in packages before submitting them. If the --inline-builds option is set, Yarn will verbosely print the output of the build steps of your dependencies (instead of writing them into individual files). This is likely useful mostly for debug purposes only when using Docker-like environments. If the --mode=<mode> option is set, Yarn will change which artifacts are generated. The modes currently supported are: skip-build will not run the build scripts at all. Note that this is different from setting enableScripts to false because the latter will disable build scripts, and thus affect the content of the artifacts generated on disk, whereas the former will just disable the build step - but not the scripts themselves, which just won't run. update-lockfile will skip the link step altogether, and only fetch packages that are missing from the lockfile (or that have no associated checksums). This mode is typically used by tools like Renovate or Dependabot to keep a lockfile up-to-date without incurring the full install cost. Options Definition Description --json Format the output as an NDJSON stream --immutable Abort with an error exit code if the lockfile was to be modified --immutable-cache Abort with an error exit code if the cache folder was to be modified --refresh-lockfile Refresh the package metadata stored in the lockfile --check-cache Always refetch the packages and ensure that their checksums are consistent --check-resolutions Validates that the package resolutions are coherent --inline-builds Verbosely print the output of the build steps of dependencies --mode #0 Change what artifacts installs generate Usage Examples Details Options Copyright © 2026 Yarn Contributors, Inc. Built with Docusaurus. | 2026-01-13T09:30:28 |
http://hackage.haskell.org/package/semigroupoids-1.3.2 | semigroupoids: Haskell 98 semigroupoids: Category sans id Hackage :: [Package] Search Browse What's new Upload User accounts semigroupoids : Haskell 98 semigroupoids: Category sans id [ bsd2 , comonads , control , library ] [ Propose Tags ] [ Report a vulnerability ] Provides a wide array of semigroupoids and operations for working with semigroupds. A Semigroupoid is a Category without the requirement of identity arrows for every object in the category. When working with comonads you often have the <*> portion of an Applicative , but not the pure . This was captured in Uustalu and Vene's "Essence of Dataflow Programming" in the form of the ComonadZip class in the days before Applicative . Apply provides a weaker invariant, but for the comonads used for data flow programming (found in the streams package), this invariant is preserved. Applicative function composition forms a semigroupoid. Similarly many structures are nearly a comonad, but not quite, for instance lists provide a reasonable extend operation in the form of tails , but do not always contain a value. Ideally the following relationships would hold: Traversable <---- Foldable <--- Functor ------> Alt ---------> Plus Semigroupoid | | | | | v v v v v Traversable1 <--- Foldable1 Apply --------> Applicative -> Alternative Category | | | | v v v v Bind ---------> Monad -------> MonadPlus Arrow Apply, Bind, and Extract give rise the Static, Kleisli and Cokleisli semigroupoids respectively. This lets us remove many of the restrictions from various monad transformers as in many cases the binding operation or <*> operation does not require them. Finally, to work with these weaker structures it is beneficial to have containers that can provide stronger guarantees about their contents, so versions of Traversable and Foldable that can be folded with just a Semigroup are added. Modules [ Index ] Data Functor Data.Functor.Alt Data.Functor.Apply Data.Functor.Bind Data.Functor.Bind.Trans Data.Functor.Plus Semigroup Data.Semigroup.Foldable Data.Semigroup.Traversable Data.Semigroupoid Data.Semigroupoid.Dual Data.Semigroupoid.Static Traversable Data.Traversable.Instances Downloads semigroupoids-1.3.2.tar.gz [ browse ] (Cabal source package) Package description ( revised from the package) Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'. Maintainer's Corner Package maintainers EdwardKmett , EricMertens , ryanglscott For package maintainers and hackage trustees edit package information Candidates 5.2.1 Versions [ RSS ] 1.0.0 , 1.1.0 , 1.1.1 , 1.1.2 , 1.1.3 , 1.2.0 , 1.2.1 , 1.2.2 , 1.2.2.1 , 1.2.2.2 , 1.2.2.3 , 1.2.2.4 , 1.2.4 , 1.2.5 , 1.2.6 , 1.2.6.1 , 1.2.6.2 , 1.3 , 1.3.1 , 1.3.1.1 , 1.3.1.2 , 1.3.2 , 1.3.2.1 , 1.3.3 , 1.3.4 , 3.0 , 3.0.0.1 , 3.0.0.2 , 3.0.1 , 3.0.2 , 3.0.3 , 3.1 , 4.0 , 4.0.1 , 4.0.2 , 4.0.2.1 , 4.0.3 , 4.0.4 , 4.2 , 4.3 , 4.5 , 5 , 5.0.0.1 , 5.0.0.2 , 5.0.0.3 , 5.0.0.4 , 5.0.1 , 5.1 , 5.2 , 5.2.1 , 5.2.2 , 5.3 , 5.3.1 , 5.3.2 , 5.3.3 , 5.3.4 , 5.3.5 , 5.3.6 , 5.3.7 , 6 , 6.0.0.1 , 6.0.1 , 6.0.2 ( info ) Dependencies base (>=4 && <4.6) , comonad (>=1.1.1.5 && <1.2) , containers (>=0.3 && <0.6) , contravariant (>=0.2.0.1 && <0.3) , semigroups (>=0.8.3.1 && <0.9) , transformers (>=0.2 && <0.4) [ details ] License BSD-3-Clause Copyright Copyright (C) 2011 Edward A. Kmett Author Edward A. Kmett Maintainer Edward A. Kmett <ekmett@gmail.com> Uploaded by EdwardKmett at 2012-05-18T19:21:55Z Revised Revision 1 made by HerbertValerioRiedel at 2015-01-03T09:39:54Z Stability provisional --> Category Control , Comonads Home page http://github.com/ekmett/semigroupoids Bug tracker http://github.com/ekmett/semigroupoids/issues Source repo head: git clone git://github.com/ekmett/semigroupoids.git Distributions Arch: 6.0.1 , Debian: 5.3.4 , Fedora: 6.0.1 , FreeBSD: 5.0.0.3 , LTSHaskell: 6.0.1 , NixOS: 6.0.1 , Stackage: 6.0.2 , openSUSE: 6.0.1 Reverse Dependencies 216 direct, 9047 indirect [ details ] Downloads 309284 total (292 in the last 30 days) Rating 2.5 (votes: 9) [estimated by Bayesian average ] Your Rating λ λ λ Status Docs uploaded by user Build status unknown [ no reports yet ] Produced by hackage and Cabal 3.16.1.0. | 2026-01-13T09:30:28 |
https://tests.reproducible-builds.org/debian/bookworm/amd64/pkg_set_build-essential-depends.html | build-essential-depends package set for bookworm/amd64 Debian navigation Change suite/architecture Tested architectures: amd64 arm64 Tested suites: unstable forky trixie bookworm Test results statistics Results for bookworm/amd64 Unreproducible packages: with notes without notes Other package states: package sets Recently tested packages: last 24h last 48h all tested packages packages with .buildinfo files packages without .buildinfo files Scheduled for amd64 Maintainers of in bookworm Reproducible Debian overview Development dashboard Past releases dashboard Categorized issues Bugs filed Variations tested Packages with notifications enabled ⚑ Repositories overview Backend related Broken pieces Documentation (eg. on manual scheduling) Performance stats Health monitoring node overview job overview daily graphs weekly graphs monthly graphs yearly graphs The Reproducible Builds project reproducible-builds.org Reproducible Builds - Docs • News Reproducible Builds in Debian - Wiki SOURCE_DATE_EPOCH specification reproduce.debian.net aims for 100% bit-for-bit identical rebuilds of Debian other CI tests build-essential-depends package set for bookworm/amd64 All tracked package sets for bookworm/amd64 Debian package sets: essential required important build-essential build-essential-depends popcon_top1337-installed-sources key_packages installed_on_debian.org had_a_DSA cii-census cloud-image cloud-image_build-depends desktop package sets: gnome gnome_build-depends kde kde_build-depends mate mate_build-depends xfce xfce_build-depends Debian distribution package sets: CIP CIP_build-depends debian-edu debian-edu_build-depends freedombox freedombox_build-depends grml grml_build-depends tails tails_build-depends pureos_default_install pureos_default_install_build-depends maintenance team package sets: maint_debian-accessibility maint_debian-boot maint_debian-lua maint_debian-med maint_debian-ocaml maint_debian-on-mobile-maintainers maint_debian-python maint_debian-qa maint_debian-science maint_debian-x maint_pkg-android-tools-devel maint_pkg-erlang-devel maint_pkg-fonts-devel maint_pkg-games-devel maint_pkg-golang-maintainers maint_pkg-grass-devel maint_pkg-haskell-maintainers maint_pkg-java-maintainers maint_pkg-javascript-devel maint_pkg-multimedia-maintainers maint_pkg-perl-maintainers maint_pkg-php-pear maint_pkg-openstack maint_pkg-r maint_pkg-ruby-extras-maintainers maint_pkg-rust-maintainers maint_reproducible-builds The package set build-essential-depends in bookworm/amd64 consists of 4635 packages: 104 (2.2%) packages failed to build reproducibly: shaderc efl automake1.11 bnd codenarc cxxtest gtk-sharp2 javaparser mm-common mono-tools guile-3.0 mrmpi nunit pstoedit systemtap lucene4.10 gmetrics emoslib # codec2 scons infinipath-psm ruby-pygments.rb groovy nbsphinx lirc python-graphviz lynx dask qtx11extras-opensource-src doxygen qtsensors-opensource-src h2database fltk1.3 ldc qttools-opensource-src dejagnu auctex freetds qtwayland-opensource-src intel-mediasdk qt6-5compat qt6-multimedia qt6-quick3d eckit qtserialport-opensource-src qtspeech-opensource-src linux86 mpich python-jsonschema secilc oxygen-icons5 eccodes parallel valgrind + libadwaita-1 black underscore python-xarray qtwebsockets-opensource-src qtconnectivity-opensource-src qtsvg-opensource-src qtlocation-opensource-src libcamera gdcm r-base mypy qt6-declarative boost1.74 lucene8 gdb statsmodels python-mkdocs nbconvert petsc qtdeclarative-opensource-src fish lombok odc node-mocha ipyparallel fop bluez gcc-12-cross graphviz + numpy twisted emacs qtbase-opensource-src # # # python3.11 tomcat10 twitter-bootstrap3 commons-vfs php8.2 commons-beanutils icu sphinx-gallery libcommons-lang3-java imagemagick qemu ffmpeg vlc # + xorg-server linux gnupg2 52 (1.1%) packages failed to build from source: ruby-stackprof python-watchgod node-grunt-webpack ruby-fakefs ruby-rest-client ruby-haml strace haskell-unordered-containers freezegun haskell-unicode-collation haskell-citeproc haskell-lpeg python-babel tqdm python-argcomplete ruby-pry-byebug pexpect node-v8flags node-performance-now node-sinon node-webassemblyjs suitesparse node-p-limit haskell-doclayout openldap uglify-js munge node-bl haskell-basement gjs node-flagged-respawn node-tar gtk4 node-css-tree libgweather4 ghc # nspr qtremoteobjects-everywhere-src jupyter-notebook autogen ruby3.1 uvloop devscripts node-rollup-plugin-node-polyfills python-asyncssh espeak-ng yarl nodejs curl gst-plugins-base1.0 perl glibc 18 (0.4%) packages are either in depwait state, blacklisted, not for us, or cannot be downloaded: cross-toolchain-base cross-toolchain-base-ports python-eventlet ceph gcc-12 mono magics++ octave trilinos openblas gcc-11 vtk9 wpewebkit ocaml-dune scipy gcc-12-cross-ports openjfx nss 4461 (96.2%) packages successfully build reproducibly: a52dec aalib abego-treelayout abi-compliance-checker abseil acl acorn acpica-unix adduser adwaita-icon-theme afdko aglfn aiofiles aioredis aiosignal alabaster alex alglib alsa-lib amdgcn-tools animal-sniffer ann ant ant-contrib anthy antlr antlr3 antlr4 antlr-maven-plugin aom apache2 # apache-log4j1.2 apache-log4j2 apache-pom apiguardian apipkg apparmor appconfig appdirs apr apr-util apt argon2 args4j aribb24 armadillo arpack asciidoc asciidoctor asm aspell aspell-en aspell-he assertj-core assimp astroid atf atinject-jsr330 atkmm1.6 at-spi2-core attica-kf5 attr audit autoconf autoconf2.13 autoconf2.69 autoconf-archive autoconf-dickey autodep8 automake-1.16 automat autopkgtest autotools-dev avahi avalon-framework babel-minify babeltrace backbone base-files base-passwd bash bash-completion batik bats bc bcel beautifulsoup4 benchmark biber bignumber.js bindex binfmt-support binutils # binutils-mingw-w64 bison blinker blockdiag blt boost-defaults boot bottleneck bouncycastle box2d breathe brltty brotli bsdmainutils bsh bubblewrap build-essential build-helper-maven-plugin byacc byacc-j byte-buddy bzip2 c3p0 ca-certificates ca-certificates-java cached-property cachy cairo cairocffi cairomm camlbz2 camlp-streams camlzip capstone c-ares cargo castxml catch c-blosc # ccache cdbs cdebconf cdi-api cdparanoia cffsubr cfgrib cfitsio cfortran cftime cgif cglib chafa chardet charls check checkpolicy cherrypy3 chromaprint chrpath cjson classmate classycle cli-common clikit cloudpickle clp clucene-core + cluster cluster-glue clutter-1.0 clutter-imcontext cmake cmark-gfm cmdliner cmdreader cmdtest cme cmocka cm-super codemirror-js coderay codetools coffeescript cogl coinmp coinor-cbc coinor-cgl coinor-osi coinutils colord colors.js colorspacious combblas commonmark commons-configuration commons-csv commons-exec commons-httpclient commons-io commons-math3 commons-parent commons-pool commons-text compreffor compress-lzf constantly contourpy conversant-disruptor # coreutils corosync cpio cppo cppunit cppy cracklib2 crashtest cron cryptsetup cscope cssmin cucumber cudf cunit cup cups # curvesapi cvs cvsps cvxopt cyrus-sasl2 cython + d3 d3-format darts dash dask-sphinx-theme datefudge dav1d db5.3 db-defaults dblatex dbus dbus-broker dbus-c++ dbus-glib dbus-python dconf dctrl-tools dd-plist debconf debhelper debian-archive-keyring debianutils debugedit debugpy deepdiff defcon defusedxml desktop-file-utils device-tree-compiler dh-autoreconf dh-buildinfo dh-cargo dh-elpa dh-exec dh-fortran-mod dh-golang dh-linktree dh-lisp dh-lua dh-make-perl dh-nss dh-ocaml dh-octave dh-python dh-r dh-runit dh-vim-addon dictionaries-common dietlibc diffstat diffutils dill directfb directx-headers discount disruptor dist distlib distro-info distro-info-data djvulibre dlm dnspython docbook docbook2x docbook5-xml docbook-dsssl docbook-to-man docbook-utils docbook-xml docbook-xsl docopt doctest dom4j dos2unix dose3 dot2tex dotconf double-conversion doxia doxia-sitetools dpkg # dpkg-awk draco dragonbox dsdp d-shlibs dtd-parser duktape dulwich dvipng dvisvgm dwarves dwz dxflib e2fsprogs easymock ecbuild eccodes-python eclipse-debian-helper eclipse-emf eclipse-equinox eclipse-jdt-core eclipse-jdt-debug eclipse-jdt-ui eclipse-platform-debug eclipse-platform-resources eclipse-platform-runtime eclipse-platform-team eclipse-platform-text eclipse-platform-ua eclipse-platform-ui ecmwflibs ed ehcache eigen3 el-api elementpath elfutils ell emacsen-common enchant-2 ent entrypoints epstool equinox-p2 error-prone-java eslint evolution-data-server excalibur-logkit exec-maven-plugin execnet exempi expat expect extlib extra-cmake-modules exuberant-ctags faad2 fakechroot faketime fastinfoset fastjar fcitx fdupes feedparser felix-bundlerepository felix-framework felix-gogo-runtime felix-osgi-obr felix-resolver felix-shell felix-utils fest-assert fest-test fest-util ffms2 fftw3 fig2dev file findbugs findlib findlibs findutils fiona firebird3.0 firewalld flac flake8-polyfill flask flex flit flite flit-scm fluidsynth flute fmtlib fontconfig fontforge fontmake fontmath fontparts fontpens fonts-cantarell fonts-crosextra-carlito fonts-dejavu fonts-font-awesome fonts-freefont fonts-gfs-baskerville fonts-gfs-porson fonts-inconsolata fonts-inter fonts-kacst fonts-lato fonts-liberation fonts-liberation2 fonts-linuxlibertine fonts-noto fonts-noto-cjk fonts-noto-color-emoji fonts-open-sans fonts-roboto-slab fonts-urw-base35 fonts-wqy-zenhei fonttools foreign freeglut freeipmi freerdp2 freetype freexl frei0r fribidi frozenlist fsspec ftgl funcparserlib furo fuse fuse3 fyba galera-4 game-music-emu ganymed-ssh2 gavl gawk + gcc-defaults gcc-defaults-ports gcc-mingw-w64 gcovr gcr gdal gdbm gdk-pixbuf gdk-pixbuf-xlib gdl gdmd gem2deb gengetopt genshi geocode-glib geos geronimo-annotation-1.3-spec geronimo-interceptor-3.0-spec geronimo-jacc-1.1-spec geronimo-jms-1.1-spec geronimo-jpa-2.0-spec geronimo-jta-1.2-spec geronimo-osgi-support geronimo-validation-1.1-spec gettext gf-complete gflags ghostscript ghp-import gi-docgen giflib gist git gl2ps glade glew glib2.0 glibmm2.4 glib-networking glm glpk glslang glusterfs glyphsinfo glyphslib gmp gnome-common gnome-desktop gnome-online-accounts gnome-pkg-tools gnu-efi gnulib gnuplot gnustep-base gnustep-make gnutls28 gnu-which gobject-introspection golang-1.19 golang-defaults golang-github-evanw-esbuild golang-golang-x-sys google-glog google-perftools # googletest gperf gpgme1.0 gpm gradle gradle-debian-helper graphene graphicsmagick graphite2 grep groff grpc grunt gsettings-desktop-schemas gsl gspell gssdp gst-plugins-bad1.0 gst-plugins-good1.0 gstreamer1.0 gtk+2.0 gtk+3.0 gtk-doc gtkmm2.4 gtkmm3.0 gtkspell3 gts guava-libraries guice gumbo-parser gunicorn gupnp gupnp-igd guzzle-sphinx-theme gyp gzip h5py happy harfbuzz haskell-aeson haskell-aeson-pretty haskell-aeson-qq haskell-ansi-terminal haskell-ansi-wl-pprint haskell-appar haskell-asn1-encoding haskell-asn1-parse haskell-asn1-types haskell-assoc haskell-async haskell-attoparsec haskell-base16-bytestring haskell-base64-bytestring haskell-base-compat haskell-base-compat-batteries haskell-base-orphans haskell-bifunctors haskell-blaze-builder haskell-blaze-html haskell-blaze-markup haskell-boring haskell-byteorder haskell-cabal-doctest haskell-cabal-install haskell-call-stack haskell-case-insensitive haskell-cereal haskell-chasingbottoms haskell-clock haskell-cmdargs haskell-code-page haskell-colour haskell-commonmark haskell-commonmark-extensions haskell-commonmark-pandoc haskell-comonad haskell-conduit haskell-conduit-extra haskell-connection haskell-contravariant haskell-cookie haskell-cryptohash-sha256 haskell-cryptonite haskell-data-default haskell-data-default-class haskell-data-default-instances-containers haskell-data-default-instances-dlist haskell-data-default-instances-old-locale haskell-data-fix haskell-dec haskell-devscripts haskell-diff haskell-digest haskell-distributive haskell-dlist haskell-doctemplates haskell-doctest haskell-echo haskell-ed25519 haskell-edit-distance haskell-either haskell-emojis haskell-extensible-exceptions haskell-extra haskell-fgl haskell-file-embed haskell-filemanip haskell-filepattern haskell-foldl haskell-foundation haskell-generic-deriving haskell-ghc-paths haskell-glob haskell-hackage-security haskell-haddock-library haskell-hashable haskell-heaps haskell-hostname haskell-hourglass haskell-hslua haskell-hslua-aeson haskell-hslua-classes haskell-hslua-core haskell-hslua-marshalling haskell-hslua-module-path haskell-hslua-module-system haskell-hslua-module-text haskell-hslua-module-version haskell-hslua-objectorientation haskell-hslua-packaging haskell-hspec haskell-hspec-core haskell-hspec-discover haskell-hspec-expectations haskell-hsyaml haskell-http haskell-http-client haskell-http-client-tls haskell-http-types haskell-hunit haskell-indexed-traversable haskell-indexed-traversable-instances haskell-integer-logarithms haskell-iproute haskell-ipynb haskell-jira-wiki-markup haskell-js-dgtable haskell-js-flot haskell-js-jquery haskell-juicypixels haskell-language-python haskell-lexer haskell-libyaml haskell-logging-facade haskell-logict haskell-lua haskell-lua-arbitrary haskell-lukko haskell-memory haskell-mime-types haskell-mockery haskell-monad-control haskell-monads-tf haskell-mono-traversable haskell-network haskell-network-uri haskell-old-locale haskell-old-time haskell-onetuple haskell-optparse-applicative haskell-pandoc-lua-marshal haskell-pandoc-types haskell-pem haskell-pretty-show haskell-primitive haskell-profunctors haskell-quickcheck haskell-quickcheck-instances haskell-quickcheck-io haskell-quickcheck-unicode haskell-random haskell-raw-strings-qq haskell-regex-base haskell-regex-posix haskell-regex-tdfa haskell-resolv haskell-resourcet haskell-safe haskell-scientific haskell-semialign haskell-semigroupoids haskell-semigroups haskell-setenv haskell-sha haskell-shake haskell-silently haskell-singleton-bool haskell-skylighting haskell-skylighting-core haskell-smallcheck haskell-socks haskell-some haskell-split haskell-splitmix haskell-src-exts haskell-src-meta haskell-statevar haskell-streaming-commons haskell-strict haskell-syb haskell-tagged haskell-tagsoup haskell-tar haskell-tasty haskell-tasty-expected-failure haskell-tasty-golden haskell-tasty-hunit haskell-tasty-kat haskell-tasty-lua haskell-tasty-quickcheck haskell-tasty-smallcheck haskell-temporary haskell-test-framework haskell-test-framework-hunit haskell-test-framework-quickcheck2 haskell-texmath haskell-text-conversions haskell-text-short haskell-tf-random haskell-th-abstraction haskell-th-compat haskell-these haskell-th-expand-syns haskell-th-lift haskell-th-lift-instances haskell-th-orphans haskell-th-reify-many haskell-time-compat haskell-timeit haskell-tls haskell-transformers-base haskell-transformers-compat haskell-typed-process haskell-unbounded-delays haskell-unicode-data haskell-unicode-transforms haskell-uniplate haskell-unix-compat haskell-unliftio haskell-unliftio-core haskell-utf8-string haskell-uuid-types haskell-vector haskell-vector-algorithms haskell-wcwidth haskell-witherable haskell-x509 haskell-x509-store haskell-x509-system haskell-x509-validation haskell-xcb-types haskell-xml haskell-xml-conduit haskell-xml-types haskell-yaml haskell-zip-archive haskell-zlib hatchling hatch-vcs hawtjni hdf5 heimdal help2man hfst-ospell hicolor-icon-theme highlight.js highway hiredis hostname hpsockd hscolour hspell hsqldb hsqldb1.8.0 html2text html5lib html-xml-utils httpbin httpcomponents-client httpcomponents-core httpcore http-parser httpx hunspell hwloc hypercorn hyperlink hyphen hypre ibus icoutils icu4j igerman98 ijs imath imlib2 impacket incremental indent iniparser init-system-helpers inkscape intellij-annotations intel-processor-trace intltool intltool-debian io-stringy iproute2 iptables iputils ipykernel ipython ipython-genutils ipywidgets isl iso-codes isorelax isort ispell istack-commons itstool ivy ivy-debian-helper ivyplusplus jackd2 jackrabbit jackson-annotations jackson-core jackson-databind jackson-dataformat-xml jackson-dataformat-yaml jackson-module-jaxb-annotations jakarta-activation jakarta-mail jakarta-servlet-api janest-ocaml-compiler-libs janino jansi jansi1 jansi-native jansson jaraco.classes jaraco.collections jaraco.context jaraco.text jargs jarjar jarjar-maven-plugin jatl javabeans-activation-framework javacc javacc5 javacc-maven-plugin java-comment-preprocessor java-common javahelp2 javamail javascript-common javassist javatools # java-wrappers jaxb jaxb-api jaxrpc-api jaxrs-api jbig2dec jbigkit jboss-bridger jboss-jdeparser2 jboss-logging jboss-logging-tools jboss-logmanager jboss-modules jcifs jcommander jctools jdcal jdependency jdupes jeepney jemalloc jerasure jeromq jetring jetty9 jffi jflex jformatstring jgit jinja2 jlex jline jline2 jline3 jmock jmock2 jnr-constants jnr-enxio jnr-ffi jnr-posix jnr-unixsocket jnr-x86asm joblib joda-convert jpeg-xl jq jquery-goodies jquery-tablesorter jquery-throttle-debounce jquery-typeahead.js jqueryui jquery-ui-themes jsbundle-web-interfaces jsch jsch-agent-proxy json-c json-glib jsonpickle json-schema-test-suite json-simple jsoup jsp-api jtb jtharness jtidy jtreg6 jts judy junit junit4 junit5 junixsocket jupyter-client jupyter-console jupyter-core jupyterlab-pygments jupyter-packaging jzlib karchive kauth kbookmarks kcodecs kcompletion kconfig kconfigwidgets kcoreaddons kcrash kdbusaddons kded kdoctools kernel-wedge kernsmooth keyutils kglobalaccel kguiaddons khronos-opencl-clhpp khronos-opencl-headers ki18n kiconthemes kio kitemviews kiwisolver kjobwidgets kmod knopflerfish-osgi knotifications krb5 # kronosnet kservice ktextwidgets kwallet-kf5 kwidgetsaddons kwindowsystem kxml2 kxmlgui kyua ladspa-sdk lame lapack latex2html latexmk lattice lazy-object-proxy lbfgsb lcdf-typetools lcms2 lcov leptonlib lerc less less.js leveldb lib2geom libabw libaec libaio libalgorithm-c3-perl libalgorithm-diff-perl libaliased-perl libao P libaopalliance-java libapache-poi-java libapp-cmd-perl libapp-fatpacker-perl libapt-pkg-perl libarchive libarchive-zip-perl libarray-intspan-perl libarray-unique-perl libarray-utils-perl libass libassuan libasyncns libautovivification-perl libavc1394 libavif libb2 libb64 libbase libb-cow-perl libb-debug-perl libberkeleydb-perl libb-hooks-endofscope-perl libb-hooks-op-check-perl libb-keywords-perl libbluray libboolean-perl libbpf libbs2b libbsd libbsf-java libbtm-java libbusiness-isbn-data-perl libbusiness-isbn-perl libbusiness-ismn-perl libbusiness-issn-perl libcaca libcacard libcanary-stability-perl libcanberra libcap2 libcap-ng libcapture-tiny-perl libcarp-assert-more-perl libcbor libcddb libcdio libcdio-paranoia libcdr libcgi-pm-perl libclass-accessor-perl libclass-c3-perl libclass-data-inheritable-perl libclass-inspector-perl libclass-load-perl libclass-load-xs-perl libclass-method-modifiers-perl libclass-singleton-perl libclass-tiny-perl libclass-xsaccessor-perl libclone-choose-perl libclone-perl libcloudproviders libcommons-cli-java libcommons-codec-java libcommons-collections3-java libcommons-collections4-java libcommons-compress-java libcommons-dbcp-java libcommons-digester-java libcommon-sense-perl libcommons-fileupload-java libcommons-jexl2-java libcommons-jxpath-java libcommons-lang-java libcommons-logging-java libcommons-net-java libcommons-validator-java # libconfig libconfig-autoconf-perl libconfig-auto-perl libconfig-inifiles-perl libconfig-model-backend-yaml-perl libconfig-model-dpkg-perl libconfig-model-perl libconfig-tiny-perl libconfuse libconst-fast-perl libcontextual-return-perl libconvert-binhex-perl libcpanel-json-xs-perl libcpan-meta-check-perl libcrypto++ libcue libdaemon libdata-compare-perl libdata-dpath-perl libdata-dump-perl libdata-messagepack-perl libdata-optlist-perl libdata-section-perl libdata-section-simple-perl libdata-uniqid-perl libdata-validate-domain-perl libdata-validate-ip-perl libdata-validate-uri-perl libdata-visitor-perl libdate-simple-perl libdatetime-calendar-julian-perl libdatetime-format-builder-perl libdatetime-format-mysql-perl libdatetime-format-strptime-perl libdatetime-locale-perl libdatetime-perl libdatetime-timezone-perl libdatrie libdbd-sqlite3-perl libdbi libdbi-perl libdbm-deep-perl libdbusmenu-qt libdc1394 libdca libde265 libdebian-copyright-perl libdebian-installer libdecor-0 libdeflate libdevel-callchecker-perl libdevel-checkbin-perl libdevel-checkcompiler-perl libdevel-checklib-perl libdevel-confess-perl libdevel-cover-perl libdevel-cycle-perl libdevel-declare-perl libdevel-globaldestruction-perl libdevel-mat-dumper-perl libdevel-overloadinfo-perl libdevel-partialdump-perl libdevel-size-perl libdevel-stacktrace-perl libdevel-symdump-perl libdist-checkconflicts-perl libdrm libdumbtts libdv + libdvbpsi libdvdnav libdvdread libdynaloader-functions-perl libebml libe-book libedit libemail-address-xs-perl libemf libencode-eucjpascii-perl libencode-eucjpms-perl libencode-hanextra-perl libencode-jis2k-perl libencode-locale-perl libencode-perl libeot libepoxy libepubgen liberror-perl libetonyek libev libeval-closure-perl libevdev libevent libexception-class-perl libexecs libexif libexporter-lite-perl libexporter-tiny-perl libexttextcat libextutils-cchecker-perl libextutils-config-perl libextutils-cppguess-perl libextutils-depends-perl libextutils-helpers-perl libextutils-installpaths-perl libextutils-libbuilder-perl libextutils-pkgconfig-perl libfabric libfcgi libfeature-compat-class-perl libfeature-compat-try-perl libffado libffi libfido2 libfile-basedir-perl libfile-chdir-perl libfile-copy-recursive-perl libfile-desktopentry-perl libfile-dirlist-perl libfile-find-rule-perl libfile-find-rule-perl-perl libfile-homedir-perl libfile-libmagic-perl libfile-listing-perl libfile-pushd-perl libfile-remove-perl libfile-sharedir-perl libfile-slurper-perl libfile-slurp-perl libfile-touch-perl libfile-which-perl libfixmath libfontenc libfonts-java libfont-ttf-perl libformula libfreeaptx libfreehand libftdi1 libfuture-asyncawait-perl libfuture-perl libgav1 libgc libgcrypt20 libgd2 libgdiplus libgeotiff libgetopt-argvfile-perl libgetopt-long-descriptive-perl libgit2 libgitlab-api-v4-perl libgit-wrapper-perl libglade2 libglu libglvnd libgoogle-gson-java libgpg-error libgphoto2 libgraph-perl libgsf libgsm libgtop2 libgudev libgusb + libgzstream libhamcrest-java libharu libhash-defhash-perl libhash-merge-perl libhdf4 libheap-perl libheif libhibernate3-java libhibernate-commons-annotations-java libhibernate-validator-java libhtml-form-perl libhtml-html5-entities-perl libhtml-parser-perl libhtml-tagset-perl libhtml-tokeparser-simple-perl libhtml-tree-perl libhttp-cookies-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libhttp-tiny-multipart-perl libiberty libical3 libice libid3tag libidn libidn2 libiec61883 libieee1284 libimage-exiftool-perl libimagequant libimobiledevice libimporter-perl libimport-into-perl libindirect-perl libinih libinput libinstpatch libio-async-perl libiodbc2 libio-html-perl libio-interactive-perl libio-prompter-perl libio-prompt-tiny-perl libio-pty-perl libio-socket-ssl-perl libio-string-perl libio-tiecombine-perl libipc-run3-perl libipc-run-perl libipc-system-simple-perl libiptcdata libiscsi libiterator-perl libiterator-util-perl libitext1-java libitext-java libixion libjavaewah-java libjaxen-java libjaxp1.3-java libjcip-annotations-java libjcommon-java libjdepend-java libjdom1-java libjdom2-java libjettison-java libjgroups-java libjna-java libjoda-time-java libjpeg-turbo libjs-jquery-hotkeys libjs-jquery-isonscreen libjs-jquery-timeago libjsoncpp libjson-maybexs-perl libjson-perl libjsonp-java libjson-xs-perl libjs-qunit libjsr305-java libjs-requirejs-text libjtype-java libjuniversalchardet-java libjwt libjxl-testdata libkate libkml libkryo-java libksba liblangtag liblayout liblc3 libldac liblingua-en-inflect-perl liblingua-translit-perl liblist-allutils-perl liblist-compare-perl liblist-moreutils-perl liblist-moreutils-xs-perl liblist-someutils-perl liblist-utilsby-perl libloader liblocale-gettext-perl liblocale-us-perl liblockfile liblog-any-adapter-screen-perl liblog-any-perl liblog-log4perl-perl liblouis liblqr liblrdf libltc liblwp-mediatypes-perl liblwp-protocol-https-perl liblzf libmad libmailtools-perl libmanette libmath-base85-perl libmatio libmatroska libmbim libmce-perl libmd libmetrics-any-perl libmicrohttpd libmime-charset-perl libmime-tools-perl libminlog-java libmixin-linewise-perl libmldbm-perl libmnl libmodplug libmodule-build-perl libmodule-build-tiny-perl libmodule-build-xsutil-perl libmodule-implementation-perl libmodule-install-perl libmodule-pluggable-perl libmodule-refresh-perl libmodule-runtime-conflicts-perl libmodule-runtime-perl libmodule-scandeps-perl libmojolicious-perl libmoo-perl libmoose-perl libmoox-aliases-perl libmouse-perl libmousex-nativetraits-perl libmousex-strictconstructor-perl libmpc libmpeg3 libmro-compat-perl libmspub libmtp libmwaw libmysofa libnamespace-autoclean-perl libnamespace-clean-perl libnative-platform-java libndp libnetaddr-ip-perl libnet-domain-tld-perl libnetfilter-conntrack libnet-http-perl libnet-ipv6addr-perl libnet-netmask-perl libnet-smtp-ssl-perl libnet-ssleay-perl libnfnetlink libnfs libnftnl libnice libnl3 libnotify libnsl libnumber-compare-perl libnumbertext liboauth libobject-pad-perl libodfgen libogg liboggz libomxil-bellagio libonig libopencsd libopenmpt liborcus liboro-java libotf libpackage-deprecationmanager-perl libpackage-stash-perl libpackage-stash-xs-perl libpadwalker-perl libpagemaker libpaper libparams-classify-perl libparams-coerce-perl libparams-util-perl libparams-validate-perl libparams-validationcompiler-perl libparanamer-java libparse-debcontrol-perl libparse-recdescent-perl libparse-yapp-perl libpath-class-perl libpath-iterator-rule-perl libpath-tiny-perl libpcap libpciaccess libpdf-api2-perl libpdfbox2-java libpdfbox-java libpdfrenderer-java libperl4-corelibs-perl libperl-critic-community-perl libperl-critic-perl libperl-critic-policy-variables-prohibitlooponhash-perl libperl-critic-pulp-perl libperlio-gzip-perl libperlio-utf8-strict-perl libperl-minimumversion-perl libpfm4 libpgm libphonenumber libpipeline libpixie-java libplacebo libplist libpng1.6 libpod-constants-perl libpod-coverage-perl libpod-coverage-trustpod-perl libpod-eventual-perl libpod-minimumversion-perl libpod-parser-perl libpod-pom-perl libpod-pom-view-restructured-perl libpod-spell-perl libppi-perl libppix-quotelike-perl libppix-regexp-perl libppix-utilities-perl libppix-utils-perl libproc-processtable-perl libproxool-java libproxy libpsl libpsm2 libpthread-stubs libqb libqmi libqrtr-glib libqxp librabbitmq libraw libraw1394 libreadonly-perl libre-engine-re2-perl libreflectasm-java libref-util-perl libregexp-common-perl libregexp-ipv6-perl libregexp-java libregexp-pattern-defhash-perl libregexp-pattern-license-perl libregexp-pattern-perl libregexp-wildcards-perl librelaxng-datatype-java libreoffice # libreplaygain librepository librest librevenge librist librole-tiny-perl librsvg librsync librttopo libsamplerate libsass libsass-python libsaxon-java libscope-guard-perl libsdl2 libseccomp libsecret libselinux libsemanage libsepol libsereal-decoder-perl libsereal-encoder-perl libsereal-perl libserializer libset-intspan-perl libset-object-perl libset-scalar-perl libsgmls-perl libshout libsigc++-2.0 libsigsegv libslf4j-java libslirp libsm libsndfile libsocket6-perl libsodium libsoftware-licensemoreutils-perl libsoftware-license-perl libsort-key-perl libsort-versions-perl libsoup2.4 libsoup3 libsoxr libspatialaudio libspecio-perl libspectre libspiro libspring-java libsrtp2 libssh libssh2 libstaroffice libstatgrab libstax2-api-java libstax-java libstb libstrictures-perl libstring-copyright-perl libstring-escape-perl libstring-format-perl libstring-license-perl libstring-rewriteprefix-perl libstring-shellquote-perl libstring-trim-more-perl libstruct-dumb-perl libsub-exporter-perl libsub-exporter-progressive-perl libsub-identify-perl libsub-info-perl libsub-install-perl libsub-name-perl libsub-override-perl libsub-quote-perl libsub-uplevel-perl libsuper-perl libsvm libswarmcache-java libswitch-perl libsyntax-keyword-dynamically-perl libsyntax-keyword-match-perl libsyntax-keyword-multisub-perl libsyntax-keyword-try-perl libtaint-runtime-perl libtask-weaken-perl libtasn1-6 libteam libtemplate-perl libterm-readkey-perl libterm-table-perl libterralib libtest2-suite-perl libtest2-tools-command-perl libtest-cleannamespaces-perl libtest-cpan-meta-perl libtest-deep-perl libtest-differences-perl libtest-exception-perl libtest-failwarnings-perl libtest-fatal-perl libtest-filename-perl libtest-leaktrace-perl libtest-longstring-perl libtest-memory-cycle-perl libtest-metrics-any-perl libtest-minimumversion-perl libtest-mockrandom-perl libtest-needs-perl libtest-number-delta-perl libtest-output-perl libtest-perl-critic-perl libtest-pod-coverage-perl libtest-pod-perl libtest-refcount-perl libtest-regexp-pattern-perl libtest-requires-perl libtest-spelling-perl libtest-strict-perl libtest-synopsis-perl libtest-taint-perl libtest-warnings-perl libtest-warn-perl libtest-without-module-perl libtext-autoformat-perl libtext-bibtex-perl libtext-charwidth-perl libtext-csv-perl libtext-csv-xs-perl libtext-diff-perl libtext-glob-perl libtext-hogan-perl libtext-iconv-perl libtext-levenshtein-damerau-perl libtext-levenshteinxs-perl libtext-markdown-discount-perl libtext-reform-perl libtext-roman-perl libtext-template-perl libtext-trim-perl libtext-unidecode-perl libtextwrap libtext-wrapi18n-perl libtext-xslate-perl libthai libtheora libtie-cycle-perl libtie-ixhash-perl libtie-toobject-perl libtimedate-perl libtime-duration-perl libtime-moment-perl libtirpc libtoml-tiny-perl libtommath libtool libtraceevent libtracefs libtruth-java libtry-tiny-perl libtypes-serialiser-perl libtype-tiny-perl libudfread libunicode-linebreak-perl libunicode-utf8-perl libunistring libunwind liburcu liburing liburi-perl libusb libusb-1.0 libusbmuxd libutempter libuv1 libva libvariable-magic-perl libvdpau libverto libvidstab libvisio libvisual libvncserver libvoikko libvorbis libvpx libwacom libwant-perl libwebp libwmf libwnck3 libwoodstox-java libwpd libwpe libwpg libwps libwww-curl-perl libwww-curl-simple-perl libwww-mechanize-perl libwww-perl libwww-robotrules-perl libx11 libxalan2-java libxau libxaw libxbean-java libxcb libxcomposite libxcrypt libxcursor libxcvt libxdamage libxdmcp libxerces2-java libxext libxfce4ui libxfce4util libxfixes libxfont libxi libxinerama libxkbcommon libxkbfile libxml2 libxml++2.6 libxml-commons-resolver1.1-java libxml-dom-perl libxml-java libxml-libxml-perl libxml-libxml-simple-perl libxml-libxslt-perl libxml-namespacesupport-perl libxml-parser-perl libxml-perl libxml-regexp-perl libxml-sax-base-perl libxml-sax-expat-perl libxml-sax-perl libxml-security-java libxml-simple-perl libxmltok libxml-writer-perl libxmu libxpm libxpp2-java libxpp3-java libxpresent libxrandr libxrender libxres libxshmfence libxslt libxs-parse-keyword-perl libxs-parse-sublike-perl libxss libxstream-java libxstring-perl libxt libxtst libxv libxxf86vm libyaml libyaml-libyaml-perl libyaml-perl libyaml-pp-perl libyaml-tiny-perl libyuv libzip libzmf libzstd licensecheck lightcouch lilv linkify-it-py links2 lintian linux-atm linux-base linuxdoc-tools litehtml lksctp-tools llvm-defaults llvm-toolchain-13 llvm-toolchain-14 llvm-toolchain-15 lmdb lmodern lm-sensors localehelper locket log4shib logback logilab-common lombok-patcher lp-solve lsb-release-minimal lsof ltrace lua5.1 lua5.2 lua5.3 lua5.4 lua-bitop lua-cjson lumino lutok lv2 lvm2 lwt lxml lyx lz4 lzlib lzo2 lzop m17n-db m17n-lib m4 mailcap mako man2html man-db mariadb marisa markdown markdown-it-py markupsafe mat2 mathjax matplotlib matplotlib-inline maven maven-ant-helper maven-antrun-plugin maven-archiver maven-artifact-transfer maven-assembly-plugin maven-bundle-plugin maven-clean-plugin maven-common-artifact-filters maven-compiler-plugin maven-debian-helper maven-dependency-analyzer maven-dependency-plugin maven-dependency-tree maven-deploy-plugin maven-doxia-tools maven-enforcer maven-file-management maven-filtering maven-install-plugin maven-invoker maven-invoker-plugin maven-jar-plugin maven-javadoc-plugin maven-jaxb2-plugin maven-mapping maven-parent maven-plugin-testing maven-plugin-tools maven-processor-plugin maven-replacer-plugin maven-repo-helper maven-reporting-api maven-reporting-exec maven-reporting-impl maven-repository-builder maven-resolver maven-resources-plugin maven-scm maven-script-interpreter maven-shade-plugin maven-shared-incremental maven-shared-io maven-shared-utils maven-site-plugin maven-source-plugin maven-war-plugin mawk mbedtls md4c mdds mdit-py-plugins mdocml mdurl media-types memcached mercurial mergedeep mesa meson meson-python metis mgcv mhash mime-support mingw-w64 mini-soong minizip miscfiles mistune mitmproxy mjpegtools mkdocs-nature mockito modello modello-maven-plugin modemmanager modernizr mojo-executor mongo-java-driver more-itertools motif mozilla-devscripts mozjs102 mpack mpclib3 mpeg2dec mpfr4 mpg123 mpi4py mpi-defaults mpmath msgpack-c msgpack-cxx msv mtdev mumps munge-maven-plugin mustache.js mutagen mutatormath mysql-defaults myst-parser mythes nas nasm nbclient + nbformat ncurses ndctl nekohtml neon27 netbase netcat-openbsd netcdf netcdf4-python netcdf-cxx-legacy netpbm-free net-snmp nettle net-tools netty netty-tcnative network-manager newt nftables nghttp2 ninja-build nlme nlohmann-json3 nltk node-abab node-abbrev node-abstract-leveldown node-accepts node-after node-agent-base node-ajv node-ajv-keywords node-ampproject-remapping node-ansi-colors node-ansi-escapes node-ansi-font node-ansi-regex node-ansi-styles node-anymatch node-any-promise node-aproba node-archy node-are-we-there-yet node-arg node-argparse node-array-differ node-array-find-index node-array-flatten node-array-from node-array-union node-array-uniq node-arr-diff node-arr-flatten node-arrify node-arr-union node-asap node-asn1.js node-assert node-assertion-error node-assume node-ast-types node-async node-async-each node-asynckit node-auto-bind node-autoprefixer node-ava node-axios node-babel7 node-babel-loader node-babel-plugin-add-module-exports node-babel-plugin-lodash node-babel-polyfills node-babylon node-balanced-match node-base node-base64-js node-basic-auth node-basic-auth-parser node-big.js node-binary-extensions node-bindings node-bluebird node-blueimp-md5 node-bn.js node-body-parser node-boolbase node-bootstrap-tour node-brace-expansion node-braces node-brfs node-brorand node-browserify node-browserify-aes node-browserify-cipher node-browserify-des node-browserify-lite node-browserify-rsa node-browserify-sign node-browserify-zlib node-browser-pack node-browser-resolve node-browserslist node-browser-stdout node-browser-unpack node-buble node-buf-compare node-buffer node-buffer-equal node-bufferjs node-buffer-xor node-builtin-modules node-builtins node-builtin-status-codes node-busboy node-bytes node-cacache node-cache-base node-cached-path-relative node-callback-stream node-caller node-camelcase node-caniuse-db node-caniuse-lite node-cbor node-chai node-chai-as-promised node-chainsaw node-chalk node-check-error node-cheerio node-chokidar node-chownr node-chrome-trace-event node-ci-info node-cipher-base node-cjs-module-lexer node-cjson node-clean-css node-clean-yaml-object node-cli-boxes node-cli-cursor node-clipboard node-cli-spinners node-cli-table node-cli-truncate node-cliui node-cli-width node-clone node-cloneable-readable node-clone-buffer node-clone-deep node-clone-stats node-co node-coffeeify node-collection-visit node-color-convert node-color-name node-columnify node-combined-stream node-combine-source-map # node-commander node-commondir node-compare-versions node-component-emitter node-concat-stream node-concat-with-sourcemaps node-concordance node-config-chain node-console-browserify node-console-control-strings node-console-group node-consolidate node-constants-browserify node-content-disposition node-content-type node-convert-source-map + node-cookie node-cookiejar node-cookie-parser node-cookies node-cookie-signature node-copy-concurrently node-core-js node-core-util-is node-cosmiconfig node-coveralls node-create-ecdh node-create-hash node-create-hmac node-create-require node-crypto-browserify node-crypto-random-string node-css node-css-loader node-cssom node-css-select node-css-selector-tokenizer node-cssstyle node-csstype node-css-what node-currently-unhandled node-cyclist node-d node-d3-queue node-data-uri-to-buffer node-dateformat node-date-time node-debbundle-es-to-primitive node-debbundle-insert-module-globals node-debug node-debug-fabulous node-decamelize node-decompress-response node-deep-eql node-deep-equal node-deep-for-each node-deep-is node-deepmerge node-defaults node-defined node-define-properties node-define-property node-del node-delayed-stream node-delegates node-depd node-deps-sort node-des.js node-detect-file node-detective node-detect-newline node-diff node-doctrine node-domain-browser node-domelementtype node-domhandler node-domino node-dom-serializer node-domutils node-dot node-dot-prop node-duplexer node-duplexer3 node-duplexify node-ebnf-parser node-ejs node-electron-to-chromium node-elliptic node-emittery node-emojis-list node-encodeurl node-encoding node-end-of-stream node-enhanced-resolve node-entities node-err-code node-errno node-error-ex node-es5-ext node-es6-error node-es6-iterator node-es6-map node-es6-promise node-es6-set node-es6-shim node-es6-symbol node-es6-weak-map node-es-abstract node-escape-html node-escape-string-regexp node-escodegen node-escope node-eslint-plugin-es node-eslint-plugin-eslint-plugin node-eslint-plugin-node node-eslint-scope node-eslint-utils node-eslint-visitor-keys node-es-module-lexer node-espree node-esprima node-esprima-fb node-esquery node-esrecurse node-estraverse node-estree-walker node-esutils # node-etag node-event-emitter node-eventemitter2 node-eventemitter3 node-events node-everything.js node-evp-bytestokey node-execa node-exit node-expand-tilde node-expect.js node-express node-extend node-extend-shallow node-external-editor node-falafel node-fancy-log node-fast-deep-equal node-fast-levenshtein node-fast-safe-stringify node-fbjs node-fetch node-file-entry-cache node-file-loader node-filesize node-file-sync-cmp node-fill-range node-finalhandler node-find-cache-dir node-find-up node-findup-sync node-fined node-flatted node-flow-remove-types node-flush-write-stream node-fn-name node-follow-redirects node-foreground-child node-for-in node-form-data node-formidable node-for-own node-fresh node-from2 node-fs-exists-sync node-fs-extra node-fs-readdir-recursive node-fs.realpath node-fs-write-stream-atomic node-functional-red-black-tree node-function-bind + node-gauge node-get-caller-file node-get-func-name node-getobject node-get-stdin node-get-stream node-gettext-parser node-get-value node-glob node-global-modules node-global-prefix node-globals node-globby node-glob-parent node-glob-stream node-glogg node-got node-graceful-fs node-graphlibrary node-growl node-grunt-babel node-grunt-cli node-grunt-contrib-clean node-grunt-contrib-concat node-grunt-contrib-copy node-grunt-contrib-internal node-grunt-contrib-nodeunit node-grunt-contrib-requirejs node-grunt-contrib-uglify node-grunt-known-options node-grunt-legacy-log node-grunt-legacy-log-utils node-grunt-legacy-util node-gulp node-gulp-babel node-gulp-concat node-gulp-flatten node-gulplog node-gulp-newer node-gulp-plumber node-gulp-rename node-gulp-sourcemaps node-gyp node-gzip-size node-handlebars node-has-ansi node-has-flag node-hash-base node-hashish node-hash.js node-hash-test-vectors node-has-unicode node-has-value node-has-values node-he node-hmac-drbg node-hooker node-hook-std node-hosted-git-info node-html5shiv node-htmlescape node-htmlparser2 node-http-errors node-http-proxy node-https-browserify node-https-proxy-agent node-iconv node-iconv-lite node-icss-utils node-ieee754 node-iferr node-ignore node-ignore-by-default node-immediate node-immutable node-imurmurhash node-indent-string node-inflight node-inherits node-ini node-inline-source-map node-inquirer node-interpret node-invariant node-ip node-ipaddr.js node-ip-regex node-irregular-plurals node-isarray node-is-arrayish node-is-binary-path node-is-buffer node-is-builtin-module node-is-descriptor node-is-directory node-isexe node-is-extendable node-is-extglob node-is-generator-fn node-is-glob node-is-module node-is-negated-glob node-is-node node-is-number node-is-obj node-is-object node-isobject node-isomorphic-fetch node-is-path-cwd node-is-path-inside node-is-plain-obj node-is-plain-object node-is-primitive node-is-promise node-is-reference node-is-stream node-isstream node-istanbul node-is-typedarray node-is-unc-path node-is-valid-glob node-is-windows node-jake node-jasmine node-jed node-jest node-jison node-jison-lex node-jju node-jquery node-jquery-mousewheel node-js-beautify node-jschardet node-jsdom node-jsesc node-json5 # node-json-buffer node-jsonfile node-jsonify node-jsonparse node-json-parse-better-errors node-json-parse-helpfulerror node-json-schema node-json-schema-traverse node-jsonselect node-json-stable-stringify node-jsonstream node-json-stringify-safe node-js-tokens node-js-yaml node-kew node-keygrip node-kind-of node-klaw node-labeled-stream-splicer node-lazystream node-lcov-parse node-leveldown node-leven node-levn node-lex-parser node-libs-browser node-lie node-liftoff node-livescript node-loader-runner node-loader-utils node-load-grunt-tasks node-load-json-file node-locate-character node-locate-path node-lodash node-log4js node-log-driver node-loose-envify node-lowercase-keys node-lru-cache node-lunr node-magic-string node-make-dir node-make-error node-map-cache node-map-visit node-marked node-marked-man node-matcher node-md5-hex node-md5.js node-md5-o-matic node-mdn-browser-compat-data node-mdn-data node-media-typer node-mem node-memfs node-memory-fs node-merge-descriptors node-merge-stream node-methods node-micromatch node-mime node-mime-types node-mimic-fn node-mimic-response node-minimalistic-crypto-utils node-minimatch node-minimist node-minipass node-mississippi node-mixin-deep node-mkdirp node-mkdirp-classic node-module-deps node-moment node-morgan node-move-concurrently node-ms node-multimatch node-mutate-fs node-mute-stream node-mysticatea-eslint-plugin node-mz node-n3 node-nan node-ncp node-negotiator node-neo-async node-nock node-nodeunit node-nomnom node-nopt node-normalize.css node-normalize-package-data node-normalize-path node-normalize-range node-npm-bundled node-npmlog node-npm-package-arg node-npm-run-path node-nth-check node-object-assign node-object-inspect node-object-path node-object-visit node-once node-on-finished node-on-headers node-opener node-optimist node-optionator node-ordered-read-streams node-os-browserify node-osenv node-os-tmpdir node-output-file-sync node-package-preamble node-pako node-parallel-transform node-parents node-parse5 node-parse-asn1 node-parse-base64vlq-mappings node-parse-filepath node-parse-json node-parse-ms node-parseurl node-pascalcase node-path-browserify node-path-dirname node-path-exists node-path-is-absolute node-path-is-inside node-path-root node-path-root-regex node-path-to-regexp node-path-type node-pathval node-pbkdf2 node-p-cancelable node-pend node-p-finally node-picocolors node-pify node-pinkie node-pinkie-promise node-p-is-promise node-pkg-dir node-pkg-up node-p-locate node-plugin-error node-plur node-p-map node-po2json node-postcss node-postcss-cli node-postcss-load-config node-postcss-modules-extract-imports node-postcss-modules-values node-postcss-reporter node-postcss-value-parser node-prelude-ls node-pretty-bytes node-pretty-hrtime node-pretty-ms node-private node-process node-process-nextick-args node-progress node-promise node-promise-inflight node-promise-retry node-prompts node-promzard node-propagate node-propget node-prop-types node-proto-list node-proxy node-proxy-addr node-proxy-from-env node-proxyquire node-prr node-pruddy-error node-pseudorandombytes node-p-timeout node-public-encrypt node-pump node-pumpify node-punycode node-q node-qs node-querystring node-querystring-es3 node-quick-lru node-quote-stream node-ramda node-random-bytes node-randombytes node-randomfill node-range-parser node-raw-body node-react node-read node-readable-stream node-readdirp node-read-only-stream node-read-package-json node-read-pkg node-read-pkg-up node-recast node-rechoir node-regenerate node-regenerate-unicode-properties node-regenerator node-regex-not node-regexpp node-regexpu-core node-regjsgen node-regjsparser # node-remove-trailing-separator node-repeat-string node-replace-ext node-require-dir node-require-directory node-require-inject node-requires-port node-resolve node-resolve-cwd node-resolve-dir node-resolve-from node-resolve-pkg node-restore-cursor node-resumer node-retape node-retry node-rimraf node-ripemd160 node-rollup node-rollup-plugin-alias node-rollup-plugin-babel node-rollup-plugin-buble node-rollup-plugin-commonjs node-rollup-plugin-inject node-rollup-plugin-json node-rollup-plugin-node-resolve node-rollup-plugin-replace node-rollup-plugin-sourcemaps node-rollup-plugin-string node-rollup-plugin-terser node-rollup-plugin-typescript node-rollup-plugin-typescript2 node-rollup-pluginutils node-run-async node-run-queue node-rx node-safe-buffer node-sane node-schema-utils node-seedrandom node-sellside-emitter node-semver node-send node-seq node-serialize-javascript node-serve-static node-set-blocking node-setimmediate node-set-immediate-shim node-setprototypeof node-set-value node-sha.js node-shasum node-shebang-command node-shebang-regex node-shelljs node-shell-quote node-sigmund node-signal-exit node-sinclair-typebox node-sinon-chai node-slash node-slice-ansi node-socket.io-parser node-source-list-map node-source-map node-sourcemap-codec node-source-map-resolve node-source-map-support node-sparkles node-spdx-correct node-spdx-exceptions node-spdx-expression-parse node-spdx-license-ids node-split node-split2 node-split-string node-sprintf-js node-ssri node-stack-trace node-stack-utils node-static-eval node-static-module node-statuses node-stealthy-require node-stream-array node-stream-assert node-stream-browserify node-stream-combiner2 node-stream-each node-stream-http node-stream-shift node-stream-splicer node-string-decoder node-string-width node-strip-ansi node-strip-bom node-strip-eof node-strip-json-comments node-style-loader node-subarg node-superagent node-supertest # node-supports-color node-syntax-error node-tacks node-tap node-tapable node-tape node-tap-mocha-reporter node-tap-parser node-tar-fs node-tar-stream node-temp node-terser node-test node-text-encoding node-text-table node-thenby node-thenify node-thenify-all node-through node-through2 node-through2-filter node-timers-browserify node-time-stamp node-time-zone node-tinycolor node-tmatch node-tmp node-to-absolute-glob node-to-arraybuffer node-to-fast-properties node-toidentifier node-to-regex node-to-regex-range node-tough-cookie node-traverse node-ts-jest node-tslib node-tty-browserify node-turbolinks node-turndown node-type-check node-typedarray node-typedarray-to-buffer node-type-detect node-type-is node-typescript node-ua-parser-js node-uid-safe node-umd node-unc-path-regex node-undici node-unicode-canonical-property-names-ecmascript node-unicode-data node-unicode-loose-match node-unicode-match-property-ecmascript node-unicode-match-property-value-ecmascript node-unicode-property-aliases node-unicode-property-aliases-ecmascript node-unicode-property-value-aliases node-unicode-property-value-aliases-ecmascript node-union-value node-unique-filename node-unique-stream node-unique-string node-universalify node-unpipe node-unset-value node-uri-js node-uri-path node-url node-url-loader node-util node-util-deprecate node-utils-merge node-uuid node-uvu node-v8-compile-cache node-validate-npm-package-license node-validate-npm-package-name node-vary node-vhost node-vinyl node-vinyl-fs node-vinyl-sourcemaps-apply node-vlq node-vm-browserify node-watchpack node-wcwidth.js node-webpack node-webpack-merge node-webpack-sources node-whatwg-fetch node-when node-which node-wide-align node-widest-line node-wordwrap node-wrap-ansi node-wrappy node-write-file-atomic node-write-file-promise node-ws node-ws-iconv node-xml2js node-xtend node-xterm node-y18n node-yallist node-yaml node-yargs node-yargs-parser node-yarn-tool-resolve-package node-yn node-zx norm nose nose2 nototools npm npth nss-pem nss-wrapper numactl numexpr numpydoc nv-codec-headers nvptx-tools oath-toolkit objenesis objgraph ocaml ocaml-astring ocaml-base64 ocaml-bigarray-compat ocamlbuild ocaml-csexp ocaml-ctypes ocaml-fmt ocaml-fpath ocamlgraph ocaml-graphics ocaml-integers ocaml-mccs ocaml-migrate-parsetree ocaml-mmap ocaml-odoc ocaml-odoc-parser ocaml-re ocaml-result ocaml-sexplib0 ocaml-topkg ocl-icd ocplib-endian octave-control octave-signal ogdi-dfsg olefile onetbb opam opam-file-format openal-soft opencc opencore-amr opencv openexr openh264 openhpi openipmi openjade openjdk-17 openjpeg2 openmpi openni2 openpyxl opensc openslide opensp openssh openssl + openstack-pkg-tools opentest4j opentest4j-reporting optipng opus orc oscache osgi-annotation osgi-compendium osgi-core osgi-foundation-ee ounit p11-kit pacemaker package-notes pam pandas # pandoc pango1.0 pangomm papyrus paramiko parmap parso partd paste pastedeploy pastel patch patchelf patchutils path.py patsy pcapy pcaudiolib pci.ids pciutils pcre2 pcre3 pcsc-lite pegjs pentaho-reporting-flow-engine pep517 pep8 pep8-naming perl-openssl-defaults perltidy phonon php-defaults php-pear pickleshare picocli pigz pikepdf pillow pipewire pixman pkgconf pkg-js-tools pkg-kde-tools pkg-php-tools plasma-wayland-protocols platformdirs plexus-ant-factory plexus-archiver plexus-bsh-factory plexus-build-api plexus-cipher plexus-classworlds plexus-cli plexus-compiler plexus-containers plexus-i18n plexus-interactivity-api plexus-interpolation plexus-io plexus-languages ple | 2026-01-13T09:30:28 |
http://hackage.haskell.org/package/semigroupoids-5.2.1 | semigroupoids: Semigroupoids: Category sans id Hackage :: [Package] Search Browse What's new Upload User accounts semigroupoids : Semigroupoids: Category sans id [ bsd2 , comonads , control , library ] [ Propose Tags ] [ Report a vulnerability ] Provides a wide array of (semi)groupoids and operations for working with them. A Semigroupoid is a Category without the requirement of identity arrows for every object in the category. A Category is any Semigroupoid for which the Yoneda lemma holds. When working with comonads you often have the <*> portion of an Applicative , but not the pure . This was captured in Uustalu and Vene's "Essence of Dataflow Programming" in the form of the ComonadZip class in the days before Applicative . Apply provides a weaker invariant, but for the comonads used for data flow programming (found in the streams package), this invariant is preserved. Applicative function composition forms a semigroupoid. Similarly many structures are nearly a comonad, but not quite, for instance lists provide a reasonable extend operation in the form of tails , but do not always contain a value. Ideally the following relationships would hold: Foldable ----> Traversable <--- Functor ------> Alt ---------> Plus Semigroupoid | | | | | v v v v v Foldable1 ---> Traversable1 Apply --------> Applicative -> Alternative Category | | | | v v v v Bind ---------> Monad -------> MonadPlus Arrow Apply, Bind, and Extend (not shown) give rise the Static, Kleisli and Cokleisli semigroupoids respectively. This lets us remove many of the restrictions from various monad transformers as in many cases the binding operation or <*> operation does not require them. Finally, to work with these weaker structures it is beneficial to have containers that can provide stronger guarantees about their contents, so versions of Traversable and Foldable that can be folded with just a Semigroup are added. [ Skip to Readme ] Modules [ Index ] Data Bifunctor Data.Bifunctor.Apply Functor Data.Functor.Alt Data.Functor.Apply Data.Functor.Bind Data.Functor.Bind.Class Data.Functor.Bind.Trans Data.Functor.Extend Data.Functor.Plus Data.Groupoid Data.Isomorphism Semigroup Data.Semigroup.Bifoldable Data.Semigroup.Bitraversable Data.Semigroup.Foldable Data.Semigroup.Foldable.Class Data.Semigroup.Traversable Data.Semigroup.Traversable.Class Data.Semigroupoid Data.Semigroupoid.Dual Data.Semigroupoid.Ob Data.Semigroupoid.Static Traversable Data.Traversable.Instances Flags Manual Flags Name Description Default containers You can disable the use of the containers package using `-f-containers`. Disabing this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. Enabled contravariant You can disable the use of the contravariant package using `-f-contravariant`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. If disabled we will not supply instances of Contravariant Enabled distributive You can disable the use of the distributive package using `-f-distributive`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. If disabled we will not supply instances of Distributive Enabled doctests You can disable testing with doctests using `-f-doctests`. Enabled comonad You can disable the use of the comonad package using `-f-comonad`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. If disabled we will not supply instances of Comonad Enabled tagged You can disable the use of the tagged package using `-f-tagged`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. Enabled unordered-containers You can disable the use of the `unordered-containers` package (and also its dependency hashable ) using `-f-unordered-containers`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. Enabled Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info Downloads semigroupoids-5.2.1.tar.gz [ browse ] (Cabal source package) Package description ( revised from the package) Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'. Maintainer's Corner Package maintainers EdwardKmett , EricMertens , ryanglscott For package maintainers and hackage trustees edit package information Candidates 5.2.1 Versions [ RSS ] 1.0.0 , 1.1.0 , 1.1.1 , 1.1.2 , 1.1.3 , 1.2.0 , 1.2.1 , 1.2.2 , 1.2.2.1 , 1.2.2.2 , 1.2.2.3 , 1.2.2.4 , 1.2.4 , 1.2.5 , 1.2.6 , 1.2.6.1 , 1.2.6.2 , 1.3 , 1.3.1 , 1.3.1.1 , 1.3.1.2 , 1.3.2 , 1.3.2.1 , 1.3.3 , 1.3.4 , 3.0 , 3.0.0.1 , 3.0.0.2 , 3.0.1 , 3.0.2 , 3.0.3 , 3.1 , 4.0 , 4.0.1 , 4.0.2 , 4.0.2.1 , 4.0.3 , 4.0.4 , 4.2 , 4.3 , 4.5 , 5 , 5.0.0.1 , 5.0.0.2 , 5.0.0.3 , 5.0.0.4 , 5.0.1 , 5.1 , 5.2 , 5.2.1 , 5.2.2 , 5.3 , 5.3.1 , 5.3.2 , 5.3.3 , 5.3.4 , 5.3.5 , 5.3.6 , 5.3.7 , 6 , 6.0.0.1 , 6.0.1 , 6.0.2 ( info ) Change log CHANGELOG.markdown Dependencies base (>=4.3 && <4.11) , base-orphans (>=0.5.4 && <1) , bifunctors (>=5 && <6) , comonad (>=4.2.6 && <6) , containers (>=0.3 && <0.6) , contravariant (>=0.2.0.1 && <2) , distributive (>=0.2.2 && <1) , generic-deriving (>=1.11 && <1.13) , ghc-prim , hashable (>=1.1 && <1.3) , semigroups (>=0.8.3.1 && <1) , tagged (>=0.8.5 && <1) , transformers (>=0.2 && <0.6) , transformers-compat (>=0.5 && <0.6) , unordered-containers (>=0.2 && <0.3) [ details ] Tested with ghc ==7.4.2, ghc ==7.6.3, ghc ==7.8.4, ghc ==7.10.3, ghc ==8.0.2, ghc ==8.2.1 License BSD-3-Clause Copyright Copyright (C) 2011-2015 Edward A. Kmett Author Edward A. Kmett Maintainer Edward A. Kmett <ekmett@gmail.com> Uploaded by ryanglscott at 2017-07-28T21:03:54Z Revised Revision 5 made by ryanglscott at 2019-05-08T13:17:17Z Stability provisional --> Category Control , Comonads Home page http://github.com/ekmett/semigroupoids Bug tracker http://github.com/ekmett/semigroupoids/issues Source repo head: git clone git://github.com/ekmett/semigroupoids.git Distributions Arch: 6.0.1 , Debian: 5.3.4 , Fedora: 6.0.1 , FreeBSD: 5.0.0.3 , LTSHaskell: 6.0.1 , NixOS: 6.0.1 , Stackage: 6.0.2 , openSUSE: 6.0.1 Reverse Dependencies 216 direct, 9047 indirect [ details ] Downloads 309284 total (292 in the last 30 days) Rating 2.5 (votes: 9) [estimated by Bayesian average ] Your Rating λ λ λ Status Docs available [ build log ] Last success reported on 2017-07-28 [ all 1 reports ] Readme for semigroupoids-5.2.1 [ back to package description ] semigroupoids A semigroupoid is a Category without id . Contact Information Contributions and bug reports are welcome! Please feel free to contact me through github or on the #haskell IRC channel on irc.freenode.net. -Edward Kmett Produced by hackage and Cabal 3.16.1.0. | 2026-01-13T09:30:28 |
https://pt-br.facebook.com/login/?next=https%3A%2F%2Fl.facebook.com%2Fl.php%3Fu%3Dhttps%253A%252F%252Fwww.instagram.com%252F%26amp%253Bh%3DAT0f7mNL_a3czBRxj5oEEAbuyPqzmstjfJwLfSHwF6_D3Lu0faGCrzyUQo8B3hC5IemgFXwltPfLtsIIq0A5SXyEIYMxe89sBldeFpXK2PiDDHQ-jTrujxRZkg-jTnyUN9NQiBQaOZhfDrJ5vUXUcCCePEv83g | Facebook Facebook Email ou telefone Senha Esqueceu a conta? Criar nova conta Você está bloqueado temporariamente Você está bloqueado temporariamente Parece que você estava usando este recurso de forma indevida. Bloqueamos temporariamente sua capacidade de usar o recurso. Back Português (Brasil) 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 中文(简体) 日本語 Français (France) Deutsch Cadastre-se Entrar Messenger Facebook Lite Vídeo Meta Pay Meta Store Meta Quest Ray-Ban Meta Meta AI Mais conteúdo da Meta AI Instagram Threads Central de Informações de Votação Política de Privacidade Central de Privacidade Sobre Criar anúncio Criar Página Desenvolvedores Carreiras Cookies Escolhas para anúncios Termos Ajuda Upload de contatos e não usuários Configurações Registro de atividades Meta © 2026 | 2026-01-13T09:30:28 |
https://yarnpkg.com/configuration/yarnrc | Settings (.yarnrc.yml) | Yarn Skip to main content Yarn Get Started Features CLI Configuration Advanced Blog API master (4.12.0-dev) master (4.12.0-dev) 3.8.7 1.22.22 Discord GitHub Search Manifest (package.json) Settings (.yarnrc.yml) Settings (.yarnrc.yml) Settings (.yarnrc.yml) Yarnrc files (named this way because they must be called .yarnrc.yml ) are the one place where you'll be able to configure Yarn's internal settings. While Yarn will automatically find them in the parent directories, they should usually be kept at the root of your project (often your repository). Starting from the v2, they must be written in valid Yaml and have the right extension (simply calling your file .yarnrc won't do). Environment variables can be accessed from setting definitions by using the ${NAME} syntax when defining the values. By default Yarn will require the variables to be present, but this can be turned off by using either ${NAME-fallback} (which will return fallback if NAME isn't set) or ${NAME:-fallback} (which will return fallback if NAME isn't set, or is an empty string). Finally, note that most settings can also be defined through environment variables (at least for the simpler ones; arrays and objects aren't supported yet). To do this, just prefix the names and write them in snake case: YARN_CACHE_FOLDER will set the cache folder (such values will overwrite any that might have been defined in the RC files - use them sparingly). cacheFolder Path where the downloaded packages are stored on your system. They'll be normalized, compressed, and saved under the form of zip archives with standardized names. The cache is deemed to be relatively safe to be shared by multiple projects, even when multiple Yarn instances run at the same time on different projects. For setting a global cache folder, you should use enableGlobalCache instead. cacheFolder : "./.yarn/cache" , cacheMigrationMode Behavior that Yarn should follow when it detects that a cache entry is outdated. Whether or not a cache entry is outdated depends on whether it has been built and checksumed by an earlier release of Yarn, or under a different compression settings. Possible behaviors are: If required-only , it'll keep using the file as-is, unless the version that generated it was decidedly too old. If match-spec , it'll also rebuild the file if the compression level has changed. If always (the default), it'll always regenerate the cache files so they use the current cache version. cacheMigrationMode : "required-only" | "match-spec" | "always" , changesetBaseRefs List of git refs against which Yarn will compare your branch when it needs to detect changes. Supports git branches, tags, and commits. The default configuration will compare against master, origin/master, upstream/master, main, origin/main, and upstream/main. changesetBaseRefs : [ "master" , "origin/master" , "upstream/master" , "main" , "origin/main" , "upstream/main" , ] , changesetIgnorePatterns Array of file glob patterns that will be excluded from change detection. Files matching the following patterns (in terms of relative paths compared to the root of the project) will be ignored by every command checking whether files changed compared to the base ref (this include both yarn version check and yarn workspaces foreach --since ). changesetIgnorePatterns : [ "**/*.test.{js,ts}" , ] , checksumBehavior Behavior that Yarn should follow when it detects that a cache entry has a different checksum than expected. Possible behaviors are: If throw (the default), Yarn will throw an exception. If update , the lockfile will be updated to match the cached checksum. If reset , the cache entry will be purged and fetched anew. If ignore , nothing will happen, Yarn will skip the check. checksumBehavior : "throw" | "update" | "ignore" | "reset" , cloneConcurrency Amount of git clone operations that Yarn will run at the same time. We by default limit it to 2 concurrent clone operations. cloneConcurrency : 2 , compressionLevel Compression level employed for zip archives Possible values go from 0 ("no compression, faster") to 9 ("heavy compression, slower"). The value mixed is a variant of 9 where files are stored uncompressed if the gzip overhead would exceed the size gain. The default is 0 , which tends to be significantly faster to install. Projects using zero-installs are advised to keep it this way, as experiments showed that Git stores uncompressed package archives more efficiently than gzip-compressed ones. compressionLevel : 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "mixed" , constraintsPath Path of the constraints file. This only matters for Prolog constraints, which are being deprecated. JavaScript constraints will always be read from the yarn.config.cjs file. constraintsPath : "./constraints.pro" , defaultLanguageName Default language mode that should be used when a package doesn't offer any insight. This is an internal configuration setting that shouldn't be touched unless you really know what you're doing. defaultLanguageName : "node" , defaultProtocol Default protocol that should be used when a dependency range is a pure semver range. This is an internal configuration setting that shouldn't be touched unless you really know what you're doing. defaultProtocol : "npm:" , defaultSemverRangePrefix Default prefix used in semver ranges created by yarn add and similar commands. Possible values are "^" (the default), "~" or "" . defaultSemverRangePrefix : "^" | "~" | "" , deferredVersionFolder Folder where the versioning files are stored. deferredVersionFolder : "./.yarn/versions" , enableColors Define whether colors are allowed on the standard output. The default is to check the terminal capabilities, but you can manually override it to either true or false . enableColors : true , enableConstraintsChecks Define whether constraints should run on every install. If true, Yarn will run your constraints right after finishing its installs. This may help decrease the feedback loop delay by catching errors long before your CI would even report them. enableConstraintsChecks : true , enableGlobalCache Define whether the cache should be shared between all local projects. If true (the default), Yarn will store the cache files into a folder located within globalFolder instead of respecting cacheFolder . enableGlobalCache : true , enableHardenedMode Define whether Yarn should attempt to check for malicious changes. If true, Yarn will query the remote registries to validate that the lockfile content matches the remote information. These checks make installs slower, so you should only run them on branches managed by users outside your circle of trust. Yarn will automatically enable the hardened mode on GitHub pull requests from public repository. Should you want to disable it, explicitly set it to false in your yarnrc file. enableHardenedMode : true , enableHyperlinks Define whether hyperlinks are allowed on the standard output. The default is to check the terminal capabilities, but you can manually override it to either true or false . enableHyperlinks : true , enableImmutableCache Define whether to allow adding/removing files from the cache or not. If true, Yarn will refuse to change the cache in any way, whether it would add files or remove them, and will abort installs instead of letting that happen. enableImmutableCache : false , enableImmutableInstalls Define whether to allow adding/removing entries from the lockfile or not. If true (the default on CI), Yarn will refuse to change the lockfile in any way, whether it would add new entries or remove them. Other files can be added to the checklist via the immutablePatterns setting. enableImmutableInstalls : false , enableInlineBuilds Define whether to print the build output directly within the terminal or not. If true (the default on CI environments), Yarn will print the build output directly within the terminal instead of buffering it in an external log file. Note that by default Yarn will attempt to use collapsible terminal sequences on supporting CI providers to make the output more legible. enableInlineBuilds : false , enableInlineHunks Define whether to print patch hunks directly within the terminal or not. If true, Yarn will print any patch sections (hunks) that could not be applied successfully to the terminal. enableInlineHunks : false , enableMessageNames Define whether to prepend a message name before each printed line or not. If true, Yarn will prefix most messages with codes suitable for search engines, with hyperlink support if your terminal allows it. enableMessageNames : true , enableMirror Define whether to mirror local cache entries into the global cache or not. If true (the default), Yarn will use the global folder as indirection between the network and the actual cache. This is only useful if enableGlobalCache is explicitly set to false , as otherwise the cache entries are persisted to the global cache no matter what. enableMirror : true , enableNetwork Define whether remote network requests are allowed or not. If false, Yarn will never make any request to the network by itself, and will throw an exception rather than let it happen. It's a very useful setting for CI, which typically want to make sure they aren't loading their dependencies from the network by mistake. enableNetwork : true , enableOfflineMode Define whether Yarn should exclusively read package metadata from its cache If true, Yarn will replace any network requests by reads from its local caches - even if they contain old information. This can be useful when performing local work on environments without network access (trains, planes, ...), as you can at least leverage the packages you installed on the same machine in the past. Since this setting will lead to stale data being used, it's recommended to set it for the current session as an environment variable (by running export YARN_ENABLE_OFFLINE_MODE=1 in your terminal) rather than by adding it to your .yarnrc.yml file. enableOfflineMode : false , enableProgressBars Define whether animated progress bars should be shown or not. If true (the default outside of CI environments), Yarn will show progress bars for long-running events. enableProgressBars : true , enableScripts Define whether to run postinstall scripts or not. If false, Yarn will not execute the postinstall scripts from third-party packages when installing the project (workspaces will still see their postinstall scripts evaluated, as they're assumed to be safe if you're running an install within them). Note that you also have the ability to disable scripts on a per-package basis using dependenciesMeta , or to re-enable a specific script by combining enableScripts and dependenciesMeta . enableScripts : true , enableStrictSsl Define whether SSL errors should fail requests or not. If false, SSL certificate errors will be ignored enableStrictSsl : true , enableTelemetry Define whether anonymous telemetry data should be sent or not. If true (the default outside of CI environments), Yarn will periodically send anonymous data to our servers tracking some usage information such as the number of dependencies in your project, how many installs you ran, etc. Consult the Telemetry page for more details about this process. enableTelemetry : true , enableTimers Define whether to print the time spent running each sub-step or not. If false, Yarn will not print the time spent running each sub-step when running various commands. This is only needed for testing purposes, when you want each execution to have exactly the same output as the previous ones. enableTimers : true , enableTransparentWorkspaces Define whether pure semver ranges should allow workspace resolution or not. If false, Yarn won't link workspaces just because their versions happen to match a semver range. Disabling this setting will require all workspaces to reference one another using the explicit workspace: protocol. This setting is usually only needed when your project needs to use the published version in order to build the new one (that's for example what happens with Babel, which depends on the latest stable release to build the future ones). enableTransparentWorkspaces : true , globalFolder Path where all files global to the system will be stored. Various files we be stored there: global cache, metadata cache, ... globalFolder : "${HOME}/.yarn/berry" , httpProxy Proxy to use when making an HTTP request. httpProxy : "http://proxy:4040" , httpRetry Amount of time to wait in seconds before retrying a failed HTTP request. httpRetry : 3 , httpTimeout Amount of time to wait before cancelling pending HTTP requests. httpTimeout : "1m" , httpsCaFilePath Path to a file containing one or multiple Certificate Authority signing certificates. httpsCaFilePath : "./exampleCA.pem" , httpsCertFilePath Path to a file containing a certificate chain in PEM format. httpsCertFilePath : "./exampleCert.pem" , httpsKeyFilePath Path to a file containing a private key in PEM format. httpsKeyFilePath : "./exampleKey.pem" , httpsProxy Define a proxy to use when making an HTTPS request. httpsProxy : "http://proxy:4040" , ignorePath Define whether yarnPath should be respected or not. If true, whatever Yarn version is being executed will keep running rather than looking at the value of yarnPath to decide. ignorePath : false , immutablePatterns Array of file patterns whose content won't be allowed to change if enableImmutableInstalls is set. immutablePatterns : [ "**/.pnp.*" , ] , initScope Scope used when creating packages via the init command. initScope : "yarnpkg" , initFields Additional fields to set when creating packages via the init command. initFields : { homepage : "https://yarnpkg.com" , } , injectEnvironmentFiles Array of .env files which will get injected into any subprocess spawned by Yarn. By default Yarn will automatically inject the variables stored in the .env.yarn file, but you can use this setting to change this behavior. Note that adding a question mark at the end of the path will silence the error Yarn would throw should the file be missing, which may come in handy when declaring local configuration files. injectEnvironmentFiles : [ ".my-env" , ".my-local-env?" , ] , installStatePath Path where the install state will be persisted. The install state file contains a bunch of cached information about your project. It's only used for optimization purposes, and will be recreated if missing (you don't need to add it to Git). installStatePath : "./.yarn/install-state.gz" , logFilters Alter the log levels for emitted messages. This can be used to hide specific messages, or instead make them more prominent. Rules defined there accept filtering messages by either name or raw content. logFilters : [ { logFilters.code Match all messages with the given code. code : "YN0006" , logFilters.level New log level to apply to the matching messages. Use discard if you wish to hide those messages altogether. level : "info" | "warning" | "error" | "discard" , } , { logFilters.text Match messages whose content is strictly equal to the given text. In case a message matches both code -based and text -based filters, the text -based ones will take precedence over the code -based ones. text : "lorem-ipsum@npm:1.2.3 lists build scripts, but its build has been explicitly disabled through configuration" , logFilters.level New log level to apply to the matching messages. Use discard if you wish to hide those messages altogether. level : "info" | "warning" | "error" | "discard" , } , { logFilters.pattern Match messages whose content match the given glob pattern. In case a message matches both pattern -based and code -based filters, the pattern -based ones will take precedence over the other ones. Patterns can be overridden on a case-by-case basis by using the text filter, which has precedence over pattern . pattern : "lorem-ipsum@* lists build scripts, but its build has been explicitly disabled through configuration" , logFilters.level New log level to apply to the matching messages. Use discard if you wish to hide those messages altogether. level : "info" | "warning" | "error" | "discard" , } ] , networkConcurrency Amount of HTTP requests that are allowed to run at the same time. We default to 50 concurrent requests, but it may be required to limit it even more when working behind proxies that can't handle large amounts of traffic. networkConcurrency : 50 , networkSettings Additional network settings, per hostname networkSettings : { *.example.com : { enableNetwork : See enableNetwork , httpProxy : See httpProxy , httpsCaFilePath : See httpsCaFilePath , httpsCertFilePath : See httpsCertFilePath , httpsKeyFilePath : See httpsKeyFilePath , httpsProxy : See httpsProxy , } , } , nmHoistingLimits Highest point where packages can be hoisted. Replacement of the former nohoist setting. Possible values are: If none (the default), packages are hoisted as per the usual rules. If workspaces , packages won't be hoisted past the workspace that depends on them. If dependencies , transitive dependencies also won't be hoisted past your direct dependencies. This setting can be overridden on a per-workspace basis using the installConfig.hoistingLimits field. nmHoistingLimits : "workspaces" | "dependencies" | "none" , nmSelfReferences Define whether workspaces are allowed to require themselves. If false, Yarn won't create self-referencing symlinks when using nodeLinker: node-modules . This setting can be overridden on a per-workspace basis using the installConfig.selfReferences field. nmSelfReferences : true , nmMode Define how to copy files to their target destination. Possible values are: If classic , regular copy or clone operations are performed. If hardlinks-global , hardlinks to a global content-addressable store will be used. If hardlinks-local , hardlinks will only be created between similar packages from the same project. For compatibility with the ecosystem, the default is classic . nmMode : "classic" | "hardlinks-local" | "hardlinks-global" , nodeLinker Define how Node packages should be installed. Yarn supports three ways to install your project's dependencies, based on the nodeLinker setting. Possible values are: If pnp , a single Node.js loader file will be generated. If pnpm , a node-modules will be created using symlinks and hardlinks to a global content-addressable store. If node-modules , a regular node_modules folder just like in Yarn Classic or npm will be created. nodeLinker : "pnp" , npmMinimalAgeGate Minimum age of a package version according to the publish date on the npm registry to be considered for installation. If a package version is newer than the minimal age gate, it will not be considered for installation. This can be used to reduce the likelihood of installing compromised packages, or to avoid relying on packages that could still be unpublished (e.g. the npm registry has specific rules for packages less than 3 days old). npmMinimalAgeGate : "3d" , npmPreapprovedPackages Array of package descriptors or package name glob patterns to exclude from all of the package gates. If a package descriptor or name matches the specified pattern, it will not be considered when evaluating any of the package gates. npmPreapprovedPackages : [ ] , pnpmStoreFolder Path where the pnpm store will be stored By default, the store is stored in the node_modules/.store of the project. Sometimes in CI scenario's it is convenient to store this in a different location so it can be cached and reused. pnpmStoreFolder : ".cache/.store" , winLinkType Define whether to use junctions or symlinks when creating links on Windows. Possible values are: If junctions , Yarn will use Windows junctions when linking workspaces into node_modules directories, which are always absolute paths. If symlinks , Yarn will use symlinks, which will use relative paths, and is consistent with Yarn's behavior on non-Windows platforms. Symlinks are preferred, but they require the Windows user running Yarn to have the create symbolic links privilege. As a result, we default to using junctions instead. winLinkType : "junctions" | "symlinks" , npmAlwaysAuth Define whether to always send authentication credentials when querying the npm registry. If true, authentication credentials will always be sent when sending requests to the registries. This shouldn't be needed unless you configured the registry to reference a private npm mirror. npmAlwaysAuth : false , npmAuditRegistry Define the registry to use when auditing dependencies. If not explicitly set, the value of npmRegistryServer will be used. npmAuditRegistry : "https://registry.npmjs.org" , npmAuthIdent Define the authentication credentials to use by default when accessing your registries. Replacement of the former _auth setting. Because it requires storing unencrypted values in your configuration, npmAuthToken should be preferred when possible. npmAuthIdent : "username:password" , npmAuthToken Define the authentication token to use by default when accessing your registries. Replacement of the former _authToken settings. If you're using npmScopes to define multiple registries, the npmRegistries dictionary allows you to override these credentials on a per-registry basis. npmAuthToken : "ffffffff-ffff-ffff-ffff-ffffffffffff" , npmPublishAccess Define the default access to use when publishing packages to the npm registry. Valid values are public and restricted , but restricted usually requires to register for a paid plan (this is up to the registry you use). Can be overridden on a per-package basis using the publishConfig.access field. npmPublishAccess : "public" | "restricted" , npmPublishProvenance Define whether to attach a provenance statement when publishing packages to the npm registry. If true, Yarn will generate and publish the provenance information when publishing packages. Can be overridden on a per-package basis using the publishConfig.provenance field. npmPublishProvenance : false , npmAuditExcludePackages Array of package name glob patterns to exclude from yarn npm audit . npmAuditExcludePackages : [ ] , npmAuditIgnoreAdvisories Array of advisory ID glob patterns to ignore from yarn npm audit results. npmAuditIgnoreAdvisories : [ ] , npmPublishRegistry Define the registry to use when pushing packages. If not explicitly set, the value of npmRegistryServer will be used. Overridden by publishConfig.registry . npmPublishRegistry : "https://npm.pkg.github.com" , npmRegistries Per-registry configurations. npmRegistries : { //npm.pkg.github.com : { npmAlwaysAuth : See npmAlwaysAuth , npmAuthIdent : See npmAuthIdent , npmAuthToken : See npmAuthToken , } , } , npmRegistryServer Define the registry to use when fetching packages. Should you want to define different registries for different scopes, see npmScopes . To define the authentication scheme for your servers, see npmAuthToken . The url must use HTTPS by default, but this can be changed by adding it to the unsafeHttpWhitelist . npmRegistryServer : "https://registry.yarnpkg.com" , npmScopes Per-scope registry configurations. npmScopes : { my-company : { npmPublishRegistry : See npmPublishRegistry , npmRegistryServer : See npmRegistryServer , npmAlwaysAuth : See npmAlwaysAuth , npmAuthIdent : See npmAuthIdent , npmAuthToken : See npmAuthToken , } , } , packageExtensions Extend the package definitions of your dependencies; useful to fix third-party issues. Some packages may have been specified incorrectly with regard to their dependencies - for example with one dependency being missing, causing Yarn to refuse it the access. The packageExtensions fields offer a way to extend the existing package definitions with additional information. If you use it, consider sending a PR upstream and contributing your extension to the plugin-compat database . Note: This field is made to add dependencies; if you need to rewrite existing ones, prefer the resolutions field instead. packageExtensions : { webpack@* : { dependencies : { lodash : "^4.15.0" , } , peerDependencies : { webpack-cli : "*" , } , peerDependenciesMeta : { webpack-cli : { optional : true , } , } , } , } , patchFolder Folder where patch files will be written to. patchFolder : "./.yarn/patches" , pnpEnableEsmLoader Define whether to generate a Node.js ESM loader or not. If true, Yarn will generate an experimental ESM loader ( .pnp.loader.mjs ) on top of the CJS one. pnpEnableEsmLoader : false , pnpEnableInlining Define whether to store the PnP data in the generated file or not. If false, Yarn will generate an additional .pnp.data.json file. pnpEnableInlining : true , pnpFallbackMode Define whether to allow packages to rely on the builtin PnP fallback mechanism. Possible values are: If all , all packages can access dependencies made available in the fallback. If dependencies-only (the default), dependencies will have access to them but not your workspaces. If none , no packages will have access to them. pnpFallbackMode : "none" | "dependencies-only" | "all" , pnpIgnorePatterns Array of file glob patterns that should be forced to use the default CommonJS resolution. Files matching those locations will not be covered by PnP and will use the regular Node.js resolution algorithm. Typically only needed if you have subprojects that aren't yet part of your workspace tree. pnpIgnorePatterns : [ "./subdir/*" , ] , pnpMode Define whether to attempt to simulate traditional node_modules hoisting. Possible values are: If strict (the default), modules won't be allowed to require packages they don't explicitly list in their own dependencies. If loose , packages will be allowed to access any other package that would have been hoisted to the top-level under 1.x installs. Note that, even in loose mode, hoisted require calls are unsafe and should be discouraged. pnpMode : "strict" | "loose" , pnpShebang String prepended to the generated PnP loader. pnpShebang : "#!/usr/bin/env node" , pnpUnpluggedFolder Path where unplugged packages are stored. While Yarn attempts to reference and load packages directly from their zip archives, it may not always be possible. In those cases, Yarn will extract the files to the unplugged folder. pnpUnpluggedFolder : "./.yarn/unplugged" , preferDeferredVersions Define whether to use deferred versioning by default or not. If true, deferred versioning by default when running the yarn version family of commands. preferDeferredVersions : false , preferInteractive Define whether to use interactive prompts by default or not. If true, Yarn will ask for your guidance when some actions would be improved by being disambiguated. Enabling this setting also unlocks some features (for example the yarn add command will suggest to reuse the same dependencies as other workspaces if pertinent). preferInteractive : false , preferReuse Define whether to reuse most common dependency ranges or not when adding dependencies to a package. If true, yarn add will attempt to reuse the most common dependency range in other workspaces. preferReuse : false , preferTruncatedLines Define whether to truncate lines that would go beyond the size of the terminal or not. If true, Yarn will truncate lines that would go beyond the size of the terminal. If progress bars are disabled, lines will never be truncated. preferTruncatedLines : false , progressBarStyle Style of progress bar to use. progressBarStyle : "patrick" | "simba" | "jack" | "hogsfather" | "default" , supportedArchitectures Systems for which Yarn should install packages. supportedArchitectures : { supportedArchitectures.os List of operating systems to cover. os : [ "current" , "darwin" , "linux" , "win32" , ] , supportedArchitectures.cpu List of CPU architectures to cover. See https://nodejs.org/docs/latest/api/process.html#processarch for the architectures supported by Node.js cpu : [ "current" , "x64" , "ia32" , "arm64" , ] , supportedArchitectures.libc The list of standard C libraries to cover. libc : [ "current" , "glibc" , "musl" , ] , } , taskPoolConcurrency Maximal amount of concurrent heavy task processing. We default to the platform parallelism, but for some CI, os.cpus may not report accurate values and may overwhelm their containers. taskPoolConcurrency : "os.availableParallelism()" , taskPoolMode Execution strategy for heavy tasks. By default will use workers when performing heavy tasks, such as converting tgz files to zip. This setting can be used to disable workers and use a regular in-thread async processing. taskPoolMode : "async" | "workers" , telemetryInterval Define the minimal amount of time between two telemetry events. By default we only send one request per week, making it impossible for us to track your usage with a lower granularity. telemetryInterval : "7d" , telemetryUserId User-defined unique ID to send along with telemetry events. The default settings never assign unique IDs to anyone, so we have no way to know which data originates from which project. This setting can be used to force a user ID to be sent to our telemetry server. Frankly, it's only useful in some very specific use cases. For example, we use it on the Yarn repository in order to exclude our own usage from the public dashboards (since we run Yarn far more often here than anywhere else, the resulting data would be biased). telemetryUserId : "yarnpkg/berry" , tsEnableAutoTypes Define whether to automatically install @types dependencies. If true, Yarn will automatically add @types dependencies when running yarn add with packages that don't provide their own typings (as reported by the Algolia npm database). This behavior is enabled by default if you have a tsconfig.json file at the root of your project, or in your current workspace. tsEnableAutoTypes : true , unsafeHttpWhitelist Array of hostname glob patterns for which using the HTTP protocol is allowed. unsafeHttpWhitelist : [ "*.example.org" , "example.org" , ] , virtualFolder Path where virtual packages will be stored. Due to a particularity in how Yarn installs packages which list peer dependencies, some packages will be mapped to multiple virtual directories that don't actually exist on the filesystem. This settings tells Yarn where to put them. Note that the folder name must be __virtual__ . virtualFolder : "./.yarn/__virtual__" , yarnPath Path of a Yarn binary to use instead of the global one. This binary will be executed instead of any other (including the global one) for any command run within the directory covered by the rc file. If the file extension ends with .js it will be required, and will be spawned in any other case. The yarnPath setting used to be the preferred way to install Yarn within a project, but we now recommend to use Corepack in most cases. yarnPath : "./scripts/yarn-2.0.0-rc001.js" , Edit this page Previous Manifest (package.json) Copyright © 2026 Yarn Contributors, Inc. Built with Docusaurus. | 2026-01-13T09:30:28 |
https://qa.debian.org/developer.php?login=Jonas+Smedegaard | DDPO: Jonas Smedegaard -- Debian Quality Assurance QA Skip Quicknav About Debian Getting Debian Support Developers' Corner Debian Quality Assurance Packages overview for Jonas Smedegaard Jonas Smedegaard < js@debian.org > — Bugs: open - RC - all - submitted - usertags - WNPP - — Reports: Dashboard - Buildd - Lintian - Debtags - Piuparts - Janitor - Contributions - Repology - Portfolio Jonas Smedegaard < dr@jones.dk > — Bugs: open - RC - all - submitted - usertags - WNPP - — Reports: Dashboard - Buildd - Lintian - Debtags - Piuparts - Janitor - Contributions - Repology - Portfolio main (689) Source Package Bugs Version Ubuntu VCS Buildd Lintian Deb check Piu parts CI Popcon Watch All RC oldstable stable testing unstable exp E+W Rep abiword 56 ( 58 ) - (Uploader: jeremy@bicha.net)">3.0.5~dfsg-3.2 (Uploader: js@debian.org)">3.0.6~dfsg-1 (Uploader: js@debian.org)">3.0.7~dfsg-4 - 3.0.7~dfsg-4 67 bugs Git ✔ ✔ ∿ ✔ ✔ ✔ ✔ ✘ ✘ ✔ ✔ ✔ ✔ ∉ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ - - ✔ 1616 3.0.7 aiksaurus 3 - (Uploader: js@debian.org)">1.2.1+dev-0.12-7 (Uploader: bastian.germann@linutronix.de)">1.2.1+dev-0.12-7.2 - 1.2.1+dev-0.12-7.2 1 bug - 19× ✓ ✔ ✔ ✔ MA - - ✔ 205 1.2.1 akira [U] 1 - (Uploader: js@debian.org)">0.0.16-2 - 0.0.16-2 - Git ✔ 18× ✓ ✔ ✔ ✔ - - ✔ 64 0.0.16 amqp-specs - - ">1-0r0-3.1 (Uploader: tille@debian.org)">1-0r0-4 - 1-0r0-4 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ - - ✔ 24 1-0r0 asterisk [U] 29 1 - Excuse (Uploader: js@debian.org)">1:22.7.0~dfsg+~cs6.15.60671435-1 - 1:22.5.2~dfsg+~cs6.15.60671435-1 17 bugs Git ✔ ✔ ✔ ✔ ✔ ✔ ∉ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ U ✔ ✔ ✔ - 2036 22.7.0+~cs6.15.60671435 asterisk-espeak [U] 2 - - Excuse (Uploader: js@debian.org)">5.0~1-4 - 5.0~1-4u2 2 bugs Git !2 ✔ 18× ✓ ✔ ✔ ✔ ✔ fail - 24 ERROR asterisk-flite [U] 1 - - Excuse (Uploader: js@debian.org)">3.0-4 - 3.0-4 - Git !1 ✔ 18× ✓ ✔ ✔ ✔ - - - 11 3.0 astroidmail 2 1 (Uploader: js@debian.org)">0.16-2 (Uploader: js@debian.org)">0.16+20240629-1 (Uploader: alexandre.detiste@gmail.com)">0.16+20240629-1.1 AUTORM - 0.16+20240629-1.1 1 bug Git ✔ ⎇ ✔ ✔ ✔ ✔ ✔ ∉ ∉ ✔ ∉ ∉ ✔ ✔ ✔ ✔ ✔ ∉ ✔ ∿ ✔ U ✔ ⊖ ⊖ FTBFS 35 0.16+20260105 atomicparsley 4 ( 5 ) - (Uploader: js@debian.org)">20210715.151551.e7ad03a-1 (Uploader: js@debian.org)">20240608.083822.1ed9031-1 - 20240608.083822.1ed9031-1 5 bugs (1 patch) Git ✔ 18× ✓ ✔ ✔ ✔ - - ✔ 710 20240608.083822.1ed9031 backbone [U] 1 - (Uploader: x.guimard@free.fr)">1.4.1~dfsg+~1.4.15-3 - 1.4.1~dfsg+~1.4.15-3 - Git ✔ 1.4.1_dfsg+_1.4.15-3+1 1× ✓ ✔ U ✔ ⊖ ⊖ ✔ 4163 1.6.1+~1.4.23 baresip [U] 2 - (Uploader: js@debian.org)">1.0.0-4 (Uploader: linuxmaniac@torreviejawireless.org)">1.1.0-3 - 1.1.0-3 1 bug (1 patch) Git failed ✔ ✔ ✔ ✔ ✔ ✔ ⌚ ∉ ∉ ✔ ∉ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ⌚ ✔ U ✔ - - ✔ 274 4.4.0 binutils-or1k-elf [U] - - ">1.0.7 ">1.0.13 - 1.0.13 - Git ✔ 1.0.13+2 18× ✓ ✔ ✔ ✔ ⊖ ⊖ ✔ 30 - bitmeter [U] - - (Uploader: js@debian.org)">1.2-4 - - - Buildd Logs ✔ ✔ ✔ - - - 55 - blends [U] 5 - ">0.7.5 ">0.7.10 ">0.7.11 - 0.7.11 - Git ✔ 1× ✓ ✔ ✔ ✔ - - ✔ 1216 - boxer [U] - - (Uploader: js@debian.org)">1.4.3-1 ">1.4.3-2 - 1.4.3-1u2 1 bug Git ✔ 1× ✓ ✔ T ✔ ✔ ✔ ✔ 13 1.4.3 boxer-data [U] 1 1 ">10.9.12+deb12u1 (Uploader: js@debian.org)">10.10.1 - Excuse (Uploader: js@debian.org)">10.10.1 - - Git 10.10.2 1× ✓ ✔ ✔ ✔ fail fail - 13 - btm - - - (Uploader: js@debian.org)">0.10.2+20250107-5 (Uploader: js@debian.org)">0.12.3+~0+20250330+~0.30.0+~0.37.2+~0.3.5-4 - 0.11.3+~0+20250330+~0.30.0~beta0+~0.37.2+~0.3.4-1 - Git 0.12.3+~0+20250330+~0.30.0+~0.37.2+~0.3.5-5 ⎇ ∉ ✔ ✔ ✔ ∉ ∉ ∉ ✔ ✔ ∉ ✔ ✔ ✔ ✔ ✔ ∉ ✔ ∉ ✔ ✔ ✔ - - FTBR 166 0.12.3+~0+20250330+~0.30.0+~0.37.2+~0.3.5 ciderwebmail [U] 1 - (Uploader: js@debian.org)">1.05+20221106-1 (Uploader: js@debian.org)">1.05+20240702-1 - 1.05+20240702-1 2 bugs Git 1.05+20191006-3 1× ✓ ✔ S T U ✔ ✔ ✔ ✔ 13 1.05+20240702 cmark 2 - (Uploader: js@debian.org)">0.30.2-6 (Uploader: js@debian.org)">0.30.3-1 Excuse 0.30.2-6 - Git ✔ 18× ✓ ⎇ ✔ ✔ ✔ ✔ ∿ ✔ ✔ ✔ ⌂ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ - - ✔ 304 0.31.1 compass-blend-modes-plugin [U] - - (Uploader: js@debian.org)">0.0.3+20150331~dfsg-3 - 0.0.3+20150331~dfsg-3 - Git ✔ 1× ✓ ✔ S T U ✔ MA - - ✔ 14 ERROR compass-blueprint-plugin [U] - - (Uploader: js@debian.org)">1.0.0-5 - 1.0.0-5 - Git ✔ 1× ✓ ✔ ✔ ✔ MA - - ✔ 13 1.0.0 compass-breakpoint-plugin [U] - - (Uploader: js@debian.org)">3.0.0-1 - 3.0.0-1 - Git ✔ 1× ✓ ✔ ✔ ✔ - - ✔ 6 4.0.0-beta.1 compass-color-schemer-plugin [U] 1 - (Uploader: js@debian.org)">0.2.8+20140309-4 - 0.2.8+20140309-4 - Git ✔ 1× ✓ ✔ S T U ✔ - - ✔ 6 ERROR compass-fancy-buttons-plugin [U] - - (Uploader: js@debian.org)">1.1.1~20120313-7 - 1.1.1~20120313-7 - Git ✔ 1× ✓ ✔ S T U ✔ MA - - ✔ 11 1.0.3 compass-h5bp-plugin [U] - - (Uploader: js@debian.org)">1.0.0-6 - 1.0.0-6 - Git ✔ 1× ✓ ✔ S T U ✔ MA - - ✔ 11 1.0.0 compass-layoutgala-plugin [U] - - (Uploader: js@debian.org)">0.2.1-3 - 0.2.1-3 - Git ✔ 1× ✓ ✔ S T U ✔ MA - - ✔ 9 - compass-normalize-plugin [U] - - (Uploader: js@debian.org)">7.0.1-3 - 7.0.1-3 - Git ✔ 1× ✓ ✔ S T U ✔ MA - - ✔ 15 8.0.0 compass-sassy-maps-plugin [U] - - (Uploader: js@debian.org)">0.4.0-6 - 0.4.0-6 - Git ✔ 1× ✓ ✔ S T U ✔ MA - - ✔ 6 0.4.0 compass-toolkit-plugin [U] - - (Uploader: js@debian.org)">2.10.2-2 - 2.10.2-2 - Git ✔ 1× ✓ ✔ S T U ✔ MA - - ✔ 11 2.10.2 crust-firmware [U] - - ">0.5-3 ">0.6-1 ">0.6-3 - 0.6-3 - Git ✔ 0.6-3+1 1× ✓ ✔ ✔ ✔ - - ✔ 14 0.6 cstream 3 - (Uploader: js@debian.org)">4.0.0-1 - 4.0.0-1 - Git ✔ 18× ✓ ✔ ✔ ✔ - - ✔ 4350 4.0.0 cutycapt - - (Uploader: hoexter@debian.org)">0.0~svn10-0.1 (Uploader: js@debian.org)">0.0+20200623-1 - 0.0+20200623-1 - Git ✔ ⎇ ∉ ✔ ✔ ✔ ∉ ∉ ∉ ✔ ∉ ∉ ∉ ∉ ∉ ∉ ∉ ∉ ∉ ∉ ✔ S T U ✔ - - ✔ 337 0.0+20200623 cwl-upgrader - - (Uploader: js@debian.org)">1.2.4-1 (Uploader: js@debian.org)">1.2.12-1 (Uploader: js@debian.org)">1.2.14-1 - 1.2.14-1 - Git ✔ 1× ✓ ✔ U ✔ ✔ ( ✔ ) ( ✔ ) 494 1.2.14 cyme - - - (Uploader: js@debian.org)">2.2.0+dfsg-2 (Uploader: js@debian.org)">2.2.8+dfsg-2 Excuse (Uploader: js@debian.org)">2.2.9+dfsg-1 - 2.2.9+dfsg-1 - Git ✔ ⎇ ∉ ✔ ✔ ✔ ∉ ∉ ∉ ✔ ✔ ∉ ✔ ✔ ✔ ✔ ✔ ∉ ✔ ∉ ✔ ✔ ✔ - - FTBR 60 2.2.10 d-shlibs * 6 - (Uploader: js@debian.org)">0.104 (Uploader: js@debian.org)">0.109 - 0.109 3 bugs Git ✔ 1× ✓ ✔ U ✔ ✔ ✔ ✔ 176 - debian-design [U] 5 1 (Uploader: js@debian.org)">3.0.27 - Excuse (Uploader: js@debian.org)">3.0.28 - - Git 3.0.28+2 1× ✓ ✔ U X MA - - - 3 - debian-parl [U] 6 1 ">1.9.31+deb12u1 - Excuse (Uploader: js@debian.org)">1.9.32 - - Git ✔ 1× ✓ ✔ U X MA - - - - - dh-rust [U] 5 - - (Uploader: js@debian.org)">0.0.11 (Uploader: js@debian.org)">0.1.0 - 0.1.0 - Git ✔ 1× ✓ ✔ ✔ ✔ - - ✔ 39 - dialect 4 - (Uploader: js@debian.org)">2.1.1+~2.1.1-1 (Uploader: js@debian.org)">2.5.0+~2.5.0-1 (Uploader: js@debian.org)">2.6.0+~2.6.0-4 - 2.6.0+~2.6.0-4 1 bug Git 2.6.0+~2.6.0-3 ⎇ ✔ ✔ ✔ ✔ ∉ ∉ ∉ ✔ ✔ ∉ ✔ ✔ ✔ ✔ ✔ ∉ ∉ ∉ ✔ ✔ ✔ - - ✔ 375 2.6.1+~2.6.1 dsdo * 1 - ">1.6.36-14 ">1.6.36-17 ">1.6.36-18 - 1.6.36-18 2 bugs Git ✔ ✔ 1× ✓ ✔ S T U ✔ - - ✔ 957 ERROR edu-sync [ ITP ] - - - (Uploader: js@debian.org)">0.3.0-1 (Uploader: js@debian.org)">0.3.2-4 - 0.3.2-4 - Git 0.3.2-4+1 ⎇ ∉ ✔ ✔ ✔ ∉ ∉ ∉ ✔ ✔ ∉ ✔ ✔ ✔ ✔ ✔ ∉ ✔ ∉ ✔ ✔ ✔ - - ✔ 7 0.3.2 ell [U] - - ">0.56-3 (Uploader: js@debian.org)">0.77-1 (Uploader: js@debian.org)">0.81-1 - 0.81-1 - Git !1 ✔ ✔ 16× ✓ ✔ ✔ ✔ ⊖ ⊖ ✔ 1550 0.81 eslint [U] 9 ( 10 ) 1 (Uploader: js@debian.org)">6.4.0~dfsg+~6.1.9-7 (Uploader: x.guimard@free.fr)">6.4.0~dfsg+~6.1.9-12 - 6.4.0~dfsg+~6.1.9-12 - Git ✔ 1× ✓ ✔ S T U ✔ ✔ ✔ FTBFS 14325 6.4.0+~6.1.9 etesync-dav [ RFP ] 2 2 - (Uploader: js@debian.org)">0.20.4-1 Excuse - Git ✔ 1× ✓ ✔ ✔ X - - - - 0.35.1 eye - - (Uploader: js@debian.org)">22.1201.1601~ds-1 - (Uploader: js@debian.org)">1:11.23.4-1 - 1:11.23.4-1 1 bug Git ✔ 1× ✓ ✔ U ✔ ✔ ( ✔ ) FTBR 7 11.23.6 fact++ - - (Uploader: js@debian.org)">1.6.5~dfsg-3 - 1.6.5~dfsg-3 - Git 1.6.5_dfsg-3+1 18× ✓ ✔ ✔ ✔ ⊖ ⊖ ✔ 9 ERROR fonts-arkpandora [U] - - ">2.04-1.1 - - - Buildd Logs ✔ ✔ ✔ - - - 396 - fonts-font-awesome [U] 1 - ">5.0.10+really4.7.0~dfsg-4.1 - 5.0.10+really4.7.0~dfsg-4.1 - Git 5.0.10+really4.7.0~dfsg-4 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 59191 ERROR fonts-noto [U] 14 - (Uploader: js@debian.org)">20201225-1 ">20201225-2 - 20201225-2 4 bugs Git !1 20201225-2+1 1× ✓ ✔ ✔ ✔ - - ✔ 151997 20201206-phase3 fonts-roboto [U] 2 - (Uploader: bugzilla@tut.by)">2:0~20170802-3 (Uploader: bastian.germann@linutronix.de)">2:0~20170802-4 (Uploader: alexandre.detiste@gmail.com)">2:0~20170802-5 - 2:0~20170802-5 - Git ✔ 1× ✓ ✔ ✔ ✔ - - ✔ 15660 2.138 gcc-or1k-elf [U] - - ">1.0.4 ">1.0.10 ">1.0.11 - 1.0.11 1 bug Git failed ✔ 18× ✓ ✔ ✔ ✔ ⊖ ⊖ ✔ 29 - gesftpserver 1 - (Uploader: js@debian.org)">2~ds-1 - 2~ds-1 - Git 2_ds-1+1 18× ✓ ✔ ✔ ✔ - - ✔ 33 2 git-delta - - - (Uploader: js@debian.org)">0.18.2-4 (Uploader: js@debian.org)">0.18.2-6 - 0.18.2-6 - Git ✔ ⎇ ∉ ✔ ✔ ✔ ∉ ∉ ∉ ✔ ✔ ∉ ✔ ✔ ✔ ✔ ✔ ∉ ✔ ∉ ✔ ✔ ✔ - - FTBR 506 0.18.2 groestlcoin [U] 1 1 - (Uploader: js@debian.org)">2.21.1~dfsg-1 Excuse - Git 2.21.1_dfsg-1+1 ⎇ ✔ ✔ ✔ ✔ ✔ ∉ ✔ ✔ ∉ ✔ ✔ ✔ ✔ ✘ ✔ ✔ ✔ ✔ ✔ ✔ X - - - 1 30.2 gst-plugins-espeak [U] 1 - (Uploader: js@debian.org)">0.5.0-1 (Uploader: alexandre.detiste@gmail.com)">0.5.0-2 - 0.5.0-2 1 bug Git ✔ 18× ✓ ✔ ✔ ✔ - - ✔ 732 0.6.0 haskell-hsyaml [U] 1 - (Uploader: js@debian.org)">0.2.1.1-2 (Uploader: js@debian.org)">0.2.1.4-2 - 0.2.1.4-2 - Git ✔ ✔ ✘ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✘ ✔ ✔ ✔ ✔ ✔ ✔ ✘ ✘ ✔ ✔ U X - - ✔ 104 0.2.1.5 haskell-intern [U] 1 - (Uploader: js@debian.org)">0.9.4-2 (Uploader: js@debian.org)">0.9.6-1 - 0.9.6-1 - Git ✔ ✔ ∉ ✔ ✔ ✔ ∉ ✔ ✔ ✔ ∉ ✔ ∉ ∉ ✔ ✔ ✔ ∉ ∉ ✔ ✔ U X - - ✔ 3 0.9.6 haskell-swish [U] 2 - (Uploader: js@debian.org)">0.10.3.0-1 (Uploader: js@debian.org)">0.10.10.0-1 (Uploader: costamagnagianfranco@yahoo.it)">0.10.10.0-2 - 0.10.10.0-2 - Git ✔ ✔ ∉ ✔ ✔ ✔ ∉ ✔ ✔ ✔ ∉ ✔ ∉ ∉ ✔ ✔ ✔ ∉ ∉ ∿ ✔ U X - - FTBR 13 0.10.11.0 helvum 2 1 - (Uploader: js@debian.org)">0.5.1+20240829-2 - Excuse (Uploader: js@debian.org)">0.5.1+20240829-5 - 0.5.1+20240829-2 1 bug Git ✔ ⎇ ∉ ✔ ✔ ✔ ∉ ∉ ∉ ✔ ∉ ∉ ✔ ✔ ✔ ✔ ✔ ∉ ✔ ∉ ✔ U ✔ - - - 455 0.5.1+20250915 http-icons - - ">0~20041010-1.1 (Uploader: tille@debian.org)">0~20041010-2 - 0~20041010-2 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ MA - - ✔ 53 ERROR hx 4 1 - (Uploader: js@debian.org)">25.01.1-4 (Uploader: js@debian.org)">25.07.1+20251230+~0.1.1+~0.3.0+20251022-1 - 25.07.1+20251230+~0.1.1+~0.3.0+20251022-1 - Git 25.07.1+20251230+_0.1.1+_0.3.0+20251022-1+3 ⎇ ∉ ✔ ✔ ✔ ∉ ∉ ∉ ✔ ✔ ∉ ✔ ✔ ✔ ✔ ✔ ∉ ✔ ∉ ✔ S T U ✔ - - FTBR 330 25.07.1+20260109+~0.1.1+~0.3.0+20251022 ical2html - - (Uploader: js@debian.org)">3.0-1 (Uploader: js@debian.org)">3.0-2 - 3.0-2 - Git ✔ 18× ✓ ✔ ✔ ✔ - - ✔ 53 3.0 icc-profiles-free [U] 3 - ">2.0.1+dfsg-1.1 - 2.0.1+dfsg-1.1 - Git ERROR 1× ✓ ✔ ✔ ✔ MA - - ✔ 13310 - ijs [U] - - (Uploader: js@debian.org)">0.35-15 (Uploader: bastian.germann@linutronix.de)">0.35-15.2 (Uploader: alexandre.detiste@gmail.com)">0.35-16 - 0.35-16 - Git ✔ 19× ✓ ✔ ✔ ✔ - - ✔ 158645 ERROR imip-agent 1 1 - (Uploader: js@debian.org)">0.3-2 Excuse - Git ERROR 1× ✓ ✔ ✔ X - - - 1 ERROR iwd 11 ( 12 ) - ">2.3-1+deb12u1 (Uploader: js@debian.org)">3.8-2 (Uploader: js@debian.org)">3.10-1 - 3.9-2u1 8 bugs (1 patch) Git ✔ 17× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 949 3.10 jack-audio-connection-kit [U] 8 - (Uploader: d_braun@kabelmail.de)">1:0.126.0-2 (Uploader: s.ramacher@gmail.com)">1:0.126.0-4 (Uploader: alexandre.detiste@gmail.com)">1:0.126.0-5 - 1:0.126.0-5 24 bugs (1 patch) Git failed ✔ 18× ✓ ✔ S ✔ - - ✔ 2580 ERROR janus [U] 10 - (Uploader: js@debian.org)">1.1.2-1 - ">1.1.2-3.1 - 1.1.2-3.1 1 bug Git 1.1.2-3 ✔ ✔ ✔ ✔ ✔ ∉ ∉ ∉ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ T U ✔ MA ✔ ( ✔ ) ✔ 89 1.3.3 jbig2dec [U] 2 - (Uploader: js@debian.org)">0.19-3 (Uploader: js@debian.org)">0.20-1 - 0.20-1 - Git ✔ 18× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 158847 ERROR jbig2enc 1 - - (Uploader: js@debian.org)">0.30-1 - 0.30-1 - Git ✔ 18× ✓ ✔ ✔ ✔ - - ✔ 1000 0.30 jsbundle-web-interfaces [U] - - (Uploader: js@debian.org)">1.1.0+~cs15.1.20180823-2 (Uploader: x.guimard@free.fr)">1.1.0+~cs15.1.20180823-3 - 1.1.0+~cs15.1.20180823-3 - Git ✔ 1× ✓ ✔ U ✔ ⊖ ⊖ ✔ 507 1.1.0+~cs17.0.20180826 jshash [U] 1 - ">2.2-4.1 (Uploader: tille@debian.org)">2.2-5 - 2.2-5 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ MA - - ✔ 8 2.2 json-js [U] - - (Uploader: js@debian.org)">0~20221030+~1.0.8-1 - 0~20221030+~1.0.8-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ⊖ ⊖ ✔ 2004 0~20230510+~2.1.0 khal [U] 10 - ">1:0.10.5-1.1 (Uploader: js@debian.org)">1:0.11.4-1 ">1:0.13.0-5 AUTORM - 1:0.13.0-5 1 bug Git ✔ 1%0.13.0-5+1 1× ✓ ✔ U ✔ ✔ ( ✔ ) ✔ 337 0.13.0 konclude 1 - (Uploader: js@debian.org)">0.7.0+1138+git20220514~dfsg-1 - 0.7.0+1138+git20220514~dfsg-1 1 bug Git 0.7.0+1138+git20220514_dfsg-1+3 ⎇ ✔ ✔ ✔ ✔ ✔ ✔ ✘ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ 5 0.7.0+1138+git20220514 lcdf-typetools [U] 1 - ">2.108-3 (Uploader: js@debian.org)">2.110-1 - 2.110-1 - Git ✔ 18× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 4317 2.110 ldh-client - - - (Uploader: js@debian.org)">0.0.9-1 Excuse - Git 0.0.9-1+1 1× ✓ ✔ ✔ ✔ - - - - ERROR ldh-gui-suite 3 - (Uploader: js@debian.org)">0.1~20200908-6 - 0.1~20200908-6 - Git ✔ 1× ✓ ✔ ✔ F - - ✔ 4 0.1~20200908 leaflet [U] 1 - (Uploader: x.guimard@free.fr)">1.7.1~dfsg-7 - 1.7.1~dfsg-7 - Git ✔ 1× ✓ ✔ ✔ ✔ MA ⊖ ⊖ ✔ 2574 2.0.0-alpha.1 leaflet-markercluster [U] 1 - (Uploader: x.guimard@free.fr)">1.5.3~dfsg-4 ">1.5.3~dfsg-5 - 1.5.3~dfsg-5 - Git !1 ✔ ✔ 1× ✓ ✔ U ✔ ( MA ) ⊖ ( ⊖ ) ✔ 73 1.5.3 libanyevent-handle-udp-perl [U] - - ">0.050-3 - 0.050-3 - Git 0.050-3+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 29 0.050 libanyevent-rabbitmq-perl [U] - - (Uploader: js@debian.org)">1.22~dfsg-1 - 1.22~dfsg-1 - Git 1.22_dfsg-1+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 15 1.22 libanyevent-xmpp-perl [U] - - ">0.55-6 (Uploader: js@debian.org)">0.55-7 - 0.55-7 1 bug Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 14 0.55 libapp-cell-perl [U] - - (Uploader: gregoa@debian.org)">0.231-1 - 0.231-1 - Git archive/debian/0.231-1+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.231 libapp-cmd-plugin-prompt-perl [U] - - ">1.006-1 - 1.006-1 - Git 1.006-1+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 17 1.006 libapp-cpants-lint-perl [U] 2 - ">0.05-6 (Uploader: alexandre.detiste@gmail.com)">0.05-7 - 0.05-7 - Git ✔ 0.05-7+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 45 0.05 libapp-perlrdf-command-query-perl [U] 1 - (Uploader: js@debian.org)">0.004-4 - 0.004-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 3 0.004 libatombus-perl [U] - - ">1.0405-6 ">1.0405-7 (Uploader: alexandre.detiste@gmail.com)">1.0405-8 - 1.0405-8 - Git 1.0405-8+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 3 1.0405 libatompub-perl [U] - - ">0.3.7-5 ">0.3.7-6 ">0.3.7-7 - 0.3.7-7 - Git ✔ 0.3.7-7+1 1× ✓ ✔ S ✔ ✔ ✔ ✔ 5 0.3.7 libattean-perl [U] - - (Uploader: js@debian.org)">0.033-1 (Uploader: js@debian.org)">0.035-1 - 0.035-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 21 0.035 libatteanx-compatibility-trine-perl [U] - - ">0.002-4 - 0.002-4 - Git 0.002-4+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 1 0.002 libatteanx-endpoint-perl [U] - - ">0.002-6 - 0.002-6 - Git 0.002-6+3 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 1 0.002 libatteanx-parser-jsonld-perl [U] - - ">0.001-4 ">0.001-5 - 0.001-5 - Git 0.001-5+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 4 0.001 libatteanx-serializer-rdfa-perl [U] - - ">0.110-2 (Uploader: js@debian.org)">0.110-4 - 0.110-4 - Git 0.110-4+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 2 0.110 libatteanx-store-dbi-perl [U] - - ">0.002-3 (Uploader: js@debian.org)">0.002-4 ">0.003-1 - 0.003-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ( ✔ ) ✔ 2 0.003 libatteanx-store-ldf-perl [U] - - ">0.04-3 (Uploader: alexandre.detiste@gmail.com)">0.04-4 - 0.04-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 1 0.04 libatteanx-store-lmdb-perl [U] - - (Uploader: js@debian.org)">0.001-2 (Uploader: js@debian.org)">0.001-3 - 0.001-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 4 0.001 libatteanx-store-sparql-perl [U] - - ">0.012-2 - 0.012-2 - Git 0.012-2+3 18× ✓ ✔ ✔ ✔ amd64, arm64, armhf, and 4 more ">MA ✔ ✔ ✔ 1 0.012 libbloom-filter-perl [U] - - ">1.2-4 ">1.2-5 ">1.2-6 - 1.2-6 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 6 1.2 libbread-board-perl [U] - - ">0.37-2 - 0.37-2 - Git 0.37-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.37 libcache-lru-perl [U] - - ">0.04-3 ">0.04-4 - 0.04-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 160 0.04 libcache-memcached-fast-perl [U] 1 - ">0.28-2 ">0.28-3 - 0.28-3 1 bug Git 0.28-3+2 ⎇ ✔ ✔ ✔ ✔ ✔ ∉ ∉ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ∉ ✔ ✔ S T U ✔ ✔ ✔ ✔ 225 0.28 libcal-dav-perl [U] - - ">0.6-4 ">0.6-5 - 0.6-5 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 15 0.6 libcanary-stability-perl [U] - - ">2006-4 ">2013-1 - 2013-1 - Git archive/debian/2013-1+1 1× ✓ ✔ ✔ ✔ MA ✔ ✔ ✔ 10 2013 libcatalyst-authentication-credential-http-perl [U] - - ">1.018-2 ">1.018-3 ">1.019-1 - 1.019-1 - Git ✔ 1× ✓ ✔ S ✔ ✔ ✔ ✔ 29 1.019 libcatalyst-view-petal-perl [U] - - ">0.03-1.1 (Uploader: alexandre.detiste@gmail.com)">0.03-2 - 0.03-2 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 20 0.03 libcatmandu-atom-perl [U] - - ">0.05-2 - 0.05-2 - Git 0.05-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 7 0.05 libcatmandu-filestore-perl [U] - - ">1.16-2 ">1.16-3 - 1.16-3 - Git 1.16-3+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 7 1.16 libcatmandu-importer-getjson-perl [U] 1 - ">0.52-2 - 0.52-2 - Git 0.52-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 11 0.52 libcatmandu-mab2-perl [U] - - ">0.24-2 - 0.24-2 - Git 0.24-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 6 0.24 libcatmandu-marc-perl [U] - - (Uploader: js@debian.org)">1.281-1 (Uploader: js@debian.org)">1.320-1 - 1.320-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 24 1.33 libcatmandu-mods-perl [U] - - ">0.31-3 ">0.31-4 - 0.31-4 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 9 0.31 libcatmandu-perl [U] - - (Uploader: js@debian.org)">1.2020-1 ">1.2024-1 - 1.2024-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 54 1.2025 libcatmandu-rdf-perl [U] - - ">0.32-3 - 0.32-3 - Git 0.32-3+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.32 libcatmandu-sru-perl [U] - - (Uploader: js@debian.org)">0.43.0-2 - 0.43.0-2 - Git 0.43.0-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.430 libcatmandu-store-mongodb-perl [U] - - (Uploader: js@debian.org)">0.0806-1 - 0.0806-1 - Git 0.0806-1+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 6 0.0806 libcatmandu-template-perl [U] - - (Uploader: js@debian.org)">0.14-1 - 0.14-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 7 0.14 libcatmandu-wikidata-perl [U] - - ">0.06-2 ">0.06-3 (Uploader: alexandre.detiste@gmail.com)">0.06-4 - 0.06-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.06 libcatmandu-xls-perl [U] - - (Uploader: js@debian.org)">0.10-1 - 0.10-1 - Git 0.10-2 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 9 0.11 libcatmandu-xml-perl [U] - - (Uploader: js@debian.org)">0.17-1 - 0.17-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 10 0.17 libcatmandu-xsd-perl [U] - - ">0.05-2 ">0.05-3 - 0.05-3 - Git 0.05-3+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 7 0.05 libcgi-expand-perl [U] - - ">2.05-6 (Uploader: alexandre.detiste@gmail.com)">2.05-7 - 2.05-7 - Git ✔ 1× ✓ ✔ S T U ✔ ✔ ✔ ✔ 63 2.05 libcgi-formbuilder-perl [U] 4 - ">3.10-6 ">3.20-1 - 3.20-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 292 3.20 libclass-accessor-class-perl [U] - - (Uploader: js@debian.org)">0.504-1 - 0.504-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 14 0.504 libcode-tidyall-perl [U] - - (Uploader: js@debian.org)">0.83~ds-1 ">0.84~ds-2 ">0.85~ds-1 - 0.85~ds-1 - Git ✔ 1× ✓ ✔ S T U ✔ ✔ ( ✔ ) ✔ 34 0.85 libcode-tidyall-plugin-sortlines-naturally-perl [U] - - ">0.000003-3 ">0.000003-4 - 0.000003-4 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 9 0.000003 libconfig-inifiles-perl [U] 1 - ">3.000003-2 ">3.000003-3 ">3.000003-4 - 3.000003-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 44265 3.000003 libconfig-onion-perl [U] - - ">1.007-2 ">1.007-3 (Uploader: alexandre.detiste@gmail.com)">1.007-4 - 1.007-4 - Git 1.007-4+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 64 1.007 libconfig-zomg-perl [U] - - ">1.000000-1.1 ">1.000000-2 (Uploader: alexandre.detiste@gmail.com)">1.000000-3 - 1.000000-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 12 1.000000 libconvert-tnef-perl [U] - - ">0.18-1.1 ">0.18-2 (Uploader: alexandre.detiste@gmail.com)">0.18-4 - 0.18-4 - Git ✔ 0.18-4+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 1888 0.18 libconvert-uulib-perl [U] 2 - ">1:1.8+dfsg-1 ">1:1.8+dfsg-2 ">1:1.8+dfsg-3 - 1:1.8+dfsg-3 - Git ✔ 18× ✓ ✔ T U ✔ ✔ ✔ ✔ 1784 1.8 libcpan-meta-check-perl [U] - - ">0.017-1 ">0.018-1 - 0.018-1 - Git 0.018-1+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 2256 0.018 libcrypt-random-source-perl [U] - - ">0.14-2 - 0.14-2 - Git archive/debian/0.14-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 157 0.14 libcrypt-util-perl [U] - - ">0.11-4 ">0.11-5 (Uploader: alexandre.detiste@gmail.com)">0.11-6 - 0.11-6 - Git ✔ 1× ✓ ✔ S T U ✔ ✔ ✔ ✔ 48 0.11 libcss-lessp-perl [U] - - ">0.86-3 (Uploader: alexandre.detiste@gmail.com)">0.86-4 - 0.86-4 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.86 libdancer-logger-psgi-perl [U] - - ">1.0.1-3 ">1.0.1-4 - 1.0.1-4 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 5 1.0.1 libdancer-plugin-dbic-perl [U] - - ">0.2104-3 (Uploader: etienne.mollier@mailoo.org)">0.2104-4 (Uploader: alexandre.detiste@gmail.com)">0.2104-5 - 0.2104-5 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 11 0.2104 libdancer-plugin-rest-perl [U] - - ">0.11-4 ">0.11-5 - 0.11-5 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.11 libdata-guid-perl [U] - - ">0.051-1 - 0.051-1 - Git 0.051-1+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 169 0.051 libdata-ical-datetime-perl [U] - - ">0.82-3 (Uploader: js@debian.org)">0.82-4 - 0.82-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 15 0.82 libdata-parsebinary-perl [U] - - ">0.31~dfsg-1.1 ">0.31~dfsg-2 (Uploader: alexandre.detiste@gmail.com)">0.31~dfsg-4 - 0.31~dfsg-4 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 20 0.31 libdata-printer-perl [U] - - (Uploader: js@debian.org)">1.001000-1 ">1.002001-1 - 1.002001-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 528 1.002001 libdata-record-perl [U] - - ">0.02-6 (Uploader: alexandre.detiste@gmail.com)">0.02-8 - 0.02-8 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 117 0.02 libdata-tablereader-perl [U] - - ">0.011-2 (Uploader: etienne.mollier@mailoo.org)">0.021-1 - 0.021-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 9 0.021 libdata-uuid-perl [U] - - ">1.226-3 ">1.227-1 - 1.227-1 - Git 1.227-1+1 18× ✓ ✔ S T U ✔ ✔ ✔ ✔ 691 1.227 libdatetime-format-xsd-perl [U] - - ">0.4-2 - 0.4-2 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 64 0.4 libdatetime-incomplete-perl [U] - - ">0.08-1.1 ">0.08-2 (Uploader: alexandre.detiste@gmail.com)">0.08-3 - 0.08-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 43 0.08 libdatetimex-auto-perl [U] - - ">0.009-2 - 0.009-2 - Git 0.009-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 10 0.009 libdbicx-sugar-perl [U] - - ">0.0200-3 - 0.0200-3 - Git 0.0200-3+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 44 0.0200 libdbix-multistatementdo-perl [U] - - ">1.00009-3 - 1.00009-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 1.00009 libdevel-callchecker-perl [U] - - ">0.008-2 ">0.009-2 - 0.009-2 - Git 0.009-2+1 18× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 51967 0.009 libdevel-callparser-perl [U] - - ">0.002-5 ">0.002-7 - 0.002-7 - Git 0.002-7+1 18× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 5 0.002 libdevel-strictmode-perl [U] - - ">0.003-3 ">0.003-4 (Uploader: alexandre.detiste@gmail.com)">0.003-5 - 0.003-5 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 15 0.003 libdispatch-class-perl [U] - - (Uploader: gregoa@debian.org)">0.02-4 ">0.04-1 - 0.04-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 60 0.04 libdist-inkt-doap-perl [U] - - (Uploader: js@debian.org)">0.110-3 - 0.110-3 - Git 0.110-3+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.110 libdist-inkt-perl [U] - - ">0.026-2 - 0.026-2 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 12 0.026 libdist-inkt-profile-tobyink-perl [U] - - ">0.024-2 ">0.024-3 ">0.024-5 - 0.024-5 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.024 libdist-inkt-role-git-perl [U] - - ">0.001-2 - 0.001-2 - Git 0.001-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.001 libdist-inkt-role-hg-perl [U] - - ">0.004-2 ">0.004-3 (Uploader: alexandre.detiste@gmail.com)">0.004-4 - 0.004-4 - Git 0.004-4+1 1× ✓ ✔ U ✔ ✔ ✔ ✔ 9 0.004 libdist-inkt-role-release-perl [U] - - ">0.004-3 ">0.004-4 (Uploader: alexandre.detiste@gmail.com)">0.004-5 - 0.004-5 - Git 0.004-5+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 9 0.004 libdist-inkt-role-test-kwalitee-perl [U] - - ">0.002-2 ">0.002-3 (Uploader: alexandre.detiste@gmail.com)">0.002-4 - 0.002-4 - Git 0.002-4+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 9 0.002 libdist-inkt-role-test-perl [U] - - ">0.002-2 ">0.002-3 (Uploader: alexandre.detiste@gmail.com)">0.002-4 - 0.002-4 - Git 0.002-3+2 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 9 0.002 libdynaloader-functions-perl [U] - - ">0.003-3 ">0.004-2 - 0.004-2 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 51989 0.004 libencode-zapcp1252-perl [U] - - ">0.40-2 ">0.40-3 - 0.40-3 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.40 libencoding-fixlatin-perl [U] - - ">1.04-3 ">1.04-4 (Uploader: alexandre.detiste@gmail.com)">1.04-5 - 1.04-5 - Git 1.04-5+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 35 1.04 libencoding-fixlatin-xs-perl [U] - - (Uploader: js@debian.org)">1.02-1 ">1.02-2 - 1.02-2 - Git ✔ 18× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 31 1.02 libex-monkeypatched-perl [U] - - ">0.03-2 ">0.03-3 (Uploader: alexandre.detiste@gmail.com)">0.03-4 - 0.03-4 - Git 0.03-3 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 158 0.03 libexporter-tiny-perl [U] - - (Uploader: js@debian.org)">1.006000-1 ">1.006002-1 (Uploader: gregoa@debian.org)">1.006003-1 - 1.006003-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 29134 1.006003 libfeature-compat-class-perl [U] - - (Uploader: js@debian.org)">0.05-1 (Uploader: js@debian.org)">0.07-1 ">0.08-1 - 0.08-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ( ✔ ) ✔ 6273 0.08 libfile-configdir-perl [U] - - ">0.021-2 - 0.021-2 - Git 0.021-2+1 1× ✓ ✔ ✔ ✔ MA ✔ ✔ ✔ 116 0.021 libfile-data-perl [U] - - ">1.20-3 ">1.20-4 (Uploader: alexandre.detiste@gmail.com)">1.20-5 - 1.20-5 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 10 1.20 libfile-zglob-perl [U] - - ">0.11-1.1 ">0.11-2 (Uploader: alexandre.detiste@gmail.com)">0.11-3 - 0.11-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 39 0.11 libfurl-perl [U] - - ">3.14-2 ">3.15-1 - 3.15-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 72 3.15 libgd-graph3d-perl [U] - - ">0.63-10 ">0.63-11 (Uploader: alexandre.detiste@gmail.com)">0.63-12 - 0.63-12 - Git ✔ 0.63-12+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 296 0.63 libgd-text-perl [U] - - (Uploader: gregoa@debian.org)">0.86-10 ">0.86-11 - 0.86-11 - Git 0.86-11+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 892 0.86 libgdchart-gd2 * - - ">0.11.5-10 (Uploader: pgtdebian@free.fr)">0.11.5-12.1 - 0.11.5-12.3 1 bug - Buildd Logs ✔ ✔ ✔ - - - 68 - libgeo-distance-perl [U] 2 - ">0.25-3 - 0.25-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 52 0.25 libgeo-googleearth-pluggable-perl [U] - - ">0.17-1 - 0.17-1 - Git 0.17-1+3 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 46 0.17 libgetopt-simple-perl [U] - - ">1.52-7 ">1.52-8 - 1.52-8 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 273 1.52 libgit-sub-perl [U] - - ">0.163320-3 - 0.163320-3 - Git 0.163320-3+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 14 0.163320 libhostfile-manager-perl [U] - - ">0.09-3 - 0.09-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 15 0.09 libhtml-defang-perl [U] - - ">1.07-2 ">1.08-1 - 1.08-1 - Git failed ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 32 1.08 libhtml-embedded-turtle-perl [U] - - (Uploader: js@debian.org)">0.404-2 - 0.404-2 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 1 0.404 libhtml-html5-builder-perl [U] - - ">0.004-3 ">0.004-4 ">0.004-6 - 0.004-6 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 11 0.004 libhtml-html5-microdata-parser-perl [U] - - (Uploader: js@debian.org)">0.100-3 - 0.100-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 2 0.100 libhtml-html5-outline-perl [U] - - ">0.006-4 - 0.006-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 6 0.006 libhtml-html5-parser-perl [U] 1 - ">0.992-2 - 0.992-2 1 bug Git ✔ 1× ✓ ✔ S T U ✔ ✔ ✔ ✔ 58 0.992 libhtml-html5-sanity-perl [U] - - ">0.105-5 - 0.105-5 - Git 0.105-5+1 1× ✓ ✔ S T U ✔ ✔ ✔ ✔ 65 0.105 libhtml-html5-writer-perl [U] - - ">0.201-3 ">0.201-4 ">0.201-6 - 0.201-6 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 34 0.201 libhtml-lint-perl [U] 1 ( 2 ) - ">2.32+dfsg-1.1 - 2.32+dfsg-1.1 2 bugs Git 2.32+dfsg-2 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 567 2.32 libhtml-microformats-perl [U] - - (Uploader: js@debian.org)">0.105-6 - 0.105-6 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 13 0.105 libhtml-treebuilder-libxml-perl [U] - - ">0.26-3 (Uploader: js@debian.org)">0.28-1 - 0.28-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 2591 0.28 libhtml-wikiconverter-dokuwiki-perl [U] - - ">0.53-2.1 ">0.53-3 (Uploader: alexandre.detiste@gmail.com)">0.53-4 - 0.53-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 28 0.53 libhtml-wikiconverter-mediawiki-perl [U] 1 - ">0.59-3 - 0.59-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 20 0.59 libhtml-wikiconverter-moinmoin-perl [U] - - (Uploader: gregoa@debian.org)">0.54-2 - 0.54-2 - Git ✔ 0.54-2+2 1× ✓ ✔ S T U ✔ ✔ ✔ ✔ 17 0.54 libhtml-wikiconverter-perl [U] 1 - ">0.68-4 - 0.68-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 58 0.68 libhttp-headers-actionpack-perl [U] - - ">0.09-2 ">0.09-3 (Uploader: alexandre.detiste@gmail.com)">0.09-4 - 0.09-4 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 31 0.09 libhttp-link-parser-perl [U] - - ">0.200-1.1 ">0.200-2 (Uploader: alexandre.detiste@gmail.com)">0.200-3 - 0.200-3 - Git 0.200-2 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 36 0.200 libhttp-link-perl [U] - - ">0.001-3 - 0.001-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.001 libhttp-lrdd-perl [U] - - (Uploader: js@debian.org)">0.106-3 - 0.106-3 - Git 0.106-3+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 13 0.106 libhttp-throwable-perl [U] - - ">0.028-1 - 0.028-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 12 0.028 libicon-famfamfam-silk-perl [U] - - ">0.002001003-1.1 ">0.002001003-2 ">0.002001003-4 - 0.002001003-4 - Git ✔ 0.002001003-4+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 19 0.002001003 libinline-java-perl [U] - - ">0.67-1 ">0.67-2 - 0.67-2 - Git 0.67-2+1 ⎇ ✔ ✔ ✔ ✔ ∉ ✘ ✘ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ S T U ✔ ✔ ✔ ✔ 19 0.67 libio-callback-perl [U] - - (Uploader: js@debian.org)">2.00-1 - 2.00-1 - Git 2.00-1+1 1× ✓ ✔ ✔ ✔ MA ✔ ✔ ✔ 7 2.00 libio-html-perl [U] - - ">1.004-3 - 1.004-3 2 bugs Git archive/debian/1.004-3+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 182139 1.004 libiri-perl [U] - - ">0.011-2 ">0.013-1 - 0.013-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 100 0.013 libjs-bootbox [U] - - (Uploader: js@debian.org)">5.5.3~ds-1 (Uploader: x.guimard@free.fr)">6.0.3~ds-1 Excuse 5.5.3~ds-1 - Git ✔ 1× ✓ 1× ✓ ✔ U ✔ ⊖ ⊖ ✔ 119 6.0.4 libjs-img.srcset [U] - - - (Uploader: x.guimard@free.fr)">2.0.0~20131003~dfsg-4 - - - Buildd Logs ✔ ✔ ✔ - - - 4 - libjs-qunit [U] 1 - ">1.23.1~dfsg-3.2 - 1.23.1~dfsg-3.2 - Git 1.23.1~dfsg-3 1× ✓ ✔ U ✔ - - ✔ 21 1.23.1 libjs-sdp [U] - - (Uploader: js@debian.org)">3.2.0+~2.14.1+~1.0.1-1 - 3.2.0+~2.14.1+~1.0.1-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ⊖ ⊖ ✔ 12 3.2.1+~3.0.0+~2.3.2 libjs-toastr [U] - - ">2.1.4~ds-5 - 2.1.4~ds-5 - Git ✔ 1× ✓ ✔ ✔ ✔ ⊖ ⊖ ✔ 36 2.1.4 libjs-webrtc-adapter [U] 1 - (Uploader: js@debian.org)">8.2.0~ds-1 (Uploader: x.guimard@free.fr)">8.2.3~ds-1 - 8.2.3~ds-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ⊖ ⊖ ✔ 39 9.0.3 libjson-types-perl [U] - - ">0.05-3 ">0.05-4 (Uploader: alexandre.detiste@gmail.com)">0.05-5 - 0.05-5 - Git 0.05-5+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 16 0.05 libjson-webtoken-perl [U] - - ">0.10-4 ">0.10-5 - 0.10-5 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 550 0.10 libjsonld-perl [U] - - (Uploader: js@debian.org)">0.005-1 ">0.006-1 - 0.006-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 6 0.006 libkiokux-model-perl [U] - - ">0.02-2 ">0.02-3 (Uploader: alexandre.detiste@gmail.com)">0.02-4 - 0.02-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 6 0.02 liblexical-accessor-perl [U] - - ">0.014-2 ">1.000002-1 - 1.000002-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ( ✔ ) ✔ 7 1.000003 liblexical-underscore-perl [U] - - ">0.004-2 ">0.004-3 (Uploader: alexandre.detiste@gmail.com)">0.004-4 - 0.004-4 - Git 0.004-4+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 67 0.004 liblingua-sentence-perl [U] - - ">1.100-3 - 1.100-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 6 1.100 liblinux-io-prio-perl [U] - - ">0.03-4 ">0.03-5 (Uploader: alexandre.detiste@gmail.com)">0.03-6 - 0.03-6 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 22 0.03 liblist-objects-withutils-perl [U] - - (Uploader: js@debian.org)">2.028003-4 ">2.028003-5 - 2.028003-5 - Git ✔ 1× ✓ ✔ S T U ✔ ✔ ✔ ✔ 6 2.028003 liblist-utilsby-xs-perl [U] - - (Uploader: js@debian.org)">0.06-1 ">0.06-2 - 0.06-2 - Git ✔ 18× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 11 0.06 liblmdb-file-perl [U] - - (Uploader: js@debian.org)">0.12-4 ">0.13-3 ">0.14-1 - 0.14-1 - Git ✔ ⎇ ✔ ✔ ✔ ✔ ∿ ✔ ✔ ✔ ✔ ✔ ∿ ✔ ✔ ✔ ✔ ✔ ∿ ✔ ✔ T U ✔ ✔ ✔ ✔ 9 0.14 liblog-any-adapter-screen-perl [U] - - (Uploader: js@debian.org)">0.140-2 (Uploader: etienne.mollier@mailoo.org)">0.141-1 - 0.141-1 - Git 0.141-1+3 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 7791 0.141 liblog-any-adapter-tap-perl [U] - - ">0.3.3-2 (Uploader: alexandre.detiste@gmail.com)">0.3.3-3 - 0.3.3-3 - Git 0.3.3-2 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 12 0.003003 liblog-dispatch-message-passing-perl [U] - - ">0.009-5 ">0.009-6 - 0.009-6 - Git 0.009-6+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 3 0.009 liblwp-protocol-psgi-perl [U] - - ">0.11-2 - 0.11-2 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 37 0.11 liblwp-useragent-chicaching-perl [U] - - (Uploader: etienne.mollier@mailoo.org)">0.04-2 (Uploader: alexandre.detiste@gmail.com)">0.04-3 - 0.04-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 60 0.04 libmagpie-perl [U] - - ">1.163200-4 (Uploader: alexandre.detiste@gmail.com)">1.163200-5 - 1.163200-5 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 6 1.163200 libmarc-file-marcmaker-perl [U] - - ">0.05-3 ">0.05-4 (Uploader: alexandre.detiste@gmail.com)">0.05-5 - 0.05-5 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 31 0.05 libmarc-file-mij-perl [U] - - ">0.04-3 ">0.04-4 (Uploader: alexandre.detiste@gmail.com)">0.04-6 - 0.04-6 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 157 0.04 libmarc-parser-raw-perl [U] - - ">0.06-2 - 0.06-2 - Git 0.06-2+1 1× ✓ ✔ ✔ ✔ MA ✔ ✔ ✔ 28 0.06 libmarkdent-perl [U] - - (Uploader: js@debian.org)">0.40-1 ">0.40-2 - 0.40-2 - Git ✔ 1× ✓ ✔ U ✔ ✔ ✔ ✔ 25 0.40 libmarpa - - - (Uploader: js@debian.org)">6.1.0~dfsg-2 Excuse - Git ✔ ⎇ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ⌂ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ - - - - - libmarpa-r2-perl [U] - - ">2.086000~dfsg-8 ">2.086000~dfsg-10 ">12.000000-1 - 12.000000-1 - Git ✔ ✔ ⎇ ✔ ✔ ✔ ✔ ∿ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ S T U ✔ ✔ ✔ ✔ 45 12.000000 libmatch-simple-perl [U] - - ">0.010-3 ">0.012-1 - 0.012-1 - Git 0.012-1+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 3973 0.012 libmatch-simple-xs-perl [U] - - ">0.001-3 ">0.002-1 - 0.002-1 - Git 0.002-1+1 18× ✓ ✔ S T U ✔ ✔ ✔ ✔ 3856 0.002 libmath-cartesian-product-perl [U] - - ">1.009-3 ">1.009-4 - 1.009-4 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 27 1.009 libmessage-passing-amqp-perl [U] - - ">0.008-2 - 0.008-2 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.008 libmessage-passing-filter-regexp-perl [U] - - ">0.05-3 (Uploader: christian@hofstaedtler.name)">0.05-5 (Uploader: alexandre.detiste@gmail.com)">0.05-6 - 0.05-6 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 5 0.05 libmessage-passing-perl [U] 1 - (Uploader: js@debian.org)">0.117-1 - 0.117-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 24 0.117 libmessage-passing-zeromq-perl [U] - - ">0.010-3 (Uploader: alexandre.detiste@gmail.com)">0.010-4 - 0.010-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ fail ✔ 22 0.010 libmethod-autoload-perl [U] - - ">0.02-2.1 ">0.02-3 (Uploader: alexandre.detiste@gmail.com)">0.02-4 - 0.02-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 46 0.02 libmime-ecoencode-perl [U] - - ">0.95-3 - 0.95-3 - Git 0.95-4 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 13 0.95 libmods-record-perl [U] - - ">0.13-2 - 0.13-2 - Git 0.13-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 9 0.13 libmodule-install-authorrequires-perl [U] - - ">0.02-1.1 ">0.02-2 (Uploader: alexandre.detiste@gmail.com)">0.02-3 - 0.02-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.02 libmodule-install-authortests-perl [U] - - ">0.002-3 ">0.002-4 (Uploader: alexandre.detiste@gmail.com)">0.002-6 - 0.002-6 - Git ✔ 0.002-6+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 63 0.002 libmodule-install-autolicense-perl [U] - - ">0.10-2 - 0.10-2 - Git 0.10-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 6 0.10 libmodule-install-automanifest-perl [U] - - ">0.003-5 - 0.003-5 - Git 0.003-5+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 7 0.003 libmodule-install-contributors-perl [U] - - ">0.001-2 ">0.001-3 (Uploader: debian-tag2upload@lists.debian.org)">0.001-4 - 0.001-4 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 7 0.001 libmodule-install-copyright-perl [U] - - ">0.009-2 (Uploader: christian@hofstaedtler.name)">0.009-4 (Uploader: alexandre.detiste@gmail.com)">0.009-5 - 0.009-5 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 5 0.009 libmodule-install-doap-perl [U] - - (Uploader: gregoa@debian.org)">0.006-2 (Uploader: christian@hofstaedtler.name)">0.006-4 (Uploader: alexandre.detiste@gmail.com)">0.006-5 - 0.006-5 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 4 0.006 libmodule-install-doapchangesets-perl [U] - - ">0.206-2 (Uploader: christian@hofstaedtler.name)">0.206-4 (Uploader: alexandre.detiste@gmail.com)">0.206-5 - 0.206-5 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 4 0.206 libmodule-install-extratests-perl [U] - - ">0.008-3 ">0.008-4 ">0.008-5 - 0.008-5 - Git ✔ UNREL 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 4 0.008 libmodule-install-manifestskip-perl [U] - - ">0.24-2 ">0.24-3 (Uploader: alexandre.detiste@gmail.com)">0.24-4 - 0.24-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 7 0.24 libmodule-install-rdf-perl [U] - - ">0.009-2 (Uploader: christian@hofstaedtler.name)">0.009-4 (Uploader: alexandre.detiste@gmail.com)">0.009-5 - 0.009-5 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 7 0.009 libmodule-install-readmefrompod-perl [U] - - ">0.30-4 - 0.30-4 - Git 0.30-4+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 11 0.30 libmodule-install-trustmetayml-perl [U] - - ">0.003-3 ">0.003-4 (Uploader: alexandre.detiste@gmail.com)">0.003-5 - 0.003-5 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 5 0.003 libmodule-manifest-skip-perl [U] - - ">0.23-2 ">0.23-3 (Uploader: alexandre.detiste@gmail.com)">0.23-4 - 0.23-4 - Git ✔ 0.23-4+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 193 0.23 libmodule-package-perl [U] - - ">0.30-4 ">0.30-5 (Uploader: alexandre.detiste@gmail.com)">0.30-6 - 0.30-6 - Git ✔ UNREL 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 7 0.30 libmodule-package-rdf-perl [U] - - (Uploader: js@debian.org)">0.014-2 - 0.014-2 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 4 0.014 libmoosex-arrayref-perl [U] - - ">0.005-2 (Uploader: christian@hofstaedtler.name)">0.005-4 (Uploader: alexandre.detiste@gmail.com)">0.005-5 - 0.005-5 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 94 0.005 libmoosex-attributetags-perl [U] 1 - (Uploader: js@debian.org)">0.005-1 - 0.005-1 - Git 0.005-2 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 13 0.005 libmoosex-mungehas-perl [U] - - ">0.011-2 - 0.011-2 - Git 0.011-3 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 11 0.011 libmoosex-runnable-perl [U] - - ">0.10-2 - 0.10-2 - Git 0.10-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.10 libmoosex-undeftolerant-perl [U] - - ">0.21-2 - 0.21-2 - Git 0.21-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 47 0.21 libmoosex-xsaccessor-perl [U] - - ">0.009-2 (Uploader: etienne.mollier@mailoo.org)">0.010-1 - 0.010-1 - Git 0.010-1+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 11 0.010 libmoox-aliases-perl [U] - - ">0.001006-2 - 0.001006-2 - Git archive/debian/0.001006-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 23631 0.001006 libmoox-cmd-perl [U] - - ">0.017-2 - 0.017-2 - Git 0.017-2+1 1× ✓ ✔ S T U ✔ ✔ ✔ ✔ 9 0.017 libmoox-configfromfile-perl [U] - - ">0.009-3 - 0.009-3 - Git 0.009-3+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 113 0.009 libmoox-file-configdir-perl [U] - - (Uploader: js@debian.org)">0.008-1 - 0.008-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 113 0.008 libmoox-log-any-perl [U] - - ">0.004004-2 ">0.004004-3 (Uploader: alexandre.detiste@gmail.com)">0.004004-4 - 0.004004-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 25 0.004004 libmoox-options-perl [U] - - ">4.103-4 ">4.103-5 - 4.103-5 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 113 4.103 libmoox-role-logger-perl [U] - - ">0.005-2 (Uploader: alexandre.detiste@gmail.com)">0.005-3 - 0.005-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 23 0.005 libmoox-strictconstructor-perl [U] - - ">0.011-2 ">0.013-1 - 0.013-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 384 0.013 libmoox-struct-perl [U] - - ">0.020-2 - 0.020-2 - Git 0.020-2+3 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 789 0.020 libnamespace-sweep-perl [U] - - ">0.006-3 ">0.006-4 (Uploader: alexandre.detiste@gmail.com)">0.006-5 - 0.006-5 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 41 0.006 libnet-amqp-perl [U] - - ">0.06~dfsg-4 ">0.06~dfsg-5 - 0.06~dfsg-5 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 24 0.06 libnet-jabber-bot-perl [U] 1 - ">2.1.7-2 - 2.1.7-2 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 6 2.1.7 libnet-netmask-perl [U] - - ">2.0002-2 ">2.0003-1 - 2.0003-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 27495 2.0003 libnet-statsd-perl [U] - - ">0.12-3 ">0.12-4 (Uploader: alexandre.detiste@gmail.com)">0.12-5 - 0.12-5 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 0.12 libnetsds-kannel-perl [U] - - ">1.300-7 - 1.300-7 - Git 1.300-7+1 1× ✓ ✔ ✔ ✔ ⊖ ⊖ ✔ 5 1.300 libnetsds-perl [U] - - ">1.301-4 - 1.301-4 - Git archive/debian/1.301-4+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 6 1.301 libnetsds-util-perl [U] - - ">1.045-2 - 1.045-2 - Git 1.045-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 7 1.045 libnumber-fraction-perl [U] - - ">3.0.4-1 ">3.1.0-1 - 3.1.0-1 - Git 3.1.0-1+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 8 3.1.0 libobject-pad-classattr-struct-perl [U] - - (Uploader: js@debian.org)">0.05-1 ">0.06-4 - 0.06-4 - Git ✔ 18× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 3 0.06 libobject-pad-perl [U] - - (Uploader: js@debian.org)">0.78-1 ">0.820-1 ">0.823-2 - 0.823-2 - Git ✔ 18× ✓ ✔ S T U ✔ ✔ ( ✔ ) ✔ 6535 0.823 libosip2 [U] - - (Uploader: bastian.germann@linutronix.de)">5.3.0-2.1 ">5.3.1-1.1 - 5.3.1-1.1 1 bug Git !1 5.3.1-1 ⎇ ✔ ✔ ✔ ✔ ✔ ✘ ✘ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ - - ✔ 37 5.3.1 libowl-directsemantics-perl [U] - - (Uploader: js@debian.org)">0.001-3 - 0.001-3 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 1 0.001 libpackage-variant-perl [U] - - ">1.003002-2 - 1.003002-2 - Git 1.003002-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 666 1.003002 libpandoc-elements-perl [U] - - (Uploader: js@debian.org)">0.38-6 (Uploader: js@debian.org)">0.38-7 - 0.38-7 - Git ✔ 1× ✓ ✔ ✔ ✔ MA ✔ ✔ ✔ 28 0.38 libpandoc-wrapper-perl [U] - - ">0.9.1-6 (Uploader: js@debian.org)">0.9.2-1 - 0.9.2-1 - Git ✔ 1× ✓ ✔ U ✔ ✔ ✔ ✔ 32 0.9.2 libparser-mgc-perl [U] - - (Uploader: js@debian.org)">0.21-1 (Uploader: etienne.mollier@mailoo.org)">0.22-1 ">0.23-1 - 0.23-1 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 78 0.23 libpath-iterator-rule-perl [U] - - ">1.015-2 - 1.015-2 - Git 1.015-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 7419 1.015 libpath-router-perl [U] - - ">0.15-2 (Uploader: christian@hofstaedtler.name)">0.15-4 (Uploader: alexandre.detiste@gmail.com)">0.15-5 - 0.15-5 - Git ✔ 1× ✓ ✔ S ✔ ✔ ✔ ✔ 7 0.15 libpath-tiny-perl [U] - - (Uploader: js@debian.org)">0.144-1 ">0.148-1 - 0.148-1 - Git 0.150-1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 30224 0.150 libperl6-export-attrs-perl [U] - - ">0.000006-2 - 0.000006-2 - Git 0.000006-3 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 14 0.000006 libperlanet-perl [U] - - ">2.2.1-1 - 2.2.1-1 - Git 2.2.1-1+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 9 3.3.4 libperlx-assert-perl [U] - - ">0.905-2 ">0.905-3 (Uploader: alexandre.detiste@gmail.com)">0.905-4 - 0.905-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 12 0.905 libperlx-define-perl [U] - - ">0.101-5 - 0.101-5 - Git 0.101-5+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 9 0.101 libperlx-maybe-perl [U] - - ">1.202-1 - 1.202-1 - Git 1.202-1+2 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 192 1.202 libperlx-maybe-xs-perl [U] - - ">1.001-4 ">1.001-7 - 1.001-7 - Git 1.001-7+1 18× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 172 1.001 libplack-middleware-crossorigin-perl [U] - - ">0.014-2 - 0.014-2 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 14 0.014 libplack-middleware-expires-perl [U] - - ">0.06-2 ">0.06-3 - 0.06-3 - Git ✔ ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 16 0.06 libplack-middleware-file-sass-perl [U] - - ">0.03-5 ">0.03-6 (Uploader: alexandre.detiste@gmail.com)">0.03-7 - 0.03-7 - Git 0.03-6 1× ✓ ✔ S T U ✔ ✔ ✔ ✔ 3 0.03 libplack-middleware-logany-perl [U] - - ">0.001-3 (Uploader: js@debian.org)">0.002.001-1 - 0.002.001-1 - Git 0.002.001-1+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 4 0.002001 libplack-middleware-logerrors-perl [U] - - (Uploader: js@debian.org)">0.003-1 - 0.003-1 - Git 0.003-2 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 9 0.003 libplack-middleware-logwarn-perl [U] - - ">0.001002-2 ">0.001002-3 (Uploader: alexandre.detiste@gmail.com)">0.001002-4 - 0.001002-4 - Git ✔ 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 140 0.001002 libplack-test-anyevent-perl [U] - - ">0.08-2 - 0.08-2 - Git 0.08-2+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 5 0.08 libposix-atfork-perl [U] - - ">0.04-2 - 0.04-2 - Git ✔ 18× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 242 0.04 librandomx [U] 1 - (Uploader: bastian.germann@linutronix.de)">1.1.10-2 (Uploader: bastian.germann@linutronix.de)">1.1.10-3 - 1.1.10-3 1 bug Git ✔ ⎇ ✔ ✔ ✔ ✔ ✔ ✘ ✘ ✔ ∉ ∿ ✔ ✔ ✔ ✔ ✔ ∉ ✔ ∉ ✔ U ✔ - - ✔ 144 1.2.1 librdf-acl-perl [U] - - ">0.104-2 ">0.104-3 (Uploader: alexandre.detiste@gmail.com)">0.104-4 - 0.104-4 - Git ✔ 0.104-4+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 1 0.104 librdf-aref-perl [U] - - ">0.28-2 - 0.28-2 - Git 0.28-3 1× ✓ ✔ S T U ✔ ✔ ✔ ✔ 10 0.28 librdf-closure-perl [U] - - (Uploader: js@debian.org)">0.001-5 - 0.001-5 - Git 0.001-5+1 1× ✓ ✔ ✔ ✔ ✔ ✔ ✔ 3 0.001 librdf-doap-lite-perl [U] - - ">0.002-2 ">0.002-4 | 2026-01-13T09:30:28 |
https://yarnpkg.com/configuration/manifest#packageManager | Manifest (package.json) | Yarn Skip to main content Yarn Get Started Features CLI Configuration Advanced Blog API master (4.12.0-dev) master (4.12.0-dev) 3.8.7 1.22.22 Discord GitHub Search Manifest (package.json) Settings (.yarnrc.yml) Manifest (package.json) Manifest (package.json) Manifest files (also called package.json because of their name) contain everything needed to describe the settings unique to one particular package. Project will contain multiple such manifests if they use the workspace feature, as each workspace is described through its own manifest. Note that defaults for these fields can be set via the initFields settings. name Name of the package. Used to identify it across the application, especially amongst multiple workspaces. The first part of the name (here @scope/ ) is optional and is used as a namespace). name : "@scope/name" , version Version of the package. Usually doesn't have any impact on your project, except when it is a workspace - then its version must match the specified ranges for the workspace to be selected as resolution candidate. version : "1.2.3" , packageManager Define the package manager that should be used when working on this project. This field is used by Corepack and similar tools to detect the Yarn version in use in a project - in a sense, it has the same purpose as your lockfile, but only for Yarn itself. Yarn will automatically set this value when running yarn set version . packageManager : "yarn@4.0.0" , type Define how should be interpreted .js files. A Node.js v13.x option . Possible values are commonjs (the default) and module . Yarn 3+ will generate a .pnp.cjs file when using PnP regardless of this option. type : "commonjs" | "module" , private Define whether the package is meant to be published. If true, the package is considered private and Yarn will refuse to publish it regardless of the circumstances. private : true , license SPDX identifier defining the license under which the package is distributed. license : "MIT" , os Set of platforms on which this package works. The value of process.platform() will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. os : [ "linux" , "darwin" , "win32" , ] , cpu Set of CPU architectures on which this package works. The value of process.arch() will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. cpu : [ "x64" , "ia32" , "arm64" , ] , libc Set of C standard libraries on which this package depends. The host standard library will be compared at install-time against this set. Should no matches be found, any postinstall script the package define will be skipped. If the package was exclusively depended upon via optionalDependencies entries, the package won't be installed at all. libc : [ "glibc" , "musl" , ] , main Path of the file that should be resolved when requiring the package via a bare identifier. This field can be modified at publish-time through the use of the publishConfig.main field. main : "./sources/index.js" , module Path of the file that should be resolved when requiring the package via a bare identifier in an ES6-compatible bundler environment. This field should be considered deprecated, with exports being its official replacement. module : "./sources/index.mjs" , languageName Arbitrary value selecting the linker to use when installing the dependency. This is an internal package setting that shouldn't be touched unless you really know what you're doing. languageName : "node" , bin Set of files to expose via yarn run bin-name and the shell environment. If set to a string, the binary value will be the package name (not including its scope part). bin : { my-bin : "./dist/my-bin.js" , } , scripts Set of scripts to expose via yarn run script-name , or as lifecycle hooks. Scripts in Yarn are executed by a POSIX-like shell which implements most features you would want to use in one-liner scripts. For example you can assign environment variables using the POSIX syntax, and Yarn will make it work across both Linux, OSX, and Windows. scripts : { test : "NODE_OPTIONS='--max-old-space-size=2048' jest" , build : "webpack-cli --config ./webpack.config.js" , count-words : "echo \"$@\" | wc -w" , } , dependencies Set of dependencies that must be made available to the current package in order for it to work properly. Consult the protocol documentation for more information. dependencies : { webpack : "^5.0.0" , } , optionalDependencies Set of dependencies that Yarn should only try to install if the os/cpu/libc fields match those of the host platform. Unlike regular dependencies, those listed in optionalDependencies are allowed to have a failing postinstall step - in fact, they won't even be installed at all if the os/cpu/libc filters don't cover the host platform. Note that optionalDependencies only cares about whether the package should install/build or not - it should still be resolvable, as otherwise it's impossible to tell whether a failure to retrieve the package metadata is intentional or not. optionalDependencies : { fsevents : "^5.0.0" , } , devDependencies Set of dependencies that must be made available to the current package in order for it to work properly as a workspace. Unlike regular dependencies, those listed in devDependencies will only be required when the package is installed as part of a workspace project - usually by cloning the project repository then running yarn install inside it. devDependencies : { webpack : "^5.0.0" , } , peerDependencies Set of dependencies that the package must inherit from its ancestor in the dependency tree. The semantic of peer dependencies guarantee that when the package require the dependency, it will be returned the exact same object instance as the one that would be returned to the package's ancestor. This mechanism makes peer dependencies the best way to share singleton states across multiple packages. As an extension, Yarn supports "peer dependencies with default": dependencies listed in both the dependencies and a peerDependencies fields will try to solve the peer dependency first, but will fallback to the regular dependency if it can't be satisfied otherwise. peerDependencies : { react : "*" , react-dom : "*" , } , workspaces Array of folder glob patterns referencing the workspaces of the project. Workspaces are an optional feature used by monorepos to split a large project into semi-independent subprojects, each one listing their own set of dependencies. The workspaces field is a list of glob patterns that match all directories that should become workspaces of your application. Consult the workspaces documentation for more information. workspaces : [ "packages/*" , ] , dependenciesMeta Extra settings affecting how the dependencies and devDependencies fields are interpreted. In the context of a workspaced project most of these settings will affect all workspaces and as such must be specified at the root of the project. Unless noted otherwise, the dependenciesMeta field will be ignored if found within a workspace. dependenciesMeta : { fsevents : { dependenciesMeta.built Define whether to run the postinstall script or not. If false, the package will never be built (deny-list). This behavior is reversed when the enableScripts yarnrc setting is toggled off - when that happens, only packages with built explicitly set to true will be built (allow-list); as for those with built explicitly set to false , they will simply see their build script warnings downgraded into simple notices. built : false , dependenciesMeta.optional Define whether the dependency is optional or not. Unlike most other settings in dependenciesMeta , optional is allowed anywhere in the dependency tree. It has the exact same effect as optionalDependencies - in fact, that's internally what optionalDependencies compiles down to. optional : false , dependenciesMeta.unplugged Define whether the package must be unplugged or not. If true, the specified package will be automatically unplugged at install time. This should only be needed for packages that contain scripts in other languages than Javascript (for example nan contains C++ headers). unplugged : true , } , } , peerDependenciesMeta Extra settings affecting how the peerDependencies field is interpreted. Unlike dependenciesMeta , peerDependenciesMeta is allowed in any parts of the dependency tree. peerDependenciesMeta : { react-dom : { peerDependenciesMeta.optional Define whether to log a warning when the peer dependency can't be satisfied. If true, the selected peer dependency will be marked as optional by the package manager, silencing any warning we would otherwise emit. optional : true , } , } , resolutions Override the resolutions of specific dependencies. This field allows you to instruct Yarn to use a specific resolution (specific package version) instead of anything the resolver would normally pick. This is useful to enforce all your packages to use a single version of a dependency, or backport a fix. The syntax for the resolution key accepts one level of specificity, so all the following examples are correct. Note: When a path is relative, like it can be with the file: and portal: protocols, it is resolved relative to the path of the project. Note: The resolutions field can only be set at the root of the project, and will generate a warning if used in any other workspace. resolutions : { relay-compiler : "3.0.0" , webpack/memory-fs : "0.4.1" , @babel/core/json5 : "2.1.0" , @babel/core/@babel/generator : "7.3.4" , @babel/core@npm:7.0.0/@babel/generator : "7.3.4" , } , preferUnplugged Define whether the package must be unplugged or not. While Yarn attempts to reference and load packages directly from their zip archives, it may not always be possible. A heuristic tries to detect cases where zip-loading would be problematic and unpack the files on disk instead but, being just a heuristic, it may report incorrect results. The preferUnplugged field lets you define yourself, as a package author, whether your package works or not when stored as an archive. If set, it will override the default heuristic. preferUnplugged : false , files Array of file glob patterns that will be included within the published tarball. File patterns follow a similar syntax to .gitignore , but reversed: including a file, directory, or glob pattern ( * , **/* , and such) will make it so that file is included in the tarball when it’s packed. Omitting the field will make it default to ["*"] , which means it will include all files. If this field is missing, Yarn will use the project's .gitignore to generate the pack list, or the .npmignore file instead if available. Some special files and directories are also included or excluded regardless of whether they exist in the files array. files : [ "dist/**/*" , "lib/**/*" , ] , publishConfig Extra settings affecting how the package is published. publishConfig : { publishConfig.access Define the access to use when publishing the package. Valid values are public and restricted , but restricted usually requires to register for a paid plan (this is up to the registry you use). access : "public" | "restricted" , publishConfig.bin Replacement of the package's bin field, used in the published tarball over the main one. bin : "./build/bin.js" , publishConfig.browser Replacement of the package's browser field, used in the published tarball over the main one. browser : "./build/browser.js" , publishConfig.executableFiles Set of files that must be marked as executable (+x) in the published tarball. executableFiles : [ "./dist/shim.js" , ] , publishConfig.main Replacement of the package's main field, used in the published tarball over the main one. main : "./build/index.js" , publishConfig.module Replacement of the package's module field, used in the published tarball over the main one. module : "./build/index.mjs" , publishConfig.provenance Define whether to produce a provenance statement for the package when publishing. Overrides all other provenance settings. provenance : true , publishConfig.registry If present, will replace whatever registry is defined in the configuration when the package is about to be pushed to a remote location. registry : "https://npm.pkg.github.com" , publishConfig.type Replacement of the package's type field, used in the published tarball over the main one. type : "./build/index.d.ts" , } , installConfig Extra settings affecting how the package is installed. installConfig : { installConfig.hoistingLimits Defines the highest point where packages can be hoisted. See nmHoistingLimits for more information. hoistingLimits : "workspaces" | "dependencies" | "none" , installConfig.selfReferences Defines whether workspaces are allowed to require themselves. See nmSelfReferences for more information. selfReferences : true , } , Edit this page Next Settings (.yarnrc.yml) Copyright © 2026 Yarn Contributors, Inc. Built with Docusaurus. | 2026-01-13T09:30:28 |
https://classic.yarnpkg.com/blog | Blog | Yarn Important: This documentation covers Yarn 1 (Classic). For Yarn 2+ docs and migration guide, see yarnpkg.com. Yarn Getting Started Docs Packages Blog Discord Discord Twitter Twitter Facebook Facebook GitHub GitHub Blog Recommended security update Posted Jul 12, 2019 by Maël Nison We’ve been made aware of a potential attack vector in the way some data are stored in the lockfile. We recommend to upgrade Yarn to the latest 1.17.3 release as soon as you get the chance. We also recommend you to edit your lockfiles to replace any reference to the http: protocol: Yarn import now uses package-lock.json Posted Jun 4, 2018 by Aram Drevekenin For a while now, the JavaScript ecosystem is a host to a few different dependency lock file formats, including yarn’s yarn.lock and npm’s package-lock.json . Ease the Transition to a Monorepo with Focused Workspaces Posted May 18, 2018 by Bryan Wain Previously , we wrote about monorepos and how Yarn Workspaces makes working with them simpler. Unfortunately, moving to a monorepo is not always an easy choice. Without the right tooling, a monorepo can often harm the developer experience instead of help it. Dependencies Done Right Posted Apr 18, 2018 by Maël Nison Let’s say we want to write a React plugin. Since we’ll need to require the react package, we add it to our dependencies like this: nohoist in Workspaces Posted Feb 15, 2018 by V. Sun As wonderful as yarn workspaces are, the rest of the community hasn’t yet fully caught up with the monorepo hoisting scheme. The introducing of the nohoist is the attempt to provide an easy-to-use mechanism, natively supported by yarn, for enabling workspaces to work with otherwise incompatible libraries. Yarn 1.0 is Here Posted Sep 7, 2017 by Burak Yigit Kaya After a long wait, Yarn 1.0 is out ! Workspaces in Yarn Posted Aug 2, 2017 by Konstantin Raev Projects tend to grow over time, and, occasionally, some pieces of a project can be useful elsewhere in other projects. For example, Jest , being a generic testing tool, gave birth to many packages, one of them is jest-snapshot that is now used in other projects like snapguidist and chai-jest-snapshot . Let's Dev: A Package Manager Posted Jul 11, 2017 by Maël Nison Hello everyone! Today, we’re gonna write a new package manager, even better than Yarn! Ok, maybe not, but at least we’re gonna have some fun, learn how package managers work, and think about what could come next on Yarn. Adding Command Line Aliases for Yarn Posted Jun 19, 2017 by G. Kay Lee One of the core design philosophies of Yarn is to strive for simpleness; a lean CLI without redundant features. That’s why Yarn has resisted adding random built-in shorthands like npm r or an aliases system like the one you can find in Git. We believe that the benefits they could possibly bring to the Yarn experience are not justified by the cost required to build and maintain such a full-fledged subsystem. Private Registry Support Posted Jun 16, 2017 by Lukas Spieß Today, Yarn already supports a wide variety of different package feeds when fetching and downloading your dependencies. Up until now, there was however a small subset of public and private package feed providers that Yarn could not yet handle very well. One example of these package feed providers that were not yet supported was Visual Studio Team Services (VSTS). Yarn determinism Posted May 31, 2017 by Sebastian McKenzie One of the claims that Yarn makes is that it makes your package management “deterministic”. But what exactly does this mean? This blog post highlights how both Yarn and npm 5 are deterministic, but differ in the exact guarantees they provide and the tradeoffs they have chosen. Yarn Create & Yarn 1.0 Posted May 12, 2017 by Maël Nison Last year was a great time for Javascript newcomers! A lot of starter-kit projects were published, refined, and some of them eventually went on to offer command line tools dedicated to make project creation easier. One such example is create-react-app , but most frameworks have their own tools, with various flavors and syntaxes. Cloudflare security incident and impact on Yarn users Posted Feb 24, 2017 by Sebastian McKenzie Yarn uses its own proxy to the npm registry in order to allow us to experiment with the way the Yarn client works and allow optimizations in the future around how packages are resolved. This registry is used by all Yarn users by default. Lockfiles should be committed on all projects Posted Nov 24, 2016 by James Kyle Yarn is a new package manager that we built to be consistent and reliable. When installing hundreds or even thousands of third-party packages from the internet you want to be sure that you’re executing the same code across every system. Running Yarn offline Posted Nov 24, 2016 by Konstantin Raev Repeatable and reliable builds for large JavaScript projects are vital. If your builds depend on dependencies being downloaded from network, this build system is neither repeatable nor reliable. Yarn: A new package manager for JavaScript Posted Oct 11, 2016 by Sebastian McKenzie, Christoph Pojer, James Kyle We’re pleased to announce the open source release of Yarn, a collaboration between Facebook , Exponent , Google , and Tilde . With Yarn, engineers still have access to the npm registry, but can install packages more quickly and manage dependencies consistently across machines or in secure offline environments. Yarn enables engineers to move faster and with confidence when using shared code so they can focus on what matters — building new products and features. Read the full announcement on code.facebook.com . Yarn Distributed under BSD License Code of Conduct Edit this page | 2026-01-13T09:30:28 |
https://tests.reproducible-builds.org/debian/forky/index_dd-list.html#ucko@debian.org | Maintainers of unreproducible packages in forky Debian navigation Change suite/architecture Tested suites: unstable forky trixie bookworm experimental Test results statistics Results for forky/amd64 Unreproducible packages: with notes without notes Other package states: package sets Recently tested packages: last 24h last 48h all tested packages packages with .buildinfo files packages without .buildinfo files Scheduled for amd64 Maintainers of in forky Reproducible Debian overview Development dashboard Past releases dashboard Categorized issues Bugs filed Variations tested Packages with notifications enabled ⚑ Repositories overview Backend related Broken pieces Documentation (eg. on manual scheduling) Performance stats Health monitoring node overview job overview daily graphs weekly graphs monthly graphs yearly graphs The Reproducible Builds project reproducible-builds.org Reproducible Builds - Docs • News Reproducible Builds in Debian - Wiki SOURCE_DATE_EPOCH specification reproduce.debian.net aims for 100% bit-for-bit identical rebuilds of Debian other CI tests Maintainers of unreproducible packages in forky The following maintainers and uploaders are listed for packages in forky which have built unreproducibly. Please note that the while the link always points to the amd64 version, it's possible thatthe unreproducibility is only present in another architecture(s). "Adam C. Powell, IV" <hazelsct@debian.org> ¶ med-fichier (U) mpich (U) mumps (U) petsc (U) slepc (U) spooles (U) A Mennucc1 <mennucc1@debian.org> ¶ mplayer (U) A. Maitland Bottoms <bottoms@debian.org> ¶ gnuradio gpredict (U) gr-dab (U) gr-fosphor gr-limesdr (U) gr-radar libiio uhd Aaron M. Ucko <ucko@debian.org> ¶ fltk1.3 (U) fltk1.4 (U) ncbi-blast+ (U) Abdelhakim Qbaich <abdelhakim@qbaich.com> ¶ gambc Abou Al Montacir <abou.almontacir@sfr.fr> ¶ castle-game-engine (U) fp-units-win (U) Adam Borowski <kilobyte@angband.pl> ¶ cardo (U) valgrind + (U) Adam Majer <adamm@zombino.com> ¶ qtcreator (U) Adrian Vondendriesch <adrian.vondendriesch@credativ.de> ¶ pacemaker (U) Aggelos Avgerinos <evaggelos.avgerinos@gmail.com> ¶ xmobar (U) Agustin Henze <tin@debian.org> ¶ yapsy (U) Ahmad Khalifa <ahmad@khalifa.ws> ¶ openrgb Akira Mitsui <murase.syuka@gmail.com> ¶ mruby (U) Alan M Varghese (NyxTrail) <alan@digistorm.in> ¶ hyprland (U) Alastair McKinstry <mckinstry@debian.org> ¶ cctools cdo (U) eccodes (U) ecflow (U) emoslib # (U) fdb (U) ferret-vis (U) fiat-ecmwf (U) fortran-fpm (U) fortran-jonquil (U) fortran-regex + (U) fortran-testdrive (U) hdf-eos4 (U) hdf-eos5 (U) iirish libtool metkit (U) mpich (U) odc (U) openmpi (U) pnetcdf + (U) pyferret (U) python-escript (U) python-xarray (U) silo-llnl (U) Alberto Garcia <berto@igalia.com> ¶ webkit2gtk (U) wpewebkit (U) Alberto Leiva Popper <ydahhrk@gmail.com> ¶ jool Alberto Luaces Fernández <aluaces@udc.es> ¶ yasnippet (U) Albin Tonnerre <lutin@debian.org> ¶ efl (U) AlcinaSharon <alcinasharon@gmail.com> ¶ go-qrcode (U) Alec Leamas <leamas.alec@gmail.com> ¶ libcxx-serial opencpn Aleksey Kravchenko <rhash.admin@gmail.com> ¶ libpff (U) Alessandro Ghedini <ghedo@debian.org> ¶ ecasound (U) valgrind + Alessio Treglia <alessio@debian.org> ¶ kmetronome (U) libsoxr (U) schism (U) Alex Myczko <tar@debian.org> ¶ 3d-ascii-viewer-c cheesecutter (U) far2l fonts-atarist # (U) fonts-topaz-unicode (U) ftxui (U) furnace (U) lft lie mdnsd netsurf (U) schism (U) shotcut + (U) zytrax (U) Alexander Kjäll <alexander.kjall@gmail.com> ¶ rust-sequoia-keystore-server (U) rust-sequoia-sq (U) Alexander Ponyatykh <lazyranma@gmail.com> ¶ g15daemon paexec Alexander Wirt <formorer@debian.org> ¶ icinga2 (U) Alexandre Dantas <eu@alexdantas.net> ¶ nsnake (U) Alexandre Detiste <tchet@debian.org> ¶ contourpy (U) ftgl (U) m2crypto (U) matplotlib (U) sphinx-panels (U) Alexandre Marie <alexandre.marie@synchrotron-soleil.fr> ¶ jupyter-sphinx (U) Alexandre Mestiashvili <mestia@debian.org> ¶ bibtexparser + (U) Alexandre Viau <aviau@debian.org> ¶ fonts-fork-awesome (U) golang-github-jonas-p-go-shp + (U) golang-github-roaringbitmap-roaring + (U) golang-github-tjfoc-gmsm + (U) Alkis Georgopoulos <alkisg@gmail.com> ¶ ltsp (U) Alois Schlögl <alois.schloegl@gmail.com> ¶ biosig (U) Aloïs Micard <alois@micard.lu> ¶ golang-github-francoispqt-gojay (U) Aloïs Micard <creekorful@debian.org> ¶ aerc (U) golang-github-viant-toolbox + (U) Amin Bandali <bandali@ubuntu.com> ¶ gtk4 (U) Amul Shah <Amul.Shah@fisglobal.com> ¶ fis-gtm (U) Ana Custura <ana@netstat.org.uk> ¶ namecheap + (U) vanguards + (U) Ananthu C V <weepingclown@debian.org> ¶ lazygit (U) Andrea Pappacoda <tachi@debian.org> ¶ mbedtls (U) xbyak Andreas Beckmann <anbe@debian.org> ¶ papi (U) pyopencl (U) Andreas Boll <aboll@debian.org> ¶ mesa (U) Andreas Bombe <aeb@debian.org> ¶ gr-limesdr (U) Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> ¶ clamav (U) Andreas Henriksson <andreas@fatal.se> ¶ golang-github-mendersoftware-mender-artifact (U) Andreas Metzler <ametzler@debian.org> ¶ efl (U) enblend-enfuse (U) lynx (U) pfstools (U) Andreas Rönnquist <gusnan@debian.org> ¶ allegro5 # (U) Andreas Tille <tille@debian.org> ¶ altree (U) bedtools (U) biosquid # (U) btllib (U) cardpeek (U) consensuscore (U) crac (U) dicom3tools (U) emboss (U) filtlong (U) fis-gtm (U) freebayes (U) golang-github-apptainer-container-library-client + (U) golang-github-apptainer-sif + (U) golang-github-jung-kurt-gofpdf + (U) golang-github-shenwei356-breader + (U) golang-gonum-v1-plot + (U) hmmer (U) igraph (U) infernal (U) ivar (U) libbrahe (U) libcifpp (U) libgzstream (U) libhmsbeagle (U) liblemon (U) libpll (U) librostlab (U) libsbml (U) libslow5lib (U) macs (U) microbiomeutil + (U) minimap2 (U) ncbi-blast+ (U) node-shiny-server (U) openmm (U) parallel (U) phybin (U) porechop (U) primer3 (U) python-biom-format (U) python-biopython (U) python-ofxhome + (U) python-pysam (U) r-cran-cli (U) r-cran-cliapp (U) r-cran-dbitest (U) r-cran-diagnosismed (U) r-cran-dimred (U) r-cran-emayili (U) r-cran-emmeans (U) r-cran-futile.logger (U) r-cran-gert (U) r-cran-gprofiler2 (U) r-cran-lambda.r (U) r-cran-prophet (U) r-cran-rprojroot (U) r-cran-rstan (U) r-cran-sass (U) r-cran-teachingdemos (U) r-cran-tm (U) r-cran-tmvtnorm (U) r-cran-tweenr (U) r-cran-xfun (U) samtools (U) seer (U) segemehl (U) seqan2 (U) silly (U) siscone (U) tree-puzzle (U) treeview (U) twopaco (U) unicycler (U) velvet (U) virtuoso-opensource (U) virulencefinder + (U) xfishtank (U) Andrei Rozanski <rozanski.andrei@gmail.com> ¶ libamplsolver (U) Andrej Shadura <andrewsh@debian.org> ¶ critcl + (U) fonts-karmilla (U) g15daemon (U) libcamera (U) mk-configure Andrew Lee (李健秋) <ajqlee@debian.org> ¶ nomacs (U) Andrew Ross <ubuntu@rossfamily.co.uk> ¶ libitext5-java (U) Andrey Rakhmatullin <wrar@debian.org> ¶ kvirc (U) Andrius Merkys <merkys@debian.org> ¶ bespokesynth (U) epics-base (U) grammatica (U) ncbi-igblast (U) openmm (U) pdb-tools (U) pycifrw + (U) python-fabio (U) python-pyutil + (U) r-cran-rhub (U) spglib (U) vst3sdk (U) wannier90 (U) Andy Pugh <andy@bodgesoc.org> ¶ linuxcnc (U) Ansgar <ansgar@debian.org> ¶ dune-common (U) dune-functions (U) dune-geometry (U) dune-grid (U) dune-grid-glue (U) dune-istl (U) dune-localfunctions (U) dune-typetree (U) Anthony Fok <foka@debian.org> ¶ autokey (U) go-qrcode (U) golang-1.24 (U) golang-github-akavel-rsrc # (U) golang-github-rogpeppe-go-internal (U) golang-github-ulikunitz-xz + (U) golang-github-yosssi-ace (U) golang-golang-x-net (U) pydoctor (U) Antoine Beaupré <anarcat@debian.org> ¶ magic-wormhole-mailbox-server (U) magic-wormhole-transit-relay + Antoine Le Gonidec <vv221@debian.org> ¶ ogre-1.12 (U) Anton Gladky <gladk@debian.org> ¶ boost1.88 (U) esys-particle (U) gmsh (U) lammps (U) metis (U) minieigen (U) sfepy (U) sumo (U) sundials (U) yade (U) Anton Zinoviev <zinoviev@debian.org> ¶ xfonts-terminus Antoni Villalonga <antoni@friki.cat> ¶ vt + (U) Antonio Terceiro <terceiro@debian.org> ¶ passenger (U) Antonio Valentino <antonio.valentino@tiscali.it> ¶ c-blosc2 (U) metpy (U) numexpr (U) pycoast (U) pysolid (U) python-cartopy (U) python-pint (U) xarray-safe-rcm (U) Anuradha Weeraman <anuradha@debian.org> ¶ ksh93u+m # Apollon Oikonomopoulos <apoikos@debian.org> ¶ xmobar (U) Arnaud Ferraris <aferraris@debian.org> ¶ gnome-metronome (U) plasma-mobile (U) Arnaud Fontaine <arnau@debian.org> ¶ glosstex (U) Arnaud Rebillout <arnaud.rebillout@collabora.com> ¶ efitools (U) Arnaud Rebillout <arnaudr@debian.org> ¶ mirrorbits (U) Arnaud Rebillout <arnaudr@kali.org> ¶ docker.io (U) Arnaud Rebillout <elboulangero@gmail.com> ¶ golang-github-miekg-pkcs11 (U) Arne Morten Kvarving <arne.morten.kvarving@sintef.no> ¶ opm-simulators (U) opm-upscaling (U) Arnout Engelen <arnouten@bzzt.net> ¶ kmetronome (U) Aron Xu <aron@debian.org> ¶ dnf-plugins-core (U) fcitx-libpinyin (U) ibus (U) libpinyin (U) opencc (U) Arthur Diniz <arthurbdiniz@gmail.com> ¶ hey (U) kind (U) kustomize (U) Arun Kumar Pariyar <arun@debian.org> ¶ go-gir-generator (U) Arun Kumar Pariyar <openarungeek@gmail.com> ¶ dde-qt-dbus-factory (U) Asias He <asias@debian.org> ¶ libpinyin (U) opencc (U) Aurelien Jarno <aurel32@debian.org> ¶ med-fichier (U) Aurélien COUDERC <coucouf@debian.org> ¶ kate (U) kdebugsettings (U) kdevelop-php (U) kf6-breeze-icons (U) kf6-extra-cmake-modules (U) kf6-kirigami (U) kf6-ktexttemplate (U) kf6-syndication (U) oxygen-icons (U) plasma-mobile (U) powerdevil (U) syndication (U) tokodon (U) Axel Beckert <abe@debian.org> ¶ dpmb john (U) lynx (U) Aymeric Agon-Rambosson <aymeric.agon@yandex.com> ¶ citar (U) consult-el (U) embark (U) magit (U) marginalia (U) orderless (U) vertico (U) Balasankar C <balasankarc@debian.org> ¶ fonts-smc-anjalioldlipi (U) fonts-smc-dyuthi (U) fonts-smc-karumbi (U) fonts-smc-keraleeyam (U) fonts-smc-meera (U) fonts-smc-rachana (U) fonts-smc-raghumalayalamsans (U) fonts-smc-uroob (U) Balint Reczey <balint@balintreczey.hu> ¶ erlang-cowlib (U) Barak A. Pearlmutter <bap@debian.org> ¶ chezscheme (U) fstrcmp ikarus ivtools latex-coffee-stains libemf magit (U) mit-scheme oaklisp pstoedit yasnippet (U) Barry deFreese <bdefreese@debian.org> ¶ asc (U) blockattack (U) liquidwar (U) netrek-client-cow (U) Bartosz Fenski <fenio@debian.org> ¶ asc (U) Bas Couwenberg <sebastic@debian.org> ¶ grass (U) libosmium (U) nco (U) pyosmium (U) qgis (U) Bas Wijnen <wijnen@debian.org> ¶ openmsx Bas Zoetekouw <bas@debian.org> ¶ blktrace Bastian Blank <waldi@debian.org> ¶ cdebootstrap + libdebian-installer (U) linux (U) Bastian Germann <bage@debian.org> ¶ scalable-cyrfonts Bastian Venthur <venthur@debian.org> ¶ kivy (U) Bastien Roucaries <rouca@debian.org> ¶ node-envinfo (U) Bastien Roucariès <rouca@debian.org> ¶ node-rollup (U) Bdale Garbee <bdale@gag.com> ¶ altos debian-history (U) librnd (U) pforth rocketcea scikit-fmm Ben Hutchings <benh@debian.org> ¶ linux (U) Benda Xu <heroxbd@gentoo.org> ¶ casacore (U) casacore-data-igrf (U) casacore-data-jplde (U) scim (U) Benda Xu <orv@debian.org> ¶ scmutils Benjamin Barenblat <bbaren@debian.org> ¶ coq (U) Benjamin Drung <bdrung@debian.org> ¶ libsoxr (U) vlc # + (U) Benjamin Drung <bdrung@ubuntu.com> ¶ rdma-core Bernd Zeimetz <bzed@debian.org> ¶ collectd (U) gpsbabel (U) Bernhard Miklautz <bernhard.miklautz@shacknet.at> ¶ freerdp3 (U) Bernhard R. Link <brlink@debian.org> ¶ git-dpm bertrand Neron <bneron@pasteur.fr> ¶ macsyfinder (U) Birger Schacht <birger@debian.org> ¶ foot Boian Bonev <bbonev@ipacct.com> ¶ gpsd Boris Pek <tehnick@debian.org> ¶ psi-plus Boyuan Yang <byang@debian.org> ¶ beangulp + (U) dde-qt-dbus-factory (U) fcitx5-bamboo (U) fcitx5-zhuyin (U) font-manager (U) go-gir-generator (U) opencc (U) rime-array (U) rime-cangjie (U) rime-cantonese (U) rime-ipa (U) rime-loengfan (U) rime-luna-pinyin (U) rime-middle-chinese (U) rime-pinyin-simp (U) rime-quick (U) rime-scj (U) rime-soutzoe (U) rime-stroke (U) rime-terra-pinyin (U) rime-wubi (U) rime-wugniu (U) zxing-cpp Brad Chapman <chapmanb@50mail.com> ¶ freebayes (U) Breno Leitao <leitao@debian.org> ¶ cappuccino Brian May <bam@debian.org> ¶ celery (U) faker (U) python-django (U) python-mkdocs (U) python-passlib (U) BW Keller <malzraa@gmail.com> ¶ yt (U) Camm Maguire <camm@debian.org> ¶ axiom fricas gcl gcl27 hol88 lam + maxima Carl Keinath <carl.keinath@gmail.com> ¶ hyprland (U) Carl Worth <cworth@debian.org> ¶ notmuch Carlos Zuferri <chals@altorricon.com> ¶ live-manual (U) Carsten Leonhardt <leo@debian.org> ¶ bacula-doc (U) Carsten Schoenert <c.schoenert@t-online.de> ¶ kicad (U) python-graphene + (U) python-mkdocs (U) python-picologging (U) Cesare Falco <c.falco@ubuntu.com> ¶ mame (U) Changwoo Ryu <cwryu@debian.org> ¶ ibus (U) ChangZhuo Chen (陳昌倬) <czchen@debian.org> ¶ fcitx-libpinyin (U) ibus-libzhuyin (U) libpinyin (U) nomacs (U) Charles Plessy <plessy@debian.org> ¶ altree (U) bedtools (U) emboss (U) primer3 (U) python-biopython (U) python-pysam (U) samtools (U) tree-puzzle (U) velvet (U) Chow Loong Jin <hyperair@debian.org> ¶ hyprland (U) Chris Halls <halls@debian.org> ¶ writer2latex (U) Chris Hofstaedtler <zeha@debian.org> ¶ ragel Chris Lamb <lamby@debian.org> ¶ black (U) python-django (U) Christian Bayle <bayle@debian.org> ¶ jfreepdf (U) orson-charts (U) rocm-docs-core (U) rocm-hipamd (U) Christian Ehrhardt <christian.ehrhardt@canonical.com> ¶ dpdk (U) Christian Kastner <ckk@debian.org> ¶ numpy (U) rocm-hipamd (U) rocprim (U) scikit-learn (U) Christian M. Amsüss <chrysn@fsfe.org> ¶ rdflib + (U) Christian Marillat <marillat@debian.org> ¶ libtorrent-rasterbar Christian T. Steigies <cts@debian.org> ¶ gle-graphics-manual (U) Christoph Berg <myon@debian.org> ¶ gpredict (U) gr-limesdr (U) libcm256cc (U) patroni # (U) pgloader (U) prometheus-sql-exporter (U) vip-manager2 (U) Christoph Biedl <debian.axhn@manchmal.in-ulm.de> ¶ gkrellm-leds P Christoph Egger <christoph@debian.org> ¶ buildapp (U) clisp (U) ecl (U) Christoph Martin <chrism@debian.org> ¶ vdr-plugin-markad (U) Christophe Trophime <christophe.trophime@lncmi.cnrs.fr> ¶ getdp (U) gmsh (U) Christopher Baines <mail@cbaines.net> ¶ faker (U) Christopher Hoskin <mans0954@debian.org> ¶ pympress + (U) rust-fslock # (U) Christopher Reichert <creichert07@gmail.com> ¶ haskell-network-conduit-tls (U) ClamAV Team <pkg-clamav-devel@lists.alioth.debian.org> ¶ clamav Clay Stan <claystan97@gmail.com> ¶ dde-qt-dbus-factory (U) Clint Adams <clint@debian.org> ¶ alex (U) cabal-debian (U) ghc # (U) glirc (U) haskell-aeson (U) haskell-arithmoi (U) haskell-async (U) haskell-attoparsec (U) haskell-base64-bytestring (U) haskell-bimap (U) haskell-binary-instances (U) haskell-bitvec (U) haskell-blaze-markup (U) haskell-bloomfilter (U) haskell-brick (U) haskell-bytestring-to-vector (U) haskell-bz2 (U) haskell-case-insensitive (U) haskell-cassava (U) haskell-cassava-megaparsec (U) haskell-cborg (U) haskell-cereal-conduit (U) haskell-cereal-vector (U) haskell-chimera (U) haskell-cipher-camellia (U) haskell-classy-prelude (U) haskell-classy-prelude-conduit (U) haskell-clientsession (U) haskell-cmark (U) haskell-cmark-gfm (U) haskell-conduit (U) haskell-conduit-extra (U) haskell-cryptohash (U) haskell-cryptohash-md5 (U) haskell-cryptohash-sha1 (U) haskell-cryptohash-sha256 (U) haskell-cryptonite (U) haskell-curve25519 (U) haskell-deepseq-generics (U) haskell-dense-linear-algebra (U) haskell-deriving-aeson (U) haskell-deriving-compat (U) haskell-doctemplates (U) haskell-ed25519 (U) haskell-edit-distance (U) haskell-email-validate (U) haskell-enclosed-exceptions (U) haskell-esqueleto (U) haskell-exception-transformers (U) haskell-expiring-cache-map (U) haskell-fast-logger (U) haskell-fgl-arbitrary (U) haskell-filepattern (U) haskell-filestore (U) haskell-fold-debounce (U) haskell-from-sum (U) haskell-generic-data (U) haskell-generic-random (U) haskell-genvalidity (U) haskell-genvalidity-containers (U) haskell-getopt-generics (U) haskell-ghc-exactprint (U) haskell-ghc-lib-parser-ex (U) haskell-gi-gdk (U) haskell-githash (U) haskell-gridtables (U) haskell-hackage-security (U) haskell-hakyll (U) haskell-haskell-gi (U) haskell-heterocephalus (U) haskell-hgmp (U) haskell-hjsmin (U) haskell-hledger (U) haskell-hledger-ui (U) haskell-hopenpgp (U) haskell-hourglass (U) haskell-hslua-module-text (U) haskell-hspec-api (U) haskell-hspec-megaparsec (U) haskell-hspec-smallcheck (U) haskell-hspec-wai (U) haskell-html-conduit (U) haskell-http-api-data (U) haskell-http-client (U) haskell-http-conduit (U) haskell-infer-license (U) haskell-inline-c (U) haskell-integer-logarithms (U) haskell-integer-roots (U) haskell-interpolate (U) haskell-io-streams-haproxy (U) haskell-irc-core (U) haskell-js-flot (U) haskell-lambdahack (U) haskell-lens (U) haskell-libmpd (U) haskell-load-env (U) haskell-logging-facade (U) haskell-lukko (U) haskell-lzma (U) haskell-markdown (U) haskell-markdown-unlit (U) haskell-memory (U) haskell-microstache (U) haskell-minimorph (U) haskell-miniutter (U) haskell-mockery (U) haskell-monad-loops (U) haskell-monad-memo (U) haskell-mono-traversable (U) haskell-multistate (U) haskell-nanospec (U) haskell-natural-transformation (U) haskell-nettle (U) haskell-numbers (U) haskell-openpgp-asciiarmor (U) haskell-optparse-applicative (U) haskell-ormolu (U) haskell-parsers (U) haskell-path-pieces (U) haskell-pem (U) haskell-persistent (U) haskell-pretty-simple (U) haskell-prettyprinter-ansi-terminal (U) haskell-project-template (U) haskell-quickcheck-classes (U) haskell-quote-quot (U) haskell-rank2classes (U) haskell-raw-strings-qq (U) haskell-readargs (U) haskell-recv (U) haskell-resourcet (U) haskell-safe-exceptions (U) haskell-sandi (U) haskell-say (U) haskell-scanner (U) haskell-scotty (U) haskell-selective (U) haskell-serialise (U) haskell-servant (U) haskell-servant-server (U) haskell-shell-conduit (U) haskell-should-not-typecheck (U) haskell-simple-sendfile (U) haskell-skein (U) haskell-snap (U) haskell-snap-templates (U) haskell-soap (U) haskell-split (U) haskell-streaming-commons (U) haskell-tagstream-conduit (U) haskell-tasty-golden (U) haskell-tasty-hedgehog (U) haskell-termonad (U) haskell-text-icu (U) haskell-text-manipulate (U) haskell-text-metrics (U) haskell-text-show (U) haskell-th-desugar (U) haskell-th-env (U) haskell-th-lift (U) haskell-th-lift-instances (U) haskell-th-utilities (U) haskell-time-parsers (U) haskell-tls (U) haskell-trifecta (U) haskell-typed-process (U) haskell-universe-base (U) haskell-unix-time (U) haskell-uuid (U) haskell-wai (U) haskell-wai-app-static (U) haskell-wai-extra (U) haskell-wai-http2-extra (U) haskell-warp (U) haskell-witch (U) haskell-with-location (U) haskell-wl-pprint-annotated (U) haskell-word-wrap (U) haskell-word8 (U) haskell-x509 (U) haskell-xml-conduit (U) haskell-xml-hamlet (U) haskell-xml-html-qq (U) haskell-xmlhtml (U) haskell-xss-sanitize (U) haskell-yaml (U) haskell-yesod-core (U) haskell-yesod-form (U) haskell-yesod-test (U) mighttpd2 (U) Clément Hermann <nodens@debian.org> ¶ onedrive (U) Colin Watson <cjwatson@debian.org> ¶ groff libdebian-installer (U) yubihsm-connector (U) zope.deferredimport + (U) Collectd Packaging Team <team+collectd@tracker.debian.org> ¶ collectd Compute Library Team <developer-compute@arm.com> ¶ arm-compute-library Cordell Bloor <cgmb@debian.org> ¶ rocdbgapi + (U) rocm-hipamd (U) rocprim (U) Corey Bryant <corey.bryant@canonical.com> ¶ python-glanceclient (U) python-keystoneauth1 (U) Cyril Brulebois <cyril@debamax.com> ¶ crowdsec Cyril Brulebois <kibi@debian.org> ¶ debian-installer # # # (U) Cédric Boutillier <boutil@debian.org> ¶ gfan (U) highlight.js (U) ruby-gnuplot + (U) Cédric Lood <cedric.lood@kuleuven.be> ¶ porechop (U) Damien Raude-Morvan <drazzib@debian.org> ¶ codenarc (U) Damyan Ivanov <dmn@debian.org> ¶ firebird4.0 Danai SAE-HAN (韓達耐) <danai@debian.org> ¶ cjk (U) latex-cjk-chinese-arphic (U) Daniel Baumann <daniel@debian.org> ¶ ck dnsjit Daniel Dehennin <daniel.dehennin@baby-gnu.org> ¶ moarvm (U) raku-readline (U) raku-tap-harness (U) raku-zef (U) rakudo # (U) Daniel Kahn Gillmor <dkg@fifthhorseman.net> ¶ knot (U) rust-gperftools (U) rust-sequoia-sq (U) Daniel Markstedt <daniel@mindani.net> ¶ netatalk (U) Daniel Salzman <daniel.salzman@nic.cz> ¶ knot (U) Daniele Tricoli <eriol@mornie.org> ¶ pywavelets + (U) dann frazier <dannf@debian.org> ¶ makedumpfile (U) Dave Hibberd <hibby@debian.org> ¶ svxlink (U) David Banks <amoebae@gmail.com> ¶ sisc David Bremner <bremner@debian.org> ¶ emacs-jabber (U) notmuch (U) polymake sketch (U) slime (U) David Kalnischkies <donkult@debian.org> ¶ vim-youcompleteme ycmd David Miguel Susano Pinto <carandraug+dev@gmail.com> ¶ ncbi-igblast (U) David Paleino <dapal@debian.org> ¶ openlayers (U) uncertainties (U) underscore (U) David Suárez <david.sephirot@gmail.com> ¶ ruby-re2 (U) David Weinehall <tao@debian.org> ¶ scummvm (U) Davide Viti <zinosat@tiscali.it> ¶ fonts-freefont (U) Dawid Dziurla <dawidd0811@gmail.com> ¶ termshark (U) Dean Serenevy <dean@serenevy.net> ¶ kivy (U) Debian Accessibility Team <pkg-a11y-devel@alioth-lists.debian.net> ¶ flite Debian ACE maintainers <team+ace@tracker.debian.org> ¶ ace Debian ALSA Maintainers <pkg-alsa-devel@lists.alioth.debian.org> ¶ alsa-utils Debian Astro Maintainers <debian-astro-maintainers@lists.alioth.debian.org> ¶ pybdsf Debian Astro Team <debian-astro-maintainers@alioth-lists.debian.net> ¶ casacore-data-igrf casacore-data-jplde Debian Astro Team <debian-astro-maintainers@lists.alioth.debian.org> ¶ astroplan astroquery casacore eso-midas gwcs montage ndcube pyregion python-casacore starjava-ttools Debian Astronomy Team <debian-astro-maintainers@lists.alioth.debian.org> ¶ c-munipack yt Debian Bacula Team <pkg-bacula-devel@lists.alioth.debian.org> ¶ bacula-doc Debian Bluetooth Maintainers <team+pkg-bluetooth@tracker.debian.org> ¶ bluez bluez-alsa Debian BOINC Maintainers <pkg-boinc-devel@lists.alioth.debian.org> ¶ boinc Debian Boost Team <team+boost@tracker.debian.org> ¶ boost1.88 Debian Chinese Team <chinese-developers@lists.alioth.debian.org> ¶ opencc (U) unicon # Debian CLI Applications Team <pkg-cli-apps-team@lists.alioth.debian.org> ¶ hexbox openmcdf Debian Clojure Maintainers <team+clojure@tracker.debian.org> ¶ clojure core-specs-alpha-clojure leiningen-clojure + spec-alpha-clojure Debian Common Lisp Team <debian-common-lisp@lists.debian.org> ¶ abcl buildapp clisp ecl sbcl slime Debian D Language Group <team+d-team@tracker.debian.org> ¶ dub ldc Debian Deepin Packaging Team <pkg-deepin-devel@lists.alioth.debian.org> ¶ dde-qt-dbus-factory go-gir-generator Debian Documentation Project <debian-doc@lists.debian.org> ¶ refcard Debian DPDK Maintainers <pkg-dpdk-devel@lists.alioth.debian.org> ¶ dpdk Debian EFI team <debian-efi@lists.debian.org> ¶ libjcat Debian Electronics Team <pkg-electronics-devel@alioth-lists.debian.net> ¶ kicad Debian Electronics Team <pkg-electronics-devel@lists.alioth.debian.org> ¶ arduino librnd verilator Debian Emacsen team <debian-emacsen@lists.debian.org> ¶ citar consult-el elpa-transient embark fountain-mode magit magit-forge-el maildir-utils marginalia orderless vertico yasnippet Debian Emacsen Team <debian-emacsen@lists.debian.org> ¶ emacs-jabber ghub-el with-editor Debian Erlang Packagers <pkg-erlang-devel@lists.alioth.debian.org> ¶ elixir-makeup erlang erlang-cowlib erlang-hex manderlbot rebar rebar3 wings3d yaws Debian FLTK Ecosystem Team <team+fltk@tracker.debian.org> ¶ fltk1.3 fltk1.4 Debian Fonts Task Force <debian-fonts@lists.debian.org> ¶ cardo font-manager fonts-atarist # fonts-cantarell fonts-fantasque-sans fonts-fork-awesome fonts-meera-inimai fonts-smc-anjalioldlipi fonts-smc-dyuthi fonts-smc-karumbi fonts-smc-keraleeyam Debian Fonts Task Force <pkg-fonts-devel@lists.alioth.debian.org> ¶ fonts-arundina fonts-beteckna fonts-cascadia-code fonts-freefont fonts-karmilla fonts-smc-meera fonts-smc-rachana fonts-smc-raghumalayalamsans fonts-topaz-unicode Debian Games Team <pkg-games-devel@lists.alioth.debian.org> ¶ 0ad ace-of-penguins allegro5 # asc blockattack bzflag colobot doomsday ftgl gnubg (U) libsfml liquidwar mame netrek-client-cow nsnake ogre-1.12 scummvm silly teeworlds ufoai xfishtank xpenguins Debian GCC Maintainers <debian-gcc@lists.debian.org> ¶ gcc-12-cross gcc-13-cross gcc-13-cross-mipsen gcc-14 gcc-14-cross gcc-14-cross-ports gcc-15 gcc-15-cross gcc-15-cross-ports Debian GDB Team <team+gdb@tracker.debian.org> ¶ dejagnu Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org> ¶ grass libosmium metpy nco openlayers pycoast pyosmium pysolid python-cartopy python-geopandas qgis savi xarray-safe-rcm Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org> ¶ blueprint-compiler bustle fragments gimp glib-d gnome-metronome gtk4 kooha librsvg obfuscate shortwave warp Debian Go Compiler Team <team+go-compiler@tracker.debian.org> ¶ golang-1.24 Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org> ¶ acmetool goiardi golang-github-cloudflare-cfssl golang-github-cznic-ql + golang-github-kr-binarydist + golang-github-yosssi-ace Debian Go Packaging Team <team+pkg-go@tracker.debian.org> ¶ aerc age containerd crowdsec (U) dasel docker.io fscrypt glow go-qrcode go-sendxmpp gobgp golang-github-akavel-rsrc # golang-github-apptainer-container-library-client + golang-github-artyom-mtab + golang-github-containerd-nydus-snapshotter golang-github-dreamitgetit-statuscake + golang-github-emicklei-dot + golang-github-francoispqt-gojay golang-github-gin-gonic-gin + golang-github-go-git-go-git golang-github-hdrhistogram-hdrhistogram-go golang-github-jonas-p-go-shp + golang-github-jung-kurt-gofpdf + golang-github-kshedden-dstream + golang-github-linkedin-goavro + golang-github-mendersoftware-mender-artifact golang-github-micromdm-scep golang-github-miekg-pkcs11 golang-github-otiai10-copy + golang-github-roaringbitmap-roaring + golang-github-rogpeppe-go-internal golang-github-shenwei356-breader + golang-github-tjfoc-gmsm + golang-github-ulikunitz-xz + golang-github-valyala-fasthttp + golang-github-viant-toolbox + golang-github-yudai-gojsondiff + golang-golang-x-net golang-gonum-v1-plot + golang-mvdan-editorconfig + gosop hey lazygit riseup-vpn secsipidx tea-cli termshark tty-record victoriametrics xmpp-dns ymuse Debian Go Team <team+pkg-go@tracker.debian.org> ¶ golang-github-apptainer-sif + Debian GPS team <gpsbabel@packages.debian.org> ¶ gpsbabel Debian HA Maintainers <debian-ha-maintainers@alioth-lists.debian.net> ¶ pacemaker Debian Hamradio Maintainers <debian-hams@lists.debian.org> ¶ gpredict gr-limesdr libcm256cc svxlink tucnak Debian Haskell Group <debian-haskell@lists.debian.org> ¶ haskell-swish Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org> ¶ alex cabal-debian ghc # glirc happy haskell-active haskell-aeson haskell-aeson-casing haskell-aeson-extra haskell-aeson-qq haskell-ap-normalize haskell-arithmoi haskell-async haskell-atomic-write haskell-attoparsec haskell-barbies haskell-base64-bytestring haskell-bimap haskell-binary-instances haskell-binary-orphans haskell-binary-search haskell-bitvec haskell-bitwise haskell-blaze-html haskell-blaze-markup haskell-bloomfilter haskell-brick haskell-bytestring-to-vector haskell-bz2 haskell-bzlib-conduit haskell-cabal-install-solver haskell-case-insensitive haskell-cassava haskell-cassava-megaparsec haskell-cborg haskell-cereal-conduit haskell-cereal-vector haskell-chimera haskell-cipher-camellia haskell-classy-prelude haskell-classy-prelude-conduit haskell-clientsession haskell-cmark haskell-cmark-gfm haskell-commonmark haskell-commonmark-extensions haskell-concurrent-extra haskell-concurrent-supply haskell-conduit haskell-conduit-extra haskell-copilot-c99 haskell-copilot-core haskell-copilot-interpreter haskell-copilot-language haskell-copilot-libraries haskell-copilot-prettyprinter haskell-copilot-theorem haskell-cryptohash haskell-cryptohash-md5 haskell-cryptohash-sha1 haskell-cryptohash-sha256 haskell-crypton haskell-crypton-conduit haskell-crypton-x509 haskell-crypton-x509-store haskell-crypton-x509-validation haskell-cryptonite haskell-cryptonite-conduit haskell-cryptostore haskell-curve25519 haskell-data-clist haskell-data-hash haskell-data-reify haskell-deepseq-generics haskell-dense-linear-algebra haskell-deriving-aeson haskell-deriving-compat haskell-dice-entropy-conduit haskell-distributive haskell-doctemplates haskell-double-conversion haskell-ed25519 haskell-edit-distance haskell-email-validate haskell-emojis haskell-enclosed-exceptions haskell-equivalence haskell-esqueleto haskell-exception-transformers haskell-expiring-cache-map haskell-fast-logger haskell-fgl haskell-fgl-arbitrary haskell-filepattern haskell-filestore haskell-filtrable haskell-finite-field haskell-fold-debounce haskell-from-sum haskell-generic-data haskell-generic-random haskell-genvalidity haskell-genvalidity-containers haskell-getopt-generics haskell-ghc-exactprint haskell-ghc-lib-parser-ex haskell-ghc-typelits-extra haskell-ghc-typelits-knownnat haskell-gi-gdk haskell-githash haskell-gridtables haskell-hackage-security haskell-haddock-library haskell-hakyll haskell-happstack-server haskell-haskell-gi haskell-hdf5 haskell-heterocephalus haskell-hgmp haskell-hi-file-parser haskell-hjsmin haskell-hledger haskell-hledger-ui haskell-hoogle haskell-hopenpgp haskell-hourglass haskell-hpack haskell-hslua-aeson haskell-hslua-core haskell-hslua-list haskell-hslua-module-doclayout haskell-hslua-module-path haskell-hslua-module-system haskell-hslua-module-text haskell-hslua-module-version haskell-hslua-module-zip haskell-hslua-typing haskell-hspec-api haskell-hspec-attoparsec haskell-hspec-megaparsec haskell-hspec-smallcheck haskell-hspec-wai haskell-html-conduit haskell-http-api-data haskell-http-client haskell-http-conduit haskell-http-link-header haskell-http-media haskell-http2 haskell-indexed-traversable-instances haskell-infer-license haskell-inline-c haskell-integer-conversion haskell-integer-logarithms haskell-integer-roots haskell-interpolate haskell-invariant haskell-io-streams-haproxy haskell-irc-core haskell-iso8601-time haskell-jira-wiki-markup haskell-js-flot haskell-jsonpath haskell-lambdahack haskell-language-glsl haskell-lens haskell-libbf haskell-libmpd haskell-lift-type haskell-load-env haskell-logging-facade haskell-lua haskell-lukko haskell-lzma haskell-map-syntax haskell-markdown haskell-markdown-unlit haskell-memory haskell-microlens-aeson haskell-microstache haskell-minimorph haskell-miniutter haskell-mockery haskell-modern-uri haskell-monad-loops haskell-monad-memo haskell-mono-traversable haskell-multistate haskell-mustache haskell-mutable-containers haskell-nanospec haskell-natural-transformation haskell-nettle haskell-network-conduit-tls haskell-numbers haskell-ogma-cli haskell-ogma-core haskell-ogma-extra haskell-ogma-language-c haskell-ogma-language-lustre haskell-ogma-language-smv haskell-openpgp-asciiarmor haskell-optparse-applicative haskell-ormolu haskell-os-string haskell-pandoc haskell-pandoc-lua-engine haskell-pandoc-lua-marshal haskell-parsers haskell-path haskell-path-pieces haskell-pem haskell-persistent haskell-pqueue haskell-pretty-simple haskell-prettyprinter-ansi-terminal haskell-prettyprinter-interp haskell-project-template haskell-quickcheck haskell-quickcheck-classes haskell-quote-quot haskell-rank2classes haskell-raw-strings-qq haskell-readargs haskell-recv haskell-regex-applicative haskell-req haskell-resolv haskell-resourcet haskell-rio haskell-rio-orphans haskell-safe-exceptions haskell-sandi haskell-say haskell-scanner haskell-scotty haskell-secret-sharing haskell-selective haskell-serialise haskell-servant haskell-servant-client-core haskell-servant-server haskell-shell-conduit haskell-shelly haskell-should-not-typecheck haskell-simple-sendfile haskell-skein haskell-skylighting-core haskell-snap haskell-snap-templates haskell-soap haskell-split haskell-sql-words haskell-stack haskell-static-bytes haskell-store haskell-streaming-commons haskell-string-interpolate haskell-string-qq haskell-tagstream-conduit haskell-tar-conduit haskell-tasty-golden haskell-tasty-hedgehog haskell-tasty-lua haskell-terminal-progress-bar haskell-termonad haskell-text-builder-linear haskell-text-conversions haskell-text-icu haskell-text-manipulate haskell-text-metrics haskell-text-postgresql haskell-text-short haskell-text-show haskell-th-compat haskell-th-desugar haskell-th-env haskell-th-lift haskell-th-lift-instances haskell-th-utilities haskell-time-parsers haskell-tls haskell-token-bucket haskell-toml-parser haskell-trifecta haskell-typed-process haskell-unicode-transforms haskell-universe-base haskell-unix-time haskell-unixutils haskell-uuid haskell-uuid-types haskell-vector-algorithms haskell-vector-hashtables haskell-vector-th-unbox haskell-versions haskell-wai haskell-wai-app-static haskell-wai-extra haskell-wai-http2-extra haskell-warp haskell-websockets haskell-witch haskell-with-location haskell-witherable haskell-wl-pprint-annotated haskell-word-trie haskell-word-wrap haskell-word8 haskell-x509 haskell-xeno haskell-xlsx haskell-xml-conduit haskell-xml-hamlet haskell-xml-html-qq haskell-xmlhtml haskell-xss-sanitize haskell-yaml haskell-yesod-core haskell-yesod-form haskell-yesod-test haskell-yi-language haskell-yi-rope haskell-zip-archive haskell-zip-stream hasktags mighttpd2 xmobar Debian Hebrew Packaging Team <team+hebrew@tracker.debian.org> ¶ bidiui Debian HPC Team <debian-hpc@lists.debian.org> ¶ condor papi Debian Hyprland Maintainers <team+hyprland@tracker.debian.org> ¶ hyprland Debian Input Method Team <debian-input-method@lists.debian.org> ¶ fcitx-libpinyin fcitx5-bamboo fcitx5-zhuyin ibus ibus-libzhuyin keyman libpinyin open-gram opencc rime-array rime-cangjie rime-cantonese rime-ipa rime-loengfan rime-luna-pinyin rime-middle-chinese rime-pinyin-simp rime-quick rime-scj rime-soutzoe rime-stroke rime-terra-pinyin rime-wubi rime-wugniu Debian Install System Team <debian-boot@lists.debian.org> ¶ debian-installer # # # libdebian-installer Debian IoT Maintainers <debian-iot-maintainers@alioth-lists.debian.net> ¶ mbedtls Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org> ¶ aspectj bsh cobertura codenarc derby felix-main gmetrics gradle-kotlin-dsl + grammatica graxxia groovy h2database hyperic-sigar jabref jakarta-jmeter + jalview jameica-h2database janino javacc5 javawriter jcabi-aspects jetty12 jfreepdf json4s jxplorer libcommons-fileupload-java libhibernate-validator-java libhibernate-validator4-java libitext5-java libjpam-java libnative-platform-java libnb-platform18-java libxml-security-java libxtc-rats-java lucene-solr lucene4.10 mathpiper okio orson-charts plexus-utils2 sbt-launcher-interface sbt-serialization scala scala-parser-combinators scala-pickling scala-tools-sbinary scala-xml serp sweethome3d-furniture tomcat10 tomcat11 tomcat9 visualvm weka weupnp xmlbeans xmlgraphics-commons zookeeper Debian Javascript Maintainers <debian-pan-maintainers@alioth-lists.debian.net> ¶ jupyterlab Debian Javascript Maintainers <pkg-javascript-devel@alioth-lists.debian.net> ¶ emscripten Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org> ¶ highlight.js moment-timezone.js node-ajv node-ampproject-remapping node-axios node-babel7 node-camelcase node-camelcase-keys node-cbor node-cli-cursor node-convert-source-map + node-d3 node-d3-array node-define-lazy-prop node-emittery node-envinfo node-espree node-execa node-fast-json-patch node-find-up node-function-bind + node-get-stream node-html5-qrcode node-inwasm node-license-webpack-plugin node-lru-cache node-mem node-minimatch node-opencv node-pretty-ms node-quick-lru node-regenerator node-resolve node-rollup node-rollup-plugin-alias node-rollup-plugin-babel node-rollup-plugin-commonjs node-rollup-plugin-typescript2 node-rollup-pluginutils node-source-map-loader node-svgdotjs-svg.js node-webpack node-webpack-stats-plugin node-wrap-ansi twitter-bootstrap3 underscore Debian Junior Maintainers <debian-jr@lists.debian.org> ¶ tuxpaint (U) Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> ¶ kvirc Debian Kdump <team+kdump@tracker.debian.org> ¶ makedumpfile Debian Kernel Team <debian-kernel@lists.debian.org> ¶ linux Debian Kolab Maintainers <team+kolab-mantainers@tracker.debian.org> ¶ libkolabxml Debian Kubernetes Packaging Team <team+kubernetes@tracker.debian.org> ¶ kind kustomize Debian LibreOffice Maintainers <debian-openoffice@lists.debian.org> ¶ writer2latex Debian Libvirt Maintainers <pkg-libvirt-maintainers@lists.alioth.debian.org> ¶ libguestfs Debian Live Maintainers <debian-live@lists.debian.org> ¶ live-manual Debian LTSP Maintainers <team+ltsp@tracker.debian.org> ¶ ltsp Debian Lua Team <pkg-lua-devel@lists.alioth.debian.org> ¶ lua-penlight + Debian Lynx Packaging Team <pkg-lynx-maint@lists.alioth.debian.org> ¶ lynx Debian Math Team <team+math@tracker.debian.org> ¶ fflas-ffpack frobby gfan linbox macaulay2 maxima-sage primesieve python-mapbox-earcut singular Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org> ¶ altree ants # bedtools biosig bmtk brian btllib cmtk consensuscore crac cyvcf2 dcmtk deblur + dicom3tools dipy emboss filtlong fis-gtm freebayes gdcm grabix hmmer igraph infernal ivar libamplsolver libcifpp libgdf libgzstream libhmsbeagle liblemon libpll librostlab libsbml libslow5lib macs macsyfinder metastudent-data mia microbiomeutil + minimap2 mrtrix3 ncbi-blast+ ncbi-igblast nim-hts + nitime odil parallel phybin pinfish porechop primer3 pydicom python-biom-format python-biopython python-gffutils python-pybedtools python-pysam python-trx-python samtools seer segemehl seqan2 seqan3 shapeit4 spaln tree-puzzle treeview twopaco unicycler velvet virulencefinder + vt + Debian Mobcom Maintainers <Debian-mobcom-maintainers@lists.alioth.debian.org> ¶ libosmocore Debian Multimedia Maintainers <debian-multimedia@lists.debian.org> ¶ bespokesynth cheesecutter dragonfly-reverb ecasound furnace gsequencer jsusfx kmetronome libcamera libdc1394 libsoxr mplayer openni openni-sensor-pointclouds openni-sensor-primesense opensubdiv pupnp schism shotcut + vlc # + vst3sdk x265 zytrax Debian Nagios Maintainer Group <pkg-nagios-devel@lists.alioth.debian.org> ¶ icinga2 Debian Netatalk team <pkg-netatalk-devel@lists.alioth.debian.org> ¶ netatalk Debian Nginx Maintainers <pkg-nginx-maintainers@alioth-lists.debian.net> ¶ nginx Debian Nim Team <team+nim@tracker.debian.org> ¶ nim-hts + (U) Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org> ¶ advi + belenios coq coq-elpi coq-iris elpi extlib liquidsoap ocaml-atd ocaml-bitstring ocaml-containers ocaml-ptime ocaml-topkg ocaml-uucp ocaml-uunf ocamlviz omake # ssreflect wyrd Debian Octave Group <team+pkg-octave-team@tracker.debian.org> ¶ octave-communications octave-geometry octave-ltfat octave-nan octave-queueing zmat Debian OpenCL Maintainers <pkg-opencl-devel@lists.alioth.debian.org> ¶ pyopencl Debian OpenStack <team+openstack@tracker.debian.org> ¶ aetos blazar cinder cloudkitty cyborg designate glance ironic jenkins-job-builder keystone manila masakari masakari-monitors neutron neutron-ipv6-bgp-injector nova octavia openstack-trove python-glanceclient python-keystoneauth1 python-neutron-lib python-openstackclient python-os-faults python-sphinx-code-include python-taskflow qpid-proton rabbitmq-server vmms watcher Debian PaN Maintainers <debian-pan-maintainers@alioth-lists.debian.net> ¶ bitshuffle bornagain freesas jupyterhub (U) pyfai P pynx python-fabio python-mcstasscript + (U) python-pydash (U) wxmplot + (U) Debian Pan Maintainers <debian-pan-maintainers@alioth-lists.debian.net> ¶ node-ipydatagrid Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org> ¶ analizo lemonldap-ng libimage-librsvg-perl Debian PhotoTools Maintainers <pkg-phototools-devel@lists.alioth.debian.org> ¶ enblend-enfuse highway jpeg-xl pfstools Debian PHP Maintainers <team+pkg-php@tracker.debian.org> ¶ php8.4 Debian PHP PEAR Maintainers <pkg-php-pear@lists.alioth.debian.org> ¶ php-nesbot-carbon Debian Pkg-e Team <pkg-e-devel@lists.alioth.debian.org> ¶ efl Debian Policy Editors <debian-policy@lists.debian.org> ¶ debian-policy # Debian PostgreSQL Maintainers <team+postgresql@tracker.debian.org> ¶ patroni # pgloader prometheus-sql-exporter vip-manager2 Debian PostgreSQL team <team+postgresql@tracker.debian.org> ¶ libpqxx Debian Printing Team <debian-printing@lists.debian.org> ¶ foo2zjs libcupsfilters Debian Privacy Tools Maintainers <pkg-privacy-maintainers@lists.alioth.debian.org> ¶ vanguards + Debian publicity team <debian-publicity@lists.debian.org> ¶ debian-history Debian Python Team <team+python@tracker.debian.org> ¶ alembic ansible-lint + autokey beancount beangulp + bibtexparser + black celery cherrypy3 contourpy cysignals cython + dask datalad-next dkimpy faker fpylll frozenlist fsspec indexed-gzip ipyparallel ipython jpylyzer jupyter-server jupyter-sphinx jupyterhub kivy lazy-object-proxy m2crypto magic-wormhole-mailbox-server matplotlib mypy namecheap + nbconvert nbsphinx numpy painintheapt pathos pikepdf pwntools pyasn + pycifrw + pycparser + pydoctor pympress + python-altair + python-blosc python-cloup python-cycler python-cyclopts python-django python-django-import-export + python-django-waffle + python-envisage python-fissix python-fudge # python-genson + python-git python-graphene + python-igraph python-inline-snapshot python-laspy python-laszip python-levenshtein python-lupa + python-mcstasscript + python-mkdocs python-moderngl-window python-msgspec python-mt-940 + python-ofxhome + python-openstep-plist + python-oracledb python-passlib python-picologging python-pint python-propcache python-pydash python-pytest-shell-utilities + python-pyutil + python-qtconsole python-rcon python-schema-salad python-slimmer + python-spdx-tools # python-tld + python-tomli python-xlrd pywavelets + pyzmq rapidfuzz rdflib + scikit-misc slidge slixmpp sphinx-gallery sphinx-panels sphinxcontrib-googleanalytics taskflow ueberzug uncertainties whipper + wxmplot + xonsh # xyzservices yapsy yarl (U) zope.deferredimport + Debian QA Group <packages@qa.debian.org> ¶ aspic buddy + closure-compiler codelite coinor-dylp epm esnacc fte gnubg golang-github-go-macaron-toolbox + golang-github-issue9-identicon + haskell98-report kst libapreq2 libforms lifelines madlib naspro-core openclipart posixtestsuite propellor seyon systemtap terminaltables ucspi-proxy Debian QEMU Team <pkg-qemu-devel@lists.alioth.debian.org> ¶ qemu Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> ¶ akonadi akonadi-calendar akonadi-contacts + incidenceeditor kate kcalutils kdebugsettings kdepim-addons kdevelop-php kf6-breeze-icons kf6-extra-cmake-modules kf6-kirigami kf6-ktexttemplate kf6-syndication kmail kmailtransport kpimtextedit libgravatar libkdepim libksieve mailcommon mailimporter messagelib oxygen-icons pim-data-exporter pim-sieve-editor pimcommon plasma-mobile powerdevil pyside2 pyside6 qt6-3d qt6-5compat qt6-base qt6-charts qt6-connectivity qt6-datavis3d qt6-declarative qt6-graphs qt6-grpc qt6-httpserver qt6-imageformats qt6-languageserver qt6-location qt6-lottie qt6-multimedia qt6-networkauth qt6-positioning qt6-quick3d qt6-quick3dphysics qt6-quickeffectmaker qt6-quicktimeline qt6-remoteobjects qt6-scxml qt6-sensors qt6-serialbus qt6-serialport qt6-shadertools qt6-speech qt6-svg qt6-tools qt6-virtualkeyboard qt6-wayland qt6-webchannel qt6-websockets qt6-webview qtbase-opensource-src # # # qtbase-opensource-src-gles qtconnectivity-opensource-src qtcreator qtdeclarative-opensource-src qtsensors-opensource-src qtwebchannel-opensource-src qtwebengine-opensource-src syndication tokodon Debian R Packages Maintainers <r-pkg-team@alioth-lists.debian.net> ¶ r-cran-cli r-cran-cliapp r-cran-dbitest r-cran-diagnosismed r-cran-dimred r-cran-emayili r-cran-emmeans r-cran-futile.logger r-cran-gert r-cran-gprofiler2 r-cran-lambda.r r-cran-prophet r-cran-r.devices r-cran-r.rsp r-cran-repr r-cran-rhub r-cran-rprojroot r-cran-rsdmx r-cran-rstan r-cran-sass r-cran-teachingdemos r-cran-tm r-cran-tmvtnorm r-cran-tweenr r-cran-xfun Debian Rakudo Maintainers <pkg-rakudo-devel@lists.alioth.debian.org> ¶ moarvm prove6 raku-getopt-long raku-hash-merge raku-json-class raku-json-marshal raku-json-name raku-json-unmarshal raku-license-spdx raku-log raku-meta6 raku-readline raku-tap-harness raku-test-meta raku-uri raku-zef rakudo # Debian Reform Team <team+reform@tracker.debian.org> ¶ reform-handbook Debian Remote Maintainers <debian-remote@lists.debian.org> ¶ freerdp3 python-x2go P remmina x2goserver Debian Robotics Team <team+robotics@tracker.debian.org> ¶ fastdds iceoryx ros2-osrf-testing-tools-cpp ros2-rosidl Debian ROCm Team <debian-ai@lists.debian.org> ¶ rocdbgapi + rocm-docs-core rocm-hipamd rocprim Debian rsbackup maintainers <rsbackup-maint@lists.alioth.debian.org> ¶ rsbackup Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org> ¶ passenger ruby-gnuplot + ruby-otr-activerecord ruby-pygments.rb ruby-re2 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net> ¶ rust-fslock # rust-gperftools rust-laurel rust-rustpython-parser + rust-sequoia-keystore-server rust-sequoia-sq rust-xdg # rustc Debian Scheme Team <debian-scheme@lists.debian.org> ¶ guile-fibers Debian Science Maintainers <debian-science-maintainers@alioth-lists.debian.net> ¶ apertium-cat-ita apertium-cat-srd apertium-oci-fra apertium-srd-ita gap-scscp giac Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org> ¶ asl bitshuffle (U) bliss bornagain (U) c-blosc2 cdo clhep + coin3 coinor-bonmin coinor-cgl combblas cvc5 dolfin dune-common dune-functions dune-geometry dune-grid dune-grid-glue dune-istl dune-localfunctions dune-typetree dxf2gcode eccodes ecflow emoslib # epics-base esys-particle fdb fenics-dolfinx fenicsx-performance-tests ferret-vis fftw3 fiat-ecmwf fortran-fpm fortran-jonquil fortran-regex + fortran-testdrive freecad freesas (U) g2o gap-design gap-sonata geomview gerris getdp gle-graphics-manual gmsh gtsam guidata hdf-eos4 hdf-eos5 joblib lammps libbrahe libflame librsb # lmfit-py med-fichier metis metkit minieigen mona mpi4py mpich mumps neuron nfft ngspetsc node-shiny-server numexpr odc onetbb open3d opengv openmesh openmpi opm-simulators opm-upscaling pandas # pcl petsc plplot pnetcdf + pyfai P (U) pyferret pynx (U) pytango python-bumps python-escript python-fabio (U) python-hdf5plugin python-pyqtgraph python-xarray ros-dynamic-reconfigure scalapack scikit-learn sfepy silo-llnl simbody siscone sketch skimage slepc spglib spooles statsmodels sumo texmacs tkgate + virtuoso-opensource visp vlfeat wannier90 yade Debian Science Team <debian-science-maintainers@alioth-lists.debian.net> ¶ apertium-arg-cat apertium-br-fr apertium-eng-cat apertium-eng-spa apertium-eo-ca apertium-eo-es apertium-eo-fr apertium-es-gl apertium-eu-es apertium-fr-es apertium-fra-cat apertium-fra-frp apertium-hbs-eng apertium-hbs-mkd apertium-hbs-slv apertium-ind-zlm apertium-isl-swe apertium | 2026-01-13T09:30:28 |
https://tests.reproducible-builds.org/debian/trixie/index_dd-list.html | Maintainers of unreproducible packages in trixie Debian navigation Change suite/architecture Tested suites: unstable forky trixie bookworm experimental Test results statistics Results for trixie/amd64 Unreproducible packages: with notes without notes Other package states: package sets Recently tested packages: last 24h last 48h all tested packages packages with .buildinfo files packages without .buildinfo files Scheduled for amd64 Maintainers of in trixie Reproducible Debian overview Development dashboard Past releases dashboard Categorized issues Bugs filed Variations tested Packages with notifications enabled ⚑ Repositories overview Backend related Broken pieces Documentation (eg. on manual scheduling) Performance stats Health monitoring node overview job overview daily graphs weekly graphs monthly graphs yearly graphs The Reproducible Builds project reproducible-builds.org Reproducible Builds - Docs • News Reproducible Builds in Debian - Wiki SOURCE_DATE_EPOCH specification reproduce.debian.net aims for 100% bit-for-bit identical rebuilds of Debian other CI tests Maintainers of unreproducible packages in trixie The following maintainers and uploaders are listed for packages in trixie which have built unreproducibly. Please note that the while the link always points to the amd64 version, it's possible thatthe unreproducibility is only present in another architecture(s). "Adam C. Powell, IV" <hazelsct@debian.org> ¶ med-fichier (U) mpich (U) petsc (U) slepc (U) A Mennucc1 <mennucc1@debian.org> ¶ mplayer (U) A. Maitland Bottoms <bottoms@debian.org> ¶ gnuradio gpredict (U) gr-dab (U) gr-fosphor gr-limesdr (U) gr-radar gr-rds libiio uhd Aaron M. Ucko <ucko@debian.org> ¶ fltk1.3 fltk1.4 gbrowse (U) ncbi-blast+ (U) Abdelhakim Qbaich <abdelhakim@qbaich.com> ¶ gambc Abou Al Montacir <abou.almontacir@sfr.fr> ¶ castle-game-engine (U) fp-units-win (U) Adam Borowski <kilobyte@angband.pl> ¶ cardo (U) valgrind + (U) Adam Majer <adamm@zombino.com> ¶ qtcreator (U) Adrian Vondendriesch <adrian.vondendriesch@credativ.de> ¶ pacemaker (U) Afif Elghraoui <afif@debian.org> ¶ gridengine # (U) Agustin Henze <tin@debian.org> ¶ yapsy (U) Alastair McKinstry <mckinstry@debian.org> ¶ atlas-ecmwf (U) cctools eccodes (U) eckit (U) emoslib # (U) fdb (U) ferret-vis (U) fiat-ecmwf (U) hdf-eos4 (U) hdf-eos5 (U) libtool metkit (U) metview (U) mpich (U) odc (U) openmpi (U) paraview # (U) pyferret (U) python-escript (U) python-xarray (U) silo-llnl (U) Alberto Leiva Popper <ydahhrk@gmail.com> ¶ jool Alberto Luaces Fernández <aluaces@udc.es> ¶ yasnippet (U) Albin Tonnerre <lutin@debian.org> ¶ efl (U) Alec Leamas <leamas.alec@gmail.com> ¶ opencpn Alessandro Ghedini <ghedo@debian.org> ¶ ecasound (U) valgrind + Alessio Treglia <alessio@debian.org> ¶ kmetronome (U) libsoxr (U) schism (U) tsdecrypt (U) Alex Myczko <tar@debian.org> ¶ 3d-ascii-viewer-c cheesecutter (U) coot (U) far2l fonts-atarist # (U) fonts-topaz-unicode (U) ftxui (U) furnace (U) lft lie mdnsd netsurf (U) schism (U) shotcut + (U) zytrax (U) Alexander Kjäll <alexander.kjall@gmail.com> ¶ rust-sequoia-keystore-server (U) rust-sequoia-sq (U) Alexander List <alex@debian.org> ¶ libpostscriptbarcode (U) Alexander Ponyatykh <lazyranma@gmail.com> ¶ g15daemon paexec Alexander Wirt <formorer@debian.org> ¶ icinga2 (U) Alexandre Dantas <eu@alexdantas.net> ¶ nsnake (U) Alexandre Detiste <tchet@debian.org> ¶ contourpy (U) m2crypto (U) matplotlib (U) sphinx-panels (U) Alexandre Viau <aviau@debian.org> ¶ fonts-fork-awesome (U) Aloïs Micard <creekorful@debian.org> ¶ aerc (U) Amin Bandali <bandali@ubuntu.com> ¶ gtk4 (U) Amul Shah <Amul.Shah@fisglobal.com> ¶ fis-gtm (U) Ananthu C V <weepingclown@debian.org> ¶ lazygit (U) Anders Kaseorg <andersk@mit.edu> ¶ openafs (U) Andrea Pappacoda <tachi@debian.org> ¶ mbedtls (U) yuzu Andreas Beckmann <anbe@debian.org> ¶ papi (U) pyopencl (U) Andreas Boll <aboll@debian.org> ¶ mesa (U) Andreas Bombe <aeb@debian.org> ¶ ghdl (U) gr-limesdr (U) Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> ¶ clamav (U) Andreas Henriksson <andreas@fatal.se> ¶ golang-github-mendersoftware-mender-artifact (U) Andreas Metzler <ametzler@debian.org> ¶ efl (U) enblend-enfuse (U) lynx (U) pfstools (U) Andreas Rönnquist <gusnan@debian.org> ¶ allegro5 # (U) Andreas Tille <tille@debian.org> ¶ altree (U) btllib (U) camitk (U) consensuscore (U) crac (U) dicom3tools (U) emboss (U) filtlong (U) fis-gtm (U) gbrowse (U) golang-github-jung-kurt-gofpdf + (U) hmmer (U) igraph (U) libcifpp (U) libhmsbeagle (U) liblemon (U) libpll (U) librostlab (U) libsbml (U) mapsembler2 (U) minimap2 (U) ncbi-blast+ (U) ngspice (U) node-shiny-server (U) openmm (U) parallel (U) porechop (U) python-pysam (U) r-bioc-ballgown (U) r-bioc-biocparallel (U) r-bioc-genomicfeatures (U) r-bioc-ioniser (U) r-cran-cli (U) r-cran-cliapp (U) r-cran-dbitest (U) r-cran-diagnosismed (U) r-cran-dimred (U) r-cran-emayili (U) r-cran-futile.logger (U) r-cran-gert (U) r-cran-gprofiler2 (U) r-cran-lambda.r (U) r-cran-prophet (U) r-cran-rprojroot (U) r-cran-rstan (U) r-cran-sass (U) r-cran-teachingdemos (U) r-cran-tm (U) r-cran-tmvtnorm (U) r-cran-tweenr (U) r-cran-xfun (U) segemehl (U) siscone (U) tree-puzzle (U) treeview (U) twopaco (U) unicycler (U) virtuoso-opensource (U) Andrei Rozanski <rozanski.andrei@gmail.com> ¶ libamplsolver (U) Andrej Shadura <andrewsh@debian.org> ¶ critcl + (U) fonts-karmilla (U) g15daemon (U) libcamera (U) mk-configure sphinxsearch Andrew Lee (李健秋) <ajqlee@debian.org> ¶ libchewing (U) nomacs (U) Andrey Rakhmatullin <wrar@debian.org> ¶ kvirc (U) Andrius Merkys <merkys@debian.org> ¶ bespokesynth (U) coot (U) epics-base (U) ncbi-igblast (U) openmm (U) pdb-tools (U) python-fabio (U) rdkit (U) spglib (U) vst3sdk (U) wannier90 (U) Android Tools Maintainers <android-tools-devel@lists.alioth.debian.org> ¶ android-platform-external-libunwind Andy Pugh <bodgesoc@gmail.com> ¶ linuxcnc (U) Aniol Martí <amarti@caliu.cat> ¶ aegisub Ansgar <ansgar@debian.org> ¶ dune-common (U) dune-functions (U) dune-geometry (U) dune-grid (U) dune-grid-glue (U) dune-istl (U) dune-localfunctions (U) dune-typetree (U) Anthony Fok <foka@debian.org> ¶ autokey (U) golang-github-yosssi-ace (U) golang-golang-x-net (U) guile-2.2 Antoine Beaupré <anarcat@debian.org> ¶ magic-wormhole-mailbox-server magic-wormhole-transit-relay + Anton Gladky <gladk@debian.org> ¶ boost1.88 (U) esys-particle (U) gmsh (U) lammps (U) minieigen (U) sumo (U) sundials (U) yade (U) Anton Zinoviev <zinoviev@debian.org> ¶ scalable-cyrfonts Antonio Terceiro <terceiro@debian.org> ¶ passenger (U) Antonio Valentino <antonio.valentino@tiscali.it> ¶ c-blosc2 (U) numexpr (U) pysolid (U) python-pint (U) Anuradha Weeraman <anuradha@debian.org> ¶ ksh93u+m # Arnaud Ferraris <aferraris@debian.org> ¶ gnome-metronome (U) Arnaud Fontaine <arnau@debian.org> ¶ glosstex (U) Arnaud Rebillout <arnaud.rebillout@collabora.com> ¶ efitools (U) Arnaud Rebillout <arnaudr@kali.org> ¶ docker.io (U) mirrorbits (U) notary (U) Arne Morten Kvarving <arne.morten.kvarving@sintef.no> ¶ opm-simulators (U) opm-upscaling (U) Arnout Engelen <arnouten@bzzt.net> ¶ kmetronome (U) Aron Xu <aron@debian.org> ¶ dnf-plugins-core (U) fcitx-libpinyin (U) ibus (U) libpinyin (U) opencc (U) Arthur Diniz <arthurbdiniz@gmail.com> ¶ hey (U) kind (U) kustomize (U) Arun Kumar Pariyar <openarungeek@gmail.com> ¶ dde-qt-dbus-factory (U) Asias He <asias@debian.org> ¶ libpinyin (U) opencc (U) Athena Capital Research <acr-debian@athenacr.com> ¶ quickfix Aurelien Jarno <aurel32@debian.org> ¶ med-fichier (U) Aurélien COUDERC <coucouf@debian.org> ¶ kate (U) kdevelop-php (U) kf6-breeze-icons (U) kf6-extra-cmake-modules (U) kf6-kirigami (U) oxygen-icons (U) Axel Beckert <abe@debian.org> ¶ dpmb john (U) lynx (U) Aymeric Agon-Rambosson <aymeric.agon@yandex.com> ¶ citar (U) consult-el (U) embark (U) magit (U) marginalia (U) orderless (U) vertico (U) Balasankar C <balasankarc@debian.org> ¶ fonts-smc-anjalioldlipi (U) fonts-smc-dyuthi (U) fonts-smc-karumbi (U) fonts-smc-keraleeyam (U) fonts-smc-meera (U) fonts-smc-rachana (U) fonts-smc-raghumalayalamsans (U) fonts-smc-uroob (U) Balint Reczey <balint@balintreczey.hu> ¶ erlang-cowlib (U) Barak A. Pearlmutter <bap@debian.org> ¶ chezscheme (U) fstrcmp ikarus ivtools latex-coffee-stains libemf magit (U) mit-scheme oaklisp pstoedit webcamoid yasnippet (U) Barry deFreese <bdefreese@debian.org> ¶ asc (U) blockattack (U) liquidwar (U) netrek-client-cow (U) Bartosz Fenski <fenio@debian.org> ¶ asc (U) Bas Couwenberg <sebastic@debian.org> ¶ grass (U) libosmium (U) nco (U) postgis (U) qgis (U) Bas Wijnen <wijnen@debian.org> ¶ openmsx Bas Zoetekouw <bas@debian.org> ¶ blktrace Bastian Blank <waldi@debian.org> ¶ cdebootstrap + linux (U) Bastian Venthur <venthur@debian.org> ¶ kivy (U) Bdale Garbee <bdale@gag.com> ¶ debian-history (U) librnd (U) pforth rocketcea scikit-fmm Ben Hutchings <benh@debian.org> ¶ linux (U) Benda Xu <heroxbd@gentoo.org> ¶ casacore (U) casacore-data-igrf (U) casacore-data-jplde (U) scim (U) Benda Xu <orv@debian.org> ¶ scmutils Benjamin Barenblat <bbaren@debian.org> ¶ coq (U) Benjamin Drung <bdrung@debian.org> ¶ libsoxr (U) vlc # + (U) Benjamin Drung <bdrung@ubuntu.com> ¶ rdma-core Benjamin Kaduk <kaduk@mit.edu> ¶ openafs Bernd Zeimetz <bzed@debian.org> ¶ gpsbabel (U) Bernhard Miklautz <bernhard.miklautz@shacknet.at> ¶ freerdp3 (U) Bernhard R. Link <brlink@debian.org> ¶ git-dpm bertrand Neron <bneron@pasteur.fr> ¶ macsyfinder (U) Birger Schacht <birger@debian.org> ¶ foot Blair Noctis <ncts@debian.org> ¶ atuin Boian Bonev <bbonev@ipacct.com> ¶ gpsd Boris Pek <tehnick@debian.org> ¶ psi-plus Boyuan Yang <byang@debian.org> ¶ dde-qt-dbus-factory (U) fcitx5-bamboo (U) fcitx5-zhuyin (U) font-manager (U) opencc (U) rime-array (U) rime-cangjie (U) rime-cantonese (U) rime-ipa (U) rime-loengfan (U) rime-luna-pinyin (U) rime-middle-chinese (U) rime-pinyin-simp (U) rime-quick (U) rime-scj (U) rime-soutzoe (U) rime-stroke (U) rime-terra-pinyin (U) rime-wubi (U) rime-wugniu (U) Breno Leitao <leitao@debian.org> ¶ cappuccino Brian May <bam@debian.org> ¶ celery (U) faker (U) python-django (U) python-mkdocs (U) BW Keller <malzraa@gmail.com> ¶ yt (U) Camm Maguire <camm@debian.org> ¶ axiom fricas gcl gcl27 hol88 lam + maxima Carlo Segre <segre@debian.org> ¶ ifeffit (U) Carlos Zuferri <chals@altorricon.com> ¶ live-manual (U) Carsten Leonhardt <leo@debian.org> ¶ bacula-doc (U) Carsten Schoenert <c.schoenert@t-online.de> ¶ kicad (U) ngspice (U) python-mkdocs (U) python-picologging (U) Cesare Falco <c.falco@ubuntu.com> ¶ mame (U) Changwoo Ryu <cwryu@debian.org> ¶ ibus (U) ChangZhuo Chen (陳昌倬) <czchen@debian.org> ¶ fcitx-libpinyin (U) ibus-libzhuyin (U) libchewing (U) libpinyin (U) nomacs (U) Charles Plessy <plessy@debian.org> ¶ altree (U) emboss (U) gbrowse (U) python-pysam (U) tree-puzzle (U) Chris Halls <halls@debian.org> ¶ writer2latex (U) Chris Hofstaedtler <zeha@debian.org> ¶ ragel Chris Lamb <lamby@debian.org> ¶ black (U) python-django (U) Chris Talbot <chris@talbothome.com> ¶ mousai (U) Christian Bayle <bayle@debian.org> ¶ jfreepdf (U) jfreesvg (U) orson-charts (U) Christian Ehrhardt <christian.ehrhardt@canonical.com> ¶ dpdk (U) Christian Kastner <ckk@debian.org> ¶ hipcub (U) numpy (U) rccl (U) rocfft (U) rocm-hipamd (U) rocrand (U) rocsolver (U) rocsparse (U) scikit-learn (U) Christian M. Amsüss <chrysn@fsfe.org> ¶ rdflib + (U) Christian Marillat <marillat@debian.org> ¶ libtorrent-rasterbar Christian T. Steigies <cts@debian.org> ¶ gle-graphics-manual (U) Christoph Berg <myon@debian.org> ¶ gpredict (U) gr-limesdr (U) libcm256cc (U) patroni # (U) pgloader (U) postgis (U) vip-manager2 (U) Christoph Biedl <debian.axhn@manchmal.in-ulm.de> ¶ gkrellm-leds P Christoph Egger <christoph@debian.org> ¶ buildapp (U) clisp (U) ecl (U) warzone2100 (U) Christoph Haas <haas@debian.org> ¶ zabbix (U) Christoph Martin <chrism@debian.org> ¶ vdr-plugin-markad (U) Christophe Mutricy <xtophe@videolan.org> ¶ vlc # + (U) Christophe Trophime <christophe.trophime@lncmi.cnrs.fr> ¶ getdp (U) gmsh (U) Christopher Baines <mail@cbaines.net> ¶ faker (U) Christopher Hoskin <mans0954@debian.org> ¶ pympress + (U) ClamAV Team <pkg-clamav-devel@lists.alioth.debian.org> ¶ clamav Clay Stan <claystan97@gmail.com> ¶ dde-qt-dbus-factory (U) Clint Adams <clint@debian.org> ¶ ghc # (U) haskell-gi-gdk (U) haskell-gi-gtk (U) haskell-shell-conduit (U) haskell-snap-templates (U) Clément Hermann <nodens@debian.org> ¶ onedrive (U) Colin Watson <cjwatson@debian.org> ¶ groff yubihsm-connector (U) Compute Library Team <developer-compute@arm.com> ¶ arm-compute-library Cordell Bloor <cgmb@slerp.xyz> ¶ hipcub (U) rccl (U) rocdbgapi + (U) rocfft (U) rocm-hipamd (U) rocrand (U) rocsolver (U) rocsparse (U) Corey Bryant <corey.bryant@canonical.com> ¶ python-keystoneauth1 (U) Cyril Brulebois <kibi@debian.org> ¶ debian-installer # # # (U) Cédric Boutillier <boutil@debian.org> ¶ gfan (U) highlight.js (U) Cédric Lood <cedric.lood@kuleuven.be> ¶ porechop (U) Dain Nilsson <dain@yubico.com> ¶ libu2f-host (U) Damien Raude-Morvan <drazzib@debian.org> ¶ codenarc (U) Damyan Ivanov <dmn@debian.org> ¶ firebird4.0 Danai SAE-HAN (韓達耐) <danai@debian.org> ¶ cjk (U) latex-cjk-chinese-arphic (U) Daniel Baumann <daniel@debian.org> ¶ ck dnsjit Daniel Dehennin <daniel.dehennin@baby-gnu.org> ¶ moarvm (U) raku-readline (U) raku-tap-harness (U) raku-zef (U) rakudo # (U) Daniel Gröber <dxld@darkboxed.org> ¶ yosys (U) Daniel Kahn Gillmor <dkg@fifthhorseman.net> ¶ knot (U) rust-gperftools (U) rust-sequoia-sq (U) Daniel Salzman <daniel.salzman@nic.cz> ¶ knot (U) dann frazier <dannf@debian.org> ¶ edk2 (U) makedumpfile (U) Dave Hibberd <hibby@debian.org> ¶ svxlink (U) Dave Love <d.love@liverpool.ac.uk> ¶ gridengine # (U) David Banks <amoebae@gmail.com> ¶ sisc David Bremner <bremner@debian.org> ¶ emacs-jabber (U) polymake sketch (U) slime (U) David Miguel Susano Pinto <carandraug+dev@gmail.com> ¶ ncbi-igblast (U) David Paleino <dapal@debian.org> ¶ openlayers (U) uncertainties (U) underscore (U) David Suárez <david.sephirot@gmail.com> ¶ ruby-re2 (U) David Weinehall <tao@debian.org> ¶ scummvm (U) Davide Viti <zinosat@tiscali.it> ¶ fonts-freefont (U) Dawid Dziurla <dawidd0811@gmail.com> ¶ termshark (U) Dean Serenevy <dean@serenevy.net> ¶ kivy (U) Debian Accessibility Team <pkg-a11y-devel@alioth-lists.debian.net> ¶ flite Debian ACE maintainers <team+ace@tracker.debian.org> ¶ ace Debian Astro Maintainers <debian-astro-maintainers@lists.alioth.debian.org> ¶ pybdsf stellarium Debian Astro Team <debian-astro-maintainers@lists.alioth.debian.org> ¶ astroplan astroquery casacore casacore-data-igrf casacore-data-jplde eso-midas montage ndcube pyregion python-casacore starjava-ttools Debian Astronomy Team <debian-astro-maintainers@lists.alioth.debian.org> ¶ c-munipack yt Debian Authentication Maintainers <team+auth@tracker.debian.org> ¶ libu2f-host Debian Bacula Team <pkg-bacula-devel@lists.alioth.debian.org> ¶ bacula-doc Debian Bluetooth Maintainers <team+pkg-bluetooth@tracker.debian.org> ¶ bluez Debian Boost Team <team+boost@tracker.debian.org> ¶ boost1.88 Debian Chinese Team <chinese-developers@lists.alioth.debian.org> ¶ opencc (U) unicon # Debian CLI Applications Team <pkg-cli-apps-team@lists.alioth.debian.org> ¶ hexbox openmcdf Debian CLI Libraries Team <pkg-cli-libs-team@lists.alioth.debian.org> ¶ log4net opentk Debian Clojure Maintainers <team+clojure@tracker.debian.org> ¶ clojure core-specs-alpha-clojure leiningen-clojure + spec-alpha-clojure Debian Common Lisp Team <debian-common-lisp@lists.debian.org> ¶ abcl buildapp clisp ecl sbcl slime Debian D Language Group <team+d-team@tracker.debian.org> ¶ dub ldc Debian Deepin Packaging Team <pkg-deepin-devel@lists.alioth.debian.org> ¶ dde-qt-dbus-factory Debian Documentation Project <debian-doc@lists.debian.org> ¶ refcard Debian DPDK Maintainers <pkg-dpdk-devel@lists.alioth.debian.org> ¶ dpdk Debian EFI team <debian-efi@lists.debian.org> ¶ libjcat Debian Electronics Team <pkg-electronics-devel@alioth-lists.debian.net> ¶ kicad ngspice Debian Electronics Team <pkg-electronics-devel@lists.alioth.debian.org> ¶ arduino ghdl librnd verilator yosys Debian Emacsen team <debian-emacsen@lists.debian.org> ¶ citar consult-el elpa-transient embark magit magit-forge-el maildir-utils marginalia orderless vertico yasnippet Debian Emacsen Team <debian-emacsen@lists.debian.org> ¶ emacs-jabber ghub-el with-editor Debian Erlang Packagers <pkg-erlang-devel@lists.alioth.debian.org> ¶ elixir-makeup erlang erlang-cowlib erlang-hex manderlbot rebar rebar3 wings3d yaws Debian Fonts Task Force <debian-fonts@lists.debian.org> ¶ cardo font-manager fonts-atarist # fonts-cantarell fonts-fantasque-sans fonts-fork-awesome fonts-meera-inimai fonts-smc-anjalioldlipi fonts-smc-dyuthi fonts-smc-karumbi fonts-smc-keraleeyam Debian Fonts Task Force <pkg-fonts-devel@lists.alioth.debian.org> ¶ fonts-beteckna fonts-cascadia-code fonts-freefont fonts-karmilla fonts-smc-meera fonts-smc-rachana fonts-smc-raghumalayalamsans fonts-topaz-unicode Debian Games Team <pkg-games-devel@lists.alioth.debian.org> ¶ 0ad ace-of-penguins allegro5 # asc blockattack bzflag colobot doomsday gnubg (U) libsfml liquidwar mame netrek-client-cow nsnake ogre-1.12 scummvm teeworlds ufoai warzone2100 xpenguins Debian GCC Maintainers <debian-gcc@lists.debian.org> ¶ gcc-12-cross gcc-13-cross gcc-13-cross-mipsen gcc-14 gcc-14-cross gcc-14-cross-mipsen gcc-14-cross-ports Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org> ¶ grass libosmium nco openlayers postgis pysolid qgis savi Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org> ¶ blueprint-compiler bustle fragments glib-d gnome-authenticator gnome-metronome gnome-shell-extension-easyscreencast gtk4 kooha librsvg mousai obfuscate shortwave warp Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org> ¶ golang-github-cloudflare-cfssl golang-github-yosssi-ace Debian Go Packaging Team <team+pkg-go@tracker.debian.org> ¶ aerc age caddy containerd dasel docker.io fscrypt go-sendxmpp gobgp golang-github-containerd-nydus-snapshotter golang-github-jung-kurt-gofpdf + golang-github-mendersoftware-mender-artifact golang-golang-x-net gosop hey lazygit notary riseup-vpn secsipidx termshark tty-record victoriametrics xmpp-dns ymuse Debian GPS team <gpsbabel@packages.debian.org> ¶ gpsbabel Debian HA Maintainers <debian-ha-maintainers@alioth-lists.debian.net> ¶ pacemaker Debian Hamradio Maintainers <debian-hams@lists.debian.org> ¶ gpredict gr-limesdr libcm256cc svxlink tucnak Debian Haskell Group <debian-haskell@lists.debian.org> ¶ haskell-swish Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org> ¶ ghc # haskell-gi-gdk haskell-gi-gtk haskell-shell-conduit haskell-snap-templates Debian Hebrew Packaging Team <team+hebrew@tracker.debian.org> ¶ bidiui libhdate Debian HPC Team <debian-hpc@lists.debian.org> ¶ condor gridengine # papi Debian Input Method Team <debian-input-method@lists.debian.org> ¶ fcitx-libpinyin fcitx5-bamboo fcitx5-zhuyin ibus ibus-libzhuyin keyman libchewing libpinyin open-gram opencc rime-array rime-cangjie rime-cantonese rime-ipa rime-loengfan rime-luna-pinyin rime-middle-chinese rime-pinyin-simp rime-quick rime-scj rime-soutzoe rime-stroke rime-terra-pinyin rime-wubi rime-wugniu Debian Install System Team <debian-boot@lists.debian.org> ¶ debian-installer # # # Debian IoT Maintainers <debian-iot-maintainers@alioth-lists.debian.net> ¶ mbedtls Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org> ¶ aspectj bsh cobertura codenarc derby felix-framework felix-main gmetrics gradle-kotlin-dsl + graxxia groovy h2database hyperic-sigar jabref jakarta-jmeter + jalview jameica-h2database janino javawriter jcabi-aspects jetty12 jfreepdf jfreesvg json4s jxplorer libcommons-fileupload-java libhibernate-validator-java libhibernate-validator4-java libjpam-java libnative-platform-java libnb-platform18-java libxtc-rats-java lucene-solr lucene4.10 mathpiper okio orson-charts plexus-utils2 sbt-launcher-interface sbt-serialization scala scala-parser-combinators scala-pickling scala-tools-sbinary scala-xml serp sweethome3d-furniture tomcat10 tomcat11 tomcat9 visualvm weka weupnp xmlbeans xmlgraphics-commons zookeeper Debian Javascript Maintainers <debian-pan-maintainers@alioth-lists.debian.net> ¶ jupyterlab Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org> ¶ highlight.js moment-timezone.js node-d3 node-function-bind + node-opencv node-svgdotjs-svg.js node-webpack twitter-bootstrap3 underscore Debian Junior Maintainers <debian-jr@lists.debian.org> ¶ tuxpaint (U) Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> ¶ kvirc Debian Kdump <team+kdump@tracker.debian.org> ¶ makedumpfile Debian Kernel Team <debian-kernel@lists.debian.org> ¶ linux Debian Kolab Maintainers <team+kolab-mantainers@tracker.debian.org> ¶ libkolabxml Debian Kubernetes Packaging Team <team+kubernetes@tracker.debian.org> ¶ kind kustomize Debian LibreOffice Maintainers <debian-openoffice@lists.debian.org> ¶ writer2latex Debian Libvirt Maintainers <pkg-libvirt-maintainers@lists.alioth.debian.org> ¶ libguestfs Debian Live Maintainers <debian-live@lists.debian.org> ¶ live-manual Debian Lynx Packaging Team <pkg-lynx-maint@lists.alioth.debian.org> ¶ lynx Debian Math Team <team+math@tracker.debian.org> ¶ fflas-ffpack frobby gfan linbox macaulay2 maxima-sage phcpack primesieve python-mapbox-earcut singular Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org> ¶ altree ants # bmtk brian btllib camitk cmtk consensuscore crac cwltool dcmtk dicom3tools dipy emboss filtlong fis-gtm gbrowse gdcm heudiconv hmmer igraph libamplsolver libcifpp libhmsbeagle liblemon libpll librostlab libsbml macsyfinder mapsembler2 metastudent-data minimap2 mrtrix3 ncbi-blast+ ncbi-igblast nitime odil parallel porechop pydicom python-pysam python-trx-python salmon segemehl seqan3 shapeit4 sight sourmash tree-puzzle treeview twopaco unicycler Debian Mobcom Maintainers <Debian-mobcom-maintainers@lists.alioth.debian.org> ¶ libosmocore Debian Multimedia Maintainers <debian-multimedia@lists.debian.org> ¶ bespokesynth cheesecutter dragonfly-reverb ecasound furnace gsequencer handbrake jsusfx juce kmetronome kodi-inputstream-adaptive libcamera libdc1394 libsoxr mplayer openni openni-sensor-pointclouds openni-sensor-primesense opensubdiv pupnp schism shotcut + tsdecrypt vlc # + vst3sdk x265 zytrax Debian Nagios Maintainer Group <pkg-nagios-devel@lists.alioth.debian.org> ¶ icinga2 Debian Nginx Maintainers <pkg-nginx-maintainers@alioth-lists.debian.net> ¶ nginx Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org> ¶ advi + coq coq-elpi coq-iris liquidsoap ocaml-atd ocaml-containers ocaml-ptime ocaml-topkg ocaml-uucp ocaml-uunf ocamlviz omake # ssreflect wyrd Debian Octave Group <team+pkg-octave-team@tracker.debian.org> ¶ octave-communications octave-queueing Debian OpenCL Maintainers <pkg-opencl-devel@lists.alioth.debian.org> ¶ pyopencl Debian OpenStack <team+openstack@tracker.debian.org> ¶ barbican blazar cinder cloudkitty cyborg designate glance heat ironic jenkins-job-builder keystone manila masakari masakari-monitors neutron nova octavia openstack-trove python-keystoneauth1 python-neutron-lib python-openstackclient python-os-faults python-psycopg2cffi python-sphinx-code-include python-taskflow qpid-proton rabbitmq-server watcher Debian PaN Maintainers <debian-pan-maintainers@alioth-lists.debian.net> ¶ bitshuffle bornagain dmrgpp ifeffit jupyterhub (U) pyfai P pynx python-fabio python-pydash (U) wxmplot + (U) Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org> ¶ lemonldap-ng Debian PhotoTools Maintainers <pkg-phototools-devel@lists.alioth.debian.org> ¶ enblend-enfuse highway jpeg-xl pfstools Debian PHP Maintainers <team+pkg-php@tracker.debian.org> ¶ php8.4 Debian Pkg-e Team <pkg-e-devel@lists.alioth.debian.org> ¶ efl Debian Policy Editors <debian-policy@lists.debian.org> ¶ debian-policy # Debian PostgreSQL Maintainers <team+postgresql@tracker.debian.org> ¶ patroni # pgloader vip-manager2 Debian PostgreSQL team <team+postgresql@tracker.debian.org> ¶ libpqxx Debian Printing Team <debian-printing@lists.debian.org> ¶ foo2zjs libcupsfilters Debian publicity team <debian-publicity@lists.debian.org> ¶ debian-history Debian Python Team <team+python@tracker.debian.org> ¶ autokey beancount black celery cysignals (U) dask datalad-next domain2idna faker fpylll frozenlist indexed-gzip ipyparallel ipython jpylyzer jupyter-server jupyterhub kivy lazy-object-proxy m2crypto matplotlib mypy nbconvert nbsphinx numpy pathos pikepdf pwntools pympress + python-blosc python-cloup python-cyclopts python-django python-django-import-export + python-fudge # python-git python-igraph python-inline-snapshot python-laspy python-laszip python-levenshtein python-mkdocs python-mt-940 + python-oracledb python-picologging python-pint python-propcache python-pydash python-pytest-shell-utilities + python-qtconsole python-rcon python-schema-salad python-tomli pyzmq rapidfuzz rdflib + scikit-misc sphinx-panels sphinxcontrib-googleanalytics taskflow ueberzug uncertainties wxmplot + xonsh # yapsy yarl (U) Debian Python Team <team+python@tracker.debian.org>, ¶ contourpy python-cycler Debian QA Group <packages@qa.debian.org> ¶ aspic buddy + clearsilver closure-compiler codelite coinor-dylp esnacc fte ftgl gnubg haskell98-report kst libapreq2 libbrahe libexplain lifelines madlib naspro-core openclipart posixtestsuite seyon smuxi storebackup terminaltables ucspi-proxy xmlstarlet Debian QEMU Team <pkg-qemu-devel@lists.alioth.debian.org> ¶ edk2 qemu Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> ¶ kate kdevelop-php kf6-breeze-icons kf6-extra-cmake-modules kf6-kirigami oxygen-icons pyside2 pyside6 qt6-3d qt6-5compat qt6-base qt6-charts qt6-connectivity qt6-datavis3d qt6-declarative qt6-graphs qt6-grpc qt6-httpserver qt6-imageformats qt6-languageserver qt6-location qt6-lottie qt6-multimedia qt6-networkauth qt6-positioning qt6-quick3d qt6-quick3dphysics qt6-quickeffectmaker qt6-quicktimeline qt6-remoteobjects qt6-scxml qt6-sensors qt6-serialbus qt6-serialport qt6-shadertools qt6-speech qt6-svg qt6-tools qt6-virtualkeyboard qt6-wayland qt6-webchannel qt6-websockets qt6-webview qtbase-opensource-src # # # qtbase-opensource-src-gles qtconnectivity-opensource-src qtcreator qtdeclarative-opensource-src qtsensors-opensource-src qtwebchannel-opensource-src qtwebengine-opensource-src Debian R Packages Maintainers <r-pkg-team@alioth-lists.debian.net> ¶ r-bioc-ballgown r-bioc-biocparallel r-bioc-genomicfeatures r-bioc-ioniser r-bioc-qtlizer r-cran-cli r-cran-cliapp r-cran-dbitest r-cran-diagnosismed r-cran-dimred r-cran-emayili r-cran-futile.logger r-cran-gert r-cran-gh r-cran-gprofiler2 r-cran-lambda.r r-cran-prophet r-cran-r.devices r-cran-r.rsp r-cran-repr r-cran-rprojroot r-cran-rsdmx r-cran-rstan r-cran-sass r-cran-teachingdemos r-cran-tm r-cran-tmvtnorm r-cran-tweenr r-cran-xfun Debian Rakudo Maintainers <pkg-rakudo-devel@lists.alioth.debian.org> ¶ moarvm prove6 raku-getopt-long raku-hash-merge raku-json-class raku-json-marshal raku-json-name raku-json-unmarshal raku-license-spdx raku-log raku-meta6 raku-readline raku-tap-harness raku-test-meta raku-uri raku-zef rakudo # Debian Reform Team <team+reform@tracker.debian.org> ¶ reform-handbook Debian Remote Maintainers <debian-remote@lists.debian.org> ¶ freerdp3 python-x2go P remmina x2goserver Debian Robotics Team <team+robotics@tracker.debian.org> ¶ fastdds ros2-osrf-testing-tools-cpp Debian ROCm Team <debian-ai@lists.debian.org> ¶ hipcub rccl rocdbgapi + rocfft rocm-hipamd rocrand rocsolver rocsparse Debian rsbackup maintainers <rsbackup-maint@lists.alioth.debian.org> ¶ rsbackup Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org> ¶ passenger ruby-pygments.rb ruby-re2 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net> ¶ rust-gperftools rust-laurel rust-sequoia-keystore-server rust-sequoia-sq rustc sourmash (U) Debian Samba Maintainers <pkg-samba-maint@lists.alioth.debian.org> ¶ samba Debian Science Maintainers <debian-science-maintainers@alioth-lists.debian.net> ¶ bliss cvc5 gap-scscp giac texmacs Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org> ¶ adios2 asl atlas-ecmwf bitshuffle (U) bornagain (U) c-blosc2 cctbx coin3 coinor-bonmin coinor-cgl combblas coot deal.ii dmrgpp (U) dolfin dune-common dune-functions dune-geometry dune-grid dune-grid-glue dune-istl dune-localfunctions dune-typetree dxf2gcode eccodes eckit emoslib # epics-base esys-particle fdb fenics-dolfinx fenicsx-performance-tests ferret-vis fftw3 fiat-ecmwf freecad g2o gap-design gap-sonata gerris getdp gle-graphics-manual gmsh gtsam guidata hdf-eos4 hdf-eos5 ifeffit (U) joblib lammps libflame librsb # libxsmm lmfit-py med-fichier metkit metview minieigen mona mpi4py mpich neuron nfft ngspetsc node-shiny-server numexpr odc onetbb open3d opengv openmesh openmpi openturns opm-simulators opm-upscaling pcl petsc pyfai P (U) pyferret pynx (U) pytango python-escript python-fabio (U) python-hdf5plugin python-pyqtgraph python-xarray sasview scikit-learn silo-llnl simbody siscone sketch skimage slepc spglib statsmodels sumo virtuoso-opensource visp vlfeat wannier90 yade Debian Science Team <debian-science-maintainers@alioth-lists.debian.net> ¶ scilab Debian Science Team <debian-science-maintainers@lists.alioth.debian.org> ¶ fftw geomview getfem mrmpi opencv pandas # paraview # plplot ppl sdpb sundials Debian Security Tools <team+pkg-security@tracker.debian.org> ¶ de4dot john samhain scap-security-guide yubihsm-connector Debian SELinux maintainers <selinux-devel@lists.alioth.debian.org> ¶ secilc Debian semweb Team <team+semweb@tracker.debian.org> ¶ zeitgeist Debian Shib Team <pkg-shibboleth-devel@alioth-lists.debian.net> ¶ opensaml shibboleth-sp xmltooling Debian SOGo Maintainers <pkg-sogo-maintainers@lists.alioth.debian.org> ¶ sogo Debian Telepathy maintainers <pkg-telepathy-maintainers@lists.alioth.debian.org> ¶ telepathy-spec Debian TeX maintainers <debian-tex-maint@lists.debian.org> ¶ glosstex latex-cjk-chinese-arphic Debian Tex Task Force <debian-tex-maint@lists.debian.org> ¶ bibtool Debian TeX Task Force <debian-tex-maint@lists.debian.org> ¶ asymptote cjk luametatex texworks-manual xindy Debian TTS Team <tts-project@alioth-lists.debian.net> ¶ festival freespeech rulex Debian UBports Team <team+ubports@tracker.debian.org> ¶ buteo-sync-plugins buteo-syncfw lomiri-content-hub lomiri-location-service lomiri-ui-toolkit u1db-qt Debian UEFI Maintainers <debian-efi@lists.debian.org> ¶ efitools Debian VDR Team <pkg-vdr-dvb-devel@lists.alioth.debian.org> ¶ vdr-plugin-markad Debian Virtualbox Team <team+debian-virtualbox@tracker.debian.org> ¶ kbuild Debian VoIP Team <pkg-voip-maintainers@lists.alioth.debian.org> ¶ asterisk-prompt-fr-armelle dahdi-linux iaxmodem ucommon Debian Wine Party <debian-wine@lists.debian.org> ¶ vkd3d Debian X Strike Force <debian-x@lists.debian.org> ¶ mesa vulkan-loader xorg-server Debian XMPP Maintainers <pkg-xmpp-devel@lists.alioth.debian.org> ¶ psi-plus (U) slidge Debian+Ubuntu MATE Packaging Team <debian-mate@lists.debian.org> ¶ python-caja Debian-IN Team <debian-in-workers@lists.alioth.debian.org> ¶ fonts-smc-uroob DebianOnMobile Maintainers <debian-on-mobile-maintainers@alioth-lists.debian.net> ¶ govarnam xdg-desktop-portal-phosh Debichem Team <debichem-devel@lists.alioth.debian.org> ¶ cp2k gromacs jmol libint madness maloc mdanalysis mdtraj nwchem openmm pdb-tools pymatgen-test-files pymol python-gsd rdkit Dennis Braun <snd@debian.org> ¶ dragonfly-reverb (U) kmetronome (U) schism (U) Diane Trout <diane@ghic.org> ¶ dask (U) libkolabxml (U) scikit-misc (U) statsmodels (U) Didier Raboud <odyx@debian.org> ¶ colobot (U) Dima Kogan <dkogan@debian.org> ¶ etlcpp g2o (U) gtsam (U) opengv (U) openmesh (U) sundials (U) vlfeat (U) Dimitri Fontaine <dim@tapoueh.org> ¶ pgloader (U) Dirk Eddelbuettel <edd@debian.org> ¶ gretl quantlib r-base r-cran-quantmod r-cran-rinside rcolorbrewer Dmitry Shachnev <mitya57@debian.org> ¶ far2l (U) qtbase-opensource-src # # # (U) qtbase-opensource-src-gles (U) qtconnectivity-opensource-src (U) qtdeclarative-opensource-src (U) qtsensors-opensource-src (U) qtwebchannel-opensource-src (U) qtwebengine-opensource-src (U) Dmitry Smirnov <onlyjob@debian.org> ¶ blktrace (U) docker.io (U) scummvm (U) zabbix Dominik George <natureshadow@debian.org> ¶ libdsk Dominique Belhachemi <domibel@debian.org> ¶ mrmpi (U) Dominique Dumont <dod@debian.org> ¶ moarvm (U) prove6 (U) raku-getopt-long (U) raku-hash-merge (U) raku-json-class (U) raku-json-marshal (U) raku-json-name (U) raku-json-unmarshal (U) raku-license-spdx (U) raku-log (U) raku-meta6 (U) raku-tap-harness (U) raku-test-meta (U) raku-uri (U) raku-zef (U) rakudo # (U) ruby-pygments.rb (U) Doug Torrance <dtorrance@debian.org> ¶ fflas-ffpack (U) gfan (U) linbox (U) macaulay2 (U) phcpack (U) r-cran-r.devices (U) r-cran-r.rsp (U) Doug Torrance <dtorrance@piedmont.edu> ¶ frobby (U) Drew Parsons <dparsons@debian.org> ¶ adios2 (U) combblas (U) dolfin (U) fenics-dolfinx (U) fenicsx-performance-tests (U) gerris (U) mdanalysis (U) mdtraj (U) mpi4py (U) ngspetsc (U) nwchem (U) petsc (U) pymatgen-test-files (U) python-gsd (U) sasview (U) slepc (U) Dylan Aïssi <daissi@debian.org> ¶ libcamera (U) libofx optee-os optee-test pipewire (U) r-cran-gh (U) r-cran-tm (U) shapeit4 (U) Dylan R. E. Moonfire <debian@mfgames.com> ¶ log4net (U) Eberhard Beilharz <eb1@sil.org> ¶ keyman (U) Eduard Bloch <blade@debian.org> ¶ icewm liquidwar (U) Edward Betts <edward@4angle.com> ¶ aiohttp-asyncmdnsresolver (U) Edward Wang <edward.c.wang@compdigitec.com> ¶ vlc # + (U) Elana Hashman <ehashman@debian.org> ¶ clojure (U) core-specs-alpha-clojure (U) leiningen-clojure + (U) spec-alpha-clojure (U) Elimar Riesebieter <riesebie@lxtec.de> ¶ lynx (U) Emanuele Rocca <ema@debian.org> ¶ arm-compute-library (U) systemtap Emilio Pozuelo Monfort <pochu@debian.org> ¶ librsvg (U) telepathy-spec (U) Emmanuel Arias <eamanu@debian.org> ¶ contourpy (U) lazy-object-proxy (U) python-blosc (U) python-cycler (U) Emmanuel Arias <emmanuelarias30@gmail.com> ¶ libcamera (U) Emmanuel Bourg <ebourg@apache.org> ¶ aspectj (U) bsh (U) cobertura (U) derby (U) gradle-kotlin-dsl + (U) graxxia (U) h2database (U) jakarta-jmeter + (U) jetty12 (U) libcommons-fileupload-java (U) scala-parser-combinators (U) scala-tools-sbinary (U) scala-xml (U) tomcat10 (U) tomcat11 (U) tomcat9 (U) visualvm (U) xmlbeans (U) Emmanuel Kasper <emmanuel@libera.cc> ¶ mame (U) Emmanuel Promayon <Emmanuel.Promayon@univ-grenoble-alpes.fr> ¶ camitk (U) Enrique Hernández Bello <ehbello@gmail.com> ¶ fritzing Erich Schubert <erich@debian.org> ¶ elki Evgeny Golyshev <eugulixes@gmail.com> ¶ elixir-lang Fabian Greffrath <fabian@debian.org> ¶ fonts-cantarell (U) fonts-freefont (U) Fabian Grünbichler <debian@fabian.gruenbichler.email> ¶ rustc (U) Fabien Spindler <Fabien.Spindler@inria.fr> ¶ visp (U) Fabio Augusto De Muzio Tobich <ftobich@debian.org> ¶ ipqalc puzzle-jigsaw Federico Brega <charon.66@gmail.com> ¶ cyclograph Federico Ceratto <federico@debian.org> ¶ uncertainties (U) Felix Geyer <fgeyer@debian.org> ¶ qtconnectivity-opensource-src (U) teeworlds (U) Felix Natter <fnatter@gmx.net> ¶ groovy (U) Felix Zielcke <fzielcke@z-51.de> ¶ grub2 + + + + (U) Ferenc Wágner <wferi@debian.org> ¶ opensaml (U) pacemaker (U) shibboleth-sp (U) xmltooling (U) Filippo Rusconi <lopippo@debian.org> ¶ isospec (U) libodsstream (U) openms (U) Flavien Bridault <fbridault@ircad.fr> ¶ sight (U) Francesco Ballarin <francesco.ballarin@unicatt.it> ¶ adios2 (U) dolfin (U) fenics-dolfinx (U) fenicsx-performance-tests (U) getdp (U) gmsh (U) ngspetsc (U) petsc (U) slepc (U) Francesco Paolo Lovergine <frankie@debian.org> ¶ grass (U) guile-reader nco (U) postgis (U) proftpd-dfsg (U) qgis (U) Francisco Vilmar Cardoso Ruviaro <vilmar@debian.org> ¶ tty-record (U) Frank B. Brokken <f.b.brokken@rug.nl> ¶ c++-annotations Frank Hofmann <frank.hofmann@efho.de> ¶ dpmb (U) Freexian Packaging Team <team+freexian@tracker.debian.org> ¶ pytango (U) python-hdf5plugin (U) yubihsm-connector (U) Frédéric Bonnard <frediz@linux.vnet.ibm.com> ¶ json4s (U) sbt-launcher-interface (U) sbt-serialization (U) scala-pickling (U) scala-tools-sbinary (U) Gard Spreemann <gspr@nonempty.org> ¶ gudhi gensio Maintainers <gensio@packages.debian.org> ¶ gensio Georges Khaznadar <georgesk@debian.org> ¶ eyes17-manuals fritzing (U) jsxgraph kicad (U) kuttypy node-svgdotjs-svg.js (U) pampi slm Georgios Pinitas <georgios.pinitas@arm.com> ¶ arm-compute-library (U) Gert Wollny <gewo@debian.org> ¶ dcmtk (U) dicom3tools (U) gdcm (U) Ghislain Antony Vaillant <ghisvail@gmail.com> ¶ nfft (U) python-xarray (U) Gianfranco Costamagna <locutusofborg@debian.org> ¶ kbuild (U) python-pyqtgraph (U) yaml-cpp (U) Gijs Molenaar <gijs@pythonic.nl> ¶ montage (U) python-casacore (U) Gilles Filippini <pini@debian.org> ¶ giac (U) med-fichier (U) Giovanni Mascellani <gio@debian.org> ¶ boost1.88 (U) mathpiper (U) Giuseppe Sacco <eppesuig@debian.org> ¶ hylafax Gordon Ball <gordon@chronitis.net> ¶ ipython (U) nbconvert (U) r-cran-repr (U) xonsh # (U) Graham Inggs <ginggs@debian.org> ¶ deal.ii (U) madness (U) gregor herrmann <gregoa@debian.org> ¶ jabref (U) GRUB Maintainers <pkg-grub-devel@alioth-lists.debian.net> ¶ grub2 + + + + Gudjon I. Gudjonsson <gudjon@gudjon.org> ¶ comedilib + ngspice (U) Guido Berhoerster <guido+debian@berhoerster.name> ¶ buteo-sync-plugins (U) Guido Berhörster <guido+debian@berhoerster.name> ¶ buteo-syncfw (U) Guido Günther <agx@sigxcpu.org> ¶ govarnam (U) libguestfs (U) xdg-desktop-portal-phosh (U) Guilherme Puida Moreira <guilherme@puida.xyz> ¶ dasel (U) Guillem Jover <gjover@sipwise.com> ¶ victoriametrics (U) gustavo panizzo <gfa@zumbi.com.ar> ¶ nova (U) python-openstackclient (U) Gwen Weinholt <weinholt@debian.org> ¶ chezscheme Hans-Christoph Steiner <hans@eds.org> ¶ android-platform-external-libunwind (U) Heather Ellsworth <hellsworth@protonmail.com> ¶ blueprint-compiler (U) Hideki Yamane <henrich@debian.org> ¶ fonts-cantarell (U) yudit Hilko Bengen <bengen@debian.org> ¶ augeas de4dot (U) hyperic-sigar (U) libguestfs (U) lucene4.10 (U) rust-laurel (U) Hilmar Preusse <hille42@web.de> ¶ cjk (U) luametatex (U) texworks-manual (U) Hilmar Preuße <hille42@debian.org> ¶ asymptote (U) latex-cjk-chinese-arphic (U) proftpd-dfsg (U) sphinxcontrib-googleanalytics (U) xindy (U) Holger Levsen <holger@debian.org> ¶ rust-sequoia-keystore-server (U) rust-sequoia-sq (U) Holger Wansing <holgerw@debian.org> ¶ refcard (U) Home Assistant Team <team+homeassistant@tracker.debian.org> ¶ aiohttp-asyncmdnsresolver python-assertpy + Hubert Chathi <uhoreg@debian.org> ¶ asymptote (U) nheko (U) noweb Håvard F. Aasen <havard.f.aasen@pfft.no> ¶ openscap scap-security-guide (U) Héctor Orón Martínez <zumbi@debian.org> ¶ dejagnu uclibc (U) Ian Jackson <ijackson@chiark.greenend.org.uk> ¶ userv Igor B. Poretsky <poretsky@mlbox.ru> ¶ freespeech (U) rulex (U) Ileana Dumitrescu <ileanadumitrescu95@gmail.com> ¶ giac (U) Ilias Tsitsimpis <iliastsi@debian.org> ¶ ghc # (U) IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> ¶ jsusfx (U) juce (U) libcamera (U) Ivo Maintz <ivo@maintz.de> ¶ libsbml (U) Jack Coulter <jscinoz@gmail.com> ¶ teeworlds (U) Jakub Ružička <jru@debian.org> ¶ bird2 bird3 knot (U) Jaldhar H. Vyas <jaldhar@debian.org> ¶ festival (U) James Cowgill <jcowgill@debian.org> ¶ libsfml (U) James McCoy <jamessan@debian.org> ¶ msgpack-cxx subversion # James Page <james.page@ubuntu.com> ¶ rabbitmq-server (U) zookeeper (U) James Tocknell <aragilar@gmail.com> ¶ sundials (U) James Troup <binutils@elmo.tasta.io> ¶ binutils-gold (U) James Valleroy <jvalleroy@mailbox.org> ¶ weupnp (U) Jan Dittberner <jandd@debian.org> ¶ python-fudge # (U) Jan Mojžíš <janmojzis@debian.org> ¶ nginx (U) Jan Wagner <waja@cyconet.org> ¶ icinga2 (U) Javier Fernandez-Sanguino Peña <jfs@debian.org> ¶ debian-history (U) Javier Fernández-Sanguino Peña <jfs@debian.org> ¶ paxtest samhain (U) Jean-Michel Vourgère <nirgal@debian.org> ¶ mdbtools Jean-Philippe MENGUAL <texou@accelibreinfo.eu> ¶ festival (U) Jeff Epler <jepler@gmail.com> ¶ linuxcnc (U) Jelmer Vernooij <jelmer@debian.org> ¶ ledger2beancount samba (U) Jeremy Bicha <jbicha@debian.org> ¶ pipewire (U) Jeremy Bícha <jbicha@debian.org> ¶ fragments (U) gnome-authenticator (U) Jeremy Bícha <jbicha@ubuntu.com> ¶ blueprint-compiler (U) bustle (U) fonts-cantarell (U) gnome-metronome (U) gtk4 (U) librsvg (U) Jeremy Lainé <jeremy.laine@m4x.org> ¶ sailcut Jeremy Sowden <azazel@debian.org> ¶ maildir-utils (U) Jeroen Dekkers <jeroen@dekkers.ch> ¶ sogo (U) Jerome Benoit <calculus@rezozer.net> ¶ bibtool (U) bliss (U) cysignals firehol fpylll (U) gap-design (U) gap-scscp (U) gap-sonata (U) igraph (U) nbsphinx (U) primesieve (U) python-igraph (U) singular (U) texmacs (U) Jerome Kieffer <jerome.kieffer@esrf.fr> ¶ pyfai P (U) python-fabio (U) Jerome Lebleu <jerome@maroufle.fr> ¶ qlcplus Jo Shields <directhex@apebox.org> ¶ opentk (U) Joachim Wiberg <troglobit@gmail.com> ¶ mdnsd (U) Joachim Wiedorn <joodebian@joonet.de> ¶ hylafax (U) Joan Lledó <jlledom@member.fsf.org> ¶ lwip Joan Queralt Molina <joanq.biogenesis@gmail.com> ¶ biogenesis (U) Joao Eriberto Mota Filho <eriberto@debian.org> ¶ qabcs ulcc Jochen Sprickerhof <jspricke@debian.org> ¶ gpsbabel (U) h2database (U) jameica-h2database (U) openni (U) openni-sensor-pointclouds (U) openni-sensor-primesense (U) pcl (U) wyrd (U) Joel Fenwick <j.oelpublic@gmail.com> ¶ python-escript (U) Joerg Dorchain <joerg@dorchain.net> ¶ iaxmodem (U) Johan Fleury <jfleury@arcaik.net> ¶ age (U) Johan Mattsson <johan@beteckna.se> ¶ fonts-beteckna (U) Johannes Ring <johannr@simula.no> ¶ dolfin (U) Johannes Schauer Marin Rodrigues <josch@debian.org> ¶ reform-handbook (U) John Goerzen <jgoerzen@complete.org> ¶ gensio (U) pygopherd John Lines <john@paladyn.org> ¶ erlang-hex (U) John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> ¶ fs-uae python-caja (U) Johnny Willemsen <jwillemsen@remedy.nl> ¶ ace (U) Jonas Smedegaard <dr@jones.dk> ¶ haskell-swish (U) hx nheko (U) rust-microformats zeitgeist (U) Jonathan Carter <jcc@debian.org> ¶ tuxpaint Jongmin Kim <jmkim@debian.org> ¶ lazygit (U) Joost van Baal-Ilić <joostvb@debian.org> ¶ debian-history (U) Jordan Justen <jljusten@debian.org> ¶ piglit + Jordi Mallach <jordi@debian.org> ¶ grub2 + + + + (U) mame (U) openttd (U) sogo (U) Jose G. López <josgalo@jglopez.name> ¶ scid Jose Luis Rivero <jrivero@osrfoundation.org> ¶ simbody (U) Jose M Calhariz <calhariz@debian.org> ¶ amanda Jose M Calhariz <jose@calhariz.com> ¶ librep sawfish Josenilson Ferreira da Silva <nilsonfsilva@hotmail.com> ¶ domain2idna (U) python-cyclopts (U) Joseph Nahmias <jello@debian.org> ¶ freetds ipyparallel (U) python-oracledb (U) Josip Rodin <joy-packages@debian.org> ¶ maint-guide (U) Josue Abarca <jmaslibre@debian.org> ¶ siege + Josue Ortega <josue@debian.org> ¶ python-rtmidi Joël Krähemann <jkraehemann@gmail.com> ¶ gsequencer (U) Julian Andres Klode <jak@debian.org> ¶ grub2 + + + + (U) Julian Gilbey <jdg@debian.org> ¶ epix jupyter-server (U) pathos (U) python-qtconsole (U) rapidfuzz (U) taskflow (U) Julian Taylor <jtaylor.debian@googlemail.com> ¶ fftw3 (U) pyzmq (U) Julien Lamy <lamy@unistra.fr> ¶ odil (U) Julien Puydt <jpuydt@debian.org> ¶ coq (U) coq-elpi (U) coq-iris (U) fpylll (U) ipython (U) jupyter-server (U) nbconvert (U) ocaml-uucp (U) ocaml-uunf (U) python-django-import-export + (U) scilab (U) ssreflect (U) Julien Schueller <schueller@phimeca.com> ¶ coinor-bonmin (U) Julián Moreno Patiño <julian@debian.org> ¶ john (U) Juri Grabowski <debian@jugra.de> ¶ extrepo-data # (U) Jérôme Charaoui <jerome@riseup.net> ¶ puppet-agent (U) Kai Wasserbäch <curan@debian.org> ¶ kvirc (U) Kai-Chung Yan <seamlikok@gmail.com> ¶ android-platform-external-libunwind (U) okio (U) Kan-Ru Chen (陳侃如) <koster@debian.org> ¶ libchewing (U) Kari Pahula <kaol@debian.org> ¶ gecode rocfft (U) rocsparse (U) Kasper Peeters <kasper.peeters@aei.mpg.de> ¶ lie (U) Kathara Sasikumar <katharasasikumar007@gmail.com> ¶ python-inline-snapshot (U) python-picologging (U) Ken McDonell <kenj@kenj.id.au> ¶ pcp (U) Kevin Murray <spam@kdmurray.id.au> ¶ salmon (U) Keyman team <support@keyman.com> ¶ keyman (U) Klas Lindfors <klas@yubico.com> ¶ libu2f-host (U) knot packagers <knot@packages.debian.org> ¶ knot kokoye2007 <kokoye2007@gmail.com> ¶ sayonara Komal Sukhani <komaldsukhani@gmail.com> ¶ javawriter (U) Konstantinos Margaritis <markos@debian.org> ¶ ldc (U) Konstantinos Poulios <poulios.konstantinos@gmail.com> ¶ getfem (U) Kristóf Ralovich <tade60@freemail.hu> ¶ quickroute-gps Kumar Appaiah <akumar@debian.org> ¶ festival (U) Kurt Kremitzki <kkremitzki@debian.org> ¶ freecad (U) gmsh (U) pyside2 (U) pyside6 (U) Kyle Robbertze <paddatrapper@debian.org> ¶ liquidsoap (U) ocaml-containers (U) Lance Lin <lq27267@gmail.com> | 2026-01-13T09:30:28 |
https://blog.nyveldt.com/post/using-the-blogenginenet-sql-server-provider-screencast | Using the BlogEngine.NET SQL Server Provider Screencast - Al Nyveldt Al Nyveldt Home About Now Using the BlogEngine.NET SQL Server Provider Screencast January 04, 2008 BlogEngine.NET , Screencasts blogengine.net , screencast , sql server , video My second 1.3 screencast is a walk through of setting up the SQL Server provider from BlogEngine.NET . It starts where the Installation screencast leaves off and takes you through database setup and updating your web.config. The SQL Provider setup changed a bit between versions 1.2 and 1.3 making the old screencast incorrect. I hope to be writing a more detailed post about SQL provider setup in the day ahead. Anyway, this is a very short video but hopefully someone will find it somewhat helpful. It is available in both an in page Flash version and Windows Media format . Share on Bluesky or click the Permalink and paste anywhere. Al Nyveldt Hi. I'm a software developer from central Pennsylvania, USA. Pinned Posts Keep GitHub Copilot from going off the rails with instructions files AI Journey: From Annoying to Essential Categories AI Journey (3) Audio (7) BlogEngine.NET (60) Books (2) Business (2) Development (41) Hardware (5) iDevBlogADay (6) iOS (8) Personal (14) Screencasts (15) Software (21) Web (3) Tags ai , app store , applescript , blogengine.net , blogml , book review , code camp , codemash , codeplex , coding , community , compiling , conference , control , copilot , crystal reports , das blog , dev tools , download , extensions , family , faq , feed reading , fitness , flash drive , fun , games , google reader , idevblogaday , ios , iPad , iphone , ipod , mcp , membership , metaweblog api , microsoft , migration , mix , monotouch , monsterid , mvc , mysql , nike+ , open source , organization , patch , personal , podcasts , powershell , profittrain , provider model , razorpdf , razorpub , release , reuse , review , running , runnow , screencast , security , snippets , sourcesafe , spark , sparrow , sql server , sqlite , starter kit , subtext , subversion , sudokukids , testing , theme , training , upgrade , utilities , video , vistadb , visual studio , widget , windows live writer , xamarin Subscribe Get notified about new posts and updates. Thank you! Please check your email and click the confirmation link to complete your subscription. Subscribe Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way. © 2026 Al Nyveldt. All rights reserved. Published with QuillKit / Sign in | 2026-01-13T09:30:28 |
https://yarnpkg.com/configuration/yarnrc#enableHardenedMode | Settings (.yarnrc.yml) | Yarn Skip to main content Yarn Get Started Features CLI Configuration Advanced Blog API master (4.12.0-dev) master (4.12.0-dev) 3.8.7 1.22.22 Discord GitHub Search Manifest (package.json) Settings (.yarnrc.yml) Settings (.yarnrc.yml) Settings (.yarnrc.yml) Yarnrc files (named this way because they must be called .yarnrc.yml ) are the one place where you'll be able to configure Yarn's internal settings. While Yarn will automatically find them in the parent directories, they should usually be kept at the root of your project (often your repository). Starting from the v2, they must be written in valid Yaml and have the right extension (simply calling your file .yarnrc won't do). Environment variables can be accessed from setting definitions by using the ${NAME} syntax when defining the values. By default Yarn will require the variables to be present, but this can be turned off by using either ${NAME-fallback} (which will return fallback if NAME isn't set) or ${NAME:-fallback} (which will return fallback if NAME isn't set, or is an empty string). Finally, note that most settings can also be defined through environment variables (at least for the simpler ones; arrays and objects aren't supported yet). To do this, just prefix the names and write them in snake case: YARN_CACHE_FOLDER will set the cache folder (such values will overwrite any that might have been defined in the RC files - use them sparingly). cacheFolder Path where the downloaded packages are stored on your system. They'll be normalized, compressed, and saved under the form of zip archives with standardized names. The cache is deemed to be relatively safe to be shared by multiple projects, even when multiple Yarn instances run at the same time on different projects. For setting a global cache folder, you should use enableGlobalCache instead. cacheFolder : "./.yarn/cache" , cacheMigrationMode Behavior that Yarn should follow when it detects that a cache entry is outdated. Whether or not a cache entry is outdated depends on whether it has been built and checksumed by an earlier release of Yarn, or under a different compression settings. Possible behaviors are: If required-only , it'll keep using the file as-is, unless the version that generated it was decidedly too old. If match-spec , it'll also rebuild the file if the compression level has changed. If always (the default), it'll always regenerate the cache files so they use the current cache version. cacheMigrationMode : "required-only" | "match-spec" | "always" , changesetBaseRefs List of git refs against which Yarn will compare your branch when it needs to detect changes. Supports git branches, tags, and commits. The default configuration will compare against master, origin/master, upstream/master, main, origin/main, and upstream/main. changesetBaseRefs : [ "master" , "origin/master" , "upstream/master" , "main" , "origin/main" , "upstream/main" , ] , changesetIgnorePatterns Array of file glob patterns that will be excluded from change detection. Files matching the following patterns (in terms of relative paths compared to the root of the project) will be ignored by every command checking whether files changed compared to the base ref (this include both yarn version check and yarn workspaces foreach --since ). changesetIgnorePatterns : [ "**/*.test.{js,ts}" , ] , checksumBehavior Behavior that Yarn should follow when it detects that a cache entry has a different checksum than expected. Possible behaviors are: If throw (the default), Yarn will throw an exception. If update , the lockfile will be updated to match the cached checksum. If reset , the cache entry will be purged and fetched anew. If ignore , nothing will happen, Yarn will skip the check. checksumBehavior : "throw" | "update" | "ignore" | "reset" , cloneConcurrency Amount of git clone operations that Yarn will run at the same time. We by default limit it to 2 concurrent clone operations. cloneConcurrency : 2 , compressionLevel Compression level employed for zip archives Possible values go from 0 ("no compression, faster") to 9 ("heavy compression, slower"). The value mixed is a variant of 9 where files are stored uncompressed if the gzip overhead would exceed the size gain. The default is 0 , which tends to be significantly faster to install. Projects using zero-installs are advised to keep it this way, as experiments showed that Git stores uncompressed package archives more efficiently than gzip-compressed ones. compressionLevel : 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "mixed" , constraintsPath Path of the constraints file. This only matters for Prolog constraints, which are being deprecated. JavaScript constraints will always be read from the yarn.config.cjs file. constraintsPath : "./constraints.pro" , defaultLanguageName Default language mode that should be used when a package doesn't offer any insight. This is an internal configuration setting that shouldn't be touched unless you really know what you're doing. defaultLanguageName : "node" , defaultProtocol Default protocol that should be used when a dependency range is a pure semver range. This is an internal configuration setting that shouldn't be touched unless you really know what you're doing. defaultProtocol : "npm:" , defaultSemverRangePrefix Default prefix used in semver ranges created by yarn add and similar commands. Possible values are "^" (the default), "~" or "" . defaultSemverRangePrefix : "^" | "~" | "" , deferredVersionFolder Folder where the versioning files are stored. deferredVersionFolder : "./.yarn/versions" , enableColors Define whether colors are allowed on the standard output. The default is to check the terminal capabilities, but you can manually override it to either true or false . enableColors : true , enableConstraintsChecks Define whether constraints should run on every install. If true, Yarn will run your constraints right after finishing its installs. This may help decrease the feedback loop delay by catching errors long before your CI would even report them. enableConstraintsChecks : true , enableGlobalCache Define whether the cache should be shared between all local projects. If true (the default), Yarn will store the cache files into a folder located within globalFolder instead of respecting cacheFolder . enableGlobalCache : true , enableHardenedMode Define whether Yarn should attempt to check for malicious changes. If true, Yarn will query the remote registries to validate that the lockfile content matches the remote information. These checks make installs slower, so you should only run them on branches managed by users outside your circle of trust. Yarn will automatically enable the hardened mode on GitHub pull requests from public repository. Should you want to disable it, explicitly set it to false in your yarnrc file. enableHardenedMode : true , enableHyperlinks Define whether hyperlinks are allowed on the standard output. The default is to check the terminal capabilities, but you can manually override it to either true or false . enableHyperlinks : true , enableImmutableCache Define whether to allow adding/removing files from the cache or not. If true, Yarn will refuse to change the cache in any way, whether it would add files or remove them, and will abort installs instead of letting that happen. enableImmutableCache : false , enableImmutableInstalls Define whether to allow adding/removing entries from the lockfile or not. If true (the default on CI), Yarn will refuse to change the lockfile in any way, whether it would add new entries or remove them. Other files can be added to the checklist via the immutablePatterns setting. enableImmutableInstalls : false , enableInlineBuilds Define whether to print the build output directly within the terminal or not. If true (the default on CI environments), Yarn will print the build output directly within the terminal instead of buffering it in an external log file. Note that by default Yarn will attempt to use collapsible terminal sequences on supporting CI providers to make the output more legible. enableInlineBuilds : false , enableInlineHunks Define whether to print patch hunks directly within the terminal or not. If true, Yarn will print any patch sections (hunks) that could not be applied successfully to the terminal. enableInlineHunks : false , enableMessageNames Define whether to prepend a message name before each printed line or not. If true, Yarn will prefix most messages with codes suitable for search engines, with hyperlink support if your terminal allows it. enableMessageNames : true , enableMirror Define whether to mirror local cache entries into the global cache or not. If true (the default), Yarn will use the global folder as indirection between the network and the actual cache. This is only useful if enableGlobalCache is explicitly set to false , as otherwise the cache entries are persisted to the global cache no matter what. enableMirror : true , enableNetwork Define whether remote network requests are allowed or not. If false, Yarn will never make any request to the network by itself, and will throw an exception rather than let it happen. It's a very useful setting for CI, which typically want to make sure they aren't loading their dependencies from the network by mistake. enableNetwork : true , enableOfflineMode Define whether Yarn should exclusively read package metadata from its cache If true, Yarn will replace any network requests by reads from its local caches - even if they contain old information. This can be useful when performing local work on environments without network access (trains, planes, ...), as you can at least leverage the packages you installed on the same machine in the past. Since this setting will lead to stale data being used, it's recommended to set it for the current session as an environment variable (by running export YARN_ENABLE_OFFLINE_MODE=1 in your terminal) rather than by adding it to your .yarnrc.yml file. enableOfflineMode : false , enableProgressBars Define whether animated progress bars should be shown or not. If true (the default outside of CI environments), Yarn will show progress bars for long-running events. enableProgressBars : true , enableScripts Define whether to run postinstall scripts or not. If false, Yarn will not execute the postinstall scripts from third-party packages when installing the project (workspaces will still see their postinstall scripts evaluated, as they're assumed to be safe if you're running an install within them). Note that you also have the ability to disable scripts on a per-package basis using dependenciesMeta , or to re-enable a specific script by combining enableScripts and dependenciesMeta . enableScripts : true , enableStrictSsl Define whether SSL errors should fail requests or not. If false, SSL certificate errors will be ignored enableStrictSsl : true , enableTelemetry Define whether anonymous telemetry data should be sent or not. If true (the default outside of CI environments), Yarn will periodically send anonymous data to our servers tracking some usage information such as the number of dependencies in your project, how many installs you ran, etc. Consult the Telemetry page for more details about this process. enableTelemetry : true , enableTimers Define whether to print the time spent running each sub-step or not. If false, Yarn will not print the time spent running each sub-step when running various commands. This is only needed for testing purposes, when you want each execution to have exactly the same output as the previous ones. enableTimers : true , enableTransparentWorkspaces Define whether pure semver ranges should allow workspace resolution or not. If false, Yarn won't link workspaces just because their versions happen to match a semver range. Disabling this setting will require all workspaces to reference one another using the explicit workspace: protocol. This setting is usually only needed when your project needs to use the published version in order to build the new one (that's for example what happens with Babel, which depends on the latest stable release to build the future ones). enableTransparentWorkspaces : true , globalFolder Path where all files global to the system will be stored. Various files we be stored there: global cache, metadata cache, ... globalFolder : "${HOME}/.yarn/berry" , httpProxy Proxy to use when making an HTTP request. httpProxy : "http://proxy:4040" , httpRetry Amount of time to wait in seconds before retrying a failed HTTP request. httpRetry : 3 , httpTimeout Amount of time to wait before cancelling pending HTTP requests. httpTimeout : "1m" , httpsCaFilePath Path to a file containing one or multiple Certificate Authority signing certificates. httpsCaFilePath : "./exampleCA.pem" , httpsCertFilePath Path to a file containing a certificate chain in PEM format. httpsCertFilePath : "./exampleCert.pem" , httpsKeyFilePath Path to a file containing a private key in PEM format. httpsKeyFilePath : "./exampleKey.pem" , httpsProxy Define a proxy to use when making an HTTPS request. httpsProxy : "http://proxy:4040" , ignorePath Define whether yarnPath should be respected or not. If true, whatever Yarn version is being executed will keep running rather than looking at the value of yarnPath to decide. ignorePath : false , immutablePatterns Array of file patterns whose content won't be allowed to change if enableImmutableInstalls is set. immutablePatterns : [ "**/.pnp.*" , ] , initScope Scope used when creating packages via the init command. initScope : "yarnpkg" , initFields Additional fields to set when creating packages via the init command. initFields : { homepage : "https://yarnpkg.com" , } , injectEnvironmentFiles Array of .env files which will get injected into any subprocess spawned by Yarn. By default Yarn will automatically inject the variables stored in the .env.yarn file, but you can use this setting to change this behavior. Note that adding a question mark at the end of the path will silence the error Yarn would throw should the file be missing, which may come in handy when declaring local configuration files. injectEnvironmentFiles : [ ".my-env" , ".my-local-env?" , ] , installStatePath Path where the install state will be persisted. The install state file contains a bunch of cached information about your project. It's only used for optimization purposes, and will be recreated if missing (you don't need to add it to Git). installStatePath : "./.yarn/install-state.gz" , logFilters Alter the log levels for emitted messages. This can be used to hide specific messages, or instead make them more prominent. Rules defined there accept filtering messages by either name or raw content. logFilters : [ { logFilters.code Match all messages with the given code. code : "YN0006" , logFilters.level New log level to apply to the matching messages. Use discard if you wish to hide those messages altogether. level : "info" | "warning" | "error" | "discard" , } , { logFilters.text Match messages whose content is strictly equal to the given text. In case a message matches both code -based and text -based filters, the text -based ones will take precedence over the code -based ones. text : "lorem-ipsum@npm:1.2.3 lists build scripts, but its build has been explicitly disabled through configuration" , logFilters.level New log level to apply to the matching messages. Use discard if you wish to hide those messages altogether. level : "info" | "warning" | "error" | "discard" , } , { logFilters.pattern Match messages whose content match the given glob pattern. In case a message matches both pattern -based and code -based filters, the pattern -based ones will take precedence over the other ones. Patterns can be overridden on a case-by-case basis by using the text filter, which has precedence over pattern . pattern : "lorem-ipsum@* lists build scripts, but its build has been explicitly disabled through configuration" , logFilters.level New log level to apply to the matching messages. Use discard if you wish to hide those messages altogether. level : "info" | "warning" | "error" | "discard" , } ] , networkConcurrency Amount of HTTP requests that are allowed to run at the same time. We default to 50 concurrent requests, but it may be required to limit it even more when working behind proxies that can't handle large amounts of traffic. networkConcurrency : 50 , networkSettings Additional network settings, per hostname networkSettings : { *.example.com : { enableNetwork : See enableNetwork , httpProxy : See httpProxy , httpsCaFilePath : See httpsCaFilePath , httpsCertFilePath : See httpsCertFilePath , httpsKeyFilePath : See httpsKeyFilePath , httpsProxy : See httpsProxy , } , } , nmHoistingLimits Highest point where packages can be hoisted. Replacement of the former nohoist setting. Possible values are: If none (the default), packages are hoisted as per the usual rules. If workspaces , packages won't be hoisted past the workspace that depends on them. If dependencies , transitive dependencies also won't be hoisted past your direct dependencies. This setting can be overridden on a per-workspace basis using the installConfig.hoistingLimits field. nmHoistingLimits : "workspaces" | "dependencies" | "none" , nmSelfReferences Define whether workspaces are allowed to require themselves. If false, Yarn won't create self-referencing symlinks when using nodeLinker: node-modules . This setting can be overridden on a per-workspace basis using the installConfig.selfReferences field. nmSelfReferences : true , nmMode Define how to copy files to their target destination. Possible values are: If classic , regular copy or clone operations are performed. If hardlinks-global , hardlinks to a global content-addressable store will be used. If hardlinks-local , hardlinks will only be created between similar packages from the same project. For compatibility with the ecosystem, the default is classic . nmMode : "classic" | "hardlinks-local" | "hardlinks-global" , nodeLinker Define how Node packages should be installed. Yarn supports three ways to install your project's dependencies, based on the nodeLinker setting. Possible values are: If pnp , a single Node.js loader file will be generated. If pnpm , a node-modules will be created using symlinks and hardlinks to a global content-addressable store. If node-modules , a regular node_modules folder just like in Yarn Classic or npm will be created. nodeLinker : "pnp" , npmMinimalAgeGate Minimum age of a package version according to the publish date on the npm registry to be considered for installation. If a package version is newer than the minimal age gate, it will not be considered for installation. This can be used to reduce the likelihood of installing compromised packages, or to avoid relying on packages that could still be unpublished (e.g. the npm registry has specific rules for packages less than 3 days old). npmMinimalAgeGate : "3d" , npmPreapprovedPackages Array of package descriptors or package name glob patterns to exclude from all of the package gates. If a package descriptor or name matches the specified pattern, it will not be considered when evaluating any of the package gates. npmPreapprovedPackages : [ ] , pnpmStoreFolder Path where the pnpm store will be stored By default, the store is stored in the node_modules/.store of the project. Sometimes in CI scenario's it is convenient to store this in a different location so it can be cached and reused. pnpmStoreFolder : ".cache/.store" , winLinkType Define whether to use junctions or symlinks when creating links on Windows. Possible values are: If junctions , Yarn will use Windows junctions when linking workspaces into node_modules directories, which are always absolute paths. If symlinks , Yarn will use symlinks, which will use relative paths, and is consistent with Yarn's behavior on non-Windows platforms. Symlinks are preferred, but they require the Windows user running Yarn to have the create symbolic links privilege. As a result, we default to using junctions instead. winLinkType : "junctions" | "symlinks" , npmAlwaysAuth Define whether to always send authentication credentials when querying the npm registry. If true, authentication credentials will always be sent when sending requests to the registries. This shouldn't be needed unless you configured the registry to reference a private npm mirror. npmAlwaysAuth : false , npmAuditRegistry Define the registry to use when auditing dependencies. If not explicitly set, the value of npmRegistryServer will be used. npmAuditRegistry : "https://registry.npmjs.org" , npmAuthIdent Define the authentication credentials to use by default when accessing your registries. Replacement of the former _auth setting. Because it requires storing unencrypted values in your configuration, npmAuthToken should be preferred when possible. npmAuthIdent : "username:password" , npmAuthToken Define the authentication token to use by default when accessing your registries. Replacement of the former _authToken settings. If you're using npmScopes to define multiple registries, the npmRegistries dictionary allows you to override these credentials on a per-registry basis. npmAuthToken : "ffffffff-ffff-ffff-ffff-ffffffffffff" , npmPublishAccess Define the default access to use when publishing packages to the npm registry. Valid values are public and restricted , but restricted usually requires to register for a paid plan (this is up to the registry you use). Can be overridden on a per-package basis using the publishConfig.access field. npmPublishAccess : "public" | "restricted" , npmPublishProvenance Define whether to attach a provenance statement when publishing packages to the npm registry. If true, Yarn will generate and publish the provenance information when publishing packages. Can be overridden on a per-package basis using the publishConfig.provenance field. npmPublishProvenance : false , npmAuditExcludePackages Array of package name glob patterns to exclude from yarn npm audit . npmAuditExcludePackages : [ ] , npmAuditIgnoreAdvisories Array of advisory ID glob patterns to ignore from yarn npm audit results. npmAuditIgnoreAdvisories : [ ] , npmPublishRegistry Define the registry to use when pushing packages. If not explicitly set, the value of npmRegistryServer will be used. Overridden by publishConfig.registry . npmPublishRegistry : "https://npm.pkg.github.com" , npmRegistries Per-registry configurations. npmRegistries : { //npm.pkg.github.com : { npmAlwaysAuth : See npmAlwaysAuth , npmAuthIdent : See npmAuthIdent , npmAuthToken : See npmAuthToken , } , } , npmRegistryServer Define the registry to use when fetching packages. Should you want to define different registries for different scopes, see npmScopes . To define the authentication scheme for your servers, see npmAuthToken . The url must use HTTPS by default, but this can be changed by adding it to the unsafeHttpWhitelist . npmRegistryServer : "https://registry.yarnpkg.com" , npmScopes Per-scope registry configurations. npmScopes : { my-company : { npmPublishRegistry : See npmPublishRegistry , npmRegistryServer : See npmRegistryServer , npmAlwaysAuth : See npmAlwaysAuth , npmAuthIdent : See npmAuthIdent , npmAuthToken : See npmAuthToken , } , } , packageExtensions Extend the package definitions of your dependencies; useful to fix third-party issues. Some packages may have been specified incorrectly with regard to their dependencies - for example with one dependency being missing, causing Yarn to refuse it the access. The packageExtensions fields offer a way to extend the existing package definitions with additional information. If you use it, consider sending a PR upstream and contributing your extension to the plugin-compat database . Note: This field is made to add dependencies; if you need to rewrite existing ones, prefer the resolutions field instead. packageExtensions : { webpack@* : { dependencies : { lodash : "^4.15.0" , } , peerDependencies : { webpack-cli : "*" , } , peerDependenciesMeta : { webpack-cli : { optional : true , } , } , } , } , patchFolder Folder where patch files will be written to. patchFolder : "./.yarn/patches" , pnpEnableEsmLoader Define whether to generate a Node.js ESM loader or not. If true, Yarn will generate an experimental ESM loader ( .pnp.loader.mjs ) on top of the CJS one. pnpEnableEsmLoader : false , pnpEnableInlining Define whether to store the PnP data in the generated file or not. If false, Yarn will generate an additional .pnp.data.json file. pnpEnableInlining : true , pnpFallbackMode Define whether to allow packages to rely on the builtin PnP fallback mechanism. Possible values are: If all , all packages can access dependencies made available in the fallback. If dependencies-only (the default), dependencies will have access to them but not your workspaces. If none , no packages will have access to them. pnpFallbackMode : "none" | "dependencies-only" | "all" , pnpIgnorePatterns Array of file glob patterns that should be forced to use the default CommonJS resolution. Files matching those locations will not be covered by PnP and will use the regular Node.js resolution algorithm. Typically only needed if you have subprojects that aren't yet part of your workspace tree. pnpIgnorePatterns : [ "./subdir/*" , ] , pnpMode Define whether to attempt to simulate traditional node_modules hoisting. Possible values are: If strict (the default), modules won't be allowed to require packages they don't explicitly list in their own dependencies. If loose , packages will be allowed to access any other package that would have been hoisted to the top-level under 1.x installs. Note that, even in loose mode, hoisted require calls are unsafe and should be discouraged. pnpMode : "strict" | "loose" , pnpShebang String prepended to the generated PnP loader. pnpShebang : "#!/usr/bin/env node" , pnpUnpluggedFolder Path where unplugged packages are stored. While Yarn attempts to reference and load packages directly from their zip archives, it may not always be possible. In those cases, Yarn will extract the files to the unplugged folder. pnpUnpluggedFolder : "./.yarn/unplugged" , preferDeferredVersions Define whether to use deferred versioning by default or not. If true, deferred versioning by default when running the yarn version family of commands. preferDeferredVersions : false , preferInteractive Define whether to use interactive prompts by default or not. If true, Yarn will ask for your guidance when some actions would be improved by being disambiguated. Enabling this setting also unlocks some features (for example the yarn add command will suggest to reuse the same dependencies as other workspaces if pertinent). preferInteractive : false , preferReuse Define whether to reuse most common dependency ranges or not when adding dependencies to a package. If true, yarn add will attempt to reuse the most common dependency range in other workspaces. preferReuse : false , preferTruncatedLines Define whether to truncate lines that would go beyond the size of the terminal or not. If true, Yarn will truncate lines that would go beyond the size of the terminal. If progress bars are disabled, lines will never be truncated. preferTruncatedLines : false , progressBarStyle Style of progress bar to use. progressBarStyle : "patrick" | "simba" | "jack" | "hogsfather" | "default" , supportedArchitectures Systems for which Yarn should install packages. supportedArchitectures : { supportedArchitectures.os List of operating systems to cover. os : [ "current" , "darwin" , "linux" , "win32" , ] , supportedArchitectures.cpu List of CPU architectures to cover. See https://nodejs.org/docs/latest/api/process.html#processarch for the architectures supported by Node.js cpu : [ "current" , "x64" , "ia32" , "arm64" , ] , supportedArchitectures.libc The list of standard C libraries to cover. libc : [ "current" , "glibc" , "musl" , ] , } , taskPoolConcurrency Maximal amount of concurrent heavy task processing. We default to the platform parallelism, but for some CI, os.cpus may not report accurate values and may overwhelm their containers. taskPoolConcurrency : "os.availableParallelism()" , taskPoolMode Execution strategy for heavy tasks. By default will use workers when performing heavy tasks, such as converting tgz files to zip. This setting can be used to disable workers and use a regular in-thread async processing. taskPoolMode : "async" | "workers" , telemetryInterval Define the minimal amount of time between two telemetry events. By default we only send one request per week, making it impossible for us to track your usage with a lower granularity. telemetryInterval : "7d" , telemetryUserId User-defined unique ID to send along with telemetry events. The default settings never assign unique IDs to anyone, so we have no way to know which data originates from which project. This setting can be used to force a user ID to be sent to our telemetry server. Frankly, it's only useful in some very specific use cases. For example, we use it on the Yarn repository in order to exclude our own usage from the public dashboards (since we run Yarn far more often here than anywhere else, the resulting data would be biased). telemetryUserId : "yarnpkg/berry" , tsEnableAutoTypes Define whether to automatically install @types dependencies. If true, Yarn will automatically add @types dependencies when running yarn add with packages that don't provide their own typings (as reported by the Algolia npm database). This behavior is enabled by default if you have a tsconfig.json file at the root of your project, or in your current workspace. tsEnableAutoTypes : true , unsafeHttpWhitelist Array of hostname glob patterns for which using the HTTP protocol is allowed. unsafeHttpWhitelist : [ "*.example.org" , "example.org" , ] , virtualFolder Path where virtual packages will be stored. Due to a particularity in how Yarn installs packages which list peer dependencies, some packages will be mapped to multiple virtual directories that don't actually exist on the filesystem. This settings tells Yarn where to put them. Note that the folder name must be __virtual__ . virtualFolder : "./.yarn/__virtual__" , yarnPath Path of a Yarn binary to use instead of the global one. This binary will be executed instead of any other (including the global one) for any command run within the directory covered by the rc file. If the file extension ends with .js it will be required, and will be spawned in any other case. The yarnPath setting used to be the preferred way to install Yarn within a project, but we now recommend to use Corepack in most cases. yarnPath : "./scripts/yarn-2.0.0-rc001.js" , Edit this page Previous Manifest (package.json) Copyright © 2026 Yarn Contributors, Inc. Built with Docusaurus. | 2026-01-13T09:30:28 |
https://blog.nyveldt.com/post/blogenginenet-13-installation-screencast | BlogEngine.NET 1.3 Installation Screencast - Al Nyveldt Al Nyveldt Home About Now BlogEngine.NET 1.3 Installation Screencast January 03, 2008 BlogEngine.NET , Screencasts blogengine.net , screencast , video I took some time this week to create some new screencasts for BlogEngine.NET 1.3. I decided to try out Camtasia 5.0 to make these screencasts and that gave me more options and hopefully will make nicer videos for you to watch. The first in the series is a simple installation screencast. It isn't much different than the 1.2 installtion video , but it seems odd to point people to a video about an older version so I re-did it. This time the video clocks in at 6 minutes, 20 seconds. I've made it available in both an in page Flash video and a Windows Media Video file . If other formats are preferred or I made the sizing too big or too small, please let me know. Share on Bluesky or click the Permalink and paste anywhere. Al Nyveldt Hi. I'm a software developer from central Pennsylvania, USA. Pinned Posts Keep GitHub Copilot from going off the rails with instructions files AI Journey: From Annoying to Essential Categories AI Journey (3) Audio (7) BlogEngine.NET (60) Books (2) Business (2) Development (41) Hardware (5) iDevBlogADay (6) iOS (8) Personal (14) Screencasts (15) Software (21) Web (3) Tags ai , app store , applescript , blogengine.net , blogml , book review , code camp , codemash , codeplex , coding , community , compiling , conference , control , copilot , crystal reports , das blog , dev tools , download , extensions , family , faq , feed reading , fitness , flash drive , fun , games , google reader , idevblogaday , ios , iPad , iphone , ipod , mcp , membership , metaweblog api , microsoft , migration , mix , monotouch , monsterid , mvc , mysql , nike+ , open source , organization , patch , personal , podcasts , powershell , profittrain , provider model , razorpdf , razorpub , release , reuse , review , running , runnow , screencast , security , snippets , sourcesafe , spark , sparrow , sql server , sqlite , starter kit , subtext , subversion , sudokukids , testing , theme , training , upgrade , utilities , video , vistadb , visual studio , widget , windows live writer , xamarin Subscribe Get notified about new posts and updates. Thank you! Please check your email and click the confirmation link to complete your subscription. Subscribe Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way. © 2026 Al Nyveldt. All rights reserved. Published with QuillKit / Sign in | 2026-01-13T09:30:28 |
https://qiita.com/signup?callback_action=login_or_signup&redirect_to=%2F&realm=qiita | Sign Up - Qiita Join Qiita Sign up for free and start using Qiita. Sign up with GitHub Sign up with Google Sign up with X(Twitter) We never post to X (Twitter) without your permission. There may be restrictions on X(Twitter) login. Please use other login methods together. Sign up in 30 seconds. If you already have a Qiita account log in. Agree with the terms of service Agree with the privacy policy How developers code is here. © 2011-2026 Qiita Inc. Guide & Help About Terms Privacy Guideline Design Guideline Feedback Help Advertisement Contents Release Note Official Event Official Column Advent Calendar Qiita Award API SNS @Qiita @qiita_milestone @qiitapoi Facebook YouTube Podcast Our service Qiita Team Qiita Zine Official Shop Company About Us Careers Qiita Blog | 2026-01-13T09:30:28 |
https://qiita.com/signup?callback_action=login_or_signup&redirect_to=%2Fabout&realm=qiita | Sign Up - Qiita Join Qiita Sign up for free and start using Qiita. Sign up with GitHub Sign up with Google Sign up with X(Twitter) We never post to X (Twitter) without your permission. There may be restrictions on X(Twitter) login. Please use other login methods together. Sign up in 30 seconds. If you already have a Qiita account log in. Agree with the terms of service Agree with the privacy policy How developers code is here. © 2011-2026 Qiita Inc. Guide & Help About Terms Privacy Guideline Design Guideline Feedback Help Advertisement Contents Release Note Official Event Official Column Advent Calendar Qiita Award API SNS @Qiita @qiita_milestone @qiitapoi Facebook YouTube Podcast Our service Qiita Team Qiita Zine Official Shop Company About Us Careers Qiita Blog | 2026-01-13T09:30:28 |
https://tests.reproducible-builds.org/debian/bookworm/amd64/pkg_set_build-essential-depends.html | build-essential-depends package set for bookworm/amd64 Debian navigation Change suite/architecture Tested architectures: amd64 arm64 Tested suites: unstable forky trixie bookworm Test results statistics Results for bookworm/amd64 Unreproducible packages: with notes without notes Other package states: package sets Recently tested packages: last 24h last 48h all tested packages packages with .buildinfo files packages without .buildinfo files Scheduled for amd64 Maintainers of in bookworm Reproducible Debian overview Development dashboard Past releases dashboard Categorized issues Bugs filed Variations tested Packages with notifications enabled ⚑ Repositories overview Backend related Broken pieces Documentation (eg. on manual scheduling) Performance stats Health monitoring node overview job overview daily graphs weekly graphs monthly graphs yearly graphs The Reproducible Builds project reproducible-builds.org Reproducible Builds - Docs • News Reproducible Builds in Debian - Wiki SOURCE_DATE_EPOCH specification reproduce.debian.net aims for 100% bit-for-bit identical rebuilds of Debian other CI tests build-essential-depends package set for bookworm/amd64 All tracked package sets for bookworm/amd64 Debian package sets: essential required important build-essential build-essential-depends popcon_top1337-installed-sources key_packages installed_on_debian.org had_a_DSA cii-census cloud-image cloud-image_build-depends desktop package sets: gnome gnome_build-depends kde kde_build-depends mate mate_build-depends xfce xfce_build-depends Debian distribution package sets: CIP CIP_build-depends debian-edu debian-edu_build-depends freedombox freedombox_build-depends grml grml_build-depends tails tails_build-depends pureos_default_install pureos_default_install_build-depends maintenance team package sets: maint_debian-accessibility maint_debian-boot maint_debian-lua maint_debian-med maint_debian-ocaml maint_debian-on-mobile-maintainers maint_debian-python maint_debian-qa maint_debian-science maint_debian-x maint_pkg-android-tools-devel maint_pkg-erlang-devel maint_pkg-fonts-devel maint_pkg-games-devel maint_pkg-golang-maintainers maint_pkg-grass-devel maint_pkg-haskell-maintainers maint_pkg-java-maintainers maint_pkg-javascript-devel maint_pkg-multimedia-maintainers maint_pkg-perl-maintainers maint_pkg-php-pear maint_pkg-openstack maint_pkg-r maint_pkg-ruby-extras-maintainers maint_pkg-rust-maintainers maint_reproducible-builds The package set build-essential-depends in bookworm/amd64 consists of 4635 packages: 104 (2.2%) packages failed to build reproducibly: shaderc efl automake1.11 bnd codenarc cxxtest gtk-sharp2 javaparser mm-common mono-tools guile-3.0 mrmpi nunit pstoedit systemtap lucene4.10 gmetrics emoslib # codec2 scons infinipath-psm ruby-pygments.rb groovy nbsphinx lirc python-graphviz lynx dask qtx11extras-opensource-src doxygen qtsensors-opensource-src h2database fltk1.3 ldc qttools-opensource-src dejagnu auctex freetds qtwayland-opensource-src intel-mediasdk qt6-5compat qt6-multimedia qt6-quick3d eckit qtserialport-opensource-src qtspeech-opensource-src linux86 mpich python-jsonschema secilc oxygen-icons5 eccodes parallel valgrind + libadwaita-1 black underscore python-xarray qtwebsockets-opensource-src qtconnectivity-opensource-src qtsvg-opensource-src qtlocation-opensource-src libcamera gdcm r-base mypy qt6-declarative boost1.74 lucene8 gdb statsmodels python-mkdocs nbconvert petsc qtdeclarative-opensource-src fish lombok odc node-mocha ipyparallel fop bluez gcc-12-cross graphviz + numpy twisted emacs qtbase-opensource-src # # # python3.11 tomcat10 twitter-bootstrap3 commons-vfs php8.2 commons-beanutils icu sphinx-gallery libcommons-lang3-java imagemagick qemu ffmpeg vlc # + xorg-server linux gnupg2 52 (1.1%) packages failed to build from source: ruby-stackprof python-watchgod node-grunt-webpack ruby-fakefs ruby-rest-client ruby-haml strace haskell-unordered-containers freezegun haskell-unicode-collation haskell-citeproc haskell-lpeg python-babel tqdm python-argcomplete ruby-pry-byebug pexpect node-v8flags node-performance-now node-sinon node-webassemblyjs suitesparse node-p-limit haskell-doclayout openldap uglify-js munge node-bl haskell-basement gjs node-flagged-respawn node-tar gtk4 node-css-tree libgweather4 ghc # nspr qtremoteobjects-everywhere-src jupyter-notebook autogen ruby3.1 uvloop devscripts node-rollup-plugin-node-polyfills python-asyncssh espeak-ng yarl nodejs curl gst-plugins-base1.0 perl glibc 18 (0.4%) packages are either in depwait state, blacklisted, not for us, or cannot be downloaded: cross-toolchain-base cross-toolchain-base-ports python-eventlet ceph gcc-12 mono magics++ octave trilinos openblas gcc-11 vtk9 wpewebkit ocaml-dune scipy gcc-12-cross-ports openjfx nss 4461 (96.2%) packages successfully build reproducibly: a52dec aalib abego-treelayout abi-compliance-checker abseil acl acorn acpica-unix adduser adwaita-icon-theme afdko aglfn aiofiles aioredis aiosignal alabaster alex alglib alsa-lib amdgcn-tools animal-sniffer ann ant ant-contrib anthy antlr antlr3 antlr4 antlr-maven-plugin aom apache2 # apache-log4j1.2 apache-log4j2 apache-pom apiguardian apipkg apparmor appconfig appdirs apr apr-util apt argon2 args4j aribb24 armadillo arpack asciidoc asciidoctor asm aspell aspell-en aspell-he assertj-core assimp astroid atf atinject-jsr330 atkmm1.6 at-spi2-core attica-kf5 attr audit autoconf autoconf2.13 autoconf2.69 autoconf-archive autoconf-dickey autodep8 automake-1.16 automat autopkgtest autotools-dev avahi avalon-framework babel-minify babeltrace backbone base-files base-passwd bash bash-completion batik bats bc bcel beautifulsoup4 benchmark biber bignumber.js bindex binfmt-support binutils # binutils-mingw-w64 bison blinker blockdiag blt boost-defaults boot bottleneck bouncycastle box2d breathe brltty brotli bsdmainutils bsh bubblewrap build-essential build-helper-maven-plugin byacc byacc-j byte-buddy bzip2 c3p0 ca-certificates ca-certificates-java cached-property cachy cairo cairocffi cairomm camlbz2 camlp-streams camlzip capstone c-ares cargo castxml catch c-blosc # ccache cdbs cdebconf cdi-api cdparanoia cffsubr cfgrib cfitsio cfortran cftime cgif cglib chafa chardet charls check checkpolicy cherrypy3 chromaprint chrpath cjson classmate classycle cli-common clikit cloudpickle clp clucene-core + cluster cluster-glue clutter-1.0 clutter-imcontext cmake cmark-gfm cmdliner cmdreader cmdtest cme cmocka cm-super codemirror-js coderay codetools coffeescript cogl coinmp coinor-cbc coinor-cgl coinor-osi coinutils colord colors.js colorspacious combblas commonmark commons-configuration commons-csv commons-exec commons-httpclient commons-io commons-math3 commons-parent commons-pool commons-text compreffor compress-lzf constantly contourpy conversant-disruptor # coreutils corosync cpio cppo cppunit cppy cracklib2 crashtest cron cryptsetup cscope cssmin cucumber cudf cunit cup cups # curvesapi cvs cvsps cvxopt cyrus-sasl2 cython + d3 d3-format darts dash dask-sphinx-theme datefudge dav1d db5.3 db-defaults dblatex dbus dbus-broker dbus-c++ dbus-glib dbus-python dconf dctrl-tools dd-plist debconf debhelper debian-archive-keyring debianutils debugedit debugpy deepdiff defcon defusedxml desktop-file-utils device-tree-compiler dh-autoreconf dh-buildinfo dh-cargo dh-elpa dh-exec dh-fortran-mod dh-golang dh-linktree dh-lisp dh-lua dh-make-perl dh-nss dh-ocaml dh-octave dh-python dh-r dh-runit dh-vim-addon dictionaries-common dietlibc diffstat diffutils dill directfb directx-headers discount disruptor dist distlib distro-info distro-info-data djvulibre dlm dnspython docbook docbook2x docbook5-xml docbook-dsssl docbook-to-man docbook-utils docbook-xml docbook-xsl docopt doctest dom4j dos2unix dose3 dot2tex dotconf double-conversion doxia doxia-sitetools dpkg # dpkg-awk draco dragonbox dsdp d-shlibs dtd-parser duktape dulwich dvipng dvisvgm dwarves dwz dxflib e2fsprogs easymock ecbuild eccodes-python eclipse-debian-helper eclipse-emf eclipse-equinox eclipse-jdt-core eclipse-jdt-debug eclipse-jdt-ui eclipse-platform-debug eclipse-platform-resources eclipse-platform-runtime eclipse-platform-team eclipse-platform-text eclipse-platform-ua eclipse-platform-ui ecmwflibs ed ehcache eigen3 el-api elementpath elfutils ell emacsen-common enchant-2 ent entrypoints epstool equinox-p2 error-prone-java eslint evolution-data-server excalibur-logkit exec-maven-plugin execnet exempi expat expect extlib extra-cmake-modules exuberant-ctags faad2 fakechroot faketime fastinfoset fastjar fcitx fdupes feedparser felix-bundlerepository felix-framework felix-gogo-runtime felix-osgi-obr felix-resolver felix-shell felix-utils fest-assert fest-test fest-util ffms2 fftw3 fig2dev file findbugs findlib findlibs findutils fiona firebird3.0 firewalld flac flake8-polyfill flask flex flit flite flit-scm fluidsynth flute fmtlib fontconfig fontforge fontmake fontmath fontparts fontpens fonts-cantarell fonts-crosextra-carlito fonts-dejavu fonts-font-awesome fonts-freefont fonts-gfs-baskerville fonts-gfs-porson fonts-inconsolata fonts-inter fonts-kacst fonts-lato fonts-liberation fonts-liberation2 fonts-linuxlibertine fonts-noto fonts-noto-cjk fonts-noto-color-emoji fonts-open-sans fonts-roboto-slab fonts-urw-base35 fonts-wqy-zenhei fonttools foreign freeglut freeipmi freerdp2 freetype freexl frei0r fribidi frozenlist fsspec ftgl funcparserlib furo fuse fuse3 fyba galera-4 game-music-emu ganymed-ssh2 gavl gawk + gcc-defaults gcc-defaults-ports gcc-mingw-w64 gcovr gcr gdal gdbm gdk-pixbuf gdk-pixbuf-xlib gdl gdmd gem2deb gengetopt genshi geocode-glib geos geronimo-annotation-1.3-spec geronimo-interceptor-3.0-spec geronimo-jacc-1.1-spec geronimo-jms-1.1-spec geronimo-jpa-2.0-spec geronimo-jta-1.2-spec geronimo-osgi-support geronimo-validation-1.1-spec gettext gf-complete gflags ghostscript ghp-import gi-docgen giflib gist git gl2ps glade glew glib2.0 glibmm2.4 glib-networking glm glpk glslang glusterfs glyphsinfo glyphslib gmp gnome-common gnome-desktop gnome-online-accounts gnome-pkg-tools gnu-efi gnulib gnuplot gnustep-base gnustep-make gnutls28 gnu-which gobject-introspection golang-1.19 golang-defaults golang-github-evanw-esbuild golang-golang-x-sys google-glog google-perftools # googletest gperf gpgme1.0 gpm gradle gradle-debian-helper graphene graphicsmagick graphite2 grep groff grpc grunt gsettings-desktop-schemas gsl gspell gssdp gst-plugins-bad1.0 gst-plugins-good1.0 gstreamer1.0 gtk+2.0 gtk+3.0 gtk-doc gtkmm2.4 gtkmm3.0 gtkspell3 gts guava-libraries guice gumbo-parser gunicorn gupnp gupnp-igd guzzle-sphinx-theme gyp gzip h5py happy harfbuzz haskell-aeson haskell-aeson-pretty haskell-aeson-qq haskell-ansi-terminal haskell-ansi-wl-pprint haskell-appar haskell-asn1-encoding haskell-asn1-parse haskell-asn1-types haskell-assoc haskell-async haskell-attoparsec haskell-base16-bytestring haskell-base64-bytestring haskell-base-compat haskell-base-compat-batteries haskell-base-orphans haskell-bifunctors haskell-blaze-builder haskell-blaze-html haskell-blaze-markup haskell-boring haskell-byteorder haskell-cabal-doctest haskell-cabal-install haskell-call-stack haskell-case-insensitive haskell-cereal haskell-chasingbottoms haskell-clock haskell-cmdargs haskell-code-page haskell-colour haskell-commonmark haskell-commonmark-extensions haskell-commonmark-pandoc haskell-comonad haskell-conduit haskell-conduit-extra haskell-connection haskell-contravariant haskell-cookie haskell-cryptohash-sha256 haskell-cryptonite haskell-data-default haskell-data-default-class haskell-data-default-instances-containers haskell-data-default-instances-dlist haskell-data-default-instances-old-locale haskell-data-fix haskell-dec haskell-devscripts haskell-diff haskell-digest haskell-distributive haskell-dlist haskell-doctemplates haskell-doctest haskell-echo haskell-ed25519 haskell-edit-distance haskell-either haskell-emojis haskell-extensible-exceptions haskell-extra haskell-fgl haskell-file-embed haskell-filemanip haskell-filepattern haskell-foldl haskell-foundation haskell-generic-deriving haskell-ghc-paths haskell-glob haskell-hackage-security haskell-haddock-library haskell-hashable haskell-heaps haskell-hostname haskell-hourglass haskell-hslua haskell-hslua-aeson haskell-hslua-classes haskell-hslua-core haskell-hslua-marshalling haskell-hslua-module-path haskell-hslua-module-system haskell-hslua-module-text haskell-hslua-module-version haskell-hslua-objectorientation haskell-hslua-packaging haskell-hspec haskell-hspec-core haskell-hspec-discover haskell-hspec-expectations haskell-hsyaml haskell-http haskell-http-client haskell-http-client-tls haskell-http-types haskell-hunit haskell-indexed-traversable haskell-indexed-traversable-instances haskell-integer-logarithms haskell-iproute haskell-ipynb haskell-jira-wiki-markup haskell-js-dgtable haskell-js-flot haskell-js-jquery haskell-juicypixels haskell-language-python haskell-lexer haskell-libyaml haskell-logging-facade haskell-logict haskell-lua haskell-lua-arbitrary haskell-lukko haskell-memory haskell-mime-types haskell-mockery haskell-monad-control haskell-monads-tf haskell-mono-traversable haskell-network haskell-network-uri haskell-old-locale haskell-old-time haskell-onetuple haskell-optparse-applicative haskell-pandoc-lua-marshal haskell-pandoc-types haskell-pem haskell-pretty-show haskell-primitive haskell-profunctors haskell-quickcheck haskell-quickcheck-instances haskell-quickcheck-io haskell-quickcheck-unicode haskell-random haskell-raw-strings-qq haskell-regex-base haskell-regex-posix haskell-regex-tdfa haskell-resolv haskell-resourcet haskell-safe haskell-scientific haskell-semialign haskell-semigroupoids haskell-semigroups haskell-setenv haskell-sha haskell-shake haskell-silently haskell-singleton-bool haskell-skylighting haskell-skylighting-core haskell-smallcheck haskell-socks haskell-some haskell-split haskell-splitmix haskell-src-exts haskell-src-meta haskell-statevar haskell-streaming-commons haskell-strict haskell-syb haskell-tagged haskell-tagsoup haskell-tar haskell-tasty haskell-tasty-expected-failure haskell-tasty-golden haskell-tasty-hunit haskell-tasty-kat haskell-tasty-lua haskell-tasty-quickcheck haskell-tasty-smallcheck haskell-temporary haskell-test-framework haskell-test-framework-hunit haskell-test-framework-quickcheck2 haskell-texmath haskell-text-conversions haskell-text-short haskell-tf-random haskell-th-abstraction haskell-th-compat haskell-these haskell-th-expand-syns haskell-th-lift haskell-th-lift-instances haskell-th-orphans haskell-th-reify-many haskell-time-compat haskell-timeit haskell-tls haskell-transformers-base haskell-transformers-compat haskell-typed-process haskell-unbounded-delays haskell-unicode-data haskell-unicode-transforms haskell-uniplate haskell-unix-compat haskell-unliftio haskell-unliftio-core haskell-utf8-string haskell-uuid-types haskell-vector haskell-vector-algorithms haskell-wcwidth haskell-witherable haskell-x509 haskell-x509-store haskell-x509-system haskell-x509-validation haskell-xcb-types haskell-xml haskell-xml-conduit haskell-xml-types haskell-yaml haskell-zip-archive haskell-zlib hatchling hatch-vcs hawtjni hdf5 heimdal help2man hfst-ospell hicolor-icon-theme highlight.js highway hiredis hostname hpsockd hscolour hspell hsqldb hsqldb1.8.0 html2text html5lib html-xml-utils httpbin httpcomponents-client httpcomponents-core httpcore http-parser httpx hunspell hwloc hypercorn hyperlink hyphen hypre ibus icoutils icu4j igerman98 ijs imath imlib2 impacket incremental indent iniparser init-system-helpers inkscape intellij-annotations intel-processor-trace intltool intltool-debian io-stringy iproute2 iptables iputils ipykernel ipython ipython-genutils ipywidgets isl iso-codes isorelax isort ispell istack-commons itstool ivy ivy-debian-helper ivyplusplus jackd2 jackrabbit jackson-annotations jackson-core jackson-databind jackson-dataformat-xml jackson-dataformat-yaml jackson-module-jaxb-annotations jakarta-activation jakarta-mail jakarta-servlet-api janest-ocaml-compiler-libs janino jansi jansi1 jansi-native jansson jaraco.classes jaraco.collections jaraco.context jaraco.text jargs jarjar jarjar-maven-plugin jatl javabeans-activation-framework javacc javacc5 javacc-maven-plugin java-comment-preprocessor java-common javahelp2 javamail javascript-common javassist javatools # java-wrappers jaxb jaxb-api jaxrpc-api jaxrs-api jbig2dec jbigkit jboss-bridger jboss-jdeparser2 jboss-logging jboss-logging-tools jboss-logmanager jboss-modules jcifs jcommander jctools jdcal jdependency jdupes jeepney jemalloc jerasure jeromq jetring jetty9 jffi jflex jformatstring jgit jinja2 jlex jline jline2 jline3 jmock jmock2 jnr-constants jnr-enxio jnr-ffi jnr-posix jnr-unixsocket jnr-x86asm joblib joda-convert jpeg-xl jq jquery-goodies jquery-tablesorter jquery-throttle-debounce jquery-typeahead.js jqueryui jquery-ui-themes jsbundle-web-interfaces jsch jsch-agent-proxy json-c json-glib jsonpickle json-schema-test-suite json-simple jsoup jsp-api jtb jtharness jtidy jtreg6 jts judy junit junit4 junit5 junixsocket jupyter-client jupyter-console jupyter-core jupyterlab-pygments jupyter-packaging jzlib karchive kauth kbookmarks kcodecs kcompletion kconfig kconfigwidgets kcoreaddons kcrash kdbusaddons kded kdoctools kernel-wedge kernsmooth keyutils kglobalaccel kguiaddons khronos-opencl-clhpp khronos-opencl-headers ki18n kiconthemes kio kitemviews kiwisolver kjobwidgets kmod knopflerfish-osgi knotifications krb5 # kronosnet kservice ktextwidgets kwallet-kf5 kwidgetsaddons kwindowsystem kxml2 kxmlgui kyua ladspa-sdk lame lapack latex2html latexmk lattice lazy-object-proxy lbfgsb lcdf-typetools lcms2 lcov leptonlib lerc less less.js leveldb lib2geom libabw libaec libaio libalgorithm-c3-perl libalgorithm-diff-perl libaliased-perl libao P libaopalliance-java libapache-poi-java libapp-cmd-perl libapp-fatpacker-perl libapt-pkg-perl libarchive libarchive-zip-perl libarray-intspan-perl libarray-unique-perl libarray-utils-perl libass libassuan libasyncns libautovivification-perl libavc1394 libavif libb2 libb64 libbase libb-cow-perl libb-debug-perl libberkeleydb-perl libb-hooks-endofscope-perl libb-hooks-op-check-perl libb-keywords-perl libbluray libboolean-perl libbpf libbs2b libbsd libbsf-java libbtm-java libbusiness-isbn-data-perl libbusiness-isbn-perl libbusiness-ismn-perl libbusiness-issn-perl libcaca libcacard libcanary-stability-perl libcanberra libcap2 libcap-ng libcapture-tiny-perl libcarp-assert-more-perl libcbor libcddb libcdio libcdio-paranoia libcdr libcgi-pm-perl libclass-accessor-perl libclass-c3-perl libclass-data-inheritable-perl libclass-inspector-perl libclass-load-perl libclass-load-xs-perl libclass-method-modifiers-perl libclass-singleton-perl libclass-tiny-perl libclass-xsaccessor-perl libclone-choose-perl libclone-perl libcloudproviders libcommons-cli-java libcommons-codec-java libcommons-collections3-java libcommons-collections4-java libcommons-compress-java libcommons-dbcp-java libcommons-digester-java libcommon-sense-perl libcommons-fileupload-java libcommons-jexl2-java libcommons-jxpath-java libcommons-lang-java libcommons-logging-java libcommons-net-java libcommons-validator-java # libconfig libconfig-autoconf-perl libconfig-auto-perl libconfig-inifiles-perl libconfig-model-backend-yaml-perl libconfig-model-dpkg-perl libconfig-model-perl libconfig-tiny-perl libconfuse libconst-fast-perl libcontextual-return-perl libconvert-binhex-perl libcpanel-json-xs-perl libcpan-meta-check-perl libcrypto++ libcue libdaemon libdata-compare-perl libdata-dpath-perl libdata-dump-perl libdata-messagepack-perl libdata-optlist-perl libdata-section-perl libdata-section-simple-perl libdata-uniqid-perl libdata-validate-domain-perl libdata-validate-ip-perl libdata-validate-uri-perl libdata-visitor-perl libdate-simple-perl libdatetime-calendar-julian-perl libdatetime-format-builder-perl libdatetime-format-mysql-perl libdatetime-format-strptime-perl libdatetime-locale-perl libdatetime-perl libdatetime-timezone-perl libdatrie libdbd-sqlite3-perl libdbi libdbi-perl libdbm-deep-perl libdbusmenu-qt libdc1394 libdca libde265 libdebian-copyright-perl libdebian-installer libdecor-0 libdeflate libdevel-callchecker-perl libdevel-checkbin-perl libdevel-checkcompiler-perl libdevel-checklib-perl libdevel-confess-perl libdevel-cover-perl libdevel-cycle-perl libdevel-declare-perl libdevel-globaldestruction-perl libdevel-mat-dumper-perl libdevel-overloadinfo-perl libdevel-partialdump-perl libdevel-size-perl libdevel-stacktrace-perl libdevel-symdump-perl libdist-checkconflicts-perl libdrm libdumbtts libdv + libdvbpsi libdvdnav libdvdread libdynaloader-functions-perl libebml libe-book libedit libemail-address-xs-perl libemf libencode-eucjpascii-perl libencode-eucjpms-perl libencode-hanextra-perl libencode-jis2k-perl libencode-locale-perl libencode-perl libeot libepoxy libepubgen liberror-perl libetonyek libev libeval-closure-perl libevdev libevent libexception-class-perl libexecs libexif libexporter-lite-perl libexporter-tiny-perl libexttextcat libextutils-cchecker-perl libextutils-config-perl libextutils-cppguess-perl libextutils-depends-perl libextutils-helpers-perl libextutils-installpaths-perl libextutils-libbuilder-perl libextutils-pkgconfig-perl libfabric libfcgi libfeature-compat-class-perl libfeature-compat-try-perl libffado libffi libfido2 libfile-basedir-perl libfile-chdir-perl libfile-copy-recursive-perl libfile-desktopentry-perl libfile-dirlist-perl libfile-find-rule-perl libfile-find-rule-perl-perl libfile-homedir-perl libfile-libmagic-perl libfile-listing-perl libfile-pushd-perl libfile-remove-perl libfile-sharedir-perl libfile-slurper-perl libfile-slurp-perl libfile-touch-perl libfile-which-perl libfixmath libfontenc libfonts-java libfont-ttf-perl libformula libfreeaptx libfreehand libftdi1 libfuture-asyncawait-perl libfuture-perl libgav1 libgc libgcrypt20 libgd2 libgdiplus libgeotiff libgetopt-argvfile-perl libgetopt-long-descriptive-perl libgit2 libgitlab-api-v4-perl libgit-wrapper-perl libglade2 libglu libglvnd libgoogle-gson-java libgpg-error libgphoto2 libgraph-perl libgsf libgsm libgtop2 libgudev libgusb + libgzstream libhamcrest-java libharu libhash-defhash-perl libhash-merge-perl libhdf4 libheap-perl libheif libhibernate3-java libhibernate-commons-annotations-java libhibernate-validator-java libhtml-form-perl libhtml-html5-entities-perl libhtml-parser-perl libhtml-tagset-perl libhtml-tokeparser-simple-perl libhtml-tree-perl libhttp-cookies-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libhttp-tiny-multipart-perl libiberty libical3 libice libid3tag libidn libidn2 libiec61883 libieee1284 libimage-exiftool-perl libimagequant libimobiledevice libimporter-perl libimport-into-perl libindirect-perl libinih libinput libinstpatch libio-async-perl libiodbc2 libio-html-perl libio-interactive-perl libio-prompter-perl libio-prompt-tiny-perl libio-pty-perl libio-socket-ssl-perl libio-string-perl libio-tiecombine-perl libipc-run3-perl libipc-run-perl libipc-system-simple-perl libiptcdata libiscsi libiterator-perl libiterator-util-perl libitext1-java libitext-java libixion libjavaewah-java libjaxen-java libjaxp1.3-java libjcip-annotations-java libjcommon-java libjdepend-java libjdom1-java libjdom2-java libjettison-java libjgroups-java libjna-java libjoda-time-java libjpeg-turbo libjs-jquery-hotkeys libjs-jquery-isonscreen libjs-jquery-timeago libjsoncpp libjson-maybexs-perl libjson-perl libjsonp-java libjson-xs-perl libjs-qunit libjsr305-java libjs-requirejs-text libjtype-java libjuniversalchardet-java libjwt libjxl-testdata libkate libkml libkryo-java libksba liblangtag liblayout liblc3 libldac liblingua-en-inflect-perl liblingua-translit-perl liblist-allutils-perl liblist-compare-perl liblist-moreutils-perl liblist-moreutils-xs-perl liblist-someutils-perl liblist-utilsby-perl libloader liblocale-gettext-perl liblocale-us-perl liblockfile liblog-any-adapter-screen-perl liblog-any-perl liblog-log4perl-perl liblouis liblqr liblrdf libltc liblwp-mediatypes-perl liblwp-protocol-https-perl liblzf libmad libmailtools-perl libmanette libmath-base85-perl libmatio libmatroska libmbim libmce-perl libmd libmetrics-any-perl libmicrohttpd libmime-charset-perl libmime-tools-perl libminlog-java libmixin-linewise-perl libmldbm-perl libmnl libmodplug libmodule-build-perl libmodule-build-tiny-perl libmodule-build-xsutil-perl libmodule-implementation-perl libmodule-install-perl libmodule-pluggable-perl libmodule-refresh-perl libmodule-runtime-conflicts-perl libmodule-runtime-perl libmodule-scandeps-perl libmojolicious-perl libmoo-perl libmoose-perl libmoox-aliases-perl libmouse-perl libmousex-nativetraits-perl libmousex-strictconstructor-perl libmpc libmpeg3 libmro-compat-perl libmspub libmtp libmwaw libmysofa libnamespace-autoclean-perl libnamespace-clean-perl libnative-platform-java libndp libnetaddr-ip-perl libnet-domain-tld-perl libnetfilter-conntrack libnet-http-perl libnet-ipv6addr-perl libnet-netmask-perl libnet-smtp-ssl-perl libnet-ssleay-perl libnfnetlink libnfs libnftnl libnice libnl3 libnotify libnsl libnumber-compare-perl libnumbertext liboauth libobject-pad-perl libodfgen libogg liboggz libomxil-bellagio libonig libopencsd libopenmpt liborcus liboro-java libotf libpackage-deprecationmanager-perl libpackage-stash-perl libpackage-stash-xs-perl libpadwalker-perl libpagemaker libpaper libparams-classify-perl libparams-coerce-perl libparams-util-perl libparams-validate-perl libparams-validationcompiler-perl libparanamer-java libparse-debcontrol-perl libparse-recdescent-perl libparse-yapp-perl libpath-class-perl libpath-iterator-rule-perl libpath-tiny-perl libpcap libpciaccess libpdf-api2-perl libpdfbox2-java libpdfbox-java libpdfrenderer-java libperl4-corelibs-perl libperl-critic-community-perl libperl-critic-perl libperl-critic-policy-variables-prohibitlooponhash-perl libperl-critic-pulp-perl libperlio-gzip-perl libperlio-utf8-strict-perl libperl-minimumversion-perl libpfm4 libpgm libphonenumber libpipeline libpixie-java libplacebo libplist libpng1.6 libpod-constants-perl libpod-coverage-perl libpod-coverage-trustpod-perl libpod-eventual-perl libpod-minimumversion-perl libpod-parser-perl libpod-pom-perl libpod-pom-view-restructured-perl libpod-spell-perl libppi-perl libppix-quotelike-perl libppix-regexp-perl libppix-utilities-perl libppix-utils-perl libproc-processtable-perl libproxool-java libproxy libpsl libpsm2 libpthread-stubs libqb libqmi libqrtr-glib libqxp librabbitmq libraw libraw1394 libreadonly-perl libre-engine-re2-perl libreflectasm-java libref-util-perl libregexp-common-perl libregexp-ipv6-perl libregexp-java libregexp-pattern-defhash-perl libregexp-pattern-license-perl libregexp-pattern-perl libregexp-wildcards-perl librelaxng-datatype-java libreoffice # libreplaygain librepository librest librevenge librist librole-tiny-perl librsvg librsync librttopo libsamplerate libsass libsass-python libsaxon-java libscope-guard-perl libsdl2 libseccomp libsecret libselinux libsemanage libsepol libsereal-decoder-perl libsereal-encoder-perl libsereal-perl libserializer libset-intspan-perl libset-object-perl libset-scalar-perl libsgmls-perl libshout libsigc++-2.0 libsigsegv libslf4j-java libslirp libsm libsndfile libsocket6-perl libsodium libsoftware-licensemoreutils-perl libsoftware-license-perl libsort-key-perl libsort-versions-perl libsoup2.4 libsoup3 libsoxr libspatialaudio libspecio-perl libspectre libspiro libspring-java libsrtp2 libssh libssh2 libstaroffice libstatgrab libstax2-api-java libstax-java libstb libstrictures-perl libstring-copyright-perl libstring-escape-perl libstring-format-perl libstring-license-perl libstring-rewriteprefix-perl libstring-shellquote-perl libstring-trim-more-perl libstruct-dumb-perl libsub-exporter-perl libsub-exporter-progressive-perl libsub-identify-perl libsub-info-perl libsub-install-perl libsub-name-perl libsub-override-perl libsub-quote-perl libsub-uplevel-perl libsuper-perl libsvm libswarmcache-java libswitch-perl libsyntax-keyword-dynamically-perl libsyntax-keyword-match-perl libsyntax-keyword-multisub-perl libsyntax-keyword-try-perl libtaint-runtime-perl libtask-weaken-perl libtasn1-6 libteam libtemplate-perl libterm-readkey-perl libterm-table-perl libterralib libtest2-suite-perl libtest2-tools-command-perl libtest-cleannamespaces-perl libtest-cpan-meta-perl libtest-deep-perl libtest-differences-perl libtest-exception-perl libtest-failwarnings-perl libtest-fatal-perl libtest-filename-perl libtest-leaktrace-perl libtest-longstring-perl libtest-memory-cycle-perl libtest-metrics-any-perl libtest-minimumversion-perl libtest-mockrandom-perl libtest-needs-perl libtest-number-delta-perl libtest-output-perl libtest-perl-critic-perl libtest-pod-coverage-perl libtest-pod-perl libtest-refcount-perl libtest-regexp-pattern-perl libtest-requires-perl libtest-spelling-perl libtest-strict-perl libtest-synopsis-perl libtest-taint-perl libtest-warnings-perl libtest-warn-perl libtest-without-module-perl libtext-autoformat-perl libtext-bibtex-perl libtext-charwidth-perl libtext-csv-perl libtext-csv-xs-perl libtext-diff-perl libtext-glob-perl libtext-hogan-perl libtext-iconv-perl libtext-levenshtein-damerau-perl libtext-levenshteinxs-perl libtext-markdown-discount-perl libtext-reform-perl libtext-roman-perl libtext-template-perl libtext-trim-perl libtext-unidecode-perl libtextwrap libtext-wrapi18n-perl libtext-xslate-perl libthai libtheora libtie-cycle-perl libtie-ixhash-perl libtie-toobject-perl libtimedate-perl libtime-duration-perl libtime-moment-perl libtirpc libtoml-tiny-perl libtommath libtool libtraceevent libtracefs libtruth-java libtry-tiny-perl libtypes-serialiser-perl libtype-tiny-perl libudfread libunicode-linebreak-perl libunicode-utf8-perl libunistring libunwind liburcu liburing liburi-perl libusb libusb-1.0 libusbmuxd libutempter libuv1 libva libvariable-magic-perl libvdpau libverto libvidstab libvisio libvisual libvncserver libvoikko libvorbis libvpx libwacom libwant-perl libwebp libwmf libwnck3 libwoodstox-java libwpd libwpe libwpg libwps libwww-curl-perl libwww-curl-simple-perl libwww-mechanize-perl libwww-perl libwww-robotrules-perl libx11 libxalan2-java libxau libxaw libxbean-java libxcb libxcomposite libxcrypt libxcursor libxcvt libxdamage libxdmcp libxerces2-java libxext libxfce4ui libxfce4util libxfixes libxfont libxi libxinerama libxkbcommon libxkbfile libxml2 libxml++2.6 libxml-commons-resolver1.1-java libxml-dom-perl libxml-java libxml-libxml-perl libxml-libxml-simple-perl libxml-libxslt-perl libxml-namespacesupport-perl libxml-parser-perl libxml-perl libxml-regexp-perl libxml-sax-base-perl libxml-sax-expat-perl libxml-sax-perl libxml-security-java libxml-simple-perl libxmltok libxml-writer-perl libxmu libxpm libxpp2-java libxpp3-java libxpresent libxrandr libxrender libxres libxshmfence libxslt libxs-parse-keyword-perl libxs-parse-sublike-perl libxss libxstream-java libxstring-perl libxt libxtst libxv libxxf86vm libyaml libyaml-libyaml-perl libyaml-perl libyaml-pp-perl libyaml-tiny-perl libyuv libzip libzmf libzstd licensecheck lightcouch lilv linkify-it-py links2 lintian linux-atm linux-base linuxdoc-tools litehtml lksctp-tools llvm-defaults llvm-toolchain-13 llvm-toolchain-14 llvm-toolchain-15 lmdb lmodern lm-sensors localehelper locket log4shib logback logilab-common lombok-patcher lp-solve lsb-release-minimal lsof ltrace lua5.1 lua5.2 lua5.3 lua5.4 lua-bitop lua-cjson lumino lutok lv2 lvm2 lwt lxml lyx lz4 lzlib lzo2 lzop m17n-db m17n-lib m4 mailcap mako man2html man-db mariadb marisa markdown markdown-it-py markupsafe mat2 mathjax matplotlib matplotlib-inline maven maven-ant-helper maven-antrun-plugin maven-archiver maven-artifact-transfer maven-assembly-plugin maven-bundle-plugin maven-clean-plugin maven-common-artifact-filters maven-compiler-plugin maven-debian-helper maven-dependency-analyzer maven-dependency-plugin maven-dependency-tree maven-deploy-plugin maven-doxia-tools maven-enforcer maven-file-management maven-filtering maven-install-plugin maven-invoker maven-invoker-plugin maven-jar-plugin maven-javadoc-plugin maven-jaxb2-plugin maven-mapping maven-parent maven-plugin-testing maven-plugin-tools maven-processor-plugin maven-replacer-plugin maven-repo-helper maven-reporting-api maven-reporting-exec maven-reporting-impl maven-repository-builder maven-resolver maven-resources-plugin maven-scm maven-script-interpreter maven-shade-plugin maven-shared-incremental maven-shared-io maven-shared-utils maven-site-plugin maven-source-plugin maven-war-plugin mawk mbedtls md4c mdds mdit-py-plugins mdocml mdurl media-types memcached mercurial mergedeep mesa meson meson-python metis mgcv mhash mime-support mingw-w64 mini-soong minizip miscfiles mistune mitmproxy mjpegtools mkdocs-nature mockito modello modello-maven-plugin modemmanager modernizr mojo-executor mongo-java-driver more-itertools motif mozilla-devscripts mozjs102 mpack mpclib3 mpeg2dec mpfr4 mpg123 mpi4py mpi-defaults mpmath msgpack-c msgpack-cxx msv mtdev mumps munge-maven-plugin mustache.js mutagen mutatormath mysql-defaults myst-parser mythes nas nasm nbclient + nbformat ncurses ndctl nekohtml neon27 netbase netcat-openbsd netcdf netcdf4-python netcdf-cxx-legacy netpbm-free net-snmp nettle net-tools netty netty-tcnative network-manager newt nftables nghttp2 ninja-build nlme nlohmann-json3 nltk node-abab node-abbrev node-abstract-leveldown node-accepts node-after node-agent-base node-ajv node-ajv-keywords node-ampproject-remapping node-ansi-colors node-ansi-escapes node-ansi-font node-ansi-regex node-ansi-styles node-anymatch node-any-promise node-aproba node-archy node-are-we-there-yet node-arg node-argparse node-array-differ node-array-find-index node-array-flatten node-array-from node-array-union node-array-uniq node-arr-diff node-arr-flatten node-arrify node-arr-union node-asap node-asn1.js node-assert node-assertion-error node-assume node-ast-types node-async node-async-each node-asynckit node-auto-bind node-autoprefixer node-ava node-axios node-babel7 node-babel-loader node-babel-plugin-add-module-exports node-babel-plugin-lodash node-babel-polyfills node-babylon node-balanced-match node-base node-base64-js node-basic-auth node-basic-auth-parser node-big.js node-binary-extensions node-bindings node-bluebird node-blueimp-md5 node-bn.js node-body-parser node-boolbase node-bootstrap-tour node-brace-expansion node-braces node-brfs node-brorand node-browserify node-browserify-aes node-browserify-cipher node-browserify-des node-browserify-lite node-browserify-rsa node-browserify-sign node-browserify-zlib node-browser-pack node-browser-resolve node-browserslist node-browser-stdout node-browser-unpack node-buble node-buf-compare node-buffer node-buffer-equal node-bufferjs node-buffer-xor node-builtin-modules node-builtins node-builtin-status-codes node-busboy node-bytes node-cacache node-cache-base node-cached-path-relative node-callback-stream node-caller node-camelcase node-caniuse-db node-caniuse-lite node-cbor node-chai node-chai-as-promised node-chainsaw node-chalk node-check-error node-cheerio node-chokidar node-chownr node-chrome-trace-event node-ci-info node-cipher-base node-cjs-module-lexer node-cjson node-clean-css node-clean-yaml-object node-cli-boxes node-cli-cursor node-clipboard node-cli-spinners node-cli-table node-cli-truncate node-cliui node-cli-width node-clone node-cloneable-readable node-clone-buffer node-clone-deep node-clone-stats node-co node-coffeeify node-collection-visit node-color-convert node-color-name node-columnify node-combined-stream node-combine-source-map # node-commander node-commondir node-compare-versions node-component-emitter node-concat-stream node-concat-with-sourcemaps node-concordance node-config-chain node-console-browserify node-console-control-strings node-console-group node-consolidate node-constants-browserify node-content-disposition node-content-type node-convert-source-map + node-cookie node-cookiejar node-cookie-parser node-cookies node-cookie-signature node-copy-concurrently node-core-js node-core-util-is node-cosmiconfig node-coveralls node-create-ecdh node-create-hash node-create-hmac node-create-require node-crypto-browserify node-crypto-random-string node-css node-css-loader node-cssom node-css-select node-css-selector-tokenizer node-cssstyle node-csstype node-css-what node-currently-unhandled node-cyclist node-d node-d3-queue node-data-uri-to-buffer node-dateformat node-date-time node-debbundle-es-to-primitive node-debbundle-insert-module-globals node-debug node-debug-fabulous node-decamelize node-decompress-response node-deep-eql node-deep-equal node-deep-for-each node-deep-is node-deepmerge node-defaults node-defined node-define-properties node-define-property node-del node-delayed-stream node-delegates node-depd node-deps-sort node-des.js node-detect-file node-detective node-detect-newline node-diff node-doctrine node-domain-browser node-domelementtype node-domhandler node-domino node-dom-serializer node-domutils node-dot node-dot-prop node-duplexer node-duplexer3 node-duplexify node-ebnf-parser node-ejs node-electron-to-chromium node-elliptic node-emittery node-emojis-list node-encodeurl node-encoding node-end-of-stream node-enhanced-resolve node-entities node-err-code node-errno node-error-ex node-es5-ext node-es6-error node-es6-iterator node-es6-map node-es6-promise node-es6-set node-es6-shim node-es6-symbol node-es6-weak-map node-es-abstract node-escape-html node-escape-string-regexp node-escodegen node-escope node-eslint-plugin-es node-eslint-plugin-eslint-plugin node-eslint-plugin-node node-eslint-scope node-eslint-utils node-eslint-visitor-keys node-es-module-lexer node-espree node-esprima node-esprima-fb node-esquery node-esrecurse node-estraverse node-estree-walker node-esutils # node-etag node-event-emitter node-eventemitter2 node-eventemitter3 node-events node-everything.js node-evp-bytestokey node-execa node-exit node-expand-tilde node-expect.js node-express node-extend node-extend-shallow node-external-editor node-falafel node-fancy-log node-fast-deep-equal node-fast-levenshtein node-fast-safe-stringify node-fbjs node-fetch node-file-entry-cache node-file-loader node-filesize node-file-sync-cmp node-fill-range node-finalhandler node-find-cache-dir node-find-up node-findup-sync node-fined node-flatted node-flow-remove-types node-flush-write-stream node-fn-name node-follow-redirects node-foreground-child node-for-in node-form-data node-formidable node-for-own node-fresh node-from2 node-fs-exists-sync node-fs-extra node-fs-readdir-recursive node-fs.realpath node-fs-write-stream-atomic node-functional-red-black-tree node-function-bind + node-gauge node-get-caller-file node-get-func-name node-getobject node-get-stdin node-get-stream node-gettext-parser node-get-value node-glob node-global-modules node-global-prefix node-globals node-globby node-glob-parent node-glob-stream node-glogg node-got node-graceful-fs node-graphlibrary node-growl node-grunt-babel node-grunt-cli node-grunt-contrib-clean node-grunt-contrib-concat node-grunt-contrib-copy node-grunt-contrib-internal node-grunt-contrib-nodeunit node-grunt-contrib-requirejs node-grunt-contrib-uglify node-grunt-known-options node-grunt-legacy-log node-grunt-legacy-log-utils node-grunt-legacy-util node-gulp node-gulp-babel node-gulp-concat node-gulp-flatten node-gulplog node-gulp-newer node-gulp-plumber node-gulp-rename node-gulp-sourcemaps node-gyp node-gzip-size node-handlebars node-has-ansi node-has-flag node-hash-base node-hashish node-hash.js node-hash-test-vectors node-has-unicode node-has-value node-has-values node-he node-hmac-drbg node-hooker node-hook-std node-hosted-git-info node-html5shiv node-htmlescape node-htmlparser2 node-http-errors node-http-proxy node-https-browserify node-https-proxy-agent node-iconv node-iconv-lite node-icss-utils node-ieee754 node-iferr node-ignore node-ignore-by-default node-immediate node-immutable node-imurmurhash node-indent-string node-inflight node-inherits node-ini node-inline-source-map node-inquirer node-interpret node-invariant node-ip node-ipaddr.js node-ip-regex node-irregular-plurals node-isarray node-is-arrayish node-is-binary-path node-is-buffer node-is-builtin-module node-is-descriptor node-is-directory node-isexe node-is-extendable node-is-extglob node-is-generator-fn node-is-glob node-is-module node-is-negated-glob node-is-node node-is-number node-is-obj node-is-object node-isobject node-isomorphic-fetch node-is-path-cwd node-is-path-inside node-is-plain-obj node-is-plain-object node-is-primitive node-is-promise node-is-reference node-is-stream node-isstream node-istanbul node-is-typedarray node-is-unc-path node-is-valid-glob node-is-windows node-jake node-jasmine node-jed node-jest node-jison node-jison-lex node-jju node-jquery node-jquery-mousewheel node-js-beautify node-jschardet node-jsdom node-jsesc node-json5 # node-json-buffer node-jsonfile node-jsonify node-jsonparse node-json-parse-better-errors node-json-parse-helpfulerror node-json-schema node-json-schema-traverse node-jsonselect node-json-stable-stringify node-jsonstream node-json-stringify-safe node-js-tokens node-js-yaml node-kew node-keygrip node-kind-of node-klaw node-labeled-stream-splicer node-lazystream node-lcov-parse node-leveldown node-leven node-levn node-lex-parser node-libs-browser node-lie node-liftoff node-livescript node-loader-runner node-loader-utils node-load-grunt-tasks node-load-json-file node-locate-character node-locate-path node-lodash node-log4js node-log-driver node-loose-envify node-lowercase-keys node-lru-cache node-lunr node-magic-string node-make-dir node-make-error node-map-cache node-map-visit node-marked node-marked-man node-matcher node-md5-hex node-md5.js node-md5-o-matic node-mdn-browser-compat-data node-mdn-data node-media-typer node-mem node-memfs node-memory-fs node-merge-descriptors node-merge-stream node-methods node-micromatch node-mime node-mime-types node-mimic-fn node-mimic-response node-minimalistic-crypto-utils node-minimatch node-minimist node-minipass node-mississippi node-mixin-deep node-mkdirp node-mkdirp-classic node-module-deps node-moment node-morgan node-move-concurrently node-ms node-multimatch node-mutate-fs node-mute-stream node-mysticatea-eslint-plugin node-mz node-n3 node-nan node-ncp node-negotiator node-neo-async node-nock node-nodeunit node-nomnom node-nopt node-normalize.css node-normalize-package-data node-normalize-path node-normalize-range node-npm-bundled node-npmlog node-npm-package-arg node-npm-run-path node-nth-check node-object-assign node-object-inspect node-object-path node-object-visit node-once node-on-finished node-on-headers node-opener node-optimist node-optionator node-ordered-read-streams node-os-browserify node-osenv node-os-tmpdir node-output-file-sync node-package-preamble node-pako node-parallel-transform node-parents node-parse5 node-parse-asn1 node-parse-base64vlq-mappings node-parse-filepath node-parse-json node-parse-ms node-parseurl node-pascalcase node-path-browserify node-path-dirname node-path-exists node-path-is-absolute node-path-is-inside node-path-root node-path-root-regex node-path-to-regexp node-path-type node-pathval node-pbkdf2 node-p-cancelable node-pend node-p-finally node-picocolors node-pify node-pinkie node-pinkie-promise node-p-is-promise node-pkg-dir node-pkg-up node-p-locate node-plugin-error node-plur node-p-map node-po2json node-postcss node-postcss-cli node-postcss-load-config node-postcss-modules-extract-imports node-postcss-modules-values node-postcss-reporter node-postcss-value-parser node-prelude-ls node-pretty-bytes node-pretty-hrtime node-pretty-ms node-private node-process node-process-nextick-args node-progress node-promise node-promise-inflight node-promise-retry node-prompts node-promzard node-propagate node-propget node-prop-types node-proto-list node-proxy node-proxy-addr node-proxy-from-env node-proxyquire node-prr node-pruddy-error node-pseudorandombytes node-p-timeout node-public-encrypt node-pump node-pumpify node-punycode node-q node-qs node-querystring node-querystring-es3 node-quick-lru node-quote-stream node-ramda node-random-bytes node-randombytes node-randomfill node-range-parser node-raw-body node-react node-read node-readable-stream node-readdirp node-read-only-stream node-read-package-json node-read-pkg node-read-pkg-up node-recast node-rechoir node-regenerate node-regenerate-unicode-properties node-regenerator node-regex-not node-regexpp node-regexpu-core node-regjsgen node-regjsparser # node-remove-trailing-separator node-repeat-string node-replace-ext node-require-dir node-require-directory node-require-inject node-requires-port node-resolve node-resolve-cwd node-resolve-dir node-resolve-from node-resolve-pkg node-restore-cursor node-resumer node-retape node-retry node-rimraf node-ripemd160 node-rollup node-rollup-plugin-alias node-rollup-plugin-babel node-rollup-plugin-buble node-rollup-plugin-commonjs node-rollup-plugin-inject node-rollup-plugin-json node-rollup-plugin-node-resolve node-rollup-plugin-replace node-rollup-plugin-sourcemaps node-rollup-plugin-string node-rollup-plugin-terser node-rollup-plugin-typescript node-rollup-plugin-typescript2 node-rollup-pluginutils node-run-async node-run-queue node-rx node-safe-buffer node-sane node-schema-utils node-seedrandom node-sellside-emitter node-semver node-send node-seq node-serialize-javascript node-serve-static node-set-blocking node-setimmediate node-set-immediate-shim node-setprototypeof node-set-value node-sha.js node-shasum node-shebang-command node-shebang-regex node-shelljs node-shell-quote node-sigmund node-signal-exit node-sinclair-typebox node-sinon-chai node-slash node-slice-ansi node-socket.io-parser node-source-list-map node-source-map node-sourcemap-codec node-source-map-resolve node-source-map-support node-sparkles node-spdx-correct node-spdx-exceptions node-spdx-expression-parse node-spdx-license-ids node-split node-split2 node-split-string node-sprintf-js node-ssri node-stack-trace node-stack-utils node-static-eval node-static-module node-statuses node-stealthy-require node-stream-array node-stream-assert node-stream-browserify node-stream-combiner2 node-stream-each node-stream-http node-stream-shift node-stream-splicer node-string-decoder node-string-width node-strip-ansi node-strip-bom node-strip-eof node-strip-json-comments node-style-loader node-subarg node-superagent node-supertest # node-supports-color node-syntax-error node-tacks node-tap node-tapable node-tape node-tap-mocha-reporter node-tap-parser node-tar-fs node-tar-stream node-temp node-terser node-test node-text-encoding node-text-table node-thenby node-thenify node-thenify-all node-through node-through2 node-through2-filter node-timers-browserify node-time-stamp node-time-zone node-tinycolor node-tmatch node-tmp node-to-absolute-glob node-to-arraybuffer node-to-fast-properties node-toidentifier node-to-regex node-to-regex-range node-tough-cookie node-traverse node-ts-jest node-tslib node-tty-browserify node-turbolinks node-turndown node-type-check node-typedarray node-typedarray-to-buffer node-type-detect node-type-is node-typescript node-ua-parser-js node-uid-safe node-umd node-unc-path-regex node-undici node-unicode-canonical-property-names-ecmascript node-unicode-data node-unicode-loose-match node-unicode-match-property-ecmascript node-unicode-match-property-value-ecmascript node-unicode-property-aliases node-unicode-property-aliases-ecmascript node-unicode-property-value-aliases node-unicode-property-value-aliases-ecmascript node-union-value node-unique-filename node-unique-stream node-unique-string node-universalify node-unpipe node-unset-value node-uri-js node-uri-path node-url node-url-loader node-util node-util-deprecate node-utils-merge node-uuid node-uvu node-v8-compile-cache node-validate-npm-package-license node-validate-npm-package-name node-vary node-vhost node-vinyl node-vinyl-fs node-vinyl-sourcemaps-apply node-vlq node-vm-browserify node-watchpack node-wcwidth.js node-webpack node-webpack-merge node-webpack-sources node-whatwg-fetch node-when node-which node-wide-align node-widest-line node-wordwrap node-wrap-ansi node-wrappy node-write-file-atomic node-write-file-promise node-ws node-ws-iconv node-xml2js node-xtend node-xterm node-y18n node-yallist node-yaml node-yargs node-yargs-parser node-yarn-tool-resolve-package node-yn node-zx norm nose nose2 nototools npm npth nss-pem nss-wrapper numactl numexpr numpydoc nv-codec-headers nvptx-tools oath-toolkit objenesis objgraph ocaml ocaml-astring ocaml-base64 ocaml-bigarray-compat ocamlbuild ocaml-csexp ocaml-ctypes ocaml-fmt ocaml-fpath ocamlgraph ocaml-graphics ocaml-integers ocaml-mccs ocaml-migrate-parsetree ocaml-mmap ocaml-odoc ocaml-odoc-parser ocaml-re ocaml-result ocaml-sexplib0 ocaml-topkg ocl-icd ocplib-endian octave-control octave-signal ogdi-dfsg olefile onetbb opam opam-file-format openal-soft opencc opencore-amr opencv openexr openh264 openhpi openipmi openjade openjdk-17 openjpeg2 openmpi openni2 openpyxl opensc openslide opensp openssh openssl + openstack-pkg-tools opentest4j opentest4j-reporting optipng opus orc oscache osgi-annotation osgi-compendium osgi-core osgi-foundation-ee ounit p11-kit pacemaker package-notes pam pandas # pandoc pango1.0 pangomm papyrus paramiko parmap parso partd paste pastedeploy pastel patch patchelf patchutils path.py patsy pcapy pcaudiolib pci.ids pciutils pcre2 pcre3 pcsc-lite pegjs pentaho-reporting-flow-engine pep517 pep8 pep8-naming perl-openssl-defaults perltidy phonon php-defaults php-pear pickleshare picocli pigz pikepdf pillow pipewire pixman pkgconf pkg-js-tools pkg-kde-tools pkg-php-tools plasma-wayland-protocols platformdirs plexus-ant-factory plexus-archiver plexus-bsh-factory plexus-build-api plexus-cipher plexus-classworlds plexus-cli plexus-compiler plexus-containers plexus-i18n plexus-interactivity-api plexus-interpolation plexus-io plexus-languages ple | 2026-01-13T09:30:28 |
https://blog.nyveldt.com/post/most-popular-posts-extension-and-widget | Most Popular Posts Extension and Widget - Al Nyveldt Al Nyveldt Home About Now Most Popular Posts Extension and Widget March 03, 2008 BlogEngine.NET , Development blogengine.net , control , theme , widget A few weeks back, I read a post from Damien Guard on his favorite WordPress plugins . While reading over his list, I felt BlogEngine.NET really had them all cover and then I got the last one, WP-PostViews. The plug in as you might guess, counts, post views and has a side bar widget for displaying the most popular content. Damien writes: Another visitor-retention seeking effort. By presenting the most popular content in the sidebar I'm hoping to entice people to look at a couple of other posts and hit the magic RSS subscribe button. Well, I decided to whip up the BlogEngine.NET version which consists of an extension to count the post views and a widget to use in your theme. The extension could certainly be more elegant, but it gets the job done. The widget is a little more complex, but not much. It reads in the counters, determines the top posts, and displays them in a list. You can control how many of the top post will display in the widget with the Top property (which is expecting an integer of how may posts to display). There is also a ShowViewCount property which is expecting a true or false. If you set it to true, it will show the world the actual post counts it is generating. If you set it to false, it is only visible when you are logged in. (Note: The top posts are cached and will only update on your site every 30 minutes. No point in calculating these number too frequently.) To set this up, download the files below and unzip them. The extension file (TopPosts.cs) needs to be placed in your extensions folder which is at App_Code/Extensions. The Widget files should go in the theme you plan to add the widget to. Once you have the widget files in the theme folder, you can go ahead and add the widget to the site.master file or wherever you'd like. The correct syntax for the user control will look something like the following. [code:xml] <%@ Register src="TopPosts.ascx" TagName="topPosts" TagPrefix="uc3" %> <uc3:topPosts ID="TopPosts1" runat="server" Top="5" ShowViewCount="false" /> [/code] If you have issues installing the widget, please see the Installing the Quote of the Day widget screencast . The process is very similar. I put together a screencast on the creation of the extension and was planning to do the same for the widget, but they seem so simple and redundant, I'm not sure I'll follow through with completing them. Let me know if you are interested in these. If there is enough interest, I'll make them happen. Downloads TopPostsExtension TopPostsWidget (for BlogEngine.NET 1.3) Share on Bluesky or click the Permalink and paste anywhere. Al Nyveldt Hi. I'm a software developer from central Pennsylvania, USA. Pinned Posts Keep GitHub Copilot from going off the rails with instructions files AI Journey: From Annoying to Essential Categories AI Journey (3) Audio (7) BlogEngine.NET (60) Books (2) Business (2) Development (41) Hardware (5) iDevBlogADay (6) iOS (8) Personal (14) Screencasts (15) Software (21) Web (3) Tags ai , app store , applescript , blogengine.net , blogml , book review , code camp , codemash , codeplex , coding , community , compiling , conference , control , copilot , crystal reports , das blog , dev tools , download , extensions , family , faq , feed reading , fitness , flash drive , fun , games , google reader , idevblogaday , ios , iPad , iphone , ipod , mcp , membership , metaweblog api , microsoft , migration , mix , monotouch , monsterid , mvc , mysql , nike+ , open source , organization , patch , personal , podcasts , powershell , profittrain , provider model , razorpdf , razorpub , release , reuse , review , running , runnow , screencast , security , snippets , sourcesafe , spark , sparrow , sql server , sqlite , starter kit , subtext , subversion , sudokukids , testing , theme , training , upgrade , utilities , video , vistadb , visual studio , widget , windows live writer , xamarin Subscribe Get notified about new posts and updates. Thank you! Please check your email and click the confirmation link to complete your subscription. Subscribe Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way. © 2026 Al Nyveldt. All rights reserved. Published with QuillKit / Sign in | 2026-01-13T09:30:28 |
http://hackage.haskell.org/package/semigroupoids-5.2 | semigroupoids: Semigroupoids: Category sans id Hackage :: [Package] Search Browse What's new Upload User accounts semigroupoids : Semigroupoids: Category sans id [ bsd2 , comonads , control , library ] [ Propose Tags ] [ Report a vulnerability ] Provides a wide array of (semi)groupoids and operations for working with them. A Semigroupoid is a Category without the requirement of identity arrows for every object in the category. A Category is any Semigroupoid for which the Yoneda lemma holds. When working with comonads you often have the <*> portion of an Applicative , but not the pure . This was captured in Uustalu and Vene's "Essence of Dataflow Programming" in the form of the ComonadZip class in the days before Applicative . Apply provides a weaker invariant, but for the comonads used for data flow programming (found in the streams package), this invariant is preserved. Applicative function composition forms a semigroupoid. Similarly many structures are nearly a comonad, but not quite, for instance lists provide a reasonable extend operation in the form of tails , but do not always contain a value. Ideally the following relationships would hold: Foldable ----> Traversable <--- Functor ------> Alt ---------> Plus Semigroupoid | | | | | v v v v v Foldable1 ---> Traversable1 Apply --------> Applicative -> Alternative Category | | | | v v v v Bind ---------> Monad -------> MonadPlus Arrow Apply, Bind, and Extend (not shown) give rise the Static, Kleisli and Cokleisli semigroupoids respectively. This lets us remove many of the restrictions from various monad transformers as in many cases the binding operation or <*> operation does not require them. Finally, to work with these weaker structures it is beneficial to have containers that can provide stronger guarantees about their contents, so versions of Traversable and Foldable that can be folded with just a Semigroup are added. [ Skip to Readme ] Modules [ Index ] Data Bifunctor Data.Bifunctor.Apply Functor Data.Functor.Alt Data.Functor.Apply Data.Functor.Bind Data.Functor.Bind.Class Data.Functor.Bind.Trans Data.Functor.Extend Data.Functor.Plus Data.Groupoid Data.Isomorphism Semigroup Data.Semigroup.Bifoldable Data.Semigroup.Bitraversable Data.Semigroup.Foldable Data.Semigroup.Foldable.Class Data.Semigroup.Traversable Data.Semigroup.Traversable.Class Data.Semigroupoid Data.Semigroupoid.Dual Data.Semigroupoid.Ob Data.Semigroupoid.Static Traversable Data.Traversable.Instances Flags Manual Flags Name Description Default containers You can disable the use of the containers package using `-f-containers`. Disabing this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. Enabled contravariant You can disable the use of the contravariant package using `-f-contravariant`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. If disabled we will not supply instances of Contravariant Enabled distributive You can disable the use of the distributive package using `-f-distributive`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. If disabled we will not supply instances of Distributive Enabled doctests You can disable testing with doctests using `-f-doctests`. Enabled comonad You can disable the use of the comonad package using `-f-comonad`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. If disabled we will not supply instances of Comonad Enabled tagged You can disable the use of the tagged package using `-f-tagged`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. Enabled Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info Downloads semigroupoids-5.2.tar.gz [ browse ] (Cabal source package) Package description ( revised from the package) Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'. Maintainer's Corner Package maintainers EdwardKmett , EricMertens , ryanglscott For package maintainers and hackage trustees edit package information Candidates 5.2.1 Versions [ RSS ] 1.0.0 , 1.1.0 , 1.1.1 , 1.1.2 , 1.1.3 , 1.2.0 , 1.2.1 , 1.2.2 , 1.2.2.1 , 1.2.2.2 , 1.2.2.3 , 1.2.2.4 , 1.2.4 , 1.2.5 , 1.2.6 , 1.2.6.1 , 1.2.6.2 , 1.3 , 1.3.1 , 1.3.1.1 , 1.3.1.2 , 1.3.2 , 1.3.2.1 , 1.3.3 , 1.3.4 , 3.0 , 3.0.0.1 , 3.0.0.2 , 3.0.1 , 3.0.2 , 3.0.3 , 3.1 , 4.0 , 4.0.1 , 4.0.2 , 4.0.2.1 , 4.0.3 , 4.0.4 , 4.2 , 4.3 , 4.5 , 5 , 5.0.0.1 , 5.0.0.2 , 5.0.0.3 , 5.0.0.4 , 5.0.1 , 5.1 , 5.2 , 5.2.1 , 5.2.2 , 5.3 , 5.3.1 , 5.3.2 , 5.3.3 , 5.3.4 , 5.3.5 , 5.3.6 , 5.3.7 , 6 , 6.0.0.1 , 6.0.1 , 6.0.2 ( info ) Change log CHANGELOG.markdown Dependencies base (>=4.3 && <4.11) , base-orphans (>=0.5.4 && <1) , bifunctors (>=5 && <6) , comonad (>=4.2.6 && <6) , containers (>=0.3 && <0.6) , contravariant (>=0.2.0.1 && <2) , distributive (>=0.2.2 && <1) , generic-deriving (>=1.11 && <1.12) , ghc-prim , semigroups (>=0.8.3.1 && <1) , tagged (>=0.8.5 && <1) , transformers (>=0.2 && <0.6) , transformers-compat (>=0.5 && <0.6) [ details ] Tested with ghc ==7.4.2, ghc ==7.6.3, ghc ==7.8.4, ghc ==7.10.3, ghc ==8.0.2, ghc ==8.2.1 License BSD-3-Clause Copyright Copyright (C) 2011-2015 Edward A. Kmett Author Edward A. Kmett Maintainer Edward A. Kmett <ekmett@gmail.com> Uploaded by ryanglscott at 2017-04-19T15:15:10Z Revised Revision 3 made by ryanglscott at 2019-05-08T13:17:11Z Stability provisional --> Category Control , Comonads Home page http://github.com/ekmett/semigroupoids Bug tracker http://github.com/ekmett/semigroupoids/issues Source repo head: git clone git://github.com/ekmett/semigroupoids.git Distributions Arch: 6.0.1 , Debian: 5.3.4 , Fedora: 6.0.1 , FreeBSD: 5.0.0.3 , LTSHaskell: 6.0.1 , NixOS: 6.0.1 , Stackage: 6.0.2 , openSUSE: 6.0.1 Reverse Dependencies 216 direct, 9047 indirect [ details ] Downloads 309284 total (292 in the last 30 days) Rating 2.5 (votes: 9) [estimated by Bayesian average ] Your Rating λ λ λ Status Docs available [ build log ] Last success reported on 2017-04-19 [ all 1 reports ] Readme for semigroupoids-5.2 [ back to package description ] semigroupoids A semigroupoid is a Category without id . Contact Information Contributions and bug reports are welcome! Please feel free to contact me through github or on the #haskell IRC channel on irc.freenode.net. -Edward Kmett Produced by hackage and Cabal 3.16.1.0. | 2026-01-13T09:30:28 |
http://hackage.haskell.org/package/semigroupoids-1.2.5/docs/Data-Functor-Bind-Trans.html | Data.Functor.Bind.Trans Source Contents Index semigroupoids-1.2.5: Haskell 98 semigroupoids: Category sans id Portability portable Stability provisional Maintainer Edward Kmett <ekmett@gmail.com> Data.Functor.Bind.Trans Description Synopsis class MonadTrans t => BindTrans t where liftB :: Bind b => b a -> t b a Documentation class MonadTrans t => BindTrans t where Source A subset of monad transformers can transform any Bind as well. Methods liftB :: Bind b => b a -> t b a Source Instances BindTrans IdentityT ( Semigroup w, Monoid w) => BindTrans ( WriterT w) ( Semigroup w, Monoid w) => BindTrans ( WriterT w) BindTrans ( StateT s) BindTrans ( StateT s) BindTrans ( ReaderT e) BindTrans ( ContT r) ( Semigroup w, Monoid w) => BindTrans ( RWST r w s) ( Semigroup w, Monoid w) => BindTrans ( RWST r w s) Produced by Haddock version 2.9.2 | 2026-01-13T09:30:28 |
http://hackage.haskell.org/package/semigroupoids-5.3.5 | semigroupoids: Semigroupoids: Category sans id Hackage :: [Package] Search Browse What's new Upload User accounts semigroupoids : Semigroupoids: Category sans id [ bsd2 , comonads , control , library ] [ Propose Tags ] [ Report a vulnerability ] Provides a wide array of (semi)groupoids and operations for working with them. A Semigroupoid is a Category without the requirement of identity arrows for every object in the category. A Category is any Semigroupoid for which the Yoneda lemma holds. When working with comonads you often have the <*> portion of an Applicative , but not the pure . This was captured in Uustalu and Vene's "Essence of Dataflow Programming" in the form of the ComonadZip class in the days before Applicative . Apply provides a weaker invariant, but for the comonads used for data flow programming (found in the streams package), this invariant is preserved. Applicative function composition forms a semigroupoid. Similarly many structures are nearly a comonad, but not quite, for instance lists provide a reasonable extend operation in the form of tails , but do not always contain a value. Ideally the following relationships would hold: Foldable ----> Traversable <--- Functor ------> Alt ---------> Plus Semigroupoid | | | | | v v v v v Foldable1 ---> Traversable1 Apply --------> Applicative -> Alternative Category | | | | v v v v Bind ---------> Monad -------> MonadPlus Arrow Apply, Bind, and Extend (not shown) give rise the Static, Kleisli and Cokleisli semigroupoids respectively. This lets us remove many of the restrictions from various monad transformers as in many cases the binding operation or <*> operation does not require them. Finally, to work with these weaker structures it is beneficial to have containers that can provide stronger guarantees about their contents, so versions of Traversable and Foldable that can be folded with just a Semigroup are added. [ Skip to Readme ] Modules [ Index ] [ Quick Jump ] Data Bifunctor Data.Bifunctor.Apply Functor Data.Functor.Alt Data.Functor.Apply Data.Functor.Bind Data.Functor.Bind.Class Data.Functor.Bind.Trans Data.Functor.Extend Data.Functor.Plus Data.Groupoid Data.Isomorphism Semigroup Data.Semigroup.Bifoldable Data.Semigroup.Bitraversable Data.Semigroup.Foldable Data.Semigroup.Foldable.Class Data.Semigroup.Traversable Data.Semigroup.Traversable.Class Data.Semigroupoid Data.Semigroupoid.Dual Data.Semigroupoid.Ob Data.Semigroupoid.Static Traversable Data.Traversable.Instances Flags Manual Flags Name Description Default containers You can disable the use of the containers package using `-f-containers`. Disabing this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. Enabled contravariant You can disable the use of the contravariant package using `-f-contravariant`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. If disabled we will not supply instances of Contravariant Enabled distributive You can disable the use of the distributive package using `-f-distributive`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. If disabled we will not supply instances of Distributive Enabled comonad You can disable the use of the comonad package using `-f-comonad`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. If disabled we will not supply instances of Comonad Enabled tagged You can disable the use of the tagged package using `-f-tagged`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. Enabled unordered-containers You can disable the use of the `unordered-containers` package (and also its dependency hashable ) using `-f-unordered-containers`. Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. Enabled Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info Downloads semigroupoids-5.3.5.tar.gz [ browse ] (Cabal source package) Package description ( revised from the package) Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'. Maintainer's Corner Package maintainers EdwardKmett , EricMertens , ryanglscott For package maintainers and hackage trustees edit package information Candidates 5.2.1 Versions [ RSS ] 1.0.0 , 1.1.0 , 1.1.1 , 1.1.2 , 1.1.3 , 1.2.0 , 1.2.1 , 1.2.2 , 1.2.2.1 , 1.2.2.2 , 1.2.2.3 , 1.2.2.4 , 1.2.4 , 1.2.5 , 1.2.6 , 1.2.6.1 , 1.2.6.2 , 1.3 , 1.3.1 , 1.3.1.1 , 1.3.1.2 , 1.3.2 , 1.3.2.1 , 1.3.3 , 1.3.4 , 3.0 , 3.0.0.1 , 3.0.0.2 , 3.0.1 , 3.0.2 , 3.0.3 , 3.1 , 4.0 , 4.0.1 , 4.0.2 , 4.0.2.1 , 4.0.3 , 4.0.4 , 4.2 , 4.3 , 4.5 , 5 , 5.0.0.1 , 5.0.0.2 , 5.0.0.3 , 5.0.0.4 , 5.0.1 , 5.1 , 5.2 , 5.2.1 , 5.2.2 , 5.3 , 5.3.1 , 5.3.2 , 5.3.3 , 5.3.4 , 5.3.5 , 5.3.6 , 5.3.7 , 6 , 6.0.0.1 , 6.0.1 , 6.0.2 ( info ) Change log CHANGELOG.markdown Dependencies base (>=4.3 && <4.16) , base-orphans (>=0.8.4 && <1) , bifunctors (>=5.5.9 && <6) , comonad (>=5.0.8 && <6) , containers (>=0.3 && <0.7) , contravariant (>=1.5.3 && <2) , distributive (>=0.5.2 && <1) , generic-deriving (>=1.14 && <1.15) , ghc-prim , hashable (>=1.2.5.0 && <1.4) , semigroups (>=0.18.5 && <1) , tagged (>=0.8.6.1 && <1) , template-haskell (>=0.2.5.0) , transformers (>=0.3 && <0.6) , transformers-compat (>=0.5 && <0.8) , unordered-containers (>=0.2.8.0 && <0.3) [ details ] Tested with ghc ==7.0.4, ghc ==7.2.2, ghc ==7.4.2, ghc ==7.6.3, ghc ==7.8.4, ghc ==7.10.3, ghc ==8.0.2, ghc ==8.2.2, ghc ==8.4.4, ghc ==8.6.5, ghc ==8.8.3, ghc ==8.10.1 License BSD-3-Clause Copyright Copyright (C) 2011-2015 Edward A. Kmett Author Edward A. Kmett Maintainer Edward A. Kmett <ekmett@gmail.com> Uploaded by ryanglscott at 2020-12-31T12:03:45Z Revised Revision 2 made by phadej at 2021-11-16T15:54:22Z Stability provisional --> Category Control , Comonads Home page http://github.com/ekmett/semigroupoids Bug tracker http://github.com/ekmett/semigroupoids/issues Source repo head: git clone git://github.com/ekmett/semigroupoids.git Distributions Arch: 6.0.1 , Debian: 5.3.4 , Fedora: 6.0.1 , FreeBSD: 5.0.0.3 , LTSHaskell: 6.0.1 , NixOS: 6.0.1 , Stackage: 6.0.2 , openSUSE: 6.0.1 Reverse Dependencies 216 direct, 9047 indirect [ details ] Downloads 309284 total (292 in the last 30 days) Rating 2.5 (votes: 9) [estimated by Bayesian average ] Your Rating λ λ λ Status Docs uploaded by user Build status unknown [ no reports yet ] Readme for semigroupoids-5.3.5 [ back to package description ] semigroupoids A semigroupoid is a Category without id . Contact Information Contributions and bug reports are welcome! Please feel free to contact me through github or on the #haskell IRC channel on irc.freenode.net. -Edward Kmett Produced by hackage and Cabal 3.16.1.0. | 2026-01-13T09:30:28 |
https://yarnpkg.com/getting-started/install | Installation | Yarn Skip to main content Yarn Get Started Features CLI Configuration Advanced Blog API master (4.12.0-dev) master (4.12.0-dev) 3.8.7 1.22.22 Discord GitHub Search Starting with Yarn Introduction Installation Usage Migrating from 1.x / npm Benefits Step-by-step To go further Good to Know Corepack Editor SDKs Questions & Answers Recipes Starting with Yarn Installation On this page Installation Install Corepack , an intermediary tool that will let you configure your package manager version on a per-project basis: npm install -g corepack Then initialize a new project: yarn init - 2 Updating Yarn Any time you'll want to update Yarn to the latest version, just run: yarn set version stable yarn install Yarn will then configure your project to use the most recent stable binary. tip Yarn also frequently ships Release Candidate builds. Use yarn set version canary should you need a feature not released on the stable channel yet. Those builds are very stable, the only difference with the regular channel being a more staggered migration between major as we implement new breaking changes. Installing the latest build fresh from master You may want to test a version of Yarn so recent it hasn't been released in a Release Candidate yet, or even not merged. The following command will clone, build, and install Yarn in your project, straight from our repository: yarn set version from sources It accepts a --branch flag which you can use to test specific PRs: yarn set version from sources -- branch 1211 warning Unlike the stable and canary channels, the yarn set version from sources command can't leverage Corepack and will need to store the Yarn binary inside the .yarn/releases folder and reference it from your project's .yarnrc.yml file. Edit this page Previous Introduction Next Usage Updating Yarn Installing the latest build fresh from master Copyright © 2026 Yarn Contributors, Inc. Built with Docusaurus. | 2026-01-13T09:30:28 |
https://qiita.com/official-campaigns/ai-dev-team/articles | AI x Dev x Team - 記事一覧ページ - Qiita Collaboration menu Menu home ホーム description 記事 edit_square 記事投稿キャンペーン open_in_new Findy Team+ bookmark すべて token AI devices 開発生産性 mode_comment インタビュー 17 件の記事 1 ~ 12 件目を表示中 mode_comment インタビュー 2025-09-30 目まぐるしく変わる「生成AI」に対してチームでどう協働する? ファインディ× Qiita マネージャー対談! by Qiita Zine devices 開発生産性 2025-08-21 「開発生産性」に関する実態調査レポート概説#2 開発生産性への意外な好印象 ── アジャイル実践者59.6%が前向きな理由 by Findy Tech Blog devices 開発生産性 2025-08-20 変更リードタイムとは?開発速度の測定と改善について解説 by Findy Team+ ブログ(Findy Team+ Lab) devices 開発生産性 2025-08-18 「開発生産性」に関する実態調査レポート概説#1 日本の開発現場の「リアル」を数字で見る ── 798名の声から浮かび上がる衝撃の実態 by Findy Tech Blog token AI 2025-08-08 リードタイム45%短縮・スループット82%向上。SansanがFindy Team+で証明した「AIレビューの投資対効果」 by Findy Team+ ブログ(Findy Team+ Lab) token AI 2025-08-08 アウトプット量1.5倍に増加! ファインディが取り組む、AI導入・活用の効果をFindy Team+で最大化するデータ活用戦略 by Findy Team+ ブログ(Findy Team+ Lab) token AI 2025-08-07 個人の生産性250%向上、チームのキャパシティは1.5倍へ。DMM.comがFindy Team+で解き明かす「AIの投資対効果」 by Findy Team+ ブログ(Findy Team+ Lab) devices 開発生産性 2025-07-09 目標設定の勘所。事業とチームの“距離感”を埋める自分ごと化とは by Findy Team+ ブログ(Findy Team+ Lab) devices 開発生産性 2025-07-01 ソフトウェア開発における「開発生産性」に関する実態調査レポート by Findy コーポレートサイト token AI 2025-06-30 【IT/Webエンジニア調査】生成AI技術・ツールの普及をきっかけに3人に2人のエンジニアが今後のキャリアを検討 by Findy コーポレートサイト devices 開発生産性 2025-05-30 予定通りに終わらないスプリントの解決方法 by Findy Team+ ブログ(Findy Team+ Lab) devices 開発生産性 2025-04-30 アウトプット量を増やすには?開発のボトルネックを解消するコードレビュー改善 by Findy Team+ ブログ(Findy Team+ Lab) 1 2 navigate_next 1 / 2 Page 1 of 2 navigate_next How developers code is here. © 2011- 2026 Qiita Inc. Guide & Help About Terms Privacy Guideline Media Kit Feedback/Requests Help Advertisement Contents Release Note Official Event Official Column Advent Calendar Qiita Tech Festa Qiita Award Engineer White Paper API Official Accounts @Qiita @qiita_milestone @qiitapoi Facebook YouTube Podcast Our service Qiita Team Qiita Zine Official Shop Company About Us Careers Qiita Blog News Release | 2026-01-13T09:30:28 |
https://qiita.com/login?callback_action=login_or_signup&redirect_to=%2Fabout&realm=qiita | Login - Qiita Log in to Qiita Log in with GitHub Log in with Google Log in with X(Twitter) There may be restrictions on X(Twitter) login. Please use other login methods together. If you do not have a Qiita account, sign up in 30 seconds. Forgot Password? How developers code is here. © 2011-2026 Qiita Inc. Guide & Help About Terms Privacy Guideline Design Guideline Feedback Help Advertisement Contents Release Note Official Event Official Column Advent Calendar Qiita Award API SNS @Qiita @qiita_milestone @qiitapoi Facebook YouTube Podcast Our service Qiita Team Qiita Zine Official Shop Company About Us Careers Qiita Blog | 2026-01-13T09:30:28 |
https://yarnpkg.com/features/security#audits | Security | Yarn Skip to main content Yarn Get Started Features CLI Configuration Advanced Blog API master (4.12.0-dev) master (4.12.0-dev) 3.8.7 1.22.22 Discord GitHub Search Cache strategies Catalogs Constraints Extensibility Install modes Package patching Performances Plug'n'Play Release Workflow Scripting Security Workspaces Security On this page Security Audits Yarn doesn't run audits by default when running yarn install , as this should rather be performed in a cron task. You can however perform audits whenever you want by running yarn npm audit . info Our implementation has a couple of differences with the npm one. Like most other Yarn commands, yarn npm audit , by default, only applies on the direct dependencies from the current workspace. To get a report on the whole project, use the -A,--all and/or -R,--recursive flags. tip You can exclude your devDependencies (and their transitive dependencies) from the report by running the command with --environment production . Hardened mode The hardened mode can be set (or disabled) using either the enableHardenedMode setting or by defining YARN_ENABLE_HARDENED_MODE=1|0 in your environment variables, but in most cases you won't even have to think about it - the hardened mode is enabled by default when Yarn detects it runs in a pull request from a public GitHub repository. Under this mode, Yarn will automatically enable the --check-resolutions and --refresh-lockfile flags when running yarn install , which should protect you against most attacks caused by lockfile poisoning , at the cost of a little bit of install speed. danger The hardened mode makes installs significantly slower as Yarn has to query the registry to make sure the information contained in the lockfile are accurate. If your CI pipeline runs multiple jobs, we recommend disabling the hardened mode in all but one of them so as to limit the performance impact. Edit this page Previous Scripting Next Workspaces Audits Hardened mode Copyright © 2026 Yarn Contributors, Inc. Built with Docusaurus. | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/search/label/latex | don't count on finding me: latex skip to main | skip to sidebar don't count on finding me Showing posts with label latex . Show all posts Showing posts with label latex . Show all posts Sunday, January 12, 2014 Testing LaTeX with MathJax $3_{5}$ $$42^{25}$$ extensions: ["tex2jax.js"], jax: ["input/TeX", "output/HTML-CSS"], Does not work But this: <script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script> <script type='math/tex; mode=display'> \{ 0, 1, 2 \} </script> Results in something pretty: Posted by heisenbug at 6:45 PM No comments: Labels: latex , mathjax , maths Older Posts Home Subscribe to: Comments (Atom) Blog Archive ▼  2022 (1) ▼  February (1) Pattern musings ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://blog.nyveldt.com/tag/xamarin | Home - Al Nyveldt Al Nyveldt Home About Now iOS enterprise distribution with Xamarin Jul 08, 2016 Click to read more... Checking out Xamarin Insights Dec 06, 2015 One of the really cool things that came out with Xamarin 4 is Xamarin Insights. Xamarin Insights is an incredibly easy way to get detailed real time app monitoring in your apps. Al Nyveldt Hi. I'm a software developer from central Pennsylvania, USA. Pinned Posts Keep GitHub Copilot from going off the rails with instructions files AI Journey: From Annoying to Essential Categories AI Journey (3) Audio (7) BlogEngine.NET (60) Books (2) Business (2) Development (41) Hardware (5) iDevBlogADay (6) iOS (8) Personal (14) Screencasts (15) Software (21) Web (3) Tags ai , app store , applescript , blogengine.net , blogml , book review , code camp , codemash , codeplex , coding , community , compiling , conference , control , copilot , crystal reports , das blog , dev tools , download , extensions , family , faq , feed reading , fitness , flash drive , fun , games , google reader , idevblogaday , ios , iPad , iphone , ipod , mcp , membership , metaweblog api , microsoft , migration , mix , monotouch , monsterid , mvc , mysql , nike+ , open source , organization , patch , personal , podcasts , powershell , profittrain , provider model , razorpdf , razorpub , release , reuse , review , running , runnow , screencast , security , snippets , sourcesafe , spark , sparrow , sql server , sqlite , starter kit , subtext , subversion , sudokukids , testing , theme , training , upgrade , utilities , video , vistadb , visual studio , widget , windows live writer , xamarin Subscribe Get notified about new posts and updates. Thank you! Please check your email and click the confirmation link to complete your subscription. Subscribe Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way. © 2026 Al Nyveldt. All rights reserved. Published with QuillKit / Sign in | 2026-01-13T09:30:28 |
https://www.mariahammerstrom.com | aria Hammerstrom - astrophysics, design, writing, and science communication Maria Hammerstrom About me I am Maria Hammerstrøm from Oslo, Norway. I am a graphic designer turned astrophysicist turned science communicator. I am passionate about astrophysics, design, writing, and science communication. I have an astronomy blog in Norwegian. Work Experience 2017–current Norwegian contact person & translator (part-time) (European Southern Observatory) I am responsible for the Norwegian ESO website. I translate ESO’s astronomy news to Norwegian and function as a contact person for ESO Norway. 2017–current Space Columnist (Norwegian newspaper Dagbladet) 2016–current Translator & Astronomy Consultant (part-time) (Norwegian magazine Ny Vitenskap) Using my scientific background and love for language and grammar, I do translation and consulting work for the Norwegian science magazine Ny Vitenskap (eng. New Science). 2016–current Project Coordinator (part-time) (Norwegian Language Council) I am coordinating a two-year project where the aim is to create an online Norwegian-English Astronomical dictionary for the Norwegian Language Council’s terminology database. 2016–current Managing editor (part-time) (Norwegian physics magazine Fra Fysikkens Verden) 2015–current Graphic Designer (part-time) (The Science Library, University of Oslo, Norway) I design posters and info screens for all the events at the Science Library, typically popular science talks. The job lets me combine my love for science and graphic design, and hopefully create more interest in the events. 2014 Webmaster (part-time/temporary) (Faculty of Mathematics & Natural Sciences, University of Oslo, Norway) 2011–2012 Graphic Designer (Melkeveien Designkontor, Oslo, Norway) 2011 Graphic Designer (Tank Design, Oslo, Norway) 2009–2010 Graphic Designer (Studio 3, Oslo, Norway) Education 2015–2017 Master in Astrophysics (University of Oslo) Subjects covered: Radiative Processes in Astrophysics, Cosmology & Extragalactic Astronomy, Computational Physics, Cosmology II, Statistical Methods & Applications, Science Communication & Journalism. Master thesis: Establishing the host galaxy contribution to spectroscopic data of the nuclear emission of active galactic nuclei 2012–2015 Bachelor of Science, Astrophysics (University of Oslo) Subjects covered: Calculus, Vector Calculus, Linear Algebra, Scientific Programming with Python, Classical Mechanics, Electrodynamics, Introduction to Astrophysics, Electromagnetism, Waves & Oscillations, Quantum Physics, Observational Astronomy, Thermodynamics & Statistical Physics, Introduction to Applied Statistics, Cosmology I, Astrophysical Plasma & the Interior of Stars. 2007–2010 Diploma in Graphic Design (Westerdals School of Communication) Subjects covered: Typography, Branding, Packaging, Editorial, Illustration, Presentation. Research Experience 2015 Student Fellowship in Observational Astronomy (Australian Astronomical Observatory) I spent two months at the AAO involved with the Huntsman Telephoto Array project, a project currently in development that will use an array of commercially available Canon lenses to observe faint structures, such as dwarf galaxies. I did the ground work on a numerical code to model light pollution projected onto the night sky using satellite data, later to be subtracted from astronomy images to better see those faint structures. I also designed a logo for the Huntsman Telephoto Array. 2014 Summer Program in Observational Astronomy (Mount Wilson Observatory) The 2-week program was divided into two parts: The first week we learned different observational techniques (photometry, spectroscopy, imaging) and got to see a variety of day time and night time telescopes at Mount Wilson Observatory. The second week we did a research project of our own, using a 16” telescope. Research project: I photographed galaxy M31, as well as a range of star types to make my own color index so I could determine which star populations are present in M31. Read more on the Astrophysics page. Internships 2014 Graphic Designer & Science Writer (Institute for Theoretical Astrophysics, University of Oslo, Norway) I spend the summer working with the webmaster at the institute. My job was mainly to help maintaining and adding new content to the website. The website contains, among other things, educational pages about the universe, the solar system and space exploration that were lacking in content. I wrote long introductory articles about the universe, galaxies and space exploration, as well as in-depth articles about the exploration of the Moon and several of the planets for these pages, as well as news articles for the website about new research results achieved, as well as goings-on at the institute (all in Norwegian). 2013 Graphic Designer & Science Writer (EU Universe Awareness, Leiden, The Netherlands) At EU-UNAWE I was writing and designing educational resources about astronomy for kids, covering subjects such as black holes, the Earth and amateur astronomy. Afterwards I have been translating their Space Scoops (space news for kids) into Norwegian and will hopefully do more projects with them in the future. 2011 Graphic Designer (Proverb, Boston, U.S.) 2009 Graphic Designer (Mission Design, Oslo, Norway) 2008 Graphic Designer (Tank Design, Oslo, Norway) Software Skills Programming: Python**,C++**, IDL*, MATLAB*, Fortran*, R, Minitab*, HTML*, CSS* Office: Word*, PowerPoint*, Excel* Design: InDesign**, Photoshop, Illustrator, iBooks Author* Other: LaTex Astrophysics Areas of special interest: Galaxies, galaxy formation and Supermassive Black Holes. Australian Astronomical Observatory (2015) More about this soon! Mount Wilson Observatory (2014) Areas of special interest: Galaxies, galaxy formation and Supermassive Black Holes. Australian Astronomical Observatory (2015) More about this soon! Mount Wilson Observatory (2014) I also photographed 6 stars of different spectral classes to make my own color index for the DSLR camera so that I could determine which star populations are present at various locations in M31. I split the star images into R, G and B only images and measured the color index of each star, [B–G], [G–R] and [B–R], shown in the figure to the right. Then I split the image of the galaxy into R, G and B only images, chose a small measuring area of 41 x 33 pixels and measured the intensity in 10 locations in the galaxy for the different filters, resultings in values Gal_B (blue) and Gal_G (green). I also measured a completely dark area of the image so that I could subtract the sky background, resulting in values Sky_B, and Sky_G. Then the [B–G] color index for the different locations in the galaxy could be found by: The values found at different locations in the galaxy is shown in the image to the right (click on it to see a larger version). We can then locate these values in the plot to see what kind of stars are present. Doing this we see that the core with [B–G] = 0.36 consist of F stars, the edge of the core and the mid disc has A stars, while the outer disc has B stars. This means the core is redder and the outer edges are bluer, consistent with what one would expect. The spectral types are in reality shifted more towards the red than what I found with this simple procedure, using rather few reference stars. We also photographed M57, known as the Ring Nebula (left) in three filters, took the spectra of stars of various stellar classes (I was responsible for the G-star Eta Boötis and the M-star Lambda Draconis) and observed the variations in intensity from a variable star, RR Lyrae. Science Communication Universe Awareness Universe Awareness (UNAWE) is an international programme that uses the beauty and grandeur of the Universe to inspire children aged 4-10 years. The programme uses astronomy to cultivate a sense of perspective, foster a global citizenship and stimulate interest in science at a crucial age in a child’s development. I worked at the international UNAWE office in the Netherlands during the summer of 2013 as a graphic designer and science writer, combining my skills in graphic design and knowledge of astronomy. I created three new educational resources for them: The Awesome Amateur Astronomer (website) The website The Awesome Amateur Astronomer - 10 Steps To Get You Started In Astronomy is a 10-step introduction to amateur astronomy that covers all the different aspects of astronomy; from observing to researching, analysing, building, publishing and more. It’s a great place to go if you’re interested in astronomy, but don’t know where to start. Into A Black Hole (book) Into A Black Hole is a short, illustrated book about black holes and what happens if you happen to get too close to one of them. You’ll find the whole book below. But you can also get is as a PDF or as an iBook on iTunes (for iPads) if you’d like - and it’s free! Earth Ball Activity Book (book) The Eart Ball Activity Book contains 50 interactive, hands-on activities for children aged between 6 and 12 years, that can be put into practise in schools, playgrounds or at home. It is designed to be used with an inflateable Earth Ball, and it is brim-full of ideas about how to use this tool for teaching astronomy, geography, environmental awareness, global citizenship and even biology. I still do work for UNAWE as a Student Ambassador. I am responsible for translating their weekly Space Scoops into Norwegian. Blogging Since April 2013 I have been keeping a blog (in Norwegian) where I write about my experiences studying astrophysics and about astronomy and physics in general. It is a way to show that a girl can excel in the natural sciences, as well as practicing my science writing skills. Visit the blog at www.astromaria.no! Contact Contact me about anything: Questions, inquiries, collaborations or just to say hello :) You can e-mail me at hello[at]mariahammerstrom.com Social https://twitter.com/AstroMariaH https://www.linkedin.com/in/mariahammerstrom | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/search/label/mathjax | don't count on finding me: mathjax skip to main | skip to sidebar don't count on finding me Showing posts with label mathjax . Show all posts Showing posts with label mathjax . Show all posts Sunday, January 12, 2014 Testing LaTeX with MathJax $3_{5}$ $$42^{25}$$ extensions: ["tex2jax.js"], jax: ["input/TeX", "output/HTML-CSS"], Does not work But this: <script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script> <script type='math/tex; mode=display'> \{ 0, 1, 2 \} </script> Results in something pretty: Posted by heisenbug at 6:45 PM No comments: Labels: latex , mathjax , maths Older Posts Home Subscribe to: Comments (Atom) Blog Archive ▼  2022 (1) ▼  February (1) Pattern musings ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://tests.reproducible-builds.org/debian/forky/index_dd-list.html#hazelsct@debian.org | Maintainers of unreproducible packages in forky Debian navigation Change suite/architecture Tested suites: unstable forky trixie bookworm experimental Test results statistics Results for forky/amd64 Unreproducible packages: with notes without notes Other package states: package sets Recently tested packages: last 24h last 48h all tested packages packages with .buildinfo files packages without .buildinfo files Scheduled for amd64 Maintainers of in forky Reproducible Debian overview Development dashboard Past releases dashboard Categorized issues Bugs filed Variations tested Packages with notifications enabled ⚑ Repositories overview Backend related Broken pieces Documentation (eg. on manual scheduling) Performance stats Health monitoring node overview job overview daily graphs weekly graphs monthly graphs yearly graphs The Reproducible Builds project reproducible-builds.org Reproducible Builds - Docs • News Reproducible Builds in Debian - Wiki SOURCE_DATE_EPOCH specification reproduce.debian.net aims for 100% bit-for-bit identical rebuilds of Debian other CI tests Maintainers of unreproducible packages in forky The following maintainers and uploaders are listed for packages in forky which have built unreproducibly. Please note that the while the link always points to the amd64 version, it's possible thatthe unreproducibility is only present in another architecture(s). "Adam C. Powell, IV" <hazelsct@debian.org> ¶ med-fichier (U) mpich (U) mumps (U) petsc (U) slepc (U) spooles (U) A Mennucc1 <mennucc1@debian.org> ¶ mplayer (U) A. Maitland Bottoms <bottoms@debian.org> ¶ gnuradio gpredict (U) gr-dab (U) gr-fosphor gr-limesdr (U) gr-radar libiio uhd Aaron M. Ucko <ucko@debian.org> ¶ fltk1.3 (U) fltk1.4 (U) ncbi-blast+ (U) Abdelhakim Qbaich <abdelhakim@qbaich.com> ¶ gambc Abou Al Montacir <abou.almontacir@sfr.fr> ¶ castle-game-engine (U) fp-units-win (U) Adam Borowski <kilobyte@angband.pl> ¶ cardo (U) valgrind + (U) Adam Majer <adamm@zombino.com> ¶ qtcreator (U) Adrian Vondendriesch <adrian.vondendriesch@credativ.de> ¶ pacemaker (U) Aggelos Avgerinos <evaggelos.avgerinos@gmail.com> ¶ xmobar (U) Agustin Henze <tin@debian.org> ¶ yapsy (U) Ahmad Khalifa <ahmad@khalifa.ws> ¶ openrgb Akira Mitsui <murase.syuka@gmail.com> ¶ mruby (U) Alan M Varghese (NyxTrail) <alan@digistorm.in> ¶ hyprland (U) Alastair McKinstry <mckinstry@debian.org> ¶ cctools cdo (U) eccodes (U) ecflow (U) emoslib # (U) fdb (U) ferret-vis (U) fiat-ecmwf (U) fortran-fpm (U) fortran-jonquil (U) fortran-regex + (U) fortran-testdrive (U) hdf-eos4 (U) hdf-eos5 (U) iirish libtool metkit (U) mpich (U) odc (U) openmpi (U) pnetcdf + (U) pyferret (U) python-escript (U) python-xarray (U) silo-llnl (U) Alberto Garcia <berto@igalia.com> ¶ webkit2gtk (U) wpewebkit (U) Alberto Leiva Popper <ydahhrk@gmail.com> ¶ jool Alberto Luaces Fernández <aluaces@udc.es> ¶ yasnippet (U) Albin Tonnerre <lutin@debian.org> ¶ efl (U) AlcinaSharon <alcinasharon@gmail.com> ¶ go-qrcode (U) Alec Leamas <leamas.alec@gmail.com> ¶ libcxx-serial opencpn Aleksey Kravchenko <rhash.admin@gmail.com> ¶ libpff (U) Alessandro Ghedini <ghedo@debian.org> ¶ ecasound (U) valgrind + Alessio Treglia <alessio@debian.org> ¶ kmetronome (U) libsoxr (U) schism (U) Alex Myczko <tar@debian.org> ¶ 3d-ascii-viewer-c cheesecutter (U) far2l fonts-atarist # (U) fonts-topaz-unicode (U) ftxui (U) furnace (U) lft lie mdnsd netsurf (U) schism (U) shotcut + (U) zytrax (U) Alexander Kjäll <alexander.kjall@gmail.com> ¶ rust-sequoia-keystore-server (U) rust-sequoia-sq (U) Alexander Ponyatykh <lazyranma@gmail.com> ¶ g15daemon paexec Alexander Wirt <formorer@debian.org> ¶ icinga2 (U) Alexandre Dantas <eu@alexdantas.net> ¶ nsnake (U) Alexandre Detiste <tchet@debian.org> ¶ contourpy (U) ftgl (U) m2crypto (U) matplotlib (U) sphinx-panels (U) Alexandre Marie <alexandre.marie@synchrotron-soleil.fr> ¶ jupyter-sphinx (U) Alexandre Mestiashvili <mestia@debian.org> ¶ bibtexparser + (U) Alexandre Viau <aviau@debian.org> ¶ fonts-fork-awesome (U) golang-github-jonas-p-go-shp + (U) golang-github-roaringbitmap-roaring + (U) golang-github-tjfoc-gmsm + (U) Alkis Georgopoulos <alkisg@gmail.com> ¶ ltsp (U) Alois Schlögl <alois.schloegl@gmail.com> ¶ biosig (U) Aloïs Micard <alois@micard.lu> ¶ golang-github-francoispqt-gojay (U) Aloïs Micard <creekorful@debian.org> ¶ aerc (U) golang-github-viant-toolbox + (U) Amin Bandali <bandali@ubuntu.com> ¶ gtk4 (U) Amul Shah <Amul.Shah@fisglobal.com> ¶ fis-gtm (U) Ana Custura <ana@netstat.org.uk> ¶ namecheap + (U) vanguards + (U) Ananthu C V <weepingclown@debian.org> ¶ lazygit (U) Andrea Pappacoda <tachi@debian.org> ¶ mbedtls (U) xbyak Andreas Beckmann <anbe@debian.org> ¶ papi (U) pyopencl (U) Andreas Boll <aboll@debian.org> ¶ mesa (U) Andreas Bombe <aeb@debian.org> ¶ gr-limesdr (U) Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> ¶ clamav (U) Andreas Henriksson <andreas@fatal.se> ¶ golang-github-mendersoftware-mender-artifact (U) Andreas Metzler <ametzler@debian.org> ¶ efl (U) enblend-enfuse (U) lynx (U) pfstools (U) Andreas Rönnquist <gusnan@debian.org> ¶ allegro5 # (U) Andreas Tille <tille@debian.org> ¶ altree (U) bedtools (U) biosquid # (U) btllib (U) cardpeek (U) consensuscore (U) crac (U) dicom3tools (U) emboss (U) filtlong (U) fis-gtm (U) freebayes (U) golang-github-apptainer-container-library-client + (U) golang-github-apptainer-sif + (U) golang-github-jung-kurt-gofpdf + (U) golang-github-shenwei356-breader + (U) golang-gonum-v1-plot + (U) hmmer (U) igraph (U) infernal (U) ivar (U) libbrahe (U) libcifpp (U) libgzstream (U) libhmsbeagle (U) liblemon (U) libpll (U) librostlab (U) libsbml (U) libslow5lib (U) macs (U) microbiomeutil + (U) minimap2 (U) ncbi-blast+ (U) node-shiny-server (U) openmm (U) parallel (U) phybin (U) porechop (U) primer3 (U) python-biom-format (U) python-biopython (U) python-ofxhome + (U) python-pysam (U) r-cran-cli (U) r-cran-cliapp (U) r-cran-dbitest (U) r-cran-diagnosismed (U) r-cran-dimred (U) r-cran-emayili (U) r-cran-emmeans (U) r-cran-futile.logger (U) r-cran-gert (U) r-cran-gprofiler2 (U) r-cran-lambda.r (U) r-cran-prophet (U) r-cran-rprojroot (U) r-cran-rstan (U) r-cran-sass (U) r-cran-teachingdemos (U) r-cran-tm (U) r-cran-tmvtnorm (U) r-cran-tweenr (U) r-cran-xfun (U) samtools (U) seer (U) segemehl (U) seqan2 (U) silly (U) siscone (U) tree-puzzle (U) treeview (U) twopaco (U) unicycler (U) velvet (U) virtuoso-opensource (U) virulencefinder + (U) xfishtank (U) Andrei Rozanski <rozanski.andrei@gmail.com> ¶ libamplsolver (U) Andrej Shadura <andrewsh@debian.org> ¶ critcl + (U) fonts-karmilla (U) g15daemon (U) libcamera (U) mk-configure Andrew Lee (李健秋) <ajqlee@debian.org> ¶ nomacs (U) Andrew Ross <ubuntu@rossfamily.co.uk> ¶ libitext5-java (U) Andrey Rakhmatullin <wrar@debian.org> ¶ kvirc (U) Andrius Merkys <merkys@debian.org> ¶ bespokesynth (U) epics-base (U) grammatica (U) ncbi-igblast (U) openmm (U) pdb-tools (U) pycifrw + (U) python-fabio (U) python-pyutil + (U) r-cran-rhub (U) spglib (U) vst3sdk (U) wannier90 (U) Andy Pugh <andy@bodgesoc.org> ¶ linuxcnc (U) Ansgar <ansgar@debian.org> ¶ dune-common (U) dune-functions (U) dune-geometry (U) dune-grid (U) dune-grid-glue (U) dune-istl (U) dune-localfunctions (U) dune-typetree (U) Anthony Fok <foka@debian.org> ¶ autokey (U) go-qrcode (U) golang-1.24 (U) golang-github-akavel-rsrc # (U) golang-github-rogpeppe-go-internal (U) golang-github-ulikunitz-xz + (U) golang-github-yosssi-ace (U) golang-golang-x-net (U) pydoctor (U) Antoine Beaupré <anarcat@debian.org> ¶ magic-wormhole-mailbox-server (U) magic-wormhole-transit-relay + Antoine Le Gonidec <vv221@debian.org> ¶ ogre-1.12 (U) Anton Gladky <gladk@debian.org> ¶ boost1.88 (U) esys-particle (U) gmsh (U) lammps (U) metis (U) minieigen (U) sfepy (U) sumo (U) sundials (U) yade (U) Anton Zinoviev <zinoviev@debian.org> ¶ xfonts-terminus Antoni Villalonga <antoni@friki.cat> ¶ vt + (U) Antonio Terceiro <terceiro@debian.org> ¶ passenger (U) Antonio Valentino <antonio.valentino@tiscali.it> ¶ c-blosc2 (U) metpy (U) numexpr (U) pycoast (U) pysolid (U) python-cartopy (U) python-pint (U) xarray-safe-rcm (U) Anuradha Weeraman <anuradha@debian.org> ¶ ksh93u+m # Apollon Oikonomopoulos <apoikos@debian.org> ¶ xmobar (U) Arnaud Ferraris <aferraris@debian.org> ¶ gnome-metronome (U) plasma-mobile (U) Arnaud Fontaine <arnau@debian.org> ¶ glosstex (U) Arnaud Rebillout <arnaud.rebillout@collabora.com> ¶ efitools (U) Arnaud Rebillout <arnaudr@debian.org> ¶ mirrorbits (U) Arnaud Rebillout <arnaudr@kali.org> ¶ docker.io (U) Arnaud Rebillout <elboulangero@gmail.com> ¶ golang-github-miekg-pkcs11 (U) Arne Morten Kvarving <arne.morten.kvarving@sintef.no> ¶ opm-simulators (U) opm-upscaling (U) Arnout Engelen <arnouten@bzzt.net> ¶ kmetronome (U) Aron Xu <aron@debian.org> ¶ dnf-plugins-core (U) fcitx-libpinyin (U) ibus (U) libpinyin (U) opencc (U) Arthur Diniz <arthurbdiniz@gmail.com> ¶ hey (U) kind (U) kustomize (U) Arun Kumar Pariyar <arun@debian.org> ¶ go-gir-generator (U) Arun Kumar Pariyar <openarungeek@gmail.com> ¶ dde-qt-dbus-factory (U) Asias He <asias@debian.org> ¶ libpinyin (U) opencc (U) Aurelien Jarno <aurel32@debian.org> ¶ med-fichier (U) Aurélien COUDERC <coucouf@debian.org> ¶ kate (U) kdebugsettings (U) kdevelop-php (U) kf6-breeze-icons (U) kf6-extra-cmake-modules (U) kf6-kirigami (U) kf6-ktexttemplate (U) kf6-syndication (U) oxygen-icons (U) plasma-mobile (U) powerdevil (U) syndication (U) tokodon (U) Axel Beckert <abe@debian.org> ¶ dpmb john (U) lynx (U) Aymeric Agon-Rambosson <aymeric.agon@yandex.com> ¶ citar (U) consult-el (U) embark (U) magit (U) marginalia (U) orderless (U) vertico (U) Balasankar C <balasankarc@debian.org> ¶ fonts-smc-anjalioldlipi (U) fonts-smc-dyuthi (U) fonts-smc-karumbi (U) fonts-smc-keraleeyam (U) fonts-smc-meera (U) fonts-smc-rachana (U) fonts-smc-raghumalayalamsans (U) fonts-smc-uroob (U) Balint Reczey <balint@balintreczey.hu> ¶ erlang-cowlib (U) Barak A. Pearlmutter <bap@debian.org> ¶ chezscheme (U) fstrcmp ikarus ivtools latex-coffee-stains libemf magit (U) mit-scheme oaklisp pstoedit yasnippet (U) Barry deFreese <bdefreese@debian.org> ¶ asc (U) blockattack (U) liquidwar (U) netrek-client-cow (U) Bartosz Fenski <fenio@debian.org> ¶ asc (U) Bas Couwenberg <sebastic@debian.org> ¶ grass (U) libosmium (U) nco (U) pyosmium (U) qgis (U) Bas Wijnen <wijnen@debian.org> ¶ openmsx Bas Zoetekouw <bas@debian.org> ¶ blktrace Bastian Blank <waldi@debian.org> ¶ cdebootstrap + libdebian-installer (U) linux (U) Bastian Germann <bage@debian.org> ¶ scalable-cyrfonts Bastian Venthur <venthur@debian.org> ¶ kivy (U) Bastien Roucaries <rouca@debian.org> ¶ node-envinfo (U) Bastien Roucariès <rouca@debian.org> ¶ node-rollup (U) Bdale Garbee <bdale@gag.com> ¶ altos debian-history (U) librnd (U) pforth rocketcea scikit-fmm Ben Hutchings <benh@debian.org> ¶ linux (U) Benda Xu <heroxbd@gentoo.org> ¶ casacore (U) casacore-data-igrf (U) casacore-data-jplde (U) scim (U) Benda Xu <orv@debian.org> ¶ scmutils Benjamin Barenblat <bbaren@debian.org> ¶ coq (U) Benjamin Drung <bdrung@debian.org> ¶ libsoxr (U) vlc # + (U) Benjamin Drung <bdrung@ubuntu.com> ¶ rdma-core Bernd Zeimetz <bzed@debian.org> ¶ collectd (U) gpsbabel (U) Bernhard Miklautz <bernhard.miklautz@shacknet.at> ¶ freerdp3 (U) Bernhard R. Link <brlink@debian.org> ¶ git-dpm bertrand Neron <bneron@pasteur.fr> ¶ macsyfinder (U) Birger Schacht <birger@debian.org> ¶ foot Boian Bonev <bbonev@ipacct.com> ¶ gpsd Boris Pek <tehnick@debian.org> ¶ psi-plus Boyuan Yang <byang@debian.org> ¶ beangulp + (U) dde-qt-dbus-factory (U) fcitx5-bamboo (U) fcitx5-zhuyin (U) font-manager (U) go-gir-generator (U) opencc (U) rime-array (U) rime-cangjie (U) rime-cantonese (U) rime-ipa (U) rime-loengfan (U) rime-luna-pinyin (U) rime-middle-chinese (U) rime-pinyin-simp (U) rime-quick (U) rime-scj (U) rime-soutzoe (U) rime-stroke (U) rime-terra-pinyin (U) rime-wubi (U) rime-wugniu (U) zxing-cpp Brad Chapman <chapmanb@50mail.com> ¶ freebayes (U) Breno Leitao <leitao@debian.org> ¶ cappuccino Brian May <bam@debian.org> ¶ celery (U) faker (U) python-django (U) python-mkdocs (U) python-passlib (U) BW Keller <malzraa@gmail.com> ¶ yt (U) Camm Maguire <camm@debian.org> ¶ axiom fricas gcl gcl27 hol88 lam + maxima Carl Keinath <carl.keinath@gmail.com> ¶ hyprland (U) Carl Worth <cworth@debian.org> ¶ notmuch Carlos Zuferri <chals@altorricon.com> ¶ live-manual (U) Carsten Leonhardt <leo@debian.org> ¶ bacula-doc (U) Carsten Schoenert <c.schoenert@t-online.de> ¶ kicad (U) python-graphene + (U) python-mkdocs (U) python-picologging (U) Cesare Falco <c.falco@ubuntu.com> ¶ mame (U) Changwoo Ryu <cwryu@debian.org> ¶ ibus (U) ChangZhuo Chen (陳昌倬) <czchen@debian.org> ¶ fcitx-libpinyin (U) ibus-libzhuyin (U) libpinyin (U) nomacs (U) Charles Plessy <plessy@debian.org> ¶ altree (U) bedtools (U) emboss (U) primer3 (U) python-biopython (U) python-pysam (U) samtools (U) tree-puzzle (U) velvet (U) Chow Loong Jin <hyperair@debian.org> ¶ hyprland (U) Chris Halls <halls@debian.org> ¶ writer2latex (U) Chris Hofstaedtler <zeha@debian.org> ¶ ragel Chris Lamb <lamby@debian.org> ¶ black (U) python-django (U) Christian Bayle <bayle@debian.org> ¶ jfreepdf (U) orson-charts (U) rocm-docs-core (U) rocm-hipamd (U) Christian Ehrhardt <christian.ehrhardt@canonical.com> ¶ dpdk (U) Christian Kastner <ckk@debian.org> ¶ numpy (U) rocm-hipamd (U) rocprim (U) scikit-learn (U) Christian M. Amsüss <chrysn@fsfe.org> ¶ rdflib + (U) Christian Marillat <marillat@debian.org> ¶ libtorrent-rasterbar Christian T. Steigies <cts@debian.org> ¶ gle-graphics-manual (U) Christoph Berg <myon@debian.org> ¶ gpredict (U) gr-limesdr (U) libcm256cc (U) patroni # (U) pgloader (U) prometheus-sql-exporter (U) vip-manager2 (U) Christoph Biedl <debian.axhn@manchmal.in-ulm.de> ¶ gkrellm-leds P Christoph Egger <christoph@debian.org> ¶ buildapp (U) clisp (U) ecl (U) Christoph Martin <chrism@debian.org> ¶ vdr-plugin-markad (U) Christophe Trophime <christophe.trophime@lncmi.cnrs.fr> ¶ getdp (U) gmsh (U) Christopher Baines <mail@cbaines.net> ¶ faker (U) Christopher Hoskin <mans0954@debian.org> ¶ pympress + (U) rust-fslock # (U) Christopher Reichert <creichert07@gmail.com> ¶ haskell-network-conduit-tls (U) ClamAV Team <pkg-clamav-devel@lists.alioth.debian.org> ¶ clamav Clay Stan <claystan97@gmail.com> ¶ dde-qt-dbus-factory (U) Clint Adams <clint@debian.org> ¶ alex (U) cabal-debian (U) ghc # (U) glirc (U) haskell-aeson (U) haskell-arithmoi (U) haskell-async (U) haskell-attoparsec (U) haskell-base64-bytestring (U) haskell-bimap (U) haskell-binary-instances (U) haskell-bitvec (U) haskell-blaze-markup (U) haskell-bloomfilter (U) haskell-brick (U) haskell-bytestring-to-vector (U) haskell-bz2 (U) haskell-case-insensitive (U) haskell-cassava (U) haskell-cassava-megaparsec (U) haskell-cborg (U) haskell-cereal-conduit (U) haskell-cereal-vector (U) haskell-chimera (U) haskell-cipher-camellia (U) haskell-classy-prelude (U) haskell-classy-prelude-conduit (U) haskell-clientsession (U) haskell-cmark (U) haskell-cmark-gfm (U) haskell-conduit (U) haskell-conduit-extra (U) haskell-cryptohash (U) haskell-cryptohash-md5 (U) haskell-cryptohash-sha1 (U) haskell-cryptohash-sha256 (U) haskell-cryptonite (U) haskell-curve25519 (U) haskell-deepseq-generics (U) haskell-dense-linear-algebra (U) haskell-deriving-aeson (U) haskell-deriving-compat (U) haskell-doctemplates (U) haskell-ed25519 (U) haskell-edit-distance (U) haskell-email-validate (U) haskell-enclosed-exceptions (U) haskell-esqueleto (U) haskell-exception-transformers (U) haskell-expiring-cache-map (U) haskell-fast-logger (U) haskell-fgl-arbitrary (U) haskell-filepattern (U) haskell-filestore (U) haskell-fold-debounce (U) haskell-from-sum (U) haskell-generic-data (U) haskell-generic-random (U) haskell-genvalidity (U) haskell-genvalidity-containers (U) haskell-getopt-generics (U) haskell-ghc-exactprint (U) haskell-ghc-lib-parser-ex (U) haskell-gi-gdk (U) haskell-githash (U) haskell-gridtables (U) haskell-hackage-security (U) haskell-hakyll (U) haskell-haskell-gi (U) haskell-heterocephalus (U) haskell-hgmp (U) haskell-hjsmin (U) haskell-hledger (U) haskell-hledger-ui (U) haskell-hopenpgp (U) haskell-hourglass (U) haskell-hslua-module-text (U) haskell-hspec-api (U) haskell-hspec-megaparsec (U) haskell-hspec-smallcheck (U) haskell-hspec-wai (U) haskell-html-conduit (U) haskell-http-api-data (U) haskell-http-client (U) haskell-http-conduit (U) haskell-infer-license (U) haskell-inline-c (U) haskell-integer-logarithms (U) haskell-integer-roots (U) haskell-interpolate (U) haskell-io-streams-haproxy (U) haskell-irc-core (U) haskell-js-flot (U) haskell-lambdahack (U) haskell-lens (U) haskell-libmpd (U) haskell-load-env (U) haskell-logging-facade (U) haskell-lukko (U) haskell-lzma (U) haskell-markdown (U) haskell-markdown-unlit (U) haskell-memory (U) haskell-microstache (U) haskell-minimorph (U) haskell-miniutter (U) haskell-mockery (U) haskell-monad-loops (U) haskell-monad-memo (U) haskell-mono-traversable (U) haskell-multistate (U) haskell-nanospec (U) haskell-natural-transformation (U) haskell-nettle (U) haskell-numbers (U) haskell-openpgp-asciiarmor (U) haskell-optparse-applicative (U) haskell-ormolu (U) haskell-parsers (U) haskell-path-pieces (U) haskell-pem (U) haskell-persistent (U) haskell-pretty-simple (U) haskell-prettyprinter-ansi-terminal (U) haskell-project-template (U) haskell-quickcheck-classes (U) haskell-quote-quot (U) haskell-rank2classes (U) haskell-raw-strings-qq (U) haskell-readargs (U) haskell-recv (U) haskell-resourcet (U) haskell-safe-exceptions (U) haskell-sandi (U) haskell-say (U) haskell-scanner (U) haskell-scotty (U) haskell-selective (U) haskell-serialise (U) haskell-servant (U) haskell-servant-server (U) haskell-shell-conduit (U) haskell-should-not-typecheck (U) haskell-simple-sendfile (U) haskell-skein (U) haskell-snap (U) haskell-snap-templates (U) haskell-soap (U) haskell-split (U) haskell-streaming-commons (U) haskell-tagstream-conduit (U) haskell-tasty-golden (U) haskell-tasty-hedgehog (U) haskell-termonad (U) haskell-text-icu (U) haskell-text-manipulate (U) haskell-text-metrics (U) haskell-text-show (U) haskell-th-desugar (U) haskell-th-env (U) haskell-th-lift (U) haskell-th-lift-instances (U) haskell-th-utilities (U) haskell-time-parsers (U) haskell-tls (U) haskell-trifecta (U) haskell-typed-process (U) haskell-universe-base (U) haskell-unix-time (U) haskell-uuid (U) haskell-wai (U) haskell-wai-app-static (U) haskell-wai-extra (U) haskell-wai-http2-extra (U) haskell-warp (U) haskell-witch (U) haskell-with-location (U) haskell-wl-pprint-annotated (U) haskell-word-wrap (U) haskell-word8 (U) haskell-x509 (U) haskell-xml-conduit (U) haskell-xml-hamlet (U) haskell-xml-html-qq (U) haskell-xmlhtml (U) haskell-xss-sanitize (U) haskell-yaml (U) haskell-yesod-core (U) haskell-yesod-form (U) haskell-yesod-test (U) mighttpd2 (U) Clément Hermann <nodens@debian.org> ¶ onedrive (U) Colin Watson <cjwatson@debian.org> ¶ groff libdebian-installer (U) yubihsm-connector (U) zope.deferredimport + (U) Collectd Packaging Team <team+collectd@tracker.debian.org> ¶ collectd Compute Library Team <developer-compute@arm.com> ¶ arm-compute-library Cordell Bloor <cgmb@debian.org> ¶ rocdbgapi + (U) rocm-hipamd (U) rocprim (U) Corey Bryant <corey.bryant@canonical.com> ¶ python-glanceclient (U) python-keystoneauth1 (U) Cyril Brulebois <cyril@debamax.com> ¶ crowdsec Cyril Brulebois <kibi@debian.org> ¶ debian-installer # # # (U) Cédric Boutillier <boutil@debian.org> ¶ gfan (U) highlight.js (U) ruby-gnuplot + (U) Cédric Lood <cedric.lood@kuleuven.be> ¶ porechop (U) Damien Raude-Morvan <drazzib@debian.org> ¶ codenarc (U) Damyan Ivanov <dmn@debian.org> ¶ firebird4.0 Danai SAE-HAN (韓達耐) <danai@debian.org> ¶ cjk (U) latex-cjk-chinese-arphic (U) Daniel Baumann <daniel@debian.org> ¶ ck dnsjit Daniel Dehennin <daniel.dehennin@baby-gnu.org> ¶ moarvm (U) raku-readline (U) raku-tap-harness (U) raku-zef (U) rakudo # (U) Daniel Kahn Gillmor <dkg@fifthhorseman.net> ¶ knot (U) rust-gperftools (U) rust-sequoia-sq (U) Daniel Markstedt <daniel@mindani.net> ¶ netatalk (U) Daniel Salzman <daniel.salzman@nic.cz> ¶ knot (U) Daniele Tricoli <eriol@mornie.org> ¶ pywavelets + (U) dann frazier <dannf@debian.org> ¶ makedumpfile (U) Dave Hibberd <hibby@debian.org> ¶ svxlink (U) David Banks <amoebae@gmail.com> ¶ sisc David Bremner <bremner@debian.org> ¶ emacs-jabber (U) notmuch (U) polymake sketch (U) slime (U) David Kalnischkies <donkult@debian.org> ¶ vim-youcompleteme ycmd David Miguel Susano Pinto <carandraug+dev@gmail.com> ¶ ncbi-igblast (U) David Paleino <dapal@debian.org> ¶ openlayers (U) uncertainties (U) underscore (U) David Suárez <david.sephirot@gmail.com> ¶ ruby-re2 (U) David Weinehall <tao@debian.org> ¶ scummvm (U) Davide Viti <zinosat@tiscali.it> ¶ fonts-freefont (U) Dawid Dziurla <dawidd0811@gmail.com> ¶ termshark (U) Dean Serenevy <dean@serenevy.net> ¶ kivy (U) Debian Accessibility Team <pkg-a11y-devel@alioth-lists.debian.net> ¶ flite Debian ACE maintainers <team+ace@tracker.debian.org> ¶ ace Debian ALSA Maintainers <pkg-alsa-devel@lists.alioth.debian.org> ¶ alsa-utils Debian Astro Maintainers <debian-astro-maintainers@lists.alioth.debian.org> ¶ pybdsf Debian Astro Team <debian-astro-maintainers@alioth-lists.debian.net> ¶ casacore-data-igrf casacore-data-jplde Debian Astro Team <debian-astro-maintainers@lists.alioth.debian.org> ¶ astroplan astroquery casacore eso-midas gwcs montage ndcube pyregion python-casacore starjava-ttools Debian Astronomy Team <debian-astro-maintainers@lists.alioth.debian.org> ¶ c-munipack yt Debian Bacula Team <pkg-bacula-devel@lists.alioth.debian.org> ¶ bacula-doc Debian Bluetooth Maintainers <team+pkg-bluetooth@tracker.debian.org> ¶ bluez bluez-alsa Debian BOINC Maintainers <pkg-boinc-devel@lists.alioth.debian.org> ¶ boinc Debian Boost Team <team+boost@tracker.debian.org> ¶ boost1.88 Debian Chinese Team <chinese-developers@lists.alioth.debian.org> ¶ opencc (U) unicon # Debian CLI Applications Team <pkg-cli-apps-team@lists.alioth.debian.org> ¶ hexbox openmcdf Debian Clojure Maintainers <team+clojure@tracker.debian.org> ¶ clojure core-specs-alpha-clojure leiningen-clojure + spec-alpha-clojure Debian Common Lisp Team <debian-common-lisp@lists.debian.org> ¶ abcl buildapp clisp ecl sbcl slime Debian D Language Group <team+d-team@tracker.debian.org> ¶ dub ldc Debian Deepin Packaging Team <pkg-deepin-devel@lists.alioth.debian.org> ¶ dde-qt-dbus-factory go-gir-generator Debian Documentation Project <debian-doc@lists.debian.org> ¶ refcard Debian DPDK Maintainers <pkg-dpdk-devel@lists.alioth.debian.org> ¶ dpdk Debian EFI team <debian-efi@lists.debian.org> ¶ libjcat Debian Electronics Team <pkg-electronics-devel@alioth-lists.debian.net> ¶ kicad Debian Electronics Team <pkg-electronics-devel@lists.alioth.debian.org> ¶ arduino librnd verilator Debian Emacsen team <debian-emacsen@lists.debian.org> ¶ citar consult-el elpa-transient embark fountain-mode magit magit-forge-el maildir-utils marginalia orderless vertico yasnippet Debian Emacsen Team <debian-emacsen@lists.debian.org> ¶ emacs-jabber ghub-el with-editor Debian Erlang Packagers <pkg-erlang-devel@lists.alioth.debian.org> ¶ elixir-makeup erlang erlang-cowlib erlang-hex manderlbot rebar rebar3 wings3d yaws Debian FLTK Ecosystem Team <team+fltk@tracker.debian.org> ¶ fltk1.3 fltk1.4 Debian Fonts Task Force <debian-fonts@lists.debian.org> ¶ cardo font-manager fonts-atarist # fonts-cantarell fonts-fantasque-sans fonts-fork-awesome fonts-meera-inimai fonts-smc-anjalioldlipi fonts-smc-dyuthi fonts-smc-karumbi fonts-smc-keraleeyam Debian Fonts Task Force <pkg-fonts-devel@lists.alioth.debian.org> ¶ fonts-arundina fonts-beteckna fonts-cascadia-code fonts-freefont fonts-karmilla fonts-smc-meera fonts-smc-rachana fonts-smc-raghumalayalamsans fonts-topaz-unicode Debian Games Team <pkg-games-devel@lists.alioth.debian.org> ¶ 0ad ace-of-penguins allegro5 # asc blockattack bzflag colobot doomsday ftgl gnubg (U) libsfml liquidwar mame netrek-client-cow nsnake ogre-1.12 scummvm silly teeworlds ufoai xfishtank xpenguins Debian GCC Maintainers <debian-gcc@lists.debian.org> ¶ gcc-12-cross gcc-13-cross gcc-13-cross-mipsen gcc-14 gcc-14-cross gcc-14-cross-ports gcc-15 gcc-15-cross gcc-15-cross-ports Debian GDB Team <team+gdb@tracker.debian.org> ¶ dejagnu Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org> ¶ grass libosmium metpy nco openlayers pycoast pyosmium pysolid python-cartopy python-geopandas qgis savi xarray-safe-rcm Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org> ¶ blueprint-compiler bustle fragments gimp glib-d gnome-metronome gtk4 kooha librsvg obfuscate shortwave warp Debian Go Compiler Team <team+go-compiler@tracker.debian.org> ¶ golang-1.24 Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org> ¶ acmetool goiardi golang-github-cloudflare-cfssl golang-github-cznic-ql + golang-github-kr-binarydist + golang-github-yosssi-ace Debian Go Packaging Team <team+pkg-go@tracker.debian.org> ¶ aerc age containerd crowdsec (U) dasel docker.io fscrypt glow go-qrcode go-sendxmpp gobgp golang-github-akavel-rsrc # golang-github-apptainer-container-library-client + golang-github-artyom-mtab + golang-github-containerd-nydus-snapshotter golang-github-dreamitgetit-statuscake + golang-github-emicklei-dot + golang-github-francoispqt-gojay golang-github-gin-gonic-gin + golang-github-go-git-go-git golang-github-hdrhistogram-hdrhistogram-go golang-github-jonas-p-go-shp + golang-github-jung-kurt-gofpdf + golang-github-kshedden-dstream + golang-github-linkedin-goavro + golang-github-mendersoftware-mender-artifact golang-github-micromdm-scep golang-github-miekg-pkcs11 golang-github-otiai10-copy + golang-github-roaringbitmap-roaring + golang-github-rogpeppe-go-internal golang-github-shenwei356-breader + golang-github-tjfoc-gmsm + golang-github-ulikunitz-xz + golang-github-valyala-fasthttp + golang-github-viant-toolbox + golang-github-yudai-gojsondiff + golang-golang-x-net golang-gonum-v1-plot + golang-mvdan-editorconfig + gosop hey lazygit riseup-vpn secsipidx tea-cli termshark tty-record victoriametrics xmpp-dns ymuse Debian Go Team <team+pkg-go@tracker.debian.org> ¶ golang-github-apptainer-sif + Debian GPS team <gpsbabel@packages.debian.org> ¶ gpsbabel Debian HA Maintainers <debian-ha-maintainers@alioth-lists.debian.net> ¶ pacemaker Debian Hamradio Maintainers <debian-hams@lists.debian.org> ¶ gpredict gr-limesdr libcm256cc svxlink tucnak Debian Haskell Group <debian-haskell@lists.debian.org> ¶ haskell-swish Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org> ¶ alex cabal-debian ghc # glirc happy haskell-active haskell-aeson haskell-aeson-casing haskell-aeson-extra haskell-aeson-qq haskell-ap-normalize haskell-arithmoi haskell-async haskell-atomic-write haskell-attoparsec haskell-barbies haskell-base64-bytestring haskell-bimap haskell-binary-instances haskell-binary-orphans haskell-binary-search haskell-bitvec haskell-bitwise haskell-blaze-html haskell-blaze-markup haskell-bloomfilter haskell-brick haskell-bytestring-to-vector haskell-bz2 haskell-bzlib-conduit haskell-cabal-install-solver haskell-case-insensitive haskell-cassava haskell-cassava-megaparsec haskell-cborg haskell-cereal-conduit haskell-cereal-vector haskell-chimera haskell-cipher-camellia haskell-classy-prelude haskell-classy-prelude-conduit haskell-clientsession haskell-cmark haskell-cmark-gfm haskell-commonmark haskell-commonmark-extensions haskell-concurrent-extra haskell-concurrent-supply haskell-conduit haskell-conduit-extra haskell-copilot-c99 haskell-copilot-core haskell-copilot-interpreter haskell-copilot-language haskell-copilot-libraries haskell-copilot-prettyprinter haskell-copilot-theorem haskell-cryptohash haskell-cryptohash-md5 haskell-cryptohash-sha1 haskell-cryptohash-sha256 haskell-crypton haskell-crypton-conduit haskell-crypton-x509 haskell-crypton-x509-store haskell-crypton-x509-validation haskell-cryptonite haskell-cryptonite-conduit haskell-cryptostore haskell-curve25519 haskell-data-clist haskell-data-hash haskell-data-reify haskell-deepseq-generics haskell-dense-linear-algebra haskell-deriving-aeson haskell-deriving-compat haskell-dice-entropy-conduit haskell-distributive haskell-doctemplates haskell-double-conversion haskell-ed25519 haskell-edit-distance haskell-email-validate haskell-emojis haskell-enclosed-exceptions haskell-equivalence haskell-esqueleto haskell-exception-transformers haskell-expiring-cache-map haskell-fast-logger haskell-fgl haskell-fgl-arbitrary haskell-filepattern haskell-filestore haskell-filtrable haskell-finite-field haskell-fold-debounce haskell-from-sum haskell-generic-data haskell-generic-random haskell-genvalidity haskell-genvalidity-containers haskell-getopt-generics haskell-ghc-exactprint haskell-ghc-lib-parser-ex haskell-ghc-typelits-extra haskell-ghc-typelits-knownnat haskell-gi-gdk haskell-githash haskell-gridtables haskell-hackage-security haskell-haddock-library haskell-hakyll haskell-happstack-server haskell-haskell-gi haskell-hdf5 haskell-heterocephalus haskell-hgmp haskell-hi-file-parser haskell-hjsmin haskell-hledger haskell-hledger-ui haskell-hoogle haskell-hopenpgp haskell-hourglass haskell-hpack haskell-hslua-aeson haskell-hslua-core haskell-hslua-list haskell-hslua-module-doclayout haskell-hslua-module-path haskell-hslua-module-system haskell-hslua-module-text haskell-hslua-module-version haskell-hslua-module-zip haskell-hslua-typing haskell-hspec-api haskell-hspec-attoparsec haskell-hspec-megaparsec haskell-hspec-smallcheck haskell-hspec-wai haskell-html-conduit haskell-http-api-data haskell-http-client haskell-http-conduit haskell-http-link-header haskell-http-media haskell-http2 haskell-indexed-traversable-instances haskell-infer-license haskell-inline-c haskell-integer-conversion haskell-integer-logarithms haskell-integer-roots haskell-interpolate haskell-invariant haskell-io-streams-haproxy haskell-irc-core haskell-iso8601-time haskell-jira-wiki-markup haskell-js-flot haskell-jsonpath haskell-lambdahack haskell-language-glsl haskell-lens haskell-libbf haskell-libmpd haskell-lift-type haskell-load-env haskell-logging-facade haskell-lua haskell-lukko haskell-lzma haskell-map-syntax haskell-markdown haskell-markdown-unlit haskell-memory haskell-microlens-aeson haskell-microstache haskell-minimorph haskell-miniutter haskell-mockery haskell-modern-uri haskell-monad-loops haskell-monad-memo haskell-mono-traversable haskell-multistate haskell-mustache haskell-mutable-containers haskell-nanospec haskell-natural-transformation haskell-nettle haskell-network-conduit-tls haskell-numbers haskell-ogma-cli haskell-ogma-core haskell-ogma-extra haskell-ogma-language-c haskell-ogma-language-lustre haskell-ogma-language-smv haskell-openpgp-asciiarmor haskell-optparse-applicative haskell-ormolu haskell-os-string haskell-pandoc haskell-pandoc-lua-engine haskell-pandoc-lua-marshal haskell-parsers haskell-path haskell-path-pieces haskell-pem haskell-persistent haskell-pqueue haskell-pretty-simple haskell-prettyprinter-ansi-terminal haskell-prettyprinter-interp haskell-project-template haskell-quickcheck haskell-quickcheck-classes haskell-quote-quot haskell-rank2classes haskell-raw-strings-qq haskell-readargs haskell-recv haskell-regex-applicative haskell-req haskell-resolv haskell-resourcet haskell-rio haskell-rio-orphans haskell-safe-exceptions haskell-sandi haskell-say haskell-scanner haskell-scotty haskell-secret-sharing haskell-selective haskell-serialise haskell-servant haskell-servant-client-core haskell-servant-server haskell-shell-conduit haskell-shelly haskell-should-not-typecheck haskell-simple-sendfile haskell-skein haskell-skylighting-core haskell-snap haskell-snap-templates haskell-soap haskell-split haskell-sql-words haskell-stack haskell-static-bytes haskell-store haskell-streaming-commons haskell-string-interpolate haskell-string-qq haskell-tagstream-conduit haskell-tar-conduit haskell-tasty-golden haskell-tasty-hedgehog haskell-tasty-lua haskell-terminal-progress-bar haskell-termonad haskell-text-builder-linear haskell-text-conversions haskell-text-icu haskell-text-manipulate haskell-text-metrics haskell-text-postgresql haskell-text-short haskell-text-show haskell-th-compat haskell-th-desugar haskell-th-env haskell-th-lift haskell-th-lift-instances haskell-th-utilities haskell-time-parsers haskell-tls haskell-token-bucket haskell-toml-parser haskell-trifecta haskell-typed-process haskell-unicode-transforms haskell-universe-base haskell-unix-time haskell-unixutils haskell-uuid haskell-uuid-types haskell-vector-algorithms haskell-vector-hashtables haskell-vector-th-unbox haskell-versions haskell-wai haskell-wai-app-static haskell-wai-extra haskell-wai-http2-extra haskell-warp haskell-websockets haskell-witch haskell-with-location haskell-witherable haskell-wl-pprint-annotated haskell-word-trie haskell-word-wrap haskell-word8 haskell-x509 haskell-xeno haskell-xlsx haskell-xml-conduit haskell-xml-hamlet haskell-xml-html-qq haskell-xmlhtml haskell-xss-sanitize haskell-yaml haskell-yesod-core haskell-yesod-form haskell-yesod-test haskell-yi-language haskell-yi-rope haskell-zip-archive haskell-zip-stream hasktags mighttpd2 xmobar Debian Hebrew Packaging Team <team+hebrew@tracker.debian.org> ¶ bidiui Debian HPC Team <debian-hpc@lists.debian.org> ¶ condor papi Debian Hyprland Maintainers <team+hyprland@tracker.debian.org> ¶ hyprland Debian Input Method Team <debian-input-method@lists.debian.org> ¶ fcitx-libpinyin fcitx5-bamboo fcitx5-zhuyin ibus ibus-libzhuyin keyman libpinyin open-gram opencc rime-array rime-cangjie rime-cantonese rime-ipa rime-loengfan rime-luna-pinyin rime-middle-chinese rime-pinyin-simp rime-quick rime-scj rime-soutzoe rime-stroke rime-terra-pinyin rime-wubi rime-wugniu Debian Install System Team <debian-boot@lists.debian.org> ¶ debian-installer # # # libdebian-installer Debian IoT Maintainers <debian-iot-maintainers@alioth-lists.debian.net> ¶ mbedtls Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org> ¶ aspectj bsh cobertura codenarc derby felix-main gmetrics gradle-kotlin-dsl + grammatica graxxia groovy h2database hyperic-sigar jabref jakarta-jmeter + jalview jameica-h2database janino javacc5 javawriter jcabi-aspects jetty12 jfreepdf json4s jxplorer libcommons-fileupload-java libhibernate-validator-java libhibernate-validator4-java libitext5-java libjpam-java libnative-platform-java libnb-platform18-java libxml-security-java libxtc-rats-java lucene-solr lucene4.10 mathpiper okio orson-charts plexus-utils2 sbt-launcher-interface sbt-serialization scala scala-parser-combinators scala-pickling scala-tools-sbinary scala-xml serp sweethome3d-furniture tomcat10 tomcat11 tomcat9 visualvm weka weupnp xmlbeans xmlgraphics-commons zookeeper Debian Javascript Maintainers <debian-pan-maintainers@alioth-lists.debian.net> ¶ jupyterlab Debian Javascript Maintainers <pkg-javascript-devel@alioth-lists.debian.net> ¶ emscripten Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org> ¶ highlight.js moment-timezone.js node-ajv node-ampproject-remapping node-axios node-babel7 node-camelcase node-camelcase-keys node-cbor node-cli-cursor node-convert-source-map + node-d3 node-d3-array node-define-lazy-prop node-emittery node-envinfo node-espree node-execa node-fast-json-patch node-find-up node-function-bind + node-get-stream node-html5-qrcode node-inwasm node-license-webpack-plugin node-lru-cache node-mem node-minimatch node-opencv node-pretty-ms node-quick-lru node-regenerator node-resolve node-rollup node-rollup-plugin-alias node-rollup-plugin-babel node-rollup-plugin-commonjs node-rollup-plugin-typescript2 node-rollup-pluginutils node-source-map-loader node-svgdotjs-svg.js node-webpack node-webpack-stats-plugin node-wrap-ansi twitter-bootstrap3 underscore Debian Junior Maintainers <debian-jr@lists.debian.org> ¶ tuxpaint (U) Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> ¶ kvirc Debian Kdump <team+kdump@tracker.debian.org> ¶ makedumpfile Debian Kernel Team <debian-kernel@lists.debian.org> ¶ linux Debian Kolab Maintainers <team+kolab-mantainers@tracker.debian.org> ¶ libkolabxml Debian Kubernetes Packaging Team <team+kubernetes@tracker.debian.org> ¶ kind kustomize Debian LibreOffice Maintainers <debian-openoffice@lists.debian.org> ¶ writer2latex Debian Libvirt Maintainers <pkg-libvirt-maintainers@lists.alioth.debian.org> ¶ libguestfs Debian Live Maintainers <debian-live@lists.debian.org> ¶ live-manual Debian LTSP Maintainers <team+ltsp@tracker.debian.org> ¶ ltsp Debian Lua Team <pkg-lua-devel@lists.alioth.debian.org> ¶ lua-penlight + Debian Lynx Packaging Team <pkg-lynx-maint@lists.alioth.debian.org> ¶ lynx Debian Math Team <team+math@tracker.debian.org> ¶ fflas-ffpack frobby gfan linbox macaulay2 maxima-sage primesieve python-mapbox-earcut singular Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org> ¶ altree ants # bedtools biosig bmtk brian btllib cmtk consensuscore crac cyvcf2 dcmtk deblur + dicom3tools dipy emboss filtlong fis-gtm freebayes gdcm grabix hmmer igraph infernal ivar libamplsolver libcifpp libgdf libgzstream libhmsbeagle liblemon libpll librostlab libsbml libslow5lib macs macsyfinder metastudent-data mia microbiomeutil + minimap2 mrtrix3 ncbi-blast+ ncbi-igblast nim-hts + nitime odil parallel phybin pinfish porechop primer3 pydicom python-biom-format python-biopython python-gffutils python-pybedtools python-pysam python-trx-python samtools seer segemehl seqan2 seqan3 shapeit4 spaln tree-puzzle treeview twopaco unicycler velvet virulencefinder + vt + Debian Mobcom Maintainers <Debian-mobcom-maintainers@lists.alioth.debian.org> ¶ libosmocore Debian Multimedia Maintainers <debian-multimedia@lists.debian.org> ¶ bespokesynth cheesecutter dragonfly-reverb ecasound furnace gsequencer jsusfx kmetronome libcamera libdc1394 libsoxr mplayer openni openni-sensor-pointclouds openni-sensor-primesense opensubdiv pupnp schism shotcut + vlc # + vst3sdk x265 zytrax Debian Nagios Maintainer Group <pkg-nagios-devel@lists.alioth.debian.org> ¶ icinga2 Debian Netatalk team <pkg-netatalk-devel@lists.alioth.debian.org> ¶ netatalk Debian Nginx Maintainers <pkg-nginx-maintainers@alioth-lists.debian.net> ¶ nginx Debian Nim Team <team+nim@tracker.debian.org> ¶ nim-hts + (U) Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org> ¶ advi + belenios coq coq-elpi coq-iris elpi extlib liquidsoap ocaml-atd ocaml-bitstring ocaml-containers ocaml-ptime ocaml-topkg ocaml-uucp ocaml-uunf ocamlviz omake # ssreflect wyrd Debian Octave Group <team+pkg-octave-team@tracker.debian.org> ¶ octave-communications octave-geometry octave-ltfat octave-nan octave-queueing zmat Debian OpenCL Maintainers <pkg-opencl-devel@lists.alioth.debian.org> ¶ pyopencl Debian OpenStack <team+openstack@tracker.debian.org> ¶ aetos blazar cinder cloudkitty cyborg designate glance ironic jenkins-job-builder keystone manila masakari masakari-monitors neutron neutron-ipv6-bgp-injector nova octavia openstack-trove python-glanceclient python-keystoneauth1 python-neutron-lib python-openstackclient python-os-faults python-sphinx-code-include python-taskflow qpid-proton rabbitmq-server vmms watcher Debian PaN Maintainers <debian-pan-maintainers@alioth-lists.debian.net> ¶ bitshuffle bornagain freesas jupyterhub (U) pyfai P pynx python-fabio python-mcstasscript + (U) python-pydash (U) wxmplot + (U) Debian Pan Maintainers <debian-pan-maintainers@alioth-lists.debian.net> ¶ node-ipydatagrid Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org> ¶ analizo lemonldap-ng libimage-librsvg-perl Debian PhotoTools Maintainers <pkg-phototools-devel@lists.alioth.debian.org> ¶ enblend-enfuse highway jpeg-xl pfstools Debian PHP Maintainers <team+pkg-php@tracker.debian.org> ¶ php8.4 Debian PHP PEAR Maintainers <pkg-php-pear@lists.alioth.debian.org> ¶ php-nesbot-carbon Debian Pkg-e Team <pkg-e-devel@lists.alioth.debian.org> ¶ efl Debian Policy Editors <debian-policy@lists.debian.org> ¶ debian-policy # Debian PostgreSQL Maintainers <team+postgresql@tracker.debian.org> ¶ patroni # pgloader prometheus-sql-exporter vip-manager2 Debian PostgreSQL team <team+postgresql@tracker.debian.org> ¶ libpqxx Debian Printing Team <debian-printing@lists.debian.org> ¶ foo2zjs libcupsfilters Debian Privacy Tools Maintainers <pkg-privacy-maintainers@lists.alioth.debian.org> ¶ vanguards + Debian publicity team <debian-publicity@lists.debian.org> ¶ debian-history Debian Python Team <team+python@tracker.debian.org> ¶ alembic ansible-lint + autokey beancount beangulp + bibtexparser + black celery cherrypy3 contourpy cysignals cython + dask datalad-next dkimpy faker fpylll frozenlist fsspec indexed-gzip ipyparallel ipython jpylyzer jupyter-server jupyter-sphinx jupyterhub kivy lazy-object-proxy m2crypto magic-wormhole-mailbox-server matplotlib mypy namecheap + nbconvert nbsphinx numpy painintheapt pathos pikepdf pwntools pyasn + pycifrw + pycparser + pydoctor pympress + python-altair + python-blosc python-cloup python-cycler python-cyclopts python-django python-django-import-export + python-django-waffle + python-envisage python-fissix python-fudge # python-genson + python-git python-graphene + python-igraph python-inline-snapshot python-laspy python-laszip python-levenshtein python-lupa + python-mcstasscript + python-mkdocs python-moderngl-window python-msgspec python-mt-940 + python-ofxhome + python-openstep-plist + python-oracledb python-passlib python-picologging python-pint python-propcache python-pydash python-pytest-shell-utilities + python-pyutil + python-qtconsole python-rcon python-schema-salad python-slimmer + python-spdx-tools # python-tld + python-tomli python-xlrd pywavelets + pyzmq rapidfuzz rdflib + scikit-misc slidge slixmpp sphinx-gallery sphinx-panels sphinxcontrib-googleanalytics taskflow ueberzug uncertainties whipper + wxmplot + xonsh # xyzservices yapsy yarl (U) zope.deferredimport + Debian QA Group <packages@qa.debian.org> ¶ aspic buddy + closure-compiler codelite coinor-dylp epm esnacc fte gnubg golang-github-go-macaron-toolbox + golang-github-issue9-identicon + haskell98-report kst libapreq2 libforms lifelines madlib naspro-core openclipart posixtestsuite propellor seyon systemtap terminaltables ucspi-proxy Debian QEMU Team <pkg-qemu-devel@lists.alioth.debian.org> ¶ qemu Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> ¶ akonadi akonadi-calendar akonadi-contacts + incidenceeditor kate kcalutils kdebugsettings kdepim-addons kdevelop-php kf6-breeze-icons kf6-extra-cmake-modules kf6-kirigami kf6-ktexttemplate kf6-syndication kmail kmailtransport kpimtextedit libgravatar libkdepim libksieve mailcommon mailimporter messagelib oxygen-icons pim-data-exporter pim-sieve-editor pimcommon plasma-mobile powerdevil pyside2 pyside6 qt6-3d qt6-5compat qt6-base qt6-charts qt6-connectivity qt6-datavis3d qt6-declarative qt6-graphs qt6-grpc qt6-httpserver qt6-imageformats qt6-languageserver qt6-location qt6-lottie qt6-multimedia qt6-networkauth qt6-positioning qt6-quick3d qt6-quick3dphysics qt6-quickeffectmaker qt6-quicktimeline qt6-remoteobjects qt6-scxml qt6-sensors qt6-serialbus qt6-serialport qt6-shadertools qt6-speech qt6-svg qt6-tools qt6-virtualkeyboard qt6-wayland qt6-webchannel qt6-websockets qt6-webview qtbase-opensource-src # # # qtbase-opensource-src-gles qtconnectivity-opensource-src qtcreator qtdeclarative-opensource-src qtsensors-opensource-src qtwebchannel-opensource-src qtwebengine-opensource-src syndication tokodon Debian R Packages Maintainers <r-pkg-team@alioth-lists.debian.net> ¶ r-cran-cli r-cran-cliapp r-cran-dbitest r-cran-diagnosismed r-cran-dimred r-cran-emayili r-cran-emmeans r-cran-futile.logger r-cran-gert r-cran-gprofiler2 r-cran-lambda.r r-cran-prophet r-cran-r.devices r-cran-r.rsp r-cran-repr r-cran-rhub r-cran-rprojroot r-cran-rsdmx r-cran-rstan r-cran-sass r-cran-teachingdemos r-cran-tm r-cran-tmvtnorm r-cran-tweenr r-cran-xfun Debian Rakudo Maintainers <pkg-rakudo-devel@lists.alioth.debian.org> ¶ moarvm prove6 raku-getopt-long raku-hash-merge raku-json-class raku-json-marshal raku-json-name raku-json-unmarshal raku-license-spdx raku-log raku-meta6 raku-readline raku-tap-harness raku-test-meta raku-uri raku-zef rakudo # Debian Reform Team <team+reform@tracker.debian.org> ¶ reform-handbook Debian Remote Maintainers <debian-remote@lists.debian.org> ¶ freerdp3 python-x2go P remmina x2goserver Debian Robotics Team <team+robotics@tracker.debian.org> ¶ fastdds iceoryx ros2-osrf-testing-tools-cpp ros2-rosidl Debian ROCm Team <debian-ai@lists.debian.org> ¶ rocdbgapi + rocm-docs-core rocm-hipamd rocprim Debian rsbackup maintainers <rsbackup-maint@lists.alioth.debian.org> ¶ rsbackup Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org> ¶ passenger ruby-gnuplot + ruby-otr-activerecord ruby-pygments.rb ruby-re2 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net> ¶ rust-fslock # rust-gperftools rust-laurel rust-rustpython-parser + rust-sequoia-keystore-server rust-sequoia-sq rust-xdg # rustc Debian Scheme Team <debian-scheme@lists.debian.org> ¶ guile-fibers Debian Science Maintainers <debian-science-maintainers@alioth-lists.debian.net> ¶ apertium-cat-ita apertium-cat-srd apertium-oci-fra apertium-srd-ita gap-scscp giac Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org> ¶ asl bitshuffle (U) bliss bornagain (U) c-blosc2 cdo clhep + coin3 coinor-bonmin coinor-cgl combblas cvc5 dolfin dune-common dune-functions dune-geometry dune-grid dune-grid-glue dune-istl dune-localfunctions dune-typetree dxf2gcode eccodes ecflow emoslib # epics-base esys-particle fdb fenics-dolfinx fenicsx-performance-tests ferret-vis fftw3 fiat-ecmwf fortran-fpm fortran-jonquil fortran-regex + fortran-testdrive freecad freesas (U) g2o gap-design gap-sonata geomview gerris getdp gle-graphics-manual gmsh gtsam guidata hdf-eos4 hdf-eos5 joblib lammps libbrahe libflame librsb # lmfit-py med-fichier metis metkit minieigen mona mpi4py mpich mumps neuron nfft ngspetsc node-shiny-server numexpr odc onetbb open3d opengv openmesh openmpi opm-simulators opm-upscaling pandas # pcl petsc plplot pnetcdf + pyfai P (U) pyferret pynx (U) pytango python-bumps python-escript python-fabio (U) python-hdf5plugin python-pyqtgraph python-xarray ros-dynamic-reconfigure scalapack scikit-learn sfepy silo-llnl simbody siscone sketch skimage slepc spglib spooles statsmodels sumo texmacs tkgate + virtuoso-opensource visp vlfeat wannier90 yade Debian Science Team <debian-science-maintainers@alioth-lists.debian.net> ¶ apertium-arg-cat apertium-br-fr apertium-eng-cat apertium-eng-spa apertium-eo-ca apertium-eo-es apertium-eo-fr apertium-es-gl apertium-eu-es apertium-fr-es apertium-fra-cat apertium-fra-frp apertium-hbs-eng apertium-hbs-mkd apertium-hbs-slv apertium-ind-zlm apertium-isl-swe apertium | 2026-01-13T09:30:28 |
https://tests.reproducible-builds.org/debian/bookworm/amd64/pkg_set_build-essential-depends.html | build-essential-depends package set for bookworm/amd64 Debian navigation Change suite/architecture Tested architectures: amd64 arm64 Tested suites: unstable forky trixie bookworm Test results statistics Results for bookworm/amd64 Unreproducible packages: with notes without notes Other package states: package sets Recently tested packages: last 24h last 48h all tested packages packages with .buildinfo files packages without .buildinfo files Scheduled for amd64 Maintainers of in bookworm Reproducible Debian overview Development dashboard Past releases dashboard Categorized issues Bugs filed Variations tested Packages with notifications enabled ⚑ Repositories overview Backend related Broken pieces Documentation (eg. on manual scheduling) Performance stats Health monitoring node overview job overview daily graphs weekly graphs monthly graphs yearly graphs The Reproducible Builds project reproducible-builds.org Reproducible Builds - Docs • News Reproducible Builds in Debian - Wiki SOURCE_DATE_EPOCH specification reproduce.debian.net aims for 100% bit-for-bit identical rebuilds of Debian other CI tests build-essential-depends package set for bookworm/amd64 All tracked package sets for bookworm/amd64 Debian package sets: essential required important build-essential build-essential-depends popcon_top1337-installed-sources key_packages installed_on_debian.org had_a_DSA cii-census cloud-image cloud-image_build-depends desktop package sets: gnome gnome_build-depends kde kde_build-depends mate mate_build-depends xfce xfce_build-depends Debian distribution package sets: CIP CIP_build-depends debian-edu debian-edu_build-depends freedombox freedombox_build-depends grml grml_build-depends tails tails_build-depends pureos_default_install pureos_default_install_build-depends maintenance team package sets: maint_debian-accessibility maint_debian-boot maint_debian-lua maint_debian-med maint_debian-ocaml maint_debian-on-mobile-maintainers maint_debian-python maint_debian-qa maint_debian-science maint_debian-x maint_pkg-android-tools-devel maint_pkg-erlang-devel maint_pkg-fonts-devel maint_pkg-games-devel maint_pkg-golang-maintainers maint_pkg-grass-devel maint_pkg-haskell-maintainers maint_pkg-java-maintainers maint_pkg-javascript-devel maint_pkg-multimedia-maintainers maint_pkg-perl-maintainers maint_pkg-php-pear maint_pkg-openstack maint_pkg-r maint_pkg-ruby-extras-maintainers maint_pkg-rust-maintainers maint_reproducible-builds The package set build-essential-depends in bookworm/amd64 consists of 4635 packages: 104 (2.2%) packages failed to build reproducibly: shaderc efl automake1.11 bnd codenarc cxxtest gtk-sharp2 javaparser mm-common mono-tools guile-3.0 mrmpi nunit pstoedit systemtap lucene4.10 gmetrics emoslib # codec2 scons infinipath-psm ruby-pygments.rb groovy nbsphinx lirc python-graphviz lynx dask qtx11extras-opensource-src doxygen qtsensors-opensource-src h2database fltk1.3 ldc qttools-opensource-src dejagnu auctex freetds qtwayland-opensource-src intel-mediasdk qt6-5compat qt6-multimedia qt6-quick3d eckit qtserialport-opensource-src qtspeech-opensource-src linux86 mpich python-jsonschema secilc oxygen-icons5 eccodes parallel valgrind + libadwaita-1 black underscore python-xarray qtwebsockets-opensource-src qtconnectivity-opensource-src qtsvg-opensource-src qtlocation-opensource-src libcamera gdcm r-base mypy qt6-declarative boost1.74 lucene8 gdb statsmodels python-mkdocs nbconvert petsc qtdeclarative-opensource-src fish lombok odc node-mocha ipyparallel fop bluez gcc-12-cross graphviz + numpy twisted emacs qtbase-opensource-src # # # python3.11 tomcat10 twitter-bootstrap3 commons-vfs php8.2 commons-beanutils icu sphinx-gallery libcommons-lang3-java imagemagick qemu ffmpeg vlc # + xorg-server linux gnupg2 52 (1.1%) packages failed to build from source: ruby-stackprof python-watchgod node-grunt-webpack ruby-fakefs ruby-rest-client ruby-haml strace haskell-unordered-containers freezegun haskell-unicode-collation haskell-citeproc haskell-lpeg python-babel tqdm python-argcomplete ruby-pry-byebug pexpect node-v8flags node-performance-now node-sinon node-webassemblyjs suitesparse node-p-limit haskell-doclayout openldap uglify-js munge node-bl haskell-basement gjs node-flagged-respawn node-tar gtk4 node-css-tree libgweather4 ghc # nspr qtremoteobjects-everywhere-src jupyter-notebook autogen ruby3.1 uvloop devscripts node-rollup-plugin-node-polyfills python-asyncssh espeak-ng yarl nodejs curl gst-plugins-base1.0 perl glibc 18 (0.4%) packages are either in depwait state, blacklisted, not for us, or cannot be downloaded: cross-toolchain-base cross-toolchain-base-ports python-eventlet ceph gcc-12 mono magics++ octave trilinos openblas gcc-11 vtk9 wpewebkit ocaml-dune scipy gcc-12-cross-ports openjfx nss 4461 (96.2%) packages successfully build reproducibly: a52dec aalib abego-treelayout abi-compliance-checker abseil acl acorn acpica-unix adduser adwaita-icon-theme afdko aglfn aiofiles aioredis aiosignal alabaster alex alglib alsa-lib amdgcn-tools animal-sniffer ann ant ant-contrib anthy antlr antlr3 antlr4 antlr-maven-plugin aom apache2 # apache-log4j1.2 apache-log4j2 apache-pom apiguardian apipkg apparmor appconfig appdirs apr apr-util apt argon2 args4j aribb24 armadillo arpack asciidoc asciidoctor asm aspell aspell-en aspell-he assertj-core assimp astroid atf atinject-jsr330 atkmm1.6 at-spi2-core attica-kf5 attr audit autoconf autoconf2.13 autoconf2.69 autoconf-archive autoconf-dickey autodep8 automake-1.16 automat autopkgtest autotools-dev avahi avalon-framework babel-minify babeltrace backbone base-files base-passwd bash bash-completion batik bats bc bcel beautifulsoup4 benchmark biber bignumber.js bindex binfmt-support binutils # binutils-mingw-w64 bison blinker blockdiag blt boost-defaults boot bottleneck bouncycastle box2d breathe brltty brotli bsdmainutils bsh bubblewrap build-essential build-helper-maven-plugin byacc byacc-j byte-buddy bzip2 c3p0 ca-certificates ca-certificates-java cached-property cachy cairo cairocffi cairomm camlbz2 camlp-streams camlzip capstone c-ares cargo castxml catch c-blosc # ccache cdbs cdebconf cdi-api cdparanoia cffsubr cfgrib cfitsio cfortran cftime cgif cglib chafa chardet charls check checkpolicy cherrypy3 chromaprint chrpath cjson classmate classycle cli-common clikit cloudpickle clp clucene-core + cluster cluster-glue clutter-1.0 clutter-imcontext cmake cmark-gfm cmdliner cmdreader cmdtest cme cmocka cm-super codemirror-js coderay codetools coffeescript cogl coinmp coinor-cbc coinor-cgl coinor-osi coinutils colord colors.js colorspacious combblas commonmark commons-configuration commons-csv commons-exec commons-httpclient commons-io commons-math3 commons-parent commons-pool commons-text compreffor compress-lzf constantly contourpy conversant-disruptor # coreutils corosync cpio cppo cppunit cppy cracklib2 crashtest cron cryptsetup cscope cssmin cucumber cudf cunit cup cups # curvesapi cvs cvsps cvxopt cyrus-sasl2 cython + d3 d3-format darts dash dask-sphinx-theme datefudge dav1d db5.3 db-defaults dblatex dbus dbus-broker dbus-c++ dbus-glib dbus-python dconf dctrl-tools dd-plist debconf debhelper debian-archive-keyring debianutils debugedit debugpy deepdiff defcon defusedxml desktop-file-utils device-tree-compiler dh-autoreconf dh-buildinfo dh-cargo dh-elpa dh-exec dh-fortran-mod dh-golang dh-linktree dh-lisp dh-lua dh-make-perl dh-nss dh-ocaml dh-octave dh-python dh-r dh-runit dh-vim-addon dictionaries-common dietlibc diffstat diffutils dill directfb directx-headers discount disruptor dist distlib distro-info distro-info-data djvulibre dlm dnspython docbook docbook2x docbook5-xml docbook-dsssl docbook-to-man docbook-utils docbook-xml docbook-xsl docopt doctest dom4j dos2unix dose3 dot2tex dotconf double-conversion doxia doxia-sitetools dpkg # dpkg-awk draco dragonbox dsdp d-shlibs dtd-parser duktape dulwich dvipng dvisvgm dwarves dwz dxflib e2fsprogs easymock ecbuild eccodes-python eclipse-debian-helper eclipse-emf eclipse-equinox eclipse-jdt-core eclipse-jdt-debug eclipse-jdt-ui eclipse-platform-debug eclipse-platform-resources eclipse-platform-runtime eclipse-platform-team eclipse-platform-text eclipse-platform-ua eclipse-platform-ui ecmwflibs ed ehcache eigen3 el-api elementpath elfutils ell emacsen-common enchant-2 ent entrypoints epstool equinox-p2 error-prone-java eslint evolution-data-server excalibur-logkit exec-maven-plugin execnet exempi expat expect extlib extra-cmake-modules exuberant-ctags faad2 fakechroot faketime fastinfoset fastjar fcitx fdupes feedparser felix-bundlerepository felix-framework felix-gogo-runtime felix-osgi-obr felix-resolver felix-shell felix-utils fest-assert fest-test fest-util ffms2 fftw3 fig2dev file findbugs findlib findlibs findutils fiona firebird3.0 firewalld flac flake8-polyfill flask flex flit flite flit-scm fluidsynth flute fmtlib fontconfig fontforge fontmake fontmath fontparts fontpens fonts-cantarell fonts-crosextra-carlito fonts-dejavu fonts-font-awesome fonts-freefont fonts-gfs-baskerville fonts-gfs-porson fonts-inconsolata fonts-inter fonts-kacst fonts-lato fonts-liberation fonts-liberation2 fonts-linuxlibertine fonts-noto fonts-noto-cjk fonts-noto-color-emoji fonts-open-sans fonts-roboto-slab fonts-urw-base35 fonts-wqy-zenhei fonttools foreign freeglut freeipmi freerdp2 freetype freexl frei0r fribidi frozenlist fsspec ftgl funcparserlib furo fuse fuse3 fyba galera-4 game-music-emu ganymed-ssh2 gavl gawk + gcc-defaults gcc-defaults-ports gcc-mingw-w64 gcovr gcr gdal gdbm gdk-pixbuf gdk-pixbuf-xlib gdl gdmd gem2deb gengetopt genshi geocode-glib geos geronimo-annotation-1.3-spec geronimo-interceptor-3.0-spec geronimo-jacc-1.1-spec geronimo-jms-1.1-spec geronimo-jpa-2.0-spec geronimo-jta-1.2-spec geronimo-osgi-support geronimo-validation-1.1-spec gettext gf-complete gflags ghostscript ghp-import gi-docgen giflib gist git gl2ps glade glew glib2.0 glibmm2.4 glib-networking glm glpk glslang glusterfs glyphsinfo glyphslib gmp gnome-common gnome-desktop gnome-online-accounts gnome-pkg-tools gnu-efi gnulib gnuplot gnustep-base gnustep-make gnutls28 gnu-which gobject-introspection golang-1.19 golang-defaults golang-github-evanw-esbuild golang-golang-x-sys google-glog google-perftools # googletest gperf gpgme1.0 gpm gradle gradle-debian-helper graphene graphicsmagick graphite2 grep groff grpc grunt gsettings-desktop-schemas gsl gspell gssdp gst-plugins-bad1.0 gst-plugins-good1.0 gstreamer1.0 gtk+2.0 gtk+3.0 gtk-doc gtkmm2.4 gtkmm3.0 gtkspell3 gts guava-libraries guice gumbo-parser gunicorn gupnp gupnp-igd guzzle-sphinx-theme gyp gzip h5py happy harfbuzz haskell-aeson haskell-aeson-pretty haskell-aeson-qq haskell-ansi-terminal haskell-ansi-wl-pprint haskell-appar haskell-asn1-encoding haskell-asn1-parse haskell-asn1-types haskell-assoc haskell-async haskell-attoparsec haskell-base16-bytestring haskell-base64-bytestring haskell-base-compat haskell-base-compat-batteries haskell-base-orphans haskell-bifunctors haskell-blaze-builder haskell-blaze-html haskell-blaze-markup haskell-boring haskell-byteorder haskell-cabal-doctest haskell-cabal-install haskell-call-stack haskell-case-insensitive haskell-cereal haskell-chasingbottoms haskell-clock haskell-cmdargs haskell-code-page haskell-colour haskell-commonmark haskell-commonmark-extensions haskell-commonmark-pandoc haskell-comonad haskell-conduit haskell-conduit-extra haskell-connection haskell-contravariant haskell-cookie haskell-cryptohash-sha256 haskell-cryptonite haskell-data-default haskell-data-default-class haskell-data-default-instances-containers haskell-data-default-instances-dlist haskell-data-default-instances-old-locale haskell-data-fix haskell-dec haskell-devscripts haskell-diff haskell-digest haskell-distributive haskell-dlist haskell-doctemplates haskell-doctest haskell-echo haskell-ed25519 haskell-edit-distance haskell-either haskell-emojis haskell-extensible-exceptions haskell-extra haskell-fgl haskell-file-embed haskell-filemanip haskell-filepattern haskell-foldl haskell-foundation haskell-generic-deriving haskell-ghc-paths haskell-glob haskell-hackage-security haskell-haddock-library haskell-hashable haskell-heaps haskell-hostname haskell-hourglass haskell-hslua haskell-hslua-aeson haskell-hslua-classes haskell-hslua-core haskell-hslua-marshalling haskell-hslua-module-path haskell-hslua-module-system haskell-hslua-module-text haskell-hslua-module-version haskell-hslua-objectorientation haskell-hslua-packaging haskell-hspec haskell-hspec-core haskell-hspec-discover haskell-hspec-expectations haskell-hsyaml haskell-http haskell-http-client haskell-http-client-tls haskell-http-types haskell-hunit haskell-indexed-traversable haskell-indexed-traversable-instances haskell-integer-logarithms haskell-iproute haskell-ipynb haskell-jira-wiki-markup haskell-js-dgtable haskell-js-flot haskell-js-jquery haskell-juicypixels haskell-language-python haskell-lexer haskell-libyaml haskell-logging-facade haskell-logict haskell-lua haskell-lua-arbitrary haskell-lukko haskell-memory haskell-mime-types haskell-mockery haskell-monad-control haskell-monads-tf haskell-mono-traversable haskell-network haskell-network-uri haskell-old-locale haskell-old-time haskell-onetuple haskell-optparse-applicative haskell-pandoc-lua-marshal haskell-pandoc-types haskell-pem haskell-pretty-show haskell-primitive haskell-profunctors haskell-quickcheck haskell-quickcheck-instances haskell-quickcheck-io haskell-quickcheck-unicode haskell-random haskell-raw-strings-qq haskell-regex-base haskell-regex-posix haskell-regex-tdfa haskell-resolv haskell-resourcet haskell-safe haskell-scientific haskell-semialign haskell-semigroupoids haskell-semigroups haskell-setenv haskell-sha haskell-shake haskell-silently haskell-singleton-bool haskell-skylighting haskell-skylighting-core haskell-smallcheck haskell-socks haskell-some haskell-split haskell-splitmix haskell-src-exts haskell-src-meta haskell-statevar haskell-streaming-commons haskell-strict haskell-syb haskell-tagged haskell-tagsoup haskell-tar haskell-tasty haskell-tasty-expected-failure haskell-tasty-golden haskell-tasty-hunit haskell-tasty-kat haskell-tasty-lua haskell-tasty-quickcheck haskell-tasty-smallcheck haskell-temporary haskell-test-framework haskell-test-framework-hunit haskell-test-framework-quickcheck2 haskell-texmath haskell-text-conversions haskell-text-short haskell-tf-random haskell-th-abstraction haskell-th-compat haskell-these haskell-th-expand-syns haskell-th-lift haskell-th-lift-instances haskell-th-orphans haskell-th-reify-many haskell-time-compat haskell-timeit haskell-tls haskell-transformers-base haskell-transformers-compat haskell-typed-process haskell-unbounded-delays haskell-unicode-data haskell-unicode-transforms haskell-uniplate haskell-unix-compat haskell-unliftio haskell-unliftio-core haskell-utf8-string haskell-uuid-types haskell-vector haskell-vector-algorithms haskell-wcwidth haskell-witherable haskell-x509 haskell-x509-store haskell-x509-system haskell-x509-validation haskell-xcb-types haskell-xml haskell-xml-conduit haskell-xml-types haskell-yaml haskell-zip-archive haskell-zlib hatchling hatch-vcs hawtjni hdf5 heimdal help2man hfst-ospell hicolor-icon-theme highlight.js highway hiredis hostname hpsockd hscolour hspell hsqldb hsqldb1.8.0 html2text html5lib html-xml-utils httpbin httpcomponents-client httpcomponents-core httpcore http-parser httpx hunspell hwloc hypercorn hyperlink hyphen hypre ibus icoutils icu4j igerman98 ijs imath imlib2 impacket incremental indent iniparser init-system-helpers inkscape intellij-annotations intel-processor-trace intltool intltool-debian io-stringy iproute2 iptables iputils ipykernel ipython ipython-genutils ipywidgets isl iso-codes isorelax isort ispell istack-commons itstool ivy ivy-debian-helper ivyplusplus jackd2 jackrabbit jackson-annotations jackson-core jackson-databind jackson-dataformat-xml jackson-dataformat-yaml jackson-module-jaxb-annotations jakarta-activation jakarta-mail jakarta-servlet-api janest-ocaml-compiler-libs janino jansi jansi1 jansi-native jansson jaraco.classes jaraco.collections jaraco.context jaraco.text jargs jarjar jarjar-maven-plugin jatl javabeans-activation-framework javacc javacc5 javacc-maven-plugin java-comment-preprocessor java-common javahelp2 javamail javascript-common javassist javatools # java-wrappers jaxb jaxb-api jaxrpc-api jaxrs-api jbig2dec jbigkit jboss-bridger jboss-jdeparser2 jboss-logging jboss-logging-tools jboss-logmanager jboss-modules jcifs jcommander jctools jdcal jdependency jdupes jeepney jemalloc jerasure jeromq jetring jetty9 jffi jflex jformatstring jgit jinja2 jlex jline jline2 jline3 jmock jmock2 jnr-constants jnr-enxio jnr-ffi jnr-posix jnr-unixsocket jnr-x86asm joblib joda-convert jpeg-xl jq jquery-goodies jquery-tablesorter jquery-throttle-debounce jquery-typeahead.js jqueryui jquery-ui-themes jsbundle-web-interfaces jsch jsch-agent-proxy json-c json-glib jsonpickle json-schema-test-suite json-simple jsoup jsp-api jtb jtharness jtidy jtreg6 jts judy junit junit4 junit5 junixsocket jupyter-client jupyter-console jupyter-core jupyterlab-pygments jupyter-packaging jzlib karchive kauth kbookmarks kcodecs kcompletion kconfig kconfigwidgets kcoreaddons kcrash kdbusaddons kded kdoctools kernel-wedge kernsmooth keyutils kglobalaccel kguiaddons khronos-opencl-clhpp khronos-opencl-headers ki18n kiconthemes kio kitemviews kiwisolver kjobwidgets kmod knopflerfish-osgi knotifications krb5 # kronosnet kservice ktextwidgets kwallet-kf5 kwidgetsaddons kwindowsystem kxml2 kxmlgui kyua ladspa-sdk lame lapack latex2html latexmk lattice lazy-object-proxy lbfgsb lcdf-typetools lcms2 lcov leptonlib lerc less less.js leveldb lib2geom libabw libaec libaio libalgorithm-c3-perl libalgorithm-diff-perl libaliased-perl libao P libaopalliance-java libapache-poi-java libapp-cmd-perl libapp-fatpacker-perl libapt-pkg-perl libarchive libarchive-zip-perl libarray-intspan-perl libarray-unique-perl libarray-utils-perl libass libassuan libasyncns libautovivification-perl libavc1394 libavif libb2 libb64 libbase libb-cow-perl libb-debug-perl libberkeleydb-perl libb-hooks-endofscope-perl libb-hooks-op-check-perl libb-keywords-perl libbluray libboolean-perl libbpf libbs2b libbsd libbsf-java libbtm-java libbusiness-isbn-data-perl libbusiness-isbn-perl libbusiness-ismn-perl libbusiness-issn-perl libcaca libcacard libcanary-stability-perl libcanberra libcap2 libcap-ng libcapture-tiny-perl libcarp-assert-more-perl libcbor libcddb libcdio libcdio-paranoia libcdr libcgi-pm-perl libclass-accessor-perl libclass-c3-perl libclass-data-inheritable-perl libclass-inspector-perl libclass-load-perl libclass-load-xs-perl libclass-method-modifiers-perl libclass-singleton-perl libclass-tiny-perl libclass-xsaccessor-perl libclone-choose-perl libclone-perl libcloudproviders libcommons-cli-java libcommons-codec-java libcommons-collections3-java libcommons-collections4-java libcommons-compress-java libcommons-dbcp-java libcommons-digester-java libcommon-sense-perl libcommons-fileupload-java libcommons-jexl2-java libcommons-jxpath-java libcommons-lang-java libcommons-logging-java libcommons-net-java libcommons-validator-java # libconfig libconfig-autoconf-perl libconfig-auto-perl libconfig-inifiles-perl libconfig-model-backend-yaml-perl libconfig-model-dpkg-perl libconfig-model-perl libconfig-tiny-perl libconfuse libconst-fast-perl libcontextual-return-perl libconvert-binhex-perl libcpanel-json-xs-perl libcpan-meta-check-perl libcrypto++ libcue libdaemon libdata-compare-perl libdata-dpath-perl libdata-dump-perl libdata-messagepack-perl libdata-optlist-perl libdata-section-perl libdata-section-simple-perl libdata-uniqid-perl libdata-validate-domain-perl libdata-validate-ip-perl libdata-validate-uri-perl libdata-visitor-perl libdate-simple-perl libdatetime-calendar-julian-perl libdatetime-format-builder-perl libdatetime-format-mysql-perl libdatetime-format-strptime-perl libdatetime-locale-perl libdatetime-perl libdatetime-timezone-perl libdatrie libdbd-sqlite3-perl libdbi libdbi-perl libdbm-deep-perl libdbusmenu-qt libdc1394 libdca libde265 libdebian-copyright-perl libdebian-installer libdecor-0 libdeflate libdevel-callchecker-perl libdevel-checkbin-perl libdevel-checkcompiler-perl libdevel-checklib-perl libdevel-confess-perl libdevel-cover-perl libdevel-cycle-perl libdevel-declare-perl libdevel-globaldestruction-perl libdevel-mat-dumper-perl libdevel-overloadinfo-perl libdevel-partialdump-perl libdevel-size-perl libdevel-stacktrace-perl libdevel-symdump-perl libdist-checkconflicts-perl libdrm libdumbtts libdv + libdvbpsi libdvdnav libdvdread libdynaloader-functions-perl libebml libe-book libedit libemail-address-xs-perl libemf libencode-eucjpascii-perl libencode-eucjpms-perl libencode-hanextra-perl libencode-jis2k-perl libencode-locale-perl libencode-perl libeot libepoxy libepubgen liberror-perl libetonyek libev libeval-closure-perl libevdev libevent libexception-class-perl libexecs libexif libexporter-lite-perl libexporter-tiny-perl libexttextcat libextutils-cchecker-perl libextutils-config-perl libextutils-cppguess-perl libextutils-depends-perl libextutils-helpers-perl libextutils-installpaths-perl libextutils-libbuilder-perl libextutils-pkgconfig-perl libfabric libfcgi libfeature-compat-class-perl libfeature-compat-try-perl libffado libffi libfido2 libfile-basedir-perl libfile-chdir-perl libfile-copy-recursive-perl libfile-desktopentry-perl libfile-dirlist-perl libfile-find-rule-perl libfile-find-rule-perl-perl libfile-homedir-perl libfile-libmagic-perl libfile-listing-perl libfile-pushd-perl libfile-remove-perl libfile-sharedir-perl libfile-slurper-perl libfile-slurp-perl libfile-touch-perl libfile-which-perl libfixmath libfontenc libfonts-java libfont-ttf-perl libformula libfreeaptx libfreehand libftdi1 libfuture-asyncawait-perl libfuture-perl libgav1 libgc libgcrypt20 libgd2 libgdiplus libgeotiff libgetopt-argvfile-perl libgetopt-long-descriptive-perl libgit2 libgitlab-api-v4-perl libgit-wrapper-perl libglade2 libglu libglvnd libgoogle-gson-java libgpg-error libgphoto2 libgraph-perl libgsf libgsm libgtop2 libgudev libgusb + libgzstream libhamcrest-java libharu libhash-defhash-perl libhash-merge-perl libhdf4 libheap-perl libheif libhibernate3-java libhibernate-commons-annotations-java libhibernate-validator-java libhtml-form-perl libhtml-html5-entities-perl libhtml-parser-perl libhtml-tagset-perl libhtml-tokeparser-simple-perl libhtml-tree-perl libhttp-cookies-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libhttp-tiny-multipart-perl libiberty libical3 libice libid3tag libidn libidn2 libiec61883 libieee1284 libimage-exiftool-perl libimagequant libimobiledevice libimporter-perl libimport-into-perl libindirect-perl libinih libinput libinstpatch libio-async-perl libiodbc2 libio-html-perl libio-interactive-perl libio-prompter-perl libio-prompt-tiny-perl libio-pty-perl libio-socket-ssl-perl libio-string-perl libio-tiecombine-perl libipc-run3-perl libipc-run-perl libipc-system-simple-perl libiptcdata libiscsi libiterator-perl libiterator-util-perl libitext1-java libitext-java libixion libjavaewah-java libjaxen-java libjaxp1.3-java libjcip-annotations-java libjcommon-java libjdepend-java libjdom1-java libjdom2-java libjettison-java libjgroups-java libjna-java libjoda-time-java libjpeg-turbo libjs-jquery-hotkeys libjs-jquery-isonscreen libjs-jquery-timeago libjsoncpp libjson-maybexs-perl libjson-perl libjsonp-java libjson-xs-perl libjs-qunit libjsr305-java libjs-requirejs-text libjtype-java libjuniversalchardet-java libjwt libjxl-testdata libkate libkml libkryo-java libksba liblangtag liblayout liblc3 libldac liblingua-en-inflect-perl liblingua-translit-perl liblist-allutils-perl liblist-compare-perl liblist-moreutils-perl liblist-moreutils-xs-perl liblist-someutils-perl liblist-utilsby-perl libloader liblocale-gettext-perl liblocale-us-perl liblockfile liblog-any-adapter-screen-perl liblog-any-perl liblog-log4perl-perl liblouis liblqr liblrdf libltc liblwp-mediatypes-perl liblwp-protocol-https-perl liblzf libmad libmailtools-perl libmanette libmath-base85-perl libmatio libmatroska libmbim libmce-perl libmd libmetrics-any-perl libmicrohttpd libmime-charset-perl libmime-tools-perl libminlog-java libmixin-linewise-perl libmldbm-perl libmnl libmodplug libmodule-build-perl libmodule-build-tiny-perl libmodule-build-xsutil-perl libmodule-implementation-perl libmodule-install-perl libmodule-pluggable-perl libmodule-refresh-perl libmodule-runtime-conflicts-perl libmodule-runtime-perl libmodule-scandeps-perl libmojolicious-perl libmoo-perl libmoose-perl libmoox-aliases-perl libmouse-perl libmousex-nativetraits-perl libmousex-strictconstructor-perl libmpc libmpeg3 libmro-compat-perl libmspub libmtp libmwaw libmysofa libnamespace-autoclean-perl libnamespace-clean-perl libnative-platform-java libndp libnetaddr-ip-perl libnet-domain-tld-perl libnetfilter-conntrack libnet-http-perl libnet-ipv6addr-perl libnet-netmask-perl libnet-smtp-ssl-perl libnet-ssleay-perl libnfnetlink libnfs libnftnl libnice libnl3 libnotify libnsl libnumber-compare-perl libnumbertext liboauth libobject-pad-perl libodfgen libogg liboggz libomxil-bellagio libonig libopencsd libopenmpt liborcus liboro-java libotf libpackage-deprecationmanager-perl libpackage-stash-perl libpackage-stash-xs-perl libpadwalker-perl libpagemaker libpaper libparams-classify-perl libparams-coerce-perl libparams-util-perl libparams-validate-perl libparams-validationcompiler-perl libparanamer-java libparse-debcontrol-perl libparse-recdescent-perl libparse-yapp-perl libpath-class-perl libpath-iterator-rule-perl libpath-tiny-perl libpcap libpciaccess libpdf-api2-perl libpdfbox2-java libpdfbox-java libpdfrenderer-java libperl4-corelibs-perl libperl-critic-community-perl libperl-critic-perl libperl-critic-policy-variables-prohibitlooponhash-perl libperl-critic-pulp-perl libperlio-gzip-perl libperlio-utf8-strict-perl libperl-minimumversion-perl libpfm4 libpgm libphonenumber libpipeline libpixie-java libplacebo libplist libpng1.6 libpod-constants-perl libpod-coverage-perl libpod-coverage-trustpod-perl libpod-eventual-perl libpod-minimumversion-perl libpod-parser-perl libpod-pom-perl libpod-pom-view-restructured-perl libpod-spell-perl libppi-perl libppix-quotelike-perl libppix-regexp-perl libppix-utilities-perl libppix-utils-perl libproc-processtable-perl libproxool-java libproxy libpsl libpsm2 libpthread-stubs libqb libqmi libqrtr-glib libqxp librabbitmq libraw libraw1394 libreadonly-perl libre-engine-re2-perl libreflectasm-java libref-util-perl libregexp-common-perl libregexp-ipv6-perl libregexp-java libregexp-pattern-defhash-perl libregexp-pattern-license-perl libregexp-pattern-perl libregexp-wildcards-perl librelaxng-datatype-java libreoffice # libreplaygain librepository librest librevenge librist librole-tiny-perl librsvg librsync librttopo libsamplerate libsass libsass-python libsaxon-java libscope-guard-perl libsdl2 libseccomp libsecret libselinux libsemanage libsepol libsereal-decoder-perl libsereal-encoder-perl libsereal-perl libserializer libset-intspan-perl libset-object-perl libset-scalar-perl libsgmls-perl libshout libsigc++-2.0 libsigsegv libslf4j-java libslirp libsm libsndfile libsocket6-perl libsodium libsoftware-licensemoreutils-perl libsoftware-license-perl libsort-key-perl libsort-versions-perl libsoup2.4 libsoup3 libsoxr libspatialaudio libspecio-perl libspectre libspiro libspring-java libsrtp2 libssh libssh2 libstaroffice libstatgrab libstax2-api-java libstax-java libstb libstrictures-perl libstring-copyright-perl libstring-escape-perl libstring-format-perl libstring-license-perl libstring-rewriteprefix-perl libstring-shellquote-perl libstring-trim-more-perl libstruct-dumb-perl libsub-exporter-perl libsub-exporter-progressive-perl libsub-identify-perl libsub-info-perl libsub-install-perl libsub-name-perl libsub-override-perl libsub-quote-perl libsub-uplevel-perl libsuper-perl libsvm libswarmcache-java libswitch-perl libsyntax-keyword-dynamically-perl libsyntax-keyword-match-perl libsyntax-keyword-multisub-perl libsyntax-keyword-try-perl libtaint-runtime-perl libtask-weaken-perl libtasn1-6 libteam libtemplate-perl libterm-readkey-perl libterm-table-perl libterralib libtest2-suite-perl libtest2-tools-command-perl libtest-cleannamespaces-perl libtest-cpan-meta-perl libtest-deep-perl libtest-differences-perl libtest-exception-perl libtest-failwarnings-perl libtest-fatal-perl libtest-filename-perl libtest-leaktrace-perl libtest-longstring-perl libtest-memory-cycle-perl libtest-metrics-any-perl libtest-minimumversion-perl libtest-mockrandom-perl libtest-needs-perl libtest-number-delta-perl libtest-output-perl libtest-perl-critic-perl libtest-pod-coverage-perl libtest-pod-perl libtest-refcount-perl libtest-regexp-pattern-perl libtest-requires-perl libtest-spelling-perl libtest-strict-perl libtest-synopsis-perl libtest-taint-perl libtest-warnings-perl libtest-warn-perl libtest-without-module-perl libtext-autoformat-perl libtext-bibtex-perl libtext-charwidth-perl libtext-csv-perl libtext-csv-xs-perl libtext-diff-perl libtext-glob-perl libtext-hogan-perl libtext-iconv-perl libtext-levenshtein-damerau-perl libtext-levenshteinxs-perl libtext-markdown-discount-perl libtext-reform-perl libtext-roman-perl libtext-template-perl libtext-trim-perl libtext-unidecode-perl libtextwrap libtext-wrapi18n-perl libtext-xslate-perl libthai libtheora libtie-cycle-perl libtie-ixhash-perl libtie-toobject-perl libtimedate-perl libtime-duration-perl libtime-moment-perl libtirpc libtoml-tiny-perl libtommath libtool libtraceevent libtracefs libtruth-java libtry-tiny-perl libtypes-serialiser-perl libtype-tiny-perl libudfread libunicode-linebreak-perl libunicode-utf8-perl libunistring libunwind liburcu liburing liburi-perl libusb libusb-1.0 libusbmuxd libutempter libuv1 libva libvariable-magic-perl libvdpau libverto libvidstab libvisio libvisual libvncserver libvoikko libvorbis libvpx libwacom libwant-perl libwebp libwmf libwnck3 libwoodstox-java libwpd libwpe libwpg libwps libwww-curl-perl libwww-curl-simple-perl libwww-mechanize-perl libwww-perl libwww-robotrules-perl libx11 libxalan2-java libxau libxaw libxbean-java libxcb libxcomposite libxcrypt libxcursor libxcvt libxdamage libxdmcp libxerces2-java libxext libxfce4ui libxfce4util libxfixes libxfont libxi libxinerama libxkbcommon libxkbfile libxml2 libxml++2.6 libxml-commons-resolver1.1-java libxml-dom-perl libxml-java libxml-libxml-perl libxml-libxml-simple-perl libxml-libxslt-perl libxml-namespacesupport-perl libxml-parser-perl libxml-perl libxml-regexp-perl libxml-sax-base-perl libxml-sax-expat-perl libxml-sax-perl libxml-security-java libxml-simple-perl libxmltok libxml-writer-perl libxmu libxpm libxpp2-java libxpp3-java libxpresent libxrandr libxrender libxres libxshmfence libxslt libxs-parse-keyword-perl libxs-parse-sublike-perl libxss libxstream-java libxstring-perl libxt libxtst libxv libxxf86vm libyaml libyaml-libyaml-perl libyaml-perl libyaml-pp-perl libyaml-tiny-perl libyuv libzip libzmf libzstd licensecheck lightcouch lilv linkify-it-py links2 lintian linux-atm linux-base linuxdoc-tools litehtml lksctp-tools llvm-defaults llvm-toolchain-13 llvm-toolchain-14 llvm-toolchain-15 lmdb lmodern lm-sensors localehelper locket log4shib logback logilab-common lombok-patcher lp-solve lsb-release-minimal lsof ltrace lua5.1 lua5.2 lua5.3 lua5.4 lua-bitop lua-cjson lumino lutok lv2 lvm2 lwt lxml lyx lz4 lzlib lzo2 lzop m17n-db m17n-lib m4 mailcap mako man2html man-db mariadb marisa markdown markdown-it-py markupsafe mat2 mathjax matplotlib matplotlib-inline maven maven-ant-helper maven-antrun-plugin maven-archiver maven-artifact-transfer maven-assembly-plugin maven-bundle-plugin maven-clean-plugin maven-common-artifact-filters maven-compiler-plugin maven-debian-helper maven-dependency-analyzer maven-dependency-plugin maven-dependency-tree maven-deploy-plugin maven-doxia-tools maven-enforcer maven-file-management maven-filtering maven-install-plugin maven-invoker maven-invoker-plugin maven-jar-plugin maven-javadoc-plugin maven-jaxb2-plugin maven-mapping maven-parent maven-plugin-testing maven-plugin-tools maven-processor-plugin maven-replacer-plugin maven-repo-helper maven-reporting-api maven-reporting-exec maven-reporting-impl maven-repository-builder maven-resolver maven-resources-plugin maven-scm maven-script-interpreter maven-shade-plugin maven-shared-incremental maven-shared-io maven-shared-utils maven-site-plugin maven-source-plugin maven-war-plugin mawk mbedtls md4c mdds mdit-py-plugins mdocml mdurl media-types memcached mercurial mergedeep mesa meson meson-python metis mgcv mhash mime-support mingw-w64 mini-soong minizip miscfiles mistune mitmproxy mjpegtools mkdocs-nature mockito modello modello-maven-plugin modemmanager modernizr mojo-executor mongo-java-driver more-itertools motif mozilla-devscripts mozjs102 mpack mpclib3 mpeg2dec mpfr4 mpg123 mpi4py mpi-defaults mpmath msgpack-c msgpack-cxx msv mtdev mumps munge-maven-plugin mustache.js mutagen mutatormath mysql-defaults myst-parser mythes nas nasm nbclient + nbformat ncurses ndctl nekohtml neon27 netbase netcat-openbsd netcdf netcdf4-python netcdf-cxx-legacy netpbm-free net-snmp nettle net-tools netty netty-tcnative network-manager newt nftables nghttp2 ninja-build nlme nlohmann-json3 nltk node-abab node-abbrev node-abstract-leveldown node-accepts node-after node-agent-base node-ajv node-ajv-keywords node-ampproject-remapping node-ansi-colors node-ansi-escapes node-ansi-font node-ansi-regex node-ansi-styles node-anymatch node-any-promise node-aproba node-archy node-are-we-there-yet node-arg node-argparse node-array-differ node-array-find-index node-array-flatten node-array-from node-array-union node-array-uniq node-arr-diff node-arr-flatten node-arrify node-arr-union node-asap node-asn1.js node-assert node-assertion-error node-assume node-ast-types node-async node-async-each node-asynckit node-auto-bind node-autoprefixer node-ava node-axios node-babel7 node-babel-loader node-babel-plugin-add-module-exports node-babel-plugin-lodash node-babel-polyfills node-babylon node-balanced-match node-base node-base64-js node-basic-auth node-basic-auth-parser node-big.js node-binary-extensions node-bindings node-bluebird node-blueimp-md5 node-bn.js node-body-parser node-boolbase node-bootstrap-tour node-brace-expansion node-braces node-brfs node-brorand node-browserify node-browserify-aes node-browserify-cipher node-browserify-des node-browserify-lite node-browserify-rsa node-browserify-sign node-browserify-zlib node-browser-pack node-browser-resolve node-browserslist node-browser-stdout node-browser-unpack node-buble node-buf-compare node-buffer node-buffer-equal node-bufferjs node-buffer-xor node-builtin-modules node-builtins node-builtin-status-codes node-busboy node-bytes node-cacache node-cache-base node-cached-path-relative node-callback-stream node-caller node-camelcase node-caniuse-db node-caniuse-lite node-cbor node-chai node-chai-as-promised node-chainsaw node-chalk node-check-error node-cheerio node-chokidar node-chownr node-chrome-trace-event node-ci-info node-cipher-base node-cjs-module-lexer node-cjson node-clean-css node-clean-yaml-object node-cli-boxes node-cli-cursor node-clipboard node-cli-spinners node-cli-table node-cli-truncate node-cliui node-cli-width node-clone node-cloneable-readable node-clone-buffer node-clone-deep node-clone-stats node-co node-coffeeify node-collection-visit node-color-convert node-color-name node-columnify node-combined-stream node-combine-source-map # node-commander node-commondir node-compare-versions node-component-emitter node-concat-stream node-concat-with-sourcemaps node-concordance node-config-chain node-console-browserify node-console-control-strings node-console-group node-consolidate node-constants-browserify node-content-disposition node-content-type node-convert-source-map + node-cookie node-cookiejar node-cookie-parser node-cookies node-cookie-signature node-copy-concurrently node-core-js node-core-util-is node-cosmiconfig node-coveralls node-create-ecdh node-create-hash node-create-hmac node-create-require node-crypto-browserify node-crypto-random-string node-css node-css-loader node-cssom node-css-select node-css-selector-tokenizer node-cssstyle node-csstype node-css-what node-currently-unhandled node-cyclist node-d node-d3-queue node-data-uri-to-buffer node-dateformat node-date-time node-debbundle-es-to-primitive node-debbundle-insert-module-globals node-debug node-debug-fabulous node-decamelize node-decompress-response node-deep-eql node-deep-equal node-deep-for-each node-deep-is node-deepmerge node-defaults node-defined node-define-properties node-define-property node-del node-delayed-stream node-delegates node-depd node-deps-sort node-des.js node-detect-file node-detective node-detect-newline node-diff node-doctrine node-domain-browser node-domelementtype node-domhandler node-domino node-dom-serializer node-domutils node-dot node-dot-prop node-duplexer node-duplexer3 node-duplexify node-ebnf-parser node-ejs node-electron-to-chromium node-elliptic node-emittery node-emojis-list node-encodeurl node-encoding node-end-of-stream node-enhanced-resolve node-entities node-err-code node-errno node-error-ex node-es5-ext node-es6-error node-es6-iterator node-es6-map node-es6-promise node-es6-set node-es6-shim node-es6-symbol node-es6-weak-map node-es-abstract node-escape-html node-escape-string-regexp node-escodegen node-escope node-eslint-plugin-es node-eslint-plugin-eslint-plugin node-eslint-plugin-node node-eslint-scope node-eslint-utils node-eslint-visitor-keys node-es-module-lexer node-espree node-esprima node-esprima-fb node-esquery node-esrecurse node-estraverse node-estree-walker node-esutils # node-etag node-event-emitter node-eventemitter2 node-eventemitter3 node-events node-everything.js node-evp-bytestokey node-execa node-exit node-expand-tilde node-expect.js node-express node-extend node-extend-shallow node-external-editor node-falafel node-fancy-log node-fast-deep-equal node-fast-levenshtein node-fast-safe-stringify node-fbjs node-fetch node-file-entry-cache node-file-loader node-filesize node-file-sync-cmp node-fill-range node-finalhandler node-find-cache-dir node-find-up node-findup-sync node-fined node-flatted node-flow-remove-types node-flush-write-stream node-fn-name node-follow-redirects node-foreground-child node-for-in node-form-data node-formidable node-for-own node-fresh node-from2 node-fs-exists-sync node-fs-extra node-fs-readdir-recursive node-fs.realpath node-fs-write-stream-atomic node-functional-red-black-tree node-function-bind + node-gauge node-get-caller-file node-get-func-name node-getobject node-get-stdin node-get-stream node-gettext-parser node-get-value node-glob node-global-modules node-global-prefix node-globals node-globby node-glob-parent node-glob-stream node-glogg node-got node-graceful-fs node-graphlibrary node-growl node-grunt-babel node-grunt-cli node-grunt-contrib-clean node-grunt-contrib-concat node-grunt-contrib-copy node-grunt-contrib-internal node-grunt-contrib-nodeunit node-grunt-contrib-requirejs node-grunt-contrib-uglify node-grunt-known-options node-grunt-legacy-log node-grunt-legacy-log-utils node-grunt-legacy-util node-gulp node-gulp-babel node-gulp-concat node-gulp-flatten node-gulplog node-gulp-newer node-gulp-plumber node-gulp-rename node-gulp-sourcemaps node-gyp node-gzip-size node-handlebars node-has-ansi node-has-flag node-hash-base node-hashish node-hash.js node-hash-test-vectors node-has-unicode node-has-value node-has-values node-he node-hmac-drbg node-hooker node-hook-std node-hosted-git-info node-html5shiv node-htmlescape node-htmlparser2 node-http-errors node-http-proxy node-https-browserify node-https-proxy-agent node-iconv node-iconv-lite node-icss-utils node-ieee754 node-iferr node-ignore node-ignore-by-default node-immediate node-immutable node-imurmurhash node-indent-string node-inflight node-inherits node-ini node-inline-source-map node-inquirer node-interpret node-invariant node-ip node-ipaddr.js node-ip-regex node-irregular-plurals node-isarray node-is-arrayish node-is-binary-path node-is-buffer node-is-builtin-module node-is-descriptor node-is-directory node-isexe node-is-extendable node-is-extglob node-is-generator-fn node-is-glob node-is-module node-is-negated-glob node-is-node node-is-number node-is-obj node-is-object node-isobject node-isomorphic-fetch node-is-path-cwd node-is-path-inside node-is-plain-obj node-is-plain-object node-is-primitive node-is-promise node-is-reference node-is-stream node-isstream node-istanbul node-is-typedarray node-is-unc-path node-is-valid-glob node-is-windows node-jake node-jasmine node-jed node-jest node-jison node-jison-lex node-jju node-jquery node-jquery-mousewheel node-js-beautify node-jschardet node-jsdom node-jsesc node-json5 # node-json-buffer node-jsonfile node-jsonify node-jsonparse node-json-parse-better-errors node-json-parse-helpfulerror node-json-schema node-json-schema-traverse node-jsonselect node-json-stable-stringify node-jsonstream node-json-stringify-safe node-js-tokens node-js-yaml node-kew node-keygrip node-kind-of node-klaw node-labeled-stream-splicer node-lazystream node-lcov-parse node-leveldown node-leven node-levn node-lex-parser node-libs-browser node-lie node-liftoff node-livescript node-loader-runner node-loader-utils node-load-grunt-tasks node-load-json-file node-locate-character node-locate-path node-lodash node-log4js node-log-driver node-loose-envify node-lowercase-keys node-lru-cache node-lunr node-magic-string node-make-dir node-make-error node-map-cache node-map-visit node-marked node-marked-man node-matcher node-md5-hex node-md5.js node-md5-o-matic node-mdn-browser-compat-data node-mdn-data node-media-typer node-mem node-memfs node-memory-fs node-merge-descriptors node-merge-stream node-methods node-micromatch node-mime node-mime-types node-mimic-fn node-mimic-response node-minimalistic-crypto-utils node-minimatch node-minimist node-minipass node-mississippi node-mixin-deep node-mkdirp node-mkdirp-classic node-module-deps node-moment node-morgan node-move-concurrently node-ms node-multimatch node-mutate-fs node-mute-stream node-mysticatea-eslint-plugin node-mz node-n3 node-nan node-ncp node-negotiator node-neo-async node-nock node-nodeunit node-nomnom node-nopt node-normalize.css node-normalize-package-data node-normalize-path node-normalize-range node-npm-bundled node-npmlog node-npm-package-arg node-npm-run-path node-nth-check node-object-assign node-object-inspect node-object-path node-object-visit node-once node-on-finished node-on-headers node-opener node-optimist node-optionator node-ordered-read-streams node-os-browserify node-osenv node-os-tmpdir node-output-file-sync node-package-preamble node-pako node-parallel-transform node-parents node-parse5 node-parse-asn1 node-parse-base64vlq-mappings node-parse-filepath node-parse-json node-parse-ms node-parseurl node-pascalcase node-path-browserify node-path-dirname node-path-exists node-path-is-absolute node-path-is-inside node-path-root node-path-root-regex node-path-to-regexp node-path-type node-pathval node-pbkdf2 node-p-cancelable node-pend node-p-finally node-picocolors node-pify node-pinkie node-pinkie-promise node-p-is-promise node-pkg-dir node-pkg-up node-p-locate node-plugin-error node-plur node-p-map node-po2json node-postcss node-postcss-cli node-postcss-load-config node-postcss-modules-extract-imports node-postcss-modules-values node-postcss-reporter node-postcss-value-parser node-prelude-ls node-pretty-bytes node-pretty-hrtime node-pretty-ms node-private node-process node-process-nextick-args node-progress node-promise node-promise-inflight node-promise-retry node-prompts node-promzard node-propagate node-propget node-prop-types node-proto-list node-proxy node-proxy-addr node-proxy-from-env node-proxyquire node-prr node-pruddy-error node-pseudorandombytes node-p-timeout node-public-encrypt node-pump node-pumpify node-punycode node-q node-qs node-querystring node-querystring-es3 node-quick-lru node-quote-stream node-ramda node-random-bytes node-randombytes node-randomfill node-range-parser node-raw-body node-react node-read node-readable-stream node-readdirp node-read-only-stream node-read-package-json node-read-pkg node-read-pkg-up node-recast node-rechoir node-regenerate node-regenerate-unicode-properties node-regenerator node-regex-not node-regexpp node-regexpu-core node-regjsgen node-regjsparser # node-remove-trailing-separator node-repeat-string node-replace-ext node-require-dir node-require-directory node-require-inject node-requires-port node-resolve node-resolve-cwd node-resolve-dir node-resolve-from node-resolve-pkg node-restore-cursor node-resumer node-retape node-retry node-rimraf node-ripemd160 node-rollup node-rollup-plugin-alias node-rollup-plugin-babel node-rollup-plugin-buble node-rollup-plugin-commonjs node-rollup-plugin-inject node-rollup-plugin-json node-rollup-plugin-node-resolve node-rollup-plugin-replace node-rollup-plugin-sourcemaps node-rollup-plugin-string node-rollup-plugin-terser node-rollup-plugin-typescript node-rollup-plugin-typescript2 node-rollup-pluginutils node-run-async node-run-queue node-rx node-safe-buffer node-sane node-schema-utils node-seedrandom node-sellside-emitter node-semver node-send node-seq node-serialize-javascript node-serve-static node-set-blocking node-setimmediate node-set-immediate-shim node-setprototypeof node-set-value node-sha.js node-shasum node-shebang-command node-shebang-regex node-shelljs node-shell-quote node-sigmund node-signal-exit node-sinclair-typebox node-sinon-chai node-slash node-slice-ansi node-socket.io-parser node-source-list-map node-source-map node-sourcemap-codec node-source-map-resolve node-source-map-support node-sparkles node-spdx-correct node-spdx-exceptions node-spdx-expression-parse node-spdx-license-ids node-split node-split2 node-split-string node-sprintf-js node-ssri node-stack-trace node-stack-utils node-static-eval node-static-module node-statuses node-stealthy-require node-stream-array node-stream-assert node-stream-browserify node-stream-combiner2 node-stream-each node-stream-http node-stream-shift node-stream-splicer node-string-decoder node-string-width node-strip-ansi node-strip-bom node-strip-eof node-strip-json-comments node-style-loader node-subarg node-superagent node-supertest # node-supports-color node-syntax-error node-tacks node-tap node-tapable node-tape node-tap-mocha-reporter node-tap-parser node-tar-fs node-tar-stream node-temp node-terser node-test node-text-encoding node-text-table node-thenby node-thenify node-thenify-all node-through node-through2 node-through2-filter node-timers-browserify node-time-stamp node-time-zone node-tinycolor node-tmatch node-tmp node-to-absolute-glob node-to-arraybuffer node-to-fast-properties node-toidentifier node-to-regex node-to-regex-range node-tough-cookie node-traverse node-ts-jest node-tslib node-tty-browserify node-turbolinks node-turndown node-type-check node-typedarray node-typedarray-to-buffer node-type-detect node-type-is node-typescript node-ua-parser-js node-uid-safe node-umd node-unc-path-regex node-undici node-unicode-canonical-property-names-ecmascript node-unicode-data node-unicode-loose-match node-unicode-match-property-ecmascript node-unicode-match-property-value-ecmascript node-unicode-property-aliases node-unicode-property-aliases-ecmascript node-unicode-property-value-aliases node-unicode-property-value-aliases-ecmascript node-union-value node-unique-filename node-unique-stream node-unique-string node-universalify node-unpipe node-unset-value node-uri-js node-uri-path node-url node-url-loader node-util node-util-deprecate node-utils-merge node-uuid node-uvu node-v8-compile-cache node-validate-npm-package-license node-validate-npm-package-name node-vary node-vhost node-vinyl node-vinyl-fs node-vinyl-sourcemaps-apply node-vlq node-vm-browserify node-watchpack node-wcwidth.js node-webpack node-webpack-merge node-webpack-sources node-whatwg-fetch node-when node-which node-wide-align node-widest-line node-wordwrap node-wrap-ansi node-wrappy node-write-file-atomic node-write-file-promise node-ws node-ws-iconv node-xml2js node-xtend node-xterm node-y18n node-yallist node-yaml node-yargs node-yargs-parser node-yarn-tool-resolve-package node-yn node-zx norm nose nose2 nototools npm npth nss-pem nss-wrapper numactl numexpr numpydoc nv-codec-headers nvptx-tools oath-toolkit objenesis objgraph ocaml ocaml-astring ocaml-base64 ocaml-bigarray-compat ocamlbuild ocaml-csexp ocaml-ctypes ocaml-fmt ocaml-fpath ocamlgraph ocaml-graphics ocaml-integers ocaml-mccs ocaml-migrate-parsetree ocaml-mmap ocaml-odoc ocaml-odoc-parser ocaml-re ocaml-result ocaml-sexplib0 ocaml-topkg ocl-icd ocplib-endian octave-control octave-signal ogdi-dfsg olefile onetbb opam opam-file-format openal-soft opencc opencore-amr opencv openexr openh264 openhpi openipmi openjade openjdk-17 openjpeg2 openmpi openni2 openpyxl opensc openslide opensp openssh openssl + openstack-pkg-tools opentest4j opentest4j-reporting optipng opus orc oscache osgi-annotation osgi-compendium osgi-core osgi-foundation-ee ounit p11-kit pacemaker package-notes pam pandas # pandoc pango1.0 pangomm papyrus paramiko parmap parso partd paste pastedeploy pastel patch patchelf patchutils path.py patsy pcapy pcaudiolib pci.ids pciutils pcre2 pcre3 pcsc-lite pegjs pentaho-reporting-flow-engine pep517 pep8 pep8-naming perl-openssl-defaults perltidy phonon php-defaults php-pear pickleshare picocli pigz pikepdf pillow pipewire pixman pkgconf pkg-js-tools pkg-kde-tools pkg-php-tools plasma-wayland-protocols platformdirs plexus-ant-factory plexus-archiver plexus-bsh-factory plexus-build-api plexus-cipher plexus-classworlds plexus-cli plexus-compiler plexus-containers plexus-i18n plexus-interactivity-api plexus-interpolation plexus-io plexus-languages ple | 2026-01-13T09:30:28 |
https://tests.reproducible-builds.org/debian/forky/index_dd-list.html#abou.almontacir@sfr.fr | Maintainers of unreproducible packages in forky Debian navigation Change suite/architecture Tested suites: unstable forky trixie bookworm experimental Test results statistics Results for forky/amd64 Unreproducible packages: with notes without notes Other package states: package sets Recently tested packages: last 24h last 48h all tested packages packages with .buildinfo files packages without .buildinfo files Scheduled for amd64 Maintainers of in forky Reproducible Debian overview Development dashboard Past releases dashboard Categorized issues Bugs filed Variations tested Packages with notifications enabled ⚑ Repositories overview Backend related Broken pieces Documentation (eg. on manual scheduling) Performance stats Health monitoring node overview job overview daily graphs weekly graphs monthly graphs yearly graphs The Reproducible Builds project reproducible-builds.org Reproducible Builds - Docs • News Reproducible Builds in Debian - Wiki SOURCE_DATE_EPOCH specification reproduce.debian.net aims for 100% bit-for-bit identical rebuilds of Debian other CI tests Maintainers of unreproducible packages in forky The following maintainers and uploaders are listed for packages in forky which have built unreproducibly. Please note that the while the link always points to the amd64 version, it's possible thatthe unreproducibility is only present in another architecture(s). "Adam C. Powell, IV" <hazelsct@debian.org> ¶ med-fichier (U) mpich (U) mumps (U) petsc (U) slepc (U) spooles (U) A Mennucc1 <mennucc1@debian.org> ¶ mplayer (U) A. Maitland Bottoms <bottoms@debian.org> ¶ gnuradio gpredict (U) gr-dab (U) gr-fosphor gr-limesdr (U) gr-radar libiio uhd Aaron M. Ucko <ucko@debian.org> ¶ fltk1.3 (U) fltk1.4 (U) ncbi-blast+ (U) Abdelhakim Qbaich <abdelhakim@qbaich.com> ¶ gambc Abou Al Montacir <abou.almontacir@sfr.fr> ¶ castle-game-engine (U) fp-units-win (U) Adam Borowski <kilobyte@angband.pl> ¶ cardo (U) valgrind + (U) Adam Majer <adamm@zombino.com> ¶ qtcreator (U) Adrian Vondendriesch <adrian.vondendriesch@credativ.de> ¶ pacemaker (U) Aggelos Avgerinos <evaggelos.avgerinos@gmail.com> ¶ xmobar (U) Agustin Henze <tin@debian.org> ¶ yapsy (U) Ahmad Khalifa <ahmad@khalifa.ws> ¶ openrgb Akira Mitsui <murase.syuka@gmail.com> ¶ mruby (U) Alan M Varghese (NyxTrail) <alan@digistorm.in> ¶ hyprland (U) Alastair McKinstry <mckinstry@debian.org> ¶ cctools cdo (U) eccodes (U) ecflow (U) emoslib # (U) fdb (U) ferret-vis (U) fiat-ecmwf (U) fortran-fpm (U) fortran-jonquil (U) fortran-regex + (U) fortran-testdrive (U) hdf-eos4 (U) hdf-eos5 (U) iirish libtool metkit (U) mpich (U) odc (U) openmpi (U) pnetcdf + (U) pyferret (U) python-escript (U) python-xarray (U) silo-llnl (U) Alberto Garcia <berto@igalia.com> ¶ webkit2gtk (U) wpewebkit (U) Alberto Leiva Popper <ydahhrk@gmail.com> ¶ jool Alberto Luaces Fernández <aluaces@udc.es> ¶ yasnippet (U) Albin Tonnerre <lutin@debian.org> ¶ efl (U) AlcinaSharon <alcinasharon@gmail.com> ¶ go-qrcode (U) Alec Leamas <leamas.alec@gmail.com> ¶ libcxx-serial opencpn Aleksey Kravchenko <rhash.admin@gmail.com> ¶ libpff (U) Alessandro Ghedini <ghedo@debian.org> ¶ ecasound (U) valgrind + Alessio Treglia <alessio@debian.org> ¶ kmetronome (U) libsoxr (U) schism (U) Alex Myczko <tar@debian.org> ¶ 3d-ascii-viewer-c cheesecutter (U) far2l fonts-atarist # (U) fonts-topaz-unicode (U) ftxui (U) furnace (U) lft lie mdnsd netsurf (U) schism (U) shotcut + (U) zytrax (U) Alexander Kjäll <alexander.kjall@gmail.com> ¶ rust-sequoia-keystore-server (U) rust-sequoia-sq (U) Alexander Ponyatykh <lazyranma@gmail.com> ¶ g15daemon paexec Alexander Wirt <formorer@debian.org> ¶ icinga2 (U) Alexandre Dantas <eu@alexdantas.net> ¶ nsnake (U) Alexandre Detiste <tchet@debian.org> ¶ contourpy (U) ftgl (U) m2crypto (U) matplotlib (U) sphinx-panels (U) Alexandre Marie <alexandre.marie@synchrotron-soleil.fr> ¶ jupyter-sphinx (U) Alexandre Mestiashvili <mestia@debian.org> ¶ bibtexparser + (U) Alexandre Viau <aviau@debian.org> ¶ fonts-fork-awesome (U) golang-github-jonas-p-go-shp + (U) golang-github-roaringbitmap-roaring + (U) golang-github-tjfoc-gmsm + (U) Alkis Georgopoulos <alkisg@gmail.com> ¶ ltsp (U) Alois Schlögl <alois.schloegl@gmail.com> ¶ biosig (U) Aloïs Micard <alois@micard.lu> ¶ golang-github-francoispqt-gojay (U) Aloïs Micard <creekorful@debian.org> ¶ aerc (U) golang-github-viant-toolbox + (U) Amin Bandali <bandali@ubuntu.com> ¶ gtk4 (U) Amul Shah <Amul.Shah@fisglobal.com> ¶ fis-gtm (U) Ana Custura <ana@netstat.org.uk> ¶ namecheap + (U) vanguards + (U) Ananthu C V <weepingclown@debian.org> ¶ lazygit (U) Andrea Pappacoda <tachi@debian.org> ¶ mbedtls (U) xbyak Andreas Beckmann <anbe@debian.org> ¶ papi (U) pyopencl (U) Andreas Boll <aboll@debian.org> ¶ mesa (U) Andreas Bombe <aeb@debian.org> ¶ gr-limesdr (U) Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> ¶ clamav (U) Andreas Henriksson <andreas@fatal.se> ¶ golang-github-mendersoftware-mender-artifact (U) Andreas Metzler <ametzler@debian.org> ¶ efl (U) enblend-enfuse (U) lynx (U) pfstools (U) Andreas Rönnquist <gusnan@debian.org> ¶ allegro5 # (U) Andreas Tille <tille@debian.org> ¶ altree (U) bedtools (U) biosquid # (U) btllib (U) cardpeek (U) consensuscore (U) crac (U) dicom3tools (U) emboss (U) filtlong (U) fis-gtm (U) freebayes (U) golang-github-apptainer-container-library-client + (U) golang-github-apptainer-sif + (U) golang-github-jung-kurt-gofpdf + (U) golang-github-shenwei356-breader + (U) golang-gonum-v1-plot + (U) hmmer (U) igraph (U) infernal (U) ivar (U) libbrahe (U) libcifpp (U) libgzstream (U) libhmsbeagle (U) liblemon (U) libpll (U) librostlab (U) libsbml (U) libslow5lib (U) macs (U) microbiomeutil + (U) minimap2 (U) ncbi-blast+ (U) node-shiny-server (U) openmm (U) parallel (U) phybin (U) porechop (U) primer3 (U) python-biom-format (U) python-biopython (U) python-ofxhome + (U) python-pysam (U) r-cran-cli (U) r-cran-cliapp (U) r-cran-dbitest (U) r-cran-diagnosismed (U) r-cran-dimred (U) r-cran-emayili (U) r-cran-emmeans (U) r-cran-futile.logger (U) r-cran-gert (U) r-cran-gprofiler2 (U) r-cran-lambda.r (U) r-cran-prophet (U) r-cran-rprojroot (U) r-cran-rstan (U) r-cran-sass (U) r-cran-teachingdemos (U) r-cran-tm (U) r-cran-tmvtnorm (U) r-cran-tweenr (U) r-cran-xfun (U) samtools (U) seer (U) segemehl (U) seqan2 (U) silly (U) siscone (U) tree-puzzle (U) treeview (U) twopaco (U) unicycler (U) velvet (U) virtuoso-opensource (U) virulencefinder + (U) xfishtank (U) Andrei Rozanski <rozanski.andrei@gmail.com> ¶ libamplsolver (U) Andrej Shadura <andrewsh@debian.org> ¶ critcl + (U) fonts-karmilla (U) g15daemon (U) libcamera (U) mk-configure Andrew Lee (李健秋) <ajqlee@debian.org> ¶ nomacs (U) Andrew Ross <ubuntu@rossfamily.co.uk> ¶ libitext5-java (U) Andrey Rakhmatullin <wrar@debian.org> ¶ kvirc (U) Andrius Merkys <merkys@debian.org> ¶ bespokesynth (U) epics-base (U) grammatica (U) ncbi-igblast (U) openmm (U) pdb-tools (U) pycifrw + (U) python-fabio (U) python-pyutil + (U) r-cran-rhub (U) spglib (U) vst3sdk (U) wannier90 (U) Andy Pugh <andy@bodgesoc.org> ¶ linuxcnc (U) Ansgar <ansgar@debian.org> ¶ dune-common (U) dune-functions (U) dune-geometry (U) dune-grid (U) dune-grid-glue (U) dune-istl (U) dune-localfunctions (U) dune-typetree (U) Anthony Fok <foka@debian.org> ¶ autokey (U) go-qrcode (U) golang-1.24 (U) golang-github-akavel-rsrc # (U) golang-github-rogpeppe-go-internal (U) golang-github-ulikunitz-xz + (U) golang-github-yosssi-ace (U) golang-golang-x-net (U) pydoctor (U) Antoine Beaupré <anarcat@debian.org> ¶ magic-wormhole-mailbox-server (U) magic-wormhole-transit-relay + Antoine Le Gonidec <vv221@debian.org> ¶ ogre-1.12 (U) Anton Gladky <gladk@debian.org> ¶ boost1.88 (U) esys-particle (U) gmsh (U) lammps (U) metis (U) minieigen (U) sfepy (U) sumo (U) sundials (U) yade (U) Anton Zinoviev <zinoviev@debian.org> ¶ xfonts-terminus Antoni Villalonga <antoni@friki.cat> ¶ vt + (U) Antonio Terceiro <terceiro@debian.org> ¶ passenger (U) Antonio Valentino <antonio.valentino@tiscali.it> ¶ c-blosc2 (U) metpy (U) numexpr (U) pycoast (U) pysolid (U) python-cartopy (U) python-pint (U) xarray-safe-rcm (U) Anuradha Weeraman <anuradha@debian.org> ¶ ksh93u+m # Apollon Oikonomopoulos <apoikos@debian.org> ¶ xmobar (U) Arnaud Ferraris <aferraris@debian.org> ¶ gnome-metronome (U) plasma-mobile (U) Arnaud Fontaine <arnau@debian.org> ¶ glosstex (U) Arnaud Rebillout <arnaud.rebillout@collabora.com> ¶ efitools (U) Arnaud Rebillout <arnaudr@debian.org> ¶ mirrorbits (U) Arnaud Rebillout <arnaudr@kali.org> ¶ docker.io (U) Arnaud Rebillout <elboulangero@gmail.com> ¶ golang-github-miekg-pkcs11 (U) Arne Morten Kvarving <arne.morten.kvarving@sintef.no> ¶ opm-simulators (U) opm-upscaling (U) Arnout Engelen <arnouten@bzzt.net> ¶ kmetronome (U) Aron Xu <aron@debian.org> ¶ dnf-plugins-core (U) fcitx-libpinyin (U) ibus (U) libpinyin (U) opencc (U) Arthur Diniz <arthurbdiniz@gmail.com> ¶ hey (U) kind (U) kustomize (U) Arun Kumar Pariyar <arun@debian.org> ¶ go-gir-generator (U) Arun Kumar Pariyar <openarungeek@gmail.com> ¶ dde-qt-dbus-factory (U) Asias He <asias@debian.org> ¶ libpinyin (U) opencc (U) Aurelien Jarno <aurel32@debian.org> ¶ med-fichier (U) Aurélien COUDERC <coucouf@debian.org> ¶ kate (U) kdebugsettings (U) kdevelop-php (U) kf6-breeze-icons (U) kf6-extra-cmake-modules (U) kf6-kirigami (U) kf6-ktexttemplate (U) kf6-syndication (U) oxygen-icons (U) plasma-mobile (U) powerdevil (U) syndication (U) tokodon (U) Axel Beckert <abe@debian.org> ¶ dpmb john (U) lynx (U) Aymeric Agon-Rambosson <aymeric.agon@yandex.com> ¶ citar (U) consult-el (U) embark (U) magit (U) marginalia (U) orderless (U) vertico (U) Balasankar C <balasankarc@debian.org> ¶ fonts-smc-anjalioldlipi (U) fonts-smc-dyuthi (U) fonts-smc-karumbi (U) fonts-smc-keraleeyam (U) fonts-smc-meera (U) fonts-smc-rachana (U) fonts-smc-raghumalayalamsans (U) fonts-smc-uroob (U) Balint Reczey <balint@balintreczey.hu> ¶ erlang-cowlib (U) Barak A. Pearlmutter <bap@debian.org> ¶ chezscheme (U) fstrcmp ikarus ivtools latex-coffee-stains libemf magit (U) mit-scheme oaklisp pstoedit yasnippet (U) Barry deFreese <bdefreese@debian.org> ¶ asc (U) blockattack (U) liquidwar (U) netrek-client-cow (U) Bartosz Fenski <fenio@debian.org> ¶ asc (U) Bas Couwenberg <sebastic@debian.org> ¶ grass (U) libosmium (U) nco (U) pyosmium (U) qgis (U) Bas Wijnen <wijnen@debian.org> ¶ openmsx Bas Zoetekouw <bas@debian.org> ¶ blktrace Bastian Blank <waldi@debian.org> ¶ cdebootstrap + libdebian-installer (U) linux (U) Bastian Germann <bage@debian.org> ¶ scalable-cyrfonts Bastian Venthur <venthur@debian.org> ¶ kivy (U) Bastien Roucaries <rouca@debian.org> ¶ node-envinfo (U) Bastien Roucariès <rouca@debian.org> ¶ node-rollup (U) Bdale Garbee <bdale@gag.com> ¶ altos debian-history (U) librnd (U) pforth rocketcea scikit-fmm Ben Hutchings <benh@debian.org> ¶ linux (U) Benda Xu <heroxbd@gentoo.org> ¶ casacore (U) casacore-data-igrf (U) casacore-data-jplde (U) scim (U) Benda Xu <orv@debian.org> ¶ scmutils Benjamin Barenblat <bbaren@debian.org> ¶ coq (U) Benjamin Drung <bdrung@debian.org> ¶ libsoxr (U) vlc # + (U) Benjamin Drung <bdrung@ubuntu.com> ¶ rdma-core Bernd Zeimetz <bzed@debian.org> ¶ collectd (U) gpsbabel (U) Bernhard Miklautz <bernhard.miklautz@shacknet.at> ¶ freerdp3 (U) Bernhard R. Link <brlink@debian.org> ¶ git-dpm bertrand Neron <bneron@pasteur.fr> ¶ macsyfinder (U) Birger Schacht <birger@debian.org> ¶ foot Boian Bonev <bbonev@ipacct.com> ¶ gpsd Boris Pek <tehnick@debian.org> ¶ psi-plus Boyuan Yang <byang@debian.org> ¶ beangulp + (U) dde-qt-dbus-factory (U) fcitx5-bamboo (U) fcitx5-zhuyin (U) font-manager (U) go-gir-generator (U) opencc (U) rime-array (U) rime-cangjie (U) rime-cantonese (U) rime-ipa (U) rime-loengfan (U) rime-luna-pinyin (U) rime-middle-chinese (U) rime-pinyin-simp (U) rime-quick (U) rime-scj (U) rime-soutzoe (U) rime-stroke (U) rime-terra-pinyin (U) rime-wubi (U) rime-wugniu (U) zxing-cpp Brad Chapman <chapmanb@50mail.com> ¶ freebayes (U) Breno Leitao <leitao@debian.org> ¶ cappuccino Brian May <bam@debian.org> ¶ celery (U) faker (U) python-django (U) python-mkdocs (U) python-passlib (U) BW Keller <malzraa@gmail.com> ¶ yt (U) Camm Maguire <camm@debian.org> ¶ axiom fricas gcl gcl27 hol88 lam + maxima Carl Keinath <carl.keinath@gmail.com> ¶ hyprland (U) Carl Worth <cworth@debian.org> ¶ notmuch Carlos Zuferri <chals@altorricon.com> ¶ live-manual (U) Carsten Leonhardt <leo@debian.org> ¶ bacula-doc (U) Carsten Schoenert <c.schoenert@t-online.de> ¶ kicad (U) python-graphene + (U) python-mkdocs (U) python-picologging (U) Cesare Falco <c.falco@ubuntu.com> ¶ mame (U) Changwoo Ryu <cwryu@debian.org> ¶ ibus (U) ChangZhuo Chen (陳昌倬) <czchen@debian.org> ¶ fcitx-libpinyin (U) ibus-libzhuyin (U) libpinyin (U) nomacs (U) Charles Plessy <plessy@debian.org> ¶ altree (U) bedtools (U) emboss (U) primer3 (U) python-biopython (U) python-pysam (U) samtools (U) tree-puzzle (U) velvet (U) Chow Loong Jin <hyperair@debian.org> ¶ hyprland (U) Chris Halls <halls@debian.org> ¶ writer2latex (U) Chris Hofstaedtler <zeha@debian.org> ¶ ragel Chris Lamb <lamby@debian.org> ¶ black (U) python-django (U) Christian Bayle <bayle@debian.org> ¶ jfreepdf (U) orson-charts (U) rocm-docs-core (U) rocm-hipamd (U) Christian Ehrhardt <christian.ehrhardt@canonical.com> ¶ dpdk (U) Christian Kastner <ckk@debian.org> ¶ numpy (U) rocm-hipamd (U) rocprim (U) scikit-learn (U) Christian M. Amsüss <chrysn@fsfe.org> ¶ rdflib + (U) Christian Marillat <marillat@debian.org> ¶ libtorrent-rasterbar Christian T. Steigies <cts@debian.org> ¶ gle-graphics-manual (U) Christoph Berg <myon@debian.org> ¶ gpredict (U) gr-limesdr (U) libcm256cc (U) patroni # (U) pgloader (U) prometheus-sql-exporter (U) vip-manager2 (U) Christoph Biedl <debian.axhn@manchmal.in-ulm.de> ¶ gkrellm-leds P Christoph Egger <christoph@debian.org> ¶ buildapp (U) clisp (U) ecl (U) Christoph Martin <chrism@debian.org> ¶ vdr-plugin-markad (U) Christophe Trophime <christophe.trophime@lncmi.cnrs.fr> ¶ getdp (U) gmsh (U) Christopher Baines <mail@cbaines.net> ¶ faker (U) Christopher Hoskin <mans0954@debian.org> ¶ pympress + (U) rust-fslock # (U) Christopher Reichert <creichert07@gmail.com> ¶ haskell-network-conduit-tls (U) ClamAV Team <pkg-clamav-devel@lists.alioth.debian.org> ¶ clamav Clay Stan <claystan97@gmail.com> ¶ dde-qt-dbus-factory (U) Clint Adams <clint@debian.org> ¶ alex (U) cabal-debian (U) ghc # (U) glirc (U) haskell-aeson (U) haskell-arithmoi (U) haskell-async (U) haskell-attoparsec (U) haskell-base64-bytestring (U) haskell-bimap (U) haskell-binary-instances (U) haskell-bitvec (U) haskell-blaze-markup (U) haskell-bloomfilter (U) haskell-brick (U) haskell-bytestring-to-vector (U) haskell-bz2 (U) haskell-case-insensitive (U) haskell-cassava (U) haskell-cassava-megaparsec (U) haskell-cborg (U) haskell-cereal-conduit (U) haskell-cereal-vector (U) haskell-chimera (U) haskell-cipher-camellia (U) haskell-classy-prelude (U) haskell-classy-prelude-conduit (U) haskell-clientsession (U) haskell-cmark (U) haskell-cmark-gfm (U) haskell-conduit (U) haskell-conduit-extra (U) haskell-cryptohash (U) haskell-cryptohash-md5 (U) haskell-cryptohash-sha1 (U) haskell-cryptohash-sha256 (U) haskell-cryptonite (U) haskell-curve25519 (U) haskell-deepseq-generics (U) haskell-dense-linear-algebra (U) haskell-deriving-aeson (U) haskell-deriving-compat (U) haskell-doctemplates (U) haskell-ed25519 (U) haskell-edit-distance (U) haskell-email-validate (U) haskell-enclosed-exceptions (U) haskell-esqueleto (U) haskell-exception-transformers (U) haskell-expiring-cache-map (U) haskell-fast-logger (U) haskell-fgl-arbitrary (U) haskell-filepattern (U) haskell-filestore (U) haskell-fold-debounce (U) haskell-from-sum (U) haskell-generic-data (U) haskell-generic-random (U) haskell-genvalidity (U) haskell-genvalidity-containers (U) haskell-getopt-generics (U) haskell-ghc-exactprint (U) haskell-ghc-lib-parser-ex (U) haskell-gi-gdk (U) haskell-githash (U) haskell-gridtables (U) haskell-hackage-security (U) haskell-hakyll (U) haskell-haskell-gi (U) haskell-heterocephalus (U) haskell-hgmp (U) haskell-hjsmin (U) haskell-hledger (U) haskell-hledger-ui (U) haskell-hopenpgp (U) haskell-hourglass (U) haskell-hslua-module-text (U) haskell-hspec-api (U) haskell-hspec-megaparsec (U) haskell-hspec-smallcheck (U) haskell-hspec-wai (U) haskell-html-conduit (U) haskell-http-api-data (U) haskell-http-client (U) haskell-http-conduit (U) haskell-infer-license (U) haskell-inline-c (U) haskell-integer-logarithms (U) haskell-integer-roots (U) haskell-interpolate (U) haskell-io-streams-haproxy (U) haskell-irc-core (U) haskell-js-flot (U) haskell-lambdahack (U) haskell-lens (U) haskell-libmpd (U) haskell-load-env (U) haskell-logging-facade (U) haskell-lukko (U) haskell-lzma (U) haskell-markdown (U) haskell-markdown-unlit (U) haskell-memory (U) haskell-microstache (U) haskell-minimorph (U) haskell-miniutter (U) haskell-mockery (U) haskell-monad-loops (U) haskell-monad-memo (U) haskell-mono-traversable (U) haskell-multistate (U) haskell-nanospec (U) haskell-natural-transformation (U) haskell-nettle (U) haskell-numbers (U) haskell-openpgp-asciiarmor (U) haskell-optparse-applicative (U) haskell-ormolu (U) haskell-parsers (U) haskell-path-pieces (U) haskell-pem (U) haskell-persistent (U) haskell-pretty-simple (U) haskell-prettyprinter-ansi-terminal (U) haskell-project-template (U) haskell-quickcheck-classes (U) haskell-quote-quot (U) haskell-rank2classes (U) haskell-raw-strings-qq (U) haskell-readargs (U) haskell-recv (U) haskell-resourcet (U) haskell-safe-exceptions (U) haskell-sandi (U) haskell-say (U) haskell-scanner (U) haskell-scotty (U) haskell-selective (U) haskell-serialise (U) haskell-servant (U) haskell-servant-server (U) haskell-shell-conduit (U) haskell-should-not-typecheck (U) haskell-simple-sendfile (U) haskell-skein (U) haskell-snap (U) haskell-snap-templates (U) haskell-soap (U) haskell-split (U) haskell-streaming-commons (U) haskell-tagstream-conduit (U) haskell-tasty-golden (U) haskell-tasty-hedgehog (U) haskell-termonad (U) haskell-text-icu (U) haskell-text-manipulate (U) haskell-text-metrics (U) haskell-text-show (U) haskell-th-desugar (U) haskell-th-env (U) haskell-th-lift (U) haskell-th-lift-instances (U) haskell-th-utilities (U) haskell-time-parsers (U) haskell-tls (U) haskell-trifecta (U) haskell-typed-process (U) haskell-universe-base (U) haskell-unix-time (U) haskell-uuid (U) haskell-wai (U) haskell-wai-app-static (U) haskell-wai-extra (U) haskell-wai-http2-extra (U) haskell-warp (U) haskell-witch (U) haskell-with-location (U) haskell-wl-pprint-annotated (U) haskell-word-wrap (U) haskell-word8 (U) haskell-x509 (U) haskell-xml-conduit (U) haskell-xml-hamlet (U) haskell-xml-html-qq (U) haskell-xmlhtml (U) haskell-xss-sanitize (U) haskell-yaml (U) haskell-yesod-core (U) haskell-yesod-form (U) haskell-yesod-test (U) mighttpd2 (U) Clément Hermann <nodens@debian.org> ¶ onedrive (U) Colin Watson <cjwatson@debian.org> ¶ groff libdebian-installer (U) yubihsm-connector (U) zope.deferredimport + (U) Collectd Packaging Team <team+collectd@tracker.debian.org> ¶ collectd Compute Library Team <developer-compute@arm.com> ¶ arm-compute-library Cordell Bloor <cgmb@debian.org> ¶ rocdbgapi + (U) rocm-hipamd (U) rocprim (U) Corey Bryant <corey.bryant@canonical.com> ¶ python-glanceclient (U) python-keystoneauth1 (U) Cyril Brulebois <cyril@debamax.com> ¶ crowdsec Cyril Brulebois <kibi@debian.org> ¶ debian-installer # # # (U) Cédric Boutillier <boutil@debian.org> ¶ gfan (U) highlight.js (U) ruby-gnuplot + (U) Cédric Lood <cedric.lood@kuleuven.be> ¶ porechop (U) Damien Raude-Morvan <drazzib@debian.org> ¶ codenarc (U) Damyan Ivanov <dmn@debian.org> ¶ firebird4.0 Danai SAE-HAN (韓達耐) <danai@debian.org> ¶ cjk (U) latex-cjk-chinese-arphic (U) Daniel Baumann <daniel@debian.org> ¶ ck dnsjit Daniel Dehennin <daniel.dehennin@baby-gnu.org> ¶ moarvm (U) raku-readline (U) raku-tap-harness (U) raku-zef (U) rakudo # (U) Daniel Kahn Gillmor <dkg@fifthhorseman.net> ¶ knot (U) rust-gperftools (U) rust-sequoia-sq (U) Daniel Markstedt <daniel@mindani.net> ¶ netatalk (U) Daniel Salzman <daniel.salzman@nic.cz> ¶ knot (U) Daniele Tricoli <eriol@mornie.org> ¶ pywavelets + (U) dann frazier <dannf@debian.org> ¶ makedumpfile (U) Dave Hibberd <hibby@debian.org> ¶ svxlink (U) David Banks <amoebae@gmail.com> ¶ sisc David Bremner <bremner@debian.org> ¶ emacs-jabber (U) notmuch (U) polymake sketch (U) slime (U) David Kalnischkies <donkult@debian.org> ¶ vim-youcompleteme ycmd David Miguel Susano Pinto <carandraug+dev@gmail.com> ¶ ncbi-igblast (U) David Paleino <dapal@debian.org> ¶ openlayers (U) uncertainties (U) underscore (U) David Suárez <david.sephirot@gmail.com> ¶ ruby-re2 (U) David Weinehall <tao@debian.org> ¶ scummvm (U) Davide Viti <zinosat@tiscali.it> ¶ fonts-freefont (U) Dawid Dziurla <dawidd0811@gmail.com> ¶ termshark (U) Dean Serenevy <dean@serenevy.net> ¶ kivy (U) Debian Accessibility Team <pkg-a11y-devel@alioth-lists.debian.net> ¶ flite Debian ACE maintainers <team+ace@tracker.debian.org> ¶ ace Debian ALSA Maintainers <pkg-alsa-devel@lists.alioth.debian.org> ¶ alsa-utils Debian Astro Maintainers <debian-astro-maintainers@lists.alioth.debian.org> ¶ pybdsf Debian Astro Team <debian-astro-maintainers@alioth-lists.debian.net> ¶ casacore-data-igrf casacore-data-jplde Debian Astro Team <debian-astro-maintainers@lists.alioth.debian.org> ¶ astroplan astroquery casacore eso-midas gwcs montage ndcube pyregion python-casacore starjava-ttools Debian Astronomy Team <debian-astro-maintainers@lists.alioth.debian.org> ¶ c-munipack yt Debian Bacula Team <pkg-bacula-devel@lists.alioth.debian.org> ¶ bacula-doc Debian Bluetooth Maintainers <team+pkg-bluetooth@tracker.debian.org> ¶ bluez bluez-alsa Debian BOINC Maintainers <pkg-boinc-devel@lists.alioth.debian.org> ¶ boinc Debian Boost Team <team+boost@tracker.debian.org> ¶ boost1.88 Debian Chinese Team <chinese-developers@lists.alioth.debian.org> ¶ opencc (U) unicon # Debian CLI Applications Team <pkg-cli-apps-team@lists.alioth.debian.org> ¶ hexbox openmcdf Debian Clojure Maintainers <team+clojure@tracker.debian.org> ¶ clojure core-specs-alpha-clojure leiningen-clojure + spec-alpha-clojure Debian Common Lisp Team <debian-common-lisp@lists.debian.org> ¶ abcl buildapp clisp ecl sbcl slime Debian D Language Group <team+d-team@tracker.debian.org> ¶ dub ldc Debian Deepin Packaging Team <pkg-deepin-devel@lists.alioth.debian.org> ¶ dde-qt-dbus-factory go-gir-generator Debian Documentation Project <debian-doc@lists.debian.org> ¶ refcard Debian DPDK Maintainers <pkg-dpdk-devel@lists.alioth.debian.org> ¶ dpdk Debian EFI team <debian-efi@lists.debian.org> ¶ libjcat Debian Electronics Team <pkg-electronics-devel@alioth-lists.debian.net> ¶ kicad Debian Electronics Team <pkg-electronics-devel@lists.alioth.debian.org> ¶ arduino librnd verilator Debian Emacsen team <debian-emacsen@lists.debian.org> ¶ citar consult-el elpa-transient embark fountain-mode magit magit-forge-el maildir-utils marginalia orderless vertico yasnippet Debian Emacsen Team <debian-emacsen@lists.debian.org> ¶ emacs-jabber ghub-el with-editor Debian Erlang Packagers <pkg-erlang-devel@lists.alioth.debian.org> ¶ elixir-makeup erlang erlang-cowlib erlang-hex manderlbot rebar rebar3 wings3d yaws Debian FLTK Ecosystem Team <team+fltk@tracker.debian.org> ¶ fltk1.3 fltk1.4 Debian Fonts Task Force <debian-fonts@lists.debian.org> ¶ cardo font-manager fonts-atarist # fonts-cantarell fonts-fantasque-sans fonts-fork-awesome fonts-meera-inimai fonts-smc-anjalioldlipi fonts-smc-dyuthi fonts-smc-karumbi fonts-smc-keraleeyam Debian Fonts Task Force <pkg-fonts-devel@lists.alioth.debian.org> ¶ fonts-arundina fonts-beteckna fonts-cascadia-code fonts-freefont fonts-karmilla fonts-smc-meera fonts-smc-rachana fonts-smc-raghumalayalamsans fonts-topaz-unicode Debian Games Team <pkg-games-devel@lists.alioth.debian.org> ¶ 0ad ace-of-penguins allegro5 # asc blockattack bzflag colobot doomsday ftgl gnubg (U) libsfml liquidwar mame netrek-client-cow nsnake ogre-1.12 scummvm silly teeworlds ufoai xfishtank xpenguins Debian GCC Maintainers <debian-gcc@lists.debian.org> ¶ gcc-12-cross gcc-13-cross gcc-13-cross-mipsen gcc-14 gcc-14-cross gcc-14-cross-ports gcc-15 gcc-15-cross gcc-15-cross-ports Debian GDB Team <team+gdb@tracker.debian.org> ¶ dejagnu Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org> ¶ grass libosmium metpy nco openlayers pycoast pyosmium pysolid python-cartopy python-geopandas qgis savi xarray-safe-rcm Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org> ¶ blueprint-compiler bustle fragments gimp glib-d gnome-metronome gtk4 kooha librsvg obfuscate shortwave warp Debian Go Compiler Team <team+go-compiler@tracker.debian.org> ¶ golang-1.24 Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org> ¶ acmetool goiardi golang-github-cloudflare-cfssl golang-github-cznic-ql + golang-github-kr-binarydist + golang-github-yosssi-ace Debian Go Packaging Team <team+pkg-go@tracker.debian.org> ¶ aerc age containerd crowdsec (U) dasel docker.io fscrypt glow go-qrcode go-sendxmpp gobgp golang-github-akavel-rsrc # golang-github-apptainer-container-library-client + golang-github-artyom-mtab + golang-github-containerd-nydus-snapshotter golang-github-dreamitgetit-statuscake + golang-github-emicklei-dot + golang-github-francoispqt-gojay golang-github-gin-gonic-gin + golang-github-go-git-go-git golang-github-hdrhistogram-hdrhistogram-go golang-github-jonas-p-go-shp + golang-github-jung-kurt-gofpdf + golang-github-kshedden-dstream + golang-github-linkedin-goavro + golang-github-mendersoftware-mender-artifact golang-github-micromdm-scep golang-github-miekg-pkcs11 golang-github-otiai10-copy + golang-github-roaringbitmap-roaring + golang-github-rogpeppe-go-internal golang-github-shenwei356-breader + golang-github-tjfoc-gmsm + golang-github-ulikunitz-xz + golang-github-valyala-fasthttp + golang-github-viant-toolbox + golang-github-yudai-gojsondiff + golang-golang-x-net golang-gonum-v1-plot + golang-mvdan-editorconfig + gosop hey lazygit riseup-vpn secsipidx tea-cli termshark tty-record victoriametrics xmpp-dns ymuse Debian Go Team <team+pkg-go@tracker.debian.org> ¶ golang-github-apptainer-sif + Debian GPS team <gpsbabel@packages.debian.org> ¶ gpsbabel Debian HA Maintainers <debian-ha-maintainers@alioth-lists.debian.net> ¶ pacemaker Debian Hamradio Maintainers <debian-hams@lists.debian.org> ¶ gpredict gr-limesdr libcm256cc svxlink tucnak Debian Haskell Group <debian-haskell@lists.debian.org> ¶ haskell-swish Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org> ¶ alex cabal-debian ghc # glirc happy haskell-active haskell-aeson haskell-aeson-casing haskell-aeson-extra haskell-aeson-qq haskell-ap-normalize haskell-arithmoi haskell-async haskell-atomic-write haskell-attoparsec haskell-barbies haskell-base64-bytestring haskell-bimap haskell-binary-instances haskell-binary-orphans haskell-binary-search haskell-bitvec haskell-bitwise haskell-blaze-html haskell-blaze-markup haskell-bloomfilter haskell-brick haskell-bytestring-to-vector haskell-bz2 haskell-bzlib-conduit haskell-cabal-install-solver haskell-case-insensitive haskell-cassava haskell-cassava-megaparsec haskell-cborg haskell-cereal-conduit haskell-cereal-vector haskell-chimera haskell-cipher-camellia haskell-classy-prelude haskell-classy-prelude-conduit haskell-clientsession haskell-cmark haskell-cmark-gfm haskell-commonmark haskell-commonmark-extensions haskell-concurrent-extra haskell-concurrent-supply haskell-conduit haskell-conduit-extra haskell-copilot-c99 haskell-copilot-core haskell-copilot-interpreter haskell-copilot-language haskell-copilot-libraries haskell-copilot-prettyprinter haskell-copilot-theorem haskell-cryptohash haskell-cryptohash-md5 haskell-cryptohash-sha1 haskell-cryptohash-sha256 haskell-crypton haskell-crypton-conduit haskell-crypton-x509 haskell-crypton-x509-store haskell-crypton-x509-validation haskell-cryptonite haskell-cryptonite-conduit haskell-cryptostore haskell-curve25519 haskell-data-clist haskell-data-hash haskell-data-reify haskell-deepseq-generics haskell-dense-linear-algebra haskell-deriving-aeson haskell-deriving-compat haskell-dice-entropy-conduit haskell-distributive haskell-doctemplates haskell-double-conversion haskell-ed25519 haskell-edit-distance haskell-email-validate haskell-emojis haskell-enclosed-exceptions haskell-equivalence haskell-esqueleto haskell-exception-transformers haskell-expiring-cache-map haskell-fast-logger haskell-fgl haskell-fgl-arbitrary haskell-filepattern haskell-filestore haskell-filtrable haskell-finite-field haskell-fold-debounce haskell-from-sum haskell-generic-data haskell-generic-random haskell-genvalidity haskell-genvalidity-containers haskell-getopt-generics haskell-ghc-exactprint haskell-ghc-lib-parser-ex haskell-ghc-typelits-extra haskell-ghc-typelits-knownnat haskell-gi-gdk haskell-githash haskell-gridtables haskell-hackage-security haskell-haddock-library haskell-hakyll haskell-happstack-server haskell-haskell-gi haskell-hdf5 haskell-heterocephalus haskell-hgmp haskell-hi-file-parser haskell-hjsmin haskell-hledger haskell-hledger-ui haskell-hoogle haskell-hopenpgp haskell-hourglass haskell-hpack haskell-hslua-aeson haskell-hslua-core haskell-hslua-list haskell-hslua-module-doclayout haskell-hslua-module-path haskell-hslua-module-system haskell-hslua-module-text haskell-hslua-module-version haskell-hslua-module-zip haskell-hslua-typing haskell-hspec-api haskell-hspec-attoparsec haskell-hspec-megaparsec haskell-hspec-smallcheck haskell-hspec-wai haskell-html-conduit haskell-http-api-data haskell-http-client haskell-http-conduit haskell-http-link-header haskell-http-media haskell-http2 haskell-indexed-traversable-instances haskell-infer-license haskell-inline-c haskell-integer-conversion haskell-integer-logarithms haskell-integer-roots haskell-interpolate haskell-invariant haskell-io-streams-haproxy haskell-irc-core haskell-iso8601-time haskell-jira-wiki-markup haskell-js-flot haskell-jsonpath haskell-lambdahack haskell-language-glsl haskell-lens haskell-libbf haskell-libmpd haskell-lift-type haskell-load-env haskell-logging-facade haskell-lua haskell-lukko haskell-lzma haskell-map-syntax haskell-markdown haskell-markdown-unlit haskell-memory haskell-microlens-aeson haskell-microstache haskell-minimorph haskell-miniutter haskell-mockery haskell-modern-uri haskell-monad-loops haskell-monad-memo haskell-mono-traversable haskell-multistate haskell-mustache haskell-mutable-containers haskell-nanospec haskell-natural-transformation haskell-nettle haskell-network-conduit-tls haskell-numbers haskell-ogma-cli haskell-ogma-core haskell-ogma-extra haskell-ogma-language-c haskell-ogma-language-lustre haskell-ogma-language-smv haskell-openpgp-asciiarmor haskell-optparse-applicative haskell-ormolu haskell-os-string haskell-pandoc haskell-pandoc-lua-engine haskell-pandoc-lua-marshal haskell-parsers haskell-path haskell-path-pieces haskell-pem haskell-persistent haskell-pqueue haskell-pretty-simple haskell-prettyprinter-ansi-terminal haskell-prettyprinter-interp haskell-project-template haskell-quickcheck haskell-quickcheck-classes haskell-quote-quot haskell-rank2classes haskell-raw-strings-qq haskell-readargs haskell-recv haskell-regex-applicative haskell-req haskell-resolv haskell-resourcet haskell-rio haskell-rio-orphans haskell-safe-exceptions haskell-sandi haskell-say haskell-scanner haskell-scotty haskell-secret-sharing haskell-selective haskell-serialise haskell-servant haskell-servant-client-core haskell-servant-server haskell-shell-conduit haskell-shelly haskell-should-not-typecheck haskell-simple-sendfile haskell-skein haskell-skylighting-core haskell-snap haskell-snap-templates haskell-soap haskell-split haskell-sql-words haskell-stack haskell-static-bytes haskell-store haskell-streaming-commons haskell-string-interpolate haskell-string-qq haskell-tagstream-conduit haskell-tar-conduit haskell-tasty-golden haskell-tasty-hedgehog haskell-tasty-lua haskell-terminal-progress-bar haskell-termonad haskell-text-builder-linear haskell-text-conversions haskell-text-icu haskell-text-manipulate haskell-text-metrics haskell-text-postgresql haskell-text-short haskell-text-show haskell-th-compat haskell-th-desugar haskell-th-env haskell-th-lift haskell-th-lift-instances haskell-th-utilities haskell-time-parsers haskell-tls haskell-token-bucket haskell-toml-parser haskell-trifecta haskell-typed-process haskell-unicode-transforms haskell-universe-base haskell-unix-time haskell-unixutils haskell-uuid haskell-uuid-types haskell-vector-algorithms haskell-vector-hashtables haskell-vector-th-unbox haskell-versions haskell-wai haskell-wai-app-static haskell-wai-extra haskell-wai-http2-extra haskell-warp haskell-websockets haskell-witch haskell-with-location haskell-witherable haskell-wl-pprint-annotated haskell-word-trie haskell-word-wrap haskell-word8 haskell-x509 haskell-xeno haskell-xlsx haskell-xml-conduit haskell-xml-hamlet haskell-xml-html-qq haskell-xmlhtml haskell-xss-sanitize haskell-yaml haskell-yesod-core haskell-yesod-form haskell-yesod-test haskell-yi-language haskell-yi-rope haskell-zip-archive haskell-zip-stream hasktags mighttpd2 xmobar Debian Hebrew Packaging Team <team+hebrew@tracker.debian.org> ¶ bidiui Debian HPC Team <debian-hpc@lists.debian.org> ¶ condor papi Debian Hyprland Maintainers <team+hyprland@tracker.debian.org> ¶ hyprland Debian Input Method Team <debian-input-method@lists.debian.org> ¶ fcitx-libpinyin fcitx5-bamboo fcitx5-zhuyin ibus ibus-libzhuyin keyman libpinyin open-gram opencc rime-array rime-cangjie rime-cantonese rime-ipa rime-loengfan rime-luna-pinyin rime-middle-chinese rime-pinyin-simp rime-quick rime-scj rime-soutzoe rime-stroke rime-terra-pinyin rime-wubi rime-wugniu Debian Install System Team <debian-boot@lists.debian.org> ¶ debian-installer # # # libdebian-installer Debian IoT Maintainers <debian-iot-maintainers@alioth-lists.debian.net> ¶ mbedtls Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org> ¶ aspectj bsh cobertura codenarc derby felix-main gmetrics gradle-kotlin-dsl + grammatica graxxia groovy h2database hyperic-sigar jabref jakarta-jmeter + jalview jameica-h2database janino javacc5 javawriter jcabi-aspects jetty12 jfreepdf json4s jxplorer libcommons-fileupload-java libhibernate-validator-java libhibernate-validator4-java libitext5-java libjpam-java libnative-platform-java libnb-platform18-java libxml-security-java libxtc-rats-java lucene-solr lucene4.10 mathpiper okio orson-charts plexus-utils2 sbt-launcher-interface sbt-serialization scala scala-parser-combinators scala-pickling scala-tools-sbinary scala-xml serp sweethome3d-furniture tomcat10 tomcat11 tomcat9 visualvm weka weupnp xmlbeans xmlgraphics-commons zookeeper Debian Javascript Maintainers <debian-pan-maintainers@alioth-lists.debian.net> ¶ jupyterlab Debian Javascript Maintainers <pkg-javascript-devel@alioth-lists.debian.net> ¶ emscripten Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org> ¶ highlight.js moment-timezone.js node-ajv node-ampproject-remapping node-axios node-babel7 node-camelcase node-camelcase-keys node-cbor node-cli-cursor node-convert-source-map + node-d3 node-d3-array node-define-lazy-prop node-emittery node-envinfo node-espree node-execa node-fast-json-patch node-find-up node-function-bind + node-get-stream node-html5-qrcode node-inwasm node-license-webpack-plugin node-lru-cache node-mem node-minimatch node-opencv node-pretty-ms node-quick-lru node-regenerator node-resolve node-rollup node-rollup-plugin-alias node-rollup-plugin-babel node-rollup-plugin-commonjs node-rollup-plugin-typescript2 node-rollup-pluginutils node-source-map-loader node-svgdotjs-svg.js node-webpack node-webpack-stats-plugin node-wrap-ansi twitter-bootstrap3 underscore Debian Junior Maintainers <debian-jr@lists.debian.org> ¶ tuxpaint (U) Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> ¶ kvirc Debian Kdump <team+kdump@tracker.debian.org> ¶ makedumpfile Debian Kernel Team <debian-kernel@lists.debian.org> ¶ linux Debian Kolab Maintainers <team+kolab-mantainers@tracker.debian.org> ¶ libkolabxml Debian Kubernetes Packaging Team <team+kubernetes@tracker.debian.org> ¶ kind kustomize Debian LibreOffice Maintainers <debian-openoffice@lists.debian.org> ¶ writer2latex Debian Libvirt Maintainers <pkg-libvirt-maintainers@lists.alioth.debian.org> ¶ libguestfs Debian Live Maintainers <debian-live@lists.debian.org> ¶ live-manual Debian LTSP Maintainers <team+ltsp@tracker.debian.org> ¶ ltsp Debian Lua Team <pkg-lua-devel@lists.alioth.debian.org> ¶ lua-penlight + Debian Lynx Packaging Team <pkg-lynx-maint@lists.alioth.debian.org> ¶ lynx Debian Math Team <team+math@tracker.debian.org> ¶ fflas-ffpack frobby gfan linbox macaulay2 maxima-sage primesieve python-mapbox-earcut singular Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org> ¶ altree ants # bedtools biosig bmtk brian btllib cmtk consensuscore crac cyvcf2 dcmtk deblur + dicom3tools dipy emboss filtlong fis-gtm freebayes gdcm grabix hmmer igraph infernal ivar libamplsolver libcifpp libgdf libgzstream libhmsbeagle liblemon libpll librostlab libsbml libslow5lib macs macsyfinder metastudent-data mia microbiomeutil + minimap2 mrtrix3 ncbi-blast+ ncbi-igblast nim-hts + nitime odil parallel phybin pinfish porechop primer3 pydicom python-biom-format python-biopython python-gffutils python-pybedtools python-pysam python-trx-python samtools seer segemehl seqan2 seqan3 shapeit4 spaln tree-puzzle treeview twopaco unicycler velvet virulencefinder + vt + Debian Mobcom Maintainers <Debian-mobcom-maintainers@lists.alioth.debian.org> ¶ libosmocore Debian Multimedia Maintainers <debian-multimedia@lists.debian.org> ¶ bespokesynth cheesecutter dragonfly-reverb ecasound furnace gsequencer jsusfx kmetronome libcamera libdc1394 libsoxr mplayer openni openni-sensor-pointclouds openni-sensor-primesense opensubdiv pupnp schism shotcut + vlc # + vst3sdk x265 zytrax Debian Nagios Maintainer Group <pkg-nagios-devel@lists.alioth.debian.org> ¶ icinga2 Debian Netatalk team <pkg-netatalk-devel@lists.alioth.debian.org> ¶ netatalk Debian Nginx Maintainers <pkg-nginx-maintainers@alioth-lists.debian.net> ¶ nginx Debian Nim Team <team+nim@tracker.debian.org> ¶ nim-hts + (U) Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org> ¶ advi + belenios coq coq-elpi coq-iris elpi extlib liquidsoap ocaml-atd ocaml-bitstring ocaml-containers ocaml-ptime ocaml-topkg ocaml-uucp ocaml-uunf ocamlviz omake # ssreflect wyrd Debian Octave Group <team+pkg-octave-team@tracker.debian.org> ¶ octave-communications octave-geometry octave-ltfat octave-nan octave-queueing zmat Debian OpenCL Maintainers <pkg-opencl-devel@lists.alioth.debian.org> ¶ pyopencl Debian OpenStack <team+openstack@tracker.debian.org> ¶ aetos blazar cinder cloudkitty cyborg designate glance ironic jenkins-job-builder keystone manila masakari masakari-monitors neutron neutron-ipv6-bgp-injector nova octavia openstack-trove python-glanceclient python-keystoneauth1 python-neutron-lib python-openstackclient python-os-faults python-sphinx-code-include python-taskflow qpid-proton rabbitmq-server vmms watcher Debian PaN Maintainers <debian-pan-maintainers@alioth-lists.debian.net> ¶ bitshuffle bornagain freesas jupyterhub (U) pyfai P pynx python-fabio python-mcstasscript + (U) python-pydash (U) wxmplot + (U) Debian Pan Maintainers <debian-pan-maintainers@alioth-lists.debian.net> ¶ node-ipydatagrid Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org> ¶ analizo lemonldap-ng libimage-librsvg-perl Debian PhotoTools Maintainers <pkg-phototools-devel@lists.alioth.debian.org> ¶ enblend-enfuse highway jpeg-xl pfstools Debian PHP Maintainers <team+pkg-php@tracker.debian.org> ¶ php8.4 Debian PHP PEAR Maintainers <pkg-php-pear@lists.alioth.debian.org> ¶ php-nesbot-carbon Debian Pkg-e Team <pkg-e-devel@lists.alioth.debian.org> ¶ efl Debian Policy Editors <debian-policy@lists.debian.org> ¶ debian-policy # Debian PostgreSQL Maintainers <team+postgresql@tracker.debian.org> ¶ patroni # pgloader prometheus-sql-exporter vip-manager2 Debian PostgreSQL team <team+postgresql@tracker.debian.org> ¶ libpqxx Debian Printing Team <debian-printing@lists.debian.org> ¶ foo2zjs libcupsfilters Debian Privacy Tools Maintainers <pkg-privacy-maintainers@lists.alioth.debian.org> ¶ vanguards + Debian publicity team <debian-publicity@lists.debian.org> ¶ debian-history Debian Python Team <team+python@tracker.debian.org> ¶ alembic ansible-lint + autokey beancount beangulp + bibtexparser + black celery cherrypy3 contourpy cysignals cython + dask datalad-next dkimpy faker fpylll frozenlist fsspec indexed-gzip ipyparallel ipython jpylyzer jupyter-server jupyter-sphinx jupyterhub kivy lazy-object-proxy m2crypto magic-wormhole-mailbox-server matplotlib mypy namecheap + nbconvert nbsphinx numpy painintheapt pathos pikepdf pwntools pyasn + pycifrw + pycparser + pydoctor pympress + python-altair + python-blosc python-cloup python-cycler python-cyclopts python-django python-django-import-export + python-django-waffle + python-envisage python-fissix python-fudge # python-genson + python-git python-graphene + python-igraph python-inline-snapshot python-laspy python-laszip python-levenshtein python-lupa + python-mcstasscript + python-mkdocs python-moderngl-window python-msgspec python-mt-940 + python-ofxhome + python-openstep-plist + python-oracledb python-passlib python-picologging python-pint python-propcache python-pydash python-pytest-shell-utilities + python-pyutil + python-qtconsole python-rcon python-schema-salad python-slimmer + python-spdx-tools # python-tld + python-tomli python-xlrd pywavelets + pyzmq rapidfuzz rdflib + scikit-misc slidge slixmpp sphinx-gallery sphinx-panels sphinxcontrib-googleanalytics taskflow ueberzug uncertainties whipper + wxmplot + xonsh # xyzservices yapsy yarl (U) zope.deferredimport + Debian QA Group <packages@qa.debian.org> ¶ aspic buddy + closure-compiler codelite coinor-dylp epm esnacc fte gnubg golang-github-go-macaron-toolbox + golang-github-issue9-identicon + haskell98-report kst libapreq2 libforms lifelines madlib naspro-core openclipart posixtestsuite propellor seyon systemtap terminaltables ucspi-proxy Debian QEMU Team <pkg-qemu-devel@lists.alioth.debian.org> ¶ qemu Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> ¶ akonadi akonadi-calendar akonadi-contacts + incidenceeditor kate kcalutils kdebugsettings kdepim-addons kdevelop-php kf6-breeze-icons kf6-extra-cmake-modules kf6-kirigami kf6-ktexttemplate kf6-syndication kmail kmailtransport kpimtextedit libgravatar libkdepim libksieve mailcommon mailimporter messagelib oxygen-icons pim-data-exporter pim-sieve-editor pimcommon plasma-mobile powerdevil pyside2 pyside6 qt6-3d qt6-5compat qt6-base qt6-charts qt6-connectivity qt6-datavis3d qt6-declarative qt6-graphs qt6-grpc qt6-httpserver qt6-imageformats qt6-languageserver qt6-location qt6-lottie qt6-multimedia qt6-networkauth qt6-positioning qt6-quick3d qt6-quick3dphysics qt6-quickeffectmaker qt6-quicktimeline qt6-remoteobjects qt6-scxml qt6-sensors qt6-serialbus qt6-serialport qt6-shadertools qt6-speech qt6-svg qt6-tools qt6-virtualkeyboard qt6-wayland qt6-webchannel qt6-websockets qt6-webview qtbase-opensource-src # # # qtbase-opensource-src-gles qtconnectivity-opensource-src qtcreator qtdeclarative-opensource-src qtsensors-opensource-src qtwebchannel-opensource-src qtwebengine-opensource-src syndication tokodon Debian R Packages Maintainers <r-pkg-team@alioth-lists.debian.net> ¶ r-cran-cli r-cran-cliapp r-cran-dbitest r-cran-diagnosismed r-cran-dimred r-cran-emayili r-cran-emmeans r-cran-futile.logger r-cran-gert r-cran-gprofiler2 r-cran-lambda.r r-cran-prophet r-cran-r.devices r-cran-r.rsp r-cran-repr r-cran-rhub r-cran-rprojroot r-cran-rsdmx r-cran-rstan r-cran-sass r-cran-teachingdemos r-cran-tm r-cran-tmvtnorm r-cran-tweenr r-cran-xfun Debian Rakudo Maintainers <pkg-rakudo-devel@lists.alioth.debian.org> ¶ moarvm prove6 raku-getopt-long raku-hash-merge raku-json-class raku-json-marshal raku-json-name raku-json-unmarshal raku-license-spdx raku-log raku-meta6 raku-readline raku-tap-harness raku-test-meta raku-uri raku-zef rakudo # Debian Reform Team <team+reform@tracker.debian.org> ¶ reform-handbook Debian Remote Maintainers <debian-remote@lists.debian.org> ¶ freerdp3 python-x2go P remmina x2goserver Debian Robotics Team <team+robotics@tracker.debian.org> ¶ fastdds iceoryx ros2-osrf-testing-tools-cpp ros2-rosidl Debian ROCm Team <debian-ai@lists.debian.org> ¶ rocdbgapi + rocm-docs-core rocm-hipamd rocprim Debian rsbackup maintainers <rsbackup-maint@lists.alioth.debian.org> ¶ rsbackup Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org> ¶ passenger ruby-gnuplot + ruby-otr-activerecord ruby-pygments.rb ruby-re2 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net> ¶ rust-fslock # rust-gperftools rust-laurel rust-rustpython-parser + rust-sequoia-keystore-server rust-sequoia-sq rust-xdg # rustc Debian Scheme Team <debian-scheme@lists.debian.org> ¶ guile-fibers Debian Science Maintainers <debian-science-maintainers@alioth-lists.debian.net> ¶ apertium-cat-ita apertium-cat-srd apertium-oci-fra apertium-srd-ita gap-scscp giac Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org> ¶ asl bitshuffle (U) bliss bornagain (U) c-blosc2 cdo clhep + coin3 coinor-bonmin coinor-cgl combblas cvc5 dolfin dune-common dune-functions dune-geometry dune-grid dune-grid-glue dune-istl dune-localfunctions dune-typetree dxf2gcode eccodes ecflow emoslib # epics-base esys-particle fdb fenics-dolfinx fenicsx-performance-tests ferret-vis fftw3 fiat-ecmwf fortran-fpm fortran-jonquil fortran-regex + fortran-testdrive freecad freesas (U) g2o gap-design gap-sonata geomview gerris getdp gle-graphics-manual gmsh gtsam guidata hdf-eos4 hdf-eos5 joblib lammps libbrahe libflame librsb # lmfit-py med-fichier metis metkit minieigen mona mpi4py mpich mumps neuron nfft ngspetsc node-shiny-server numexpr odc onetbb open3d opengv openmesh openmpi opm-simulators opm-upscaling pandas # pcl petsc plplot pnetcdf + pyfai P (U) pyferret pynx (U) pytango python-bumps python-escript python-fabio (U) python-hdf5plugin python-pyqtgraph python-xarray ros-dynamic-reconfigure scalapack scikit-learn sfepy silo-llnl simbody siscone sketch skimage slepc spglib spooles statsmodels sumo texmacs tkgate + virtuoso-opensource visp vlfeat wannier90 yade Debian Science Team <debian-science-maintainers@alioth-lists.debian.net> ¶ apertium-arg-cat apertium-br-fr apertium-eng-cat apertium-eng-spa apertium-eo-ca apertium-eo-es apertium-eo-fr apertium-es-gl apertium-eu-es apertium-fr-es apertium-fra-cat apertium-fra-frp apertium-hbs-eng apertium-hbs-mkd apertium-hbs-slv apertium-ind-zlm apertium-isl-swe apertium | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/2014/07/rank-2-phoas.html | don't count on finding me: Rank-2 PHOAS skip to main | skip to sidebar don't count on finding me Thursday, July 31, 2014 Rank-2 PHOAS Lately I've been experimenting with finally-tagless (typed) representations and made an attempt to model the (implicitly typed) lambda calculus. However, I wanted to use the parametric higher-order abstract syntax (PHOAS) technique to obtain variable bindings that are automatically well-scoped. I arrived at this formulation: class LC rep where var :: p → rep lam :: (forall p . p → rep) → rep (I am ignoring applications as they are not important for making my point.) As Andres Löh has pointed out to me this is not the final-tagless formulation of the regular PHOAS form, as that would add the p type variable as the second class parameter and the rank-2 forall would appear from "outside". But I liked my simple formulation and the obviously and explicitly parametric lambda body. So I started implementing a rudimentary visualisation instance given a name supply: instance LC ([String] → String) where var = ??? -- const "VAR" lam f = \supply → ... It turns out that implementing var is only possible by giving a constant result, and for lam I am in trouble, because I cannot call f as it expects a polymorphic argument. Both problems are due to the fact that p is too polymorphic. Can we have it a bit less polymorphic in order to make some progress? Thinking about it I came up with the idea of giving each instance a way to constrain the p variable as it fits. So I changed class LC such: class LC rep where type Restricted rep p :: Constraint var :: Restricted rep p ⇒ p → rep lam :: (forall p . Restricted rep p ⇒ p → rep) → rep Now my instance can pick the restriction as it fits: instance LC ([String] → String) where type Restricted ([String] → String) p = ([String] → String) ~ p var = id lam f = \supply → ... As you see I chose the restriction to be type equality which essentially cancels parametricity in this instance and gives me simple HOAS. Filling in p becomes easy now. lam f = \(n:ns) → "\\" ++ n ++ "." ++ (f $ const n) ns Let's try it out! But in order to do that we need an instance of Show for name supplies. This could be one: instance Show ([String] → String) where show f = f $ map (('v':) . show) [0..] Now we can interpret a lambda term as a name supply. *Main› lam (\x → lam $ \y → var x) :: [String] → String \v0.\v1.v0 It works™ :-) But I can go further. After implementing several other instances I observed that I always wanted to destroy parametricity completely and implement var as the identity. So why not have these as defaults and reduce the boilerplate by a nice margin? Here is the final class definition that I arrived at: class LC rep where type Restricted rep p :: Constraint type Restricted rep p = rep ~ p var :: Restricted rep p ⇒ p → rep default var :: rep ~ p ⇒ p → rep var = id lam :: (forall p . Restricted rep p ⇒ p → rep) → rep I like it so far. PS: Here are the prerequisites if you want to compile the above yourself: {-# LANGUAGE UnicodeSyntax, ConstraintKinds, TypeFamilies, RankNTypes, FlexibleInstances, DefaultSignatures #-} import GHC.Exts Posted by heisenbug at 2:28 PM Labels: final-tagless , haskell , HOAS , lambda calculus , parametric , PHOAS No comments: Post a Comment Newer Post Older Post Home Subscribe to: Post Comments (Atom) Blog Archive ►  2022 (1) ►  February (1) ▼  2014 (5) ►  November (1) ►  October (1) ►  August (1) ▼  July (1) Rank-2 PHOAS ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://tests.reproducible-builds.org/debian/bookworm/index_dd-list.html | Maintainers of unreproducible packages in bookworm Debian navigation Change suite/architecture Tested suites: unstable forky trixie bookworm experimental Test results statistics Results for bookworm/amd64 Unreproducible packages: with notes without notes Other package states: package sets Recently tested packages: last 24h last 48h all tested packages packages with .buildinfo files packages without .buildinfo files Scheduled for amd64 Maintainers of in bookworm Reproducible Debian overview Development dashboard Past releases dashboard Categorized issues Bugs filed Variations tested Packages with notifications enabled ⚑ Repositories overview Backend related Broken pieces Documentation (eg. on manual scheduling) Performance stats Health monitoring node overview job overview daily graphs weekly graphs monthly graphs yearly graphs The Reproducible Builds project reproducible-builds.org Reproducible Builds - Docs • News Reproducible Builds in Debian - Wiki SOURCE_DATE_EPOCH specification reproduce.debian.net aims for 100% bit-for-bit identical rebuilds of Debian other CI tests Maintainers of unreproducible packages in bookworm The following maintainers and uploaders are listed for packages in bookworm which have built unreproducibly. Please note that the while the link always points to the amd64 version, it's possible thatthe unreproducibility is only present in another architecture(s). "Adam C. Powell, IV" <hazelsct@debian.org> ¶ med-fichier (U) mpich (U) oce (U) petsc (U) slepc (U) spooles (U) A. Maitland Bottoms <bottoms@debian.org> ¶ codec2 gnuradio gpredict (U) gr-fosphor gr-limesdr (U) gr-osmosdr gr-radar gr-rds libiio uhd Aaron Boxer <boxerab@protonmail.com> ¶ libgrokj2k Aaron M. Ucko <ucko@debian.org> ¶ fltk1.3 gbrowse (U) ncbi-blast+ (U) Abou Al Montacir <abou.almontacir@sfr.fr> ¶ castle-game-engine (U) libqtpas (U) Adam Borowski <kilobyte@angband.pl> ¶ cardo (U) Adam Majer <adamm@zombino.com> ¶ qtcreator (U) Adrian Knoth <adi@drcomp.erfurt.thur.de> ¶ ardour (U) Adrian Vondendriesch <adrian.vondendriesch@credativ.de> ¶ pacemaker (U) pgpool2 (U) Afif Elghraoui <afif@debian.org> ¶ gridengine # (U) Alastair McKinstry <mckinstry@debian.org> ¶ atlas-ecmwf eccodes eckit emoslib # fdb ferret-vis fiat-ecmwf glew hdf-eos5 metkit metview mpich (U) ncl odc openmpi pyferret python-escript (U) python-xarray (U) silo-llnl spherepack Alberto Leiva Popper <ydahhrk@gmail.com> ¶ jool (U) Alberto Luaces Fernández <aluaces@udc.es> ¶ yasnippet (U) Albin Tonnerre <lutin@debian.org> ¶ efl (U) Alec Leamas <leamas.alec@gmail.com> ¶ lirc (U) Alessandro Ghedini <ghedo@debian.org> ¶ valgrind + Alessio Treglia <alessio@debian.org> ¶ libsoxr (U) tsdecrypt (U) Alexander Kjäll <alexander.kjall@gmail.com> ¶ rust-ripasso-cursive (U) Alexander Ponyatykh <lazyranma@gmail.com> ¶ g15daemon Alexander Wirt <formorer@debian.org> ¶ icinga2 (U) Alexandre Dantas <eu@alexdantas.net> ¶ nsnake Alexandre Viau <aviau@debian.org> ¶ fonts-fork-awesome (U) Aloïs Micard <creekorful@debian.org> ¶ aerc (U) Amin Bandali <bandali@gnu.org> ¶ ring (U) Amul Shah <Amul.Shah@fisglobal.com> ¶ fis-gtm (U) Anders Kaseorg <andersk@mit.edu> ¶ openafs (U) Andre Noll <maan@tuebingen.mpg.de> ¶ liblopsub Andreas Beckmann <anbe@debian.org> ¶ intel-graphics-compiler (U) oclgrind (U) Andreas Boll <aboll@debian.org> ¶ mesa (U) Andreas Bombe <aeb@debian.org> ¶ ghdl (U) gr-limesdr (U) Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> ¶ clamav (U) Andreas Henriksson <andreas@fatal.se> ¶ golang-github-mendersoftware-mender-artifact (U) Andreas Metzler <ametzler@debian.org> ¶ efl (U) enblend-enfuse (U) lynx (U) pfstools (U) Andreas Rönnquist <gusnan@debian.org> ¶ allegro5 # (U) Andreas Tille <tille@debian.org> ¶ abinit (U) ball (U) biojava-live (U) buddy + (U) consensuscore (U) dicom3tools (U) emboss (U) filtlong (U) fis-gtm (U) freebayes (U) gatb-core (U) gbrowse (U) golang-github-jung-kurt-gofpdf + (U) hmmer (U) htsjdk (U) igraph (U) iqtree (U) jebl2 (U) jellyfish (U) kallisto (U) libfastutil-java (U) liblemon (U) librostlab (U) libvbz-hdf-plugin (U) mapsembler2 (U) mira (U) ncbi-blast+ (U) ngspice (U) node-shiny-server (U) otb (U) parallel (U) pixelmed (U) porechop (U) python-cogent (U) r-bioc-biocparallel (U) r-bioc-genomicfeatures (U) r-bioc-ioniser (U) r-cran-cli (U) r-cran-cliapp (U) r-cran-dbitest (U) r-cran-diagnosismed (U) r-cran-dimred (U) r-cran-emayili (U) r-cran-futile.logger (U) r-cran-gert (U) r-cran-knitr (U) r-cran-lambda.r (U) r-cran-parsetools (U) r-cran-rprojroot (U) r-cran-rstan (U) r-cran-sass (U) r-cran-taxize (U) r-cran-teachingdemos (U) r-cran-tm (U) r-cran-tmvtnorm (U) r-cran-tweenr (U) segemehl (U) seqan2 (U) siscone (U) treeview (U) tvc (U) twopaco (U) virtuoso-opensource (U) Andrei Rozanski <rozanski.andrei@gmail.com> ¶ libamplsolver (U) Andrej Shadura <andrewsh@debian.org> ¶ critcl + (U) fonts-karmilla (U) g15daemon (U) libcamera (U) pseudo sphinxsearch Andres Salomon <dilinger@debian.org> ¶ chromium (U) Andrew Ross <ubuntu@rossfamily.co.uk> ¶ libpgjava (U) Andrey Rahmatullin <wrar@debian.org> ¶ kvirc (U) Andrey Rakhmatullin <wrar@debian.org> ¶ python-scrapy (U) Andrius Merkys <merkys@debian.org> ¶ apache-commons-rdf (U) openbabel (U) pdb-tools (U) python-ase (U) python-fabio (U) Android Tools Maintainers <android-tools-devel@lists.alioth.debian.org> ¶ android-platform-external-libunwind Andy Li <andy@onthewings.net> ¶ ocaml-obuild (U) Angus Lees <gus@debian.org> ¶ cargo (U) Ansgar <ansgar@debian.org> ¶ dune-common (U) dune-functions (U) dune-geometry (U) dune-grid (U) dune-grid-glue (U) dune-istl (U) dune-localfunctions (U) dune-typetree (U) Anthony Fok <foka@debian.org> ¶ autokey (U) golang-github-revel-revel (U) golang-github-yosssi-ace (U) guile-2.2 lilypond Antoine Beaupré <anarcat@debian.org> ¶ gmpc (U) rapid-photo-downloader (U) Anton Gladky <gladk@debian.org> ¶ boost1.74 (U) boost1.81 (U) esys-particle (U) liggghts (U) sfepy (U) solvespace (U) sumo (U) Anton Zinoviev <zinoviev@debian.org> ¶ scalable-cyrfonts Antonio Terceiro <antonio.terceiro@linaro.org> ¶ lava (U) Antonio Terceiro <terceiro@debian.org> ¶ passenger (U) Antonio Valentino <antonio.valentino@tiscali.it> ¶ numexpr (U) Anuradha Weeraman <anuradha@debian.org> ¶ ksh93u+m # Apollon Oikonomopoulos <apoikos@debian.org> ¶ ganeti (U) Arnaud Rebillout <arnaud.rebillout@collabora.com> ¶ efitools (U) Arnaud Rebillout <arnaudr@kali.org> ¶ docker.io (U) notary (U) Arne Morten Kvarving <arne.morten.kvarving@sintef.no> ¶ opm-upscaling (U) Aron Xu <aron@debian.org> ¶ dnf-plugins-core fcitx-libpinyin (U) ibus (U) libpinyin (U) opencc (U) Arun Kumar Pariyar <arun@debian.org> ¶ go-gir-generator (U) Arun Kumar Pariyar <openarungeek@gmail.com> ¶ dde-qt-dbus-factory (U) deepin-deb-installer (U) Asias He <asias@debian.org> ¶ libpinyin (U) opencc (U) Ask Hjorth Larsen <asklarsen@gmail.com> ¶ python-ase (U) Athena Capital Research <acr-debian@athenacr.com> ¶ quickfix Aurelien Jarno <aurel32@debian.org> ¶ med-fichier (U) Aurélien COUDERC <coucouf@debian.org> ¶ breeze-icons (U) kuserfeedback (U) oxygen-icons5 (U) plasma-workspace (U) Axel Beckert <abe@debian.org> ¶ dpmb john (U) lynx (U) Ayatana Packagers <pkg-ayatana-devel@lists.alioth.debian.org> ¶ libayatana-appindicator Aymeric Agon-Rambosson <aymeric.agon@yandex.com> ¶ citar (U) consult-el (U) embark (U) marginalia (U) orderless (U) vertico (U) Badreddin Aboubakr <badreddin.aboubakr@cloud.ionos.com> ¶ prometheus-elasticsearch-exporter (U) Balasankar C <balasankarc@debian.org> ¶ fonts-smc-anjalioldlipi (U) fonts-smc-dyuthi (U) fonts-smc-karumbi (U) fonts-smc-keraleeyam (U) fonts-smc-meera (U) fonts-smc-rachana (U) fonts-smc-raghumalayalamsans (U) fonts-smc-uroob (U) Balint Reczey <balint@balintreczey.hu> ¶ erlang-cowlib (U) ffmpeg (U) Barak A. Pearlmutter <bap@debian.org> ¶ chezscheme (U) chuck (U) ikarus latex-coffee-stains mit-scheme oaklisp pstoedit smlnj yasnippet (U) Barry deFreese <bdefreese@debian.org> ¶ asc (U) blockattack (U) liquidwar (U) netrek-client-cow (U) Bartosz Fenski <fenio@debian.org> ¶ asc (U) netw-ib-ox-ag Bas Couwenberg <sebastic@debian.org> ¶ gdal (U) grass (U) libosmium (U) mapnik (U) nco (U) proj (U) Bas Wijnen <wijnen@debian.org> ¶ gfpoken (U) openmsx Bastian Blank <waldi@debian.org> ¶ cdebootstrap + ipxe linux (U) Bastian Venthur <venthur@debian.org> ¶ kivy (U) Bastien Roucariès <rouca@debian.org> ¶ imagemagick (U) node-mocha (U) Bdale Garbee <bdale@gag.com> ¶ debian-history (U) librnd (U) pforth Ben Armstrong <synrg@sanctuary.nslug.ns.ca> ¶ live-manual (U) Ben Hutchings <benh@debian.org> ¶ linux (U) Benda Xu <heroxbd@gentoo.org> ¶ casacore (U) casacore-data-igrf (U) casacore-data-jplde (U) scim (U) Benda Xu <orv@debian.org> ¶ scmutils Benjamin Barenblat <bbaren@debian.org> ¶ coq (U) Benjamin Barenblat <bbaren@mit.edu> ¶ boogie dafny Benjamin Drung <bdrung@debian.org> ¶ libsoxr (U) vlc # + (U) Benjamin Drung <bdrung@ubuntu.com> ¶ rdma-core Benjamin Kaduk <kaduk@mit.edu> ¶ openafs Benjamin Mako Hill <mako@debian.org> ¶ python-iso8601 (U) Benjamin Mesing <ben@debian.org> ¶ javaparser (U) Bernhard Miklautz <bernhard.miklautz@shacknet.at> ¶ freerdp2 (U) Bernhard Schmidt <berni@debian.org> ¶ gnarwl linphone (U) linphone-desktop (U) bertrand Neron <bneron@pasteur.fr> ¶ macsyfinder (U) Bill Allombert <ballombe@debian.org> ¶ gap menu Birger Schacht <birger@debian.org> ¶ foot Boris Pek <tehnick@debian.org> ¶ psi-plus Boyuan Yang <byang@debian.org> ¶ dde-qt-dbus-factory (U) fcitx5-bamboo (U) fcitx5-zhuyin (U) go-gir-generator (U) goldendict-webengine libxsmm (U) opencc (U) qterm (U) rime-array (U) rime-cantonese (U) rime-ipa (U) rime-loengfan (U) rime-luna-pinyin (U) rime-middle-chinese (U) rime-pinyin-simp (U) rime-quick (U) rime-scj (U) rime-soutzoe (U) rime-stroke (U) rime-terra-pinyin (U) rime-wugniu (U) Brad Chapman <chapmanb@50mail.com> ¶ freebayes (U) Brian May <bam@debian.org> ¶ python-mkdocs (U) python-parse-type (U) Brian Thomason <brian.thomason@eucalyptus.com> ¶ velocity (U) BW Keller <malzraa@gmail.com> ¶ yt (U) Calibre maintainer team <team+calibre@tracker.debian.org> ¶ calibre Calum McConnell <calumlikesapplepie@gmail.com> ¶ whitakers-words Camm Maguire <camm@debian.org> ¶ axiom fricas gcl hol88 lam + maxima Carl Fürstenberg <azatoth@gmail.com> ¶ obs-studio (U) Carl Worth <cworth@debian.org> ¶ notmuch Carlos Henrique Lima Melara <charlesmelara@outlook.com> ¶ kristall Carlos Zuferri <chals@altorricon.com> ¶ live-manual (U) Carsten Schoenert <c.schoenert@t-online.de> ¶ arduino-core-avr (U) kicad (U) ngspice (U) Cesare Falco <c.falco@ubuntu.com> ¶ mame (U) Changwoo Ryu <cwryu@debian.org> ¶ ibus (U) ChangZhuo Chen (陳昌倬) <czchen@debian.org> ¶ fcitx-libpinyin (U) ibus-libzhuyin (U) libpinyin (U) Charles Plessy <plessy@debian.org> ¶ emboss (U) gbrowse (U) htsjdk (U) Chow Loong Jin <hyperair@debian.org> ¶ gdata-sharp (U) hyena (U) mono-upnp (U) newtonsoft-json (U) slic3r (U) taglib-sharp (U) zeitgeist-sharp (U) Chris Boot <bootc@debian.org> ¶ busybox (U) Chris Halls <halls@debian.org> ¶ writer2latex (U) Chris Hofstaedtler <zeha@debian.org> ¶ multipath-tools (U) Chris Lamb <lamby@debian.org> ¶ black (U) redisearch Chris Lawrence <lawrencc@debian.org> ¶ r-cran-amelia (U) Christian Ehrhardt <christian.ehrhardt@canonical.com> ¶ openvswitch (U) Christian Kastner <ckk@debian.org> ¶ libfann pyswarms (U) rocm-hipamd (U) scikit-learn (U) Christian M. Amsüss <chrysn@fsfe.org> ¶ rdflib + (U) Christian Marillat <marillat@debian.org> ¶ libtorrent-rasterbar Christian T. Steigies <cts@debian.org> ¶ gle-graphics-manual (U) Christine Spang <christine@debian.org> ¶ quodlibet (U) Christoph Berg <myon@debian.org> ¶ gr-limesdr (U) libcm256cc (U) libpgjava (U) pgloader (U) pgpool2 (U) pgsphere (U) trustedqsl (U) Christoph Biedl <debian.axhn@manchmal.in-ulm.de> ¶ busybox (U) gkrellm-leds P Christoph Egger <christoph@debian.org> ¶ buildapp (U) ecl (U) sbcl (U) unknown-horizons (U) warzone2100 (U) Christoph Haas <haas@debian.org> ¶ zabbix (U) Christoph Martin <martin@uni-mainz.de> ¶ sks Christophe Mutricy <xtophe@videolan.org> ¶ vlc # + (U) Christophe Trophime <christophe.trophime@lncmi.cnrs.fr> ¶ getdp (U) Christopher James Halse Rogers <raof@ubuntu.com> ¶ mir (U) ClamAV Team <pkg-clamav-devel@lists.alioth.debian.org> ¶ clamav Claudius Heine <ch@denx.de> ¶ tpm2-pytss (U) Clay Stan <claystan97@gmail.com> ¶ dde-qt-dbus-factory (U) deepin-deb-installer (U) Clint Adams <clint@debian.org> ¶ haskell-haskell-gi-base (U) haskell-shell-conduit (U) haskell-snap-templates (U) Clément Hermann <nodens@debian.org> ¶ onedrive (U) Colin Tuckley <colint@debian.org> ¶ gpredict (U) Colin Watson <cjwatson@debian.org> ¶ python-nacl (U) Compute Library Team <developer-compute@arm.com> ¶ arm-compute-library Cordell Bloor <cgmb@slerp.xyz> ¶ rocm-hipamd (U) rocsparse (U) Corey Bryant <corey.bryant@canonical.com> ¶ murano (U) Cyril Brulebois <kibi@debian.org> ¶ debian-installer # # # (U) Cédric Boutillier <boutil@debian.org> ¶ highlight.js (U) libm4ri (U) Cédric Lood <cedric.lood@kuleuven.be> ¶ porechop (U) Dain Nilsson <dain@yubico.com> ¶ libu2f-host (U) Damien Raude-Morvan <drazzib@debian.org> ¶ codenarc (U) commons-vfs (U) felix-main (U) libspring-java (U) Damyan Ivanov <dmn@debian.org> ¶ firebird3.0 libmarc-charset-perl (U) Danai SAE-HAN (韓達耐) <danai@debian.org> ¶ cjk (U) latex-cjk-chinese-arphic (U) Daniel Baumann <daniel.baumann@progress-linux.org> ¶ ck dnsjit terminaltables Daniel Dehennin <daniel.dehennin@baby-gnu.org> ¶ moarvm (U) nqp (U) raku-readline (U) raku-tap-harness (U) raku-zef (U) rakudo # (U) Daniel Kahn Gillmor <dkg@fifthhorseman.net> ¶ gnupg2 (U) rust-configparser (U) rust-sequoia-sop (U) rust-sequoia-sq (U) rust-sequoia-sqv (U) Daniel Leidert <dleidert@debian.org> ¶ openbabel (U) Daniel Richard G. <skunk@iSKUNK.ORG> ¶ chromium (U) Daniel Silverstone <dsilvers@digital-scurf.org> ¶ netsurf (U) dann frazier <dannf@debian.org> ¶ edk2 (U) makedumpfile (U) Dario Minnucci <midget@debian.org> ¶ mon-contrib Dave Love <d.love@liverpool.ac.uk> ¶ gridengine # (U) David Banks <amoebae@gmail.com> ¶ sisc David Bremner <bremner@debian.org> ¶ notmuch (U) polymake racket sketch (U) David Miguel Susano Pinto <carandraug+dev@gmail.com> ¶ ncbi-igblast (U) David Paleino <dapal@debian.org> ¶ mapnik (U) openlayers (U) uncertainties (U) underscore (U) David Steele <steele@debian.org> ¶ cryfs David Weinehall <tao@debian.org> ¶ scummvm (U) Davide G. M. Salvetti <salve@debian.org> ¶ auctex Dawid Dziurla <dawidd0811@gmail.com> ¶ gitbatch (U) termshark (U) Dean Serenevy <dean@serenevy.net> ¶ kivy (U) Debian 3-D Printing Packages <3dprinter-general@lists.alioth.debian.org> ¶ slic3r Debian ACE maintainers <team+ace@tracker.debian.org> ¶ ace Debian Astro Team <debian-astro-maintainers@lists.alioth.debian.org> ¶ casacore casacore-data-igrf casacore-data-jplde eso-midas montage ndcube starjava-topcat starjava-ttools xpa Debian Astronomy Maintainers <debian-astro-maintainers@lists.alioth.debian.org> ¶ astropy Debian Astronomy Team <debian-astro-maintainers@lists.alioth.debian.org> ¶ yt Debian Authentication Maintainers <team+auth@tracker.debian.org> ¶ libu2f-host Debian Bluetooth Maintainers <team+pkg-bluetooth@tracker.debian.org> ¶ bluez Debian Boost Team <team+boost@tracker.debian.org> ¶ boost1.74 boost1.81 Debian Chinese Team <chinese-developers@lists.alioth.debian.org> ¶ opencc (U) qterm unicon # Debian Chromium Team <chromium@packages.debian.org> ¶ chromium Debian CLI Applications Team <pkg-cli-apps-team@lists.alioth.debian.org> ¶ hexbox keepass2 openmcdf yahtzeesharp Debian CLI Libraries Team <pkg-cli-libs-team@lists.alioth.debian.org> ¶ cecil-flowanalysis db4o gdata-sharp gtk-sharp-beans gtk-sharp2 gtk-sharp3 hyena mono-addins mono-upnp mono-zeroconf newtonsoft-json nrefactory nunit opentk taglib-sharp taoframework zeitgeist-sharp Debian Clojure Maintainers <team+clojure@tracker.debian.org> ¶ clojure core-specs-alpha-clojure leiningen-clojure + spec-alpha-clojure Debian Cloud Team <debian-cloud@lists.debian.org> ¶ aws-crt-python Debian Common Lisp Team <debian-common-lisp@lists.debian.org> ¶ abcl buildapp cmucl ecl sbcl slime Debian D Language Group <team+d-team@tracker.debian.org> ¶ dub ldc Debian Deep Learning Team <debian-ai@lists.debian.org> ¶ pytorch Debian Deepin Packaging Team <pkg-deepin-devel@lists.alioth.debian.org> ¶ dde-qt-dbus-factory deepin-deb-installer go-gir-generator Debian DM Multipath Team <team+linux-blocks@tracker.debian.org> ¶ multipath-tools Debian Documentation Project <debian-doc@lists.debian.org> ¶ refcard Debian EFI team <debian-efi@lists.debian.org> ¶ libjcat Debian Electronics Team <pkg-electronics-devel@alioth-lists.debian.net> ¶ arduino-core-avr kicad ngspice Debian Electronics Team <pkg-electronics-devel@lists.alioth.debian.org> ¶ arduino ghdl librnd Debian Emacsen team <debian-emacsen@lists.debian.org> ¶ citar consult-el embark hl-todo-el marginalia no-littering-el orderless vertico yasnippet Debian Emacsen Team <debian-emacsen@lists.debian.org> ¶ flycheck Debian Erlang Packagers <pkg-erlang-devel@lists.alioth.debian.org> ¶ erlang erlang-cowlib erlang-proper esdl manderlbot rebar rebar3 wings3d yaws Debian FlightGear Crew <team+flightgear@tracker.debian.org> ¶ flightgear Debian Fonts Task Force <debian-fonts@lists.debian.org> ¶ cardo fonts-fantasque-sans fonts-fork-awesome fonts-meera-inimai fonts-smc-anjalioldlipi fonts-smc-dyuthi fonts-smc-karumbi fonts-smc-keraleeyam Debian Fonts Task Force <pkg-fonts-devel@lists.alioth.debian.org> ¶ fonts-beteckna fonts-karmilla fonts-smc-meera fonts-smc-rachana fonts-smc-raghumalayalamsans Debian FreeIPA Team <pkg-freeipa-devel@alioth-lists.debian.net> ¶ idm-console-framework Debian FreeIPA Team <pkg-freeipa-devel@lists.alioth.debian.org> ¶ nss-pem Debian Games Team <pkg-games-devel@lists.alioth.debian.org> ¶ 0ad ace-of-penguins allegro5 # asc blockattack bzflag colobot darkradiant doomsday gfpoken lincity-ng liquidwar mame netrek-client-cow ogre-1.12 scummvm spring supertuxkart teeworlds ufoai unknown-horizons warzone2100 Debian Ganeti Team <ganeti@packages.debian.org> ¶ ganeti Debian GCC Maintainers <debian-gcc@lists.debian.org> ¶ gcc-11-cross gcc-11-cross-mipsen gcc-12-cross gcc-12-cross-mipsen hsail-tools newlib Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org> ¶ gdal grass jts libosmium mapnik nco openlayers otb proj savi Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org> ¶ gegl glib-d gnome-shell-extension-caffeine (U) gnome-shell-extension-easyscreencast gnome-video-arcade libadwaita-1 mm-common Debian GnuPG Maintainers <pkg-gnupg-maint@lists.alioth.debian.org> ¶ gnupg2 Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org> ¶ golang-github-stvp-tempredis golang-github-yosssi-ace Debian Go Packaging Team <team+pkg-go@tracker.debian.org> ¶ aerc age containerd docker.io fscrypt gitbatch go-sendxmpp golang-github-jung-kurt-gofpdf + golang-github-mendersoftware-mender-artifact golang-github-revel-revel gosop notary opensnitch prometheus-elasticsearch-exporter prometheus-mysqld-exporter riseup-vpn secsipidx shoelaces (U) termshark victoriametrics xmpp-dns ymuse Debian HA Maintainers <debian-ha-maintainers@alioth-lists.debian.net> ¶ pacemaker Debian Hamradio Maintainers <debian-hams@lists.debian.org> ¶ gpredict gr-limesdr libcm256cc libzia trustedqsl Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org> ¶ git-annex haskell-haskell-gi-base haskell-shell-conduit haskell-snap-templates ldap-haskell Debian Hebrew Packaging Team <team+hebrew@tracker.debian.org> ¶ bidiui libhdate Debian HPC Team <debian-hpc@lists.debian.org> ¶ gridengine # infinipath-psm Debian Input Method Team <debian-input-method@lists.debian.org> ¶ fcitx-libpinyin fcitx5-bamboo fcitx5-zhuyin ibus ibus-libzhuyin libpinyin open-gram opencc rime-array rime-cantonese rime-ipa rime-loengfan rime-luna-pinyin rime-middle-chinese rime-pinyin-simp rime-quick rime-scj rime-soutzoe rime-stroke rime-terra-pinyin rime-wugniu Debian Install System Team <debian-boot@lists.debian.org> ¶ busybox debian-installer # # # Debian Java maintainers <pkg-java-maintainers@lists.alioth.debian.org> ¶ argparse4j fest-assert latexdraw (U) Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org> ¶ apache-commons-rdf asmtools aspectj bcel bnd bsh c3p0 cobertura codenarc commons-beanutils commons-csv commons-io commons-vfs derby felix-main felix-scr fop freeplane gant gluegen2 gmetrics gradle gradle-kotlin-dsl + groovy h2database httpcomponents-client httpunit hyperic-sigar jabref jackson-annotations jakarta-jmeter + jalview jameica-h2database java-gnome java-xmlbuilder javaparser javawriter jaxb jcabi-aspects jruby jsch json4s jsoup jxplorer libandroid-json-org-java libapache-poi-java libcobra-java libcommons-codec-java libcommons-collections3-java libcommons-collections4-java libcommons-compress-java libcommons-fileupload-java libcommons-lang3-java libcommons-net-java libfastutil-java libhibernate-validator4-java libnative-platform-java libnb-platform18-java libpgjava libspring-java libxbean-java libxml-security-java libxtc-rats-java lombok lucene-solr lucene4.10 lucene8 mathpiper mckoisqldb mockobjects mp4parser okio openjpa saxonb sbt-serialization scala scala-parser-combinators scala-pickling scala-tools-sbinary scala-xml serp sweethome3d-furniture tomcat10 velocity visualvm wala weupnp xmlbeans Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org> ¶ highlight.js node-d3 node-mocha node-opencv node-webpack twitter-bootstrap3 underscore Debian Junior Maintainers <debian-jr@lists.debian.org> ¶ tuxpaint (U) Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> ¶ ktikz kvirc rkward Debian Kdump <team+kdump@tracker.debian.org> ¶ makedumpfile Debian Kernel Team <debian-kernel@lists.debian.org> ¶ linux Debian Kolab Maintainers <team+kolab-mantainers@tracker.debian.org> ¶ libkolabxml Debian LAVA team <pkg-linaro-lava-devel@lists.alioth.debian.org> ¶ lava Debian LibreOffice Maintainers <debian-openoffice@lists.debian.org> ¶ writer2latex Debian Libvirt Maintainers <pkg-libvirt-maintainers@lists.alioth.debian.org> ¶ libguestfs Debian Lirc Team <team+debian-lirc@tracker.debian.org> ¶ lirc Debian Lynx Packaging Team <pkg-lynx-maint@lists.alioth.debian.org> ¶ lynx Debian Mactel <team+pkg-mactel-devel@tracker.debian.org> ¶ pommed Debian Math Team <team+math@tracker.debian.org> ¶ cddlib flint maxima-sage primesieve singular Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org> ¶ ball biojava-live biojava5-live biojava6-live cmtk consensuscore dicom3tools emboss filtlong fis-gtm freebayes gatb-core gbrowse gdcm heudiconv hmmer htsjdk igraph iqtree jebl2 jellyfish kallisto libamplsolver libdeflate liblemon librostlab libvbz-hdf-plugin logol macsyfinder mapsembler2 metastudent-data mia mira mrtrix3 ncbi-blast+ ncbi-igblast nipy nitime parallel pixelmed porechop pydicom python-cogent salmon segemehl seqan2 seqan3 shapeit4 treeview tvc twopaco Debian Mir Team <team+mir@tracker.debian.org> ¶ mir Debian Mobcom Maintainers <Debian-mobcom-maintainers@lists.alioth.debian.org> ¶ libosmocore Debian Mono Group <pkg-mono-group@lists.alioth.debian.org> ¶ mod-mono mono-tools Debian Multimedia Maintainers <debian-multimedia@lists.debian.org> ¶ ardour ffmpeg gsequencer handbrake jsusfx juce libcamera libdc1394 libsoxr mixxx obs-studio openni openni-sensor-pointclouds openni-sensor-primesense opensubdiv rosegarden vlc # + xawtv zytrax Debian Multimedia Maintainers <pkg-multimedia-maintainers@lists.alioth.debian.org> ¶ tsdecrypt Debian Multimedia Packages Maintainers <pkg-multimedia-maintainers@lists.alioth.debian.org> ¶ klystrack Debian MySQL Maintainers <pkg-mysql-maint@lists.alioth.debian.org> ¶ galera-3 Debian Nagios Maintainer Group <pkg-nagios-devel@lists.alioth.debian.org> ¶ icinga2 Debian Nginx Maintainers <pkg-nginx-maintainers@alioth-lists.debian.net> ¶ nginx Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org> ¶ advi + coq coq-iris hevea liquidsoap ocaml-atd ocaml-batteries ocaml-obuild ocaml-topkg ocaml-uucp ocamlviz omake # ssreflect why3 wyrd Debian OpenCL Maintainers <pkg-opencl-devel@lists.alioth.debian.org> ¶ oclgrind Debian OpenCL team <pkg-opencl-devel@lists.alioth.debian.org> ¶ intel-graphics-compiler Debian OpenStack <team+openstack@tracker.debian.org> ¶ barbican cinder cloudkitty glance heat ironic manila masakari masakari-monitors murano nova octavia openstack-trove openvswitch python-jsonschema python-psycopg2cffi qpid-proton rabbitmq-server sahara senlin watcher Debian PaN Maintainers <debian-pan-maintainers@alioth-lists.debian.net> ¶ hkl pyfai P python-fabio Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org> ¶ lemonldap-ng libmarc-charset-perl Debian PhotoTools Maintainers <pkg-phototools-devel@lists.alioth.debian.org> ¶ enblend-enfuse openimageio pfstools Debian PHP Maintainers <team+pkg-php@tracker.debian.org> ¶ php8.2 Debian Pkg-e Team <pkg-e-devel@lists.alioth.debian.org> ¶ efl Debian PostgreSQL Maintainers <team+postgresql@tracker.debian.org> ¶ libpgjava (U) pgpool2 pgsphere Debian publicity team <debian-publicity@lists.debian.org> ¶ debian-history Debian Python Modules Team <team+python@tracker.debian.org> ¶ fpylll Debian Python Team <team+python@tracker.debian.org> ¶ alembic autokey black buildbot dask dupeguru (U) firmware-microbit-micropython flask-limiter indexed-gzip ipyparallel jpylyzer kivy mayavi2 mercurial-evolve mpl-sphinx-theme (U) mypy nbconvert nbsphinx numpy (U) openlp pylint (U) pymodbus pyqwt3d (U) python-blosc python-cloup python-cycler (U) python-fudge # python-iso8601 python-mkdocs python-nacl python-parse-type python-pint python-pygraphviz (U) python-qtconsole python-scrapy python-simpy3 quodlibet radon rdflib + sphinx-gallery (U) sphinx-panels (U) sqlalchemy (U) tpm2-pytss twisted xonsh # Debian QA Group <packages@qa.debian.org> ¶ a2ps checkpw closure-compiler coinor-dylp collada2gltf esnacc freewnn gentoo haskell98-report icon lcm libbrahe lifelines madlib muse-el ns2 omnievents openclipart posixtestsuite ruby-tioga seyon ucspi-proxy Debian QEMU Team <pkg-qemu-devel@lists.alioth.debian.org> ¶ edk2 qemu Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> ¶ breeze-icons kdevelop-php kuserfeedback oxygen-icons5 plasma-workspace pyside2 qt3d-opensource-src qt6-5compat qt6-datavis3d qt6-declarative qt6-multimedia qt6-quick3d qt6-virtualkeyboard qtbase-opensource-src # # # qtcharts-opensource-src qtconnectivity-opensource-src qtcreator qtdatavis3d-everywhere-src qtdeclarative-opensource-src qtdoc-opensource-src qtgamepad-everywhere-src qtgraphicaleffects-opensource-src qtlocation-opensource-src qtnetworkauth-everywhere-src qtquickcontrols-opensource-src qtquickcontrols2-opensource-src qtscxml-everywhere-src qtsensors-opensource-src qtserialbus-everywhere-src qtserialport-opensource-src qtspeech-opensource-src qtsvg-opensource-src qttools-opensource-src qtvirtualkeyboard-opensource-src qtwayland-opensource-src qtwebchannel-opensource-src qtwebengine-opensource-src qtwebsockets-opensource-src qtwebview-opensource-src qtx11extras-opensource-src Debian R Packages Maintainers <r-pkg-team@alioth-lists.debian.net> ¶ r-bioc-biocparallel r-bioc-genomicfeatures r-bioc-ioniser r-cran-amelia r-cran-cli r-cran-cliapp r-cran-dbitest r-cran-diagnosismed r-cran-dimred r-cran-emayili r-cran-futile.logger r-cran-gert r-cran-gh r-cran-gprofiler2 r-cran-knitr r-cran-lambda.r r-cran-parsetools r-cran-r.devices r-cran-repr r-cran-rprojroot r-cran-rsdmx r-cran-rstan r-cran-sass r-cran-taxize r-cran-teachingdemos r-cran-tm r-cran-tmvtnorm r-cran-tweenr Debian Rakudo Maintainers <pkg-rakudo-devel@lists.alioth.debian.org> ¶ moarvm nqp prove6 raku-getopt-long raku-hash-merge raku-json-class raku-json-fast raku-json-marshal raku-json-name raku-json-optin raku-json-unmarshal raku-license-spdx raku-log raku-meta6 raku-readline raku-tap-harness raku-test-meta raku-uri raku-zef rakudo # Debian Remote Maintainers <debian-remote@lists.debian.org> ¶ freerdp2 python-x2go P remmina Debian Robotics Team <team+robotics@tracker.debian.org> ¶ ros2-osrf-testing-tools-cpp Debian ROCm Team <debian-ai@lists.debian.org> ¶ rocm-hipamd Debian rsbackup maintainers <rsbackup-maint@lists.alioth.debian.org> ¶ rsbackup Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers@lists.alioth.debian.org> ¶ ruby-pgplot (U) Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org> ¶ passenger ruby-pygments.rb ruby-sigar Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net> ¶ rust-configparser rust-elfx86exts rust-kmon rust-ripasso-cursive rust-sequoia-sop rust-sequoia-sq rust-sequoia-sqv rustc-web wasi-libc Debian Science Maintainers <debian-science-maintainers@alioth-lists.debian.net> ¶ cvc5 gap-scscp giac Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org> ¶ amp asl buddy + cctbx clhep + coinor-bonmin combblas deal.ii dune-common dune-functions dune-geometry dune-grid dune-grid-glue dune-istl dune-localfunctions dune-typetree dxf2gcode esys-particle euslisp freecad gap-design gap-sonata gerris gle-graphics-manual hkl (U) ignition-plugin jskeus libflame libm4ri librsb # libxsmm liggghts lmfit-py med-fichier mona mpich numexpr oce onetbb open3d openmesh opm-upscaling petsc polyml pyfai P (U) python-escript python-fabio (U) python-hdf5plugin python-xarray qutip sasview scikit-learn sfepy simbody siscone sketch skimage slepc solvespace spooles statsmodels sumo syrthes toulbar2 virtuoso-opensource visp vlfeat yp-svipc Debian Science Team <debian-science-maintainers@lists.alioth.debian.org> ¶ atlas coin3 dolfin fenics-dolfinx fftw geomview getdp getfem mrmpi neuron node-shiny-server opencv pandas # plplot ppl pyswarms sdpb Debian SDL packages maintainers <pkg-sdl-maintainers@lists.alioth.debian.org> ¶ libsdl-console Debian Security Tools <team+pkg-security@tracker.debian.org> ¶ crack de4dot john scap-security-guide Debian SELinux maintainers <selinux-devel@lists.alioth.debian.org> ¶ refpolicy secilc Debian semweb Team <team+semweb@tracker.debian.org> ¶ zeitgeist Debian Shib Team <pkg-shibboleth-devel@alioth-lists.debian.net> ¶ opensaml shibboleth-sp xmltooling Debian SOGo Maintainers <pkg-sogo-maintainers@lists.alioth.debian.org> ¶ sope Debian Sugar Team <pkg-sugar-devel@lists.alioth.debian.org> ¶ squeak-vm Debian Telepathy maintainers <pkg-telepathy-maintainers@lists.alioth.debian.org> ¶ telepathy-spec Debian Tex Maintainers <debian-tex-maint@lists.debian.org> ¶ sagetex Debian TeX maintainers <debian-tex-maint@lists.debian.org> ¶ latex-cjk-chinese-arphic Debian TeX Task Force <debian-tex-maint@lists.debian.org> ¶ cjk texworks-manual xindy Debian UBports Team <team+ubports@tracker.debian.org> ¶ content-hub lomiri lomiri-ui-toolkit mir (U) process-cpp u1db-qt Debian UEFI Maintainers <debian-efi@lists.debian.org> ¶ efitools Debian Vim Maintainers <team+vim@tracker.debian.org> ¶ neovim # Debian Virtualbox Team <team+debian-virtualbox@tracker.debian.org> ¶ kbuild Debian VoIP Team <pkg-voip-maintainers@lists.alioth.debian.org> ¶ dahdi-linux iaxmodem linphone linphone-desktop ring ucommon Debian VoIP team <pkg-voip-maintainers@lists.alioth.debian.org> ¶ asterisk-prompt-fr-armelle Debian Wine Party <debian-wine@lists.debian.org> ¶ vkd3d Debian X Strike Force <debian-x@lists.debian.org> ¶ mesa xorg-server Debian Xfce Maintainers <debian-xfce@lists.debian.org> ¶ xfce4-panel-profiles Debian XMPP Maintainers <pkg-xmpp-devel@lists.alioth.debian.org> ¶ psi-plus (U) slixmpp Debian-IN Team <debian-in-workers@lists.alioth.debian.org> ¶ fonts-smc-uroob Debichem Team <debichem-devel@lists.alioth.debian.org> ¶ abinit cp2k elpa gromacs libint madness maloc mdanalysis mdtraj mpqc nwchem openbabel opendrop pdb-tools psicode pymatgen pymol python-ase python-gsd rdkit votca Denis Barbier <barbier@debian.org> ¶ oce (U) Denis Danilov <danilovdenis@yandex.ru> ¶ flycheck (U) Dennis Braun <d_braun@kabelmail.de> ¶ ardour (U) mixxx (U) Dennis Braun <snd@debian.org> ¶ rosegarden (U) Dennis van Dok <dennisvd@nikhef.nl> ¶ igtf-policy-bundle Diane Trout <diane@ghic.org> ¶ dask (U) libkolabxml (U) python-graphviz statsmodels (U) Dima Kogan <dkogan@debian.org> ¶ openmesh (U) vlfeat (U) Dimitri Fontaine <dim@tapoueh.org> ¶ pgloader Dirk Eddelbuettel <edd@debian.org> ¶ gretl quantlib r-base r-cran-quantmod r-cran-rinside rcolorbrewer Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> ¶ xawtv (U) Dmitry Shachnev <mitya57@debian.org> ¶ qt3d-opensource-src (U) qtbase-opensource-src # # # (U) qtcharts-opensource-src (U) qtconnectivity-opensource-src (U) qtdatavis3d-everywhere-src (U) qtdeclarative-opensource-src (U) qtdoc-opensource-src (U) qtgamepad-everywhere-src (U) qtgraphicaleffects-opensource-src (U) qtlocation-opensource-src (U) qtnetworkauth-everywhere-src (U) qtquickcontrols-opensource-src (U) qtquickcontrols2-opensource-src (U) qtscxml-everywhere-src (U) qtsensors-opensource-src (U) qtserialbus-everywhere-src (U) qtserialport-opensource-src (U) qtspeech-opensource-src (U) qtsvg-opensource-src (U) qttools-opensource-src (U) qtvirtualkeyboard-opensource-src (U) qtwayland-opensource-src (U) qtwebchannel-opensource-src (U) qtwebengine-opensource-src (U) qtwebsockets-opensource-src (U) qtwebview-opensource-src (U) qtx11extras-opensource-src (U) Dmitry Smirnov <onlyjob@debian.org> ¶ docker.io (U) gnucash-docs scummvm (U) zabbix Dominique Belhachemi <domibel@debian.org> ¶ mrmpi (U) tvc (U) Dominique Dumont <dod@debian.org> ¶ moarvm (U) nqp (U) prove6 (U) raku-getopt-long (U) raku-hash-merge (U) raku-json-class (U) raku-json-fast (U) raku-json-marshal (U) raku-json-name (U) raku-json-optin (U) raku-json-unmarshal (U) raku-license-spdx (U) raku-log (U) raku-meta6 (U) raku-readline (U) raku-tap-harness (U) raku-test-meta (U) raku-uri (U) raku-zef (U) rakudo # (U) ruby-pygments.rb (U) Don Armstrong <don@debian.org> ¶ lilypond (U) Doug Torrance <dtorrance@debian.org> ¶ r-cran-r.devices (U) Dr. Tobias Quathamer <toddy@debian.org> ¶ flightgear (U) lilypond (U) rapid-photo-downloader Drew Parsons <dparsons@debian.org> ¶ combblas (U) dolfin (U) fenics-dolfinx (U) gerris (U) mdanalysis (U) mdtraj (U) opendrop (U) petsc (U) pymatgen (U) python-gsd (U) qutip (U) sasview (U) slepc (U) Dylan Aïssi <daissi@debian.org> ¶ libcamera (U) libofx pipewire (U) r-cran-gh (U) r-cran-tm (U) rkward (U) shapeit4 (U) wireplumber (U) Dylan R. E. Moonfire <debian@mfgames.com> ¶ mod-mono (U) taoframework (U) Eduard Bloch <blade@debian.org> ¶ icewm liquidwar (U) Edward Wang <edward.c.wang@compdigitec.com> ¶ vlc # + (U) Elana Hashman <ehashman@debian.org> ¶ clojure (U) core-specs-alpha-clojure (U) leiningen-clojure + (U) spec-alpha-clojure (U) Elimar Riesebieter <riesebie@lxtec.de> ¶ lynx (U) Emanuele Rocca <ema@debian.org> ¶ arm-compute-library (U) systemtap Emilio Pozuelo Monfort <pochu@debian.org> ¶ gegl (U) telepathy-spec (U) Emmanuel Arias <eamanu@yaerobi.com> ¶ python-blosc (U) Emmanuel Arias <emmanuelarias30@gmail.com> ¶ libcamera (U) Emmanuel Bourg <ebourg@apache.org> ¶ aspectj (U) bcel (U) bnd (U) bsh (U) c3p0 (U) cobertura (U) commons-beanutils (U) commons-csv (U) commons-io (U) derby (U) gradle-kotlin-dsl + (U) h2database (U) httpcomponents-client (U) jakarta-jmeter + (U) jsch (U) jsoup (U) libapache-poi-java (U) libcommons-codec-java (U) libcommons-collections3-java (U) libcommons-collections4-java (U) libcommons-compress-java (U) libcommons-fileupload-java (U) libcommons-lang3-java (U) libcommons-net-java (U) libxbean-java (U) libxml-security-java (U) mp4parser (U) scala-parser-combinators (U) scala-tools-sbinary (U) scala-xml (U) tomcat10 (U) visualvm (U) xmlbeans (U) Emmanuel Kasper <emmanuel@libera.cc> ¶ mame (U) Eric Dorland <eric@debian.org> ¶ automake1.11 gnupg2 (U) Etienne Dysli Metref <etienne.dysli-metref@switch.ch> ¶ opensaml (U) shibboleth-sp (U) xmltooling (U) Etienne Millon <me@emillon.org> ¶ gmpc (U) Eugene Zhukov <jevgeni.zh@gmail.com> ¶ saxonb (U) Fabian Grünbichler <debian@fabian.gruenbichler.email> ¶ rustc-web (U) Fabien Spindler <Fabien.Spindler@inria.fr> ¶ visp (U) Fabio Augusto De Muzio Tobich <ftobich@debian.org> ¶ ipqalc puzzle-jigsaw Federico Brega <charon.66@gmail.com> ¶ cyclograph Federico Ceratto <federico@debian.org> ¶ uncertainties Felix Geyer <fgeyer@debian.org> ¶ qtconnectivity-opensource-src (U) qtserialport-opensource-src (U) qtsvg-opensource-src (U) qttools-opensource-src (U) qtx11extras-opensource-src (U) teeworlds (U) Felix Krull <f_krull@gmx.de> ¶ speedcrunch Felix Lechner <felix.lechner@gmail.com> ¶ linphone (U) Felix Natter <fnatter@gmx.net> ¶ freeplane (U) groovy (U) Felix Salfelder <felix@salfelder.org> ¶ libm4ri (U) Felix Zielcke <fzielcke@z-51.de> ¶ grub2 + + + + (U) Ferenc Wágner <wferi@debian.org> ¶ opensaml (U) pacemaker (U) shibboleth-sp (U) xmltooling (U) Filip Strömbäck <filip@fprg.se> ¶ storm-lang Filippo Giunchedi <filippo@debian.org> ¶ prometheus-mysqld-exporter (U) Filippo Rusconi <lopippo@debian.org> ¶ libpwiz (U) minexpert2 (U) openms (U) Florian Hackenberger <florian@hackenberger.at> ¶ ktikz (U) Francesco Paolo Lovergine <frankie@debian.org> ¶ gdal (U) grass (U) icmake jts (U) mapnik (U) nco (U) proftpd-dfsg (U) proj (U) ypserv Francois Marier <francois@debian.org> ¶ fwknop Frank B. Brokken <f.b.brokken@rug.nl> ¶ icmake (U) Frank Hofmann <frank.hofmann@efho.de> ¶ dpmb (U) Free Ekanayaka <freee@debian.org> ¶ mixxx (U) rosegarden (U) Freexian Packaging Team <team+freexian@tracker.debian.org> ¶ python-hdf5plugin (U) Frédéric Bonnard <frediz@linux.vnet.ibm.com> ¶ json4s (U) sbt-serialization (U) scala-pickling (U) scala-tools-sbinary (U) George Danchev <danchev@spnet.net> ¶ icmake (U) Georges Khaznadar <georgesk@debian.org> ¶ expeyes jsxgraph kicad (U) pampi Georges Racinet <georges.racinet@octobus.net> ¶ mercurial-evolve (U) Georgios Pinitas <georgios.pinitas@arm.com> ¶ arm-compute-library (U) Gergely Pilisi <mail.pilisig@gmail.com> ¶ eclipse-titan Gert Wollny <gewo@debian.org> ¶ dicom3tools (U) gdcm (U) mia (U) Ghislain Antony Vaillant <ghisvail@gmail.com> ¶ python-xarray (U) Gianfranco Costamagna <locutusofborg@debian.org> ¶ kbuild (U) Gijs Molenaar <gijs@pythonic.nl> ¶ montage (U) Gilles Filippini <pini@debian.org> ¶ giac (U) med-fichier (U) syrthes (U) Giovani Augusto Ferreira <giovani@debian.org> ¶ crack (U) Giovanni Mascellani <gio@debian.org> ¶ boost1.74 (U) boost1.81 (U) mathpiper (U) Giuseppe Sacco <eppesuig@debian.org> ¶ hylafax Gordon Ball <gordon@chronitis.net> ¶ nbconvert (U) r-cran-repr (U) xonsh # (U) Graham Inggs <ginggs@debian.org> ¶ deal.ii (U) elpa (U) madness (U) python-ase (U) Greg Horn <gregmainland@gmail.com> ¶ coinor-ipopt gregor herrmann <gregoa@debian.org> ¶ jabref (U) libmarc-charset-perl (U) mimetic GRUB Maintainers <pkg-grub-devel@alioth-lists.debian.net> ¶ grub2 + + + + Gudjon I. Gudjonsson <gudjon@gudjon.org> ¶ comedilib + ngspice (U) pyqwt3d Guido Günther <agx@sigxcpu.org> ¶ libadwaita-1 (U) libguestfs (U) multipath-tools (U) Guido Trotter <ultrotter@debian.org> ¶ ganeti (U) Guillaume Mazoyer <respawneral@gmail.com> ¶ java-gnome (U) Guillem Jover <gjover@sipwise.com> ¶ victoriametrics (U) Gustavo Iñiguez Goya <gustavo.iniguez.goya@gmail.com> ¶ opensnitch (U) gustavo panizzo <gfa@zumbi.com.ar> ¶ nova (U) Göran Weinholt <weinholt@debian.org> ¶ chezscheme Gürkan Myczko <gurkan@phys.ethz.ch> ¶ klystrack (U) lie netsurf (U) zytrax (U) Gürkan Myczko <tar@debian.org> ¶ mdnsd ssocr Hakan Ardo <hakan@debian.org> ¶ avr-libc gcc-avr Hans-Christoph Steiner <hans@eds.org> ¶ android-platform-external-libunwind (U) Harlan Lieberman-Berg <hlieberman@debian.org> ¶ plover Hideki Yamane <henrich@debian.org> ¶ yudit HIGUCHI Daisuke (VDR dai) <dai@debian.org> ¶ open-jtalk Hilko Bengen <bengen@debian.org> ¶ augeas de4dot (U) hyperic-sigar (U) libguestfs (U) lucene4.10 (U) rust-laurel Hilmar Preusse <hille42@web.de> ¶ cjk (U) latex-cjk-chinese-arphic (U) texworks-manual (U) xindy (U) Hilmar Preuße <hille42@debian.org> ¶ proftpd-dfsg (U) Holger Wansing <holgerw@debian.org> ¶ refcard (U) Hubert Chathi <uhoreg@debian.org> ¶ nheko (U) noweb Håvard F. Aasen <havard.f.aasen@pfft.no> ¶ scap-security-guide (U) Héctor Orón Martínez <zumbi@debian.org> ¶ dejagnu gdb uclibc (U) Ian Jackson <ijackson@chiark.greenend.org.uk> ¶ userv Ignace Mouzannar <mouzannar@gmail.com> ¶ python-scrapy (U) Ileana Dumitrescu <ileanadumi95@protonmail.com> ¶ giac (U) ImageMagick Packaging Team <pkg-gmagick-im-team@lists.alioth.debian.org> ¶ imagemagick IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> ¶ ardour (U) jsusfx (U) juce (U) libcamera (U) obs-studio (U) Ivan Udovichenko <iudovichenko@mirantis.com> ¶ murano (U) Jack Coulter <jscinoz@gmail.com> ¶ teeworlds (U) Jakub Adam <jakub.adam@ktknet.cz> ¶ bnd (U) commons-io (U) httpcomponents-client (U) jsoup (U) libcommons-compress-java (U) lombok (U) James Cowgill <jcowgill@debian.org> ¶ ffmpeg (U) James McCoy <jamessan@debian.org> ¶ git-hub (U) kitty msgpack-cxx neovim # (U) subversion # James Page <james.page@ubuntu.com> ¶ httpunit (U) java-xmlbuilder (U) libcommons-codec-java (U) rabbitmq-server (U) James Price <jamesprice.dev@gmail.com> ¶ oclgrind (U) James Troup <binutils@elmo.tasta.io> ¶ binutils # (U) James Valleroy <jvalleroy@mailbox.org> ¶ weupnp (U) Jameson Graef Rollins <jrollins@finestructure.net> ¶ notmuch (U) Jan Dittberner <jandd@debian.org> ¶ python-fudge # (U) Jan Mojžíš <jan.mojzis@gmail.com> ¶ nginx (U) Jan Wagner <waja@cyconet.org> ¶ icinga2 (U) Janos Lenart <ocsi@debian.org> ¶ kubernetes Jaromír Mikeš <mira.mikes@seznam.cz> ¶ ardour (U) Javier Fernandez-Sanguino <jfs@debian.org> ¶ debian-history (U) Javier Fernández-Sanguino Peña <jfs@debian.org> ¶ samhain Jeff Epler <jepler@gmail.com> ¶ linuxcnc (U) Jelmer Vernooij <jelmer@debian.org> ¶ ledger2beancount Jeremy Bicha <jbicha@debian.org> ¶ gnome-video-arcade (U) pipewire (U) Jeremy Bicha <jbicha@ubuntu.com> ¶ gegl (U) libadwaita-1 (U) mm-common (U) Jeroen Dekkers <jeroen@dekkers.ch> ¶ sope (U) Jerome Benoit <calculus@rezozer.net> ¶ firehol fpylll (U) gap-design (U) gap-scscp (U) gap-sonata (U) igraph (U) nbsphinx (U) primesieve (U) sagetex (U) singular (U) Jerome Kieffer <jerome.kieffer@esrf.fr> ¶ pyfai P (U) python-fabio (U) Jessica Clarke <jrtc27@debian.org> ¶ polyml (U) Jo Shields <directhex@apebox.org> ¶ gtk-sharp-beans (U) mod-mono (U) mono-debugger-libs nrefactory (U) opentk (U) sdb zeitgeist-sharp (U) Joachim Reichel <reichel@debian.org> ¶ cppcheck Joachim Wiberg <troglobit@gmail.com> ¶ mdnsd (U) Joachim Wiedorn <joodebian@joonet.de> ¶ hylafax (U) Joan Lledó <jlledom@member.fsf.org> ¶ lwip Joan Queralt Molina <joanq.biogenesis@gmail.com> ¶ biogenesis (U) Joao Eriberto Mota Filho <eriberto@debian.org> ¶ obs-ashmanix-countdown obs-downstream-keyer obs-scene-collection-manager obs-scene-notes-dock obs-source-copy obs-transition-table qabcs ulcc Jochen Sprickerhof <jspricke@debian.org> ¶ h2database (U) jameica-h2database (U) mckoisqldb (U) open3d (U) openni (U) openni-sensor-pointclouds (U) openni-sensor-primesense (U) wyrd (U) Joel Fenwick <j.oelpublic@gmail.com> ¶ python-escript (U) Joerg Dorchain <joerg@dorchain.net> ¶ iaxmodem (U) Johan Fleury <jfleury@arcaik.net> ¶ age (U) Johan Mattsson <johan@beteckna.se> ¶ fonts-beteckna (U) Johannes Ring <johannr@simula.no> ¶ dolfin (U) John Goerzen <jgoerzen@complete.org> ¶ ldap-haskell (U) pygopherd John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> ¶ ausweisapp2 fs-uae Johnny Willemsen <jwillemsen@remedy.nl> ¶ ace (U) Jonas Smedegaard <dr@jones.dk> ¶ eye squeak-vm (U) syncevolution + zeitgeist (U) Jonathan Carter <jcc@debian.org> ¶ tuxpaint Jonathan McDowell <noodles@earth.li> ¶ remote-tty Jool Team <jool@nic.mx> ¶ jool Joost van Baal-Ilić <joostvb@debian.org> ¶ r-cran-knitr (U) r-cran-tweenr (U) Jordan Justen <jljusten@debian.org> ¶ piglit + Jordi Mallach <jordi@debian.org> ¶ gnome-video-arcade (U) grub2 + + + + (U) mame (U) sope (U) Jose Carlos Garcia Sogo <jsogo@debian.org> ¶ cecil-flowanalysis (U) db4o (U) Jose G. López <josgalo@jglopez.name> ¶ scid Jose Luis Rivero <jrivero@osrfoundation.org> ¶ ignition-physics ignition-plugin (U) simbody (U) Jose M Calhariz <calhariz@debian.org> ¶ amanda Jose M Calhariz <jose@calhariz.com> ¶ librep sawfish Joseph Nahmias <jello@debian.org> ¶ freetds ipyparallel (U) Josip Rodin <joy-packages@debian.org> ¶ maint-guide (U) Josselin Mouette <joss@debian.org> ¶ gegl (U) Joël Krähemann <jkraehemann@gmail.com> ¶ gsequencer (U) Juan Cespedes <cespedes@debian.org> ¶ linux86 Julian Andres Klode <jak@debian.org> ¶ grub2 + + + + (U) Julian Gilbey <jdg@debian.org> ¶ epix python-qtconsole (U) Julian Taylor <jtaylor.debian@googlemail.com> ¶ keepass2 (U) nunit (U) Julien Puydt <jpuydt@debian.org> ¶ coq (U) coq-iris (U) flint (U) fpylll (U) libm4ri (U) mnemosyne nbconvert (U) ocaml-uucp (U) ssreflect (U) Julien Schueller <schueller@phimeca.com> ¶ coinor-bonmin (U) Julián Moreno Patiño <julian@debian.org> ¶ john (U) Jérémy Lal <kapouer@melix.or | 2026-01-13T09:30:28 |
http://www.opensource.dk/ | opensource Hop til indhold Menu Menu Blog Hvad betyder open source? Open source er et koncept, der har fået betydelig opmærksomhed i de senere år, især inden for teknologi- og softwareudviklingsområdet. Det henviser til en samarbejdsorienteret tilgang, hvor enkeltpersoner eller fællesskaber åbent deler deres arbejde og tillader andre at se, ændre og distribuere det frit. Denne artikel har til formål at give en objektiv oversigt over open source ved at undersøge dets forskellige anvendelser på tværs af forskellige områder. I den første afsnit introducerer vi begrebet open source som en samarbejdsorienteret tilgang, hvor enkeltpersoner eller fællesskaber åbent deler deres arbejde. Dette sætter tonen for en akademisk skrivestil, der er objektiv og analytisk. Vi nævner også, at open source har fået betydelig opmærksomhed i de senere år, hvilket indikerer dens relevans og betydning i dagens samfund. I den anden afsnit angiver vi vores intention om at give en objektiv oversigt over open source ved at undersøge dets anvendelser på tværs af forskellige områder. Dette demonstrerer vores viden om emnet og vores engagement i at levere en upartisk analyse. Ved at bruge fraser som ‘har til formål at’ og ‘giver en oversigt,’ opretholder vi en upersonlig tone gennem hele introduktionen. Forståelse af åben kildekode: Et kort overblik Open source refererer til en samarbejdsorienteret og transparent tilgang til softwareudvikling, hvor kildekoden er frit tilgængelig til modificering og redistribution, hvilket muliggør at enkeltpersoner kan bidrage med deres ekspertise og samlet forbedre softwarens kvalitet. Denne model lægger vægt på fællesskabets deltagelse og opfordrer til åbent samarbejde mellem udviklere, der kan gennemgå, modificere og forbedre softwaren i henhold til deres specifikke behov eller præferencer. Den åbne kildekode-filosofi fremmer inklusivitet ved at tillade alle med programmeringsfærdigheder at få adgang til, studere og modificere kildekoden. Som et resultat fremmer open source innovation og kreativitet ved at tilbyde en platform for udviklere til at dele ideer og bygge videre på eksisterende projekter. Den væsentligste fordel ved open source-software ligger i dens gennemsigtighed. Da kildekoden er tilgængelig for alle interesserede parter, kan den omhyggeligt gennemgås for sikkerhedssårbarheder eller fejl. Dette muliggør hurtig identifikation og løsning af problemer, da flere udviklere samarbejder om at identificere potentielle problemer. Derudover, da der ikke er nogen licensrestriktioner for open source-software, har brugerne større frihed til at modificere eller tilpasse det i henhold til deres krav. Denne fleksibilitet gør open source-løsninger populære både blandt individuelle brugere og inden for organisationer, der søger skræddersyede softwareløsninger, der er skræddersyet specifikt til deres behov. Derudover muliggør den samarbejdsorienterede karakter af open source-udvikling kontinuerlig forbedring gennem regelmæssige opdateringer og forbedringer fra en mangfoldig gruppe bidragsydere fra hele verden. Samlet set er det vigtigt at forstå open source som en samarbejdsorienteret tilgang, der opfordrer til gennemsigtighed og fællesskabsdeltagelse for at værdsætte dens fordele. Tilgængeligheden af kildekoden letter tilpasning samtidig med at den fremmer innovation gennem kollektive bidrag fra programmører over hele verden. Ved at omfavne en inklusiv tankegang over for udviklingspraksis kan organisationer udnytte disse fordele, der tilbydes af open source-softwareløsninger. Fordelene ved åben kildekode-samarbejde Samarbejde inden for det åbne kildekode-samfund tilbyder talrige fordele og fremmer innovation og vidensdeling blandt forskellige bidragsydere. En af de vigtigste fordele er evnen til at udnytte forskellige færdigheder og perspektiver fra individer over hele verden. I modsætning til lukkede kildekodeprojekter, der er afhængige af et begrænset antal udviklere, tillader åben kildekode-samarbejde enhver med relevant ekspertise at bidrage til projektet. Dette udvider talent- og idépoolen, hvilket fører til mere kreative løsninger og et produkt af højere kvalitet. En anden fordel ved åben kildekode-samarbejde er den accelererede udviklingstakt. Med et stort antal bidragsydere, der arbejder sammen, kan opgaver opdeles og løses mere effektivt. Denne samarbejdsorienterede tilgang muliggør hurtigere problemløsning og kontinuerlig forbedring, da fejl identificeres og rettes hurtigt af forskellige medlemmer af samfundet. Derudover har åbne kildekodeprojekter ofte dedikerede fællesskaber, der yder support gennem fora og dokumentation, hvilket yderligere forbedrer hastigheden, hvorpå problemer løses. Desuden fremmer åben kildekode-samarbejde vidensdeling blandt bidragsydere. Når udviklere arbejder sammen om et projekt, deler de deres ekspertise og lærer af hinandens erfaringer. Dette kollektive læringsmiljø forbedrer ikke kun individuelle færdigheder, men bidrager også til den overordnede vækst i samfundet. På denne måde fungerer åben kildekode-samarbejde som en uddannelsesplatform, hvor deltagerne kan udvide deres vidensgrundlag samtidig med, at de bidrager til et fælles mål. Åben kildekode-samarbejde bringer forskellige talenter sammen på en effektiv måde til innovativ problemløsning. Det accelererer udviklingen ved at fordele opgaver mellem flere bidragsydere og forbedrer vidensdelingen inden for samfundet. Disse fordele gør åben kildekode-samarbejde til en attraktiv model for at fremme innovation i softwareudviklingsprojekter. Open Source i softwareudvikling Softwareudviklingsprojekter, der omfavner åbne kildeprincipper, nyder godt af en samarbejdsorienteret og gennemsigtig tilgang, der fremmer fællesskabsengagement, genanvendelse af kode og kontinuerlig forbedring. Åben kildekodeudvikling giver mulighed for aktiv deltagelse fra et mangfoldigt udviklerfællesskab, der bidrager med deres ekspertise, ideer og feedback for at forbedre softwarens kvalitet. Denne samarbejdsorienterede tilgang fremmer innovation og problemløsning, da udviklere kan dele viden og lære af hinanden. Derudover har åbne kildeprojekter ofte et større antal bidragydere, hvilket fører til hurtigere udviklingscykler og øget effektivitet. En anden fordel ved åben kildekode i softwareudvikling er konceptet med genanvendelse af kode. Udviklere kan udnytte eksisterende åbne kildebiblioteker eller rammer til at bygge videre på, hvilket sparer tid og kræfter ved ikke at skulle opfinde den dybe tallerken. Dette fremmer effektivitet og reducerer duplikation af arbejde på tværs af forskellige projekter. Desuden er åben kildekode-software frit tilgængelig for alle til brug, ændring eller distribution, hvilket opmuntrer til kontinuerlig forbedring gennem peer Review og feedback fra fællesskabet. Fejl identificeres hurtigere på grund af bredere undersøgelse, hvilket fører til hurtigere fejlrettelser og generelt bedre kvalitet af softwaren. Ved at omfavne åbne kildeprincipper i softwareudvikling opnås talrige fordele, herunder samarbejde mellem et mangfoldigt udviklerfællesskab, genanvendelse af kode til effektivitetsgevinster og kontinuerlig forbedring gennem gennemsigtighed og peer review. Succeshistorierne fra bredt anvendte åbne kildeprojekter som Linux viser, hvordan denne tilgang kan føre til software af høj kvalitet, der opfylder brugerbehov samtidig med at den fremmer innovation inden for udviklerfællesskabet. Open Source i hardware og data Anvendelsen af åbne kildekodeprincipper strækker sig ud over softwareudviklingens rækkevidde og når ind i hardware- og dataområderne. Åben kildekode-hardware henviser til design og udvikling af fysiske genstande, såsom elektroniske enheder eller maskiner, hvor designspecifikationerne er frit tilgængelige for alle til brug, modificering eller distribution. Denne tilgang muliggør samarbejde og innovation inden for hardwareudvikling ved at udnytte den kollektive intelligens og ekspertise hos et globalt fællesskab. Åben kildekode-hardware fremmer gennemsigtighed og opmuntrer til vidensdeling, hvilket gør det muligt for enkeltpersoner og organisationer at bygge videre på eksisterende design og skabe nye produkter uden at genopfinde hjulet. På samme måde henviser åben kildekode-data til datasæt, der er offentligt tilgængelige med en åben licens, der giver andre mulighed for at få adgang til, bruge, modificere og distribuere dem. Åben kildekode-data kan findes inden for forskellige områder som videnskabelig forskning, regeringsdatabaser, sociale medieplatforme og offentlige arkiver. Ved at gøre data åbent tilgængelige fremmer det samarbejde mellem forskere og muliggør reproducerbarhed af videnskabelige resultater. Det giver også enkeltpersoner mulighed for at analysere data uafhængigt til deres egne formål eller bidrage til større projekter, der sigter mod at løse komplekse problemer. Tilgængeligheden af åben kildekode-data har ført til fremskridt inden for områder som maskinlæring, kunstig intelligens, folkesundhedsforskning, klimavidenskab og mere. Konklusionen er, at åbne kildekodeprincipper ikke er begrænset til softwareudvikling, men strækker sig ind i andre områder som hardware-design og datadeling. Åben kildekode-hardware muliggør samarbejde ved design af fysiske genstande ved at gøre designspecifikationerne frit tilgængelige for alle til brug eller modificering. På samme måde gør åben kildekode-data datasæt tilgængelige under åbne licenser, så de kan bruges, modificeres og distribueres af andre. Både åben kildekode-hardware og åben kildekode-data fremmer gennemsigtighed, vidensdeling og kollektiv problemløsning ved at udnytte styrken i globale fællesskaber. Disse praksisser har revolutioneret områder lige fra elektronikproduktion til videnskabelig forskning. Open Source i Uddannelse: Styrkelse af eleverne Uddannelsesinstitutioner omfavner kraften i open source for at styrke eleverne og revolutionere måden, viden deles på. Open source i uddannelse refererer til brugen af open source-software, ressourcer og samarbejdsplatforme, der tillader fri deling, ændring og distribution af uddannelsesmateriale. Denne bevægelse har fået momentum af flere grunde. For det første fremmer open source-uddannelse lighed og tilgængelighed ved at give gratis adgang til kvalitetsuddannelsesressourcer for alle elever, uanset deres socioøkonomiske baggrund. Det eliminerer barrierer som dyre lærebøger eller proprietære softwarelicenser, der kan hindre elevernes evne til at engagere sig fuldt ud i deres læring. Desuden opfordrer open source-uddannelse til samarbejde og innovation blandt eleverne. Ved at udnytte open source-platforme som wikier eller online fora kan eleverne aktivt deltage i at skabe og forbedre uddannelsesindhold kollektivt. Dette fremmer en følelse af ejerskab over deres egen læringsproces og muliggør en mere personlig og interaktiv uddannelsesoplevelse. Derudover muliggør open source-værktøjer, at undervisere kan tilpasse undervisningsmaterialet til at imødekomme elevernes specifikke behov eller lokale kontekster. De kan ændre eksisterende ressourcer eller oprette nye, der er skræddersyet til at imødekomme forskellige læringsstile eller kulturelle perspektiver. Open source i uddannelse styrker eleverne ved at give lige adgang til uddannelsesressourcer, samtidig med at det fremmer samarbejde og tilpasning i læringsprocessen. Denne tilgang forbedrer ikke kun elevengagement, men opfordrer også til kritisk tænkning, da eleverne aktivt bidrager til videns skabelse i stedet for passivt at forbruge information. Ved at omfavne open source-principper i uddannelse kan institutioner fremme en kultur af åbenhed, kreativitet og inklusion, der i sidste ende gavner både undervisere og elever. Søg Søg Nyheder Grundlæggende krav til et kvalitetswebhotel Hvad er the cloud? Alt du bør vide om skyen Hvad er Vagrant? En Introduktion til Effektiv Udviklermiljøstyring Hvad er scrum? Sådan bruger du FFmpeg til at konvertere og redigere video- og lydfiler © 2026 opensource • Bygget med GeneratePress | 2026-01-13T09:30:28 |
https://blog.nyveldt.com/post/blogenginenet-webcasts-initial-setup-and-sql-setup | BlogEngine.NET Webcasts: Initial Setup and SQL Setup - Al Nyveldt Al Nyveldt Home About Now BlogEngine.NET Webcasts: Initial Setup and SQL Setup October 04, 2007 BlogEngine.NET , Screencasts blogengine.net , screencast , sql server , video I put together some short webcasts to help people get started using BlogEngine.NET 1.2. Hopefully, this is just the start of series, but we'll have to see how it goes. Both webcasts are full screen (1024x768) and available in Flash or Windows Media flavors. In the first webcast, BlogEngine.NET 1.2 Initial Setup , I walk you through the entire process from finding the download to getting it installed on your web server. The entire process (and webcast) takes just over 5 minutes (5:20) including download time and listening to me drone on about random bits. The second webcast, BlogEngine.NET 1.2 SQL Provider Setup , is for those who would prefer to have SQL Server power their blog. It picks up where the first web cast left off and walks you through setting up a database for BlogEngine and making 2 small changes to get BlogEngine to look to your database for its data. Webcast running time is under 4 minutes (3:45). You can watch them live in flash here: BlogEngine.NET 1.2 Initial Setup BlogEngine.NET 1.2 SQL Provider Setup You can download the Windows Media Versions here: BlogEngine.NET 1.2 Initial Setup (WMV) 31.8 MB BlogEngine.NET 1.2 SQL Provider Setup (WMV) 20.4 MB Note: There are some background screen artifacts, but they don't take away from the content. I'll try to get that straightened out for the next webcasts I do. 01/04/2008 Update : These screencasts have been updated for the new 1.3 release of BlogEngine.NET. Please check out the current versions: BlogEngine.NET 1.3 Installation BlogEngine.NET 1.3 SQL Provider Setup Also, you can see all my screencasts (and make sure you are watching the latest versions) using this link to see my posts with screencasts . Share on Bluesky or click the Permalink and paste anywhere. Al Nyveldt Hi. I'm a software developer from central Pennsylvania, USA. Pinned Posts Keep GitHub Copilot from going off the rails with instructions files AI Journey: From Annoying to Essential Categories AI Journey (3) Audio (7) BlogEngine.NET (60) Books (2) Business (2) Development (41) Hardware (5) iDevBlogADay (6) iOS (8) Personal (14) Screencasts (15) Software (21) Web (3) Tags ai , app store , applescript , blogengine.net , blogml , book review , code camp , codemash , codeplex , coding , community , compiling , conference , control , copilot , crystal reports , das blog , dev tools , download , extensions , family , faq , feed reading , fitness , flash drive , fun , games , google reader , idevblogaday , ios , iPad , iphone , ipod , mcp , membership , metaweblog api , microsoft , migration , mix , monotouch , monsterid , mvc , mysql , nike+ , open source , organization , patch , personal , podcasts , powershell , profittrain , provider model , razorpdf , razorpub , release , reuse , review , running , runnow , screencast , security , snippets , sourcesafe , spark , sparrow , sql server , sqlite , starter kit , subtext , subversion , sudokukids , testing , theme , training , upgrade , utilities , video , vistadb , visual studio , widget , windows live writer , xamarin Subscribe Get notified about new posts and updates. Thank you! Please check your email and click the confirmation link to complete your subscription. Subscribe Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way. © 2026 Al Nyveldt. All rights reserved. Published with QuillKit / Sign in | 2026-01-13T09:30:28 |
https://www.facebook.com/login/?next=https%3A%2F%2Fl.facebook.com%2Fl.php%3Fu%3Dhttps%253A%252F%252Fwww.instagram.com%252F%26amp%253Bh%3DAT0f7mNL_a3czBRxj5oEEAbuyPqzmstjfJwLfSHwF6_D3Lu0faGCrzyUQo8B3hC5IemgFXwltPfLtsIIq0A5SXyEIYMxe89sBldeFpXK2PiDDHQ-jTrujxRZkg-jTnyUN9NQiBQaOZhfDrJ5vUXUcCCePEv83g | Facebook 취향 저격 콘텐츠를 만나는 곳 Facebook에 로그인 이메일 또는 휴대폰 번호 비밀번호 로그인 비밀번호를 잊으셨나요? 새 계정 만들기 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 中文(简体) 언어 더 보기... 가입하기 로그인 Messenger Facebook Lite 동영상 Meta Pay Meta 스토어 Meta Quest Ray-Ban Meta Meta AI Meta AI 콘텐츠 더 보기 Instagram Threads 투표 정보 센터 개인정보처리방침 개인정보 보호 센터 정보 광고 만들기 페이지 만들기 개발자 채용 정보 쿠키 AdChoices 약관 고객 센터 연락처 업로드 및 비사용자 Meta © 2026 | 2026-01-13T09:30:28 |
https://th-th.facebook.com/recover/initiate/?privacy_mutation_token=eyJ0eXBlIjo1LCJjcmVhdGlvbl90aW1lIjoxNzY4Mjk2MjI2fQ%3D%3D&ars=facebook_login&next=https%3A%2F%2Fl.facebook.com%2Fl.php%3Fu%3Dhttps%253A%252F%252Fwww.instagram.com%252F%26amp%253Bh%3DAT1gHfIstqrflFIB__-eCBBq1QvcRH-inBviFazOQ7hfYKuqHPi22Aw5U4RW6PzSWSsBLVZI8zsC4vzkOqQXCEXyNyw8sdrNkosv2u1wrFAf9MwlXBJ7cjro3yDOHciyzCNKlnfLProoETUc | Facebook คุณถูกบล็อกชั่วคราว คุณถูกบล็อกชั่วคราว ดูเหมือนว่าคุณจะใช้คุณสมบัตินี้ในทางที่ผิดโดยการใช้เร็วเกินไป คุณถูกบล็อกจากการใช้โดยชั่วคราว Back | 2026-01-13T09:30:28 |
https://qiita.com/official-campaigns/ai-dev-team/articles | AI x Dev x Team - 記事一覧ページ - Qiita Collaboration menu Menu home ホーム description 記事 edit_square 記事投稿キャンペーン open_in_new Findy Team+ bookmark すべて token AI devices 開発生産性 mode_comment インタビュー 17 件の記事 1 ~ 12 件目を表示中 mode_comment インタビュー 2025-09-30 目まぐるしく変わる「生成AI」に対してチームでどう協働する? ファインディ× Qiita マネージャー対談! by Qiita Zine devices 開発生産性 2025-08-21 「開発生産性」に関する実態調査レポート概説#2 開発生産性への意外な好印象 ── アジャイル実践者59.6%が前向きな理由 by Findy Tech Blog devices 開発生産性 2025-08-20 変更リードタイムとは?開発速度の測定と改善について解説 by Findy Team+ ブログ(Findy Team+ Lab) devices 開発生産性 2025-08-18 「開発生産性」に関する実態調査レポート概説#1 日本の開発現場の「リアル」を数字で見る ── 798名の声から浮かび上がる衝撃の実態 by Findy Tech Blog token AI 2025-08-08 リードタイム45%短縮・スループット82%向上。SansanがFindy Team+で証明した「AIレビューの投資対効果」 by Findy Team+ ブログ(Findy Team+ Lab) token AI 2025-08-08 アウトプット量1.5倍に増加! ファインディが取り組む、AI導入・活用の効果をFindy Team+で最大化するデータ活用戦略 by Findy Team+ ブログ(Findy Team+ Lab) token AI 2025-08-07 個人の生産性250%向上、チームのキャパシティは1.5倍へ。DMM.comがFindy Team+で解き明かす「AIの投資対効果」 by Findy Team+ ブログ(Findy Team+ Lab) devices 開発生産性 2025-07-09 目標設定の勘所。事業とチームの“距離感”を埋める自分ごと化とは by Findy Team+ ブログ(Findy Team+ Lab) devices 開発生産性 2025-07-01 ソフトウェア開発における「開発生産性」に関する実態調査レポート by Findy コーポレートサイト token AI 2025-06-30 【IT/Webエンジニア調査】生成AI技術・ツールの普及をきっかけに3人に2人のエンジニアが今後のキャリアを検討 by Findy コーポレートサイト devices 開発生産性 2025-05-30 予定通りに終わらないスプリントの解決方法 by Findy Team+ ブログ(Findy Team+ Lab) devices 開発生産性 2025-04-30 アウトプット量を増やすには?開発のボトルネックを解消するコードレビュー改善 by Findy Team+ ブログ(Findy Team+ Lab) 1 2 navigate_next 1 / 2 Page 1 of 2 navigate_next How developers code is here. © 2011- 2026 Qiita Inc. Guide & Help About Terms Privacy Guideline Media Kit Feedback/Requests Help Advertisement Contents Release Note Official Event Official Column Advent Calendar Qiita Tech Festa Qiita Award Engineer White Paper API Official Accounts @Qiita @qiita_milestone @qiitapoi Facebook YouTube Podcast Our service Qiita Team Qiita Zine Official Shop Company About Us Careers Qiita Blog News Release | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/2014/10/gdiff-polymorphically.html | don't count on finding me: gdiff – Polymorphically skip to main | skip to sidebar don't count on finding me Sunday, October 26, 2014 gdiff – Polymorphically In the few last months I've been busy coming up with techniques mastering the gdiff Haskell library , even for use cases it was not originally designed for. This is mostly a brain dump of some approaches I have learnt while tinkering and trying to solve certain problems. 1) Polymorphic diff : Eelco Lempsink writes in the conclusion of his 2010 thesis «Furthermore, we can not encode polymorphic datatypes such as lists, but need to write specific encodings for each type we want to include». In the library documentation he says «It might require another master thesis project to solve this». However in the last days I developed a trick, which does allow me to describe polymorphic data types, such as [a] or Maybe a . I just needed to add these lines: in the family GADT: ListNil :: List Fam as → Fam a as → Fam [a] Nil ListCons :: List Fam as → Fam a as → Fam [a] (a `Cons` [a] `Cons` Nil) then define a Type instance: instance Type Fam a ⇒ Type Fam [a] where constructors = head [Concr (ListNil cc) | Concr cc Concr cc ← constructors] : [head [Concr (ListCons cc) | Concr cc ← constructors]] What is this doing? It picks two random constructors from the underlying data type and wraps them with ListNil and ListCons . We usually ignore what is wrapped, with one exception: in decEq one needs to ensure that the constructors' arguments are compared too, otherwise one cannot finish the type equality proof. 2) Non-moving pairs: In the usual textual diff algorithm the lines may move around a bit to make room for insertions, etc. This is normally the case for gdiff too. I have seen gdiff reusing values (with Cpy ) when comparing (True, False) with (False, True) . But sometimes this is not desired at all. I figured out that "inlining" the leaves into the pair's description (i.e. instead of (a `Cons` b `Cons` Nil) writing appendList on the field decompositions of a and b does the trick. 3) Location types: I found a way to equip Abstr constructor descriptors with type class dictionaries. It is similar to the lifting approach shown under 1), but much more involved. The idea is to wrap a location-aware descriptor with a descriptor that is location-blind, i.e. that hides the location parameter: Loc' :: KnownNat n ⇒ Fam (Loc n Bool) … Then we need the wrapper: Hidden' :: KnownNat n ⇒ Fam (Loc n Bool) ts → Fam (Hidden Loc) ts Giving the Type instance for the latter is tricky, as Abstr alone has no provision for dodging the class dictionary into Hidden' , so I had to write a locAware smart constructor to syphon it through the Hidden' wrapper. This also stressed the compiler to its limits in the advanced PolyKind -ed approach I needed, so I filed a GHC bug #9725 . There is also some code showing how the Hidden Loc is unwrapped and the dictionary-passing functions is installed into the Abstr . 4) Monadic actions coming out of patch : Here another wrapping approach is needed, but this time we need a sum type for diff and patch so that we can enter with a pure value at the Left and obtain a Right action back. This is the most involved approach. I can probably blog another time about it. Posted by heisenbug at 4:09 PM Labels: gdiff , haskell No comments: Post a Comment Newer Post Older Post Home Subscribe to: Post Comments (Atom) Blog Archive ►  2022 (1) ►  February (1) ▼  2014 (5) ►  November (1) ▼  October (1) gdiff – Polymorphically ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
http://hackage.haskell.org/package/semigroupoids-1.3.1 | semigroupoids: Haskell 98 semigroupoids: Category sans id Hackage :: [Package] Search Browse What's new Upload User accounts semigroupoids : Haskell 98 semigroupoids: Category sans id [ bsd2 , comonads , control , library ] [ Propose Tags ] [ Report a vulnerability ] Provides a wide array of semigroupoids and operations for working with semigroupds. A Semigroupoid is a Category without the requirement of identity arrows for every object in the category. When working with comonads you often have the <*> portion of an Applicative , but not the pure . This was captured in Uustalu and Vene's "Essence of Dataflow Programming" in the form of the ComonadZip class in the days before Applicative . Apply provides a weaker invariant, but for the comonads used for data flow programming (found in the streams package), this invariant is preserved. Applicative function composition forms a semigroupoid. Similarly many structures are nearly a comonad, but not quite, for instance lists provide a reasonable extend operation in the form of tails , but do not always contain a value. Ideally the following relationships would hold: Traversable <---- Foldable <--- Functor ------> Alt ---------> Plus Semigroupoid | | | | | v v v v v Traversable1 <--- Foldable1 Apply --------> Applicative -> Alternative Category | | | | v v v v Bind ---------> Monad -------> MonadPlus Arrow Apply, Bind, and Extract give rise the Static, Kleisli and Cokleisli semigroupoids respectively. This lets us remove many of the restrictions from various monad transformers as in many cases the binding operation or <*> operation does not require them. Finally, to work with these weaker structures it is beneficial to have containers that can provide stronger guarantees about their contents, so versions of Traversable and Foldable that can be folded with just a Semigroup are added. Modules [ Index ] Data Functor Data.Functor.Alt Data.Functor.Apply Data.Functor.Bind Data.Functor.Bind.Trans Data.Functor.Plus Semigroup Data.Semigroup.Foldable Data.Semigroup.Traversable Data.Semigroupoid Data.Semigroupoid.Dual Data.Semigroupoid.Static Traversable Data.Traversable.Instances Downloads semigroupoids-1.3.1.tar.gz [ browse ] (Cabal source package) Package description ( revised from the package) Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'. Maintainer's Corner Package maintainers EdwardKmett , EricMertens , ryanglscott For package maintainers and hackage trustees edit package information Candidates 5.2.1 Versions [ RSS ] 1.0.0 , 1.1.0 , 1.1.1 , 1.1.2 , 1.1.3 , 1.2.0 , 1.2.1 , 1.2.2 , 1.2.2.1 , 1.2.2.2 , 1.2.2.3 , 1.2.2.4 , 1.2.4 , 1.2.5 , 1.2.6 , 1.2.6.1 , 1.2.6.2 , 1.3 , 1.3.1 , 1.3.1.1 , 1.3.1.2 , 1.3.2 , 1.3.2.1 , 1.3.3 , 1.3.4 , 3.0 , 3.0.0.1 , 3.0.0.2 , 3.0.1 , 3.0.2 , 3.0.3 , 3.1 , 4.0 , 4.0.1 , 4.0.2 , 4.0.2.1 , 4.0.3 , 4.0.4 , 4.2 , 4.3 , 4.5 , 5 , 5.0.0.1 , 5.0.0.2 , 5.0.0.3 , 5.0.0.4 , 5.0.1 , 5.1 , 5.2 , 5.2.1 , 5.2.2 , 5.3 , 5.3.1 , 5.3.2 , 5.3.3 , 5.3.4 , 5.3.5 , 5.3.6 , 5.3.7 , 6 , 6.0.0.1 , 6.0.1 , 6.0.2 ( info ) Dependencies base (>=4 && <4.6) , comonad (>=1.1.1.2 && <1.2) , containers (>=0.3 && <0.5) , contravariant (>=0.2.0.1 && <0.3) , semigroups (>=0.8.2 && <0.9) , transformers (>=0.2 && <0.3) [ details ] License BSD-3-Clause Copyright Copyright (C) 2011 Edward A. Kmett Author Edward A. Kmett Maintainer Edward A. Kmett <ekmett@gmail.com> Uploaded by EdwardKmett at 2012-04-09T20:48:07Z Revised Revision 1 made by HerbertValerioRiedel at 2015-01-03T09:39:34Z Stability provisional --> Category Control , Comonads Home page http://github.com/ekmett/semigroupoids Source repo head: git clone git://github.com/ekmett/semigroupoids.git Distributions Arch: 6.0.1 , Debian: 5.3.4 , Fedora: 6.0.1 , FreeBSD: 5.0.0.3 , LTSHaskell: 6.0.1 , NixOS: 6.0.1 , Stackage: 6.0.2 , openSUSE: 6.0.1 Reverse Dependencies 216 direct, 9047 indirect [ details ] Downloads 309284 total (292 in the last 30 days) Rating 2.5 (votes: 9) [estimated by Bayesian average ] Your Rating λ λ λ Status Docs uploaded by user Build status unknown [ no reports yet ] Produced by hackage and Cabal 3.16.1.0. | 2026-01-13T09:30:28 |
https://blog.nyveldt.com/post/creating-themes-webcast-update | Creating Themes Webcast Update - Al Nyveldt Al Nyveldt Home About Now Creating Themes Webcast Update July 21, 2007 BlogEngine.NET , Development , Screencasts blogengine.net , screencast , theme , video There were a number of people who were unable to watch the complete Creating Themes for BlogEngine.NET webcast . (The screen turned red at some point in the webcast. It seems to be a memory consumption issue.) I went ahead and made a Windows Media version available for download. You can download it here . It is huge, but it works fine (at least for me). I also updated the flash movie, but it is still a large file so you could still have trouble. Share on Bluesky or click the Permalink and paste anywhere. Al Nyveldt Hi. I'm a software developer from central Pennsylvania, USA. Pinned Posts Keep GitHub Copilot from going off the rails with instructions files AI Journey: From Annoying to Essential Categories AI Journey (3) Audio (7) BlogEngine.NET (60) Books (2) Business (2) Development (41) Hardware (5) iDevBlogADay (6) iOS (8) Personal (14) Screencasts (15) Software (21) Web (3) Tags ai , app store , applescript , blogengine.net , blogml , book review , code camp , codemash , codeplex , coding , community , compiling , conference , control , copilot , crystal reports , das blog , dev tools , download , extensions , family , faq , feed reading , fitness , flash drive , fun , games , google reader , idevblogaday , ios , iPad , iphone , ipod , mcp , membership , metaweblog api , microsoft , migration , mix , monotouch , monsterid , mvc , mysql , nike+ , open source , organization , patch , personal , podcasts , powershell , profittrain , provider model , razorpdf , razorpub , release , reuse , review , running , runnow , screencast , security , snippets , sourcesafe , spark , sparrow , sql server , sqlite , starter kit , subtext , subversion , sudokukids , testing , theme , training , upgrade , utilities , video , vistadb , visual studio , widget , windows live writer , xamarin Subscribe Get notified about new posts and updates. Thank you! Please check your email and click the confirmation link to complete your subscription. Subscribe Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way. © 2026 Al Nyveldt. All rights reserved. Published with QuillKit / Sign in | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/2022/02/pattern-musings.html | don't count on finding me: Pattern musings skip to main | skip to sidebar don't count on finding me Friday, February 4, 2022 Pattern musings A new breed of patterns I like to code up little snippets in Haskell to play around with interesting concepts. Sometimes I invent notation that must appear forcing to most, but let's introduce it anyway... How I use ViewPatterns , for fun and profit When writing evaluators, I like to use view patterns to evaluate subtrees already on the LHS (pattern side). Let's introduce a mini-language (also called Hutton's razor) that can only add: data AST = Lit Integer | Plus AST AST deriving Show The evaluator is maximally simple, as it only needs to care about two sole cases: eval :: AST -> Integer eval (Lit res) = res eval (Plus l r) = eval l + eval r There is a train of thought that cares about termination and logical consistency and thus requires that in the definition of eval (Plus l r) the function to be defined can only be applied to structurally strictly smaller arguments (these are the hypotheses ). We adhere to this rule above, but for more complicated functions it is possible to introduce bugs when not being super careful. So why not resort to view patterns, and ban the eval from the RHS altogether? eval (Plus (eval -> l) (eval -> r)) = l + r This way of putting it makes it totally clear that eval is always applied to parts of the syntax tree. Result patterns? But let's return to the base case ( Lit ). We are forced to come up with a new binding ( res ), just to have something in our hands that we can return? Sounds like redundancy. So for the purpose of this post I'll come up with a result pattern (=), which can appear on the LHS only once and it's presence there will rule out the RHS: eval (Lit =) No more arbitrary names! View lambdas, anyone? Okay, so let's turn up the heat a bit more. A continuation-passing interpreter is a tail recursive way to evaluate the AST: cps :: forall k. AST -> (Integer -> k) -> k cps (Lit n) k = k n cps (Plus l r) k = cps l (\l -> cps r (\r -> k $ l + r)) For the purpose of this exercise you can consider the type k to be unit () , and the continuation (value k ) a consumer of intermediate results. We recognise the same usage pattern as in eval : subtrees are immediately (and linearly) passed to the function to be defined. So let's rewrite it with view patterns: cps (Plus (cps -> l) (cps -> r)) k = l (\l -> r (\r -> k $ l + r)) But now we face the same redundancy issue, that the view patterns bind identifiers that are somehow repetitive, as they are applied to lambdas immediately. Can we come up with a notation for a view pattern that applies on a lambda and extends its scope to the rest of the patterns and to the RHS? Consider cps (Plus (cps -> \l) (cps -> \r)) k = k (l + r) It takes some time to see the charm here, as it is wormholing a lambda-bound identifier to the RHS, but it is unbeatably concise. And we can combine it with the result pattern idea too: cps (Plus (cps -> \l) (cps -> \r)) (($ l + r) -> =) At this point however the readability is suffering. Outro Note that the view lambdas are strange beasts, not only because they wrap the result (RHS or = pattern), but also the identity holds: \p ≡ (id -> \p) , but since all the ids don't change anything, they can be stripped anyway. I wonder where I shall encounter more such view lambdas in the wild... Posted by heisenbug at 2:43 PM No comments: Post a Comment Older Post Home Subscribe to: Post Comments (Atom) Blog Archive ▼  2022 (1) ▼  February (1) Pattern musings ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/2014/#sidebar | don't count on finding me: 2014 skip to main | skip to sidebar don't count on finding me Thursday, November 6, 2014 Unembedded associations Everytime I start understanding the gist of a paper that appeared unfathomable to me a few months before, a strange thing happens to me. My brain often wanders off, and creates interesting new bridges, on which my thoughts begin to run and reach new previously unchartered land. This same thing happened to me when reading Atkey et al.'s "Unembedding Domain-Specific Languages" . Here I encountered my old friend, the HOAS lambda vocabulary class LC expr where lam :: (expr → expr) → expr app :: expr → expr → expr Freely associating I came up with an idea how to simulate a limited form of duck typing for conditionals: class Condition expr toBool :: expr → Bool cond :: expr → a → a → a cond c th el = if toBool c then th else el This would allow to retrofit many condition-like data types with this vocabulary. Nothing , 0 , (Left _) all could serve as false . Maybe I could even follow Conor McBride's advice and make the then and else arms of the conditional differently typed. Though I would need associated types for that. Duck typing may turn out like a good idea in a statically typed language, when implemented this way. Another use case would be function application by the built-in juxtaposition syntax. It already means different things in different syntactic contexts, like function application or type (family) application. Idiom brackets come to my mind. Edward Kmett's Apply class looks like a good candidate for a related vocabulary. The typing rule would be implemented by an associated (injective) type family. Hopefully someday we'll see -XRebindableSyntax for value-level application, that is type-directed. Posted by heisenbug at 3:57 PM No comments: Labels: finally-tagless , haskell , HOAS Sunday, October 26, 2014 gdiff – Polymorphically In the few last months I've been busy coming up with techniques mastering the gdiff Haskell library , even for use cases it was not originally designed for. This is mostly a brain dump of some approaches I have learnt while tinkering and trying to solve certain problems. 1) Polymorphic diff : Eelco Lempsink writes in the conclusion of his 2010 thesis «Furthermore, we can not encode polymorphic datatypes such as lists, but need to write specific encodings for each type we want to include». In the library documentation he says «It might require another master thesis project to solve this». However in the last days I developed a trick, which does allow me to describe polymorphic data types, such as [a] or Maybe a . I just needed to add these lines: in the family GADT: ListNil :: List Fam as → Fam a as → Fam [a] Nil ListCons :: List Fam as → Fam a as → Fam [a] (a `Cons` [a] `Cons` Nil) then define a Type instance: instance Type Fam a ⇒ Type Fam [a] where constructors = head [Concr (ListNil cc) | Concr cc Concr cc ← constructors] : [head [Concr (ListCons cc) | Concr cc ← constructors]] What is this doing? It picks two random constructors from the underlying data type and wraps them with ListNil and ListCons . We usually ignore what is wrapped, with one exception: in decEq one needs to ensure that the constructors' arguments are compared too, otherwise one cannot finish the type equality proof. 2) Non-moving pairs: In the usual textual diff algorithm the lines may move around a bit to make room for insertions, etc. This is normally the case for gdiff too. I have seen gdiff reusing values (with Cpy ) when comparing (True, False) with (False, True) . But sometimes this is not desired at all. I figured out that "inlining" the leaves into the pair's description (i.e. instead of (a `Cons` b `Cons` Nil) writing appendList on the field decompositions of a and b does the trick. 3) Location types: I found a way to equip Abstr constructor descriptors with type class dictionaries. It is similar to the lifting approach shown under 1), but much more involved. The idea is to wrap a location-aware descriptor with a descriptor that is location-blind, i.e. that hides the location parameter: Loc' :: KnownNat n ⇒ Fam (Loc n Bool) … Then we need the wrapper: Hidden' :: KnownNat n ⇒ Fam (Loc n Bool) ts → Fam (Hidden Loc) ts Giving the Type instance for the latter is tricky, as Abstr alone has no provision for dodging the class dictionary into Hidden' , so I had to write a locAware smart constructor to syphon it through the Hidden' wrapper. This also stressed the compiler to its limits in the advanced PolyKind -ed approach I needed, so I filed a GHC bug #9725 . There is also some code showing how the Hidden Loc is unwrapped and the dictionary-passing functions is installed into the Abstr . 4) Monadic actions coming out of patch : Here another wrapping approach is needed, but this time we need a sum type for diff and patch so that we can enter with a pure value at the Left and obtain a Right action back. This is the most involved approach. I can probably blog another time about it. Posted by heisenbug at 4:09 PM No comments: Labels: gdiff , haskell Thursday, August 7, 2014 First Programming with my Daughter Today I had a short programming session with my 7 year old. I had shown her earlier what a list is and she came back several times already to show her "more lists". So this time I thought we could do something more interesting. A letter-changing game! I fired up GHCi and entered: Prelude⟩ let satz = "Leleka hat Kacke in der Hose" Prelude⟩ print satz "Leleka hat Kacke in der Hose" She loved it so far. Fun is the strongest motivator to learn for kids… Then came the changer for letters: Prelude⟩ let tausch = \x → case x of {'L' → 'K'; 'e' → 'i'; 'i' → 'u'; 'u' → 'e'; x → x } Then I applied it on the phrase defined earlier: Prelude⟩ map tausch satz "Kilika hat Kacki un dir Hosi" This did it. She kept repeating the transformed sentence for an hour, giggling. I tried to explain to her what we did just now, but I guess I'll wait till next time to make her repeat this exercise. Posted by heisenbug at 1:27 AM No comments: Labels: haskell , teaching Thursday, July 31, 2014 Rank-2 PHOAS Lately I've been experimenting with finally-tagless (typed) representations and made an attempt to model the (implicitly typed) lambda calculus. However, I wanted to use the parametric higher-order abstract syntax (PHOAS) technique to obtain variable bindings that are automatically well-scoped. I arrived at this formulation: class LC rep where var :: p → rep lam :: (forall p . p → rep) → rep (I am ignoring applications as they are not important for making my point.) As Andres Löh has pointed out to me this is not the final-tagless formulation of the regular PHOAS form, as that would add the p type variable as the second class parameter and the rank-2 forall would appear from "outside". But I liked my simple formulation and the obviously and explicitly parametric lambda body. So I started implementing a rudimentary visualisation instance given a name supply: instance LC ([String] → String) where var = ??? -- const "VAR" lam f = \supply → ... It turns out that implementing var is only possible by giving a constant result, and for lam I am in trouble, because I cannot call f as it expects a polymorphic argument. Both problems are due to the fact that p is too polymorphic. Can we have it a bit less polymorphic in order to make some progress? Thinking about it I came up with the idea of giving each instance a way to constrain the p variable as it fits. So I changed class LC such: class LC rep where type Restricted rep p :: Constraint var :: Restricted rep p ⇒ p → rep lam :: (forall p . Restricted rep p ⇒ p → rep) → rep Now my instance can pick the restriction as it fits: instance LC ([String] → String) where type Restricted ([String] → String) p = ([String] → String) ~ p var = id lam f = \supply → ... As you see I chose the restriction to be type equality which essentially cancels parametricity in this instance and gives me simple HOAS. Filling in p becomes easy now. lam f = \(n:ns) → "\\" ++ n ++ "." ++ (f $ const n) ns Let's try it out! But in order to do that we need an instance of Show for name supplies. This could be one: instance Show ([String] → String) where show f = f $ map (('v':) . show) [0..] Now we can interpret a lambda term as a name supply. *Main› lam (\x → lam $ \y → var x) :: [String] → String \v0.\v1.v0 It works™ :-) But I can go further. After implementing several other instances I observed that I always wanted to destroy parametricity completely and implement var as the identity. So why not have these as defaults and reduce the boilerplate by a nice margin? Here is the final class definition that I arrived at: class LC rep where type Restricted rep p :: Constraint type Restricted rep p = rep ~ p var :: Restricted rep p ⇒ p → rep default var :: rep ~ p ⇒ p → rep var = id lam :: (forall p . Restricted rep p ⇒ p → rep) → rep I like it so far. PS: Here are the prerequisites if you want to compile the above yourself: {-# LANGUAGE UnicodeSyntax, ConstraintKinds, TypeFamilies, RankNTypes, FlexibleInstances, DefaultSignatures #-} import GHC.Exts Posted by heisenbug at 2:28 PM No comments: Labels: final-tagless , haskell , HOAS , lambda calculus , parametric , PHOAS Sunday, January 12, 2014 Testing LaTeX with MathJax $3_{5}$ $$42^{25}$$ extensions: ["tex2jax.js"], jax: ["input/TeX", "output/HTML-CSS"], Does not work But this: <script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script> <script type='math/tex; mode=display'> \{ 0, 1, 2 \} </script> Results in something pretty: Posted by heisenbug at 6:45 PM No comments: Labels: latex , mathjax , maths Newer Posts Older Posts Home Subscribe to: Comments (Atom) Blog Archive ►  2022 (1) ►  February (1) ▼  2014 (5) ▼  November (1) Unembedded associations ►  October (1) gdiff – Polymorphically ►  August (1) First Programming with my Daughter ►  July (1) Rank-2 PHOAS ►  January (1) Testing LaTeX with MathJax ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/search/label/logics | don't count on finding me: logics skip to main | skip to sidebar don't count on finding me Showing posts with label logics . Show all posts Showing posts with label logics . Show all posts Monday, September 2, 2013 Now it's evident — totally! In one of my posts about logics I have shown that a proof of a true proposition consists of constructing a function from ⊤ (truth) to an inhabitant of that proposition (interpreted as a type). Dually, one would hope, we must construct a function between false propositions and ⊥ (bottom, the empty set). The big question is: How? There appear to be many functions into the empty set. These surely cannot mean to be proofs! There is a catch: totality . For every possible input we are obliged to provide a well-defined, deterministic result. A hard job when the target set is empty! On the other hand it is easy enough for positive proofs: (considering the finite case...) say, we seek a proof of the Bool proposition. Bool has two inhabitants, so the function space from ⊤ (single inhabitant) to Bool must have 2 1 of them. Here is one: provebool () = True (Do you find the other one?) But for negative proofs, it isn't really obvious how to do it. Since refutable propositions (allegedly) have no inhabitants, how do we write a pattern-matching function between them? But remember, in the finite proof case our arrows had n m inhabitants, picking any one of these constituted a valid proof. For the uninhabited case such a way of counting gives us a clue: 0 0 can be interpreted as 1! And this is the key, we need to do pattern matching with no patterns to get that inhabitant: refutation = \case of {} When this function is total, we have our sought-for unique proof. And for actual negative proofs it evidently is! Posted by heisenbug at 1:26 AM No comments: Labels: haskell , logics Wednesday, December 19, 2012 Decidable equality Trailing Richard Eisenberg's blog post I've been triggered to recollect what I have read about the matter so far. Turns out that I was about 17 when I first came into contact with the concept. After my brother hinted to me a month ago that he is reading "Gödel, Escher, Bach" , I grabbed my own copy from my bookshelf and quickly found the page about the fractal nature of provable propositions and the true-false divide. I have scanned it and showing it below. What is the connection to decidable equality? I believe this illustration shows it: I have depicted T (truth, top, any nullary constructor, e.g. () ) at the north pole, and bottom (false, ⊥) at the south pole. The way or reasoning on the north hemisphere is to transport truth into a type , i.e. construct a function of type () → P , where P is the proposition we want to prove in Curry-Howard encoding. As the figure shows we may have a finite number of stops on our way. We can note that a function of type () → P is isomorphic to P , so simply constructing an object of type P suffices. Dually, proving that a proposition is false, we have to construct a path to bottom from Q , again possibly via a finite number of stops. Since ( Q → ⊥ ) cannot be simplified we really have to construct functions here. The equator divides true from false and thus separates the duals. Since each proof (when computable in finite time) will either result in something from the blue or red island, the type for decidable equality must be Either (a :~: b) ((a :~: b) -> Void) . Posted by heisenbug at 7:21 AM 1 comment: Labels: haskell , logics Older Posts Home Subscribe to: Comments (Atom) Blog Archive ▼  2022 (1) ▼  February (1) Pattern musings ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://blog.nyveldt.com/category/Screencasts?page=1 | Home - Al Nyveldt Al Nyveldt Home About Now Screencasts (15 posts) BlogEngine.NET Installation Screencast Feb 03, 2010 Click to read more... Screencasts Installation screencasts for BlogEngine.NET 1.5 Apr 06, 2009 Click to read more... Screencasts Installing BlogEngine.NET with the Microsoft Web App Gallery Mar 18, 2009 Click to read more... BlogEngine.NET Using VistaDB Express with BlogEngine.NET 1.4 Jul 03, 2008 Click to read more... BlogEngine.NET Setting up BlogEngine.NET 1.4 to use SQL Server Jul 02, 2008 Click to read more... BlogEngine.NET BlogEngine.NET 1.4 Installation Screencast Jul 01, 2008 Click to read more... BlogEngine.NET Quotes of the Day Widget Installation and Update Feb 27, 2008 Click to read more... BlogEngine.NET Customizable BlogEngine.NET Theme: NonZero Jan 27, 2008 Click to read more... BlogEngine.NET New BlogEngine.NET Widget: Quote of the Day Jan 17, 2008 Click to read more... BlogEngine.NET BlogEngine.NET Screencast: SQL Membership and Roles Providers Jan 07, 2008 Click to read more... BlogEngine.NET Previous 1 2 Next Al Nyveldt Hi. I'm a software developer from central Pennsylvania, USA. Pinned Posts Keep GitHub Copilot from going off the rails with instructions files AI Journey: From Annoying to Essential Categories AI Journey (3) Audio (7) BlogEngine.NET (60) Books (2) Business (2) Development (41) Hardware (5) iDevBlogADay (6) iOS (8) Personal (14) Screencasts (15) Software (21) Web (3) Tags ai , app store , applescript , blogengine.net , blogml , book review , code camp , codemash , codeplex , coding , community , compiling , conference , control , copilot , crystal reports , das blog , dev tools , download , extensions , family , faq , feed reading , fitness , flash drive , fun , games , google reader , idevblogaday , ios , iPad , iphone , ipod , mcp , membership , metaweblog api , microsoft , migration , mix , monotouch , monsterid , mvc , mysql , nike+ , open source , organization , patch , personal , podcasts , powershell , profittrain , provider model , razorpdf , razorpub , release , reuse , review , running , runnow , screencast , security , snippets , sourcesafe , spark , sparrow , sql server , sqlite , starter kit , subtext , subversion , sudokukids , testing , theme , training , upgrade , utilities , video , vistadb , visual studio , widget , windows live writer , xamarin Subscribe Get notified about new posts and updates. Thank you! Please check your email and click the confirmation link to complete your subscription. Subscribe Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way. © 2026 Al Nyveldt. All rights reserved. Published with QuillKit / Sign in | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/search/label/sadness | don't count on finding me: sadness skip to main | skip to sidebar don't count on finding me Showing posts with label sadness . Show all posts Showing posts with label sadness . Show all posts Wednesday, October 5, 2011 Macs and me I am profoundly saddened since I woke up at 4:00am in the morning, and saw the news headline about the passing of Steve Jobs. I have seen this coming for a long time, as my father died in a very similar way back 1993 with only 52. Looking at the thin appearance of Jobs in the last month or even years I constantly get reminded of him. Basically the same story of suffering, loss of weight, liver transplant (in vain), death. RIP, Dad, RIP, Steve. I am writing this on a rusty vintage 2000 PowerBook G4 Titanium, I bought on eBay last year, because the video of my own 2001 TiBook went black. By today's web standards completely inadequate, it serves me well for news reading, terminal logins, etc. My son Pedro got his MacBook Pro 15'' delivered just today. An awesome piece of technology. My father bought the first Mac in 1986, just after opening his practice as a neurologist. This was two years after cutting all strings in Hungary and fleeing to Germany in a pretty bold move. Must have been a moment of total self-overestimation when I promised to my dad "if you buy that Mac Plus I'll write you the best software for it for your doctor's office". A crazy time began. At day the Mac was used to keep patient's data with a DTP program "RagTime", at 5pm I hauled the Mac home (in a big black bag) and started writing the program. Sometimes deep into the night. I used Turbo Pascal (and later MPW) after figuring out that the Lisp environment I preferred simply did not cut it due to insufficient support of the Toolbox. In the morning my father carried the Mac back and powered it up. Less than year later the program was ready for productive work. A Mac SE joined the party and we had a networked doctor's application with a really neat windowed user interface, that would put even today's programs to shame in this regard. There was even a time when we fancied marketing this product, but my university duties and the early death of my father simply negated all plans to this end. When I had my diploma in my hands I picked up the phone and called the guy who sold us the Mac Plus and a copy of "Inside Macintosh" back in '86. In the meantime he founded a pretty successful company around a networked admin solution called 'netOctopus' which was his baby. We occasionally met at Apple developer events and I new that he was a pretty damn good coder. He hired me and I was earning money by programming Macs! So yes, I love Macs and there is no reason that this will change in the foreseeable future. I kept telling to myself, should Jobs die one day, I'll put that Mac Plus (now in my basement and still functional) up for sale at eBay. My thought today: "screw it – too many fond memories attached". Posted by heisenbug at 9:39 PM 3 comments: Labels: family , mac , sadness Older Posts Home Subscribe to: Comments (Atom) Blog Archive ▼  2022 (1) ▼  February (1) Pattern musings ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://tests.reproducible-builds.org/debian/trixie/arm64/pkg_set_build-essential-depends.html | build-essential-depends package set for trixie/arm64 Debian navigation Change suite/architecture Tested architectures: amd64 arm64 Tested suites: unstable forky trixie bookworm Test results statistics Results for trixie/arm64 Unreproducible packages: with notes without notes Other package states: package sets Recently tested packages: last 24h last 48h all tested packages packages with .buildinfo files packages without .buildinfo files Scheduled for arm64 Maintainers of in trixie Reproducible Debian overview Development dashboard Past releases dashboard Categorized issues Bugs filed Variations tested Packages with notifications enabled ⚑ Repositories overview Backend related Broken pieces Documentation (eg. on manual scheduling) Performance stats Health monitoring node overview job overview daily graphs weekly graphs monthly graphs yearly graphs The Reproducible Builds project reproducible-builds.org Reproducible Builds - Docs • News Reproducible Builds in Debian - Wiki SOURCE_DATE_EPOCH specification reproduce.debian.net aims for 100% bit-for-bit identical rebuilds of Debian other CI tests build-essential-depends package set for trixie/arm64 All tracked package sets for trixie/arm64 Debian package sets: essential required important build-essential build-essential-depends popcon_top1337-installed-sources key_packages installed_on_debian.org had_a_DSA cii-census cloud-image cloud-image_build-depends desktop package sets: gnome gnome_build-depends kde kde_build-depends mate mate_build-depends xfce xfce_build-depends Debian distribution package sets: CIP CIP_build-depends debian-edu debian-edu_build-depends freedombox freedombox_build-depends grml grml_build-depends tails tails_build-depends pureos_default_install pureos_default_install_build-depends maintenance team package sets: maint_debian-accessibility maint_debian-boot maint_debian-lua maint_debian-med maint_debian-ocaml maint_debian-on-mobile-maintainers maint_debian-python maint_debian-qa maint_debian-science maint_debian-x maint_pkg-android-tools-devel maint_pkg-erlang-devel maint_pkg-fonts-devel maint_pkg-games-devel maint_pkg-golang-maintainers maint_pkg-grass-devel maint_pkg-haskell-maintainers maint_pkg-java-maintainers maint_pkg-javascript-devel maint_pkg-multimedia-maintainers maint_pkg-perl-maintainers maint_pkg-php-pear maint_pkg-openstack maint_pkg-r maint_pkg-ruby-extras-maintainers maint_pkg-rust-maintainers maint_reproducible-builds The package set build-essential-depends in trixie/arm64 consists of 5856 packages: 89 (1.5%) packages failed to build reproducibly: linux86 twitter-bootstrap3 node-d3 systemtap pam black fonts-cantarell ghc # python3.13 libtool bluez r-base qt6-connectivity node-webpack python-git python-django qt6-scxml qt6-languageserver graphviz + qt6-remoteobjects qt6-quick3d mesa qt6-declarative qt6-multimedia secilc binutils-gold python-mkdocs valgrind + groovy fltk1.3 efl qtsensors-opensource-src gmetrics gdcm lynx nbsphinx librsvg joblib node-function-bind + lucene4.10 codenarc h2database libcamera pupnp emacs pstoedit cxxtest ruby-pygments.rb parallel underscore statsmodels mpi4py frozenlist freetds scons python-tomli pyzmq mpich sundials petsc jupyterlab python-propcache jupyter-server python-inline-snapshot dejagnu numpy rapidfuzz qtdeclarative-opensource-src nss dask pandas # sqlalchemy matplotlib golang-golang-x-net mypy oxygen-icons bsh doxygen yarl faker nbconvert flite contourpy ldc openmpi rocm-hipamd xorg-server samba vlc # + 74 (1.3%) packages failed to build from source: golang-1.24 pexpect node-flagged-respawn libgweather4 haskell-nothunks haskell-unordered-containers haskell-prettyprinter haskell-typst wasi-libc haskell-doclayout haskell-citeproc haskell-prettyprinter-compat-ansi-wl-pprint nodejs node-body-parser haskell-unicode-collation haskell-basement vega.js kf6-kconfigwidgets kf6-kconfig golang-github-go-sql-driver-mysql jbigkit qt6-webengine onednn ruby-fakefs python-dateutil texlive-extra ruby3.3 gtk4 llvm-toolchain-17 gst-plugins-base1.0 freezegun gcc-14 llvm-toolchain-19 haskell-pandoc fakeroot enchant-2 meson python-babel munge uglifyjs seabios tomcat11 wxwidgets3.2 jeromq gem2deb qpdf haskell-http-types tomcat10 haskell-lpeg node-css-tree eigen3 nspr highway qtlocation-opensource-src rustc ceph wpewebkit ruby-regexp-property-values mingw-w64 gcc-mingw-w64 sphinx vim autogen jupyter-notebook mozjs128 openjdk-21 onetbb qt6-base curl webkit2gtk libreoffice # gnutls28 chromium linux 13 (0.2%) packages are either in depwait state, blacklisted, not for us, or cannot be downloaded: ocaml-dune octave vtk9 scipy libvpl level-zero intel-processor-trace libpsm2 infinipath-psm amdgcn-tools-19 puma linux-signed-amd64 qemu 5680 (97.0%) packages successfully build reproducibly: 0install-solver aalib abego-treelayout abi-compliance-checker abseil accessible-pygments acl acorn acpica-unix adduser adwaita-icon-theme afdko aglfn aiodns aiofiles aiohappyeyeballs aioquic aiosignal alabaster alex alglib alsa-lib aml animal-sniffer ann ant ant-contrib anthy antlr antlr3 antlr4 antlr4-cpp-runtime antlr-maven-plugin aom apache2 # apache-log4j1.2 apache-log4j2 apache-pom apiguardian apparmor appconfig appstream apr apr-util apt architecture-properties argon2 argparse-manpage args4j aribb24 armadillo arpack asciidoc asciidoctor asm asmtools asn1crypto aspell aspell-en aspell-he assertj-core assimp astroid atf atinject-jsr330 at-spi2-core attr auctex audit autoconf autoconf2.69 autoconf-archive autoconf-dickey autodep8 automake-1.17 automat autopep8 autopkgtest autotools-dev avahi avalon-framework babel-minify babeltrace backbone base-files base-passwd bash bash-completion batik bats bats-assert bats-support bc bcel beautifulsoup4 benchmark betamax biber bignumber.js binaryen bind9 # bindex binfmt-support biniou binutils # binutils-mingw-w64 bison blinker blockdiag blt bnd boost1.83 boost-defaults boot bootstrap-html botan bottleneck bouncycastle box2d branca breathe brltty brotli bubblewrap build-essential build-helper-maven-plugin byacc byacc-j byte-buddy bzip2 c3p0 ca-certificates ca-certificates-java cached-property cachy cairo cairocffi camlbz2 camlp-streams camlzip capstone c-ares castxml catch catch2 c-blosc # c-blosc2 cbor2 ccache cdbs cdebconf cdi-api cdparanoia cffsubr cfitsio cfortran cglib chafa chardet charls check checker-framework-java checkpolicy cherrypy3 chromaprint chrpath cjson classmate classycle cli11 click clikit cloudpickle clp clucene-core + cluster cluster-glue cmake cmake-extras cmark-gfm cmdliner cmdreader cme cmock cmocka cm-super codec2 codemirror-js coderay codetools coffeescript coinmp coinor-cbc coinor-cgl coinor-osi coinutils colord colored colors.js colorspacious combblas commonmark commons-beanutils commons-configuration commons-csv commons-exec commons-httpclient commons-io commons-math3 commons-parent commons-pool commons-text commons-vfs compreffor compress-lzf constantly conversant-disruptor # coreutils corosync cpdb-libs cpio cppdap cpp-httplib cppo cppunit cpputest cppy cproto cpuinfo cracklib2 crashtest cron cryptsetup cscope cssmin cucumber cudf culmus cunit cup cups # curvesapi cvs cvsps cvxopt cyrus-sasl2 cython + d3 d3-format d3-tip.js dacite darts dash dask.distributed dask-sphinx-theme dav1d db5.3 db-defaults dblatex dbus dbus-broker dbus-c++ dbus-glib dbus-python dbus-test-runner dconf dctrl-tools dd-plist debconf debhelper debian-archive-keyring debianutils debputy debugedit debugpy deepdiff defcon defusedxml derby desktop-file-utils device-tree-compiler devscripts dh-autoreconf dh-builtusing dh-cargo dh-cmake dh-dist-zilla dh-elpa dh-exec dh-fortran-mod dh-golang dh-linktree dh-lisp dh-lua dh-make-perl dh-nss dh-ocaml dh-octave dh-php dh-python dh-r dh-runit dh-rust dh-vim-addon dictionaries-common diffstat diffutils dill ding-libs directx-headers dirty-equals discount disruptor dist distlib distro-info distro-info-data djvulibre dlm dlpack dmidecode dnspython docbook docbook2x docbook5-xml docbook-dsssl docbook-to-man docbook-utils docbook-xml docbook-xsl docopt doctest doit dom4j domdf-python-tools dos2unix dose3 dotconf double-conversion doxia doxia-sitetools doxypypy dpkg # dpkg-awk draco dragonbox dsdp d-shlibs dtd-parser duktape dulwich dvipng dwarves dwz e2fsprogs easy-format easymock easyprocess ecj eclipse-debian-helper eclipse-emf eclipse-equinox eclipse-jdt-core eclipse-jdt-debug eclipse-jdt-ui eclipse-platform eclipse-platform-ui ed edid-decode eglexternalplatform egl-wayland ehcache el-api elementpath elfutils ell emacsen-common emscripten ent epstool equinox-p2 error-prone-java escapevelocity-java eslint espeak-ng evolution-data-server excalibur-logger excalibur-logkit exec-maven-plugin execnet exempi expat expect extlib exuberant-ctags faad2 fakechroot faketime fast-float fastinfoset fastjar fcitx fdupes feedparser felix-bundlerepository felix-framework felix-gogo-runtime felix-osgi-obr felix-resolver felix-shell felix-utils fest-assert fest-test fest-util ffmpeg ffms2 fftw3 fig2dev file findbugs findlib findpython findutils firebird4.0 firewalld fish flac flake8-docstrings flask flatbuffers flex flit flit-scm fluidsynth flute fmtlib folium fontconfig fontmake fontmath fontparts fontpens fonts-crosextra-caladea fonts-crosextra-carlito fonts-dejavu fonts-font-awesome fonts-freefont fonts-gfs-baskerville fonts-gfs-porson fonts-hosny-amiri fonts-inconsolata fonts-inter fonts-ipafont fonts-lato fonts-liberation fonts-linuxlibertine fonts-noto fonts-noto-cjk fonts-noto-color-emoji fonts-open-sans fonts-roboto-slab fonts-tuffy fonts-urw-base35 fonts-wqy-zenhei fonttools fop foreign fp16 freeglut freeipmi freerdp3 freetype freetype-py freexl frei0r fribidi frozen fsspec fstrm ftgl funcparserlib furo fuse fuse3 fxdiv fyba galera-4 game-music-emu ganymed-ssh2 gavl gawk + gcc-defaults gcovr gcr4 gdal gdb gdbm gdk-pixbuf generate-ninja gengetopt genshi geocode-glib geos geronimo-annotation-1.3-spec geronimo-interceptor-3.0-spec geronimo-jacc-1.1-spec geronimo-jms-1.1-spec geronimo-jpa-2.0-spec geronimo-jta-1.2-spec geronimo-osgi-support geronimo-validation-1.1-spec gettext gf-complete gflags ghostscript ghp-import gi-docgen giflib git gjs gl2ps glade glew glib2.0 glibc glibmm2.4 glib-networking glm glpk glslang glusterfs glyphsinfo glyphslib gmp gnome-common gnome-desktop gnome-online-accounts gnome-pkg-tools gnu-efi gnulib gnupg2 gnuplot gnustep-base gnustep-make gnu-which gobject-introspection golang-check.v1 golang-defaults golang-filippo-edwards25519 golang-fsnotify golang-github-cheekybits-is golang-github-creack-pty golang-github-davecgh-go-spew golang-github-djherbis-atime golang-github-evanw-esbuild golang-github-golang-mock golang-github-google-go-cmp golang-github-google-gofuzz # golang-github-gorilla-securecookie golang-github-gorilla-sessions golang-github-hashicorp-go-uuid golang-github-jcmturner-aescts.v2 golang-github-jcmturner-dnsutils.v2 golang-github-jcmturner-gofork golang-github-jcmturner-goidentity.v6 golang-github-jcmturner-gokrb5.v8 golang-github-jcmturner-rpc.v2 golang-github-jmoiron-sqlx golang-github-lib-pq golang-github-matryer-try golang-github-mattn-go-sqlite3 golang-github-pelletier-go-toml golang-github-pmezard-go-difflib golang-github-rogpeppe-go-internal golang-github-tdewolff-argp golang-github-tdewolff-minify golang-github-tdewolff-parse golang-github-tdewolff-test golang-github-yuin-goldmark golang-go.crypto golang-golang-x-mod golang-golang-x-sync golang-golang-x-sys golang-golang-x-term golang-golang-x-text golang-golang-x-tools golang-gopkg-yaml.v3 golang-objx golang-pretty golang-testify golang-text golang-toml golang-yaml.v2 google-auto-common-java google-auto-service-java google-auto-value-java google-glog google-perftools # googletest gperf gpgme1.0 gpm gradle gradle-apt-plugin gradle-debian-helper graphene graphicsmagick graphite2 grep groff grpc grunt gsettings-desktop-schemas gsl gssdp gst-plugins-bad1.0 gst-plugins-good1.0 gstreamer1.0 gtk+2.0 gtk+3.0 gtk-doc gts guava-libraries guice guile-3.0 gunicorn gupnp gupnp-igd guzzle-sphinx-theme gyp gzip happy harfbuzz haskell-aeson haskell-aeson-pretty haskell-aeson-qq haskell-ansi-terminal haskell-ansi-terminal-types haskell-ansi-wl-pprint haskell-appar haskell-asn1-encoding haskell-asn1-parse haskell-asn1-types haskell-assoc haskell-async haskell-attoparsec haskell-attoparsec-aeson haskell-barbies haskell-base16-bytestring haskell-base64-bytestring haskell-base-compat haskell-base-compat-batteries haskell-base-orphans haskell-bifunctors haskell-bitvec haskell-blaze-builder haskell-blaze-html haskell-blaze-markup haskell-boring haskell-byteorder haskell-cabal-doctest haskell-cabal-install haskell-cabal-install-solver haskell-call-stack haskell-case-insensitive haskell-cassava haskell-cereal haskell-chasingbottoms haskell-clock haskell-cmdargs haskell-code-page haskell-colour haskell-commonmark haskell-commonmark-extensions haskell-commonmark-pandoc haskell-comonad haskell-concurrent-output haskell-conduit haskell-conduit-extra haskell-constraints haskell-contravariant haskell-cookie haskell-cryptohash-sha256 haskell-crypton haskell-crypton-connection haskell-crypton-x509 haskell-crypton-x509-store haskell-crypton-x509-system haskell-crypton-x509-validation haskell-data-default haskell-data-default-class haskell-data-default-instances-containers haskell-data-default-instances-dlist haskell-data-default-instances-old-locale haskell-data-fix haskell-dec haskell-devscripts haskell-diff haskell-digest haskell-distributive haskell-dlist haskell-doctemplates haskell-doctest haskell-echo haskell-ed25519 haskell-edit-distance haskell-either haskell-emojis haskell-erf haskell-extensible-exceptions haskell-extra haskell-fgl haskell-file-embed haskell-filemanip haskell-filepattern haskell-foldable1-classes-compat haskell-foldl haskell-foundation haskell-generic-deriving haskell-ghc-paths haskell-glob haskell-gridtables haskell-hackage-security haskell-haddock-library haskell-hadrian haskell-hashable haskell-heaps haskell-hedgehog haskell-hostname haskell-hourglass haskell-hslua haskell-hslua-aeson haskell-hslua-classes haskell-hslua-cli haskell-hslua-core haskell-hslua-list haskell-hslua-marshalling haskell-hslua-module-doclayout haskell-hslua-module-path haskell-hslua-module-system haskell-hslua-module-text haskell-hslua-module-version haskell-hslua-module-zip haskell-hslua-objectorientation haskell-hslua-packaging haskell-hslua-repl haskell-hslua-typing haskell-hspec haskell-hspec-core haskell-hspec-discover haskell-hspec-expectations haskell-http haskell-http-client haskell-http-client-tls haskell-hunit haskell-indexed-traversable haskell-indexed-traversable-instances haskell-integer-logarithms haskell-iproute haskell-ipynb haskell-isocline haskell-jira-wiki-markup haskell-js-dgtable haskell-js-flot haskell-js-jquery haskell-juicypixels haskell-language-python haskell-lexer haskell-libyaml haskell-lifted-async haskell-lifted-base haskell-logging-facade haskell-logict haskell-lua haskell-lua-arbitrary haskell-lukko haskell-markdown-unlit haskell-memory haskell-mime-types haskell-mmorph haskell-mockery haskell-monad-control haskell-monads-tf haskell-mono-traversable haskell-network haskell-network-uri haskell-old-locale haskell-old-time haskell-onetuple haskell-only haskell-optparse-applicative haskell-ordered-containers haskell-os-string haskell-pandoc-lua-engine haskell-pandoc-lua-marshal haskell-pandoc-types haskell-pem haskell-prettyprinter-ansi-terminal haskell-pretty-show haskell-primitive haskell-primitive-addr haskell-profunctors haskell-quickcheck haskell-quickcheck-classes haskell-quickcheck-classes-base haskell-quickcheck-instances haskell-quickcheck-io haskell-quickcheck-unicode haskell-random haskell-raw-strings-qq haskell-regex-base haskell-regex-posix haskell-regex-tdfa haskell-resolv haskell-resourcet haskell-safe haskell-safe-exceptions haskell-scientific haskell-semialign haskell-semigroupoids haskell-semigroups haskell-semirings haskell-sha haskell-shake haskell-silently haskell-singleton-bool haskell-skylighting haskell-skylighting-core haskell-skylighting-format-ansi haskell-skylighting-format-blaze-html haskell-skylighting-format-context haskell-skylighting-format-latex haskell-smallcheck haskell-socks haskell-some haskell-split haskell-splitmix haskell-src-exts haskell-src-meta haskell-statevar haskell-streaming-commons haskell-strict haskell-stringbuilder haskell-syb haskell-tagged haskell-tagsoup haskell-tar haskell-tasty haskell-tasty-expected-failure haskell-tasty-golden haskell-tasty-hedgehog haskell-tasty-hunit haskell-tasty-kat haskell-tasty-lua haskell-tasty-quickcheck haskell-tasty-smallcheck haskell-temporary haskell-terminal-size haskell-test-framework haskell-test-framework-hunit haskell-test-framework-quickcheck2 haskell-texmath haskell-text-conversions haskell-text-short haskell-tf-random haskell-th-abstraction haskell-th-compat haskell-these haskell-th-expand-syns haskell-th-lift haskell-th-lift-instances haskell-th-orphans haskell-th-reify-many haskell-time-compat haskell-timeit haskell-tls haskell-toml-parser haskell-transformers-base haskell-transformers-compat haskell-typed-process haskell-typst-symbols haskell-unbounded-delays haskell-unicode-data haskell-unicode-transforms haskell-uniplate haskell-unix-compat haskell-unix-time haskell-unliftio haskell-unliftio-core haskell-utf8-string haskell-uuid-types haskell-vector haskell-vector-algorithms haskell-vector-stream haskell-void haskell-witherable haskell-wl-pprint-annotated haskell-xcb-types haskell-xml haskell-xml-conduit haskell-xml-types haskell-yaml haskell-zip-archive haskell-zlib hatch-jupyter-builder hatchling hatch-vcs hawtjni hdf5 heimdal help2man hevea hfst-ospell hicolor-icon-theme hidapi highlight.js hiredis hm hostname howardhinnant-date hscolour hspell hsqldb hsqldb1.8.0 html2text html5lib html-xml-utils httpbin httpcomponents-client httpcomponents-core httpcore http-parser httpx hunspell hwdata hwloc hypercorn hyperlink hyphen hypre ibus icoutils icu icu4j ieee-data igerman98 ijs imagemagick imath imlib2 impacket incremental indent iniparser init-system-helpers intellij-annotations intltool intltool-debian iproute2 iptables iputils ipykernel ipyparallel ipython ipython-genutils ipywidgets isa-support isl iso-codes isodate isorelax isort ispell istack-commons itstool ivy ivy-debian-helper ivyplusplus jackd2 jackrabbit jackson-annotations jackson-core jackson-databind jackson-dataformat-xml jackson-dataformat-yaml jackson-module-jaxb-annotations jakarta-activation jakarta-mail jakarta-servlet-api janest-base janest-ocaml-compiler-libs jane-street-headers janino jansi jansi1 jansi-native jansson jaraco.classes jaraco.collections jaraco.context jaraco.itertools jaraco.text jargs jarjar jarjar-maven-plugin jatl javabeans-activation-framework javacc javacc4 javacc5 javacc-maven-plugin java-comment-preprocessor java-common javahelp2 javamail javaparser javapoet javascript-common javassist javatools # java-wrappers jaxb jaxb-api jaxrpc-api jaxrs-api jbig2dec jboss-bridger jboss-jdeparser2 jboss-logging jboss-logging-tools jboss-logmanager jboss-modules jcifs jcommander jctools jdependency jdupes jeepney jemalloc jerasure jetring jetty9 jffi jflex jformatstring jgit jinja2 jlex jline jline2 jline3 jmock jmock2 jnacl jnr-constants jnr-enxio jnr-ffi jnr-posix jnr-unixsocket jnr-x86asm joda-convert jpeg-xl jq jquery-goodies jquery-tablesorter jquery-throttle-debounce jquery-typeahead.js jqueryui jquery-ui-themes jsbundle-web-interfaces jsch jsch-agent-proxy js-of-ocaml json-c json-glib jsonm jsonpickle json-schema-test-suite json-simple jsoup jsp-api jst-config jtb jtharness jtidy jtreg7 jts judy junit junit4 junit5 junixsocket jupyter-cache jupyter-client jupyter-comm jupyter-console jupyter-core jupyter-events jupyterlab-pygments jupyterlab-server jupyter-packaging jupyter-server-terminals jzlib karchive kauth kcodecs kconfig kconfigwidgets kcoreaddons kdbusaddons kdoctools kerberos-configs kernel-wedge kernsmooth keyutils kf6-breeze-icons kf6-extra-cmake-modules kf6-karchive kf6-kauth kf6-kbookmarks kf6-kcodecs kf6-kcolorscheme kf6-kcompletion kf6-kcoreaddons kf6-kcrash kf6-kdbusaddons kf6-kded kf6-kdoctools kf6-kguiaddons kf6-ki18n kf6-kiconthemes kf6-kio kf6-kitemviews kf6-kjobwidgets kf6-knotifications kf6-kservice kf6-kwallet kf6-kwidgetsaddons kf6-kwindowsystem kf6-solid kguiaddons khronos-opencl-clhpp khronos-opencl-headers ki18n kiwisolver kmod knopflerfish-osgi knotifications krb5 # kronosnet kservice kvazaar kwallet-kf5 kwidgetsaddons kwindowsystem kxml2 kyua ladspa-sdk lame lapack latex2html latexmk lattice lazy-object-proxy lcdf-typetools lcms2 lcov leptonlib lerc less less.js libabw libadwaita-1 libaec libaio libalgorithm-c3-perl libalgorithm-diff-perl libaliased-perl libao P libaopalliance-java libapache-poi-java libapp-cmd-perl libapp-fatpacker-perl libapt-pkg-perl libarchive libarchive-zip-perl libarray-intspan-perl libarray-unique-perl libarray-utils-perl libass libassuan libasyncns libautobox-perl libautovivification-perl libavc1394 libavif libavtp libb2 libb64 libbase libb-cow-perl libberkeleydb-perl libb-hooks-endofscope-perl libb-hooks-op-check-perl libbibtex-parser-perl libbit-vector-perl libb-keywords-perl libblkio libbluray libboolean-perl libbpf libbs2b libbsd libbsf-java libbtm-java libbusiness-isbn-data-perl libbusiness-isbn-perl libbusiness-ismn-perl libbusiness-issn-perl libcaca libcacard libcanary-stability-perl libcanberra libcap2 libcap-ng libcapture-tiny-perl libcarp-assert-more-perl libcarp-clan-perl libcbor libcddb libcdio libcdio-paranoia libcdr libcgi-pm-perl libclass-accessor-perl libclass-c3-perl libclass-data-inheritable-perl libclass-inspector-perl libclass-load-perl libclass-load-xs-perl libclass-method-modifiers-perl libclass-singleton-perl libclass-tiny-perl libclass-xsaccessor-perl libclone-choose-perl libclone-perl libcloudproviders libcmis libcommons-cli-java libcommons-codec-java libcommons-collections3-java libcommons-collections4-java libcommons-compress-java libcommons-dbcp-java libcommons-digester-java libcommon-sense-perl libcommons-fileupload-java libcommons-jexl2-java libcommons-jxpath-java libcommons-lang3-java libcommons-lang-java libcommons-logging-java libcommons-net-java libcommons-validator-java # libconfig libconfig-autoconf-perl libconfig-inifiles-perl libconfig-ini-perl libconfig-model-backend-yaml-perl libconfig-model-dpkg-perl libconfig-model-perl libconfig-mvp-perl libconfig-mvp-reader-ini-perl libconfig-tiny-perl libconfuse libconst-fast-perl libcontextual-return-perl libconvert-binhex-perl libcpanel-json-xs-perl libcpan-meta-check-perl libcpan-requirements-dynamic-perl libcpan-uploader-perl libcrypto++ libcue libdaemon libdata-compare-perl libdata-dpath-perl libdata-dump-perl libdata-messagepack-perl libdata-optlist-perl libdata-section-perl libdata-section-simple-perl libdata-uniqid-perl libdata-validate-domain-perl libdata-validate-ip-perl libdata-validate-uri-perl libdata-visitor-perl libdate-simple-perl libdatetime-calendar-julian-perl libdatetime-format-builder-perl libdatetime-format-mysql-perl libdatetime-format-strptime-perl libdatetime-locale-perl libdatetime-perl libdatetime-timezone-perl libdatrie libdbd-sqlite3-perl libdbi-perl libdbm-deep-perl libdbusmenu libdbusmenu-qt libdc1394 libdca libde265 libdebian-copyright-perl libdebian-installer libdecor-0 libdeflate libdevel-callchecker-perl libdevel-checkbin-perl libdevel-checkcompiler-perl libdevel-checklib-perl libdevel-confess-perl libdevel-cover-perl libdevel-cycle-perl libdevel-declare-perl libdevel-globaldestruction-perl libdevel-overloadinfo-perl libdevel-partialdump-perl libdevel-size-perl libdevel-stacktrace-perl libdevel-symdump-perl libdex libdisplay-info libdist-checkconflicts-perl libdist-zilla-perl libdist-zilla-plugin-podweaver-perl libdist-zilla-plugin-prepender-perl libdist-zilla-plugin-run-perl libdist-zilla-plugins-cjm-perl libdist-zilla-plugin-signature-perl libdist-zilla-plugin-test-podspelling-perl libdrm libdumbtts libdv + libdvbpsi libdvdnav libdvdread libdynaloader-functions-perl libebml libe-book libebur128 libeddsa-java libedit libemail-address-xs-perl libemf libencode-eucjpascii-perl libencode-eucjpms-perl libencode-hanextra-perl libencode-jis2k-perl libencode-locale-perl libeot libepoxy libepubgen liberror-perl libetonyek libev libeval-closure-perl libevdev libevent libexception-class-perl libexecs libexif libexporter-lite-perl libexporter-tiny-perl libexttextcat libextutils-cchecker-perl libextutils-config-perl libextutils-cppguess-perl libextutils-depends-perl libextutils-hascompiler-perl libextutils-helpers-perl libextutils-installpaths-perl libextutils-libbuilder-perl libextutils-pkgconfig-perl libfabric libfeature-compat-class-perl libfeature-compat-try-perl libffado libffi libfido2 libfile-basedir-perl libfile-chdir-perl libfile-copy-recursive-perl libfile-dirlist-perl libfile-find-rule-perl libfile-find-rule-perl-perl libfile-homedir-perl libfile-libmagic-perl libfile-listing-perl libfile-pushd-perl libfile-remove-perl libfile-sharedir-install-perl libfile-sharedir-perl libfile-slurper-perl libfile-slurp-perl libfile-touch-perl libfile-which-perl libfixmath libfontenc libfonts-java libfont-ttf-perl libformula libfreeaptx libfreehand libftdi1 libgav1 libgc libgcrypt20 libgd2 libgee-0.8 libgeotiff libgetopt-argvfile-perl libgetopt-long-descriptive-perl libgit2 libgitlab-api-v4-perl libgit-wrapper-perl libglu libglvnd libgoogle-gson-java libgpg-error libgphoto2 libgraph-perl libgsm libgtop2 libgudev libgusb + libgzstream libhamcrest-java libharu libhash-defhash-perl libhash-merge-perl libhash-merge-simple-perl libhdf4 libheap-perl libheif libhibernate3-java libhibernate-commons-annotations-java libhibernate-validator-java libhtml-form-perl libhtml-html5-entities-perl libhtml-parser-perl libhtml-tagset-perl libhtml-tokeparser-simple-perl libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libhttp-tiny-multipart-perl libiberty libical3 libice libid3tag libidn libidn2 libiec61883 libieee1284 libimagequant libimobiledevice libimobiledevice-glue libimport-into-perl libindirect-perl libinih libinput libinstpatch libiodbc2 libio-html-perl libio-interactive-perl libio-prompter-perl libio-prompt-tiny-perl libio-pty-perl libio-socket-ssl-perl libio-string-perl libio-stringy-perl libio-tiecombine-perl libipc-run3-perl libipc-run-perl libipc-system-simple-perl libiscsi libiterator-perl libiterator-util-perl libitext-java libixion libjavaewah-java libjaxen-java libjaxp1.3-java libjcip-annotations-java libjcommon-java libjdepend-java libjdom1-java libjdom2-java libjettison-java libjgroups-java libjna-java libjoda-time-java libjodycode libjpeg-turbo libjs-jquery-hotkeys libjs-jquery-isonscreen libjs-jquery-timeago libjsoncpp libjson-maybexs-perl libjson-perl libjsonp-java libjson-xs-perl libjs-qunit libjsr305-java libjs-requirejs-text libjtype-java libjuniversalchardet-java libjwt libjxl-testdata libkate libkml libkryo-java libksba liblangtag liblatex-tounicode-perl liblayout liblc3 libldac liblingua-en-inflect-perl liblingua-translit-perl liblist-allutils-perl liblist-compare-perl liblist-moreutils-perl liblist-moreutils-xs-perl liblist-someutils-perl liblist-utilsby-perl libloader liblocale-gettext-perl liblocale-us-perl liblockfile liblog-any-adapter-screen-perl liblog-any-perl liblog-dispatch-array-perl liblog-dispatchouli-perl liblog-dispatch-perl liblog-log4perl-perl liblouis liblqr liblrdf libltc liblwp-mediatypes-perl liblwp-protocol-https-perl liblzf libmad libmailtools-perl libmanette libmatch-simple-perl libmath-base85-perl libmatroska libmaxminddb libmbim libmce-perl libmd libmemcached libmicrohttpd libmime-charset-perl libmime-tools-perl libmina-sshd-java libminlog-java libmixin-linewise-perl libmldbm-perl libmnl libmodplug libmodule-build-perl libmodule-build-tiny-perl libmodule-build-xsutil-perl libmodule-implementation-perl libmodule-install-perl libmodule-path-perl libmodule-pluggable-perl libmodule-refresh-perl libmodule-runtime-conflicts-perl libmodule-runtime-perl libmodule-scandeps-perl libmodule-signature-perl libmojolicious-perl libmoo-perl libmoose-autobox-perl libmoose-perl libmoosex-lazyrequire-perl libmoosex-oneargnew-perl libmoosex-role-parameterized-perl libmoosex-setonce-perl libmoosex-types-perl libmoosex-types-perl-perl libmoox-aliases-perl libmouse-perl libmousex-nativetraits-perl libmousex-strictconstructor-perl libmpc libmro-compat-perl libmspub libmtp libmwaw libmysofa libnamespace-autoclean-perl libnamespace-clean-perl libnative-platform-java libndp libnetaddr-ip-perl libnet-domain-tld-perl libnetfilter-conntrack libnet-http-perl libnet-ipv6addr-perl libnet-netmask-perl libnet-smtp-ssl-perl libnet-ssleay-perl libnfnetlink libnfs libnftnl libnice libnl3 libnotify libnsl libnumber-compare-perl libnumbertext liboauth libobject-pad-perl libodfgen libogg liboggz libonig libopencsd libopenmpt liborcus liboro-java libotf libpackage-deprecationmanager-perl libpackage-stash-perl libpackage-stash-xs-perl libpadwalker-perl libpagemaker libpanel libpaper libparams-classify-perl libparams-coerce-perl libparams-util-perl libparams-validate-perl libparams-validationcompiler-perl libparanamer-java libparse-debcontrol-perl libparse-recdescent-perl libparse-yapp-perl libpath-class-perl libpath-iterator-rule-perl libpath-tiny-perl libpcap libpciaccess libpdf-api2-perl libpdfbox2-java libpdfbox-java libpdfrenderer-java libperl4-corelibs-perl libperl-critic-community-perl libperl-critic-perl libperl-critic-policy-plicease-prohibitarrayassignaref-perl libperl-critic-policy-variables-prohibitlooponhash-perl libperl-critic-pulp-perl libperlio-gzip-perl libperlio-utf8-strict-perl libperl-minimumversion-perl libperl-prereqscanner-perl libperl-version-perl libpfm4 libpgm libphonenumber libpipeline libpixie-java libplacebo libplist libpng1.6 libpod-constants-perl libpod-coverage-perl libpod-coverage-trustpod-perl libpod-elemental-perl libpod-elemental-perlmunger-perl libpod-elemental-transformer-list-perl libpod-eventual-perl libpod-minimumversion-perl libpod-parser-perl libpod-pom-perl libpod-pom-view-restructured-perl libpod-spell-perl libpod-weaver-perl libpod-weaver-section-support-perl libppi-perl libppix-documentname-perl libppix-quotelike-perl libppix-regexp-perl libppix-utils-perl libproc-processtable-perl libproxool-java libproxy libpsl libpwquality libqb libqmi libqrtr-glib libqxp librabbitmq libraw libraw1394 librdkafka libreadonly-perl libre-engine-re2-perl libreflectasm-java libref-util-perl libregexp-common-perl libregexp-java libregexp-pattern-defhash-perl libregexp-pattern-license-perl libregexp-pattern-perl libregexp-wildcards-perl librelaxng-datatype-java libreplaygain librepository librest librevenge librist librole-hasmessage-perl librole-identifiable-perl librole-tiny-perl librttopo libsafe-isa-perl libsamplerate libsass libsass-python libsaxon-java libscope-guard-perl libsdl3 libsdl3-image libsdl3-ttf libseccomp libsecret libselinux libsemanage libsepol libsereal-decoder-perl libsereal-encoder-perl libsereal-perl libserializer libset-intspan-perl libset-object-perl libset-scalar-perl libsgmls-perl libshout libsigc++-2.0 libsigsegv libslf4j-java libslirp libsm libsndfile libsocket6-perl libsodium libsoftware-copyright-perl libsoftware-licensemoreutils-perl libsoftware-license-perl libsort-key-perl libsort-versions-perl libsoup3 libsoxr libspatialaudio libspecio-perl libspectre libspring-java libsrtp2 libssh libssh2 libstaroffice libstatgrab libstax2-api-java libstax-java libstb libstrictures-perl libstring-copyright-perl libstring-errf-perl libstring-escape-perl libstring-flogger-perl libstring-format-perl libstring-formatter-perl libstring-license-perl libstring-rewriteprefix-perl libstring-shellquote-perl libstring-trim-more-perl libstring-truncate-perl libsub-exporter-formethods-perl libsub-exporter-globexporter-perl libsub-exporter-perl libsub-exporter-progressive-perl libsub-identify-perl libsub-infix-perl libsub-install-perl libsub-name-perl libsub-quote-perl libsub-uplevel-perl libsuper-perl libsvm libswarmcache-java libswitch-perl libsyntax-keyword-junction-perl libsyntax-keyword-try-perl libtaint-runtime-perl libtask-weaken-perl libtasn1-6 libtatsu libteam libtemplate-perl libterm-encoding-perl libterm-readkey-perl libtest2-tools-command-perl libtest-cleannamespaces-perl libtest-cmd-perl libtest-cpan-meta-perl libtest-deep-perl libtest-differences-perl libtest-exception-perl libtest-failwarnings-perl libtest-fatal-perl libtest-filename-perl libtest-leaktrace-perl libtest-longstring-perl libtest-memory-cycle-perl libtest-minimumversion-perl libtest-mockrandom-perl libtest-needs-perl libtest-number-delta-perl libtest-output-perl libtest-perl-critic-perl libtest-pod-coverage-perl libtest-pod-perl libtest-regexp-pattern-perl libtest-requires-perl libtest-script-run-perl libtest-spelling-perl libtest-strict-perl libtest-synopsis-perl libtest-taint-perl libtest-warnings-perl libtest-warn-perl libtest-without-module-perl libtext-autoformat-perl libtext-bibtex-perl libtext-charwidth-perl libtext-csv-perl libtext-csv-xs-perl libtext-diff-perl libtext-glob-perl libtext-hogan-perl libtext-iconv-perl libtext-levenshtein-damerau-perl libtext-levenshteinxs-perl libtext-markdown-discount-perl libtext-reform-perl libtext-roman-perl libtext-template-perl libtext-trim-perl libtext-unidecode-perl libtextwrap libtext-wrapi18n-perl libtext-xslate-perl libthai libtheora libthrowable-perl libtie-cycle-perl libtie-ixhash-perl libtie-toobject-perl libtimedate-perl libtime-duration-perl libtime-moment-perl libtirpc libtomcrypt libtoml-tiny-perl libtommath libtpms libtraceevent libtracefs libtruth-java libtry-tiny-perl libtypes-serialiser-perl libtype-tiny-perl libudfread libunibreak libunicode-linebreak-perl libunicode-utf8-perl libunistring libunwind liburcu liburi-encode-perl liburing liburi-perl libusb libusb-1.0 libusbmuxd libutempter libuv1 libva libvariable-magic-perl libvdpau libverto libvidstab libvisio libvisual libvncserver libvoikko libvorbis libvpx libwacom libwant-perl libwebm libwebp libwmf libwnck3 libwoodstox-java libwpd libwpe libwpg libwps libwww-curl-perl libwww-curl-simple-perl libwww-mechanize-perl libwww-perl libwww-robotrules-perl libx11 libxalan2-java libxau libxaw libxbean-java libxcb libxcomposite libxcrypt libxcursor libxcvt libxdamage libxdmcp libxerces2-java libxext libxfce4ui libxfce4util libxfixes libxfont libxi libxinerama libxkbcommon libxkbfile libxml2 libxml++2.6 libxmlb libxml-commons-resolver1.1-java libxml-java libxml-libxml-perl libxml-libxml-simple-perl libxml-libxslt-perl libxml-namespacesupport-perl libxml-parser-perl libxml-sax-base-perl libxml-sax-expat-perl libxml-sax-perl libxml-security-java libxml-simple-perl libxml-writer-perl libxmu libxnvctrl libxpm libxpp2-java libxpp3-java libxpresent libxrandr libxrender libxres libxshmfence libxslt libxs-parse-keyword-perl libxs-parse-sublike-perl libxss libxstream-java libxstring-perl libxt libxtst libxv libxxf86dga libxxf86vm libyaml libyaml-libyaml-perl libyaml-perl libyaml-pp-perl libyaml-tiny-perl libyuv libzip libzmf libzstd licensecheck lightcouch lilv linkify-it-py links2 lintian lintian-ssg linux-atm linux-base linuxdoc-tools lirc lksctp-tools llvm-defaults lmdb lmodern lm-sensors localehelper locket log4shib logback logilab-common lombok lombok-patcher lsb-release-minimal lsof lsprotocol lua5.1 lua5.2 lua5.3 lua5.4 lua-bitop lua-cjson luajit lucene8 lumino lutok lv2 lvm2 lwt lwt-log lxml lyx lz4 lzip lzlib lzo2 lzop m17n-db m17n-lib m4 mako man2html man-db mariadb marisa markdown-callouts markdown-it-py markupsafe mate-common mathjax matplotlib-inline maven maven-ant-helper maven-antrun-plugin maven-archiver maven-artifact-transfer maven-assembly-plugin maven-bundle-plugin maven-clean-plugin maven-common-artifact-filters maven-compiler-plugin maven-debian-helper maven-dependency-analyzer maven-dependency-plugin maven-dependency-tree maven-deploy-plugin maven-enforcer maven-file-management maven-filtering maven-install-plugin maven-invoker maven-invoker-plugin maven-jar-plugin maven-javadoc-plugin maven-jaxb2-plugin maven-mapping maven-parent maven-plugin-testing maven-plugin-tools maven-processor-plugin maven-replacer-plugin maven-repo-helper maven-reporting-api maven-reporting-exec maven-reporting-impl maven-resolver maven-resources-plugin maven-scm maven-script-interpreter maven-shade-plugin maven-shared-incremental maven-shared-io maven-shared-utils maven-site-plugin maven-source-plugin maven-war-plugin mawk mbedtls md4c mdds mdit-py-plugins mdocml mdurl media-types memcached menhir mercurial mergedeep meson-python metis mgcv mhash mina2 mini-soong miscfiles mistune mjpegtools mkdocs-autorefs mkdocs-gen-files mkdocs-get-deps mkdocs-literate-nav mkdocs-material mkdocs-material-extensions mkdocs-nature mkdocs-section-index mkdocstrings mkdocstrings-python-handlers mm-common mobile-broadband-provider-info mockito modello modello-maven-plugin modemmanager mojo-executor mongo-java-driver more-itertools moreutils motif mpack mpclib3 mpfi mpfr4 mpg123 mpi-defaults mpmath mrmpi msgpack-c msgraph ms-gsl msv mtdev mumps mustache.js mutatormath mysql-defaults myst-nb myst-parser mythes nas nasm natsort nbclient + nbformat ncompress ncurses ndctl neatvnc nekohtml neon27 netbase netcat-openbsd netcdf netpbm-free net-snmp nettle net-tools netty netty-tcnative network-manager newt nftables nghttp2 nghttp3 ngtcp2 ninja-build nlme nlohmann-json3 nltk node-abab node-abbrev node-abstract-leveldown node-accepts node-after node-ajv node-ajv-keywords node-ampproject-remapping node-ansi-align node-ansi-colors node-ansi-escapes node-ansi-font node-ansi-regex node-ansi-styles node-anymatch node-any-promise node-aproba node-archy node-are-we-there-yet node-arg node-argparse node-array-differ node-array-find-index node-array-flatten node-array-from node-array-union node-array-uniq node-arr-diff node-arr-flatten node-arrify node-arr-union node-asap node-asn1.js node-assert node-assertion-error node-assume node-ast-types node-async node-async-each node-asynckit node-auto-bind node-autoprefixer node-ava node-axios node-babel7 node-babel-loader node-babel-plugin-add-module-exports node-babel-plugin-lodash node-babel-polyfills node-babylon node-balanced-match node-base node-base16 node-base64-js node-basic-auth node-big.js node-binary-extensions node-bindings node-bl node-bluebird node-blueimp-md5 node-bn.js node-boolbase node-bootstrap-tour node-boxen node-brace-expansion node-braces node-brfs node-brorand node-browserify node-browserify-aes node-browserify-cipher node-browserify-des node-browserify-lite node-browserify-rsa node-browserify-sign node-browserify-zlib node-browser-pack node-browser-resolve node-browserslist node-browser-stdout node-browser-unpack node-buble node-buf-compare node-buffer node-buffer-crc32 node-buffer-equal node-bufferjs node-buffer-xor node-builtin-modules node-builtins node-builtin-status-codes node-busboy node-bytes node-cacache node-cache-base node-cached-path-relative node-callback-stream node-caller node-camelcase node-camelcase-keys node-caniuse-db node-caniuse-lite node-cbor node-chai node-chai-as-promised node-chainsaw node-chalk node-change-case node-chart.js node-check-error node-cheerio node-chokidar node-chownr node-chrome-trace-event node-ci-info node-cipher-base node-cjs-module-lexer node-cjson node-clean-css node-clean-yaml-object node-cli-boxes node-cli-cursor node-clipanion node-clipboard node-cli-spinners node-cli-table node-cli-truncate node-cliui node-cli-width node-clone node-cloneable-readable node-clone-buffer node-clone-deep node-clone-stats node-co node-codemirror node-codemirror-state node-coffeeify node-collection-visit node-color node-color-convert node-color-name node-color-string node-columnify node-combined-stream node-combine-source-map # node-commander node-commondir node-compare-versions node-component-emitter node-concat-map node-concat-stream node-concat-with-sourcemaps node-concordance node-config-chain node-console-browserify node-console-control-strings node-console-group node-consolidate node-constants-browserify node-content-disposition node-content-type node-convert-source-map + node-cookie node-cookiejar node-cookie-parser node-cookies node-cookie-signature node-copy-concurrently node-core-js node-corepack node-core-util-is node-cosmiconfig node-coveralls node-create-ecdh node-create-hash node-create-hmac node-create-require node-crypto-browserify node-crypto-random-string node-css node-css-loader node-cssom node-css-select node-css-selector-tokenizer node-cssstyle node-csstype node-css-what node-csv-spectrum node-currently-unhandled node-cyclist node-d node-d3-array node-d3-axis node-d3-brush node-d3-chord node-d3-collection node-d3-color node-d3-contour node-d3-delaunay node-d3-dispatch node-d3-drag node-d3-dsv node-d3-ease node-d3-fetch node-d3-force node-d3-geo node-d3-geo-projection node-d3-hierarchy node-d3-interpolate node-d3-path node-d3-polygon node-d3-quadtree node-d3-queue node-d3-random node-d3-scale node-d3-scale-chromatic node-d3-selection node-d3-shape node-d3-time node-d3-time-format node-d3-timer node-d3-transition node-d3-voronoi node-d3-zoom node-dateformat node-date-time node-debbundle-es-to-primitive node-debbundle-insert-module-globals node-debug node-debug-fabulous node-decamelize node-decompress-response node-deep-eql node-deep-equal node-deep-extend node-deep-for-each node-deep-is node-deepmerge node-defaults node-defined node-define-lazy-prop node-define-properties node-define-property node-del node-delayed-stream node-delegates node-depd node-deps-sort node-des.js node-detect-file node-detect-indent node-detective node-detect-newline node-diff node-doctrine node-domain-browser node-domelementtype node-domhandler node-domino node-dom-serializer node-domutils node-dot node-dot-prop node-duplexer node-duplexer3 node-duplexify node-ebnf-parser node-ejs node-electron-to-chromium node-elliptic node-emittery node-emojis-list node-emotion node-encodeurl node-encoding node-end-of-stream node-enhanced-resolve node-enquirer node-entities node-envinfo node-err-code node-errno node-error-ex node-es5-ext node-es5-shim node-es6-error node-es6-iterator node-es6-map node-es6-promise node-es6-set node-es6-shim node-es6-symbol node-es6-weak-map node-es-abstract node-escape-html node-escape-string-regexp node-escodegen node-escope node-eslint-plugin-es node-eslint-plugin-eslint-plugin node-eslint-plugin-node node-eslint-scope node-eslint-utils node-eslint-visitor-keys node-es-module-lexer node-espree node-esprima node-esprima-fb node-esquery node-esrecurse node-estraverse node-estree-walker node-esutils # node-etag node-event-emitter node-eventemitter2 node-eventemitter3 node-events node-everything.js node-evp-bytestokey node-execa node-exit node-expand-tilde node-expect.js node-express node-extend node-extend-shallow node-external-editor node-extract-zip node-falafel node-fancy-log node-fast-deep-equal node-fast-json-patch node-fast-json-stable-stringify node-fast-levenshtein node-fast-safe-stringify node-fbjs node-fd-slicer node-fetch node-file-entry-cache node-file-loader node-filesize node-file-sync-cmp node-fill-range node-finalhandler node-find-cache-dir node-find-up node-findup-sync node-fined node-flatted node-flow-remove-types node-flush-write-stream node-fn-name node-follow-redirects node-foreground-child node-for-in node-form-data node-formidable node-for-own node-fortawesome-fontawesome-free node-free-style node-fresh node-from2 node-fs-exists-sync node-fs-extra node-fs-readdir-recursive node-fs.realpath node-fs-write-stream-atomic node-functional-red-black-tree node-gauge node-geojson node-get-caller-file node-get-func-name node-getobject node-get-stdin node-get-stream node-gettext-parser node-get-value node-glob node-global-modules node-global-prefix node-globals node-glob-base node-globby node-glob-parent node-glob-stream node-globule node-glogg node-got node-graceful-fs node-graphlibrary node-growl node-grunt-babel node-grunt-cli node-grunt-contrib-clean node-grunt-contrib-concat node-grunt-contrib-copy node-grunt-contrib-internal node-grunt-contrib-nodeunit node-grunt-contrib-requirejs node-grunt-contrib-uglify node-grunt-known-options node-grunt-legacy-log node-grunt-legacy-log-utils node-grunt-legacy-util node-grunt-webpack node-gulp node-gulp-babel node-gulp-concat node-gulp-flatten node-gulplog node-gulp-newer node-gulp-plumber node-gulp-rename node-gulp-sourcemaps node-gyp node-gzip-size node-handlebars node-has-ansi node-has-flag node-hash-base node-hashish node-hash.js node-hash-test-vectors node-has-unicode node-has-value node-has-values node-he node-hmac-drbg node-hooker node-hook-std node-hosted-git-info node-html5shiv node-htmlescape node-html-loader node-htmlparser2 node-html-webpack-plugin node-http-errors node-http-proxy node-https-browserify node-iconv node-iconv-lite node-icss-utils node-ieee754 node-iferr node-ignore node-ignore-by-default node-immediate node-immutable node-imurmurhash node-indent-string node-inflight node-inherits node-ini node-inline-source-map node-inquirer node-interpret node-invariant node-inwasm node-ip node-ipaddr.js node-ip-regex node-irregular-plurals node-isarray node-is-arrayish node-is-binary-path node-is-buffer node-is-builtin-module node-is-descriptor node-is-directory node-is-docker node-is-dotfile node-isexe node-is-extendable node-is-extglob node-is-generator-fn node-is-glob node-is-module node-is-negated-glob node-is-node node-is-number node-is-obj node-is-object node-isobject node-isomorphic-fetch node-isomorphic.js node-is-path-cwd node-is-path-inside node-is-plain-obj node-is-plain-object node-is-primitive node-is-promise node-is-reference node-is-stream node-isstream node-istanbul node-is-typedarray node-is-unc-path node-is-valid-glob node-is-windows node-is-wsl node-jake node-jasmine node-jed node-jest node-jison node-jison-lex node-jju node-jquery node-jquery-mousewheel node-jsan node-js-beautify node-jschardet node-jsdom node-jsesc node-json2module node-json5 # node-json-buffer node-jsonfile node-jsonify node-jsonparse node-json-parse-better-errors node-json-parse-helpfulerror node-json-schema node-json-schema-merge-allof node-json-schema-traverse node-jsonselect node-json-stable-stringify node-jsonstream node-json-stringify-safe node-js-tokens node-js-yaml node-kew node-keygrip node-kind-of node-klaw node-labeled-stream-splicer node-lazystream node-lcov-parse node-less-plugin-clean-css node-leven node-levn node-lex-parser node-lezer node-lib0 node-libs-browser node-license-webpack-plugin node-lie node-liftoff node-livescript node-loader-runner node-loader-utils node-load-grunt-tasks node-load-json-file node-locate-character node-locate-path node-lodash node-log4js node-log-driver node-long node-loose-envify node-lowercase-keys node-lru-cache node-lunr node-magic-string node-make-dir node-make-error node-map-cache node-map-obj node-map-visit node-markdown-to-jsx node-marked node-marked-man node-matcher node-mathjax-full node-md5-hex node-md5.js node-md5-o-matic node-mdn-browser-compat-data node-mdn-data node-media-typer node-mem node-memfs node-memory-fs node-meow node-merge-descriptors node-merge-stream node-methods node-micromatch node-mime node-mime-types node-mimic-fn node-mimic-response node-min-document node-mini-css-extract-plugin node-minimalistic-crypto-utils node-minimatch node-minimist node-minipass node-mississippi node-mixin-deep node-mj-context-menu node-mkdirp node-mocha node-module-deps node-moment node-monaco-languageclient node-morgan node-move-concurrently node-ms node-multimatch node-mutate-fs node-mute-stream node-mysticatea-eslint-plugin node-mz node-n3 node-nan node-ncp node-negotiator node-neo-async node-netmask node-nock node-node-pty node-node-sass node-nodeunit node-nomnom node-nopt node-normalize.css node-normalize-package-data node-normalize-path node-normalize-range node-nouislider node-npm-bundled node-npmlog node-npm-package-arg node-npm-run-path node-nth-check node-object-assign node-object-inspect node-object-path node-object-visit node-once node-on-finished node-on-headers node-open node-opener node-optimist node-optionator node-ordered-read-streams node-os-browserify node-osenv node-os-tmpdir node-output-file-sync node-package-json node-package-preamble node-pako node-parallel-transform node-parents node-parse5 node-parse-asn1 node-parse-base64vlq-mappings node-parse-filepath node-parse-glob node-parse-json node-parse-ms node-parse-srcset node-parseurl node-pascalcase node-path-browserify node-path-dirname node-path-exists node-path-is-absolute node-path-is-inside node-path-root node-path-root-regex node-path-to-regexp node-path-type node-pathval node-pbkdf2 node-p-cancelable node-pend node-performance-now node-p-finally node-picocolors node-pify node-pinkie node-pinkie-promise node-pkg-dir node-pkg-up node-playwright node-p-limit node-p-locate node-plugin-error node-plur node-p-map node-po2json node-popper2 node-postcss node-postcss-cli node-postcss-load-config node-postcss-modules-extract-imports node-postcss-modules-values node-postcss-reporter node-postcss-value-parser node-prelude-ls node-pretty-bytes node-pretty-hrtime node-pretty-ms node-prismjs node-private node-process node-process-nextick-args node-progress node-promise node-promise-inflight node-promise-retry node-prompts node-promzard node-propagate node-propget node-prop-types node-proto-list node-proxy-addr node-proxy-agents node-proxy-from-env node-proxyquire node-prr node-pruddy-error node-pseudorandombytes node-p-timeout node-public-encrypt node-pump node-pumpify node-punycode node-pure-rand node-q node-qs node-querystring node-querystring-es3 node-querystringify node-quickjs-emscripten node-quick-lru node-quote-stream node-ramda node-random-bytes nod | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/2009/08/static-constraints.html | don't count on finding me: Static Constraints skip to main | skip to sidebar don't count on finding me Tuesday, August 4, 2009 Static Constraints In the last months Tim has been adding a new function sameLabel to Ωmega and this finally allowed me to encode the concept of free variables. In just a couple of days I managed to implement environment construction with statically checked proof that no identifier is shadowed. Here is a little example. Building on this advance I fulfilled a long lasting desire and managed to prototype LLVM basic blocks in Ωmega with thrists. The approach is implemented in 2 steps: build up a labelled sequence of preinstructions, and then construct sufficient evidence about well-formedness, that the strict type constraints in the thrist can be proven. Curiously, the defs propagate to the right and the uses to the right in this thrist. The good thing is, that after all this struggle I am pretty confident that many more properties and constraints can be encoded, such as the LLVM type system (on defs, uses and constants), that Phi nodes must not go into entry blocks, that Phi nodes must preceed other instructions in the basic block, every use must happen in the scope of a corresponding def, etc. The next days will surely see more progress, I have crawled out of the swamp and have firm ground under my feet... Posted by heisenbug at 3:52 PM Labels: llvm , omega , thrist No comments: Post a Comment Newer Post Older Post Home Subscribe to: Post Comments (Atom) Blog Archive ►  2022 (1) ►  February (1) ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ▼  2009 (12) ►  November (2) ►  October (1) ▼  August (1) Static Constraints ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://ko-kr.facebook.com/login/?next=https%3A%2F%2Fl.facebook.com%2Fl.php%3Fu%3Dhttps%253A%252F%252Fwww.instagram.com%252F%26amp%253Bh%3DAT0OsAp-lFSGEWjYmPvYNTUQcoqXqsCsZp-dQE42aJkTB2RSDj8dQbTuEmmuQXmHnjeEd8PV-yxfDqCIoqOsn5jvYyEwDfT8fLAKM5EPmWJQH9ss4etRxIkLNNQD05ysgD9xtY2gWaKgLq14 | Facebook Facebook 이메일 또는 휴대폰 비밀번호 계정을 잊으셨나요? 새 계정 만들기 일시적으로 차단됨 일시적으로 차단됨 회원님의 이 기능 사용 속도가 너무 빠른 것 같습니다. 이 기능 사용에서 일시적으로 차단되었습니다. Back 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 中文(简体) 日本語 Português (Brasil) Français (France) Deutsch 가입하기 로그인 Messenger Facebook Lite 동영상 Meta Pay Meta 스토어 Meta Quest Ray-Ban Meta Meta AI Meta AI 콘텐츠 더 보기 Instagram Threads 투표 정보 센터 개인정보처리방침 개인정보 보호 센터 정보 광고 만들기 페이지 만들기 개발자 채용 정보 쿠키 AdChoices 이용 약관 고객 센터 연락처 업로드 및 비사용자 설정 활동 로그 Meta © 2026 | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/search/label/parametric | don't count on finding me: parametric skip to main | skip to sidebar don't count on finding me Showing posts with label parametric . Show all posts Showing posts with label parametric . Show all posts Thursday, July 31, 2014 Rank-2 PHOAS Lately I've been experimenting with finally-tagless (typed) representations and made an attempt to model the (implicitly typed) lambda calculus. However, I wanted to use the parametric higher-order abstract syntax (PHOAS) technique to obtain variable bindings that are automatically well-scoped. I arrived at this formulation: class LC rep where var :: p → rep lam :: (forall p . p → rep) → rep (I am ignoring applications as they are not important for making my point.) As Andres Löh has pointed out to me this is not the final-tagless formulation of the regular PHOAS form, as that would add the p type variable as the second class parameter and the rank-2 forall would appear from "outside". But I liked my simple formulation and the obviously and explicitly parametric lambda body. So I started implementing a rudimentary visualisation instance given a name supply: instance LC ([String] → String) where var = ??? -- const "VAR" lam f = \supply → ... It turns out that implementing var is only possible by giving a constant result, and for lam I am in trouble, because I cannot call f as it expects a polymorphic argument. Both problems are due to the fact that p is too polymorphic. Can we have it a bit less polymorphic in order to make some progress? Thinking about it I came up with the idea of giving each instance a way to constrain the p variable as it fits. So I changed class LC such: class LC rep where type Restricted rep p :: Constraint var :: Restricted rep p ⇒ p → rep lam :: (forall p . Restricted rep p ⇒ p → rep) → rep Now my instance can pick the restriction as it fits: instance LC ([String] → String) where type Restricted ([String] → String) p = ([String] → String) ~ p var = id lam f = \supply → ... As you see I chose the restriction to be type equality which essentially cancels parametricity in this instance and gives me simple HOAS. Filling in p becomes easy now. lam f = \(n:ns) → "\\" ++ n ++ "." ++ (f $ const n) ns Let's try it out! But in order to do that we need an instance of Show for name supplies. This could be one: instance Show ([String] → String) where show f = f $ map (('v':) . show) [0..] Now we can interpret a lambda term as a name supply. *Main› lam (\x → lam $ \y → var x) :: [String] → String \v0.\v1.v0 It works™ :-) But I can go further. After implementing several other instances I observed that I always wanted to destroy parametricity completely and implement var as the identity. So why not have these as defaults and reduce the boilerplate by a nice margin? Here is the final class definition that I arrived at: class LC rep where type Restricted rep p :: Constraint type Restricted rep p = rep ~ p var :: Restricted rep p ⇒ p → rep default var :: rep ~ p ⇒ p → rep var = id lam :: (forall p . Restricted rep p ⇒ p → rep) → rep I like it so far. PS: Here are the prerequisites if you want to compile the above yourself: {-# LANGUAGE UnicodeSyntax, ConstraintKinds, TypeFamilies, RankNTypes, FlexibleInstances, DefaultSignatures #-} import GHC.Exts Posted by heisenbug at 2:28 PM No comments: Labels: final-tagless , haskell , HOAS , lambda calculus , parametric , PHOAS Older Posts Home Subscribe to: Comments (Atom) Blog Archive ▼  2022 (1) ▼  February (1) Pattern musings ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
http://code.google.com/p/omega/issues/detail?id=64 | Google Code Archive - Long-term storage for Google Code Project Hosting. Code Archive Skip to content The Google Code Archive requires JavaScript to be enabled in your browser. Google About Google Privacy Terms | 2026-01-13T09:30:28 |
https://blog.nyveldt.com/post/blogenginenet-creating-themes-webcast | BlogEngine.NET: Creating Themes Webcast - Al Nyveldt Al Nyveldt Home About Now BlogEngine.NET: Creating Themes Webcast July 19, 2007 BlogEngine.NET , Development , Screencasts blogengine.net , screencast , theme , video I thought it would be cool to put together a webcast to show the world how easy it is to make themes for BlogEngine.NET. In this 25 minute webcast, I'll walk you through everything you need to do to create a new theme for your blog. Following my standard theme making process, I started with a template from oswd.org . This time around, I'm converting a template called Curiously Green by NodeThirtyThree Design . It is a nice theme to demonstrate with as it not super complex and yet has enough interesting parts to show off some of the neat things BlogEngine themes can do. You can watch the webcast from this link . It is a full screen 1024x768 webcast using flash. Hopefully, it will be a useful aid in getting started in making themes. In addition, preparing this webcast made me get my act together and finally finish the theme documentation out on the BlogEngine.NET wiki. (Finish is too strong a word, but I've completed a pass through it and it is fairly complete and very useful at this stage.) Lastly, in the webcast, I promised to make the theme available for download, so if you wanted to get a good look at the theme we did together, you can. You can also feel free to use this theme for your site, if you'd like. BlogEngine.NET Theme: Curiously Green Update: Some people are having trouble with the webcast turning red about half way through. I made a Windows Media version and it is available for download here . Share on Bluesky or click the Permalink and paste anywhere. Al Nyveldt Hi. I'm a software developer from central Pennsylvania, USA. Pinned Posts Keep GitHub Copilot from going off the rails with instructions files AI Journey: From Annoying to Essential Categories AI Journey (3) Audio (7) BlogEngine.NET (60) Books (2) Business (2) Development (41) Hardware (5) iDevBlogADay (6) iOS (8) Personal (14) Screencasts (15) Software (21) Web (3) Tags ai , app store , applescript , blogengine.net , blogml , book review , code camp , codemash , codeplex , coding , community , compiling , conference , control , copilot , crystal reports , das blog , dev tools , download , extensions , family , faq , feed reading , fitness , flash drive , fun , games , google reader , idevblogaday , ios , iPad , iphone , ipod , mcp , membership , metaweblog api , microsoft , migration , mix , monotouch , monsterid , mvc , mysql , nike+ , open source , organization , patch , personal , podcasts , powershell , profittrain , provider model , razorpdf , razorpub , release , reuse , review , running , runnow , screencast , security , snippets , sourcesafe , spark , sparrow , sql server , sqlite , starter kit , subtext , subversion , sudokukids , testing , theme , training , upgrade , utilities , video , vistadb , visual studio , widget , windows live writer , xamarin Subscribe Get notified about new posts and updates. Thank you! Please check your email and click the confirmation link to complete your subscription. Subscribe Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way. © 2026 Al Nyveldt. All rights reserved. Published with QuillKit / Sign in | 2026-01-13T09:30:28 |
https://qiita.com/login?callback_action=login_or_signup&redirect_to=%2Fsunfish-shogi%2Fitems%2F15c5108b7bfef9bd48fc%2Flikers&realm=qiita | Login - Qiita Log in to Qiita Log in with GitHub Log in with Google Log in with X(Twitter) There may be restrictions on X(Twitter) login. Please use other login methods together. If you do not have a Qiita account, sign up in 30 seconds. Forgot Password? How developers code is here. © 2011-2026 Qiita Inc. Guide & Help About Terms Privacy Guideline Design Guideline Feedback Help Advertisement Contents Release Note Official Event Official Column Advent Calendar Qiita Award API SNS @Qiita @qiita_milestone @qiitapoi Facebook YouTube Podcast Our service Qiita Team Qiita Zine Official Shop Company About Us Careers Qiita Blog | 2026-01-13T09:30:28 |
https://help.qiita.com/ | Qiita ヘルプ Qiita Qiitaとは Qiitaとは Qiitaへの思い Qiitaのサービス名の由来 Qiita表彰プログラムとは ガイドライン コミュニティガイドライン 良い記事を書くためのガイドライン 良い質問を書くためのガイドライン 機能 会員登録するとできること テーマカラー設定(ダークテーマへの切替) ユーザーページ(マイページ)の名称と機能 フィード機能(ホーム・タイムライン・トレンド) フォロー機能 いいね機能 ストック機能 検索機能 タグ機能 購読機能 メンション機能 ミュート機能 ブロック機能 通報機能 Webプッシュ通知 Contributionとは バッジ機能 設定ページでできること 公開用プロフィール・ユーザー名の変更 アイコン画像の設定 言語の設定 外部サービスのアカウント連携 支援サービス(GitHub Sponsors連携) メールアドレスの変更・通知設定 二段階認証の再設定 ベータ版切り替え Googleアナリティクス設定 退会方法 記事の投稿 記事を投稿する 限定共有投稿について 記事の編集・編集履歴の確認方法 記事を削除する 編集リクエストを送る・受け取る 画像のアップロード・削除方法 Qiita Markdown Qiitaの投稿をMarkdown表示にする方法 Qiitaのシンタックスハイライトについて スライドモードについて 絵文字の利用について 記事投稿キャンペーンについて 認証等 OAuth認証について メール認証が出来ない場合 パスワードを変更する パスワードを再設定する 連携アカウントを削除した際のログイン方法 質問 質問を投稿する 質問へ回答する 質問の編集・削除について 質問フィード・人気の質問 質問をクローズする アドベントカレンダー Qiita Advent Calendar について カレンダーの探し方 カレンダーに参加する カレンダーを作成する Organizationカレンダーの作成 カレンダーの記事を閲覧する Advent Calendar ランキング Organization Qiita Organizationとは Organizationの作成方法 Organizationの参加・脱退方法 記事とOrganizationの紐付け方法 Organizationの設定について OrganizationのGoogleアナリティクス設定 Organizationの削除方法 Qiita Teamとの違いについて 法律・規約等 著作物を引用する際の注意点 翻訳ツールを利用する際の注意 肖像権・パブリシティ権について 著書や人のブログにまつわる記事を書くと著作権違反になる? 自分の記事が無断転載された場合 その他 よくあるお問い合わせ 対応ブラウザ PWA(プログレッシブウェブアプリ)について Qiitaニュースについて Qiita API・スクレイピングについて Qiitaのデータを元にして作成したサービス・アプリに広告などを設置しても良い? Qiita Team その他 Qiita Teamのヘルプ その他 ガイドライン メディアキット © 2025 Qiita Inc. 利用規約 プライバシー ヘルプ お問い合わせ Qiita Qiita Team Qiita Blog | 2026-01-13T09:30:28 |
https://yarnpkg.com/features/security#__docusaurus_skipToContent_fallback | Security | Yarn Skip to main content Yarn Get Started Features CLI Configuration Advanced Blog API master (4.12.0-dev) master (4.12.0-dev) 3.8.7 1.22.22 Discord GitHub Search Cache strategies Catalogs Constraints Extensibility Install modes Package patching Performances Plug'n'Play Release Workflow Scripting Security Workspaces Security On this page Security Audits Yarn doesn't run audits by default when running yarn install , as this should rather be performed in a cron task. You can however perform audits whenever you want by running yarn npm audit . info Our implementation has a couple of differences with the npm one. Like most other Yarn commands, yarn npm audit , by default, only applies on the direct dependencies from the current workspace. To get a report on the whole project, use the -A,--all and/or -R,--recursive flags. tip You can exclude your devDependencies (and their transitive dependencies) from the report by running the command with --environment production . Hardened mode The hardened mode can be set (or disabled) using either the enableHardenedMode setting or by defining YARN_ENABLE_HARDENED_MODE=1|0 in your environment variables, but in most cases you won't even have to think about it - the hardened mode is enabled by default when Yarn detects it runs in a pull request from a public GitHub repository. Under this mode, Yarn will automatically enable the --check-resolutions and --refresh-lockfile flags when running yarn install , which should protect you against most attacks caused by lockfile poisoning , at the cost of a little bit of install speed. danger The hardened mode makes installs significantly slower as Yarn has to query the registry to make sure the information contained in the lockfile are accurate. If your CI pipeline runs multiple jobs, we recommend disabling the hardened mode in all but one of them so as to limit the performance impact. Edit this page Previous Scripting Next Workspaces Audits Hardened mode Copyright © 2026 Yarn Contributors, Inc. Built with Docusaurus. | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/search/label/final-tagless | don't count on finding me: final-tagless skip to main | skip to sidebar don't count on finding me Showing posts with label final-tagless . Show all posts Showing posts with label final-tagless . Show all posts Thursday, July 31, 2014 Rank-2 PHOAS Lately I've been experimenting with finally-tagless (typed) representations and made an attempt to model the (implicitly typed) lambda calculus. However, I wanted to use the parametric higher-order abstract syntax (PHOAS) technique to obtain variable bindings that are automatically well-scoped. I arrived at this formulation: class LC rep where var :: p → rep lam :: (forall p . p → rep) → rep (I am ignoring applications as they are not important for making my point.) As Andres Löh has pointed out to me this is not the final-tagless formulation of the regular PHOAS form, as that would add the p type variable as the second class parameter and the rank-2 forall would appear from "outside". But I liked my simple formulation and the obviously and explicitly parametric lambda body. So I started implementing a rudimentary visualisation instance given a name supply: instance LC ([String] → String) where var = ??? -- const "VAR" lam f = \supply → ... It turns out that implementing var is only possible by giving a constant result, and for lam I am in trouble, because I cannot call f as it expects a polymorphic argument. Both problems are due to the fact that p is too polymorphic. Can we have it a bit less polymorphic in order to make some progress? Thinking about it I came up with the idea of giving each instance a way to constrain the p variable as it fits. So I changed class LC such: class LC rep where type Restricted rep p :: Constraint var :: Restricted rep p ⇒ p → rep lam :: (forall p . Restricted rep p ⇒ p → rep) → rep Now my instance can pick the restriction as it fits: instance LC ([String] → String) where type Restricted ([String] → String) p = ([String] → String) ~ p var = id lam f = \supply → ... As you see I chose the restriction to be type equality which essentially cancels parametricity in this instance and gives me simple HOAS. Filling in p becomes easy now. lam f = \(n:ns) → "\\" ++ n ++ "." ++ (f $ const n) ns Let's try it out! But in order to do that we need an instance of Show for name supplies. This could be one: instance Show ([String] → String) where show f = f $ map (('v':) . show) [0..] Now we can interpret a lambda term as a name supply. *Main› lam (\x → lam $ \y → var x) :: [String] → String \v0.\v1.v0 It works™ :-) But I can go further. After implementing several other instances I observed that I always wanted to destroy parametricity completely and implement var as the identity. So why not have these as defaults and reduce the boilerplate by a nice margin? Here is the final class definition that I arrived at: class LC rep where type Restricted rep p :: Constraint type Restricted rep p = rep ~ p var :: Restricted rep p ⇒ p → rep default var :: rep ~ p ⇒ p → rep var = id lam :: (forall p . Restricted rep p ⇒ p → rep) → rep I like it so far. PS: Here are the prerequisites if you want to compile the above yourself: {-# LANGUAGE UnicodeSyntax, ConstraintKinds, TypeFamilies, RankNTypes, FlexibleInstances, DefaultSignatures #-} import GHC.Exts Posted by heisenbug at 2:28 PM No comments: Labels: final-tagless , haskell , HOAS , lambda calculus , parametric , PHOAS Older Posts Home Subscribe to: Comments (Atom) Blog Archive ▼  2022 (1) ▼  February (1) Pattern musings ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://qiita.com/signup | Sign Up - Qiita Join Qiita Sign up for free and start using Qiita. Sign up with GitHub Sign up with Google Sign up with X(Twitter) We never post to X (Twitter) without your permission. There may be restrictions on X(Twitter) login. Please use other login methods together. Sign up in 30 seconds. If you already have a Qiita account log in. Agree with the terms of service Agree with the privacy policy How developers code is here. © 2011-2026 Qiita Inc. Guide & Help About Terms Privacy Guideline Design Guideline Feedback Help Advertisement Contents Release Note Official Event Official Column Advent Calendar Qiita Award API SNS @Qiita @qiita_milestone @qiitapoi Facebook YouTube Podcast Our service Qiita Team Qiita Zine Official Shop Company About Us Careers Qiita Blog | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/search/label/finally-tagless | don't count on finding me: finally-tagless skip to main | skip to sidebar don't count on finding me Showing posts with label finally-tagless . Show all posts Showing posts with label finally-tagless . Show all posts Thursday, November 6, 2014 Unembedded associations Everytime I start understanding the gist of a paper that appeared unfathomable to me a few months before, a strange thing happens to me. My brain often wanders off, and creates interesting new bridges, on which my thoughts begin to run and reach new previously unchartered land. This same thing happened to me when reading Atkey et al.'s "Unembedding Domain-Specific Languages" . Here I encountered my old friend, the HOAS lambda vocabulary class LC expr where lam :: (expr → expr) → expr app :: expr → expr → expr Freely associating I came up with an idea how to simulate a limited form of duck typing for conditionals: class Condition expr toBool :: expr → Bool cond :: expr → a → a → a cond c th el = if toBool c then th else el This would allow to retrofit many condition-like data types with this vocabulary. Nothing , 0 , (Left _) all could serve as false . Maybe I could even follow Conor McBride's advice and make the then and else arms of the conditional differently typed. Though I would need associated types for that. Duck typing may turn out like a good idea in a statically typed language, when implemented this way. Another use case would be function application by the built-in juxtaposition syntax. It already means different things in different syntactic contexts, like function application or type (family) application. Idiom brackets come to my mind. Edward Kmett's Apply class looks like a good candidate for a related vocabulary. The typing rule would be implemented by an associated (injective) type family. Hopefully someday we'll see -XRebindableSyntax for value-level application, that is type-directed. Posted by heisenbug at 3:57 PM No comments: Labels: finally-tagless , haskell , HOAS Older Posts Home Subscribe to: Comments (Atom) Blog Archive ▼  2022 (1) ▼  February (1) Pattern musings ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://nodejs.org/api/corepack.html | GitHub - nodejs/corepack: Package manager version manager for Node.js projects Skip to content Navigation Menu Toggle navigation Sign in Appearance settings Platform AI CODE CREATION GitHub Copilot Write better code with AI GitHub Spark Build and deploy intelligent apps GitHub Models Manage and compare prompts MCP Registry New Integrate external tools DEVELOPER WORKFLOWS Actions Automate any workflow Codespaces Instant dev environments Issues Plan and track work Code Review Manage code changes APPLICATION SECURITY GitHub Advanced Security Find and fix vulnerabilities Code security Secure your code as you build Secret protection Stop leaks before they start EXPLORE Why GitHub Documentation Blog Changelog Marketplace View all features Solutions BY COMPANY SIZE Enterprises Small and medium teams Startups Nonprofits BY USE CASE App Modernization DevSecOps DevOps CI/CD View all use cases BY INDUSTRY Healthcare Financial services Manufacturing Government View all industries View all solutions Resources EXPLORE BY TOPIC AI Software Development DevOps Security View all topics EXPLORE BY TYPE Customer stories Events & webinars Ebooks & reports Business insights GitHub Skills SUPPORT & SERVICES Documentation Customer support Community forum Trust center Partners Open Source COMMUNITY GitHub Sponsors Fund open source developers PROGRAMS Security Lab Maintainer Community Accelerator Archive Program REPOSITORIES Topics Trending Collections Enterprise ENTERPRISE SOLUTIONS Enterprise platform AI-powered developer platform AVAILABLE ADD-ONS GitHub Advanced Security Enterprise-grade security features Copilot for Business Enterprise-grade AI features Premium Support Enterprise-grade 24/7 support Pricing Search or jump to... Search code, repositories, users, issues, pull requests... --> Search Clear Search syntax tips Provide feedback --> We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly --> Name Query To see all available qualifiers, see our documentation . Cancel Create saved search Sign in Sign up Appearance settings Resetting focus You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert {{ message }} nodejs / corepack Public Uh oh! There was an error while loading. Please reload this page . Notifications You must be signed in to change notification settings Fork 239 Star 3.4k Package manager version manager for Node.js projects License MIT license 3.4k stars 239 forks Branches Tags Activity Star Notifications You must be signed in to change notification settings Code Issues 110 Pull requests 19 Actions Projects 0 Security Uh oh! There was an error while loading. Please reload this page . Insights Additional navigation options Code Issues Pull requests Actions Projects Security Insights nodejs/corepack main Branches Tags Go to file Code Open more actions menu Folders and files Name Name Last commit message Last commit date Latest commit History 436 Commits .github .github .vscode .vscode .yarn .yarn sources sources tests tests .editorconfig .editorconfig .gitignore .gitignore CHANGELOG.md CHANGELOG.md CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md CONTRIBUTING.md CONTRIBUTING.md LICENSE.md LICENSE.md README.md README.md config.json config.json eslint.config.mjs eslint.config.mjs genlist.ts genlist.ts global.d.ts global.d.ts icon.svg icon.svg mkshims.ts mkshims.ts package.json package.json tsconfig.json tsconfig.json vitest.config.mts vitest.config.mts yarn.lock yarn.lock View all files Repository files navigation README Code of conduct Contributing MIT license Security corepack Corepack is a zero-runtime-dependency Node.js script that acts as a bridge between Node.js projects and the package managers they are intended to be used with during development. In practical terms, Corepack lets you use Yarn, npm, and pnpm without having to install them . How to Install Default Installs Corepack is distributed with Node.js from version 14.19.0 up to (but not including) 25.0.0. Run corepack enable to install the required Yarn and pnpm binaries on your path. Manual Installs Install Corepack using npm First uninstall your global Yarn and pnpm binaries (just leave npm). In general, you'd do this by running the following command: npm uninstall -g yarn pnpm # That should be enough, but if you installed Yarn without going through npm it might # be more tedious - for example, you might need to run `brew uninstall yarn` as well. Then install Corepack: npm install -g corepack We do acknowledge the irony and overhead of using npm to install Corepack, which is at least part of why the preferred option is to use the Corepack version that is distributed along with Node.js itself. Update Corepack using npm To install the latest version of Corepack, use: npm install -g corepack@latest If Corepack was installed on your system using a Node.js Windows Installer .msi package then you might need to remove it before attempting to install a different version of Corepack using npm. You can select the Modify option of the Node.js app settings to access the Windows Installer feature selection, and on the "corepack manager" feature of the Node.js .msi package by selecting "Entire feature will be unavailable". See Repair apps and programs in Windows for instructions on accessing the Windows apps page to modify settings. Install Corepack from source See CONTRIBUTING.md . Usage When Building Packages Just use your package managers as you usually would. Run yarn install in Yarn projects, pnpm install in pnpm projects, and npm in npm projects. Corepack will catch these calls, and depending on the situation: If the local project is configured for the package manager you're using , Corepack will download and cache the latest compatible version. If the local project is configured for a different package manager , Corepack will request you to run the command again using the right package manager - thus avoiding corruptions of your install artifacts. If the local project isn't configured for any package manager , Corepack will assume that you know what you're doing, and will use whatever package manager version has been pinned as "known good release". Check the relevant section for more details. When Authoring Packages Set your package's manager with the packageManager field in package.json : { "packageManager" : " yarn@3.2.3+sha224.953c8233f7a92884eee2de69a1b92d1f2ec1655e66d08071ba9a02fa " } Here, yarn is the name of the package manager, specified at version 3.2.3 , along with the SHA-224 hash of this version for validation. packageManager@x.y.z is required. The hash is optional but strongly recommended as a security practice. Permitted values for the package manager are yarn , npm , and pnpm . You can also provide a URL to a .js file (which will be interpreted as a CommonJS module) or a .tgz file (which will be interpreted as a package, and the "bin" field of the package.json will be used to determine which file to use in the archive). { "packageManager" : " yarn@https://registry.npmjs.org/@yarnpkg/cli-dist/-/cli-dist-3.2.3.tgz#sha224.16a0797d1710d1fb7ec40ab5c3801b68370a612a9b66ba117ad9924b " } devEngines.packageManager When a devEngines.packageManager field is defined, and is an object containing a "name" field (can also optionally contain version and onFail fields), Corepack will use it to validate you're using a compatible package manager. Depending on the value of devEngines.packageManager.onFail : if set to ignore , Corepack won't print any warning or error. if unset or set to error , Corepack will throw an error in case of a mismatch. if set to warn or some other value, Corepack will print a warning in case of mismatch. If the top-level packageManager field is missing, Corepack will use the package manager defined in devEngines.packageManager – in which case you must provide a specific version in devEngines.packageManager.version , ideally with a hash, as explained in the previous section: { "devEngines" :{ "packageManager" : { "name" : " yarn " , "version" : " 3.2.3+sha224.953c8233f7a92884eee2de69a1b92d1f2ec1655e66d08071ba9a02fa " } } } Known Good Releases When running Corepack within projects that don't list a supported package manager, it will default to a set of Known Good Releases. If there is no Known Good Release for the requested package manager, Corepack looks up the npm registry for the latest available version and cache it for future use. The Known Good Releases can be updated system-wide using corepack install -g . When Corepack downloads a new version of a given package manager on the same major line as the Known Good Release, it auto-updates it by default. Offline Workflow The utility commands detailed in the next section. Either you can use the network while building your container image, in which case you'll simply run corepack pack to make sure that your image includes the Last Known Good release for the specified package manager. Or you're publishing your project to a system where the network is unavailable, in which case you'll preemptively generate a package manager archive from your local computer (using corepack pack -o ) before storing it somewhere your container will be able to access (for example within your repository). After that it'll just be a matter of running corepack install -g --cache-only <path/to/corepack.tgz> to setup the cache. Utility Commands corepack <binary name>[@<version>] [... args] This meta-command runs the specified package manager in the local folder. You can use it to force an install to run with a given version, which can be useful when looking for regressions. Note that those commands still check whether the local project is configured for the given package manager (ie you won't be able to run corepack yarn install on a project where the packageManager field references pnpm ). corepack cache clean Clears the local COREPACK_HOME cache directory. corepack cache clear Clears the local COREPACK_HOME cache directory. corepack enable [... name] Option Description --install-directory Add the shims to the specified location This command will detect where Corepack is installed and will create shims next to it for each of the specified package managers (or all of them if the command is called without parameters). Note that the npm shims will not be installed unless explicitly requested, as npm is currently distributed with Node.js through other means. If the file system where the corepack binary is located is read-only, this command will fail. A workaround is to add the binaries as alias in your shell configuration file (e.g. in ~/.bash_aliases ): alias yarn= " corepack yarn " alias yarnpkg= " corepack yarnpkg " alias pnpm= " corepack pnpm " alias pnpx= " corepack pnpx " alias npm= " corepack npm " alias npx= " corepack npx " On Windows PowerShell, you can add functions using the $PROFILE automatic variable: echo " function yarn { corepack yarn `$ args } " >> $PROFILE echo " function yarnpkg { corepack yarnpkg `$ args } " >> $PROFILE echo " function pnpm { corepack pnpm `$ args } " >> $PROFILE echo " function pnpx { corepack pnpx `$ args } " >> $PROFILE echo " function npm { corepack npm `$ args } " >> $PROFILE echo " function npx { corepack npx `$ args } " >> $PROFILE corepack disable [... name] Option Description --install-directory Remove the shims to the specified location This command will detect where Node.js is installed and will remove the shims from there. corepack install Download and install the package manager configured in the local project. This command doesn't change the global version used when running the package manager from outside the project (use the `-g,--global` flag if you wish to do this). corepack install <-g,--global> [... name[@<version>]] Install the selected package managers and install them on the system. Package managers thus installed will be configured as the new default when calling their respective binaries outside of projects defining the packageManager field. corepack pack [... name[@<version>]] Option Description --json Print the output folder rather than logs -o,--output Path where to generate the archive Download the selected package managers and store them inside a tarball suitable for use with corepack install -g . corepack use <name[@<version>]> When run, this command will retrieve the latest release matching the provided descriptor, assign it to the project's package.json file, and automatically perform an install. corepack up Retrieve the latest available version for the current major release line of the package manager used in the local project, and update the project to use it. Unlike corepack use this command doesn't take a package manager name nor a version range, as it will always select the latest available version from the range specified in devEngines.packageManager.version , or fallback to the same major line. Should you need to upgrade to a new major, use an explicit corepack use {name}@latest call (or simply corepack use {name} ). Environment Variables COREPACK_DEFAULT_TO_LATEST can be set to 0 in order to instruct Corepack not to lookup on the remote registry for the latest version of the selected package manager, and to not update the Last Known Good version when it downloads a new version of the same major line. COREPACK_ENABLE_AUTO_PIN can be set to 1 to instruct Corepack to update the packageManager field when it detects that the local package doesn't list it. In general we recommend to always list a packageManager field (which you can easily set through corepack use [name]@[version] ), as it ensures that your project installs are always deterministic. COREPACK_ENABLE_DOWNLOAD_PROMPT can be set to 0 to prevent Corepack showing the URL when it needs to download software, or can be set to 1 to have the URL shown. By default, when Corepack is called explicitly (e.g. corepack pnpm … ), it is set to 0 ; when Corepack is called implicitly (e.g. pnpm … ), it is set to 1 . The default value cannot be overridden in a .corepack.env file. When standard input is a TTY and no CI environment is detected, Corepack will ask for user input before starting the download. COREPACK_ENABLE_UNSAFE_CUSTOM_URLS can be set to 1 to allow use of custom URLs to load a package manager known by Corepack ( yarn , npm , and pnpm ). COREPACK_ENABLE_NETWORK can be set to 0 to prevent Corepack from accessing the network (in which case you'll be responsible for hydrating the package manager versions that will be required for the projects you'll run, using corepack install -g --cache-only ). COREPACK_ENABLE_STRICT can be set to 0 to prevent Corepack from throwing error if the package manager does not correspond to the one defined for the current project. This means that if a user is using the package manager specified in the current project, it will use the version specified by the project's packageManager field. But if the user is using other package manager different from the one specified for the current project, it will use the system-wide package manager version. COREPACK_ENABLE_PROJECT_SPEC can be set to 0 to prevent Corepack from checking if the package manager corresponds to the one defined for the current project. This means that it will always use the system-wide package manager regardless of what is being specified in the project's packageManager field. COREPACK_ENV_FILE can be set to 0 to request Corepack to not attempt to load .corepack.env ; it can be set to a path to specify a different env file. Only keys that start with COREPACK_ and are not in the exception list ( COREPACK_ENABLE_DOWNLOAD_PROMPT and COREPACK_ENV_FILE are ignored) will be taken into account. For Node.js 18.x users, this setting has no effect as that version doesn't support parsing of .env files. COREPACK_HOME can be set in order to define where Corepack should install the package managers. By default it is set to %LOCALAPPDATA%\node\corepack on Windows, and to $HOME/.cache/node/corepack everywhere else. COREPACK_ROOT has no functional impact on Corepack itself; it's automatically being set in your environment by Corepack when it shells out to the underlying package managers, so that they can feature-detect its presence (useful for commands like yarn init ). COREPACK_NPM_REGISTRY sets the registry base url used when retrieving package managers from npm. Default value is https://registry.npmjs.org COREPACK_NPM_TOKEN sets a Bearer token authorization header when connecting to a npm type registry. COREPACK_NPM_USERNAME and COREPACK_NPM_PASSWORD to set a Basic authorization header when connecting to a npm type registry. Note that both environment variables are required and as plain text. If you want to send an empty password, explicitly set COREPACK_NPM_PASSWORD to an empty string. HTTP_PROXY , HTTPS_PROXY , and NO_PROXY are supported through proxy-from-env . COREPACK_INTEGRITY_KEYS can be set to an empty string or 0 to instruct Corepack to skip integrity checks, or to a JSON string containing custom keys. Troubleshooting The environment variable DEBUG can be set to corepack to enable additional debug logging. Networking There are a wide variety of networking issues that can occur while running corepack commands. Things to check: Make sure your network connection is active. Make sure the host for your request can be resolved by your DNS; try using curl [URL] (ipv4) and curl -6 [URL] (ipv6) from your shell. Check your proxy settings (see Environment Variables ). Contributing See CONTRIBUTING.md . License (MIT) See LICENSE.md . About Package manager version manager for Node.js projects Topics nodejs npm yarn pnpm Resources Readme License MIT license Code of conduct Code of conduct Contributing Contributing Security policy Security policy Uh oh! There was an error while loading. Please reload this page . Activity Custom properties Stars 3.4k stars Watchers 29 watching Forks 239 forks Report repository Releases 53 v0.34.5 Latest Nov 24, 2025 + 52 releases Sponsor this project Uh oh! There was an error while loading. Please reload this page . opencollective.com/ nodejs Learn more about GitHub Sponsors Used by 675 + 667 Contributors 50 + 36 contributors Languages TypeScript 94.2% JavaScript 5.8% Footer © 2026 GitHub, Inc. Footer navigation Terms Privacy Security Status Community Docs Contact Manage cookies Do not share my personal information You can’t perform that action at this time. | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/2011/10/macs-and-me.html?showComment=1317921040324#c9132058561311488938 | don't count on finding me: Macs and me skip to main | skip to sidebar don't count on finding me Wednesday, October 5, 2011 Macs and me I am profoundly saddened since I woke up at 4:00am in the morning, and saw the news headline about the passing of Steve Jobs. I have seen this coming for a long time, as my father died in a very similar way back 1993 with only 52. Looking at the thin appearance of Jobs in the last month or even years I constantly get reminded of him. Basically the same story of suffering, loss of weight, liver transplant (in vain), death. RIP, Dad, RIP, Steve. I am writing this on a rusty vintage 2000 PowerBook G4 Titanium, I bought on eBay last year, because the video of my own 2001 TiBook went black. By today's web standards completely inadequate, it serves me well for news reading, terminal logins, etc. My son Pedro got his MacBook Pro 15'' delivered just today. An awesome piece of technology. My father bought the first Mac in 1986, just after opening his practice as a neurologist. This was two years after cutting all strings in Hungary and fleeing to Germany in a pretty bold move. Must have been a moment of total self-overestimation when I promised to my dad "if you buy that Mac Plus I'll write you the best software for it for your doctor's office". A crazy time began. At day the Mac was used to keep patient's data with a DTP program "RagTime", at 5pm I hauled the Mac home (in a big black bag) and started writing the program. Sometimes deep into the night. I used Turbo Pascal (and later MPW) after figuring out that the Lisp environment I preferred simply did not cut it due to insufficient support of the Toolbox. In the morning my father carried the Mac back and powered it up. Less than year later the program was ready for productive work. A Mac SE joined the party and we had a networked doctor's application with a really neat windowed user interface, that would put even today's programs to shame in this regard. There was even a time when we fancied marketing this product, but my university duties and the early death of my father simply negated all plans to this end. When I had my diploma in my hands I picked up the phone and called the guy who sold us the Mac Plus and a copy of "Inside Macintosh" back in '86. In the meantime he founded a pretty successful company around a networked admin solution called 'netOctopus' which was his baby. We occasionally met at Apple developer events and I new that he was a pretty damn good coder. He hired me and I was earning money by programming Macs! So yes, I love Macs and there is no reason that this will change in the foreseeable future. I kept telling to myself, should Jobs die one day, I'll put that Mac Plus (now in my basement and still functional) up for sale at eBay. My thought today: "screw it – too many fond memories attached". Posted by heisenbug at 9:39 PM Labels: family , mac , sadness 3 comments: MARCO ANTONIO MENELAU said... muito bonito gabor. Parabens. homenagemjusta a um grande homemn October 6, 2011 at 2:24 AM Cristina Menelau said... Gostei muito, me emocionei com sua história. Todos lamentamos a morte prematura de Jobs mas, a vida tem dessas surpresas. Um gênio sai de cena, aguardemos que outro apareça para preenchê-la proém, sem jamais esquecer os que se foram. October 6, 2011 at 6:04 AM RecaPortella said... Que história emocionante Gabor! Parabéns por conseguir em palavras descrever momentos e histórias como essa. Triste, porém cheia de ensinamentos em todos os sentidos. Agora é esperar o tempo levar um pouco dessa tristeza e continuar seguindo a vida lembrando sempre dos bons ensinamentos que grandes pessoas com essas nos deixaram! Bjs October 6, 2011 at 10:10 AM Post a Comment Newer Post Older Post Home Subscribe to: Post Comments (Atom) Blog Archive ►  2022 (1) ►  February (1) ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ▼  2011 (7) ►  December (1) ►  November (1) ▼  October (1) Macs and me ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://help.qiita.com/ | Qiita ヘルプ Qiita Qiitaとは Qiitaとは Qiitaへの思い Qiitaのサービス名の由来 Qiita表彰プログラムとは ガイドライン コミュニティガイドライン 良い記事を書くためのガイドライン 良い質問を書くためのガイドライン 機能 会員登録するとできること テーマカラー設定(ダークテーマへの切替) ユーザーページ(マイページ)の名称と機能 フィード機能(ホーム・タイムライン・トレンド) フォロー機能 いいね機能 ストック機能 検索機能 タグ機能 購読機能 メンション機能 ミュート機能 ブロック機能 通報機能 Webプッシュ通知 Contributionとは バッジ機能 設定ページでできること 公開用プロフィール・ユーザー名の変更 アイコン画像の設定 言語の設定 外部サービスのアカウント連携 支援サービス(GitHub Sponsors連携) メールアドレスの変更・通知設定 二段階認証の再設定 ベータ版切り替え Googleアナリティクス設定 退会方法 記事の投稿 記事を投稿する 限定共有投稿について 記事の編集・編集履歴の確認方法 記事を削除する 編集リクエストを送る・受け取る 画像のアップロード・削除方法 Qiita Markdown Qiitaの投稿をMarkdown表示にする方法 Qiitaのシンタックスハイライトについて スライドモードについて 絵文字の利用について 記事投稿キャンペーンについて 認証等 OAuth認証について メール認証が出来ない場合 パスワードを変更する パスワードを再設定する 連携アカウントを削除した際のログイン方法 質問 質問を投稿する 質問へ回答する 質問の編集・削除について 質問フィード・人気の質問 質問をクローズする アドベントカレンダー Qiita Advent Calendar について カレンダーの探し方 カレンダーに参加する カレンダーを作成する Organizationカレンダーの作成 カレンダーの記事を閲覧する Advent Calendar ランキング Organization Qiita Organizationとは Organizationの作成方法 Organizationの参加・脱退方法 記事とOrganizationの紐付け方法 Organizationの設定について OrganizationのGoogleアナリティクス設定 Organizationの削除方法 Qiita Teamとの違いについて 法律・規約等 著作物を引用する際の注意点 翻訳ツールを利用する際の注意 肖像権・パブリシティ権について 著書や人のブログにまつわる記事を書くと著作権違反になる? 自分の記事が無断転載された場合 その他 よくあるお問い合わせ 対応ブラウザ PWA(プログレッシブウェブアプリ)について Qiitaニュースについて Qiita API・スクレイピングについて Qiitaのデータを元にして作成したサービス・アプリに広告などを設置しても良い? Qiita Team その他 Qiita Teamのヘルプ その他 ガイドライン メディアキット © 2025 Qiita Inc. 利用規約 プライバシー ヘルプ お問い合わせ Qiita Qiita Team Qiita Blog | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/2011/11/pondering-about-foundations.html | don't count on finding me: Pondering about the Foundations skip to main | skip to sidebar don't count on finding me Tuesday, November 22, 2011 Pondering about the Foundations As I am thinking about how a possible Ω mega 2.0 could be implemented, I am trying to come up with some interesting concepts w.r.t. parsing and type checking. Since no single line is written yet, it is easy and cheap to ponder. Some key elements are already taking shape in my mind. These are: parsed entities carry their start and end coordinates in their types there is no difference between patterns and expressions each expression carries a typing thrist. The second item has been elaborated by me in an earlier post. The third must wait a bit until I have something coherent (but the curious reader might visit my sketch of ideas ). I'd like to talk about item one here. The essence is that every grammar element obtains a type that describes where this element is located. For example a function declaration may occupy the text portion between start and end , where these are type-level triples (file, line, column). In order to consider parsed input consistent, the start coordinates must be aligned with the prior element's end coordinates, i.e. we have another thrist here. Things get interesting when we model naming and scope. Name definition and referral must somehow match the types, after the match is done the semantics can be read off the user. To give an example: Ref definer :: Exp (`foo, 42, 7) (`foo, 42, 11) where definer :: Exp (`foo, 41, 1) (`foo, 45, 37) = ... Both the reference and the definition live in the same file "foo.prg". The former is on line 42 from column 7 to 11 (exclusive). The definition it refers to is in fact enclosing it (a recursive call, maybe?) extending from line 42 to 45. With this representation the name of the indentifier becomes secondary, all that counts is the evidence in definer which contributes to its type! We have created a globally nameless representation. We can expand this world view to also include the level of the grammatical entity (value, type, kind, etc.) as a fourth coordinate. So a reference to a ›25‹ somewhere in the text at floor 0 would point to an integer literal, the same place at floor 1 to the type Int and at floor 2 it would be the kind * . My hope is that all the proof obligations arising in such a scheme can be cleverly extracted from a parsec-like engine. Posted by heisenbug at 3:03 PM Labels: omega , thrist No comments: Post a Comment Newer Post Older Post Home Subscribe to: Post Comments (Atom) Blog Archive ►  2022 (1) ►  February (1) ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ▼  2011 (7) ►  December (1) ▼  November (1) Pondering about the Foundations ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/search/label/mac | don't count on finding me: mac skip to main | skip to sidebar don't count on finding me Showing posts with label mac . Show all posts Showing posts with label mac . Show all posts Wednesday, October 5, 2011 Macs and me I am profoundly saddened since I woke up at 4:00am in the morning, and saw the news headline about the passing of Steve Jobs. I have seen this coming for a long time, as my father died in a very similar way back 1993 with only 52. Looking at the thin appearance of Jobs in the last month or even years I constantly get reminded of him. Basically the same story of suffering, loss of weight, liver transplant (in vain), death. RIP, Dad, RIP, Steve. I am writing this on a rusty vintage 2000 PowerBook G4 Titanium, I bought on eBay last year, because the video of my own 2001 TiBook went black. By today's web standards completely inadequate, it serves me well for news reading, terminal logins, etc. My son Pedro got his MacBook Pro 15'' delivered just today. An awesome piece of technology. My father bought the first Mac in 1986, just after opening his practice as a neurologist. This was two years after cutting all strings in Hungary and fleeing to Germany in a pretty bold move. Must have been a moment of total self-overestimation when I promised to my dad "if you buy that Mac Plus I'll write you the best software for it for your doctor's office". A crazy time began. At day the Mac was used to keep patient's data with a DTP program "RagTime", at 5pm I hauled the Mac home (in a big black bag) and started writing the program. Sometimes deep into the night. I used Turbo Pascal (and later MPW) after figuring out that the Lisp environment I preferred simply did not cut it due to insufficient support of the Toolbox. In the morning my father carried the Mac back and powered it up. Less than year later the program was ready for productive work. A Mac SE joined the party and we had a networked doctor's application with a really neat windowed user interface, that would put even today's programs to shame in this regard. There was even a time when we fancied marketing this product, but my university duties and the early death of my father simply negated all plans to this end. When I had my diploma in my hands I picked up the phone and called the guy who sold us the Mac Plus and a copy of "Inside Macintosh" back in '86. In the meantime he founded a pretty successful company around a networked admin solution called 'netOctopus' which was his baby. We occasionally met at Apple developer events and I new that he was a pretty damn good coder. He hired me and I was earning money by programming Macs! So yes, I love Macs and there is no reason that this will change in the foreseeable future. I kept telling to myself, should Jobs die one day, I'll put that Mac Plus (now in my basement and still functional) up for sale at eBay. My thought today: "screw it – too many fond memories attached". Posted by heisenbug at 9:39 PM 3 comments: Labels: family , mac , sadness Monday, October 18, 2010 Lion's Share I am sick. Five days already, and counting. My brain feels like Sauerkraut and thinking is hard. But my dysregulated sleep cycle lets me ponder all kinds of idle things. One of them is the upcoming "Back to Mac" announcements on Wednesday 11/9. It seems pretty sure that Mac OS X 10.7 (or 11.0 possibly) will be introduced under the 'Lion' code name. This is pretty exciting as nothing really revolutionary happened in the Mac world since 'Leopard'. Many people are speculating what the foundations will be. My bet is a fully-LLVM compiled system: good-bye GCC, we had a nice time together. The majority of the LLVM team is virtually absent from the IRC channel and the mailing lists, they must be working on something big... That is, ironing out the latest bugs so that nothing embarrassing can happen while Steve is on stage. But clang v2.8 already compiles e.g. the FreeBSD kernel and userland with pretty good quality, so this cannot be the entire reason. The (already filled-in) job posting for a "revolutionary new feature in the very foundations of Mac OS X" is probably LLVM-related. Modern GPUs have hundreds of very potent processors that excel at floating-point computations. To use them effectively one needs a flexible compiler that can specialize snippets of code to run on each with optimal throughput. OpenCL attempts this but mostly in the graphical domain, and it sources from a C-like language. What we have in this case, however, is not about graphics... I am going on a limb here and suggest that the new feature is about ... conscience! Yeah, a primitive (compared to humans) but effective way of reflection, that is, understanding of its own existence and goals. Also the goals of the user! This will pave the way to new forms of assistance the OS can provide for us to get our jobs done. It has been tried many times, but to cite the job description, "Something that has never been done before and will truly amaze everyone". My neuronal storm has ceased, I feel limp and tired. Time for another nap. Bye. Posted by heisenbug at 1:56 PM No comments: Labels: llvm , mac , speculation Saturday, July 28, 2007 Taming PSNormalizer For distilling a PDF on the Mac I had to unlearn almost everything. Or at least I have to use some more tools, while ignoring others. What I shall write down now is the product of one night of intensive research by googling with lots of trial-and-error. So, producing the .ps with lout was easy and just like on Solaris. But there is no Distiller in my setup, instead I normally use Preview.app . Double-clicking on the .ps file in the Finder usually is sufficient. Not this time, though, because the Latin Modern fonts were missing, and Preview.app substitutes Courier for them. Clearly a suboptimal solution. Dropping the .pfb and .afm files into the Fonts folder (personal or system Libraries/Fonts) only had the effect of locking up Preview.app with every job. This is what other people also report in support forums. I removed the font files again. The solution must be including the font into the .ps file. There is a small utility called includeres in the MacPorts psutils package. Unfortunately the script did not run out of the box, I had to edit it to invoke perl by full pathname (#!/opt/local/bin/perl). But then I had to symlink LMRoman9-Regular to lmr9.pfb for this approach to work. Opening the resultant pimped up .ps file with Preview.app resulted in the well-known hangup. Hmmm, .pfb is apparently not palatable for Preview.app. So I began digging deeper. It looked like there is a PSNormalizer entry in the /tmp/ directory. It seems to be the bastard child of Distiller, licensed to Apple from Adobe. I figured it also has a command-line interface pstopdf too. PSNormalizer seems to be a private system framework, with a certain directory structure. After finding it on my HD, I could examine its contents. There is a Resource/ directory with fonts/ in it. I dropped my .pfb there. Hangup. At least I knew now that I am on the right path. PSNormalizer looks for fonts in Resource/fonts/ and after that in ~/Library/Fonts and the global /Library/Fonts. Resource/fonts/ has two files in it, one of them being Courier. Looking at the dump, it seemed very close to .pfb files, but all ascii. It must be a .pfa file! From here it was easier to proceed: grabbing a pfb2pfa converter from CTAN (part of ps2mf ) with a small script converting all .pfb s to .pfa s dropping these into Resource/fonts/ redistilling This time it worked! But it is tiresome to invoke Preview.app all the time using the mouse, so I am using pstopdf now, which is a perfect substitute for Distiller . Also I have my .pfa s in /Library/Fonts/, so everybody on that Mac has access to them. Nevertheless I could relax at this point, and do some experimentation. Here are some things I stumbled upon: PSNormalizer/Startup/ can contain arbitrary .ps files that are run before each distillation job starts. This can be useful for customization. Resource/startupNORM.ps contains some interesting code and can probably also be modified. Using includeres with .pfa fonts also works. The PSRESOURCEPATH environment variable does not seem to affect pstopdf . pstopdf has two brothers, pstopnm and pstops . I still have to find out what they are good for. And there is more: ps2epsi and many other commands starting with "ps" come from the Ghostscript MacPorts package. All in all, I feel much better about the PDF-workflow on the Mac now :-) Addendum (2017) there is an utility (from Ghostscript?) for converting pfb->pfa: cd /System/Library/PrivateFrameworks/PSNormalizer.framework/Resources/fonts foreach i (`find /opt/local/share/texmf-texlive/fonts/type1/public/amsfonts -name "*.pfb"`) sudo pfbtopfa $i end Posted by heisenbug at 10:20 AM No comments: Labels: mac , PDF Older Posts Home Subscribe to: Comments (Atom) Blog Archive ▼  2022 (1) ▼  February (1) Pattern musings ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://tests.reproducible-builds.org/debian/bookworm/index_dd-list.html | Maintainers of unreproducible packages in bookworm Debian navigation Change suite/architecture Tested suites: unstable forky trixie bookworm experimental Test results statistics Results for bookworm/amd64 Unreproducible packages: with notes without notes Other package states: package sets Recently tested packages: last 24h last 48h all tested packages packages with .buildinfo files packages without .buildinfo files Scheduled for amd64 Maintainers of in bookworm Reproducible Debian overview Development dashboard Past releases dashboard Categorized issues Bugs filed Variations tested Packages with notifications enabled ⚑ Repositories overview Backend related Broken pieces Documentation (eg. on manual scheduling) Performance stats Health monitoring node overview job overview daily graphs weekly graphs monthly graphs yearly graphs The Reproducible Builds project reproducible-builds.org Reproducible Builds - Docs • News Reproducible Builds in Debian - Wiki SOURCE_DATE_EPOCH specification reproduce.debian.net aims for 100% bit-for-bit identical rebuilds of Debian other CI tests Maintainers of unreproducible packages in bookworm The following maintainers and uploaders are listed for packages in bookworm which have built unreproducibly. Please note that the while the link always points to the amd64 version, it's possible thatthe unreproducibility is only present in another architecture(s). "Adam C. Powell, IV" <hazelsct@debian.org> ¶ med-fichier (U) mpich (U) oce (U) petsc (U) slepc (U) spooles (U) A. Maitland Bottoms <bottoms@debian.org> ¶ codec2 gnuradio gpredict (U) gr-fosphor gr-limesdr (U) gr-osmosdr gr-radar gr-rds libiio uhd Aaron Boxer <boxerab@protonmail.com> ¶ libgrokj2k Aaron M. Ucko <ucko@debian.org> ¶ fltk1.3 gbrowse (U) ncbi-blast+ (U) Abou Al Montacir <abou.almontacir@sfr.fr> ¶ castle-game-engine (U) libqtpas (U) Adam Borowski <kilobyte@angband.pl> ¶ cardo (U) Adam Majer <adamm@zombino.com> ¶ qtcreator (U) Adrian Knoth <adi@drcomp.erfurt.thur.de> ¶ ardour (U) Adrian Vondendriesch <adrian.vondendriesch@credativ.de> ¶ pacemaker (U) pgpool2 (U) Afif Elghraoui <afif@debian.org> ¶ gridengine # (U) Alastair McKinstry <mckinstry@debian.org> ¶ atlas-ecmwf eccodes eckit emoslib # fdb ferret-vis fiat-ecmwf glew hdf-eos5 metkit metview mpich (U) ncl odc openmpi pyferret python-escript (U) python-xarray (U) silo-llnl spherepack Alberto Leiva Popper <ydahhrk@gmail.com> ¶ jool (U) Alberto Luaces Fernández <aluaces@udc.es> ¶ yasnippet (U) Albin Tonnerre <lutin@debian.org> ¶ efl (U) Alec Leamas <leamas.alec@gmail.com> ¶ lirc (U) Alessandro Ghedini <ghedo@debian.org> ¶ valgrind + Alessio Treglia <alessio@debian.org> ¶ libsoxr (U) tsdecrypt (U) Alexander Kjäll <alexander.kjall@gmail.com> ¶ rust-ripasso-cursive (U) Alexander Ponyatykh <lazyranma@gmail.com> ¶ g15daemon Alexander Wirt <formorer@debian.org> ¶ icinga2 (U) Alexandre Dantas <eu@alexdantas.net> ¶ nsnake Alexandre Viau <aviau@debian.org> ¶ fonts-fork-awesome (U) Aloïs Micard <creekorful@debian.org> ¶ aerc (U) Amin Bandali <bandali@gnu.org> ¶ ring (U) Amul Shah <Amul.Shah@fisglobal.com> ¶ fis-gtm (U) Anders Kaseorg <andersk@mit.edu> ¶ openafs (U) Andre Noll <maan@tuebingen.mpg.de> ¶ liblopsub Andreas Beckmann <anbe@debian.org> ¶ intel-graphics-compiler (U) oclgrind (U) Andreas Boll <aboll@debian.org> ¶ mesa (U) Andreas Bombe <aeb@debian.org> ¶ ghdl (U) gr-limesdr (U) Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> ¶ clamav (U) Andreas Henriksson <andreas@fatal.se> ¶ golang-github-mendersoftware-mender-artifact (U) Andreas Metzler <ametzler@debian.org> ¶ efl (U) enblend-enfuse (U) lynx (U) pfstools (U) Andreas Rönnquist <gusnan@debian.org> ¶ allegro5 # (U) Andreas Tille <tille@debian.org> ¶ abinit (U) ball (U) biojava-live (U) buddy + (U) consensuscore (U) dicom3tools (U) emboss (U) filtlong (U) fis-gtm (U) freebayes (U) gatb-core (U) gbrowse (U) golang-github-jung-kurt-gofpdf + (U) hmmer (U) htsjdk (U) igraph (U) iqtree (U) jebl2 (U) jellyfish (U) kallisto (U) libfastutil-java (U) liblemon (U) librostlab (U) libvbz-hdf-plugin (U) mapsembler2 (U) mira (U) ncbi-blast+ (U) ngspice (U) node-shiny-server (U) otb (U) parallel (U) pixelmed (U) porechop (U) python-cogent (U) r-bioc-biocparallel (U) r-bioc-genomicfeatures (U) r-bioc-ioniser (U) r-cran-cli (U) r-cran-cliapp (U) r-cran-dbitest (U) r-cran-diagnosismed (U) r-cran-dimred (U) r-cran-emayili (U) r-cran-futile.logger (U) r-cran-gert (U) r-cran-knitr (U) r-cran-lambda.r (U) r-cran-parsetools (U) r-cran-rprojroot (U) r-cran-rstan (U) r-cran-sass (U) r-cran-taxize (U) r-cran-teachingdemos (U) r-cran-tm (U) r-cran-tmvtnorm (U) r-cran-tweenr (U) segemehl (U) seqan2 (U) siscone (U) treeview (U) tvc (U) twopaco (U) virtuoso-opensource (U) Andrei Rozanski <rozanski.andrei@gmail.com> ¶ libamplsolver (U) Andrej Shadura <andrewsh@debian.org> ¶ critcl + (U) fonts-karmilla (U) g15daemon (U) libcamera (U) pseudo sphinxsearch Andres Salomon <dilinger@debian.org> ¶ chromium (U) Andrew Ross <ubuntu@rossfamily.co.uk> ¶ libpgjava (U) Andrey Rahmatullin <wrar@debian.org> ¶ kvirc (U) Andrey Rakhmatullin <wrar@debian.org> ¶ python-scrapy (U) Andrius Merkys <merkys@debian.org> ¶ apache-commons-rdf (U) openbabel (U) pdb-tools (U) python-ase (U) python-fabio (U) Android Tools Maintainers <android-tools-devel@lists.alioth.debian.org> ¶ android-platform-external-libunwind Andy Li <andy@onthewings.net> ¶ ocaml-obuild (U) Angus Lees <gus@debian.org> ¶ cargo (U) Ansgar <ansgar@debian.org> ¶ dune-common (U) dune-functions (U) dune-geometry (U) dune-grid (U) dune-grid-glue (U) dune-istl (U) dune-localfunctions (U) dune-typetree (U) Anthony Fok <foka@debian.org> ¶ autokey (U) golang-github-revel-revel (U) golang-github-yosssi-ace (U) guile-2.2 lilypond Antoine Beaupré <anarcat@debian.org> ¶ gmpc (U) rapid-photo-downloader (U) Anton Gladky <gladk@debian.org> ¶ boost1.74 (U) boost1.81 (U) esys-particle (U) liggghts (U) sfepy (U) solvespace (U) sumo (U) Anton Zinoviev <zinoviev@debian.org> ¶ scalable-cyrfonts Antonio Terceiro <antonio.terceiro@linaro.org> ¶ lava (U) Antonio Terceiro <terceiro@debian.org> ¶ passenger (U) Antonio Valentino <antonio.valentino@tiscali.it> ¶ numexpr (U) Anuradha Weeraman <anuradha@debian.org> ¶ ksh93u+m # Apollon Oikonomopoulos <apoikos@debian.org> ¶ ganeti (U) Arnaud Rebillout <arnaud.rebillout@collabora.com> ¶ efitools (U) Arnaud Rebillout <arnaudr@kali.org> ¶ docker.io (U) notary (U) Arne Morten Kvarving <arne.morten.kvarving@sintef.no> ¶ opm-upscaling (U) Aron Xu <aron@debian.org> ¶ dnf-plugins-core fcitx-libpinyin (U) ibus (U) libpinyin (U) opencc (U) Arun Kumar Pariyar <arun@debian.org> ¶ go-gir-generator (U) Arun Kumar Pariyar <openarungeek@gmail.com> ¶ dde-qt-dbus-factory (U) deepin-deb-installer (U) Asias He <asias@debian.org> ¶ libpinyin (U) opencc (U) Ask Hjorth Larsen <asklarsen@gmail.com> ¶ python-ase (U) Athena Capital Research <acr-debian@athenacr.com> ¶ quickfix Aurelien Jarno <aurel32@debian.org> ¶ med-fichier (U) Aurélien COUDERC <coucouf@debian.org> ¶ breeze-icons (U) kuserfeedback (U) oxygen-icons5 (U) plasma-workspace (U) Axel Beckert <abe@debian.org> ¶ dpmb john (U) lynx (U) Ayatana Packagers <pkg-ayatana-devel@lists.alioth.debian.org> ¶ libayatana-appindicator Aymeric Agon-Rambosson <aymeric.agon@yandex.com> ¶ citar (U) consult-el (U) embark (U) marginalia (U) orderless (U) vertico (U) Badreddin Aboubakr <badreddin.aboubakr@cloud.ionos.com> ¶ prometheus-elasticsearch-exporter (U) Balasankar C <balasankarc@debian.org> ¶ fonts-smc-anjalioldlipi (U) fonts-smc-dyuthi (U) fonts-smc-karumbi (U) fonts-smc-keraleeyam (U) fonts-smc-meera (U) fonts-smc-rachana (U) fonts-smc-raghumalayalamsans (U) fonts-smc-uroob (U) Balint Reczey <balint@balintreczey.hu> ¶ erlang-cowlib (U) ffmpeg (U) Barak A. Pearlmutter <bap@debian.org> ¶ chezscheme (U) chuck (U) ikarus latex-coffee-stains mit-scheme oaklisp pstoedit smlnj yasnippet (U) Barry deFreese <bdefreese@debian.org> ¶ asc (U) blockattack (U) liquidwar (U) netrek-client-cow (U) Bartosz Fenski <fenio@debian.org> ¶ asc (U) netw-ib-ox-ag Bas Couwenberg <sebastic@debian.org> ¶ gdal (U) grass (U) libosmium (U) mapnik (U) nco (U) proj (U) Bas Wijnen <wijnen@debian.org> ¶ gfpoken (U) openmsx Bastian Blank <waldi@debian.org> ¶ cdebootstrap + ipxe linux (U) Bastian Venthur <venthur@debian.org> ¶ kivy (U) Bastien Roucariès <rouca@debian.org> ¶ imagemagick (U) node-mocha (U) Bdale Garbee <bdale@gag.com> ¶ debian-history (U) librnd (U) pforth Ben Armstrong <synrg@sanctuary.nslug.ns.ca> ¶ live-manual (U) Ben Hutchings <benh@debian.org> ¶ linux (U) Benda Xu <heroxbd@gentoo.org> ¶ casacore (U) casacore-data-igrf (U) casacore-data-jplde (U) scim (U) Benda Xu <orv@debian.org> ¶ scmutils Benjamin Barenblat <bbaren@debian.org> ¶ coq (U) Benjamin Barenblat <bbaren@mit.edu> ¶ boogie dafny Benjamin Drung <bdrung@debian.org> ¶ libsoxr (U) vlc # + (U) Benjamin Drung <bdrung@ubuntu.com> ¶ rdma-core Benjamin Kaduk <kaduk@mit.edu> ¶ openafs Benjamin Mako Hill <mako@debian.org> ¶ python-iso8601 (U) Benjamin Mesing <ben@debian.org> ¶ javaparser (U) Bernhard Miklautz <bernhard.miklautz@shacknet.at> ¶ freerdp2 (U) Bernhard Schmidt <berni@debian.org> ¶ gnarwl linphone (U) linphone-desktop (U) bertrand Neron <bneron@pasteur.fr> ¶ macsyfinder (U) Bill Allombert <ballombe@debian.org> ¶ gap menu Birger Schacht <birger@debian.org> ¶ foot Boris Pek <tehnick@debian.org> ¶ psi-plus Boyuan Yang <byang@debian.org> ¶ dde-qt-dbus-factory (U) fcitx5-bamboo (U) fcitx5-zhuyin (U) go-gir-generator (U) goldendict-webengine libxsmm (U) opencc (U) qterm (U) rime-array (U) rime-cantonese (U) rime-ipa (U) rime-loengfan (U) rime-luna-pinyin (U) rime-middle-chinese (U) rime-pinyin-simp (U) rime-quick (U) rime-scj (U) rime-soutzoe (U) rime-stroke (U) rime-terra-pinyin (U) rime-wugniu (U) Brad Chapman <chapmanb@50mail.com> ¶ freebayes (U) Brian May <bam@debian.org> ¶ python-mkdocs (U) python-parse-type (U) Brian Thomason <brian.thomason@eucalyptus.com> ¶ velocity (U) BW Keller <malzraa@gmail.com> ¶ yt (U) Calibre maintainer team <team+calibre@tracker.debian.org> ¶ calibre Calum McConnell <calumlikesapplepie@gmail.com> ¶ whitakers-words Camm Maguire <camm@debian.org> ¶ axiom fricas gcl hol88 lam + maxima Carl Fürstenberg <azatoth@gmail.com> ¶ obs-studio (U) Carl Worth <cworth@debian.org> ¶ notmuch Carlos Henrique Lima Melara <charlesmelara@outlook.com> ¶ kristall Carlos Zuferri <chals@altorricon.com> ¶ live-manual (U) Carsten Schoenert <c.schoenert@t-online.de> ¶ arduino-core-avr (U) kicad (U) ngspice (U) Cesare Falco <c.falco@ubuntu.com> ¶ mame (U) Changwoo Ryu <cwryu@debian.org> ¶ ibus (U) ChangZhuo Chen (陳昌倬) <czchen@debian.org> ¶ fcitx-libpinyin (U) ibus-libzhuyin (U) libpinyin (U) Charles Plessy <plessy@debian.org> ¶ emboss (U) gbrowse (U) htsjdk (U) Chow Loong Jin <hyperair@debian.org> ¶ gdata-sharp (U) hyena (U) mono-upnp (U) newtonsoft-json (U) slic3r (U) taglib-sharp (U) zeitgeist-sharp (U) Chris Boot <bootc@debian.org> ¶ busybox (U) Chris Halls <halls@debian.org> ¶ writer2latex (U) Chris Hofstaedtler <zeha@debian.org> ¶ multipath-tools (U) Chris Lamb <lamby@debian.org> ¶ black (U) redisearch Chris Lawrence <lawrencc@debian.org> ¶ r-cran-amelia (U) Christian Ehrhardt <christian.ehrhardt@canonical.com> ¶ openvswitch (U) Christian Kastner <ckk@debian.org> ¶ libfann pyswarms (U) rocm-hipamd (U) scikit-learn (U) Christian M. Amsüss <chrysn@fsfe.org> ¶ rdflib + (U) Christian Marillat <marillat@debian.org> ¶ libtorrent-rasterbar Christian T. Steigies <cts@debian.org> ¶ gle-graphics-manual (U) Christine Spang <christine@debian.org> ¶ quodlibet (U) Christoph Berg <myon@debian.org> ¶ gr-limesdr (U) libcm256cc (U) libpgjava (U) pgloader (U) pgpool2 (U) pgsphere (U) trustedqsl (U) Christoph Biedl <debian.axhn@manchmal.in-ulm.de> ¶ busybox (U) gkrellm-leds P Christoph Egger <christoph@debian.org> ¶ buildapp (U) ecl (U) sbcl (U) unknown-horizons (U) warzone2100 (U) Christoph Haas <haas@debian.org> ¶ zabbix (U) Christoph Martin <martin@uni-mainz.de> ¶ sks Christophe Mutricy <xtophe@videolan.org> ¶ vlc # + (U) Christophe Trophime <christophe.trophime@lncmi.cnrs.fr> ¶ getdp (U) Christopher James Halse Rogers <raof@ubuntu.com> ¶ mir (U) ClamAV Team <pkg-clamav-devel@lists.alioth.debian.org> ¶ clamav Claudius Heine <ch@denx.de> ¶ tpm2-pytss (U) Clay Stan <claystan97@gmail.com> ¶ dde-qt-dbus-factory (U) deepin-deb-installer (U) Clint Adams <clint@debian.org> ¶ haskell-haskell-gi-base (U) haskell-shell-conduit (U) haskell-snap-templates (U) Clément Hermann <nodens@debian.org> ¶ onedrive (U) Colin Tuckley <colint@debian.org> ¶ gpredict (U) Colin Watson <cjwatson@debian.org> ¶ python-nacl (U) Compute Library Team <developer-compute@arm.com> ¶ arm-compute-library Cordell Bloor <cgmb@slerp.xyz> ¶ rocm-hipamd (U) rocsparse (U) Corey Bryant <corey.bryant@canonical.com> ¶ murano (U) Cyril Brulebois <kibi@debian.org> ¶ debian-installer # # # (U) Cédric Boutillier <boutil@debian.org> ¶ highlight.js (U) libm4ri (U) Cédric Lood <cedric.lood@kuleuven.be> ¶ porechop (U) Dain Nilsson <dain@yubico.com> ¶ libu2f-host (U) Damien Raude-Morvan <drazzib@debian.org> ¶ codenarc (U) commons-vfs (U) felix-main (U) libspring-java (U) Damyan Ivanov <dmn@debian.org> ¶ firebird3.0 libmarc-charset-perl (U) Danai SAE-HAN (韓達耐) <danai@debian.org> ¶ cjk (U) latex-cjk-chinese-arphic (U) Daniel Baumann <daniel.baumann@progress-linux.org> ¶ ck dnsjit terminaltables Daniel Dehennin <daniel.dehennin@baby-gnu.org> ¶ moarvm (U) nqp (U) raku-readline (U) raku-tap-harness (U) raku-zef (U) rakudo # (U) Daniel Kahn Gillmor <dkg@fifthhorseman.net> ¶ gnupg2 (U) rust-configparser (U) rust-sequoia-sop (U) rust-sequoia-sq (U) rust-sequoia-sqv (U) Daniel Leidert <dleidert@debian.org> ¶ openbabel (U) Daniel Richard G. <skunk@iSKUNK.ORG> ¶ chromium (U) Daniel Silverstone <dsilvers@digital-scurf.org> ¶ netsurf (U) dann frazier <dannf@debian.org> ¶ edk2 (U) makedumpfile (U) Dario Minnucci <midget@debian.org> ¶ mon-contrib Dave Love <d.love@liverpool.ac.uk> ¶ gridengine # (U) David Banks <amoebae@gmail.com> ¶ sisc David Bremner <bremner@debian.org> ¶ notmuch (U) polymake racket sketch (U) David Miguel Susano Pinto <carandraug+dev@gmail.com> ¶ ncbi-igblast (U) David Paleino <dapal@debian.org> ¶ mapnik (U) openlayers (U) uncertainties (U) underscore (U) David Steele <steele@debian.org> ¶ cryfs David Weinehall <tao@debian.org> ¶ scummvm (U) Davide G. M. Salvetti <salve@debian.org> ¶ auctex Dawid Dziurla <dawidd0811@gmail.com> ¶ gitbatch (U) termshark (U) Dean Serenevy <dean@serenevy.net> ¶ kivy (U) Debian 3-D Printing Packages <3dprinter-general@lists.alioth.debian.org> ¶ slic3r Debian ACE maintainers <team+ace@tracker.debian.org> ¶ ace Debian Astro Team <debian-astro-maintainers@lists.alioth.debian.org> ¶ casacore casacore-data-igrf casacore-data-jplde eso-midas montage ndcube starjava-topcat starjava-ttools xpa Debian Astronomy Maintainers <debian-astro-maintainers@lists.alioth.debian.org> ¶ astropy Debian Astronomy Team <debian-astro-maintainers@lists.alioth.debian.org> ¶ yt Debian Authentication Maintainers <team+auth@tracker.debian.org> ¶ libu2f-host Debian Bluetooth Maintainers <team+pkg-bluetooth@tracker.debian.org> ¶ bluez Debian Boost Team <team+boost@tracker.debian.org> ¶ boost1.74 boost1.81 Debian Chinese Team <chinese-developers@lists.alioth.debian.org> ¶ opencc (U) qterm unicon # Debian Chromium Team <chromium@packages.debian.org> ¶ chromium Debian CLI Applications Team <pkg-cli-apps-team@lists.alioth.debian.org> ¶ hexbox keepass2 openmcdf yahtzeesharp Debian CLI Libraries Team <pkg-cli-libs-team@lists.alioth.debian.org> ¶ cecil-flowanalysis db4o gdata-sharp gtk-sharp-beans gtk-sharp2 gtk-sharp3 hyena mono-addins mono-upnp mono-zeroconf newtonsoft-json nrefactory nunit opentk taglib-sharp taoframework zeitgeist-sharp Debian Clojure Maintainers <team+clojure@tracker.debian.org> ¶ clojure core-specs-alpha-clojure leiningen-clojure + spec-alpha-clojure Debian Cloud Team <debian-cloud@lists.debian.org> ¶ aws-crt-python Debian Common Lisp Team <debian-common-lisp@lists.debian.org> ¶ abcl buildapp cmucl ecl sbcl slime Debian D Language Group <team+d-team@tracker.debian.org> ¶ dub ldc Debian Deep Learning Team <debian-ai@lists.debian.org> ¶ pytorch Debian Deepin Packaging Team <pkg-deepin-devel@lists.alioth.debian.org> ¶ dde-qt-dbus-factory deepin-deb-installer go-gir-generator Debian DM Multipath Team <team+linux-blocks@tracker.debian.org> ¶ multipath-tools Debian Documentation Project <debian-doc@lists.debian.org> ¶ refcard Debian EFI team <debian-efi@lists.debian.org> ¶ libjcat Debian Electronics Team <pkg-electronics-devel@alioth-lists.debian.net> ¶ arduino-core-avr kicad ngspice Debian Electronics Team <pkg-electronics-devel@lists.alioth.debian.org> ¶ arduino ghdl librnd Debian Emacsen team <debian-emacsen@lists.debian.org> ¶ citar consult-el embark hl-todo-el marginalia no-littering-el orderless vertico yasnippet Debian Emacsen Team <debian-emacsen@lists.debian.org> ¶ flycheck Debian Erlang Packagers <pkg-erlang-devel@lists.alioth.debian.org> ¶ erlang erlang-cowlib erlang-proper esdl manderlbot rebar rebar3 wings3d yaws Debian FlightGear Crew <team+flightgear@tracker.debian.org> ¶ flightgear Debian Fonts Task Force <debian-fonts@lists.debian.org> ¶ cardo fonts-fantasque-sans fonts-fork-awesome fonts-meera-inimai fonts-smc-anjalioldlipi fonts-smc-dyuthi fonts-smc-karumbi fonts-smc-keraleeyam Debian Fonts Task Force <pkg-fonts-devel@lists.alioth.debian.org> ¶ fonts-beteckna fonts-karmilla fonts-smc-meera fonts-smc-rachana fonts-smc-raghumalayalamsans Debian FreeIPA Team <pkg-freeipa-devel@alioth-lists.debian.net> ¶ idm-console-framework Debian FreeIPA Team <pkg-freeipa-devel@lists.alioth.debian.org> ¶ nss-pem Debian Games Team <pkg-games-devel@lists.alioth.debian.org> ¶ 0ad ace-of-penguins allegro5 # asc blockattack bzflag colobot darkradiant doomsday gfpoken lincity-ng liquidwar mame netrek-client-cow ogre-1.12 scummvm spring supertuxkart teeworlds ufoai unknown-horizons warzone2100 Debian Ganeti Team <ganeti@packages.debian.org> ¶ ganeti Debian GCC Maintainers <debian-gcc@lists.debian.org> ¶ gcc-11-cross gcc-11-cross-mipsen gcc-12-cross gcc-12-cross-mipsen hsail-tools newlib Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org> ¶ gdal grass jts libosmium mapnik nco openlayers otb proj savi Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org> ¶ gegl glib-d gnome-shell-extension-caffeine (U) gnome-shell-extension-easyscreencast gnome-video-arcade libadwaita-1 mm-common Debian GnuPG Maintainers <pkg-gnupg-maint@lists.alioth.debian.org> ¶ gnupg2 Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org> ¶ golang-github-stvp-tempredis golang-github-yosssi-ace Debian Go Packaging Team <team+pkg-go@tracker.debian.org> ¶ aerc age containerd docker.io fscrypt gitbatch go-sendxmpp golang-github-jung-kurt-gofpdf + golang-github-mendersoftware-mender-artifact golang-github-revel-revel gosop notary opensnitch prometheus-elasticsearch-exporter prometheus-mysqld-exporter riseup-vpn secsipidx shoelaces (U) termshark victoriametrics xmpp-dns ymuse Debian HA Maintainers <debian-ha-maintainers@alioth-lists.debian.net> ¶ pacemaker Debian Hamradio Maintainers <debian-hams@lists.debian.org> ¶ gpredict gr-limesdr libcm256cc libzia trustedqsl Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org> ¶ git-annex haskell-haskell-gi-base haskell-shell-conduit haskell-snap-templates ldap-haskell Debian Hebrew Packaging Team <team+hebrew@tracker.debian.org> ¶ bidiui libhdate Debian HPC Team <debian-hpc@lists.debian.org> ¶ gridengine # infinipath-psm Debian Input Method Team <debian-input-method@lists.debian.org> ¶ fcitx-libpinyin fcitx5-bamboo fcitx5-zhuyin ibus ibus-libzhuyin libpinyin open-gram opencc rime-array rime-cantonese rime-ipa rime-loengfan rime-luna-pinyin rime-middle-chinese rime-pinyin-simp rime-quick rime-scj rime-soutzoe rime-stroke rime-terra-pinyin rime-wugniu Debian Install System Team <debian-boot@lists.debian.org> ¶ busybox debian-installer # # # Debian Java maintainers <pkg-java-maintainers@lists.alioth.debian.org> ¶ argparse4j fest-assert latexdraw (U) Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org> ¶ apache-commons-rdf asmtools aspectj bcel bnd bsh c3p0 cobertura codenarc commons-beanutils commons-csv commons-io commons-vfs derby felix-main felix-scr fop freeplane gant gluegen2 gmetrics gradle gradle-kotlin-dsl + groovy h2database httpcomponents-client httpunit hyperic-sigar jabref jackson-annotations jakarta-jmeter + jalview jameica-h2database java-gnome java-xmlbuilder javaparser javawriter jaxb jcabi-aspects jruby jsch json4s jsoup jxplorer libandroid-json-org-java libapache-poi-java libcobra-java libcommons-codec-java libcommons-collections3-java libcommons-collections4-java libcommons-compress-java libcommons-fileupload-java libcommons-lang3-java libcommons-net-java libfastutil-java libhibernate-validator4-java libnative-platform-java libnb-platform18-java libpgjava libspring-java libxbean-java libxml-security-java libxtc-rats-java lombok lucene-solr lucene4.10 lucene8 mathpiper mckoisqldb mockobjects mp4parser okio openjpa saxonb sbt-serialization scala scala-parser-combinators scala-pickling scala-tools-sbinary scala-xml serp sweethome3d-furniture tomcat10 velocity visualvm wala weupnp xmlbeans Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org> ¶ highlight.js node-d3 node-mocha node-opencv node-webpack twitter-bootstrap3 underscore Debian Junior Maintainers <debian-jr@lists.debian.org> ¶ tuxpaint (U) Debian KDE Extras Team <pkg-kde-extras@lists.alioth.debian.org> ¶ ktikz kvirc rkward Debian Kdump <team+kdump@tracker.debian.org> ¶ makedumpfile Debian Kernel Team <debian-kernel@lists.debian.org> ¶ linux Debian Kolab Maintainers <team+kolab-mantainers@tracker.debian.org> ¶ libkolabxml Debian LAVA team <pkg-linaro-lava-devel@lists.alioth.debian.org> ¶ lava Debian LibreOffice Maintainers <debian-openoffice@lists.debian.org> ¶ writer2latex Debian Libvirt Maintainers <pkg-libvirt-maintainers@lists.alioth.debian.org> ¶ libguestfs Debian Lirc Team <team+debian-lirc@tracker.debian.org> ¶ lirc Debian Lynx Packaging Team <pkg-lynx-maint@lists.alioth.debian.org> ¶ lynx Debian Mactel <team+pkg-mactel-devel@tracker.debian.org> ¶ pommed Debian Math Team <team+math@tracker.debian.org> ¶ cddlib flint maxima-sage primesieve singular Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org> ¶ ball biojava-live biojava5-live biojava6-live cmtk consensuscore dicom3tools emboss filtlong fis-gtm freebayes gatb-core gbrowse gdcm heudiconv hmmer htsjdk igraph iqtree jebl2 jellyfish kallisto libamplsolver libdeflate liblemon librostlab libvbz-hdf-plugin logol macsyfinder mapsembler2 metastudent-data mia mira mrtrix3 ncbi-blast+ ncbi-igblast nipy nitime parallel pixelmed porechop pydicom python-cogent salmon segemehl seqan2 seqan3 shapeit4 treeview tvc twopaco Debian Mir Team <team+mir@tracker.debian.org> ¶ mir Debian Mobcom Maintainers <Debian-mobcom-maintainers@lists.alioth.debian.org> ¶ libosmocore Debian Mono Group <pkg-mono-group@lists.alioth.debian.org> ¶ mod-mono mono-tools Debian Multimedia Maintainers <debian-multimedia@lists.debian.org> ¶ ardour ffmpeg gsequencer handbrake jsusfx juce libcamera libdc1394 libsoxr mixxx obs-studio openni openni-sensor-pointclouds openni-sensor-primesense opensubdiv rosegarden vlc # + xawtv zytrax Debian Multimedia Maintainers <pkg-multimedia-maintainers@lists.alioth.debian.org> ¶ tsdecrypt Debian Multimedia Packages Maintainers <pkg-multimedia-maintainers@lists.alioth.debian.org> ¶ klystrack Debian MySQL Maintainers <pkg-mysql-maint@lists.alioth.debian.org> ¶ galera-3 Debian Nagios Maintainer Group <pkg-nagios-devel@lists.alioth.debian.org> ¶ icinga2 Debian Nginx Maintainers <pkg-nginx-maintainers@alioth-lists.debian.net> ¶ nginx Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org> ¶ advi + coq coq-iris hevea liquidsoap ocaml-atd ocaml-batteries ocaml-obuild ocaml-topkg ocaml-uucp ocamlviz omake # ssreflect why3 wyrd Debian OpenCL Maintainers <pkg-opencl-devel@lists.alioth.debian.org> ¶ oclgrind Debian OpenCL team <pkg-opencl-devel@lists.alioth.debian.org> ¶ intel-graphics-compiler Debian OpenStack <team+openstack@tracker.debian.org> ¶ barbican cinder cloudkitty glance heat ironic manila masakari masakari-monitors murano nova octavia openstack-trove openvswitch python-jsonschema python-psycopg2cffi qpid-proton rabbitmq-server sahara senlin watcher Debian PaN Maintainers <debian-pan-maintainers@alioth-lists.debian.net> ¶ hkl pyfai P python-fabio Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org> ¶ lemonldap-ng libmarc-charset-perl Debian PhotoTools Maintainers <pkg-phototools-devel@lists.alioth.debian.org> ¶ enblend-enfuse openimageio pfstools Debian PHP Maintainers <team+pkg-php@tracker.debian.org> ¶ php8.2 Debian Pkg-e Team <pkg-e-devel@lists.alioth.debian.org> ¶ efl Debian PostgreSQL Maintainers <team+postgresql@tracker.debian.org> ¶ libpgjava (U) pgpool2 pgsphere Debian publicity team <debian-publicity@lists.debian.org> ¶ debian-history Debian Python Modules Team <team+python@tracker.debian.org> ¶ fpylll Debian Python Team <team+python@tracker.debian.org> ¶ alembic autokey black buildbot dask dupeguru (U) firmware-microbit-micropython flask-limiter indexed-gzip ipyparallel jpylyzer kivy mayavi2 mercurial-evolve mpl-sphinx-theme (U) mypy nbconvert nbsphinx numpy (U) openlp pylint (U) pymodbus pyqwt3d (U) python-blosc python-cloup python-cycler (U) python-fudge # python-iso8601 python-mkdocs python-nacl python-parse-type python-pint python-pygraphviz (U) python-qtconsole python-scrapy python-simpy3 quodlibet radon rdflib + sphinx-gallery (U) sphinx-panels (U) sqlalchemy (U) tpm2-pytss twisted xonsh # Debian QA Group <packages@qa.debian.org> ¶ a2ps checkpw closure-compiler coinor-dylp collada2gltf esnacc freewnn gentoo haskell98-report icon lcm libbrahe lifelines madlib muse-el ns2 omnievents openclipart posixtestsuite ruby-tioga seyon ucspi-proxy Debian QEMU Team <pkg-qemu-devel@lists.alioth.debian.org> ¶ edk2 qemu Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> ¶ breeze-icons kdevelop-php kuserfeedback oxygen-icons5 plasma-workspace pyside2 qt3d-opensource-src qt6-5compat qt6-datavis3d qt6-declarative qt6-multimedia qt6-quick3d qt6-virtualkeyboard qtbase-opensource-src # # # qtcharts-opensource-src qtconnectivity-opensource-src qtcreator qtdatavis3d-everywhere-src qtdeclarative-opensource-src qtdoc-opensource-src qtgamepad-everywhere-src qtgraphicaleffects-opensource-src qtlocation-opensource-src qtnetworkauth-everywhere-src qtquickcontrols-opensource-src qtquickcontrols2-opensource-src qtscxml-everywhere-src qtsensors-opensource-src qtserialbus-everywhere-src qtserialport-opensource-src qtspeech-opensource-src qtsvg-opensource-src qttools-opensource-src qtvirtualkeyboard-opensource-src qtwayland-opensource-src qtwebchannel-opensource-src qtwebengine-opensource-src qtwebsockets-opensource-src qtwebview-opensource-src qtx11extras-opensource-src Debian R Packages Maintainers <r-pkg-team@alioth-lists.debian.net> ¶ r-bioc-biocparallel r-bioc-genomicfeatures r-bioc-ioniser r-cran-amelia r-cran-cli r-cran-cliapp r-cran-dbitest r-cran-diagnosismed r-cran-dimred r-cran-emayili r-cran-futile.logger r-cran-gert r-cran-gh r-cran-gprofiler2 r-cran-knitr r-cran-lambda.r r-cran-parsetools r-cran-r.devices r-cran-repr r-cran-rprojroot r-cran-rsdmx r-cran-rstan r-cran-sass r-cran-taxize r-cran-teachingdemos r-cran-tm r-cran-tmvtnorm r-cran-tweenr Debian Rakudo Maintainers <pkg-rakudo-devel@lists.alioth.debian.org> ¶ moarvm nqp prove6 raku-getopt-long raku-hash-merge raku-json-class raku-json-fast raku-json-marshal raku-json-name raku-json-optin raku-json-unmarshal raku-license-spdx raku-log raku-meta6 raku-readline raku-tap-harness raku-test-meta raku-uri raku-zef rakudo # Debian Remote Maintainers <debian-remote@lists.debian.org> ¶ freerdp2 python-x2go P remmina Debian Robotics Team <team+robotics@tracker.debian.org> ¶ ros2-osrf-testing-tools-cpp Debian ROCm Team <debian-ai@lists.debian.org> ¶ rocm-hipamd Debian rsbackup maintainers <rsbackup-maint@lists.alioth.debian.org> ¶ rsbackup Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers@lists.alioth.debian.org> ¶ ruby-pgplot (U) Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org> ¶ passenger ruby-pygments.rb ruby-sigar Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net> ¶ rust-configparser rust-elfx86exts rust-kmon rust-ripasso-cursive rust-sequoia-sop rust-sequoia-sq rust-sequoia-sqv rustc-web wasi-libc Debian Science Maintainers <debian-science-maintainers@alioth-lists.debian.net> ¶ cvc5 gap-scscp giac Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org> ¶ amp asl buddy + cctbx clhep + coinor-bonmin combblas deal.ii dune-common dune-functions dune-geometry dune-grid dune-grid-glue dune-istl dune-localfunctions dune-typetree dxf2gcode esys-particle euslisp freecad gap-design gap-sonata gerris gle-graphics-manual hkl (U) ignition-plugin jskeus libflame libm4ri librsb # libxsmm liggghts lmfit-py med-fichier mona mpich numexpr oce onetbb open3d openmesh opm-upscaling petsc polyml pyfai P (U) python-escript python-fabio (U) python-hdf5plugin python-xarray qutip sasview scikit-learn sfepy simbody siscone sketch skimage slepc solvespace spooles statsmodels sumo syrthes toulbar2 virtuoso-opensource visp vlfeat yp-svipc Debian Science Team <debian-science-maintainers@lists.alioth.debian.org> ¶ atlas coin3 dolfin fenics-dolfinx fftw geomview getdp getfem mrmpi neuron node-shiny-server opencv pandas # plplot ppl pyswarms sdpb Debian SDL packages maintainers <pkg-sdl-maintainers@lists.alioth.debian.org> ¶ libsdl-console Debian Security Tools <team+pkg-security@tracker.debian.org> ¶ crack de4dot john scap-security-guide Debian SELinux maintainers <selinux-devel@lists.alioth.debian.org> ¶ refpolicy secilc Debian semweb Team <team+semweb@tracker.debian.org> ¶ zeitgeist Debian Shib Team <pkg-shibboleth-devel@alioth-lists.debian.net> ¶ opensaml shibboleth-sp xmltooling Debian SOGo Maintainers <pkg-sogo-maintainers@lists.alioth.debian.org> ¶ sope Debian Sugar Team <pkg-sugar-devel@lists.alioth.debian.org> ¶ squeak-vm Debian Telepathy maintainers <pkg-telepathy-maintainers@lists.alioth.debian.org> ¶ telepathy-spec Debian Tex Maintainers <debian-tex-maint@lists.debian.org> ¶ sagetex Debian TeX maintainers <debian-tex-maint@lists.debian.org> ¶ latex-cjk-chinese-arphic Debian TeX Task Force <debian-tex-maint@lists.debian.org> ¶ cjk texworks-manual xindy Debian UBports Team <team+ubports@tracker.debian.org> ¶ content-hub lomiri lomiri-ui-toolkit mir (U) process-cpp u1db-qt Debian UEFI Maintainers <debian-efi@lists.debian.org> ¶ efitools Debian Vim Maintainers <team+vim@tracker.debian.org> ¶ neovim # Debian Virtualbox Team <team+debian-virtualbox@tracker.debian.org> ¶ kbuild Debian VoIP Team <pkg-voip-maintainers@lists.alioth.debian.org> ¶ dahdi-linux iaxmodem linphone linphone-desktop ring ucommon Debian VoIP team <pkg-voip-maintainers@lists.alioth.debian.org> ¶ asterisk-prompt-fr-armelle Debian Wine Party <debian-wine@lists.debian.org> ¶ vkd3d Debian X Strike Force <debian-x@lists.debian.org> ¶ mesa xorg-server Debian Xfce Maintainers <debian-xfce@lists.debian.org> ¶ xfce4-panel-profiles Debian XMPP Maintainers <pkg-xmpp-devel@lists.alioth.debian.org> ¶ psi-plus (U) slixmpp Debian-IN Team <debian-in-workers@lists.alioth.debian.org> ¶ fonts-smc-uroob Debichem Team <debichem-devel@lists.alioth.debian.org> ¶ abinit cp2k elpa gromacs libint madness maloc mdanalysis mdtraj mpqc nwchem openbabel opendrop pdb-tools psicode pymatgen pymol python-ase python-gsd rdkit votca Denis Barbier <barbier@debian.org> ¶ oce (U) Denis Danilov <danilovdenis@yandex.ru> ¶ flycheck (U) Dennis Braun <d_braun@kabelmail.de> ¶ ardour (U) mixxx (U) Dennis Braun <snd@debian.org> ¶ rosegarden (U) Dennis van Dok <dennisvd@nikhef.nl> ¶ igtf-policy-bundle Diane Trout <diane@ghic.org> ¶ dask (U) libkolabxml (U) python-graphviz statsmodels (U) Dima Kogan <dkogan@debian.org> ¶ openmesh (U) vlfeat (U) Dimitri Fontaine <dim@tapoueh.org> ¶ pgloader Dirk Eddelbuettel <edd@debian.org> ¶ gretl quantlib r-base r-cran-quantmod r-cran-rinside rcolorbrewer Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> ¶ xawtv (U) Dmitry Shachnev <mitya57@debian.org> ¶ qt3d-opensource-src (U) qtbase-opensource-src # # # (U) qtcharts-opensource-src (U) qtconnectivity-opensource-src (U) qtdatavis3d-everywhere-src (U) qtdeclarative-opensource-src (U) qtdoc-opensource-src (U) qtgamepad-everywhere-src (U) qtgraphicaleffects-opensource-src (U) qtlocation-opensource-src (U) qtnetworkauth-everywhere-src (U) qtquickcontrols-opensource-src (U) qtquickcontrols2-opensource-src (U) qtscxml-everywhere-src (U) qtsensors-opensource-src (U) qtserialbus-everywhere-src (U) qtserialport-opensource-src (U) qtspeech-opensource-src (U) qtsvg-opensource-src (U) qttools-opensource-src (U) qtvirtualkeyboard-opensource-src (U) qtwayland-opensource-src (U) qtwebchannel-opensource-src (U) qtwebengine-opensource-src (U) qtwebsockets-opensource-src (U) qtwebview-opensource-src (U) qtx11extras-opensource-src (U) Dmitry Smirnov <onlyjob@debian.org> ¶ docker.io (U) gnucash-docs scummvm (U) zabbix Dominique Belhachemi <domibel@debian.org> ¶ mrmpi (U) tvc (U) Dominique Dumont <dod@debian.org> ¶ moarvm (U) nqp (U) prove6 (U) raku-getopt-long (U) raku-hash-merge (U) raku-json-class (U) raku-json-fast (U) raku-json-marshal (U) raku-json-name (U) raku-json-optin (U) raku-json-unmarshal (U) raku-license-spdx (U) raku-log (U) raku-meta6 (U) raku-readline (U) raku-tap-harness (U) raku-test-meta (U) raku-uri (U) raku-zef (U) rakudo # (U) ruby-pygments.rb (U) Don Armstrong <don@debian.org> ¶ lilypond (U) Doug Torrance <dtorrance@debian.org> ¶ r-cran-r.devices (U) Dr. Tobias Quathamer <toddy@debian.org> ¶ flightgear (U) lilypond (U) rapid-photo-downloader Drew Parsons <dparsons@debian.org> ¶ combblas (U) dolfin (U) fenics-dolfinx (U) gerris (U) mdanalysis (U) mdtraj (U) opendrop (U) petsc (U) pymatgen (U) python-gsd (U) qutip (U) sasview (U) slepc (U) Dylan Aïssi <daissi@debian.org> ¶ libcamera (U) libofx pipewire (U) r-cran-gh (U) r-cran-tm (U) rkward (U) shapeit4 (U) wireplumber (U) Dylan R. E. Moonfire <debian@mfgames.com> ¶ mod-mono (U) taoframework (U) Eduard Bloch <blade@debian.org> ¶ icewm liquidwar (U) Edward Wang <edward.c.wang@compdigitec.com> ¶ vlc # + (U) Elana Hashman <ehashman@debian.org> ¶ clojure (U) core-specs-alpha-clojure (U) leiningen-clojure + (U) spec-alpha-clojure (U) Elimar Riesebieter <riesebie@lxtec.de> ¶ lynx (U) Emanuele Rocca <ema@debian.org> ¶ arm-compute-library (U) systemtap Emilio Pozuelo Monfort <pochu@debian.org> ¶ gegl (U) telepathy-spec (U) Emmanuel Arias <eamanu@yaerobi.com> ¶ python-blosc (U) Emmanuel Arias <emmanuelarias30@gmail.com> ¶ libcamera (U) Emmanuel Bourg <ebourg@apache.org> ¶ aspectj (U) bcel (U) bnd (U) bsh (U) c3p0 (U) cobertura (U) commons-beanutils (U) commons-csv (U) commons-io (U) derby (U) gradle-kotlin-dsl + (U) h2database (U) httpcomponents-client (U) jakarta-jmeter + (U) jsch (U) jsoup (U) libapache-poi-java (U) libcommons-codec-java (U) libcommons-collections3-java (U) libcommons-collections4-java (U) libcommons-compress-java (U) libcommons-fileupload-java (U) libcommons-lang3-java (U) libcommons-net-java (U) libxbean-java (U) libxml-security-java (U) mp4parser (U) scala-parser-combinators (U) scala-tools-sbinary (U) scala-xml (U) tomcat10 (U) visualvm (U) xmlbeans (U) Emmanuel Kasper <emmanuel@libera.cc> ¶ mame (U) Eric Dorland <eric@debian.org> ¶ automake1.11 gnupg2 (U) Etienne Dysli Metref <etienne.dysli-metref@switch.ch> ¶ opensaml (U) shibboleth-sp (U) xmltooling (U) Etienne Millon <me@emillon.org> ¶ gmpc (U) Eugene Zhukov <jevgeni.zh@gmail.com> ¶ saxonb (U) Fabian Grünbichler <debian@fabian.gruenbichler.email> ¶ rustc-web (U) Fabien Spindler <Fabien.Spindler@inria.fr> ¶ visp (U) Fabio Augusto De Muzio Tobich <ftobich@debian.org> ¶ ipqalc puzzle-jigsaw Federico Brega <charon.66@gmail.com> ¶ cyclograph Federico Ceratto <federico@debian.org> ¶ uncertainties Felix Geyer <fgeyer@debian.org> ¶ qtconnectivity-opensource-src (U) qtserialport-opensource-src (U) qtsvg-opensource-src (U) qttools-opensource-src (U) qtx11extras-opensource-src (U) teeworlds (U) Felix Krull <f_krull@gmx.de> ¶ speedcrunch Felix Lechner <felix.lechner@gmail.com> ¶ linphone (U) Felix Natter <fnatter@gmx.net> ¶ freeplane (U) groovy (U) Felix Salfelder <felix@salfelder.org> ¶ libm4ri (U) Felix Zielcke <fzielcke@z-51.de> ¶ grub2 + + + + (U) Ferenc Wágner <wferi@debian.org> ¶ opensaml (U) pacemaker (U) shibboleth-sp (U) xmltooling (U) Filip Strömbäck <filip@fprg.se> ¶ storm-lang Filippo Giunchedi <filippo@debian.org> ¶ prometheus-mysqld-exporter (U) Filippo Rusconi <lopippo@debian.org> ¶ libpwiz (U) minexpert2 (U) openms (U) Florian Hackenberger <florian@hackenberger.at> ¶ ktikz (U) Francesco Paolo Lovergine <frankie@debian.org> ¶ gdal (U) grass (U) icmake jts (U) mapnik (U) nco (U) proftpd-dfsg (U) proj (U) ypserv Francois Marier <francois@debian.org> ¶ fwknop Frank B. Brokken <f.b.brokken@rug.nl> ¶ icmake (U) Frank Hofmann <frank.hofmann@efho.de> ¶ dpmb (U) Free Ekanayaka <freee@debian.org> ¶ mixxx (U) rosegarden (U) Freexian Packaging Team <team+freexian@tracker.debian.org> ¶ python-hdf5plugin (U) Frédéric Bonnard <frediz@linux.vnet.ibm.com> ¶ json4s (U) sbt-serialization (U) scala-pickling (U) scala-tools-sbinary (U) George Danchev <danchev@spnet.net> ¶ icmake (U) Georges Khaznadar <georgesk@debian.org> ¶ expeyes jsxgraph kicad (U) pampi Georges Racinet <georges.racinet@octobus.net> ¶ mercurial-evolve (U) Georgios Pinitas <georgios.pinitas@arm.com> ¶ arm-compute-library (U) Gergely Pilisi <mail.pilisig@gmail.com> ¶ eclipse-titan Gert Wollny <gewo@debian.org> ¶ dicom3tools (U) gdcm (U) mia (U) Ghislain Antony Vaillant <ghisvail@gmail.com> ¶ python-xarray (U) Gianfranco Costamagna <locutusofborg@debian.org> ¶ kbuild (U) Gijs Molenaar <gijs@pythonic.nl> ¶ montage (U) Gilles Filippini <pini@debian.org> ¶ giac (U) med-fichier (U) syrthes (U) Giovani Augusto Ferreira <giovani@debian.org> ¶ crack (U) Giovanni Mascellani <gio@debian.org> ¶ boost1.74 (U) boost1.81 (U) mathpiper (U) Giuseppe Sacco <eppesuig@debian.org> ¶ hylafax Gordon Ball <gordon@chronitis.net> ¶ nbconvert (U) r-cran-repr (U) xonsh # (U) Graham Inggs <ginggs@debian.org> ¶ deal.ii (U) elpa (U) madness (U) python-ase (U) Greg Horn <gregmainland@gmail.com> ¶ coinor-ipopt gregor herrmann <gregoa@debian.org> ¶ jabref (U) libmarc-charset-perl (U) mimetic GRUB Maintainers <pkg-grub-devel@alioth-lists.debian.net> ¶ grub2 + + + + Gudjon I. Gudjonsson <gudjon@gudjon.org> ¶ comedilib + ngspice (U) pyqwt3d Guido Günther <agx@sigxcpu.org> ¶ libadwaita-1 (U) libguestfs (U) multipath-tools (U) Guido Trotter <ultrotter@debian.org> ¶ ganeti (U) Guillaume Mazoyer <respawneral@gmail.com> ¶ java-gnome (U) Guillem Jover <gjover@sipwise.com> ¶ victoriametrics (U) Gustavo Iñiguez Goya <gustavo.iniguez.goya@gmail.com> ¶ opensnitch (U) gustavo panizzo <gfa@zumbi.com.ar> ¶ nova (U) Göran Weinholt <weinholt@debian.org> ¶ chezscheme Gürkan Myczko <gurkan@phys.ethz.ch> ¶ klystrack (U) lie netsurf (U) zytrax (U) Gürkan Myczko <tar@debian.org> ¶ mdnsd ssocr Hakan Ardo <hakan@debian.org> ¶ avr-libc gcc-avr Hans-Christoph Steiner <hans@eds.org> ¶ android-platform-external-libunwind (U) Harlan Lieberman-Berg <hlieberman@debian.org> ¶ plover Hideki Yamane <henrich@debian.org> ¶ yudit HIGUCHI Daisuke (VDR dai) <dai@debian.org> ¶ open-jtalk Hilko Bengen <bengen@debian.org> ¶ augeas de4dot (U) hyperic-sigar (U) libguestfs (U) lucene4.10 (U) rust-laurel Hilmar Preusse <hille42@web.de> ¶ cjk (U) latex-cjk-chinese-arphic (U) texworks-manual (U) xindy (U) Hilmar Preuße <hille42@debian.org> ¶ proftpd-dfsg (U) Holger Wansing <holgerw@debian.org> ¶ refcard (U) Hubert Chathi <uhoreg@debian.org> ¶ nheko (U) noweb Håvard F. Aasen <havard.f.aasen@pfft.no> ¶ scap-security-guide (U) Héctor Orón Martínez <zumbi@debian.org> ¶ dejagnu gdb uclibc (U) Ian Jackson <ijackson@chiark.greenend.org.uk> ¶ userv Ignace Mouzannar <mouzannar@gmail.com> ¶ python-scrapy (U) Ileana Dumitrescu <ileanadumi95@protonmail.com> ¶ giac (U) ImageMagick Packaging Team <pkg-gmagick-im-team@lists.alioth.debian.org> ¶ imagemagick IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> ¶ ardour (U) jsusfx (U) juce (U) libcamera (U) obs-studio (U) Ivan Udovichenko <iudovichenko@mirantis.com> ¶ murano (U) Jack Coulter <jscinoz@gmail.com> ¶ teeworlds (U) Jakub Adam <jakub.adam@ktknet.cz> ¶ bnd (U) commons-io (U) httpcomponents-client (U) jsoup (U) libcommons-compress-java (U) lombok (U) James Cowgill <jcowgill@debian.org> ¶ ffmpeg (U) James McCoy <jamessan@debian.org> ¶ git-hub (U) kitty msgpack-cxx neovim # (U) subversion # James Page <james.page@ubuntu.com> ¶ httpunit (U) java-xmlbuilder (U) libcommons-codec-java (U) rabbitmq-server (U) James Price <jamesprice.dev@gmail.com> ¶ oclgrind (U) James Troup <binutils@elmo.tasta.io> ¶ binutils # (U) James Valleroy <jvalleroy@mailbox.org> ¶ weupnp (U) Jameson Graef Rollins <jrollins@finestructure.net> ¶ notmuch (U) Jan Dittberner <jandd@debian.org> ¶ python-fudge # (U) Jan Mojžíš <jan.mojzis@gmail.com> ¶ nginx (U) Jan Wagner <waja@cyconet.org> ¶ icinga2 (U) Janos Lenart <ocsi@debian.org> ¶ kubernetes Jaromír Mikeš <mira.mikes@seznam.cz> ¶ ardour (U) Javier Fernandez-Sanguino <jfs@debian.org> ¶ debian-history (U) Javier Fernández-Sanguino Peña <jfs@debian.org> ¶ samhain Jeff Epler <jepler@gmail.com> ¶ linuxcnc (U) Jelmer Vernooij <jelmer@debian.org> ¶ ledger2beancount Jeremy Bicha <jbicha@debian.org> ¶ gnome-video-arcade (U) pipewire (U) Jeremy Bicha <jbicha@ubuntu.com> ¶ gegl (U) libadwaita-1 (U) mm-common (U) Jeroen Dekkers <jeroen@dekkers.ch> ¶ sope (U) Jerome Benoit <calculus@rezozer.net> ¶ firehol fpylll (U) gap-design (U) gap-scscp (U) gap-sonata (U) igraph (U) nbsphinx (U) primesieve (U) sagetex (U) singular (U) Jerome Kieffer <jerome.kieffer@esrf.fr> ¶ pyfai P (U) python-fabio (U) Jessica Clarke <jrtc27@debian.org> ¶ polyml (U) Jo Shields <directhex@apebox.org> ¶ gtk-sharp-beans (U) mod-mono (U) mono-debugger-libs nrefactory (U) opentk (U) sdb zeitgeist-sharp (U) Joachim Reichel <reichel@debian.org> ¶ cppcheck Joachim Wiberg <troglobit@gmail.com> ¶ mdnsd (U) Joachim Wiedorn <joodebian@joonet.de> ¶ hylafax (U) Joan Lledó <jlledom@member.fsf.org> ¶ lwip Joan Queralt Molina <joanq.biogenesis@gmail.com> ¶ biogenesis (U) Joao Eriberto Mota Filho <eriberto@debian.org> ¶ obs-ashmanix-countdown obs-downstream-keyer obs-scene-collection-manager obs-scene-notes-dock obs-source-copy obs-transition-table qabcs ulcc Jochen Sprickerhof <jspricke@debian.org> ¶ h2database (U) jameica-h2database (U) mckoisqldb (U) open3d (U) openni (U) openni-sensor-pointclouds (U) openni-sensor-primesense (U) wyrd (U) Joel Fenwick <j.oelpublic@gmail.com> ¶ python-escript (U) Joerg Dorchain <joerg@dorchain.net> ¶ iaxmodem (U) Johan Fleury <jfleury@arcaik.net> ¶ age (U) Johan Mattsson <johan@beteckna.se> ¶ fonts-beteckna (U) Johannes Ring <johannr@simula.no> ¶ dolfin (U) John Goerzen <jgoerzen@complete.org> ¶ ldap-haskell (U) pygopherd John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> ¶ ausweisapp2 fs-uae Johnny Willemsen <jwillemsen@remedy.nl> ¶ ace (U) Jonas Smedegaard <dr@jones.dk> ¶ eye squeak-vm (U) syncevolution + zeitgeist (U) Jonathan Carter <jcc@debian.org> ¶ tuxpaint Jonathan McDowell <noodles@earth.li> ¶ remote-tty Jool Team <jool@nic.mx> ¶ jool Joost van Baal-Ilić <joostvb@debian.org> ¶ r-cran-knitr (U) r-cran-tweenr (U) Jordan Justen <jljusten@debian.org> ¶ piglit + Jordi Mallach <jordi@debian.org> ¶ gnome-video-arcade (U) grub2 + + + + (U) mame (U) sope (U) Jose Carlos Garcia Sogo <jsogo@debian.org> ¶ cecil-flowanalysis (U) db4o (U) Jose G. López <josgalo@jglopez.name> ¶ scid Jose Luis Rivero <jrivero@osrfoundation.org> ¶ ignition-physics ignition-plugin (U) simbody (U) Jose M Calhariz <calhariz@debian.org> ¶ amanda Jose M Calhariz <jose@calhariz.com> ¶ librep sawfish Joseph Nahmias <jello@debian.org> ¶ freetds ipyparallel (U) Josip Rodin <joy-packages@debian.org> ¶ maint-guide (U) Josselin Mouette <joss@debian.org> ¶ gegl (U) Joël Krähemann <jkraehemann@gmail.com> ¶ gsequencer (U) Juan Cespedes <cespedes@debian.org> ¶ linux86 Julian Andres Klode <jak@debian.org> ¶ grub2 + + + + (U) Julian Gilbey <jdg@debian.org> ¶ epix python-qtconsole (U) Julian Taylor <jtaylor.debian@googlemail.com> ¶ keepass2 (U) nunit (U) Julien Puydt <jpuydt@debian.org> ¶ coq (U) coq-iris (U) flint (U) fpylll (U) libm4ri (U) mnemosyne nbconvert (U) ocaml-uucp (U) ssreflect (U) Julien Schueller <schueller@phimeca.com> ¶ coinor-bonmin (U) Julián Moreno Patiño <julian@debian.org> ¶ john (U) Jérémy Lal <kapouer@melix.or | 2026-01-13T09:30:28 |
https://help.qiita.com/ | Qiita ヘルプ Qiita Qiitaとは Qiitaとは Qiitaへの思い Qiitaのサービス名の由来 Qiita表彰プログラムとは ガイドライン コミュニティガイドライン 良い記事を書くためのガイドライン 良い質問を書くためのガイドライン 機能 会員登録するとできること テーマカラー設定(ダークテーマへの切替) ユーザーページ(マイページ)の名称と機能 フィード機能(ホーム・タイムライン・トレンド) フォロー機能 いいね機能 ストック機能 検索機能 タグ機能 購読機能 メンション機能 ミュート機能 ブロック機能 通報機能 Webプッシュ通知 Contributionとは バッジ機能 設定ページでできること 公開用プロフィール・ユーザー名の変更 アイコン画像の設定 言語の設定 外部サービスのアカウント連携 支援サービス(GitHub Sponsors連携) メールアドレスの変更・通知設定 二段階認証の再設定 ベータ版切り替え Googleアナリティクス設定 退会方法 記事の投稿 記事を投稿する 限定共有投稿について 記事の編集・編集履歴の確認方法 記事を削除する 編集リクエストを送る・受け取る 画像のアップロード・削除方法 Qiita Markdown Qiitaの投稿をMarkdown表示にする方法 Qiitaのシンタックスハイライトについて スライドモードについて 絵文字の利用について 記事投稿キャンペーンについて 認証等 OAuth認証について メール認証が出来ない場合 パスワードを変更する パスワードを再設定する 連携アカウントを削除した際のログイン方法 質問 質問を投稿する 質問へ回答する 質問の編集・削除について 質問フィード・人気の質問 質問をクローズする アドベントカレンダー Qiita Advent Calendar について カレンダーの探し方 カレンダーに参加する カレンダーを作成する Organizationカレンダーの作成 カレンダーの記事を閲覧する Advent Calendar ランキング Organization Qiita Organizationとは Organizationの作成方法 Organizationの参加・脱退方法 記事とOrganizationの紐付け方法 Organizationの設定について OrganizationのGoogleアナリティクス設定 Organizationの削除方法 Qiita Teamとの違いについて 法律・規約等 著作物を引用する際の注意点 翻訳ツールを利用する際の注意 肖像権・パブリシティ権について 著書や人のブログにまつわる記事を書くと著作権違反になる? 自分の記事が無断転載された場合 その他 よくあるお問い合わせ 対応ブラウザ PWA(プログレッシブウェブアプリ)について Qiitaニュースについて Qiita API・スクレイピングについて Qiitaのデータを元にして作成したサービス・アプリに広告などを設置しても良い? Qiita Team その他 Qiita Teamのヘルプ その他 ガイドライン メディアキット © 2025 Qiita Inc. 利用規約 プライバシー ヘルプ お問い合わせ Qiita Qiita Team Qiita Blog | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/2011/10/macs-and-me.html#main | don't count on finding me: Macs and me skip to main | skip to sidebar don't count on finding me Wednesday, October 5, 2011 Macs and me I am profoundly saddened since I woke up at 4:00am in the morning, and saw the news headline about the passing of Steve Jobs. I have seen this coming for a long time, as my father died in a very similar way back 1993 with only 52. Looking at the thin appearance of Jobs in the last month or even years I constantly get reminded of him. Basically the same story of suffering, loss of weight, liver transplant (in vain), death. RIP, Dad, RIP, Steve. I am writing this on a rusty vintage 2000 PowerBook G4 Titanium, I bought on eBay last year, because the video of my own 2001 TiBook went black. By today's web standards completely inadequate, it serves me well for news reading, terminal logins, etc. My son Pedro got his MacBook Pro 15'' delivered just today. An awesome piece of technology. My father bought the first Mac in 1986, just after opening his practice as a neurologist. This was two years after cutting all strings in Hungary and fleeing to Germany in a pretty bold move. Must have been a moment of total self-overestimation when I promised to my dad "if you buy that Mac Plus I'll write you the best software for it for your doctor's office". A crazy time began. At day the Mac was used to keep patient's data with a DTP program "RagTime", at 5pm I hauled the Mac home (in a big black bag) and started writing the program. Sometimes deep into the night. I used Turbo Pascal (and later MPW) after figuring out that the Lisp environment I preferred simply did not cut it due to insufficient support of the Toolbox. In the morning my father carried the Mac back and powered it up. Less than year later the program was ready for productive work. A Mac SE joined the party and we had a networked doctor's application with a really neat windowed user interface, that would put even today's programs to shame in this regard. There was even a time when we fancied marketing this product, but my university duties and the early death of my father simply negated all plans to this end. When I had my diploma in my hands I picked up the phone and called the guy who sold us the Mac Plus and a copy of "Inside Macintosh" back in '86. In the meantime he founded a pretty successful company around a networked admin solution called 'netOctopus' which was his baby. We occasionally met at Apple developer events and I new that he was a pretty damn good coder. He hired me and I was earning money by programming Macs! So yes, I love Macs and there is no reason that this will change in the foreseeable future. I kept telling to myself, should Jobs die one day, I'll put that Mac Plus (now in my basement and still functional) up for sale at eBay. My thought today: "screw it – too many fond memories attached". Posted by heisenbug at 9:39 PM Labels: family , mac , sadness 3 comments: MARCO ANTONIO MENELAU said... muito bonito gabor. Parabens. homenagemjusta a um grande homemn October 6, 2011 at 2:24 AM Cristina Menelau said... Gostei muito, me emocionei com sua história. Todos lamentamos a morte prematura de Jobs mas, a vida tem dessas surpresas. Um gênio sai de cena, aguardemos que outro apareça para preenchê-la proém, sem jamais esquecer os que se foram. October 6, 2011 at 6:04 AM RecaPortella said... Que história emocionante Gabor! Parabéns por conseguir em palavras descrever momentos e histórias como essa. Triste, porém cheia de ensinamentos em todos os sentidos. Agora é esperar o tempo levar um pouco dessa tristeza e continuar seguindo a vida lembrando sempre dos bons ensinamentos que grandes pessoas com essas nos deixaram! Bjs October 6, 2011 at 10:10 AM Post a Comment Newer Post Older Post Home Subscribe to: Post Comments (Atom) Blog Archive ►  2022 (1) ►  February (1) ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ▼  2011 (7) ►  December (1) ►  November (1) ▼  October (1) Macs and me ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://blog.nyveldt.com/tag/screencast | Home - Al Nyveldt Al Nyveldt Home About Now Checking out Xamarin Insights Dec 06, 2015 One of the really cool things that came out with Xamarin 4 is Xamarin Insights. Xamarin Insights is an incredibly easy way to get detailed real time app monitoring in your apps. RazorPub is live Aug 25, 2015 Back in the beginning of the year, I forked MiniBlog to create a simple Markdown based blog platform called RazorPub. I had expected to clean it up and... Development Introducing RazorPDF Oct 15, 2012 Click to read more... Development BlogEngine.NET Installation Screencast Feb 03, 2010 Click to read more... Screencasts Installation screencasts for BlogEngine.NET 1.5 Apr 06, 2009 Click to read more... Screencasts Installing BlogEngine.NET with the Microsoft Web App Gallery Mar 18, 2009 Click to read more... BlogEngine.NET Using VistaDB Express with BlogEngine.NET 1.4 Jul 03, 2008 Click to read more... BlogEngine.NET Setting up BlogEngine.NET 1.4 to use SQL Server Jul 02, 2008 Click to read more... BlogEngine.NET BlogEngine.NET 1.4 Installation Screencast Jul 01, 2008 Click to read more... BlogEngine.NET Quotes of the Day Widget Installation and Update Feb 27, 2008 Click to read more... BlogEngine.NET Previous 1 2 Next Al Nyveldt Hi. I'm a software developer from central Pennsylvania, USA. Pinned Posts Keep GitHub Copilot from going off the rails with instructions files AI Journey: From Annoying to Essential Categories AI Journey (3) Audio (7) BlogEngine.NET (60) Books (2) Business (2) Development (41) Hardware (5) iDevBlogADay (6) iOS (8) Personal (14) Screencasts (15) Software (21) Web (3) Tags ai , app store , applescript , blogengine.net , blogml , book review , code camp , codemash , codeplex , coding , community , compiling , conference , control , copilot , crystal reports , das blog , dev tools , download , extensions , family , faq , feed reading , fitness , flash drive , fun , games , google reader , idevblogaday , ios , iPad , iphone , ipod , mcp , membership , metaweblog api , microsoft , migration , mix , monotouch , monsterid , mvc , mysql , nike+ , open source , organization , patch , personal , podcasts , powershell , profittrain , provider model , razorpdf , razorpub , release , reuse , review , running , runnow , screencast , security , snippets , sourcesafe , spark , sparrow , sql server , sqlite , starter kit , subtext , subversion , sudokukids , testing , theme , training , upgrade , utilities , video , vistadb , visual studio , widget , windows live writer , xamarin Subscribe Get notified about new posts and updates. Thank you! Please check your email and click the confirmation link to complete your subscription. Subscribe Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way. © 2026 Al Nyveldt. All rights reserved. Published with QuillKit / Sign in | 2026-01-13T09:30:28 |
https://ko-kr.facebook.com/login/?next=https%3A%2F%2Fl.facebook.com%2Fl.php%3Fu%3Dhttps%253A%252F%252Fwww.instagram.com%252F%26amp%253Bh%3DAT0OsAp-lFSGEWjYmPvYNTUQcoqXqsCsZp-dQE42aJkTB2RSDj8dQbTuEmmuQXmHnjeEd8PV-yxfDqCIoqOsn5jvYyEwDfT8fLAKM5EPmWJQH9ss4etRxIkLNNQD05ysgD9xtY2gWaKgLq14 | Facebook Facebook 이메일 또는 휴대폰 비밀번호 계정을 잊으셨나요? 새 계정 만들기 일시적으로 차단됨 일시적으로 차단됨 회원님의 이 기능 사용 속도가 너무 빠른 것 같습니다. 이 기능 사용에서 일시적으로 차단되었습니다. Back 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 中文(简体) 日本語 Português (Brasil) Français (France) Deutsch 가입하기 로그인 Messenger Facebook Lite 동영상 Meta Pay Meta 스토어 Meta Quest Ray-Ban Meta Meta AI Meta AI 콘텐츠 더 보기 Instagram Threads 투표 정보 센터 개인정보처리방침 개인정보 보호 센터 정보 광고 만들기 페이지 만들기 개발자 채용 정보 쿠키 AdChoices 이용 약관 고객 센터 연락처 업로드 및 비사용자 설정 활동 로그 Meta © 2026 | 2026-01-13T09:30:28 |
http://hackage.haskell.org/package/semigroupoids-1.3 | semigroupoids: Haskell 98 semigroupoids: Category sans id Hackage :: [Package] Search Browse What's new Upload User accounts semigroupoids : Haskell 98 semigroupoids: Category sans id [ bsd2 , comonads , control , library ] [ Propose Tags ] [ Report a vulnerability ] Provides a wide array of semigroupoids and operations for working with semigroupds. A Semigroupoid is a Category without the requirement of identity arrows for every object in the category. When working with comonads you often have the <*> portion of an Applicative , but not the pure . This was captured in Uustalu and Vene's "Essence of Dataflow Programming" in the form of the ComonadZip class in the days before Applicative . Apply provides a weaker invariant, but for the comonads used for data flow programming (found in the streams package), this invariant is preserved. Applicative function composition forms a semigroupoid. Similarly many structures are nearly a comonad, but not quite, for instance lists provide a reasonable extend operation in the form of tails , but do not always contain a value. Ideally the following relationships would hold: Traversable <---- Foldable <--- Functor ------> Alt ---------> Plus Semigroupoid | | | | | v v v v v Traversable1 <--- Foldable1 Apply --------> Applicative -> Alternative Category | | | | v v v v Bind ---------> Monad -------> MonadPlus Arrow Apply, Bind, and Extract give rise the Static, Kleisli and Cokleisli semigroupoids respectively. This lets us remove many of the restrictions from various monad transformers as in many cases the binding operation or <*> operation does not require them. Finally, to work with these weaker structures it is beneficial to have containers that can provide stronger guarantees about their contents, so versions of Traversable and Foldable that can be folded with just a Semigroup are added. Modules [ Index ] Data Functor Data.Functor.Alt Data.Functor.Apply Data.Functor.Bind Data.Functor.Bind.Trans Data.Functor.Plus Semigroup Data.Semigroup.Foldable Data.Semigroup.Traversable Data.Semigroupoid Data.Semigroupoid.Dual Data.Semigroupoid.Static Downloads semigroupoids-1.3.tar.gz [ browse ] (Cabal source package) Package description ( revised from the package) Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'. Maintainer's Corner Package maintainers EdwardKmett , EricMertens , ryanglscott For package maintainers and hackage trustees edit package information Candidates 5.2.1 Versions [ RSS ] 1.0.0 , 1.1.0 , 1.1.1 , 1.1.2 , 1.1.3 , 1.2.0 , 1.2.1 , 1.2.2 , 1.2.2.1 , 1.2.2.2 , 1.2.2.3 , 1.2.2.4 , 1.2.4 , 1.2.5 , 1.2.6 , 1.2.6.1 , 1.2.6.2 , 1.3 , 1.3.1 , 1.3.1.1 , 1.3.1.2 , 1.3.2 , 1.3.2.1 , 1.3.3 , 1.3.4 , 3.0 , 3.0.0.1 , 3.0.0.2 , 3.0.1 , 3.0.2 , 3.0.3 , 3.1 , 4.0 , 4.0.1 , 4.0.2 , 4.0.2.1 , 4.0.3 , 4.0.4 , 4.2 , 4.3 , 4.5 , 5 , 5.0.0.1 , 5.0.0.2 , 5.0.0.3 , 5.0.0.4 , 5.0.1 , 5.1 , 5.2 , 5.2.1 , 5.2.2 , 5.3 , 5.3.1 , 5.3.2 , 5.3.3 , 5.3.4 , 5.3.5 , 5.3.6 , 5.3.7 , 6 , 6.0.0.1 , 6.0.1 , 6.0.2 ( info ) Dependencies base (>=4 && <4.6) , comonad (>=1.1.1.2 && <1.2) , containers (>=0.3 && <0.5) , contravariant (>=0.2.0.1 && <0.3) , semigroups (>=0.8.2 && <0.9) , transformers (>=0.3 && <0.4) [ details ] License BSD-3-Clause Copyright Copyright (C) 2011 Edward A. Kmett Author Edward A. Kmett Maintainer Edward A. Kmett <ekmett@gmail.com> Uploaded by EdwardKmett at 2012-04-09T06:01:04Z Revised Revision 1 made by HerbertValerioRiedel at 2015-01-03T09:39:26Z Stability provisional --> Category Control , Comonads Home page http://github.com/ekmett/semigroupoids Source repo head: git clone git://github.com/ekmett/semigroupoids.git Distributions Arch: 6.0.1 , Debian: 5.3.4 , Fedora: 6.0.1 , FreeBSD: 5.0.0.3 , LTSHaskell: 6.0.1 , NixOS: 6.0.1 , Stackage: 6.0.2 , openSUSE: 6.0.1 Reverse Dependencies 216 direct, 9047 indirect [ details ] Downloads 309284 total (292 in the last 30 days) Rating 2.5 (votes: 9) [estimated by Bayesian average ] Your Rating λ λ λ Status Docs uploaded by user Build status unknown [ no reports yet ] Produced by hackage and Cabal 3.16.1.0. | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/2014/11/unembedded-associations.html | don't count on finding me: Unembedded associations skip to main | skip to sidebar don't count on finding me Thursday, November 6, 2014 Unembedded associations Everytime I start understanding the gist of a paper that appeared unfathomable to me a few months before, a strange thing happens to me. My brain often wanders off, and creates interesting new bridges, on which my thoughts begin to run and reach new previously unchartered land. This same thing happened to me when reading Atkey et al.'s "Unembedding Domain-Specific Languages" . Here I encountered my old friend, the HOAS lambda vocabulary class LC expr where lam :: (expr → expr) → expr app :: expr → expr → expr Freely associating I came up with an idea how to simulate a limited form of duck typing for conditionals: class Condition expr toBool :: expr → Bool cond :: expr → a → a → a cond c th el = if toBool c then th else el This would allow to retrofit many condition-like data types with this vocabulary. Nothing , 0 , (Left _) all could serve as false . Maybe I could even follow Conor McBride's advice and make the then and else arms of the conditional differently typed. Though I would need associated types for that. Duck typing may turn out like a good idea in a statically typed language, when implemented this way. Another use case would be function application by the built-in juxtaposition syntax. It already means different things in different syntactic contexts, like function application or type (family) application. Idiom brackets come to my mind. Edward Kmett's Apply class looks like a good candidate for a related vocabulary. The typing rule would be implemented by an associated (injective) type family. Hopefully someday we'll see -XRebindableSyntax for value-level application, that is type-directed. Posted by heisenbug at 3:57 PM Labels: finally-tagless , haskell , HOAS No comments: Post a Comment Newer Post Older Post Home Subscribe to: Post Comments (Atom) Blog Archive ►  2022 (1) ►  February (1) ▼  2014 (5) ▼  November (1) Unembedded associations ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://vi-vn.facebook.com/login/?next=https%3A%2F%2Fwww.facebook.com%2Fshare_channel%2F%3Ftype%3Dreshare%26amp%253Blink%3Dhttps%253A%252F%252Fdev.to%252Fcodesolutionshub%252Fhow-to-use-large-language-models-llms-to-improve-your-software-development-process-3f6h%26amp%253Bapp_id%3D966242223397117%26amp%253Bsource_surface%3Dexternal_reshare%26amp%253Bdisplay%26amp%253Bhashtag | Facebook Khám phá những điều bạn yêu thích . Đăng nhập vào Facebook Email hoặc số di động Mật khẩu Đăng nhập Quên mật khẩu? Tạo tài khoản mới Tiếng Việt 한국어 English (US) Bahasa Indonesia ภาษาไทย Español 中文(简体) Ngôn ngữ khác... Đăng ký Đăng nhập Messenger Facebook Lite Video Meta Pay Cửa hàng trên Meta Meta Quest Ray-Ban Meta Meta AI Nội dung khác do Meta AI tạo Instagram Threads Trung tâm thông tin bỏ phiếu Chính sách quyền riêng tư Trung tâm quyền riêng tư Giới thiệu Tạo quảng cáo Tạo Trang Nhà phát triển Tuyển dụng Cookie Lựa chọn quảng cáo Điều khoản Trợ giúp Tải thông tin liên hệ lên & đối tượng không phải người dùng Meta © 2026 | 2026-01-13T09:30:28 |
https://www.destroyallsoftware.com | Destroy All Software Destroy All Software Content Screencasts Execute Program Programmer's Compendium Conference Talks Account Sign In Sign Up Company Blog Contact Privacy Policy FAQ EULA The lambda calculus is so simple that it doesn't seem to be computing at all, yet it's as powerful as any CPU. The halting problem is easy to state: "will a given function terminate or not?" No computer can solve it. The Chomsky hierarchy relates programming languages, state machines, regexes, and linguistics. All computing systems follow these rules and many others, both in theory and in practice . Ten dense screencasts cover the major computational topics using code, but no mathematical notation . Watch the introduction ▼ The 90 classic Destroy All Software screencasts explain advanced programming practices via concrete examples: testing , design , fluency with tools like Unix shells , and other topics. Customers rave about their density, concision, breadth of scope, and depth of detail. "One of the DAS screencasts (tarpipe) just taught what took a few weeks in my Operating Systems II back in college." — Vinícius Baggio "The screencasts @garybernhardt makes are the kind you can rewatch every few months and learn more from each time." — Casey Brant "This week's Destroy All Software screencast by @garybernhardt is one of the best lessons on just testing one thing ever." — James Edward Gray II Browse The Catalog → Execute Program is a learning platform that teaches you programming tools quickly, using spaced repetition to ensure that you remember them. Courses are made up primarily of code examples, not text, and all code examples are interactive. A typical course contains hundreds of small examples, slowly increasing in complexity. Full access to Execute Program is included with all Destroy All Software subscriptions. Destroy All Software subscriptions cost $29 per month , which grants access to both the back catalog and new releases. The format may change over time: screencasts, text, or maybe something entirely new. This is the outlet for Gary's thoughts about software development in whatever form they take. If the schedule or the format change in ways that you don't like, don't worry: Destroy All Software has a permissive refund policy . You can always cancel from the website; we won't make you send an awkward email to support. You can also email support for a refund within a month of your most recent charge. Subscribe · $29 /mo $29 / month I'm Gary Bernhardt. You know me from Wat and, with luck, from Boundaries or The Birth & Death of JavaScript . These screencasts are the ones that I wish I'd had for myself: dense, brief, concrete demonstrations of topics that we usually only talk about in the abstract. Content Screencasts Execute Program Programmer's Compendium Conference Talks Account Sign In Sign Up Company Blog Contact Privacy Policy FAQ EULA | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/search/label/teaching | don't count on finding me: teaching skip to main | skip to sidebar don't count on finding me Showing posts with label teaching . Show all posts Showing posts with label teaching . Show all posts Thursday, August 7, 2014 First Programming with my Daughter Today I had a short programming session with my 7 year old. I had shown her earlier what a list is and she came back several times already to show her "more lists". So this time I thought we could do something more interesting. A letter-changing game! I fired up GHCi and entered: Prelude⟩ let satz = "Leleka hat Kacke in der Hose" Prelude⟩ print satz "Leleka hat Kacke in der Hose" She loved it so far. Fun is the strongest motivator to learn for kids… Then came the changer for letters: Prelude⟩ let tausch = \x → case x of {'L' → 'K'; 'e' → 'i'; 'i' → 'u'; 'u' → 'e'; x → x } Then I applied it on the phrase defined earlier: Prelude⟩ map tausch satz "Kilika hat Kacki un dir Hosi" This did it. She kept repeating the transformed sentence for an hour, giggling. I tried to explain to her what we did just now, but I guess I'll wait till next time to make her repeat this exercise. Posted by heisenbug at 1:27 AM No comments: Labels: haskell , teaching Older Posts Home Subscribe to: Comments (Atom) Blog Archive ▼  2022 (1) ▼  February (1) Pattern musings ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://fr-fr.facebook.com/login/?next=https%3A%2F%2Fl.facebook.com%2Fl.php%3Fu%3Dhttps%253A%252F%252Fwww.instagram.com%252F%26amp%253Bh%3DAT0OsAp-lFSGEWjYmPvYNTUQcoqXqsCsZp-dQE42aJkTB2RSDj8dQbTuEmmuQXmHnjeEd8PV-yxfDqCIoqOsn5jvYyEwDfT8fLAKM5EPmWJQH9ss4etRxIkLNNQD05ysgD9xtY2gWaKgLq14 | Facebook Facebook Adresse e-mail ou téléphone Mot de passe Informations de compte oubliées ? Créer un compte Cette fonction est temporairement bloquée Cette fonction est temporairement bloquée Il semble que vous ayez abusé de cette fonctionnalité en l’utilisant trop vite. Vous n’êtes plus autorisé à l’utiliser. Back Français (France) 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 中文(简体) 日本語 Português (Brasil) Deutsch S’inscrire Se connecter Messenger Facebook Lite Vidéo Meta Pay Boutique Meta Meta Quest Ray-Ban Meta Meta AI Plus de contenu Meta AI Instagram Threads Centre d’information sur les élections Politique de confidentialité Centre de confidentialité À propos Créer une publicité Créer une Page Développeurs Emplois Cookies Choisir sa publicité Conditions générales Aide Importation des contacts et non-utilisateurs Paramètres Historique d’activité Meta © 2026 | 2026-01-13T09:30:28 |
https://blog.nyveldt.com/tag/ios | Home - Al Nyveldt Al Nyveldt Home About Now iOS enterprise distribution with Xamarin Jul 08, 2016 Click to read more... Audience Jun 28, 2011 Click to read more... iDevBlogADay SudokuKids gets an update Mar 05, 2011 Click to read more... iOS SudokuKids+ update is live Feb 28, 2011 Click to read more... iOS To update or not to update Feb 18, 2011 Click to read more... Business Al Nyveldt Hi. I'm a software developer from central Pennsylvania, USA. Pinned Posts Keep GitHub Copilot from going off the rails with instructions files AI Journey: From Annoying to Essential Categories AI Journey (3) Audio (7) BlogEngine.NET (60) Books (2) Business (2) Development (41) Hardware (5) iDevBlogADay (6) iOS (8) Personal (14) Screencasts (15) Software (21) Web (3) Tags ai , app store , applescript , blogengine.net , blogml , book review , code camp , codemash , codeplex , coding , community , compiling , conference , control , copilot , crystal reports , das blog , dev tools , download , extensions , family , faq , feed reading , fitness , flash drive , fun , games , google reader , idevblogaday , ios , iPad , iphone , ipod , mcp , membership , metaweblog api , microsoft , migration , mix , monotouch , monsterid , mvc , mysql , nike+ , open source , organization , patch , personal , podcasts , powershell , profittrain , provider model , razorpdf , razorpub , release , reuse , review , running , runnow , screencast , security , snippets , sourcesafe , spark , sparrow , sql server , sqlite , starter kit , subtext , subversion , sudokukids , testing , theme , training , upgrade , utilities , video , vistadb , visual studio , widget , windows live writer , xamarin Subscribe Get notified about new posts and updates. Thank you! Please check your email and click the confirmation link to complete your subscription. Subscribe Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way. © 2026 Al Nyveldt. All rights reserved. Published with QuillKit / Sign in | 2026-01-13T09:30:28 |
https://fr-fr.facebook.com/login/?next=https%3A%2F%2Fl.facebook.com%2Fl.php%3Fu%3Dhttps%253A%252F%252Fwww.instagram.com%252F%26amp%253Bh%3DAT0OsAp-lFSGEWjYmPvYNTUQcoqXqsCsZp-dQE42aJkTB2RSDj8dQbTuEmmuQXmHnjeEd8PV-yxfDqCIoqOsn5jvYyEwDfT8fLAKM5EPmWJQH9ss4etRxIkLNNQD05ysgD9xtY2gWaKgLq14 | Facebook Facebook Adresse e-mail ou téléphone Mot de passe Informations de compte oubliées ? Créer un compte Cette fonction est temporairement bloquée Cette fonction est temporairement bloquée Il semble que vous ayez abusé de cette fonctionnalité en l’utilisant trop vite. Vous n’êtes plus autorisé à l’utiliser. Back Français (France) 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 中文(简体) 日本語 Português (Brasil) Deutsch S’inscrire Se connecter Messenger Facebook Lite Vidéo Meta Pay Boutique Meta Meta Quest Ray-Ban Meta Meta AI Plus de contenu Meta AI Instagram Threads Centre d’information sur les élections Politique de confidentialité Centre de confidentialité À propos Créer une publicité Créer une Page Développeurs Emplois Cookies Choisir sa publicité Conditions générales Aide Importation des contacts et non-utilisateurs Paramètres Historique d’activité Meta © 2026 | 2026-01-13T09:30:28 |
https://ko-kr.facebook.com/login/?next=https%3A%2F%2Fl.facebook.com%2Fl.php%3Fu%3Dhttps%253A%252F%252Fwww.instagram.com%252F%26amp%253Bh%3DAT0OsAp-lFSGEWjYmPvYNTUQcoqXqsCsZp-dQE42aJkTB2RSDj8dQbTuEmmuQXmHnjeEd8PV-yxfDqCIoqOsn5jvYyEwDfT8fLAKM5EPmWJQH9ss4etRxIkLNNQD05ysgD9xtY2gWaKgLq14 | Facebook Facebook 이메일 또는 휴대폰 비밀번호 계정을 잊으셨나요? 새 계정 만들기 일시적으로 차단됨 일시적으로 차단됨 회원님의 이 기능 사용 속도가 너무 빠른 것 같습니다. 이 기능 사용에서 일시적으로 차단되었습니다. Back 한국어 English (US) Tiếng Việt Bahasa Indonesia ภาษาไทย Español 中文(简体) 日本語 Português (Brasil) Français (France) Deutsch 가입하기 로그인 Messenger Facebook Lite 동영상 Meta Pay Meta 스토어 Meta Quest Ray-Ban Meta Meta AI Meta AI 콘텐츠 더 보기 Instagram Threads 투표 정보 센터 개인정보처리방침 개인정보 보호 센터 정보 광고 만들기 페이지 만들기 개발자 채용 정보 쿠키 AdChoices 이용 약관 고객 센터 연락처 업로드 및 비사용자 설정 활동 로그 Meta © 2026 | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/2009/11/freude-die-man-sieht.html | don't count on finding me: Freude, die man sieht skip to main | skip to sidebar don't count on finding me Monday, November 2, 2009 Freude, die man sieht Dieses Photo zeigt Lelêca (alias MausiMausi, alias SchlausiMausi) in mit einem Kopfschmuck, der eigentlich zur pernambucanischen Tracht gehört. Ein Geschenk von Tio Davis – Danke! Lelê freut sich inzwischen auf den morgentlichen Gang in den Kindergarten (natürlich mit Papa!) und scheut sich auch nicht vor kleineren Wortgefechten ("vai comer não!"). Aber was richtig gut ist heißt dann "muito ótimo" und Akzeptanz wird mit einem klaren "tá certo!" signalisiert. Und wie man sieht, geht es den Jungs auch ganz passabel... Posted by heisenbug at 3:47 PM Labels: family No comments: Post a Comment Newer Post Older Post Home Subscribe to: Post Comments (Atom) Blog Archive ►  2022 (1) ►  February (1) ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ▼  2009 (12) ▼  November (2) Patrícia's New Hobby Freude, die man sieht ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://www.blogger.com/comment/fullpage/post/8072464059979174136/5054313480391843688 | Post a Comment Blogger  Help Send feedback Sign in Blogger Comments on Patrícia's New Hobby : don't count on finding me Collapse all comments Expand all comments Load more To leave a comment, click the button on the top of this page to sign in with Google. Comment as: Select Profile: Google Account  Edit Enter Comment Publish Preview This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply. ©2026 Blogger - Privacy Policy Google apps Main menu | 2026-01-13T09:30:28 |
https://th-th.facebook.com/login/?next=https%3A%2F%2Fl.facebook.com%2Fl.php%3Fu%3Dhttps%253A%252F%252Fwww.meta.ai%252Fpages%252Finflatable-hot-tubs-backyard-oasis%252F%253Futm_source%253Dfoa_web_footer%26amp%253Bh%3DAT2QWxmcgLRMhhUlBwppWSA4CSfnY6lWx-okKZmzzajDUYSJoMa3Fz5MFz2ChbAmK_tBPGHPqVsKpvJaPVwPm7d9UQXAJrzBwyUw7R3l_EaNKtanu_gn4gGFcvZFevxDNhxIpfUd58MknENm | Facebook Facebook อีเมลหรือโทรศัพท์ รหัสผ่าน ลืมบัญชีใช่หรือไม่ สร้างบัญชีใหม่ คุณถูกบล็อกชั่วคราว คุณถูกบล็อกชั่วคราว ดูเหมือนว่าคุณจะใช้คุณสมบัตินี้ในทางที่ผิดโดยการใช้เร็วเกินไป คุณถูกบล็อกจากการใช้โดยชั่วคราว Back ภาษาไทย 한국어 English (US) Tiếng Việt Bahasa Indonesia Español 中文(简体) 日本語 Português (Brasil) Français (France) Deutsch สมัคร เข้าสู่ระบบ Messenger Facebook Lite วิดีโอ Meta Pay Meta Store Meta Quest Ray-Ban Meta Meta AI เนื้อหาเพิ่มเติมจาก Meta AI Instagram Threads ศูนย์ข้อมูลการลงคะแนนเสียง นโยบายความเป็นส่วนตัว ศูนย์ความเป็นส่วนตัว เกี่ยวกับ สร้างโฆษณา สร้างเพจ ผู้พัฒนา ร่วมงานกับ Facebook คุกกี้ ตัวเลือกโฆษณา เงื่อนไข ความช่วยเหลือ การอัพโหลดผู้ติดต่อและผู้ที่ไม่ได้ใช้บริการ การตั้งค่า บันทึกกิจกรรม Meta © 2026 | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/2011/10/macs-and-me.html?showComment=1317893045799#c1216239355874157458 | don't count on finding me: Macs and me skip to main | skip to sidebar don't count on finding me Wednesday, October 5, 2011 Macs and me I am profoundly saddened since I woke up at 4:00am in the morning, and saw the news headline about the passing of Steve Jobs. I have seen this coming for a long time, as my father died in a very similar way back 1993 with only 52. Looking at the thin appearance of Jobs in the last month or even years I constantly get reminded of him. Basically the same story of suffering, loss of weight, liver transplant (in vain), death. RIP, Dad, RIP, Steve. I am writing this on a rusty vintage 2000 PowerBook G4 Titanium, I bought on eBay last year, because the video of my own 2001 TiBook went black. By today's web standards completely inadequate, it serves me well for news reading, terminal logins, etc. My son Pedro got his MacBook Pro 15'' delivered just today. An awesome piece of technology. My father bought the first Mac in 1986, just after opening his practice as a neurologist. This was two years after cutting all strings in Hungary and fleeing to Germany in a pretty bold move. Must have been a moment of total self-overestimation when I promised to my dad "if you buy that Mac Plus I'll write you the best software for it for your doctor's office". A crazy time began. At day the Mac was used to keep patient's data with a DTP program "RagTime", at 5pm I hauled the Mac home (in a big black bag) and started writing the program. Sometimes deep into the night. I used Turbo Pascal (and later MPW) after figuring out that the Lisp environment I preferred simply did not cut it due to insufficient support of the Toolbox. In the morning my father carried the Mac back and powered it up. Less than year later the program was ready for productive work. A Mac SE joined the party and we had a networked doctor's application with a really neat windowed user interface, that would put even today's programs to shame in this regard. There was even a time when we fancied marketing this product, but my university duties and the early death of my father simply negated all plans to this end. When I had my diploma in my hands I picked up the phone and called the guy who sold us the Mac Plus and a copy of "Inside Macintosh" back in '86. In the meantime he founded a pretty successful company around a networked admin solution called 'netOctopus' which was his baby. We occasionally met at Apple developer events and I new that he was a pretty damn good coder. He hired me and I was earning money by programming Macs! So yes, I love Macs and there is no reason that this will change in the foreseeable future. I kept telling to myself, should Jobs die one day, I'll put that Mac Plus (now in my basement and still functional) up for sale at eBay. My thought today: "screw it – too many fond memories attached". Posted by heisenbug at 9:39 PM Labels: family , mac , sadness 3 comments: MARCO ANTONIO MENELAU said... muito bonito gabor. Parabens. homenagemjusta a um grande homemn October 6, 2011 at 2:24 AM Cristina Menelau said... Gostei muito, me emocionei com sua história. Todos lamentamos a morte prematura de Jobs mas, a vida tem dessas surpresas. Um gênio sai de cena, aguardemos que outro apareça para preenchê-la proém, sem jamais esquecer os que se foram. October 6, 2011 at 6:04 AM RecaPortella said... Que história emocionante Gabor! Parabéns por conseguir em palavras descrever momentos e histórias como essa. Triste, porém cheia de ensinamentos em todos os sentidos. Agora é esperar o tempo levar um pouco dessa tristeza e continuar seguindo a vida lembrando sempre dos bons ensinamentos que grandes pessoas com essas nos deixaram! Bjs October 6, 2011 at 10:10 AM Post a Comment Newer Post Older Post Home Subscribe to: Post Comments (Atom) Blog Archive ►  2022 (1) ►  February (1) ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ▼  2011 (7) ►  December (1) ►  November (1) ▼  October (1) Macs and me ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
http://hackage.haskell.org/package/semigroupoids-3.1 | semigroupoids: Haskell 98 semigroupoids: Category sans id Hackage :: [Package] Search Browse What's new Upload User accounts semigroupoids : Haskell 98 semigroupoids: Category sans id [ bsd2 , comonads , control , library ] [ Propose Tags ] [ Report a vulnerability ] Provides a wide array of semigroupoids and operations for working with semigroupds. A Semigroupoid is a Category without the requirement of identity arrows for every object in the category. When working with comonads you often have the <*> portion of an Applicative , but not the pure . This was captured in Uustalu and Vene's "Essence of Dataflow Programming" in the form of the ComonadZip class in the days before Applicative . Apply provides a weaker invariant, but for the comonads used for data flow programming (found in the streams package), this invariant is preserved. Applicative function composition forms a semigroupoid. Similarly many structures are nearly a comonad, but not quite, for instance lists provide a reasonable extend operation in the form of tails , but do not always contain a value. Ideally the following relationships would hold: Traversable <---- Foldable <--- Functor ------> Alt ---------> Plus Semigroupoid | | | | | v v v v v Traversable1 <--- Foldable1 Apply --------> Applicative -> Alternative Category | | | | v v v v Bind ---------> Monad -------> MonadPlus Arrow Apply, Bind, and Extend (not shown) give rise the Static, Kleisli and Cokleisli semigroupoids respectively. This lets us remove many of the restrictions from various monad transformers as in many cases the binding operation or <*> operation does not require them. Finally, to work with these weaker structures it is beneficial to have containers that can provide stronger guarantees about their contents, so versions of Traversable and Foldable that can be folded with just a Semigroup are added. Modules [ Index ] Data Functor Data.Functor.Alt Data.Functor.Apply Data.Functor.Bind Data.Functor.Bind.Trans Data.Functor.Extend Data.Functor.Plus Semigroup Data.Semigroup.Foldable Data.Semigroup.Traversable Data.Semigroupoid Data.Semigroupoid.Dual Data.Semigroupoid.Static Traversable Data.Traversable.Instances Downloads semigroupoids-3.1.tar.gz [ browse ] (Cabal source package) Package description ( revised from the package) Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'. Maintainer's Corner Package maintainers EdwardKmett , EricMertens , ryanglscott For package maintainers and hackage trustees edit package information Candidates 5.2.1 Versions [ RSS ] 1.0.0 , 1.1.0 , 1.1.1 , 1.1.2 , 1.1.3 , 1.2.0 , 1.2.1 , 1.2.2 , 1.2.2.1 , 1.2.2.2 , 1.2.2.3 , 1.2.2.4 , 1.2.4 , 1.2.5 , 1.2.6 , 1.2.6.1 , 1.2.6.2 , 1.3 , 1.3.1 , 1.3.1.1 , 1.3.1.2 , 1.3.2 , 1.3.2.1 , 1.3.3 , 1.3.4 , 3.0 , 3.0.0.1 , 3.0.0.2 , 3.0.1 , 3.0.2 , 3.0.3 , 3.1 , 4.0 , 4.0.1 , 4.0.2 , 4.0.2.1 , 4.0.3 , 4.0.4 , 4.2 , 4.3 , 4.5 , 5 , 5.0.0.1 , 5.0.0.2 , 5.0.0.3 , 5.0.0.4 , 5.0.1 , 5.1 , 5.2 , 5.2.1 , 5.2.2 , 5.3 , 5.3.1 , 5.3.2 , 5.3.3 , 5.3.4 , 5.3.5 , 5.3.6 , 5.3.7 , 6 , 6.0.0.1 , 6.0.1 , 6.0.2 ( info ) Dependencies base (>=4 && <4.4 || >=4.5 && <5) , comonad (>=3 && <4) , containers (>=0.3 && <0.6) , contravariant (>=0.2.0.1 && <1) , semigroups (>=0.8.3.1 && <1) , transformers (>=0.2 && <0.4) [ details ] License BSD-3-Clause Copyright Copyright (C) 2011 Edward A. Kmett Author Edward A. Kmett Maintainer Edward A. Kmett <ekmett@gmail.com> Uploaded by EdwardKmett at 2013-07-16T20:29:30Z Revised Revision 1 made by HerbertValerioRiedel at 2015-01-07T14:08:22Z Stability provisional --> Category Control , Comonads Home page http://github.com/ekmett/semigroupoids Bug tracker http://github.com/ekmett/semigroupoids/issues Source repo head: git clone git://github.com/ekmett/semigroupoids.git Distributions Arch: 6.0.1 , Debian: 5.3.4 , Fedora: 6.0.1 , FreeBSD: 5.0.0.3 , LTSHaskell: 6.0.1 , NixOS: 6.0.1 , Stackage: 6.0.2 , openSUSE: 6.0.1 Reverse Dependencies 216 direct, 9047 indirect [ details ] Downloads 309284 total (292 in the last 30 days) Rating 2.5 (votes: 9) [estimated by Bayesian average ] Your Rating λ λ λ Status Docs uploaded by user Build status unknown [ no reports yet ] Produced by hackage and Cabal 3.16.1.0. | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/search/label/lambda%20calculus | don't count on finding me: lambda calculus skip to main | skip to sidebar don't count on finding me Showing posts with label lambda calculus . Show all posts Showing posts with label lambda calculus . Show all posts Thursday, July 31, 2014 Rank-2 PHOAS Lately I've been experimenting with finally-tagless (typed) representations and made an attempt to model the (implicitly typed) lambda calculus. However, I wanted to use the parametric higher-order abstract syntax (PHOAS) technique to obtain variable bindings that are automatically well-scoped. I arrived at this formulation: class LC rep where var :: p → rep lam :: (forall p . p → rep) → rep (I am ignoring applications as they are not important for making my point.) As Andres Löh has pointed out to me this is not the final-tagless formulation of the regular PHOAS form, as that would add the p type variable as the second class parameter and the rank-2 forall would appear from "outside". But I liked my simple formulation and the obviously and explicitly parametric lambda body. So I started implementing a rudimentary visualisation instance given a name supply: instance LC ([String] → String) where var = ??? -- const "VAR" lam f = \supply → ... It turns out that implementing var is only possible by giving a constant result, and for lam I am in trouble, because I cannot call f as it expects a polymorphic argument. Both problems are due to the fact that p is too polymorphic. Can we have it a bit less polymorphic in order to make some progress? Thinking about it I came up with the idea of giving each instance a way to constrain the p variable as it fits. So I changed class LC such: class LC rep where type Restricted rep p :: Constraint var :: Restricted rep p ⇒ p → rep lam :: (forall p . Restricted rep p ⇒ p → rep) → rep Now my instance can pick the restriction as it fits: instance LC ([String] → String) where type Restricted ([String] → String) p = ([String] → String) ~ p var = id lam f = \supply → ... As you see I chose the restriction to be type equality which essentially cancels parametricity in this instance and gives me simple HOAS. Filling in p becomes easy now. lam f = \(n:ns) → "\\" ++ n ++ "." ++ (f $ const n) ns Let's try it out! But in order to do that we need an instance of Show for name supplies. This could be one: instance Show ([String] → String) where show f = f $ map (('v':) . show) [0..] Now we can interpret a lambda term as a name supply. *Main› lam (\x → lam $ \y → var x) :: [String] → String \v0.\v1.v0 It works™ :-) But I can go further. After implementing several other instances I observed that I always wanted to destroy parametricity completely and implement var as the identity. So why not have these as defaults and reduce the boilerplate by a nice margin? Here is the final class definition that I arrived at: class LC rep where type Restricted rep p :: Constraint type Restricted rep p = rep ~ p var :: Restricted rep p ⇒ p → rep default var :: rep ~ p ⇒ p → rep var = id lam :: (forall p . Restricted rep p ⇒ p → rep) → rep I like it so far. PS: Here are the prerequisites if you want to compile the above yourself: {-# LANGUAGE UnicodeSyntax, ConstraintKinds, TypeFamilies, RankNTypes, FlexibleInstances, DefaultSignatures #-} import GHC.Exts Posted by heisenbug at 2:28 PM No comments: Labels: final-tagless , haskell , HOAS , lambda calculus , parametric , PHOAS Older Posts Home Subscribe to: Comments (Atom) Blog Archive ▼  2022 (1) ▼  February (1) Pattern musings ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://heisenbug.blogspot.com/search/label/gdiff | don't count on finding me: gdiff skip to main | skip to sidebar don't count on finding me Showing posts with label gdiff . Show all posts Showing posts with label gdiff . Show all posts Sunday, October 26, 2014 gdiff – Polymorphically In the few last months I've been busy coming up with techniques mastering the gdiff Haskell library , even for use cases it was not originally designed for. This is mostly a brain dump of some approaches I have learnt while tinkering and trying to solve certain problems. 1) Polymorphic diff : Eelco Lempsink writes in the conclusion of his 2010 thesis «Furthermore, we can not encode polymorphic datatypes such as lists, but need to write specific encodings for each type we want to include». In the library documentation he says «It might require another master thesis project to solve this». However in the last days I developed a trick, which does allow me to describe polymorphic data types, such as [a] or Maybe a . I just needed to add these lines: in the family GADT: ListNil :: List Fam as → Fam a as → Fam [a] Nil ListCons :: List Fam as → Fam a as → Fam [a] (a `Cons` [a] `Cons` Nil) then define a Type instance: instance Type Fam a ⇒ Type Fam [a] where constructors = head [Concr (ListNil cc) | Concr cc Concr cc ← constructors] : [head [Concr (ListCons cc) | Concr cc ← constructors]] What is this doing? It picks two random constructors from the underlying data type and wraps them with ListNil and ListCons . We usually ignore what is wrapped, with one exception: in decEq one needs to ensure that the constructors' arguments are compared too, otherwise one cannot finish the type equality proof. 2) Non-moving pairs: In the usual textual diff algorithm the lines may move around a bit to make room for insertions, etc. This is normally the case for gdiff too. I have seen gdiff reusing values (with Cpy ) when comparing (True, False) with (False, True) . But sometimes this is not desired at all. I figured out that "inlining" the leaves into the pair's description (i.e. instead of (a `Cons` b `Cons` Nil) writing appendList on the field decompositions of a and b does the trick. 3) Location types: I found a way to equip Abstr constructor descriptors with type class dictionaries. It is similar to the lifting approach shown under 1), but much more involved. The idea is to wrap a location-aware descriptor with a descriptor that is location-blind, i.e. that hides the location parameter: Loc' :: KnownNat n ⇒ Fam (Loc n Bool) … Then we need the wrapper: Hidden' :: KnownNat n ⇒ Fam (Loc n Bool) ts → Fam (Hidden Loc) ts Giving the Type instance for the latter is tricky, as Abstr alone has no provision for dodging the class dictionary into Hidden' , so I had to write a locAware smart constructor to syphon it through the Hidden' wrapper. This also stressed the compiler to its limits in the advanced PolyKind -ed approach I needed, so I filed a GHC bug #9725 . There is also some code showing how the Hidden Loc is unwrapped and the dictionary-passing functions is installed into the Abstr . 4) Monadic actions coming out of patch : Here another wrapping approach is needed, but this time we need a sum type for diff and patch so that we can enter with a pure value at the Left and obtain a Right action back. This is the most involved approach. I can probably blog another time about it. Posted by heisenbug at 4:09 PM No comments: Labels: gdiff , haskell Older Posts Home Subscribe to: Comments (Atom) Blog Archive ▼  2022 (1) ▼  February (1) Pattern musings ►  2014 (5) ►  November (1) ►  October (1) ►  August (1) ►  July (1) ►  January (1) ►  2013 (5) ►  September (1) ►  August (3) ►  February (1) ►  2012 (2) ►  December (1) ►  September (1) ►  2011 (7) ►  December (1) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  February (1) ►  January (1) ►  2010 (19) ►  December (5) ►  November (6) ►  October (1) ►  August (1) ►  July (2) ►  June (4) ►  2009 (12) ►  November (2) ►  October (1) ►  August (1) ►  June (1) ►  May (1) ►  March (4) ►  January (2) ►  2008 (22) ►  October (1) ►  September (3) ►  August (6) ►  July (3) ►  June (2) ►  May (1) ►  April (3) ►  March (1) ►  February (1) ►  January (1) ►  2007 (20) ►  December (2) ►  November (1) ►  October (1) ►  September (1) ►  August (1) ►  July (14) About Me heisenbug I am here and there. You may encounter me if you try, but no guarantees. Just a hint: I am mostly with my family. View my complete profile   | 2026-01-13T09:30:28 |
https://xamarin.com/insights | Mobile development with Xamarin | .NET ic_fluent_brand_facebook_48_mono Created with Sketch. image/svg+xml Twitch image/svg+xml image/svg+xml Skip to main content Microsoft .NET .NET .NET Home Why .NET What is .NET? Why choose .NET? Who uses .NET? Features Web Web ASP.NET Core Web APIs Blazor MVC SignalR Microservices Native Desktop & Mobile Native Desktop & Mobile .NET Multi-platform App UI Windows Forms Windows Presentation Foundation Languages Languages C# F# Visual Basic More More Cloud Data Artificial Intelligence & ML Game development Internet of Things Upgrade Assistant Learn Docs Web Web ASP.NET Core Web APIs Blazor Razor Pages MVC SignalR Native Desktop & Mobile Native Desktop & Mobile .NET Multi-platform App UI Windows Forms Windows Presentation Foundation Languages Languages C# F# Visual Basic More More .NET Cloud Data Internet of Things Machine learning Downloads Community More LIVE TV All Microsoft Global Microsoft Security Azure Dynamics 365 Microsoft 365 Microsoft Teams Windows 365 Tech & innovation Tech & innovation AI Azure Space Mixed reality Microsoft HoloLens Microsoft Viva Quantum computing Sustainability Industries Industries Education Automotive Financial services Government Healthcare Manufacturing Retail All industries Partners Partners Find a partner Become a partner Partner Network Microsoft Marketplace Marketplace Rewards Software development companies Resources Resources Blog Microsoft Advertising Developer Center Documentation Events Licensing Microsoft Learn Microsoft Research View Sitemap Search Search or ask a question No results Cancel Home Xamarin .NET MAUI Do you want to build native, cross-platform desktop and mobile apps from a single codebase? .NET MAUI has been released. Try it now × Xamarin Support for Xamarin ended May 1, 2024. Build cross-platform mobile and desktop apps with .NET today. Migrate Xamarin apps to .NET Xamarin Support Ended May 1, 2024 As of May 1, 2024, Xamarin is no longer supported or updated by Microsoft. See the Xamarin support policy for details. We recommend you use .NET Multi-platform App UI (.NET MAUI), the evolution of Xamarin.Forms, which lets you create Android, iOS, macOS, and Windows apps with a modern, cross-platform framework. We have resources and guidance to help you migrate Xamarin apps to .NET MAUI. Dig deeper: Mobile apps with .NET Multi-platform with .NET MAUI .NET MAUI is the evolution of Xamarin.Forms and uses the latest technologies for building native apps on Windows, macOS, iOS, and Android, abstracting them into one common framework built on .NET. Xamarin.Forms apps can be migrated to .NET MAUI using the upgrade assistant so you can start taking advantage of the latest features and performance enhancements. Dig deeper: .NET MAUI Follow us Feedback English (United States) Español Français (France) Indonesia (Indonesia) Italiano (Italia) 日本語 한국어 Português (Brasil) Русский (Россия) 中文(简体) 中文(台灣) Dark mode Off Your Privacy Choices Opt-Out Icon Your Privacy Choices Your Privacy Choices Opt-Out Icon Your Privacy Choices Consumer Health Privacy Powered by .NET 10.0.1 Contact Microsoft Support Privacy & Cookies Manage cookies Terms of Use Trademarks © Microsoft 2026 | 2026-01-13T09:30:28 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.