v3.0.0 "The Great Overhaul"
=====================================================================
Notice the major version change which comes with breaking changes to
2.x! Reconstructs "library" functions for both python and zsh scwrypts,
with changes to virtualenv naming conventions (you'll need to refresh
all virtualenv with the appropriate scwrypt).
--- Changes ------------------------------
- changed a naming convention across zsh scripts, particularly
  removing underscores where there is no need to avoid naming clash
  (e.g. 'zsh/lib/utils/io.zsh' renames '__STATUS' to 'STATUS')
- moved clients reliant on py.lib.http to the py.lib.http module
- python scripts now rely on py.lib.scwrypts.execute
- updated package.json in zx scripts to include `type = module`
- 'scwrypts --list' commandline argument now includes additional
  relevant data for each scwrypt
- environment variables no longer add themselves to be staged in the
  '.env.template'
--- New Features -------------------------
- new 'use' syntax for disjoint import within zsh scripts; took me
  a very long time to convince myself this would be necessary
- introduced scwrypt "groups" to allow portable module creation;
  (i.e. ability add your own scripts from another repo!)
- py.lib.scwrypts.io provides a combined IO stream for quick, hybrid
  use of input/output files and stdin/stdout
- py.lib.fzf provides a wrapper to provide similar functionality to
  zsh/utils/io.zsh including fzf_(head|tail)
- improved efficiency of various scwrypts; notably reducing runtime
  of scwrypts/environment sync
- improved scwrypts CLI by adding new options for exact scwrypt
  matching, better filtering, and prettier/more-detailed interfaces
--- New Scripts --------------------------
- py/twilio )
    basic SMS integration with twilio
     - send-sms
- py/directus )
    interactive directus GET query
     - get-items
- py/discord )
    post message to discord channel or webhook
     - post-message
			
			
