aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use the POSIX invocation of the `file` commandJoseph Hunkeler2020-03-031-7/+20
| | | | | * Trap general error string (there's probably more of them) * Report failures and actually fail out.
* Use package_target as input to mkmanifestJoseph Hunkeler2020-03-031-1/+1
|
* Ensure the target directory existsJoseph Hunkeler2020-03-031-1/+6
|
* Stop execution when SHELL is undefinedJoseph Hunkeler2020-03-031-0/+6
|
* Add missing headersJoseph Hunkeler2020-03-031-1/+5
|
* Update README.mdJoseph Hunkeler2020-03-031-23/+21
|
* Add "objdump" to list of requirementsJoseph Hunkeler2020-03-031-0/+1
| | | | * I'll get around to implementing support for `otool` eventually.
* Improvements:Joseph Hunkeler2020-03-031-2/+11
| | | | | * Add a default package location (URL will change some day) * SPM_ROOT environment variable can change the default root from ~/spm_root to whatever you want
* Use strdup() insteadJoseph Hunkeler2020-03-031-2/+1
|
* Bug fixes:Joseph Hunkeler2020-03-031-6/+9
| | | | | | | | * Allocate argv array with a character pointer, not just a byte (whoops) * Removed unneeded cast * Allocate enough memory for the output string * free() argv's resources * [l]strip() now strips blanks AND whitespaces from strings
* Do not force user to have a mirrorlist configurationJoseph Hunkeler2020-03-031-2/+17
|
* Check for error when opening path_manifestJoseph Hunkeler2020-03-031-1/+5
|
* Add missing LF in usageJoseph Hunkeler2020-03-031-1/+1
|
* Bug fixes:Joseph Hunkeler2020-03-031-7/+20
| | | | | | | | | | * Use strdup() instead of join() for records_topdir * Check for and die if packages do not exist in manifests, or on local disk * realloc() the length of the payload string (instead of strlen() on an integer... whoops) * Fix num_requirements not producing the correct value * ManifestPackage `origin` does not need repo_target anymore * Copy packages from non-default package storage directories to the main local package store *
* Begin consolidating paths (manifests and temp directories)Joseph Hunkeler2020-03-025-41/+40
|
* Refactor startswith() and endswidth() usageJoseph Hunkeler2020-03-026-10/+17
|
* Simplify startswith() and endswidth() calls to avoid looking at APIJoseph Hunkeler2020-03-021-7/+7
|
* Trying to iron out a few manifest pathing issuesJoseph Hunkeler2020-02-284-60/+132
|
* Improvements:Joseph Hunkeler2020-02-2814-93/+284
| | | | | | | | * Refactored a few function names * Can read package metadata * Can delete packages * Can download! and install packages at the same time * Can prompt the user before proceeding
* Fix off-by-one error in config parserJoseph Hunkeler2020-02-281-14/+29
|
* Add join_ex() [simplified join() function]Joseph Hunkeler2020-02-282-0/+60
|
* Multiple things:Joseph Hunkeler2020-02-2615-79/+356
| | | | | | | | * Add strdup_array() * Begin consolidating spm root information into SPM_Hierarchy * Begin consolidating metadata * Begin trimming repeated code (mostly file reading) * Store information about installed packages under [root]/var/db/records
* Refactor:Joseph Hunkeler2020-02-251-60/+42
| | | | | | | * Move installation code out * Refactor spm_* variable names * Add missing arguments to usage * Add --yes (-y) argument to disable interactive prompts
* Fix invalid array access on short stringsJoseph Hunkeler2020-02-251-3/+9
|
* Break out of scanning loop when a match is discoveredJoseph Hunkeler2020-02-251-1/+2
|
* Free ManifestPackage variablesJoseph Hunkeler2020-02-251-1/+4
|
* Use user_input.h headerJoseph Hunkeler2020-02-251-0/+1
|
* Refactor spm_* directory names:Joseph Hunkeler2020-02-251-20/+23
| | | | * Add spm_pkgconfigdir
* Refactor installation:Joseph Hunkeler2020-02-252-38/+171
| | | | | | | | * install() accepts a temporary directory as an argument * Add install_package_record() * Add is_installed() * Add do_install() wrapper * Use spm_user_yesno() before installation
* Remove unused stub functionJoseph Hunkeler2020-02-251-4/+0
|
* Add spm_mkdtemp() functionJoseph Hunkeler2020-02-252-1/+19
|
* Implement prompt_user flagJoseph Hunkeler2020-02-252-0/+2
|
* Add user_input.c to cmakeJoseph Hunkeler2020-02-251-2/+2
|
* Initial commit of user_input.[c,h]Joseph Hunkeler2020-02-252-0/+53
|
* Add pkg-config environment variableJoseph Hunkeler2020-02-241-0/+4
|
* Set LD_LIBRARY_PATH to help tether the runtime environmentJoseph Hunkeler2020-02-241-0/+1
|
* Remove reference to deps.hJoseph Hunkeler2020-02-241-1/+0
|
* Remove deps.hJoseph Hunkeler2020-02-241-19/+0
|
* Bootstrap: Ignore or append filesystem packageJoseph Hunkeler2020-02-241-1/+4
|
* Use package.h and resolve.hJoseph Hunkeler2020-02-241-1/+2
|
* Use package.hJoseph Hunkeler2020-02-241-12/+7
|
* Rename ambiguous variablesJoseph Hunkeler2020-02-241-96/+32
| | | | * Hook up resolve.c functions
* Replace deps.c with resolve.cJoseph Hunkeler2020-02-241-1/+1
|
* Add install_show_package()Joseph Hunkeler2020-02-242-0/+10
|
* Add comparison function, refactor definesJoseph Hunkeler2020-02-242-18/+47
|
* Initial commit of resolve.c (deps.c replacement)Joseph Hunkeler2020-02-242-4/+55
|
* Remove deps.cJoseph Hunkeler2020-02-241-223/+0
|
* Move exists() from deps.h to fs.hJoseph Hunkeler2020-02-243-2/+10
|
* Metadata:Joseph Hunkeler2020-02-206-11/+45
| | | | | | | * Add .SPM_FILELIST * Add .SPM_DESCRIPTOR * Add generators for both to spmbuild Add new metadata to runtime and arrays
* Fix increment warningJoseph Hunkeler2020-02-191-2/+1
|