diff options
author | Aoi Koizumi <novaburst@kalli.st> | 2022-03-19 17:51:17 -0300 |
---|---|---|
committer | Aoi Koizumi <novaburst@kalli.st> | 2022-03-19 17:51:17 -0300 |
commit | 1203445eceb3903d1c56b9f0fd862e6d0c73031c (patch) | |
tree | 8d7437f1904de511d802bdc6f25000773f7564ea /gmi/8dad34db.txt | |
parent | 2ffad537e7dc4e6d70a0873518d4c6a09a5c92fd (diff) | |
download | mirror-world-1203445eceb3903d1c56b9f0fd862e6d0c73031c.tar.gz |
Removed files added by mistake, updated convert.conf settings for gmi
and www, updated some texts of this repository. Signed-off-by: Aoi Koizumi <novaburst@kalli.st>
Diffstat (limited to 'gmi/8dad34db.txt')
-rw-r--r-- | gmi/8dad34db.txt | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/gmi/8dad34db.txt b/gmi/8dad34db.txt deleted file mode 100644 index 07ff3f4..0000000 --- a/gmi/8dad34db.txt +++ /dev/null @@ -1,21 +0,0 @@ -ID: 8dad34db-ac42-4c04-bcd9-b5dc363bce3f -Title: Automating package builds -Authors: Nova[有線魔女] <novaburst@envs.net> -Date: 2021-06-25T11:05:33-00:00 -Topics: Computing - -Out of boredom, while testing stuff on my local aports tree, I wrote a shell script to automate package builds , which is just a simple 'for' loop that does the actual job. - -Basically so I wouldn't have to type the commands manually each time I wanted to build a package from my tree. Currently it's on experimental phase and shouldn't be used on production. - -These lines below this text are the contents of the script , which kind of self-explanates itself. Currently only tested on the 'main' directory of the tree, mostly because there are barely any build scripts on the other directories. - -'#!/bin/sh - for package in $(find . -type d | grep -v pkg | grep -v src); do - cd $package - abuild -r - cd $OLDPWD - done -' -* [2021-09-09] That snippet is no longer used and was therefore discontinued, after I wrote a saner approach, combined with -makefiles to achieve automation |