Changed package name

This commit is contained in:
Georges Dupéron 2017-09-07 12:50:06 +02:00
parent 66e728b015
commit 6ad729b1ef
5 changed files with 14 additions and 14 deletions

View File

@ -1,4 +1,4 @@
$$$PKG_NAME$$$
phc-ts
Copyright (c) 2016-2017 Georges Dupéron

View File

@ -1,4 +1,4 @@
$$$PKG_NAME$$$
phc-ts
Copyright (c) 2016-2017 Georges Dupéron

View File

@ -1,11 +1,11 @@
[![Build Status,](https://img.shields.io/travis/jsmaniac/$$$PKG_NAME$$$/master.svg)](https://travis-ci.org/jsmaniac/$$$PKG_NAME$$$)
[![Coverage Status,](https://img.shields.io/codecov/c/github/jsmaniac/$$$PKG_NAME$$$/master.svg)](https://codecov.io/gh/jsmaniac/$$$PKG_NAME$$$)
[![Build Stats,](https://img.shields.io/badge/build-stats-blue.svg)](http://jsmaniac.github.io/travis-stats/#jsmaniac/$$$PKG_NAME$$$)
[![Online Documentation,](https://img.shields.io/badge/docs-online-blue.svg)](http://docs.racket-lang.org/$$$PKG_NAME$$$/)
[![Maintained as of 2017,](https://img.shields.io/maintenance/yes/2017.svg)](https://github.com/jsmaniac/$$$PKG_NAME$$$/issues)
[![Build Status,](https://img.shields.io/travis/jsmaniac/phc-ts/master.svg)](https://travis-ci.org/jsmaniac/phc-ts)
[![Coverage Status,](https://img.shields.io/codecov/c/github/jsmaniac/phc-ts/master.svg)](https://codecov.io/gh/jsmaniac/phc-ts)
[![Build Stats,](https://img.shields.io/badge/build-stats-blue.svg)](http://jsmaniac.github.io/travis-stats/#jsmaniac/phc-ts)
[![Online Documentation,](https://img.shields.io/badge/docs-online-blue.svg)](http://docs.racket-lang.org/phc-ts/)
[![Maintained as of 2017,](https://img.shields.io/maintenance/yes/2017.svg)](https://github.com/jsmaniac/phc-ts/issues)
[![License: CC0 v1.0.](https://img.shields.io/badge/license-CC0-blue.svg)](https://creativecommons.org/publicdomain/zero/1.0/)
$$$PKG_NAME$$$
phc-ts
==============
A Racket package.

View File

@ -1,10 +1,10 @@
#lang info
(define collection "$$$PKG_NAME$$$")
(define collection "phc-ts")
(define deps '("base" ;; ("base" "6.4")
"rackunit-lib"))
(define build-deps '("scribble-lib"
"racket-doc"))
(define scribblings '(("scribblings/$$$PKG_NAME$$$.scrbl" ())))
(define scribblings '(("scribblings/phc-ts.scrbl" ())))
(define pkg-desc "")
(define version "0.0")
(define pkg-authors '("Georges Dupéron"))

View File

@ -1,11 +1,11 @@
#lang scribble/manual
@require[@for-label[$$$PKG_NAME$$$
@require[@for-label[phc-ts
racket/base]]
@title{$$$PKG_NAME$$$}
@title{phc-ts}
@author[@author+email["Georges Dupéron" "georges.duperon@gmail.com"]]
@defmodule[$$$PKG_NAME$$$]
@defmodule[phc-ts]
There is no documentation for this package yet.
@ -13,7 +13,7 @@ There is no documentation for this package yet.
(syntax-case stx ()
[(_ b)
(boolean? (syntax-e #'b))
(let-values ([(vars stx-vars) (module->exports $$$PKG_NAME$$$)])
(let-values ([(vars stx-vars) (module->exports phc-ts)])
#`(itemlist
#,(for*/list ([phase+ids (in-list (if (syntax-e #'b) vars stx-vars))]
[phase (in-value (car phase+ids))]