From 0a5783071b38ff98ccdf52d5202663f68b51a001 Mon Sep 17 00:00:00 2001 From: lost Date: Fri, 29 May 2026 17:45:13 -0400 Subject: added muon --- repos/community/muon/.checksum | 1 + repos/community/muon/.files | 11 +++++++++++ repos/community/muon/abuild | 12 ++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 repos/community/muon/.checksum create mode 100644 repos/community/muon/.files create mode 100644 repos/community/muon/abuild (limited to 'repos') diff --git a/repos/community/muon/.checksum b/repos/community/muon/.checksum new file mode 100644 index 00000000..2d6a2383 --- /dev/null +++ b/repos/community/muon/.checksum @@ -0,0 +1 @@ +22523275c41f635fb0e70f35cb263cf84550dcfdd1ddae8ee5d5194eeb4aeb59 745b10c08e8926fd55d6df17bfda04c17eb3a454.tar.gz diff --git a/repos/community/muon/.files b/repos/community/muon/.files new file mode 100644 index 00000000..780d5113 --- /dev/null +++ b/repos/community/muon/.files @@ -0,0 +1,11 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/muon +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/muon.1.gz +drwxr-xr-x root/root usr/share/man/man3/ +-rw-r--r-- root/root usr/share/man/man3/meson-reference.3.gz +drwxr-xr-x root/root usr/share/man/man5/ +-rw-r--r-- root/root usr/share/man/man5/meson.build.5.gz diff --git a/repos/community/muon/abuild b/repos/community/muon/abuild new file mode 100644 index 00000000..af22d343 --- /dev/null +++ b/repos/community/muon/abuild @@ -0,0 +1,12 @@ +name=muon +version=0.6.0 +commit=745b10c08e8926fd55d6df17bfda04c17eb3a454 +release=1 +source="https://github.com/muon-build/$name/archive/$commit.tar.gz" + +build() { + ./bootstrap.sh build + build/muon-bootstrap setup -Dprefix=/usr -Dmeson-docs=disabled build + build/muon-bootstrap -C build samu + build/muon-bootstrap -C build install -d "$PKG" +} -- cgit v1.2.3 From cac53b647db776adc62b709b26c3f1ee0ec85107 Mon Sep 17 00:00:00 2001 From: lost Date: Fri, 29 May 2026 21:49:43 -0400 Subject: fixed spelling error --- repos/community/neuwm/abuild | 6 ------ 1 file changed, 6 deletions(-) (limited to 'repos') diff --git a/repos/community/neuwm/abuild b/repos/community/neuwm/abuild index 5fcdce1b..27825175 100644 --- a/repos/community/neuwm/abuild +++ b/repos/community/neuwm/abuild @@ -4,9 +4,3 @@ commit=95f6417e02aabbd1a0b0c7d1c6a1388930c29e30 release=1 source="https://git.sr.ht/~pfr/$name/archive/$commit.tar.gz meson.patch" - -build () { - meson setup build -Dprefix=/usr - ninja -C build - meson install -C build -} -- cgit v1.2.3 From 044fab22caac283bad5c7f274adf194fffe297aa Mon Sep 17 00:00:00 2001 From: lost Date: Fri, 29 May 2026 22:18:23 -0400 Subject: added byacc (berkeley implementation of yacc) --- repos/community/byacc/.checksum | 1 + repos/community/byacc/.files | 9 +++++++++ repos/community/byacc/abuild | 16 ++++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 repos/community/byacc/.checksum create mode 100644 repos/community/byacc/.files create mode 100644 repos/community/byacc/abuild (limited to 'repos') diff --git a/repos/community/byacc/.checksum b/repos/community/byacc/.checksum new file mode 100644 index 00000000..0615998d --- /dev/null +++ b/repos/community/byacc/.checksum @@ -0,0 +1 @@ +1f548f43861c383a5caaf5ec56332af8b3d45cdd2d3dd70b7585c65ae3a661ef byacc-20240109.tgz diff --git a/repos/community/byacc/.files b/repos/community/byacc/.files new file mode 100644 index 00000000..9c90927b --- /dev/null +++ b/repos/community/byacc/.files @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +lrwxrwxrwx root/root usr/bin/bison -> /usr/bin/yacc +lrwxrwxrwx root/root usr/bin/byacc -> /usr/bin/yacc +-rwxr-xr-x root/root usr/bin/yacc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/yacc.1.gz diff --git a/repos/community/byacc/abuild b/repos/community/byacc/abuild new file mode 100644 index 00000000..7cc4f68e --- /dev/null +++ b/repos/community/byacc/abuild @@ -0,0 +1,16 @@ +name=byacc +version=20240109 +release=1 +source="https://invisible-mirror.net/archives/byacc/byacc-${version}.tgz" + +build () { + ./configure --prefix=/usr + make + make install DESTDIR=$PKG + + # the section below is a really bad way to link bison&byacc to yacc + cp yacc /usr/bin + ln -s /usr/bin/yacc $PKG/usr/bin/byacc + ln -s /usr/bin/yacc $PKG/usr/bin/biso + rm /usr/bin/yacc +} -- cgit v1.2.3 From 754aa4f7f94629fa0ae287631dd9e056a52d4346 Mon Sep 17 00:00:00 2001 From: lost Date: Sat, 30 May 2026 11:04:11 -0400 Subject: fixed byacc linking --- repos/community/byacc/abuild | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'repos') diff --git a/repos/community/byacc/abuild b/repos/community/byacc/abuild index 7cc4f68e..42a784bc 100644 --- a/repos/community/byacc/abuild +++ b/repos/community/byacc/abuild @@ -8,9 +8,6 @@ build () { make make install DESTDIR=$PKG - # the section below is a really bad way to link bison&byacc to yacc - cp yacc /usr/bin ln -s /usr/bin/yacc $PKG/usr/bin/byacc - ln -s /usr/bin/yacc $PKG/usr/bin/biso - rm /usr/bin/yacc + ln -s /usr/bin/yacc $PKG/usr/bin/bison } -- cgit v1.2.3 From d0b959501c9f06fb3ede18ba4a8d9186257b6c57 Mon Sep 17 00:00:00 2001 From: lost Date: Sat, 30 May 2026 11:18:25 -0400 Subject: shorten byacc linking --- repos/community/byacc/.files | 4 ++-- repos/community/byacc/abuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'repos') diff --git a/repos/community/byacc/.files b/repos/community/byacc/.files index 9c90927b..ec61db41 100644 --- a/repos/community/byacc/.files +++ b/repos/community/byacc/.files @@ -1,7 +1,7 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -lrwxrwxrwx root/root usr/bin/bison -> /usr/bin/yacc -lrwxrwxrwx root/root usr/bin/byacc -> /usr/bin/yacc +lrwxrwxrwx root/root usr/bin/bison -> yacc +lrwxrwxrwx root/root usr/bin/byacc -> yacc -rwxr-xr-x root/root usr/bin/yacc drwxr-xr-x root/root usr/share/ drwxr-xr-x root/root usr/share/man/ diff --git a/repos/community/byacc/abuild b/repos/community/byacc/abuild index 42a784bc..7ee6574f 100644 --- a/repos/community/byacc/abuild +++ b/repos/community/byacc/abuild @@ -8,6 +8,6 @@ build () { make make install DESTDIR=$PKG - ln -s /usr/bin/yacc $PKG/usr/bin/byacc - ln -s /usr/bin/yacc $PKG/usr/bin/bison + ln -s yacc $PKG/usr/bin/byacc + ln -s yacc $PKG/usr/bin/bison } -- cgit v1.2.3 From ad3b62f3fb15c54d6fee675c0992311b53f2ae40 Mon Sep 17 00:00:00 2001 From: lost Date: Sat, 30 May 2026 18:21:26 -0400 Subject: added info files --- repos/community/byacc/info | 4 ++++ repos/community/hevel/info | 4 ++++ repos/community/hst/info | 4 ++++ repos/community/lua/info | 4 ++++ repos/community/muon/info | 4 ++++ repos/community/netbsd-curses/info | 4 ++++ repos/community/neuipc/info | 4 ++++ repos/community/neuswc/info | 4 ++++ repos/community/neuswiv/info | 4 ++++ repos/community/neuwld/info | 4 ++++ repos/community/neuwm/info | 4 ++++ repos/community/tcc/info | 4 ++++ repos/community/wawa/info | 4 ++++ 13 files changed, 52 insertions(+) create mode 100644 repos/community/byacc/info create mode 100644 repos/community/hevel/info create mode 100644 repos/community/hst/info create mode 100644 repos/community/lua/info create mode 100644 repos/community/muon/info create mode 100644 repos/community/netbsd-curses/info create mode 100644 repos/community/neuipc/info create mode 100644 repos/community/neuswc/info create mode 100644 repos/community/neuswiv/info create mode 100644 repos/community/neuwld/info create mode 100644 repos/community/neuwm/info create mode 100644 repos/community/tcc/info create mode 100644 repos/community/wawa/info (limited to 'repos') diff --git a/repos/community/byacc/info b/repos/community/byacc/info new file mode 100644 index 00000000..5546174a --- /dev/null +++ b/repos/community/byacc/info @@ -0,0 +1,4 @@ +description: Berkeley implementation of the yacc parser generator +license: Public Domain +upstream: https://invisible-island.net/byacc +maintainer: lostt diff --git a/repos/community/hevel/info b/repos/community/hevel/info new file mode 100644 index 00000000..da9a859f --- /dev/null +++ b/repos/community/hevel/info @@ -0,0 +1,4 @@ +description: Transparent window system based on neuswc +homepage: https://git.sr.ht/~dlm/hevel +license: ISC +maintainer: lostt diff --git a/repos/community/hst/info b/repos/community/hst/info new file mode 100644 index 00000000..38c5d72f --- /dev/null +++ b/repos/community/hst/info @@ -0,0 +1,4 @@ +description: Patched fork of Michael Forney's st-wl +homepage: https://git.sr.ht/~dlm/hevel +license: MIT +maintainer: lostt diff --git a/repos/community/lua/info b/repos/community/lua/info new file mode 100644 index 00000000..c756d909 --- /dev/null +++ b/repos/community/lua/info @@ -0,0 +1,4 @@ +description: Powerful, efficient, lightweight embeddable scripting language +homepage: https://lua.org +license: MIT +maintainer: lostt diff --git a/repos/community/muon/info b/repos/community/muon/info new file mode 100644 index 00000000..b9522fcb --- /dev/null +++ b/repos/community/muon/info @@ -0,0 +1,4 @@ +description: C99 implementation of the meson build system +homepage: https://muon.build +license: GPL-3.0 +maintainer: lostt diff --git a/repos/community/netbsd-curses/info b/repos/community/netbsd-curses/info new file mode 100644 index 00000000..6fe46221 --- /dev/null +++ b/repos/community/netbsd-curses/info @@ -0,0 +1,4 @@ +description: Portable libcurses and deps from NetBSD +homepage: https://github.com/sabotage-linux/netbsd-curses +license: BSD-3-Clause +maintainer: lostt diff --git a/repos/community/neuipc/info b/repos/community/neuipc/info new file mode 100644 index 00000000..2642f6fe --- /dev/null +++ b/repos/community/neuipc/info @@ -0,0 +1,4 @@ +description: Lightweight unix IPC library focused on compatibility with neuswc +homepage: https://codeberg.org/binkd/neuipc +license: ISC +maintainer: lostt diff --git a/repos/community/neuswc/info b/repos/community/neuswc/info new file mode 100644 index 00000000..e79a4789 --- /dev/null +++ b/repos/community/neuswc/info @@ -0,0 +1,4 @@ +description: swc based wayland library +homepage: https://git.sr.ht/~shrub900/neuswc +license: MIT +maintainer: lostt diff --git a/repos/community/neuswiv/info b/repos/community/neuswiv/info new file mode 100644 index 00000000..0d1fefad --- /dev/null +++ b/repos/community/neuswiv/info @@ -0,0 +1,4 @@ +description: Simple wayland image viwer +homepage: https://git.sr.ht/~pfr/swiv +license: 0BSD +maintainer: lostt diff --git a/repos/community/neuwld/info b/repos/community/neuwld/info new file mode 100644 index 00000000..88091251 --- /dev/null +++ b/repos/community/neuwld/info @@ -0,0 +1,4 @@ +description: Drawing library that targets wayland +homepage: https://git.sr.ht/~shrub900/neuswc +license: MIT +maintainer: lostt diff --git a/repos/community/neuwm/info b/repos/community/neuwm/info new file mode 100644 index 00000000..f6b101d1 --- /dev/null +++ b/repos/community/neuwm/info @@ -0,0 +1,4 @@ +description: Wayland compsitor based neuswc, forked from wsxwm and inspired by hevel +homepage: https://git.sr.ht/~pfr/neuwm +license: Unlicense +maintainer: lostt diff --git a/repos/community/tcc/info b/repos/community/tcc/info new file mode 100644 index 00000000..ebc98b9d --- /dev/null +++ b/repos/community/tcc/info @@ -0,0 +1,4 @@ +description: Tiny C compiler +homepage: https://bellard.org/tcc +license: LGPL-2.1 +maintainer: lostt diff --git a/repos/community/wawa/info b/repos/community/wawa/info new file mode 100644 index 00000000..f2ae3443 --- /dev/null +++ b/repos/community/wawa/info @@ -0,0 +1,4 @@ +description: Simpler layer shell wallpaper setter +homepage: https://codeberg.org/sewn/wawa +license: MIT +maintainer: lostt -- cgit v1.2.3 From c2207f43ae0c800ed3b5a33bae13a8ba3e10f3f5 Mon Sep 17 00:00:00 2001 From: lost Date: Sat, 30 May 2026 19:28:34 -0400 Subject: added my email --- repos/community/byacc/info | 2 +- repos/community/hevel/info | 2 +- repos/community/hst/info | 2 +- repos/community/lua/info | 2 +- repos/community/muon/info | 2 +- repos/community/netbsd-curses/info | 2 +- repos/community/neuipc/info | 2 +- repos/community/neuswc/info | 2 +- repos/community/neuswiv/info | 2 +- repos/community/neuwld/info | 2 +- repos/community/neuwm/info | 2 +- repos/community/tcc/info | 2 +- repos/community/wawa/info | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) (limited to 'repos') diff --git a/repos/community/byacc/info b/repos/community/byacc/info index 5546174a..44fc1da8 100644 --- a/repos/community/byacc/info +++ b/repos/community/byacc/info @@ -1,4 +1,4 @@ description: Berkeley implementation of the yacc parser generator license: Public Domain upstream: https://invisible-island.net/byacc -maintainer: lostt +maintainer: Lostt diff --git a/repos/community/hevel/info b/repos/community/hevel/info index da9a859f..9d16fa43 100644 --- a/repos/community/hevel/info +++ b/repos/community/hevel/info @@ -1,4 +1,4 @@ description: Transparent window system based on neuswc homepage: https://git.sr.ht/~dlm/hevel license: ISC -maintainer: lostt +maintainer: Lostt diff --git a/repos/community/hst/info b/repos/community/hst/info index 38c5d72f..25728a02 100644 --- a/repos/community/hst/info +++ b/repos/community/hst/info @@ -1,4 +1,4 @@ description: Patched fork of Michael Forney's st-wl homepage: https://git.sr.ht/~dlm/hevel license: MIT -maintainer: lostt +maintainer: Lostt diff --git a/repos/community/lua/info b/repos/community/lua/info index c756d909..395f678e 100644 --- a/repos/community/lua/info +++ b/repos/community/lua/info @@ -1,4 +1,4 @@ description: Powerful, efficient, lightweight embeddable scripting language homepage: https://lua.org license: MIT -maintainer: lostt +maintainer: Lostt diff --git a/repos/community/muon/info b/repos/community/muon/info index b9522fcb..9aa55dff 100644 --- a/repos/community/muon/info +++ b/repos/community/muon/info @@ -1,4 +1,4 @@ description: C99 implementation of the meson build system homepage: https://muon.build license: GPL-3.0 -maintainer: lostt +maintainer: Lostt diff --git a/repos/community/netbsd-curses/info b/repos/community/netbsd-curses/info index 6fe46221..3d31f832 100644 --- a/repos/community/netbsd-curses/info +++ b/repos/community/netbsd-curses/info @@ -1,4 +1,4 @@ description: Portable libcurses and deps from NetBSD homepage: https://github.com/sabotage-linux/netbsd-curses license: BSD-3-Clause -maintainer: lostt +maintainer: Lostt diff --git a/repos/community/neuipc/info b/repos/community/neuipc/info index 2642f6fe..3ecea9de 100644 --- a/repos/community/neuipc/info +++ b/repos/community/neuipc/info @@ -1,4 +1,4 @@ description: Lightweight unix IPC library focused on compatibility with neuswc homepage: https://codeberg.org/binkd/neuipc license: ISC -maintainer: lostt +maintainer: Lostt diff --git a/repos/community/neuswc/info b/repos/community/neuswc/info index e79a4789..c9ac69e5 100644 --- a/repos/community/neuswc/info +++ b/repos/community/neuswc/info @@ -1,4 +1,4 @@ description: swc based wayland library homepage: https://git.sr.ht/~shrub900/neuswc license: MIT -maintainer: lostt +maintainer: Lostt diff --git a/repos/community/neuswiv/info b/repos/community/neuswiv/info index 0d1fefad..3bd1c548 100644 --- a/repos/community/neuswiv/info +++ b/repos/community/neuswiv/info @@ -1,4 +1,4 @@ description: Simple wayland image viwer homepage: https://git.sr.ht/~pfr/swiv license: 0BSD -maintainer: lostt +maintainer: Lostt diff --git a/repos/community/neuwld/info b/repos/community/neuwld/info index 88091251..ae3f319f 100644 --- a/repos/community/neuwld/info +++ b/repos/community/neuwld/info @@ -1,4 +1,4 @@ description: Drawing library that targets wayland homepage: https://git.sr.ht/~shrub900/neuswc license: MIT -maintainer: lostt +maintainer: Lostt diff --git a/repos/community/neuwm/info b/repos/community/neuwm/info index f6b101d1..f574ce86 100644 --- a/repos/community/neuwm/info +++ b/repos/community/neuwm/info @@ -1,4 +1,4 @@ description: Wayland compsitor based neuswc, forked from wsxwm and inspired by hevel homepage: https://git.sr.ht/~pfr/neuwm license: Unlicense -maintainer: lostt +maintainer: Lostt diff --git a/repos/community/tcc/info b/repos/community/tcc/info index ebc98b9d..73a179b1 100644 --- a/repos/community/tcc/info +++ b/repos/community/tcc/info @@ -1,4 +1,4 @@ description: Tiny C compiler homepage: https://bellard.org/tcc license: LGPL-2.1 -maintainer: lostt +maintainer: Lostt diff --git a/repos/community/wawa/info b/repos/community/wawa/info index f2ae3443..5e3b38e5 100644 --- a/repos/community/wawa/info +++ b/repos/community/wawa/info @@ -1,4 +1,4 @@ description: Simpler layer shell wallpaper setter homepage: https://codeberg.org/sewn/wawa license: MIT -maintainer: lostt +maintainer: Lostt -- cgit v1.2.3