Skip to content

Commit 0a98aa1

Browse files
committed
Removed autotools and it's traces
1 parent 9dc1034 commit 0a98aa1

File tree

9 files changed

+40
-124
lines changed

9 files changed

+40
-124
lines changed

.clang-format

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
BasedOnStyle: None
2+
AlignTrailingComments: true
3+
BreakBeforeBraces: Allman
4+
ColumnLimit: 0
5+
IndentWidth: 2
6+
KeepEmptyLinesAtTheStartOfBlocks: false
7+
ObjCSpaceAfterProperty: true
8+
ObjCSpaceBeforeProtocolList: true
9+
PointerBindsToType: false
10+
SpacesBeforeTrailingComments: 1
11+
TabWidth: 2
12+
UseTab: Never
13+
14+
ConstructorInitializerIndentWidth: 2
15+
ContinuationIndentWidth: 2
16+
ColumnLimit: 96
17+
SortIncludes: true
18+
AlignEscapedNewlines: false
19+
AlignConsecutiveAssignments: false
20+
AlignConsecutiveDeclarations: false
21+
AllowShortBlocksOnASingleLine: true
22+
AllowShortCaseLabelsOnASingleLine: true
23+
AllowShortFunctionsOnASingleLine: All
24+
AllowShortLoopsOnASingleLine: true
25+
NamespaceIndentation: All

.gitignore

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,4 @@
1-
o/*
21
*.sublime*
3-
u
42
*~
5-
config.h.in
6-
depcomp
7-
configure
8-
missing
9-
compile
10-
aclocal.m4
11-
Makefile.in
12-
install-sh
13-
autom4te.cache
14-
Makefile
15-
build/*
16-
config.log
17-
src/.deps
18-
src/.dirstamp
19-
config.status
20-
config.h
21-
stamp-h1
22-
config.guess
23-
config.sub
24-
ltmain.sh
25-
m4/
3+
*u
264
*.meson

Makefile

Whitespace-only changes.

Makefile.am

Lines changed: 0 additions & 49 deletions
This file was deleted.

NEWS

Lines changed: 0 additions & 1 deletion
This file was deleted.

build.sh

Lines changed: 0 additions & 5 deletions
This file was deleted.

clang-tidy.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
set -euo pipefail
4+
5+
clang-format -i src/*.c h/*.h
6+
7+
for i in src/*.c h/*.h; do
8+
if grep -q ' $' $i ; then
9+
echo $i had trailing whitespace
10+
sed 's/ *$//' -i $i
11+
fi
12+
done

configure.ac

Lines changed: 0 additions & 45 deletions
This file was deleted.

packaging/linux/distro/arch/meson.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ project(
33
'uCurses',
44
'c',
55
version : '0.0.2',
6-
default_options : ['warning_level=3']
6+
default_options : ['warning_level=3'],
7+
license: 'MIT',
78
)
89
project_description = 'TUI app builder for consoles and terminals.'
910

0 commit comments

Comments
 (0)