vrtc / pjass (public) (License: BSD) (since 2023-08-03) (hash sha1)
pjass is a free Jass scripting language parser. This repository is a fork of lep/pjass. The goal is to add Debian packaging. As of the time of this writing, it works for current stable, that is Debian 12 (bookworm).
List of commits:
Subject Hash Author Date (UTC)
Add basic nix flake 5d652e3ae970d8553018a7bad110f7620ab6bfc4 lep 2022-10-15 11:10:09
Actualy use unary plus in test... ae3ab09ffe8c1630721bd26e655850db50194c20 lep 2022-08-21 08:51:28
Add tests for unary plus. f031582b832cc48d67971da1f8ba9b0be5b023e4 lep 2022-08-21 08:49:48
Allow unary + 5b6b615cea77034b738da3eac62ae7ba8052588d lep 2022-08-21 08:38:36
Let's stick to C89 for no particular reason. cd51461db64267f9a9cd9cdc25fec7d1fbb7f18a lep 2022-08-01 06:57:19
Improve help message 703f452844de116dbb153ff581bfe4120ea92fe7 lep 2022-07-31 14:16:56
Fix compilation error on GCC 10 27d720b5667133e082ed05a8b11bad1363d3f941 lep 2021-09-11 17:52:21
Removed mysterious "tabs" token from lexer 6f64950ace54e78e7de5ad81d7a86f7519584367 lep 2021-08-15 18:41:28
Better error message when using a function as var name a9da0a4fac7285895ddee113c3df2f1de64cca89 lep 2021-06-12 16:55:21
Add special case for missing `call` ffc71221bf4cf297759d36f57d45bb9f20434b4f lep 2021-04-09 21:42:24
Fixes for OpenBSD 4edafbf95d75a98fc4b1469f32bb4e52ed200314 lep 2021-03-27 09:37:24
Don't use strncat. 332fecc88884fe33da77036a41188b9cfc73e4f2 lep 2021-02-19 22:25:35
Allow assignment to local variable in constant function 0920290c0af1fe76066aa9520729b2afaa41fbd7 lep 2020-08-04 16:18:16
Add hexadecimal form with uppercase X 43d20a0f74e86cb2c89021b893b923d2efb4070a lep 2020-08-04 16:17:13
Use flag in test. df89d16a43ce0b5c2f7ca0a079818361dee02908 lep 2020-08-04 16:15:24
Small readme fixes eeddac84a092c2cb3105510626cb674729c4f09f lep 2020-08-03 09:49:49
Warn when using native as code 1b14ec57777560df0982a08f3a2bc8eb27a1df75 lep 2020-08-03 09:32:38
Use the strhash hashfunc for our hashtables. d6f0de51cb54921b529799b9939cfe2dcdf7b4d0 lep 2020-07-29 11:13:13
Document installation methods 814075ef77bc8981684971bfc2a5c626f2e34035 lep 2020-07-18 08:11:43
Improved Readme c8d57e3c1953d5e67ca12f75f5685f7786eacaf2 lep 2020-07-18 07:43:09
Commit 5d652e3ae970d8553018a7bad110f7620ab6bfc4 - Add basic nix flake
Author: lep
Author date (UTC): 2022-10-15 11:10
Committer name: lep
Committer date (UTC): 2022-10-15 11:10
Parent(s): ae3ab09ffe8c1630721bd26e655850db50194c20
Signer:
Signing key:
Signing status: N
Tree: e1b529e9281c478cc339ce264d6d355dcba662ad
File Lines added Lines deleted
GNUmakefile 5 3
flake.lock 42 0
flake.nix 57 0
File GNUmakefile changed (mode: 100644) (index 50a4236..4795450)
1 1 CFLAGS += -MMD -g -w CFLAGS += -MMD -g -w
2 VERSION := $(shell git rev-parse --short HEAD)
2 VERSION ?= $(shell git rev-parse --short HEAD || echo nix)
3 FLEX ?= flex
4 BISON ?= bison
3 5
4 6 # when testing and releasing, we can't run both in parallel # when testing and releasing, we can't run both in parallel
5 7 # but we also don't want to test when we're just making the zip # but we also don't want to test when we're just making the zip
 
