-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature(packaging): debian and rpm packaging
Signed-off-by: Dusan Malusev <[email protected]>
- Loading branch information
Dusan Malusev
committed
Dec 23, 2024
1 parent
01e0694
commit 9af5deb
Showing
31 changed files
with
176 additions
and
1,043 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
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 @@ | ||
11 |
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,13 @@ | ||
Source: cassandra-stress | ||
Section: misc | ||
Priority: extra | ||
Maintainer: Dusan Malusev <[email protected]> | ||
Homepage: http://www.scylladb.com | ||
Standards-Version: 3.9.5 | ||
Rules-Requires-Root: no | ||
|
||
Package: cassandra-stress | ||
Architecture: all | ||
Recommends: ntp | time-daemon | ||
Description: Cassandra Stress Tool | ||
Depends: openjdk-11-jre-headless | openjdk-11-jre | oracle-java11-set-default, procps, libsnappy-java, libsnappy-jni |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
opt/scylladb/share/cassandra/bin/cassandra-stress | ||
opt/scylladb/share/cassandra/bin/cassandra-stressd | ||
usr/bin/cassandra-stress | ||
usr/bin/cassandra-stressd |
File renamed without changes.
File renamed without changes.
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,54 @@ | ||
Name: cassandra-stress | ||
Version: %{version} | ||
Release: %{release}%{?dist} | ||
Summary: Scylla Cassandra Stress | ||
Group: Applications/Databases | ||
|
||
License: Apache | ||
URL: http://www.scylladb.com/ | ||
Source0: %{reloc_pkg} | ||
BuildArch: noarch | ||
Requires: | ||
AutoReqProv: no | ||
|
||
%description | ||
|
||
%package core | ||
License: Apache | ||
URL: http://www.scylladb.com/ | ||
BuildArch: noarch | ||
Summary: Core files for Scylla tools | ||
Version: %{version} | ||
Release: %{release}%{?dist} | ||
Requires: jre-11-headless | ||
|
||
%global __brp_python_bytecompile %{nil} | ||
%global __brp_mangle_shebangs %{nil} | ||
|
||
%prep | ||
%setup -q -n scylla-tools | ||
|
||
|
||
%build | ||
|
||
%install | ||
rm -rf $RPM_BUILD_ROOT | ||
./install.sh --root "$RPM_BUILD_ROOT" | ||
|
||
%files | ||
/opt/scylladb/share/cassandra-stress/bin/cassandra-stress | ||
/opt/scylladb/share/cassandra-stress/bin/cassandra-stressd | ||
%{_bindir}/cassandra-stress | ||
%{_bindir}/cassandra-stressd | ||
|
||
%files core | ||
%{_sysconfdir}/scylla/cassandra-stress/cassandra-env.sh | ||
%{_sysconfdir}/scylla/cassandra-stress/logback.xml | ||
%{_sysconfdir}/scylla/cassandra-stress/logback-tools.xml | ||
%{_sysconfdir}/scylla/cassandra-stress/jvm*.options | ||
/opt/scylladb/share/cassandra-stress/bin/cassandra.in.sh | ||
/opt/scylladb/share/cassandra-stress/lib/*.jar | ||
|
||
%changelog | ||
* Fri Aug 7 2015 Takuya ASADA Takuya ASADA <[email protected]> | ||
- inital version of scylla-tools.spec |
Oops, something went wrong.