add man/manmake.sh, alnux-pkg-standard.7.md, aps.8.md. modify aps

This commit is contained in:
Ohio2 2021-10-06 15:03:28 +02:00
parent f37d2a58d7
commit 1d494b87ff
Signed by: Ohio2
GPG key ID: 2746D0A9E4F21E80
5 changed files with 45 additions and 26 deletions

28
aps
View file

@ -52,11 +52,9 @@ function notf(){
echo -e "\e[34m==>\e[36m NOTIFICATION:\e[39m $1" echo -e "\e[34m==>\e[36m NOTIFICATION:\e[39m $1"
} }
function confirm(){ function confirm(){
prn "To $1, press ENTER, to cancel, press CTRL+C" prn "To continue press ENTER, or to exit CTRL-C"
read -p
} }
#function dbg(){
# wrn "This is a debug build, that may not work!"
#}
function sources(){ function sources(){
pkg_config_url="$1" pkg_config_url="$1"
pkg_config_url_prefix=$(echo ${pkg_config_url} | cut -d'+' -f1) pkg_config_url_prefix=$(echo ${pkg_config_url} | cut -d'+' -f1)
@ -71,11 +69,12 @@ function sources(){
*.tar*) prn $(tar -xf ${pkg_config_archv} -C pkgex) ;; *.tar*) prn $(tar -xf ${pkg_config_archv} -C pkgex) ;;
*.xz) prn $(cd pkgex && xz -d ../${pkg_config_archv} && cd ..) ;; *.xz) prn $(cd pkgex && xz -d ../${pkg_config_archv} && cd ..) ;;
*.bz2) prn $(cd pkgex && bzip2 -d ../${pkg_config_archv} && cd ..) ;; *.bz2) prn $(cd pkgex && bzip2 -d ../${pkg_config_archv} && cd ..) ;;
*.gz) prwork *.gz) cd pkgex && gzip -d ../${pkg_config_archv} && cd .. ;;
*) ;;
esac esac
mkdir --parents pkgsrc mkdir --parents pkgsrc
cp -r pkgex/*/* pkgsrc ;; cp -r pkgex/*/* pkgsrc ;;
*) wrn "Old Alnux sources is probably used!" *) err "Old Alnux sources is probably used!"
esac esac
} }
@ -161,8 +160,8 @@ function pkg_local(){
err "Target ${pkg_name} does not have a package script (it's an invalid package!). Exiting..." err "Target ${pkg_name} does not have a package script (it's an invalid package!). Exiting..."
fi fi
# Old Cleanup, might work # Old Cleanup, might work
#rm -r "${pkg_path}" rm -r "${pkg_path}"
#rm "${temp_location}/${pkg_name}-payloadfiles" rm "${temp_location}/${pkg_name}-payloadfiles"
cd "${install_root}" || err "Could not return to main directory. Exiting..." cd "${install_root}" || err "Could not return to main directory. Exiting..."
unset pkg_path unset pkg_path
unset pkg_name unset pkg_name
@ -227,16 +226,15 @@ function main(){
err "A lock file already exists (another instance of the package manager could be running). If you're sure no package manager is running, remove the file ${lock}." err "A lock file already exists (another instance of the package manager could be running). If you're sure no package manager is running, remove the file ${lock}."
fi fi
touch "${lock}" touch "${lock}"
#dbg
case $1 in case $1 in
s|sync) sync_local_repo_database "${official}" ${official} s|sync) sync_local_repo_database "${official}" ${official}
[ -z "${2}" ] && exit 0 [ -z "${2}" ] && exit 0
install_package_from_repo "${official}" "${@: -1}" ;; install_package_from_repo "${official}" "${@: -1}"
#confirm "install" ;; confirm ;;
i|install) pkg_local ${*: -1} ;; i|install) pkg_local ${*: -1}
# confirm "install" ;; confirm ;;
u|update) update ;; u|update) update
# confirm "update" ;; confirm ;;
v|version) version ;; v|version) version ;;
h|help) help ;; h|help) help ;;
apsinst) if [ $APS_PKG=y ]; then apsinst) if [ $APS_PKG=y ]; then

View file

@ -0,0 +1,9 @@
#### APS/Alnux packaging standard
file structure: \
build (Shell/DSL) \
sha256 (DSL, seperate files for every sum) \
sources (DSL, seperate files for every source) \
package (DSL, variable) \
expectations, and alnux: \
alnux is probably a diffrent distro than KISS. So don't try to install KISS packages on AL. \

View file

@ -1,11 +0,0 @@
aps(v0.1.0) aps(v0.1.0)
aappss -- aallnnuuxx ppaacckkaaggee mmaannaaggeerr
To submit patches, contact the alnux dev team via mail (mailing list).
If you need help refer to the wiki
aps(v0.1.0)

4
man/aps.8.md Normal file
View file

@ -0,0 +1,4 @@
#### APS version 0.1.0
to patch aps, mail the alnux dev team the patch.\
for pkg standards, visit alnux-pkg-standard.7. \
Note: APS contains some old code still, it's been updated to support alot of standards. \

19
man/manmake.sh Executable file
View file

@ -0,0 +1,19 @@
# clean everything
function clean(){
set -x
rm aps.8
rm alnux-pkg-standard.7
}
function panbuild(){
set -x
pandoc aps.8.md -f markdown -t man -o aps.8 -s
pandoc alnux-pkg-standard.7.md -f markdown -t man -o alnux-pkg-standard.7 -s
}
function main(){
case $1 in
panbuild) panbuild ;;
clean) clean ;;
*) panbuild ;;
esac
}
main $1