Repository: commons-complex Updated Branches: refs/heads/master b3576eeb6 -> 346a1791e
Removed spurious files. Project: http://git-wip-us.apache.org/repos/asf/commons-complex/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-complex/commit/346a1791 Tree: http://git-wip-us.apache.org/repos/asf/commons-complex/tree/346a1791 Diff: http://git-wip-us.apache.org/repos/asf/commons-complex/diff/346a1791 Branch: refs/heads/master Commit: 346a1791e1c36d50ce7b3ad454514dcf641f0816 Parents: b3576ee Author: Gilles Sadowski <[email protected]> Authored: Fri Jan 6 18:12:55 2017 +0100 Committer: Gilles Sadowski <[email protected]> Committed: Fri Jan 6 18:12:55 2017 +0100 ---------------------------------------------------------------------- math-RC.sh | 76 ----------------------------------------------------- math-pre-RC.sh | 30 --------------------- 2 files changed, 106 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-complex/blob/346a1791/math-RC.sh ---------------------------------------------------------------------- diff --git a/math-RC.sh b/math-RC.sh deleted file mode 100755 index 98c0f27..0000000 --- a/math-RC.sh +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/sh -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ----------------------------------------------------------------------------- -# -# Shell script to create commons math RCs. -# This script should be run from a fresh checkout of the RC tag. -# -# ----------------------------------------------------------------------------- -# Set script variables -version=2.1 -repo_path=~/.m2/repository/org/apache/commons/commons-math/${version} -site_mods_path=./siteMods -release_path=~/math-release -# -# Delete any locally installed artifacts from previous runs -rm -rf ${repo_path} -echo "Cleaned maven repo." -rm -rf ${release_path} -echo "Cleaned local release directory" -mvn clean -# -# Chicanery to get only the userguide in the site -cp ${site_mods_path}/pom.xml . -cp ${site_mods_path}/site.xml src/site/ -mvn site -cp ${site_mods_path}/site.css target/site/css -rm target/site/* -rm -rf target/site/style -cp -r target/apidocs target/site -svn revert src/site/site.xml -svn revert pom.xml -# -# Generate the release artifacts and install them locally -mvn assembly:assembly -mvn -Prc -DcreateChecksum=true install -# -# Copy the zips/tarballs and release notes to release directory -mkdir ${release_path} -cp ${repo_path}/*.zip ${release_path} -cp ${repo_path}/*.zip.* ${release_path} -cp ${repo_path}/*.gz ${release_path} -cp ${repo_path}/*.gz.* ${release_path} -cp RELEASE-NOTES.txt ${release_path} -# -# Copy site -cp -R target/site ${release_path} -# -# Copy maven artifacts -cp -R ${repo_path} ${release_path} -# -# Rename maven, site directories -mv ${release_path}/${version} ${release_path}/maven -mv ${release_path}/site ${release_path}/docs -echo "Artifacts copied." -# -# Delete tars/zips from maven subdirectory -rm ${release_path}/maven/*.zip -rm ${release_path}/maven/*.zip* -rm ${release_path}/maven/*.gz -rm ${release_path}/maven/*.gz* -echo "Release candidate complete" - http://git-wip-us.apache.org/repos/asf/commons-complex/blob/346a1791/math-pre-RC.sh ---------------------------------------------------------------------- diff --git a/math-pre-RC.sh b/math-pre-RC.sh deleted file mode 100755 index 467bd8e..0000000 --- a/math-pre-RC.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ----------------------------------------------------------------------------- -# -# Shell script to update download page and release notes prior -# to preparing a commons math release candidate. -# -# Note: RELEASE-NOTES.txt may need a little reformatting prior -# to checkin. Both RELEASE-NOTES.txt and the generated download -# page need to be checked in after review. -# -# ---------------------------------------------------------------------------- - -mvn changes:announcement-generate -Prelease-notes [-Dchanges.version=m.n] - -mvn commons:download-page
