rpms/cyrus-sasl/F-7 make-no-dlcompatorsrp-tarball.sh, NONE, 1.1 .cvsignore, 1.15, 1.16 cyrus-sasl.spec, 1.59, 1.60 sources, 1.18, 1.19 make-no-dlcompat-tarball.sh, 1.3, NONE

Steve Conklin (sconklin) fedora-extras-commits at redhat.com
Wed Nov 7 17:59:10 UTC 2007


Author: sconklin

Update of /cvs/pkgs/rpms/cyrus-sasl/F-7
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv23468

Modified Files:
	.cvsignore cyrus-sasl.spec sources 
Added Files:
	make-no-dlcompatorsrp-tarball.sh 
Removed Files:
	make-no-dlcompat-tarball.sh 
Log Message:
Removed source for srp plugin from source tarball



--- NEW FILE make-no-dlcompatorsrp-tarball.sh ---
#!/bin/bash -e
#
#  See ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/ for unmodified sources.
#

tmppath=`mktemp -d ${TMPDIR:-/tmp}/make-no-dlcompat-tarball-XXXXXX`
if test -z "$tmppath" ; then
	echo Error creating temporary directory.
	exit 1
fi
trap "rm -fr $tmppath" EXIT

initialdir=`pwd`

for tarball in ${initialdir}/cyrus-sasl-*.tar.{gz,bz2} ; do
	if ! test -s "$tarball" ; then
		continue
	fi
	rm -fr $tmppath/*
	pushd $tmppath > /dev/null
	case "$tarball" in
	*nodlcompat*)
		: Do nothing.
		;;
	*.gz)
		gzip  -dc "$tarball" | tar xf -
		rm -fr cyrus-sasl-*/dlcompat*
		rm -fr cyrus-sasl-*/plugins/srp*
		tar cf - * | gzip  -9c > \
		$initialdir/`basename $tarball .tar.gz`-nodlcompatorsrp.tar.gz
		;;
	*.bz2)
		bzip2 -dc "$tarball" | tar xf -
		rm -fr cyrus-sasl-*/dlcompat*
		rm -fr cyrus-sasl-*/plugins/srp*
		tar cf - * | bzip2 -9c > \
		$initialdir/`basename $tarball .tar.bz2`-nodlcompatorsrp.tar.bz2
		;;
	esac
	popd > /dev/null
done


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/cyrus-sasl/F-7/.cvsignore,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- .cvsignore	29 Sep 2006 21:08:25 -0000	1.15
+++ .cvsignore	7 Nov 2007 17:58:13 -0000	1.16
@@ -10,3 +10,4 @@
 cyrus-sasl-2.1.22.tar.gz
 cyrus-sasl-2.1.22.tar.gz.sig
 cyrus-sasl-2.1.22-nodlcompat.tar.gz
+cyrus-sasl-2.1.22-nodlcompatorsrp.tar.gz


Index: cyrus-sasl.spec
===================================================================
RCS file: /cvs/pkgs/rpms/cyrus-sasl/F-7/cyrus-sasl.spec,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- cyrus-sasl.spec	26 Feb 2007 21:23:11 -0000	1.59
+++ cyrus-sasl.spec	7 Nov 2007 17:58:13 -0000	1.60
@@ -5,19 +5,19 @@
 Summary: The Cyrus SASL library
 Name: cyrus-sasl
 Version: 2.1.22
-Release: 6
+Release: 7
 License: BSD
 Group: System Environment/Libraries
 # Source0 originally comes from ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/;
-# make-no-dlcompat-tarball.sh removes the "dlcompat" subdirectory and builds a
-# new tarball.
-Source0: cyrus-sasl-%{version}-nodlcompat.tar.gz
+# make-no-dlcompatorsrp-tarball.sh removes the "dlcompat" subdirectory and
+# the srp plugin files and builds a new tarball.
+Source0: cyrus-sasl-%{version}-nodlcompatorsrp.tar.gz
 Source4: saslauthd.init
 Source6: http://www.sleepycat.com/update/%{db_version}/db-%{db_version}.tar.gz
 Source7: sasl-mechlist.c
 Source8: sasl-checkpass.c
 Source9: saslauthd.sysconfig
-Source10: make-no-dlcompat-tarball.sh
+Source10: make-no-dlcompatorsrp-tarball.sh
 URL: http://asg.web.cmu.edu/sasl/sasl-library.html
 Requires: %{name}-lib = %{version}-%{release}
 Patch10: cyrus-sasl-2.1.22-db_bundle.patch
@@ -372,6 +372,9 @@
 %{_sbindir}/sasl2-shared-mechlist
 
 %changelog
+* Tue Nov 6 2007 Steve Conklin <steve at redhat.com> 2.1.22-7
+- remove srp plugin from source tarball
+
 * Mon Feb 26 2007 Nalin Dahyabhai <nalin at redhat.com> 2.1.22-6
 - install config files and init scripts using -p
 - pull in patch to build with current automake (#229010, Jacek Konieczny


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/cyrus-sasl/F-7/sources,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- sources	26 Feb 2007 21:23:11 -0000	1.18
+++ sources	7 Nov 2007 17:58:13 -0000	1.19
@@ -1,2 +1,2 @@
-c5c56c86a1397443d3b75b6864cb630d  cyrus-sasl-2.1.22-nodlcompat.tar.gz
 b0f1c777708cb8e9d37fb47e7ed3312d  db-4.5.20.tar.gz
+fb5c61026b47733bc025ac332a762fba  cyrus-sasl-2.1.22-nodlcompatorsrp.tar.gz


--- make-no-dlcompat-tarball.sh DELETED ---




More information about the fedora-extras-commits mailing list