-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Peng Jian
committed
Sep 2, 2017
1 parent
91fd2d3
commit d394f27
Showing
102 changed files
with
9,323 additions
and
2,919 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,2 +1 @@ | ||
This project includes code developed by the Apache Software Foundation (http://www.apache.org/), | ||
especially Apache Cassandra. | ||
This project includes code developed by the ScyllaDB (http://www.scylladb.com/), especially Scylla. |
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,24 @@ | ||
#!/bin/sh | ||
|
||
VERSION=2.0.rc2 | ||
|
||
if test -f version | ||
then | ||
PEDIS_VERSION=$(cat version | awk -F'-' '{print $1}') | ||
PEDIS_RELEASE=$(cat version | awk -F'-' '{print $2}') | ||
else | ||
DATE=$(date +%Y%m%d) | ||
GIT_COMMIT=$(git log --pretty=format:'%h' -n 1) | ||
PEDIS_VERSION=$VERSION | ||
# For custom package builds, replace "0" with "counter.your_name", | ||
# where counter starts at 1 and increments for successive versions. | ||
# This ensures that the package manager will select your custom | ||
# package over the standard release. | ||
PEDIS_BUILD=0 | ||
PEDIS_RELEASE=$PEDIS_BUILD.$DATE.$GIT_COMMIT | ||
fi | ||
|
||
echo "$PEDIS_VERSION-$PEDIS_RELEASE" | ||
mkdir -p build | ||
echo "$PEDIS_VERSION" > build/PEDIS-VERSION-FILE | ||
echo "$PEDIS_RELEASE" > build/PEDIS-RELEASE-FILE |
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
Oops, something went wrong.