diff options
author | Kefu Chai <kchai@redhat.com> | 2020-08-08 10:57:37 +0200 |
---|---|---|
committer | Kefu Chai <kchai@redhat.com> | 2020-08-18 08:23:50 +0200 |
commit | c0802c98c480dd95645e2acc9b47c177efe41d66 (patch) | |
tree | 38d5847b13e60610329b2d88ec25224fc8f0b899 /make-dist | |
parent | Merge pull request #36605 from rhcs-dashboard/fix-46920-master (diff) | |
download | ceph-c0802c98c480dd95645e2acc9b47c177efe41d66.tar.xz ceph-c0802c98c480dd95645e2acc9b47c177efe41d66.zip |
alpine: remove stale Alpine build recipe
alpine build recipe is stale and does not work with the latest Ceph,
also the APKBUILD for Ceph can be found at alphine's aports repo, see
https://gitlab.alpinelinux.org/alpine/aports/-/tree/master/community/ceph.
so instead keeping a stale version, let's drop it.
Signed-off-by: Kefu Chai <kchai@redhat.com>
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make-dist b/make-dist index 8575c89f23f..f73dcab20ed 100755 --- a/make-dist +++ b/make-dist @@ -110,14 +110,14 @@ echo "including src/.git_version, ceph.spec" (git rev-parse HEAD ; echo $version) 2> /dev/null > src/.git_version -for spec in ceph.spec.in alpine/APKBUILD.in; do +for spec in ceph.spec.in; do cat $spec | sed "s/@PROJECT_VERSION@/$rpm_version/g" | sed "s/@RPM_RELEASE@/$rpm_release/g" | sed "s/@TARBALL_BASENAME@/ceph-$version/g" > `echo $spec | sed 's/.in$//'` done ln -s . $outfile -tar cvf $outfile.version.tar $outfile/src/.git_version $outfile/ceph.spec $outfile/alpine/APKBUILD +tar cvf $outfile.version.tar $outfile/src/.git_version $outfile/ceph.spec # NOTE: If you change this version number make sure the package is available # at the three URLs referenced below (may involve uploading to download.ceph.com) boost_version=1.73.0 |