This is an automated email from the ASF dual-hosted git repository.
rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-ide-tooling.git
The following commit(s) were added to refs/heads/master by this push:
new 2c491369 chore(eclipse): remove sign.sh
2c491369 is described below
commit 2c4913696235a7938d5826c719e6a7dd5413e288
Author: Robert Munteanu <[email protected]>
AuthorDate: Mon Sep 22 13:29:20 2025 +0200
chore(eclipse): remove sign.sh
The GPG signing is part of the release process and and checksums are
generated in the Makefile.
---
eclipse/sign.sh | 46 ----------------------------------------------
1 file changed, 46 deletions(-)
diff --git a/eclipse/sign.sh b/eclipse/sign.sh
deleted file mode 100755
index e3483b7b..00000000
--- a/eclipse/sign.sh
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/bash
-#
-# 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.
-
-DIR=$1
-
-if [ $# -ne 1 ]; then
- echo "Usage: $0 directory";
- exit 1;
-fi
-
-if [ ! -d $DIR ] ; then
- echo "$DIR is not a directory";
- exit 2;
-fi
-
-pushd $DIR
-
-for jarfile in `find . -name \*.jar -o -name \*.zip` ; do
- if [ ! -f $jarfile.md5 ] ; then
- md5sum $jarfile | awk '{print $1}' > $jarfile.md5
- fi
- if [ ! -f $jarfile.sha1 ] ; then
- sha1sum $jarfile | awk '{print $1}' > $jarfile.sha1
- fi
- if [ ! -f $jarfile.asc ] ; then
- gpg --detach-sign -a $jarfile
- fi
-done
-
-popd