forked from tcsh-org/tcsh
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge upstream, add version to github release title.
- Loading branch information
Showing
30 changed files
with
3,932 additions
and
2,087 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,5 @@ tcsh-*.tar.gz | |
tests/package.m4 | ||
tests/testsuite | ||
*.suo | ||
*~ | ||
.vs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,34 @@ | ||
branches: | ||
only: | ||
- master | ||
- coverity_scan | ||
language: c | ||
compiler: | ||
- gcc | ||
- clang | ||
addons: | ||
apt: | ||
packages: | ||
- automake | ||
- libtinfo-dev | ||
- libncurses-dev | ||
- make | ||
script: | ||
- ./configure | ||
- make -j4 | ||
- make check | ||
coverity_scan: | ||
project: | ||
name: tcsh-org/tcsh | ||
version: 6.22 | ||
description: C shell with file name completion and command line editing | ||
notification_email: [email protected] | ||
build_command_prepend: ./configure | ||
build_command: make | ||
# https://scan.coverity.com/faq#frequency | ||
branch_pattern: coverity_scan | ||
jobs: | ||
exclude: | ||
- os: osx | ||
compiler: gcc | ||
os: | ||
- linux | ||
- osx | ||
script: >- | ||
if [ "${COVERITY_SCAN_BRANCH}" != 1 ] ; | ||
then ./configure && make && make test ; | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
HOW TO RELEASE TCSH | ||
|
||
See TOOLS.md for pre-requisites. | ||
|
||
1) Update version number and date | ||
- patchlevel.h | ||
- Fixes (make a new entry at the top) | ||
|
@@ -35,12 +37,4 @@ HOW TO RELEASE TCSH | |
click on "Add and Edit Version" | ||
- Set the "Date Order" to 2030-01-01 (i.e. far in the future) | ||
- Click on "Update Version" | ||
8) Update the version on http://www.tcsh.org/MostRecentRelease | ||
9) Update the online manual page http://www.tcsh.org/tcsh.man/top.html | ||
- Login to the webhost (huru) | ||
- cd ~/src/tcsh && git pull | ||
- cd ~/.www/sites/tcsh.org/man \ | ||
&& cp -p ~/src/tcsh/tcsh.man \ | ||
&& make clean \ | ||
&& make | ||
10) Mail an announcement to [email protected] | ||
9) Mail an announcement to [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Developer Tools | ||
|
||
You need the following tools to fully work on tcsh development. | ||
|
||
- `autoconf` | ||
- `gettext` (for `AM_ICONV` in `share/aclocal/intl.m4`) | ||
|
||
## Debian | ||
|
||
The `autoconf` scripts on Debian add a `--runstatedir` option | ||
to `configured` that we don't have in the `tcsh` repository, | ||
due to running `autoreconf` on NetBSD. | ||
|
||
Install `gettext` to get `AM_ICONV`. The `gettext-base` package | ||
does not include the needed files in `/usr/share/aclocal`. | ||
|
||
## NetBSD | ||
|
||
Install `pkgsrc/devel/gettext-m4` to get `AM_ICONV`. |
Oops, something went wrong.