Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
pmineiro committed Jun 10, 2009
1 parent 55b19c4 commit 0a301a5
Show file tree
Hide file tree
Showing 21 changed files with 494 additions and 0 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Paul Mineiro <[email protected]>
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Version 0.0.0
* Initial version.
1 change: 1 addition & 0 deletions Makefile.am.local
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# put whatever (auto)make commands here, they will be included from Makefile.am
Empty file added NEWS
Empty file.
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Erlang parse transform to provide let like functionality.
17 changes: 17 additions & 0 deletions bootstrap
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#! /bin/sh

if test -d fw/bin
then
PATH="`pwd`/fw/bin:$PATH"
export PATH
fi

fwb=`which fw-bootstrap`

if test -z "$fwb"
then
echo "bootstrap: fatal: fw-bootstrap not installed or not in PATH" 1>&2
exit 1
fi

"$fwb" --fw_version "0.1.34" --name lyt --template erlang --revision cvs "$@"
2 changes: 2 additions & 0 deletions configure.ac.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dnl -- include additional autoconf commands here
dnl -- do not include AC_OUTPUT, this is called for you
1 change: 1 addition & 0 deletions doc/Makefile.am.local
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# put whatever (auto)make commands here, they will be included from Makefile.am
4 changes: 4 additions & 0 deletions doc/overview.edoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@author Paul Mineiro (based upon work by Ulf Wiger)
@copyright 2009 Paul Mineiro released under EPL
@title Lyet
@doc Erlang parse transform to provide let like functionality.
1 change: 1 addition & 0 deletions fw-pkgin/Makefile.am.local
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# put whatever (auto)make commands here, they will be included from Makefile.am
61 changes: 61 additions & 0 deletions fw-pkgin/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# The FW_PACKAGE_MAINTAINER field is populated with the
# environment variable FW_PACKAGE_DEFAULT_MAINTAINER if non-empty

FW_PACKAGE_NAME="lyet"
FW_PACKAGE_VERSION="0.0.0"
FW_PACKAGE_MAINTAINER="Paul Mineiro <[email protected]>"
FW_PACKAGE_SHORT_DESCRIPTION="Erlang parse transform to provide let like functionality."
FW_PACKAGE_DESCRIPTION=`cat README`
FW_PACKAGE_ARCHITECTURE_DEPENDENT="0"

# Dependency information. The native syntax corresponds to Debian,
# http://www.debian.org/doc/debian-policy/ch-relationships.html
# Section 7.1 "Syntax of Relationship Fields"
#
# For other packaging systems, the syntax is translated for you.

FW_PACKAGE_DEPENDS=""
FW_PACKAGE_CONFLICTS=""
FW_PACKAGE_PROVIDES=""
FW_PACKAGE_REPLACES=""
FW_PACKAGE_SUGGESTS=""

FW_PACKAGE_BUILD_DEPENDS=""
FW_PACKAGE_BUILD_CONFLICTS=""

FW_DUPLOAD_ARGS=${FW_DUPLOAD_ARGS-"-t dukeshardy"}

# uncomment and set manually if autodetection of modules is incorrect.
# should be an erlang expression which evaluates to a list.
# FW_ERL_APP_MODULES="[]"

# uncomment and set manually if autodetection of registered processes is incorrect
# should be an erlang expression which evaluates to a list.
# FW_ERL_APP_REGISTERED="[]"

# uncomment and set manually if autodetection of start module is incorrect
# should be an erlang expression which evaluates to an atom.
# FW_ERL_APP_START_MODULE=""

# uncomment to define start args to the start module. should be an erlang
# expression which evaluates to a list. this only has an effect if
# FW_ERL_APP_START_MODULE is set manually.
# FW_ERL_APP_START_ARGS="[]"

# uncomment if the module line being generated is incorrect and you want
# to override it.
# FW_ERL_APP_MOD_LINE="{ mod, { $FW_ERL_APP_START_MODULE, $FW_ERL_APP_START_ARGS } }"

# uncomment to define the application environment variables. should be an
# erlang expression which evaluates to a list.
# FW_ERL_APP_ENVIRONMENT="[]"

# uncomment to indicate additional OTP applications (besides kernel and stdlib)
# that this application depends upon. should be an erlang expression which
# evaluates to a list.
# FW_ERL_PREREQ_APPLICATIONS_EXTRA="[]"

# uncomment to add arbitrary extra content to the app file, e.g., an
# included application directive. should be an erlang expression which
# evaluates to a proplist (list of key-value tuple pairs).
# FW_ERL_APP_EXTRA="[]"
9 changes: 9 additions & 0 deletions fw-pkgin/post-install
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#! /bin/sh

#---------------------------------------------------------------------
# post-install
#
# Executed after the package is installed.
#---------------------------------------------------------------------

exit 0
9 changes: 9 additions & 0 deletions fw-pkgin/post-remove
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#! /bin/sh

#---------------------------------------------------------------------
# post-remove
#
# Executed after the package is removed.
#---------------------------------------------------------------------

exit 0
9 changes: 9 additions & 0 deletions fw-pkgin/pre-install
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#! /bin/sh

#---------------------------------------------------------------------
# pre-install
#
# Executed before the package is installed.
#---------------------------------------------------------------------

exit 0
9 changes: 9 additions & 0 deletions fw-pkgin/pre-remove
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#! /bin/sh

#---------------------------------------------------------------------
# pre-remove
#
# Executed before the package is removed.
#---------------------------------------------------------------------

exit 0
10 changes: 10 additions & 0 deletions fw-pkgin/start
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#! /bin/sh

#---------------------------------------------------------------------
# start
#
# Executed when the package (service) is started up.
# Not supported by all package formats.
#---------------------------------------------------------------------

exit 0
10 changes: 10 additions & 0 deletions fw-pkgin/stop
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#! /bin/sh

#---------------------------------------------------------------------
# start
#
# Executed when the package (service) is shut down.
# Not supported by all package formats.
#---------------------------------------------------------------------

exit 0
15 changes: 15 additions & 0 deletions src/Makefile.am.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# put whatever (auto)make commands here, they will be included from Makefile.am

dist_erlappsrc_DATA = \
$(wildcard *.erl)

dist_erlappinclude_DATA = \
$(wildcard *.hrl)

erlappebin_SCRIPTS = \
@[email protected] \
$(patsubst %.erl, %.beam, $(dist_erlappsrc_DATA))

check_DATA = \
.dialyzer_ok \
.@[email protected]_ok
Loading

0 comments on commit 0a301a5

Please sign in to comment.