Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eosio153 #28

Closed
wants to merge 24 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
fdfa6f4
bump version to rc2
b1bart Nov 29, 2018
78291ad
update rpm names to match the real files
b1bart Nov 29, 2018
d1caabb
Merge pull request #6412 from EOSIO/feature/bump-version-to-1.5.0-rc2
b1bart Nov 30, 2018
c72e956
Fix deb package names in README
Nov 29, 2018
7b2b5f7
Fix package naming scheme for debs
Nov 29, 2018
549c96c
Merge pull request #6417 from EOSIO/fix-deb-package-names
b1bart Nov 30, 2018
d406d1a
promote rc2 to release
b1bart Dec 4, 2018
d3f3fe3
add missing release to deb packages
b1bart Dec 4, 2018
49bb38e
Merge pull request #6432 from EOSIO/feature/promote-1.5.0-rc2-to-1.5.0
b1bart Dec 4, 2018
85cf4d0
bump version to 1.5.1
b1bart Dec 13, 2018
5f2a0c5
Consolidated Security Fixes for 1.5.1
b1bart Dec 13, 2018
8f1de5c
Merge pull request #6479 from EOSIO/feature/1.5.1-security-omnibus
b1bart Dec 13, 2018
147cdb9
Merge pull request #6481 from EOSIO/feature/bump-version-to-1.5.1
b1bart Dec 13, 2018
04655aa
state history plugin: permission_object bug #6495
tbfleming Dec 17, 2018
0b70dd6
Merge pull request #6496 from EOSIO/state-history-auth-bug
tbfleming Dec 17, 2018
3831e54
bump version to 1.5.2
b1bart Dec 18, 2018
a51aeac
Merge pull request #6503 from EOSIO/feature/bump-version-to-1.5.2
b1bart Dec 18, 2018
13dce54
Consolidated Security Fixes for 1.5.3
b1bart Jan 2, 2019
edae18f
bump version to 1.5.3
b1bart Jan 2, 2019
5b58029
Merge pull request #6546 from EOSIO/feature/1.5.3-security-omnibus
b1bart Jan 2, 2019
c81ef13
Merge pull request #6545 from EOSIO/feature/bump-version-to-1.5.3
b1bart Jan 2, 2019
a4c6f74
Merge pull request #2 from EOSIO/release/1.5.x
vlbos Jan 8, 2019
8b65f01
eosio1.5.1
vvvictorlee Jan 8, 2019
76c5fa7
eosio1.5.3
vvvictorlee Jan 8, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix package naming scheme for debs
  • Loading branch information
Emory Barlow committed Nov 30, 2018
commit 7b2b5f7988d8d6f4d372e4cfdb9890da0309aa19
11 changes: 9 additions & 2 deletions scripts/generate_deb.sh
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
#! /bin/bash

NAME="${PROJECT}_${VERSION}-1_amd64"
PREFIX="usr"
SPREFIX=${PREFIX}
SUBPREFIX="opt/${PROJECT}/${VERSION}"
SSUBPREFIX="opt\/${PROJECT}\/${VERSION}"
RELEASE="${VERSION_SUFFIX}"

# default release to "1" if there is no suffix
if [[ -z $RELEASE ]]; then
RELEASE="1"
fi

NAME="${PROJECT}_${VERSION_NO_SUFFIX}-${RELEASE}_amd64"

DEPS_STR=""
for dep in "${DEPS[@]}"; do
DEPS_STR="${DEPS_STR} Depends: ${dep}"
done
mkdir -p ${PROJECT}/DEBIAN
echo "Package: ${PROJECT}
Version: ${VERSION}
Version: ${VERSION_NO_SUFFIX}-${RELEASE}
Section: devel
Priority: optional
Depends: libbz2-dev (>= 1.0), libssl-dev (>= 1.0), libgmp3-dev, build-essential, libicu-dev, zlib1g-dev
Expand Down