Skip to content
Snippets Groups Projects
Commit 5d229a89 authored by jkotan's avatar jkotan
Browse files

New upstream version 9.4.0

parent af6946e7
Branches upstream/bullseye
Tags upstream/bullseye/9.4.0
No related merge requests found
Metadata-Version: 2.1
Name: pidptools
Version: 9.3.1
Version: 9.4.0
Summary: PETRA III Debian Package Tools
Home-page: https://gitlab.desy.de/jan.kotanski/pidptools
Author: Jan Kotanski
......
......@@ -17,7 +17,7 @@
# along with nexdatas. If not, see <http://www.gnu.org/licenses/>.
#
set -e
PIDPVERSION="9.3.1"
PIDPVERSION="9.4.0"
for i in "${@:1}"
do
if [[ $i == -* ]] ; then
......@@ -70,6 +70,9 @@ do
--hdri)
export HDRI=YES
;;
--nims)
export NIMS=YES
;;
--othermirror=*)
export MYOTHERMIRROR="${i#*=}"
;;
......@@ -121,6 +124,7 @@ if [[ ! -z $HELP ]] || [[ -z $PACKAGE ]] ; then
echo " -cpb, --createpb create gbp pbuilder environment"
echo " -a=, --arch= git-pbuilder architecture"
echo " --hdri add the HDRI repository to the othermirror parameter"
echo " --nims add the NIMS repository to the othermirror parameter"
echo " --othermirror= add a repository to the othermirror parameter"
echo " -c, --continue continue the built of the debian package, e.g.:"
echo " after a conflict detected between patches "
......@@ -152,7 +156,14 @@ else
if [[ -z $MYOTHERMIRROR ]] ; then
MYOTHERMIRROR="deb [trusted=yes] http://repos.pni-hdri.de/apt/debian $TRRELEASE main"
else
MYOTHERMIRROR=$MYOTHERMIRROR" | deb [trusted=yes] http://repos.pni-hdri.de/apt/debian $TRRELEASE main"
MYOTHERMIRROR=$MYOTHERMIRROR" | deb [trusted=yes] http://repos.pni-hdri.de/apt/debian $TRRELEASE main"
fi
fi
if ! [[ -z $NIMS ]] ; then
if [[ -z $MYOTHERMIRROR ]] ; then
MYOTHERMIRROR="deb http://nims.desy.de/debian $TRRELEASE main contrib non-free non-free-firmware"
else
MYOTHERMIRROR=$MYOTHERMIRROR" | deb http://nims.desy.de/debian $TRRELEASE main contrib non-free non-free-firmware"
fi
fi
CDIR=${PWD##*/}
......
......@@ -16,7 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with nexdatas. If not, see <http://www.gnu.org/licenses/>.
#
PIDPVERSION="9.3.1"
PIDPVERSION="9.4.0"
for i in "${@:1}"
do
if [[ $i == -* ]] ; then
......
......@@ -17,7 +17,7 @@
# along with nexdatas. If not, see <http://www.gnu.org/licenses/>.
#
set -e
PIDPVERSION="9.3.1"
PIDPVERSION="9.4.0"
for i in "${@:1}"
do
if [[ $i == -* ]] ; then
......
......@@ -17,7 +17,7 @@
# along with nexdatas. If not, see <http://www.gnu.org/licenses/>.
#
PIDPVERSION="9.3.1"
PIDPVERSION="9.4.0"
for i in "${@:1}"
do
if [[ $i == -* ]] ; then
......
......@@ -87,6 +87,9 @@ do
--hdri)
export HDRI=YES
;;
--nims)
export NIMS=YES
;;
--othermirror=*)
export MYOTHERMIRROR="${i#*=}"
;;
......@@ -158,6 +161,7 @@ if [[ ! -z $HELP ]] || [[ -z $PACKAGE ]] ; then
echo " -cpb, --createpb create gbp pbuilder environment"
echo " -a=, --arch= git-pbuilder architecture"
echo " --hdri add the HDRI repository to the othermirror parameter"
echo " --nims add the NIMS repository to the othermirror parameter"
echo " --othermirror= add a repository to the othermirror parameter"
echo " -c, --continue continue the built of the debian package, e.g.:"
echo " after a conflict detected between patches "
......
Metadata-Version: 2.1
Name: pidptools
Version: 9.3.1
Version: 9.4.0
Summary: PETRA III Debian Package Tools
Home-page: https://gitlab.desy.de/jan.kotanski/pidptools
Author: Jan Kotanski
......
......@@ -30,7 +30,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
#: (:obj:`str`) full release number
release = "9.3.1"
release = "9.4.0"
#: (:obj:`dict` <:obj:`str` , any >`) metadata for distutils
SETUPDATA = dict(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment