-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump OnDemand version to build for * New buildbox with 2.1 build repo Remove ondemand-python meta RPM, not needed Bump nodejs to 14 * Update Passenger to 6.0.11 and NGINX to 1.20.1 * Add ondemand-release 2.1 packages for Ubuntu Focal * Ensure old ondemand-python is automatically removed
- Loading branch information
Showing
20 changed files
with
99 additions
and
43 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
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,3 +1,3 @@ | ||
BUILDBOX_IMAGE='ohiosupercomputer/ondemand_buildbox:3.2.1' | ||
BUILDBOX_IMAGE='ohiosupercomputer/ondemand_buildbox:4.0.0' | ||
DEB_BUILDBOX_IMAGE=ohiosupercomputer/ondemand_buildbox-$DIST-$DISTVERSION:0.2.0 | ||
MOCK_CACHE=$(echo "mock-cache-${BUILDBOX_IMAGE}.tar.gz" | sed 's#/#_#g' | sed 's#:#_#g') |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
DIR := $(dir $(abspath $(firstword $(MAKEFILE_LIST)))) | ||
|
||
.PHONY: tar | ||
TAR := tar | ||
VERSION := 2.1.0 | ||
|
||
tar: | ||
cd $(DIR) ; git ls-files . | $(TAR) -c \ | ||
--transform 's,^,ondemand-release-$(VERSION)/,' -T - | gzip > $(DIR)/build/ondemand-release-$(VERSION).tar.gz |
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,6 @@ | ||
ondemand-release (2.1-1) UNRELEASED; urgency=low | ||
|
||
* Initial release. Closes: #nnnn | ||
<nnnn is the bug number of your ITP> | ||
|
||
-- root <> Tue, 26 Oct 2021 15:02:14 -0400 |
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,14 @@ | ||
Source: ondemand-release | ||
Section: unknown | ||
Priority: optional | ||
Maintainer: Trey Dockendorf <[email protected]> | ||
Build-Depends: debhelper (>=11~) | ||
Standards-Version: 4.1.4 | ||
Homepage: https://github.com/OSC/ondemand-packaging | ||
|
||
Package: ondemand-release-web-focal | ||
Architecture: all | ||
Multi-Arch: foreign | ||
Depends: ${shlibs:Depends}, | ||
${misc:Depends} | ||
Description: OnDemand repo release files for 2.1 web repo for Focal OS |
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,15 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: ondemand-release | ||
Source: <url://example.com> | ||
# | ||
# Please double check copyright with the licensecheck(1) command. | ||
|
||
Files: debian/Makefile | ||
debian/build/.keep | ||
debian/ondemand.gpg | ||
Copyright: __NO_COPYRIGHT_NOR_LICENSE__ | ||
License: __NO_COPYRIGHT_NOR_LICENSE__ | ||
|
||
#---------------------------------------------------------------------------- | ||
# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following | ||
# license/copyright files. |
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,21 @@ | ||
#!/usr/bin/make -f | ||
# You must remove unused comment lines for the released package. | ||
export DH_VERBOSE = 1 | ||
export CODENAME = $(shell lsb_release -sc) | ||
export WEB_DESTDIR = $(CURDIR)/debian/ondemand-release-web | ||
export DEB_BUILD_OPTIONS=nocheck | ||
|
||
%: | ||
dh $@ | ||
|
||
override_dh_auto_configure: | ||
# Do nothing | ||
|
||
override_dh_auto_build: | ||
# Do nothing | ||
|
||
override_dh_auto_install: | ||
mkdir -p $(WEB_DESTDIR)-focal/etc/apt/sources.list.d | ||
echo "deb [arch=amd64] https://apt.osc.edu/ondemand/$(VERSION)/web/apt $(CODENAME) main" > $(WEB_DESTDIR)-focal/etc/apt/sources.list.d/ondemand-web.list | ||
mkdir -p $(WEB_DESTDIR)-focal/etc/apt/trusted.gpg.d | ||
install -m 644 -D $(CURDIR)/ondemand.gpg $(WEB_DESTDIR)-focal/etc/apt/trusted.gpg.d/ondemand-web.gpg |
Binary file not shown.
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,5 @@ | ||
Name: ondemand-compute | ||
Version: 2.0 | ||
Version: 2.1 | ||
Release: 1%{?dist} | ||
Summary: Open OnDemand Compute meta package | ||
|
||
|
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,5 @@ | ||
Name: ondemand-release-web | ||
Version: 2.0 | ||
Version: 2.1 | ||
Release: 1 | ||
Summary: Open OnDemand web repository files | ||
|
||
|
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