... ... main.o: main.c | grammar.tab.h
61 63
62 64 # see token.l options block # see token.l options block
63 65 %.yy.c %.yy.h: %.l %.yy.c %.yy.h: %.l
64 flex $<
66 $(FLEX) $<
65 67
66 68 %.tab.c %.tab.h: %.y %.tab.c %.tab.h: %.y
67 bison -d $<
69 $(BISON) -d $<
68 70
69 71
70 72 clean-build-files: ## Cleans all build files clean-build-files: ## Cleans all build files
File flake.lock added (mode: 100644) (index 0000000..9e489fc)
1 {
2 "nodes": {
3 "flake-utils": {
4 "locked": {
5 "lastModified": 1659877975,
6 "narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=",
7 "owner": "numtide",
8 "repo": "flake-utils",
9 "rev": "c0e246b9b83f637f4681389ecabcb2681b4f3af0",
10 "type": "github"
11 },
12 "original": {
13 "owner": "numtide",
14 "repo": "flake-utils",
15 "type": "github"
16 }
17 },
18 "nixpkgs": {
19 "locked": {
20 "lastModified": 1665831709,
21 "narHash": "sha256-QPupUaC4G1VlpU5Dy014wfkjClTn+t8VQd45c2J8dBY=",
22 "owner": "NixOS",
23 "repo": "nixpkgs",
24 "rev": "bc1756169f8ee938159c5dfe4a1a31221a659afe",
25 "type": "github"
26 },
27 "original": {
28 "owner": "NixOS",
29 "repo": "nixpkgs",
30 "type": "github"
31 }
32 },
33 "root": {
34 "inputs": {
35 "flake-utils": "flake-utils",
36 "nixpkgs": "nixpkgs"
37 }
38 }
39 },
40 "root": "root",
41 "version": 7
42 }
File flake.nix added (mode: 100644) (index 0000000..92d7df0)
1 {
2 inputs = {
3 nixpkgs.url = "github:NixOS/nixpkgs";
4 flake-utils.url = "github:numtide/flake-utils";
5 };
6
7 outputs = { self, nixpkgs, flake-utils }:
8 flake-utils.lib.eachDefaultSystem (system:
9 let pkgs = import nixpkgs { inherit system; };
10 packageName = "pjass";
11 buildInputs = [
12 pkgs.gnumake
13 pkgs.flex
14 pkgs.bison
15 ];
16
17 drv-args = {
18 name = packageName;
19 src = self;
20 inherit buildInputs;
21
22 buildPhase = "make pjass";
23 installPhase = ''
24 mkdir -p $out/bin
25 install -t $out/bin pjass
26 '';
27
28 FLEX = "${pkgs.flex}/bin/flex";
29 BISON = "${pkgs.bison}/bin/bison";
30 };
31 drv = pkgs.stdenv.mkDerivation drv-args;
32
33
34 mingw = pkgs.pkgsCross.mingw32;
35 in rec {
36 apps.default = {
37 type = "app";
38 program = "${drv}/bin/pjass";
39 };
40 apps.pjass = apps.default;
41 packages = {
42 ${packageName} = drv;
43 "${packageName}-mingw32" = mingw.stdenv.mkDerivation (drv-args //
44 {
45 CFLAGS = "-O2";
46 installPhase = ''
47 mkdir -p $out/bin
48 install -t $out/bin pjass.exe
49 '';
50 });
51 };
52
53 defaultPackage = packages.${packageName};
54 }
55 );
56 }
57
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/vrtc/pjass

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/vrtc/pjass

Clone this repository using git:
git clone git://git.rocketgit.com/user/vrtc/pjass

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main