All Projects → vvvvpm → vpm

vvvvpm / vpm

Licence: MIT license
Package Manager for VVVV

Programming Languages

C#
18002 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to vpm

registry
Package registry for vpkg
Stars: ✭ 13 (-35%)
Mutual labels:  package-manager, vpm
pkgcore
a framework for package management
Stars: ✭ 91 (+355%)
Mutual labels:  package-manager
ansible-nodejs
Ansible role to set up the latest version of Node.js and npm in Debian-like systems
Stars: ✭ 14 (-30%)
Mutual labels:  package-manager
poetry.el
Python dependency management and packaging in Emacs
Stars: ✭ 110 (+450%)
Mutual labels:  package-manager
vuejs-typestyle-seed
VueJS + TypeStyle seed using JSX
Stars: ✭ 20 (+0%)
Mutual labels:  csx
capstan
Capstan, a tool for packaging and running your application on OSv.
Stars: ✭ 19 (-5%)
Mutual labels:  package-manager
kustomizer
An experimental package manager for distributing Kubernetes configuration as OCI artifacts.
Stars: ✭ 239 (+1095%)
Mutual labels:  package-manager
npackd-cpp
Package manager for Microsoft Windows (GUI and command line utility)
Stars: ✭ 123 (+515%)
Mutual labels:  package-manager
zap
⚡ Delightful AppImage package manager
Stars: ✭ 354 (+1670%)
Mutual labels:  package-manager
VVVV.Tutorials.Fundamentals
Originally for VVVV workshop at Madlab, October 2011
Stars: ✭ 15 (-25%)
Mutual labels:  vvvv
dppm
An easy way to install and manage server applications
Stars: ✭ 107 (+435%)
Mutual labels:  package-manager
dpkg
Debian package manager (mirror)
Stars: ✭ 41 (+105%)
Mutual labels:  package-manager
cppm
c++ package manager only use CMake
Stars: ✭ 37 (+85%)
Mutual labels:  package-manager
dex
docker executables - run applications without installing them or their dependencies
Stars: ✭ 31 (+55%)
Mutual labels:  package-manager
rubigo
[DEPRECATED] Golang vendor utility and package manager
Stars: ✭ 44 (+120%)
Mutual labels:  package-manager
vanat
🔨 Dependency Manager for Vala 🚧 App under development!
Stars: ✭ 14 (-30%)
Mutual labels:  package-manager
available
Scan npm for available package names
Stars: ✭ 98 (+390%)
Mutual labels:  package-manager
modget-minecraft
The Minecraft Mod Package Manager!
Stars: ✭ 47 (+135%)
Mutual labels:  package-manager
Tatin
Tatin is a package manager for Dyalog APL
Stars: ✭ 16 (-20%)
Mutual labels:  package-manager
zcomet
zcomet - Fast, Simple Zsh Plugin Manager
Stars: ✭ 144 (+620%)
Mutual labels:  package-manager

vpm

A package Manager for VVVV

Build status

Motivation

In vvvv packs plugins and other externals are not coming in proper packages with meta information attached to them, usually they are just a collection of files at the right places extracted from an archive mostly. In itself it wouldn't be a problem as isolated packs are recognized and loaded into vvvv quite well. Problem starts when there are packs depending on X number of other packs. And with ~ 630 externals listed only on vvvv.org + more experimental, pre-release packs circulating on github that actually happens quite some time.

