Skip to content

Commit

Permalink
Merge branch 'main' of github.com:caltechlibrary/irdmtools into gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
R. S. Doiel committed Jul 10, 2024
2 parents 40c09f4 + 9dba678 commit 4b2dc0d
Show file tree
Hide file tree
Showing 27 changed files with 44 additions and 28 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ authors:


repository-code: "https://github.com/caltechlibrary/irdmtools"
version: 0.0.83
version: 0.0.84
license-url: "https://caltechlibrary.github.io/irdmtools/LICENSE"
keywords: [ "institutional repository", "data
management", "Invenio", "Invenio-RDM" ]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ installer.sh: .FORCE
<<<<<<< HEAD
=======
installer.ps1: .FORCE
@echo '' | pandoc --metadata title="Installer" --metadata git_org_or_person="$(GIT_GROUP)" --metadata-file codemeta.json --template codemeta-ps1-installer.tmpl >installer.ps1
@echo '' | pandoc --metadata title="Powershell Installer" --metadata git_org_or_person="$(GIT_GROUP)" --metadata-file codemeta.json --template codemeta-ps1-installer.tmpl >installer.ps1
@chmod 775 installer.ps1
@git add -f installer.ps1

Expand Down
2 changes: 1 addition & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<section>
<h1 id="about-this-software">About this software</h1>
<h2 id="irdmtools-0.0.83">irdmtools 0.0.83</h2>
<h2 id="irdmtools-0.0.84">irdmtools 0.0.84</h2>
<h3 id="authors">Authors</h3>
<ul>
<li>R. S. Doiel</li>
Expand Down
4 changes: 2 additions & 2 deletions about.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ authors:
orcid: "https://orcid.org/0000-0001-9266-5146"

repository-code: "https://github.com/caltechlibrary/irdmtools"
version: 0.0.83
version: 0.0.84
license-url: "https://caltechlibrary.github.io/irdmtools/LICENSE"
keywords: [ "institutional repository", "data
management", "Invenio", "Invenio-RDM" ]
Expand All @@ -24,7 +24,7 @@ management", "Invenio", "Invenio-RDM" ]
About this software
===================

## irdmtools 0.0.83
## irdmtools 0.0.84

### Authors

Expand Down
10 changes: 7 additions & 3 deletions codemeta-bash-installer.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,16 @@ case "$$OS_NAME" in
;;
esac

if [ "$$1" != "" ]; then
VERSION="$$1"
fi

ZIPFILE="$$PACKAGE-v$$VERSION-$$OS_NAME-$$MACHINE.zip"

#
# Check to see if this zip file has been downloaded.
#
DOWNLOAD_URL="https://github.com/$$GIT_GROUP/$$PACKAGE/releases/download/v$$VERSION/$$ZIPFILE"
if [ ! -d "$$HOME/Downloads" ]; then
mkdir -p "$$HOME/Downloads"
fi
if ! curl -L -o "$$HOME/Downloads/$$ZIPFILE" "$$DOWNLOAD_URL"; then
echo "Curl failed to get $$DOWNLOAD_URL"
fi
Expand All @@ -46,6 +47,9 @@ cat<<EOT
EOT

if [ ! -d "$$HOME/Downloads" ]; then
mkdir -p "$$HOME/Downloads"
fi
if [ ! -f "$$HOME/Downloads/$$ZIPFILE" ]; then
cat<<EOT
Expand Down
6 changes: 5 additions & 1 deletion codemeta-ps1-installer.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@
#
# Set the package name and version to install
#
param(
[Parameter()]
[String]$$VERSION = "$version$"
)
$$PACKAGE = "$name$"
$$VERSION = "$version$"
$$GIT_GROUP = "$git_org_or_person$"
$$RELEASE = "https://github.com/$${GIT_GROUP}/$${PACKAGE}/releases/tag/v$${VERSION}"
$$SYSTEM_TYPE = Get-ComputerInfo -Property CsSystemType
Expand All @@ -15,6 +18,7 @@ if ($$SYSTEM_TYPE.CsSystemType.Contains("ARM64")) {
$$MACHINE = "x86_64"
}


# FIGURE OUT Install directory
$$BIN_DIR = "$${Home}\bin"
Write-Output "$${PACKAGE} will be installed in $${BIN_DIR}"
Expand Down
4 changes: 2 additions & 2 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"codeRepository": "https://github.com/caltechlibrary/irdmtools",
"dateCreated": "2022-10-27",
"dateRelease": "2024-01-24",
"dateModified": "2024-06-10",
"dateModified": "2024-07-10",
"issueTracker": "https://github.com/caltechlibrary/irdmtools/issues",
"name": "irdmtools",
"version": "0.0.83",
"version": "0.0.84",
"description": "Tools for working with institutional repositories and data management systems. Current implementation targets Invenio-RDM.",
"applicationCategory": "library science",
"releaseNotes": "Proof of concept and refinements, piloting in production, bug fixes, performance improvements",
Expand Down
2 changes: 1 addition & 1 deletion doi2rdm.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%doi2rdm(1) irdmtools user manual | version 0.0.83 40efc058
%doi2rdm(1) irdmtools user manual | version 0.0.84 bf112b8a
% R. S. Doiel and Tom Morrell
% 2024-07-10

Expand Down
2 changes: 1 addition & 1 deletion ep3ds2citations.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%ep3ds2citations(1) irdmtools user manual | version 0.0.83 40efc058
%ep3ds2citations(1) irdmtools user manual | version 0.0.84 bf112b8a
% R. S. Doiel and Tom Morrell
% 2024-07-10

Expand Down
2 changes: 1 addition & 1 deletion ep3util.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%ep3util(1) irdmtools user manual | version 0.0.83 40efc058
%ep3util(1) irdmtools user manual | version 0.0.84 bf112b8a
% R. S. Doiel and Tom Morrell
% 2024-07-10

Expand Down
2 changes: 1 addition & 1 deletion eprint2rdm.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%eprint2rdm(1) irdmtools user manual | version 0.0.83 40efc058
%eprint2rdm(1) irdmtools user manual | version 0.0.84 bf112b8a
% R. S. Doiel and Tom Morrell
% 2024-07-10

Expand Down
2 changes: 1 addition & 1 deletion eprintrest.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%eprintrest(1) irdmtools user manual | version 0.0.83 40efc058
%eprintrest(1) irdmtools user manual | version 0.0.84 bf112b8a
% R. S. Doiel and Tom Morrell
% 2024-07-10

Expand Down
6 changes: 5 additions & 1 deletion installer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@
#
# Set the package name and version to install
#
param(
[Parameter()]
[String]$VERSION = "0.0.84"
)
$PACKAGE = "irdmtools"
$VERSION = "0.0.83"
$GIT_GROUP = "caltechlibrary"
$RELEASE = "https://github.com/${GIT_GROUP}/${PACKAGE}/releases/tag/v${VERSION}"
$SYSTEM_TYPE = Get-ComputerInfo -Property CsSystemType
Expand All @@ -15,6 +18,7 @@ if ($SYSTEM_TYPE.CsSystemType.Contains("ARM64")) {
$MACHINE = "x86_64"
}


# FIGURE OUT Install directory
$BIN_DIR = "${Home}\bin"
Write-Output "${PACKAGE} will be installed in ${BIN_DIR}"
Expand Down
12 changes: 8 additions & 4 deletions installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Set the package name and version to install
#
PACKAGE="irdmtools"
VERSION="0.0.83"
VERSION="0.0.84"
GIT_GROUP="caltechlibrary"
RELEASE="https://github.com/$GIT_GROUP/$PACKAGE/releases/tag/v$VERSION"

Expand All @@ -27,15 +27,16 @@ case "$OS_NAME" in
;;
esac

if [ "$1" != "" ]; then
VERSION="$1"
fi

ZIPFILE="$PACKAGE-v$VERSION-$OS_NAME-$MACHINE.zip"

#
# Check to see if this zip file has been downloaded.
#
DOWNLOAD_URL="https://github.com/$GIT_GROUP/$PACKAGE/releases/download/v$VERSION/$ZIPFILE"
if [ ! -d "$HOME/Downloads" ]; then
mkdir -p "$HOME/Downloads"
fi
if ! curl -L -o "$HOME/Downloads/$ZIPFILE" "$DOWNLOAD_URL"; then
echo "Curl failed to get $DOWNLOAD_URL"
fi
Expand All @@ -46,6 +47,9 @@ cat<<EOT
EOT

if [ ! -d "$HOME/Downloads" ]; then
mkdir -p "$HOME/Downloads"
fi
if [ ! -f "$HOME/Downloads/$ZIPFILE" ]; then
cat<<EOT
Expand Down
Binary file added pagefind/fragment/unknown_10b7cab.pf_fragment
Binary file not shown.
Binary file added pagefind/fragment/unknown_c4c12ca.pf_fragment
Binary file not shown.
Binary file added pagefind/fragment/unknown_d7a39ec.pf_fragment
Binary file not shown.
Binary file added pagefind/index/unknown_9cb781b.pf_index
Binary file not shown.
Binary file added pagefind/index/unknown_d745624.pf_index
Binary file not shown.
2 changes: 1 addition & 1 deletion pagefind/pagefind-entry.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"1.1.0","languages":{"unknown":{"hash":"unknown_5fd3512958e04f4","wasm":null,"page_count":23}}}
{"version":"1.1.0","languages":{"unknown":{"hash":"unknown_2b124eacd218176","wasm":null,"page_count":23}}}
Binary file added pagefind/pagefind.unknown_2b124eacd218176.pf_meta
Binary file not shown.
Binary file added pagefind/pagefind.unknown_af1e97678b478f7.pf_meta
Binary file not shown.
2 changes: 1 addition & 1 deletion people2vocabulary.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%people2vocabulary(1) irdmtools user manual | version 0.0.83 40efc058
%people2vocabulary(1) irdmtools user manual | version 0.0.84 bf112b8a
% R. S. Doiel
% 2024-07-10

Expand Down
2 changes: 1 addition & 1 deletion rdm2eprint.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%rdm2eprint(1) irdmtools user manual | version 0.0.83 40efc058
%rdm2eprint(1) irdmtools user manual | version 0.0.84 bf112b8a
% R. S. Doiel and Tom Morrell
% 2024-07-10

Expand Down
2 changes: 1 addition & 1 deletion rdmds2citations.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%rdmds2citations(1) irdmtools user manual | version 0.0.83 40efc058
%rdmds2citations(1) irdmtools user manual | version 0.0.84 bf112b8a
% R. S. Doiel and Tom Morrell
% 2024-07-10

Expand Down
2 changes: 1 addition & 1 deletion rdmutil.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%rdmutil(1) irdmtools user manual | version 0.0.83 40efc058
%rdmutil(1) irdmtools user manual | version 0.0.84 bf112b8a
% R. S. Doiel and Tom Morrell
% 2024-07-10

Expand Down
4 changes: 2 additions & 2 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ import (

const (
// Version number of release
Version = "0.0.83"
Version = "0.0.84"

// ReleaseDate, the date version.go was generated
ReleaseDate = "2024-07-10"

// ReleaseHash, the Git hash when version.go was generated
ReleaseHash = "40efc058"
ReleaseHash = "bf112b8a"

LicenseText = `
Redistribution and use in source and binary forms, with or without
Expand Down

0 comments on commit 4b2dc0d

Please sign in to comment.