From 09bb2854478e552523c15de6f80c9f92d71376a3 Mon Sep 17 00:00:00 2001 From: Aoi Koizumi Date: Fri, 29 Apr 2022 10:06:13 -0300 Subject: Moving git host yet again --- www/8dad34db.txt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 www/8dad34db.txt (limited to 'www/8dad34db.txt') diff --git a/www/8dad34db.txt b/www/8dad34db.txt new file mode 100644 index 0000000..07ff3f4 --- /dev/null +++ b/www/8dad34db.txt @@ -0,0 +1,21 @@ +ID: 8dad34db-ac42-4c04-bcd9-b5dc363bce3f +Title: Automating package builds +Authors: Nova[有線魔女] +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 -- cgit 1.4.1-2-gfad0 er/commit/doc/pydoc/ranger.gui.mouse_event.html?h=v1.6.0&id=4b9150b51a2aa2decaa4f63181398fed43ab6293'>commit diff stats
blob: 946f6737a09826f622b2c852422f36b6a4beb3ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81