Dataset Viewer
Auto-converted to Parquet Duplicate
package_name
string
version
string
license
string
homepage
string
dev_repo
string
file_type
string
file_path
string
file_content
string
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
opam
0install-2.18/0install-gtk.opam
version: "2.18" opam-version: "2.0" synopsis: "Decentralised installation system - GTK UI" maintainer: "talex5@gmail.com" authors: "zero-install-devel@lists.sourceforge.net" homepage: "https://0install.net/" bug-reports: "https://github.com/0install/0install/issues" dev-repo: "git+https://github.com/0install/0install.g...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
opam
0install-2.18/0install-solver.opam
version: "2.18" opam-version: "2.0" synopsis: "Package dependency solver" maintainer: "talex5@gmail.com" authors: "zero-install-devel@lists.sourceforge.net" homepage: "https://docs.0install.net/developers/solver/" bug-reports: "https://github.com/0install/0install/issues" dev-repo: "git+https://github.com/0install/0ins...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
opam
0install-2.18/0install.opam
version: "2.18" opam-version: "2.0" synopsis: "Decentralised installation system" maintainer: "talex5@gmail.com" authors: "zero-install-devel@lists.sourceforge.net" homepage: "https://0install.net/" bug-reports: "https://github.com/0install/0install/issues" dev-repo: "git+https://github.com/0install/0install.git" doc: ...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
dune
0install-2.18/dune
(install (package 0install) (section doc) (files COPYING))
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/add.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install add" command *) open Options open Support open Support.Common module Apps = Zeroinstall.Apps module U = Support.Utils module R = Zeroinstall.Requirements module F = Zeroinstall.Feed (** Warn...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/add_feed.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install add-feed" command *) open Options open Zeroinstall open Zeroinstall.General open Support open Support.Common module F = Zeroinstall.Feed module G = Generic_select module FC = Zeroinstall.Feed...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/alias.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) open Support open Options let handle options flags args = match args with | [name] -> Safe_exn.failf "ERROR: '0alias' has been removed; use '0install update' instead:\n0install update alias:%s" name | [na...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/cli.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** Parsing command-line arguments *) open Options open Zeroinstall.General open Support open Support.Common open Support.Argparse let starts_with = XString.starts_with let i_ x = x class ['a, 'b] ambiguous_...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
mli
0install-2.18/src/cli/cli.mli
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** Parsing command-line arguments *) val common_options : ([> `DryRun | `Help | `UseGUI of [`Yes | `No | `Auto] | `Verbose | `WithStore of Support.Common.filepath ], Options.zi_arg_type) ...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/command_tree.ml
(* Copyright (C) 2014, Thomas Leonard * See the README file for details, or visit http://0install.net. *) open Zeroinstall.General open Support open Support.Common open Support.Argparse type 'a handler = Options.global_settings -> ([< Options.zi_option ] as 'a) parsed_options -> string list -> unit type command = ...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
mli
0install-2.18/src/cli/command_tree.mli
(* Copyright (C) 2014, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** Directory of command handlers (e.g. ["store"; "add"] -> Store.handle_add) *) open Options open Support open Support.Argparse type command and commands = (string * node) list and node = | Command of comma...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/common_options.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** Handling --verbose, etc *) open Zeroinstall.General open Support open Support.Common open Options exception Retry_with_dryrun (** --dry-run flag found and not in dry-run mode (triggers a restart in dry-run...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/completion.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** Tab-completion for command-line arguments *) open Zeroinstall.General open Support open Support.Argparse open Options module Apps = Zeroinstall.Apps module Impl = Zeroinstall.Impl module Feed = Zeroinstall....
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
mli
0install-2.18/src/cli/completion.mli
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) val handle_complete : stdout:Format.formatter -> Zeroinstall.General.config -> string list -> unit
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/conf.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install config" command *) open Options open Zeroinstall.General open Support open Support.Common module U = Support.Utils module C = Zeroinstall.Config let minutes = 60. type key = | Network_use...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/desktop.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) open Zeroinstall.General open Options let handle options flags args = let tools = options.tools in Support.Argparse.iter_options flags (function | #common_option as o -> Common_options.process_common_op...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/destroy.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install destroy" command *) open Options open Support let handle options flags args = Support.Argparse.iter_options flags (function | #common_option as o -> Common_options.process_common_option...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/download.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install download" command *) open Options let handle options flags args = let select_opts = ref [] in Support.Argparse.iter_options flags (function | #common_option as o -> Common_options.pro...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
dune
0install-2.18/src/cli/dune
(library (name zeroinstall_cli) (modules_without_implementation options) (wrapped false) (libraries zeroinstall support yojson xmlm lwt lwt.unix))
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/generic_select.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** Selecting and downloading: common code for select/download/update/run *) open Zeroinstall.General open Support open Support.Common open Options open Zeroinstall module Qdom = Support.Qdom module Launcher = ...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/import.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install import" command *) open Options open Zeroinstall.General open Support open Support.Common module Q = Support.Qdom module FeedAttr = Zeroinstall.Constants.FeedAttr module U = Support.Utils le...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/list_feeds.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install list-feeds" command *) open Options open Zeroinstall.General module F = Zeroinstall.Feed module FC = Zeroinstall.Feed_cache let handle options flags args = Support.Argparse.iter_options fl...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/list_ifaces.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install list" command *) open Options open Support let handle options flags args = Support.Argparse.iter_options flags (function | #common_option as o -> Common_options.process_common_option op...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/main.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The main executable *) open Zeroinstall.General open Support open Support.Common module U = Support.Utils (* There's no reason to use SIGPIPE in a language with exceptions. This means that the function ...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
mli
0install-2.18/src/cli/main.mli
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) open Support.Common (* This is the entry-point for the unit-tests; it avoids the exception handling. *) val main : stdout:Format.formatter -> system -> unit val start : system -> unit val start_if_not_windows ...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/man.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install man" command *) open Options open Support open Support.Common open Zeroinstall.General module U = Support.Utils (** Exec the man command. Never returns. *) let exec_man config ?env args = l...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/manage_cache.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install store manage" command *) open Options let handle options flags args = Support.Argparse.iter_options flags (function | #common_option as o -> Common_options.process_common_option options...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/optimise.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install store optimise" command *) open Options open Zeroinstall.General open Support open Support.Common module U = Support.Utils module Manifest = Zeroinstall.Manifest let are_already_linked (syst...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
mli
0install-2.18/src/cli/options.mli
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) open Zeroinstall.General type version = string type common_option = [ (* common options *) | `UseGUI of [`Yes | `No | `Auto] | `Verbose | `Help | `DryRun | `WithStore of string | `ShowVersion |...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/remove_feed.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install remove-feed" command *) open Options open Zeroinstall.General open Support module G = Generic_select module FC = Zeroinstall.Feed_cache let handle options flags args = let config = options...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/req_options.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** A structure representing constraints/requirements specified by the user *) open Options open Support open Support.Common open Zeroinstall.Requirements (** Updates requirements based on command-line options...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/run.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install run" command *) open Support open Support.Common open Options open Zeroinstall.General module U = Support.Utils type run_options = { mutable wrapper : string option; mutable main : strin...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/runenv_shared.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (* The main runenv code, used on all systems (POSIX and Windows) *) open Support open Support.Common (** This is called in a new process by the launcher created by [Zeroinstall.Exec.ensure_runenv]. *) let rune...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/search.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install search" command *) open Options open Zeroinstall.General open Support open Support.Common module Q = Support.Qdom module U = Support.Utils module Msg = Support.Qdom.Empty let handle options ...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/secureadd.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0store-secure-add" command *) open Zeroinstall.General open Support module Manifest = Zeroinstall.Manifest module U = Support.Utils let handle config args = (* Make all system files world-readable,...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/select.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install select" command *) open Options let handle options flags args = let select_opts = ref [] in Support.Argparse.iter_options flags (function | #common_option as o -> Common_options.proce...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/show.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install show" command *) open Zeroinstall.General open Support open Options module Qdom = Support.Qdom module Selections = Zeroinstall.Selections module Apps = Zeroinstall.Apps let show_human config ...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/slave.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install slave" command *) open Options open Zeroinstall.General open Support open Support.Common open Zeroinstall module J = Yojson.Basic module JC = Zeroinstall.Json_connection module Ui = Zeroinsta...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/store.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install store add" command *) open Options open Zeroinstall.General open Support open Support.Common module U = Support.Utils module A = Zeroinstall.Archive module Stores = Zeroinstall.Stores module ...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/update.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install update" command *) open Zeroinstall open Zeroinstall.General open Options open Support open Support.Common module Selections = Zeroinstall.Selections module Apps = Zeroinstall.Apps module Imp...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/cli/whatchanged.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The "0install whatchanged" command *) open Options open Zeroinstall.General open Support open Support.Common module U = Support.Utils module Selections = Zeroinstall.Selections let show_changes f old_selec...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
dune
0install-2.18/src/dune
(executable (public_name 0install) (name static_0install) (modules static_0install) (ocamlopt_flags -linkall) ; Needed for the GUI plugin (ocamlc_flags -linkall -custom) (link_flags (:include support/extra_objects.sexp)) (package 0install) (libraries zeroinstall_cli zeroinstall support)) (e...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/gui_gtk/add_box.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The dialog for adding a new app (used by "0desktop") *) open Support open Support.Common open Gtk_common open Zeroinstall.General module F = Zeroinstall.Feed module U = Support.Utils module FC = Zeroinstal...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/gui_gtk/alert_box.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** A simple error report box *) open Gtk_common let report_info ?parent ~title message = let box = GWindow.message_dialog ?parent ~message_type:`INFO ~title ~message ~buttons:GWindow.But...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/gui_gtk/app_list_box.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** The app browser dialog *) open Zeroinstall.General open Zeroinstall open Support open Support.Common open Gtk_common module F = Zeroinstall.Feed module U = Support.Utils module FC = Zeroinstall.Feed_cache ...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/gui_gtk/bug_report_box.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** Displays a form to the user to collect extra information for the bug report. *) open Support.Common open Gtk_common module U = Support.Utils let spf = Printf.sprintf let frame ~packing ~title = let fra...
0install-gtk
2.18.0
Unknown
https://0install.net/
git+https://github.com/0install/0install.git
ml
0install-2.18/src/gui_gtk/cache_explorer_box.ml
(* Copyright (C) 2013, Thomas Leonard * See the README file for details, or visit http://0install.net. *) (** GTK cache explorer dialog (for "0install store manage") *) open Zeroinstall.General open Support open Support.Common open Gtk_common module Impl = Zeroinstall.Impl module F = Zeroinstall.Feed module U = Su...
End of preview. Expand in Data Studio

This is a dataset automatically generated from ocaml/opam:archive. You can find more information about this dataset in this blogpost.

Downloads last month
379