So user were supposed to hunt down dependencies and install them manually with varying success. (which btw would be ridiculous if you'd need to do the same with node.js or .NET libraries) This also scared pack developers to reference or use parts of other magnificent packs forcing them not to develop a feature to its full potential.

Not anymore!

vpm is a simple and also simple to use command line utility which supposed to automate this process through XML pack configuration files or .vpack files.
See in action here:

click here to watch on youtube

Features

  • Recursive dependency installation
  • Stuff you would expect from a regular package Manager
    (Except for version checking YET)
  • Install packs directly from browser or anywhere with vpm:// and vpms:// uri schemes
  • Associate pack file with vpm.
  • C# scripting for installation and for packs which don't have a complimentary vpack file (yet ;) )
  • License Agreement screen for packs

How it works?

vpm first creates a temporary folder called (guess what) ".vpm" inside specified vvvv's folder. vpm will create working directories for each packs and dependencies in this temporary folder. These folders can be used by the installation scripts to download, clone or create data for the pack, and copy the results from those folders to vvvv\packs.
Then it will parse the input vpack file and its dependencies recursively. When that's done the user is prompted to accept the license agreements. If all the licenses have been agreed the installation scripts will be run for each collected packs/dependencies. Note that a vvvv instance is not required anymore so you can specify any, even a non-existing folder. vpm will ask you which architecture you want to use if it can't find a vvvv.exe in the specified folder. If there's no registered vvvv and no folder is specified vpm will use its containing folder.

Getting started for End-users

  • A registered vvvv is recommended (but not required anymore)
    (means run setup.exe and associate .v4p files at least once during the lifetime of current windows install)
  • Download latest version from here: https://github.com/vvvvpm/vpm/releases/latest
  • Extract anywhere
  • Run it at least once so it can register vpm:// or vpms:// uri schemes and associate .vpack files.
    (requires Admin privileges (UAC dialog box will pop up))
  • Now you can either double click a .vpack file or use a vpm(s):// url from browser
    (for example from the VPDB repo https://vvvvpm.github.io/).

Getting started for Power-users

or Command line arguments:

Argument Example Description
-vvvv -vvvv \Path\To\vvvv.exe Manually select a vvvv instead of a registered one. It works also if no vvvv is registered.
-q -q simply don't prompt user and go with default choices

Getting started for Pack developers

XML specification

The mandatory minimal vpack file and its structure looks something like this:

<vpack>
    <meta>
        <name>MyPack</name>
    </meta>
    <install>
        // C# script here
    </install>
</vpack>

However this vpack won't do anything as no instructions are written in the installation script. Here are the currently processed tags: (tags tagged with a * is mandatory)

<name>* will also serve as the default folder name and vpm will also determine if an earlier installment is already in the packs folder based on this name (... too, see aliases)

<aliases> is a list of possible alternative foldernames might containing current pack in vvvv's packs folder separated with commas. vpm checks if pack is already installed based on the name and aliases if any is specified.

<license> is a an url pointing to possibly a license agreement but it can be also used for allowing users to actually buy payed contributions. Contents of this url will be displayed on the EULA screen.

<source> It may specify a git repository which vpm will clone in its temporary folder. Otherwise the installation script have to take care of fetching pack data from the internet too. It is optional and it is rather recommended to use the GitClone method in the installation script.

<dependencies> The collection of <dependency> tags. Any other tags will be ignored by vpm here.

<dependency> is pointing to a pack which the current pack is relying on. Its child tags are

  • <name>* same as /vpack/meta/name just for dependency
  • <aliases> same as /vpack/meta/name just for dependency
  • <source>* can point to
    • a .vpack file with vpm(s)://foo.bar/stuff.vpack format
    • a .csx file containing plain C# installation script with http(s)://foo.bar/stuff.csx format
    • a public git repository presumably containing a vpack file in its root with http(s)://foo.bar/stuff.git format

<install>* is where the C# script goes which tells vpm what to do with afore-mentioned data. vpm is using C# Scripting language might be dubbed as Roslyn. You can find more on it at https://github.com/dotnet/roslyn/wiki

Here's a real life example using most of the above mentioned tags for mp.dx

<vpack>
	<meta>
		<name>mp.dx</name>
		<source>https://github.com/microdee/mp.dx.git</source>
        <license>http://www.imxprs.com/free/microdee/mdmit</license>
		<author>microdee</author>
		<dependencies>
			<dependency>
				<name>mp.essentials</name>
				<source>https://github.com/microdee/mp.essentials.git</source>
			</dependency>
			<dependency>
				<name>mp.fxh</name>
				<source>https://github.com/microdee/mp.fxh.git</source>
			</dependency>
			<dependency>
				<name>dx11-vvvv</name>
				<source>vpms://raw.githubusercontent.com/vvvvpm/vpdb/master/vux/dx11-vvvv/github.master.vpack</source>
			</dependency>
		</dependencies>
	</meta>
	<install>
		CopyDir(
			Pack.TempDir,
			VVVV.Dir + "\\packs\\" + Pack.Name,
			ignore: new string[] {"src", ".git*"}
		);
	</install>
</vpack>

License pages

In the vpack file you can specify a simple url pointing to any website. vpm provides some javascript functions which can allow the license page to communicate with vpm and pass data to the installation script. Such data can be used to select different editions of the same pack to install based on user input on the license page.

The page can disable vpm.disableAgree() or enable vpm.enableAgree() the "Agree and Install" checkbox, pass a string data to the installation script vpm.setInstallData(data) and it can automatically agree, advance to the next pack and pass string data to the installation script vpm.continue(data) with one function too. It can also read the current vpack xml file vpm.getPackXml().

The installation script can access the passed data via Pack.InstallDataFromJS which can be null or empty if the licensing page haven't written to it.

Note: Be careful what sorts of data you pass this way to the installer. Because vpm is open source one can easily look at this data with a Visual Studio debugger if they put breakpoints on the right functions. If you need to pass confidential data I'd suggest using an arbitrary encryption on it encoded in javascript wolrd and decoded in csx wolrd. Both are black boxes according to a simple debugger however again consider that the user can read csx source code in the vpack. So engineer it accordingly. To make this more secure base64 encoded compiled binary support is on the TODO list.

Installation scripts

Everything what's specified here https://github.com/dotnet/roslyn/wiki you can do that with vpm too (in theory). It's full fledged C# (in theory) with a python inspired flavor. The only limit here is your dedication. vpm will create a separate "global" object for each installation script containing useful information and common easy to use methods for moving/fetching files around.
See VpmGlobals at src/vpm/scriptglobals.cs (line 108) to get an idea about what they are and how to use it. (proper docs coming soon to wiki)

Because of how Roslyn works you don't have to "verbally reference" the global object every time you want to access its members. They can be written out implicitly like this:

// instead of VpmGlobals.Pack.Name just
Pack.Name
// or instead of VpmGlobals.GitClone(...) just
GitClone(...)

Here's a real-life example of the dx11-vvvv installation script

GitClone("https://github.com/mrvux/dx11-vvvv.git", Pack.TempDir);
GitClone("https://github.com/mrvux/FeralTic.git", Pack.TempDir + "\\FeralTic");
GitClone("https://github.com/mrvux/dx11-vvvv-girlpower.git", Pack.TempDir + "\\girlpower");

BuildSolution(2013, Pack.TempDir + "\\vvvv-dx11.sln", "Release|" + VVVV.Architecture);

CopyDir(
	Pack.TempDir + "\\Deploy\\Release\\" + VVVV.Architecture + "\\packs\\dx11",
	VVVV.Dir + "\\packs\\dx11"
);

Also other one for messages:

GitClone("https://github.com/microdee/vvvv-Message.git", Pack.TempDir);

BuildSolution(2013, Pack.TempDir + "\\src\\vvvv-Message.sln", "Release|" + VVVV.Architecture, true);

CopyDir(
	Pack.TempDir + "\\build\\" + VVVV.Architecture + "\\Release",
	VVVV.Dir + "\\packs\\vvvv-Message"
);
CopyDir(
	Pack.TempDir + "\\build\\AnyCPU\\Release",
	VVVV.Dir + "\\packs\\vvvv-Message"
);

Publishing

To make your pack available for the public you need to create your vpack file put it anywhere on the internet and create vpm link on your publishing surface (like vvvv.org or README.md's) with this syntax. (Note: pure html links will work on vvvv.org articles/contributions too ;) )

<a href="vpm(s)://DOMAIN/PATH/PACK.vpack">My Awesome Pack</a>

vpm links are actually http urls just the http:// part is replaced with vpm:// (or https:// is replaced with vpms:// for secure connections).
For example a vpm link to mp.dx is

<a href="vpms://raw.githubusercontent.com/microdee/mp.dx/master/p.vpack">mp.dx</a>

Apparently uri schemes other than http(s) is not working with github flavored markdown so I can't demonstrate here but you can get the point. :(

License is MIT aka "do whatever you want with it, no fucks are given"

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].