OBS User unknown 2008-10-09 16:45:55 +00:00 committed by Git OBS Bridge
parent cd567ac21b
commit ee233e5d39
4 changed files with 38 additions and 14 deletions

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Thu Oct 9 17:46:48 CEST 2008 - lrupp@suse.de
- quick fix for bnc#409927:
- create_sha1sums:
+ create SHA1SUM files and sign them in the slideshow directory
- added create_sha1sum which is a copy of create_md5sums
(can't use create_sha1sum_s_ as this name is already in use)
- removed NoSource tags
-------------------------------------------------------------------
Mon Jul 21 19:02:27 CEST 2008 - lrupp@suse.de

View File

@ -1,10 +1,17 @@
#
# spec file for package inst-source-utils (Version 2008.7.21)
# spec file for package inst-source-utils (Version 2008.10.9)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
@ -18,13 +25,10 @@ AutoReqProv: on
Obsoletes: autoyast2-utils <= 2.14.10
Provides: autoyast2-utils = 2.14.10
Summary: Utilities for creating customized installation sources
Version: 2008.10.8
Version: 2008.10.9
Release: 1
Source: inst-source-utils.tar.bz2
Source1: copy-build.sh
Source2: split.pl
NoSource: 1
NoSource: 2
Source1: split.pl
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
@ -56,6 +60,13 @@ rm -rf %{buildroot}
%_datadir/%name
%changelog
* Thu Oct 09 2008 lrupp@suse.de
- quick fix for bnc#409927:
- create_sha1sums:
+ create SHA1SUM files and sign them in the slideshow directory
- added create_sha1sum which is a copy of create_md5sums
(can't use create_sha1sum_s_ as this name is already in use)
- removed NoSource tags
* Mon Jul 21 2008 lrupp@suse.de
- create_directory_yast:
+ add "-f" option to overwrite existing directory.yast files

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:42c84367abe6b4ddf5b44e37012819428abe930ea8c6c3ff51a90903b4b6a8b0
size 24935
oid sha256:913516f7987d6ec1d75f8640911d6100cf56ba10541af8445e7d949c267659ca
size 25447

View File

@ -1,6 +1,7 @@
#!/bin/bash
TOPDIR=inst-source-utils
TMPDIR=$(mktemp -d /tmp/inst-source-utils-XXXXXX)
TOPDIR=$TMPDIR/inst-source-utils
SUSEDIR=/
BINDIR=${SUSEDIR}usr/bin
MODULEDIR=/usr/share/inst-source-utils
@ -10,7 +11,7 @@ BINFILES="/work/cd/bin/tools/mk_listings /work/cd/bin/tools/create_directory.yas
/work/cd/bin/tools/create_md5sums /work/cd/bin/tools/create_package_descr
/work/cd/bin/tools/create_repo_for_patch.sh /work/cd/bin/createpatch
/work/cd/bin/tools/create_update_source.sh /work/cd/bin/tools/create_sha1sums
/work/cd/bin/tools/compress_susetags
/work/cd/bin/tools/create_sha1sum /work/cd/bin/tools/compress_susetags
/work/cd/bin/tools/packages2eula.pl /work/cd/lib/mach_cd/mk_changelog"
mkdir -p $TOPDIR$BINDIR
@ -42,5 +43,7 @@ for i in $TOPDIR$BINDIR/*; do
chmod 755 $i
done
tar cjfp inst-source-utils.tar.bz2 $TOPDIR
test "$TOPDIR" != "/" -a -d "$TOPDIR" && rm -rf $TOPDIR
pushd $TMPDIR >/dev/null
tar cjfp ../inst-source-utils.tar.bz2 inst-source-utils
popd >/dev/null
test "$TMPDIR" != "/" -a -d "$TMPDIR" && rm -rf $TMPDIR