From Edd Salkield to ~sircmpwn/alpine-aports
python module for interfacing with SPI devices from user space https://github.com/doceme/py-spidev --- testing/py3-spidev/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 testing/py3-spidev/APKBUILD diff --git a/testing/py3-spidev/APKBUILD b/testing/py3-spidev/APKBUILD new file mode 100644 index 0000000000..3f735f1ca9 --- /dev/null +++ b/testing/py3-spidev/APKBUILD @@ -0,0 +1,26 @@ # Contributor: Edd Salkield <edd@salkield.uk>[message trimmed]
From Edd Salkield to ~adnano/kiln-devel
Thanks for your help getting this implemented. I'll take a look at writing some tests next time I have a bit of time.
From Edd Salkield to ~sircmpwn/alpine-aports
https://github.com/marcus-crane/khinsider A khinsider downloader written in Go --- testing/khinsider/APKBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 testing/khinsider/APKBUILD diff --git a/testing/khinsider/APKBUILD b/testing/khinsider/APKBUILD new file mode 100644 index 0000000000..1cbb7b4106 --- /dev/null +++ b/testing/khinsider/APKBUILD @@ -0,0 +1,30 @@ # Contributor: Edd Salkield <edd@salkield.uk>[message trimmed]
From Edd Salkield to ~adnano/kiln-discuss
I'm looking for a way to provide templates that override the page.ext templates for specific pages, and wondering if you'd be willing to accept a patch? For example, if I have about.html and projects.html, they both currently derive from the templates page.html and base.html. However, I'd like them to derive from different templates. I propose that if a template exists with the same name as the file, that template would apply to the page instead of the default page.ext. Therefore, creating a template about.html in my example would cause the about page to derive from about.html and base.html. If there is no projects.html template, the projects page would still derive from
From Edd Salkield to ~adnano/kiln-devel
--- docs/kiln.1.scd | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/docs/kiln.1.scd b/docs/kiln.1.scd index e995581..0908456 100644 --- a/docs/kiln.1.scd +++ b/docs/kiln.1.scd @@ -621,6 +621,48 @@ All templates have the following functions available to them: *lt* _arg1_, _arg2_ Returns the boolean truth of _arg1_ < _arg2_. *math.Add* _arg1_, _arg2_ Returns _arg1_ + _arg2_ as an integer if both arguments are[message trimmed]
From Edd Salkield to ~adnano/kiln-devel
--- funcs.go | 279 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 279 insertions(+) diff --git a/funcs.go b/funcs.go index 2704ebe..54082ba 100644 --- a/funcs.go +++ b/funcs.go @@ -2,6 +2,7 @@ package main import ( "html/template" "math" "path" [message trimmed]
From Edd Salkield to ~adnano/kiln-devel
Yep I'll make these changes. I really should have checked for this beforehand - sorry!
From Edd Salkield to ~adnano/kiln-devel
--- docs/kiln.1.scd | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/docs/kiln.1.scd b/docs/kiln.1.scd index e995581..5ee3a7e 100644 --- a/docs/kiln.1.scd +++ b/docs/kiln.1.scd @@ -621,6 +621,48 @@ All templates have the following functions available to them: *lt* _arg1_, _arg2_ Returns the boolean truth of _arg1_ < _arg2_. *math.Add* _arg1_, _arg2_ Returns _arg1_ + _arg2_ as an integer if both arguments are[message trimmed]
From Edd Salkield to ~adnano/kiln-devel
--- funcs.go | 281 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 281 insertions(+) diff --git a/funcs.go b/funcs.go index 2704ebe..578a229 100644 --- a/funcs.go +++ b/funcs.go @@ -2,6 +2,7 @@ package main import ( "html/template" "math" "path" [message trimmed]
From Edd Salkield to ~adnano/kiln-devel
--- docs/kiln.1.scd | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/docs/kiln.1.scd b/docs/kiln.1.scd index e995581..9633adb 100644 --- a/docs/kiln.1.scd +++ b/docs/kiln.1.scd @@ -621,6 +621,51 @@ All templates have the following functions available to them: *lt* _arg1_, _arg2_ Returns the boolean truth of _arg1_ < _arg2_. *math.add* _arg1_, _arg2_ Returns _arg1_ + _arg2_ as an integer if both arguments are[message trimmed]