This commit is contained in:
		
							
								
								
									
										9
									
								
								zsh/system/packages/build
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										9
									
								
								zsh/system/packages/build
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,9 @@ | ||||
| #!/bin/zsh | ||||
| DEPENDENCIES+=() | ||||
| REQUIRED_ENV+=() | ||||
|  | ||||
| use scwrypts/meta | ||||
|  | ||||
| CHECK_ENVIRONMENT | ||||
| ##################################################################### | ||||
| SCWRYPTS__RUN --name system/packages/install --group scwrypts --type zsh -- --only-build $@ | ||||
							
								
								
									
										9
									
								
								zsh/system/packages/download
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										9
									
								
								zsh/system/packages/download
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,9 @@ | ||||
| #!/bin/zsh | ||||
| DEPENDENCIES+=() | ||||
| REQUIRED_ENV+=() | ||||
|  | ||||
| use scwrypts/meta | ||||
|  | ||||
| CHECK_ENVIRONMENT | ||||
| ##################################################################### | ||||
| SCWRYPTS__RUN --name system/packages/install --group scwrypts --type zsh -- --only-pull $@ | ||||
							
								
								
									
										91
									
								
								zsh/system/packages/install
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										91
									
								
								zsh/system/packages/install
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,91 @@ | ||||
| #!/bin/zsh | ||||
| DEPENDENCIES+=() | ||||
| REQUIRED_ENV+=() | ||||
|  | ||||
| use system/packages/git | ||||
|  | ||||
| CHECK_ENVIRONMENT | ||||
| ##################################################################### | ||||
|  | ||||
| INSTALL() { | ||||
| 	local USAGE=" | ||||
| 		usage: [...options...] | ||||
|  | ||||
| 		options | ||||
| 		  -t, --target-url <string>   target URL; required for first-time download | ||||
| 		  -n, --local-name <string>   local name for package (optional) | ||||
|  | ||||
| 		  -u, --update                if package exists, update without prompt | ||||
| 		  -b, --only-build            if package exists, skip update step and only build | ||||
| 		  -p, --only-pull             skip the automated build step | ||||
| 		  -c, --clean                 for make, run make clean before build | ||||
|  | ||||
| 		  -h, --help                  print this message and exit | ||||
| 	" | ||||
| 	local NAME | ||||
| 	local TARGET | ||||
|  | ||||
| 	local SKIP_BUILD=0 | ||||
| 	local SKIP_PULL=0 | ||||
| 	local UPDATE=0 | ||||
| 	local CLEAN=0 | ||||
|  | ||||
| 	while [[ $# -gt 0 ]] | ||||
| 	do | ||||
| 		case $1 in | ||||
| 			-t | --target-url ) TARGET="$2"; shift 1 ;; | ||||
| 			-n | --local-name ) NAME="$2"; shift 1 ;; | ||||
|  | ||||
| 			-u | --update     ) UPDATE=1 ;; | ||||
| 			-b | --only-build ) SKIP_PULL=1 ;; | ||||
| 			-p | --only-pull  ) SKIP_BUILD=1 ;; | ||||
| 			-c | --clean      ) CLEAN=1 ;; | ||||
|  | ||||
| 			-h | --help ) USAGE; exit 0 ;; | ||||
|  | ||||
| 			-* ) ERROR "unknown argument '$1'" ;; | ||||
|  | ||||
| 			* ) [ ! $TARGET ] && TARGET="$1" \ | ||||
| 					|| ERROR "extra positional argument '$1'" \ | ||||
| 					; | ||||
| 				;; | ||||
| 		esac | ||||
| 		shift 1 | ||||
| 	done | ||||
|  | ||||
| 	[[ $SKIP_PULL -eq 1 ]] && [[ $SKIP_BUILD -eq 1 ]] && ERROR 'only one of [-b | -p] can be specified' | ||||
|  | ||||
| 	[ ! $TARGET ] && [ ! $NAME ] && { | ||||
| 		[[ $SKIP_BUILD -eq 1 ]] && { | ||||
| 			ERROR 'cannot skip build without specifying package local-name' | ||||
| 		} || { | ||||
| 			UPDATE=1 | ||||
| 			NAME=$(ls "$PACKAGE_INSTALL_DIR" | FZF 'select a package to update') | ||||
| 			[ ! $NAME ] && ERROR 'target-url required' | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	ERROR_CHECK | ||||
|  | ||||
| 	#################################################### | ||||
|  | ||||
| 	[ ! $NAME ] && { | ||||
| 		NAME=$(echo $TARGET | sed 's/.*\///; s/\.git$//') | ||||
| 		INFO "using default name '$NAME'" | ||||
| 	} | ||||
|  | ||||
| 	[ -d "$PACKAGE_INSTALL_DIR/$NAME" ] && [[ $SKIP_PULL -eq 0 ]] && { | ||||
| 		[[ $UPDATE -eq 0 ]] && Yn "package '$NAME' already exists; update now?" && UPDATE=1 | ||||
| 		[[ $UPDATE -eq 1 ]] && PULL || return 1 | ||||
| 	} | ||||
|  | ||||
| 	[ ! -d "$PACKAGE_INSTALL_DIR/$NAME" ] && { | ||||
| 		CLONE || return 2 | ||||
| 	} | ||||
|  | ||||
| 	[[ $SKIP_BUILD -eq 1 ]] && return 0 | ||||
| 	BUILD | ||||
| } | ||||
|  | ||||
| ##################################################################### | ||||
| INSTALL $@ | ||||
							
								
								
									
										9
									
								
								zsh/system/packages/update
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										9
									
								
								zsh/system/packages/update
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,9 @@ | ||||
| #!/bin/zsh | ||||
| DEPENDENCIES+=() | ||||
| REQUIRED_ENV+=() | ||||
|  | ||||
| use scwrypts/meta | ||||
|  | ||||
| CHECK_ENVIRONMENT | ||||
| ##################################################################### | ||||
| SCWRYPTS__RUN --name system/packages/install --group scwrypts --type zsh -- --update $@ | ||||
		Reference in New Issue
	
	Block a user