pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

8cc: Rename to 8cc-git



Module Name:	pkgsrc-wip
Committed By:	Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By:	kamil
Date:		Mon Oct 3 01:18:03 2016 +0200
Changeset:	bd96a7d161e15e9816884ac2da772adad493e010

Added Files:
	8cc-git/DESCR
	8cc-git/Makefile
	8cc-git/PLIST
	8cc-git/TODO
	8cc-git/distinfo
Removed Files:
	8cc/DESCR
	8cc/Makefile
	8cc/PLIST
	8cc/TODO
	8cc/distinfo

Log Message:
8cc: Rename to 8cc-git

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=bd96a7d161e15e9816884ac2da772adad493e010

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 8cc-git/DESCR    | 12 ++++++++++++
 8cc-git/Makefile | 19 +++++++++++++++++++
 8cc-git/PLIST    |  1 +
 8cc-git/TODO     |  2 ++
 8cc-git/distinfo |  2 ++
 8cc/DESCR        | 12 ------------
 8cc/Makefile     | 19 -------------------
 8cc/PLIST        |  1 -
 8cc/TODO         |  2 --
 8cc/distinfo     |  2 --
 10 files changed, 36 insertions(+), 36 deletions(-)

diffs:
diff --git a/8cc-git/DESCR b/8cc-git/DESCR
new file mode 100644
index 0000000..1a6621d
--- /dev/null
+++ b/8cc-git/DESCR
@@ -0,0 +1,12 @@
+8cc is a compiler for the C programming language. It's intended to support all
+C11 language features while keeping the code as small and simple as possible.
+
+The compiler is able to compile itself. You can see its code both as an
+implementation of the C language and as an example of what this compiler is
+able to compile.
+
+8cc's source code is carefully written to be as concise and easy-to-read as
+possible, so that the source code becomes good study material to learn about
+various techniques used in compilers. You may find the lexer, the preprocessor
+and the parser are already useful to learn how C source code is processed at
+each stage.
diff --git a/8cc-git/Makefile b/8cc-git/Makefile
new file mode 100644
index 0000000..1e41a2a
--- /dev/null
+++ b/8cc-git/Makefile
@@ -0,0 +1,19 @@
+# $NetBSD$
+
+PKGNAME=	8cc-0
+CATEGORIES=	lang
+
+GIT_REPOSITORIES=	8cc
+GIT_REPO.8cc=		https://github.com/rui314/8cc.git
+
+MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=	https://github.com/rui314/8cc/
+COMMENT=	Small C Compiler
+LICENSE=	mit
+
+USE_TOOLS+=	gmake
+
+WRKSRC=		${WRKDIR}/8cc
+
+.include "../../wip/mk/git-package.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/8cc-git/PLIST b/8cc-git/PLIST
new file mode 100644
index 0000000..48d96a5
--- /dev/null
+++ b/8cc-git/PLIST
@@ -0,0 +1 @@
+@comment $NetBSD$
diff --git a/8cc-git/TODO b/8cc-git/TODO
new file mode 100644
index 0000000..5a0b514
--- /dev/null
+++ b/8cc-git/TODO
@@ -0,0 +1,2 @@
+- Add support for NetBSD headers (be able to declare __GNUC__ and support
+  extensions)
diff --git a/8cc-git/distinfo b/8cc-git/distinfo
new file mode 100644
index 0000000..afc7651
--- /dev/null
+++ b/8cc-git/distinfo
@@ -0,0 +1,2 @@
+$NetBSD$
+
diff --git a/8cc/DESCR b/8cc/DESCR
deleted file mode 100644
index 1a6621d..0000000
--- a/8cc/DESCR
+++ /dev/null
@@ -1,12 +0,0 @@
-8cc is a compiler for the C programming language. It's intended to support all
-C11 language features while keeping the code as small and simple as possible.
-
-The compiler is able to compile itself. You can see its code both as an
-implementation of the C language and as an example of what this compiler is
-able to compile.
-
-8cc's source code is carefully written to be as concise and easy-to-read as
-possible, so that the source code becomes good study material to learn about
-various techniques used in compilers. You may find the lexer, the preprocessor
-and the parser are already useful to learn how C source code is processed at
-each stage.
diff --git a/8cc/Makefile b/8cc/Makefile
deleted file mode 100644
index 1e41a2a..0000000
--- a/8cc/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-# $NetBSD$
-
-PKGNAME=	8cc-0
-CATEGORIES=	lang
-
-GIT_REPOSITORIES=	8cc
-GIT_REPO.8cc=		https://github.com/rui314/8cc.git
-
-MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=	https://github.com/rui314/8cc/
-COMMENT=	Small C Compiler
-LICENSE=	mit
-
-USE_TOOLS+=	gmake
-
-WRKSRC=		${WRKDIR}/8cc
-
-.include "../../wip/mk/git-package.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/8cc/PLIST b/8cc/PLIST
deleted file mode 100644
index 48d96a5..0000000
--- a/8cc/PLIST
+++ /dev/null
@@ -1 +0,0 @@
-@comment $NetBSD$
diff --git a/8cc/TODO b/8cc/TODO
deleted file mode 100644
index 5a0b514..0000000
--- a/8cc/TODO
+++ /dev/null
@@ -1,2 +0,0 @@
-- Add support for NetBSD headers (be able to declare __GNUC__ and support
-  extensions)
diff --git a/8cc/distinfo b/8cc/distinfo
deleted file mode 100644
index afc7651..0000000
--- a/8cc/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-$NetBSD$
-


Home | Main Index | Thread Index | Old Index