rpms/beecrypt/F-9 .cvsignore, 1.8, 1.9 Makefile, 1.3, 1.4 beecrypt-4.1.2-base64.patch, 1.2, 1.3 beecrypt-4.1.2-biarch.patch, 1.2, 1.3 beecrypt-4.1.2-no-c++.patch, 1.2, 1.3 beecrypt-4.1.2-python-api.patch, 1.2, 1.3 beecrypt-4.1.2-sparc64.patch, 1.3, 1.4 beecrypt-4.1.2-with-debug.patch, 1.2, 1.3 beecrypt.spec, 1.40, 1.41 sources, 1.8, 1.9 dead.package, 1.1, NONE

Robert Scheck (robert) fedora-extras-commits at redhat.com
Tue May 20 17:42:38 UTC 2008


Author: robert

Update of /cvs/pkgs/rpms/beecrypt/F-9
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv3578

Added Files:
	.cvsignore Makefile beecrypt-4.1.2-base64.patch 
	beecrypt-4.1.2-biarch.patch beecrypt-4.1.2-no-c++.patch 
	beecrypt-4.1.2-python-api.patch beecrypt-4.1.2-sparc64.patch 
	beecrypt-4.1.2-with-debug.patch beecrypt.spec sources 
Removed Files:
	dead.package 
Log Message:
- Removed -fomit-frame-pointer to fix debuginfo (#438262 #c5)
- Disabled beecrypt-java subpackage again (#151294, #438262 #c6)
- Changes to match with Fedora Packaging Guidelines (#438262)



Index: .cvsignore
===================================================================
RCS file: .cvsignore
diff -N .cvsignore
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ .cvsignore	20 May 2008 17:41:50 -0000	1.9
@@ -0,0 +1,2 @@
+beecrypt-4.1.2.tar.gz
+beecrypt-4.1.2.tar.gz.sig


Index: Makefile
===================================================================
RCS file: Makefile
diff -N Makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ Makefile	20 May 2008 17:41:50 -0000	1.4
@@ -0,0 +1,21 @@
+# Makefile for source rpm: beecrypt
+# $Id$
+NAME := beecrypt
+SPECFILE = $(firstword $(wildcard *.spec))
+
+define find-makefile-common
+for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
+endef
+
+MAKEFILE_COMMON := $(shell $(find-makefile-common))
+
+ifeq ($(MAKEFILE_COMMON),)
+# attempt a checkout
+define checkout-makefile-common
+test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
+endef
+
+MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
+endif
+
+include $(MAKEFILE_COMMON)

beecrypt-4.1.2-base64.patch:

Index: beecrypt-4.1.2-base64.patch
===================================================================
RCS file: beecrypt-4.1.2-base64.patch
diff -N beecrypt-4.1.2-base64.patch
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ beecrypt-4.1.2-base64.patch	20 May 2008 17:41:50 -0000	1.3
@@ -0,0 +1,13 @@
+Patch by Miloslav Trmac <mitr at redhat.com> for beecrypt >= 4.1.2, to fix b64encode() for
+data starting with NUL. For further information see Red Hat Bugzilla for bug #123650.
+
+--- beecrypt-4.1.2/base64.c				2005-04-26 21:46:27.000000000 +0200
++++ beecrypt-4.1.2/base64.c.base64			2005-04-26 21:47:48.000000000 +0200
+@@ -253,7 +253,6 @@
+     unsigned c;
+ 
+     if (s == NULL)	return NULL;
+-    if (*s == '\0')	return calloc(1, sizeof(*t));
+ 
+     if (ns == 0) ns = strlen((const char*) s);
+     nt = ((ns + 2) / 3) * 4;

beecrypt-4.1.2-biarch.patch:

Index: beecrypt-4.1.2-biarch.patch
===================================================================
RCS file: beecrypt-4.1.2-biarch.patch
diff -N beecrypt-4.1.2-biarch.patch
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ beecrypt-4.1.2-biarch.patch	20 May 2008 17:41:50 -0000	1.3
@@ -0,0 +1,19 @@
+Patch by Paul Nasrat <pnasrat at redhat.com> for beecrypt >= 4.1.2 to make multilib/multiarch
+of beecrypt-devel working.
+
+--- beecrypt-4.1.2/gnu.h.in				2006-05-22 15:53:45.000000000 -0400
++++ beecrypt-4.1.2/gnu.h.in.biarch			2006-05-22 15:53:49.000000000 -0400
+@@ -61,7 +61,12 @@
+  * make assumptions about the size set by the configure script
+  */
+ #if !defined(MP_WBITS)
+-# define MP_WBITS	@MP_WBITS@
++# include <bits/wordsize.h>
++#if __WORDSIZE == 32
++# define MP_WBITS	32U
++#elif __WORDSIZE == 64
++# define MP_WBITS	64U
++#endif
+ #endif
+ 
+ #endif

beecrypt-4.1.2-no-c++.patch:

Index: beecrypt-4.1.2-no-c++.patch
===================================================================
RCS file: beecrypt-4.1.2-no-c++.patch
diff -N beecrypt-4.1.2-no-c++.patch
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ beecrypt-4.1.2-no-c++.patch	20 May 2008 17:41:50 -0000	1.3
@@ -0,0 +1,15 @@
+Patch by Florian La Roche <laroche at redhat.com> and Panu Matilainen <pmatilai at redhat.com>
+for beecrypt >= 4.1.2 to avoid linking against libstdc++. For further information see Red
+Hat Bugzilla for bug #165080.
+
+--- beecrypt-4.1.2/Makefile.am				2004-12-22 09:06:31.000000000 +0200
++++ beecrypt-4.1.2/Makefile.amno-c++			2007-08-07 08:59:34.000000000 +0300
+@@ -49,7 +49,7 @@
+ 
+ libalt_LTLIBRARIES = libbeecrypt.la
+ 
+-libbeecrypt_la_SOURCES = aes.c base64.c beecrypt.c blockmode.c blockpad.c blowfish.c dhaes.c dldp.c dlkp.c dlpk.c dlsvdp-dh.c dsa.c elgamal.c endianness.c entropy.c fips186.c hmac.c hmacmd5.c hmacsha1.c hmacsha256.c md5.c hmacsha384.c hmacsha512.c memchunk.c mp.c mpbarrett.c mpnumber.c mpprime.c mtprng.c pkcs1.c pkcs12.c rsa.c rsakp.c rsapk.c sha1.c sha256.c sha384.c sha512.c sha_k.c timestamp.c cppglue.cxx
++libbeecrypt_la_SOURCES = aes.c base64.c beecrypt.c blockmode.c blockpad.c blowfish.c dhaes.c dldp.c dlkp.c dlpk.c dlsvdp-dh.c dsa.c elgamal.c endianness.c entropy.c fips186.c hmac.c hmacmd5.c hmacsha1.c hmacsha256.c md5.c hmacsha384.c hmacsha512.c memchunk.c mp.c mpbarrett.c mpnumber.c mpprime.c mtprng.c pkcs1.c pkcs12.c rsa.c rsakp.c rsapk.c sha1.c sha256.c sha384.c sha512.c sha_k.c timestamp.c # cppglue.cxx
+ libbeecrypt_la_DEPENDENCIES = $(BEECRYPT_OBJECTS)
+ libbeecrypt_la_LIBADD = aesopt.lo blowfishopt.lo mpopt.lo sha1opt.lo
+ libbeecrypt_la_LDFLAGS = -no-undefined -version-info $(LIBBEECRYPT_LT_CURRENT):$(LIBBEECRYPT_LT_REVISION):$(LIBBEECRYPT_LT_AGE)

beecrypt-4.1.2-python-api.patch:

Index: beecrypt-4.1.2-python-api.patch
===================================================================
RCS file: beecrypt-4.1.2-python-api.patch
diff -N beecrypt-4.1.2-python-api.patch
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ beecrypt-4.1.2-python-api.patch	20 May 2008 17:41:50 -0000	1.3
@@ -0,0 +1,25 @@
+Patch by Miloslav Trmac <mitr at redhat.com> for beecrypt >= 4.1.2, removing dependencies on
+private symbols not present in Python >= 2.4 from the beecrypt-python package.
+
+--- beecrypt-4.1.2/python/debug-py.c			2004-06-20 13:09:21.000000000 +0200
++++ beecrypt-4.1.2/python/debug-py.c.python-api		2005-05-17 21:13:14.000000000 +0200
+@@ -1,10 +1,4 @@
+-
+-/*@unchecked@*/
+-extern PyTypeObject PyCode_Type;
+-/*@unchecked@*/
+-extern PyTypeObject PyDictIter_Type;
+-/*@unchecked@*/
+-extern PyTypeObject PyFrame_Type;
++#include "frameobject.h"
+ 
+ #include "beecrypt/python/mpw-py.h"	/* XXX debug only */
+ #include "beecrypt/python/rng-py.h"	/* XXX debug only */
+@@ -33,7 +27,6 @@
+     if (o->ob_type == &PyCode_Type)	return "Code";
+     if (o->ob_type == &PyComplex_Type)	return "Complex";
+     if (o->ob_type == &PyDict_Type)	return "Dict";
+-    if (o->ob_type == &PyDictIter_Type)	return "DictIter";
+     if (o->ob_type == &PyFile_Type)	return "File";
+     if (o->ob_type == &PyFloat_Type)	return "Float";
+     if (o->ob_type == &PyFrame_Type)	return "Frame";

beecrypt-4.1.2-sparc64.patch:

Index: beecrypt-4.1.2-sparc64.patch
===================================================================
RCS file: beecrypt-4.1.2-sparc64.patch
diff -N beecrypt-4.1.2-sparc64.patch
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ beecrypt-4.1.2-sparc64.patch	20 May 2008 17:41:50 -0000	1.4
@@ -0,0 +1,73 @@
+Patch by Dennis Gilmore <dennis at ausil.us> for beecrypt >= 4.1.2 to catch lib64 on sparc64.
+
+--- beecrypt-4.1.2/acinclude.m4				2004-12-19 14:16:35.000000000 -0600
++++ beecrypt-4.1.2/acinclude.m4.sparc64			2007-11-29 11:48:32.000000000 -0600
+@@ -102,6 +102,29 @@
+       ;;
+     esac
+     ;;
++  sparc*)
++    case $withval in
++    sparc)
++      ;;
++    sparcv[789])
++     bc_target_arch=sparc
++      ;;
++    sparcv9v)
++     bc_target_arch=sparc
++      ;;
++    sparc64)
++      bc_target_arch=sparc64
++      ;;
++    sparc64v)
++      bc_target_arch=sparc64
++      ;;
++    *)
++      AC_MSG_WARN([unsupported on invalid arch type])
++      bc_target_arch=sparc
++      ;;
++    esac
++    ;;
++
+   esac
+   ])
+ 
+@@ -133,9 +156,15 @@
+   s390x)
+     bc_target_arch=s390x
+     ;;
+-  sparc*)
++  sparc)
+     bc_target_arch=sparc
+     ;;
++  sparcv[789]*)
++    bc_target_arch=sparc
++    ;;
++  sparc64*)
++    bc_target_arch=sparc64
++    ;;
+   x86_64)
+     bc_target_arch=x86_64
+     ;;
+--- beecrypt-4.1.2/aclocal.m4				2004-12-21 05:38:18.000000000 -0600
++++ beecrypt-4.1.2/aclocal.m4.sparc64			2007-11-28 15:18:51.000000000 -0600
+@@ -1435,7 +1435,7 @@
+   # find out which ABI we are using
+   libsuff=
+   case "$host_cpu" in
+-  x86_64*|s390x*|powerpc64*)
++  x86_64*|s390x*|powerpc64*|sparc64*)
+     echo '[#]line __oline__ "configure"' > conftest.$ac_ext
+     if AC_TRY_EVAL(ac_compile); then
+       case `/usr/bin/file conftest.$ac_objext` in
+--- beecrypt-4.1.2/configure.ac				2004-12-21 05:37:56.000000000 -0600
++++ beecrypt-4.1.2/configure.ac.sparc64			2007-11-28 12:45:39.000000000 -0600
+@@ -614,7 +614,7 @@
+ case $target_os in
+ linux*)
+   case $bc_target_arch in
+-  powerpc64 | s390x | x86_64)
++  powerpc64 | s390x | x86_64| sparc64 )
+     bc_libalt="64"
+     ;;
+   esac

beecrypt-4.1.2-with-debug.patch:

Index: beecrypt-4.1.2-with-debug.patch
===================================================================
RCS file: beecrypt-4.1.2-with-debug.patch
diff -N beecrypt-4.1.2-with-debug.patch
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ beecrypt-4.1.2-with-debug.patch	20 May 2008 17:41:50 -0000	1.3
@@ -0,0 +1,16 @@
+Patch by Panu Matilainen <pmatilai at redhat.com> and Robert Scheck <robert at fedoraproject.org>
+for beecrypt >= 4.1.2, which removes the usage of -g and -fomit-frame-pointer. Because both
+makes the resulting debuginfo package pretty much useless.
+
+--- beecrypt-4.1.2/acinclude.m4				2004-12-19 21:16:35.000000000 +0100
++++ beecrypt-4.1.2/acinclude.m4.withdebug		2008-05-19 23:50:43.000000000 +0200
+@@ -459,8 +459,7 @@
+     CFLAGS="$CFLAGS -Wall -pedantic"
+   else
+     # Generic optimizations, including cpu tuning
+-    BEECRYPT_CFLAGS_REM([-g])
+-    CFLAGS="$CFLAGS -DNDEBUG -fomit-frame-pointer"
++    CFLAGS="$CFLAGS -DNDEBUG"
+     if test "$bc_cv_c_aggressive_opt" = yes; then
+       case $bc_target_cpu in
+       athlon64)


Index: beecrypt.spec
===================================================================
RCS file: beecrypt.spec
diff -N beecrypt.spec
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ beecrypt.spec	20 May 2008 17:41:50 -0000	1.41
@@ -0,0 +1,293 @@
+%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
+
+Summary:	An open source cryptography library
+Name:		beecrypt
+Version:	4.1.2
+Release:	17%{?dist}
+License:	LGPLv2+
+Group:		System Environment/Libraries
+URL:		http://beecrypt.sourceforge.net/
+Source0:	http://downloads.sourceforge.net/sourceforge/%{name}/%{name}-%{version}.tar.gz
+Source1:	http://downloads.sourceforge.net/sourceforge/%{name}/%{name}-%{version}.tar.gz.sig
+Patch0:		beecrypt-4.1.2-base64.patch
+Patch1:		beecrypt-4.1.2-python-api.patch
+Patch2:		beecrypt-4.1.2-biarch.patch
+Patch3:		beecrypt-4.1.2-no-c++.patch
+Patch4:		beecrypt-4.1.2-with-debug.patch
+Patch5:		beecrypt-4.1.2-sparc64.patch
+BuildRequires:	autoconf, automake, libtool
+BuildRequires:	tetex-dvips, tetex-latex, graphviz
+BuildRequires:	doxygen, m4, python-devel
+Obsoletes:	beecrypt-java <= 4.1.2-3
+BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+%description
+BeeCrypt is an ongoing project to provide a strong and fast cryptography
+toolkit. Includes entropy sources, random generators, block ciphers, hash
+functions, message authentication codes, multiprecision integer routines
+and public key primitives.
+
+%package devel
+Summary:	Development files for the beecrypt toolkit and library
+Group:		Development/Libraries
+Requires:	%{name} = %{version}-%{release}
+
+%description devel
+The beecrypt-devel package includes header files and libraries necessary
+for developing programs which use the beecrypt C toolkit and library. And
+beecrypt is a general-purpose cryptography library.
+
+%package apidocs
+Summary:	API documentation for beecrypt toolkit and library
+Group:		Documentation
+
+%description apidocs
+Beecrypt is a general-purpose cryptography library. This package contains
+API documentation for developing applications with beecrypt.
+
+%package python
+Summary:	Files needed for python applications using beecrypt
+Group:		Development/Libraries
+Requires:	%{name} = %{version}-%{release}
+
+%description python
+Beecrypt is a general-purpose cryptography library. This package contains
+files needed for using python with beecrypt.
+
+%prep
+%setup -q
+%patch0 -p1 -b .base64
+%patch1 -p1 -b .python-api
+%patch2 -p1 -b .biarch
+%patch3 -p1 -b .noc++
+%patch4 -p1 -b .withdebug
+%patch5 -p1 -b .sparc64
+autoreconf
+
+%build
+%configure --with-cplusplus=no --with-java=no
+make %{?_smp_mflags} pythondir=%{python_sitelib}
+doxygen
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make DESTDIR=$RPM_BUILD_ROOT pythondir=%{python_sitelib} install
+
+rm -f $RPM_BUILD_ROOT{%{_libdir},%{python_sitelib}}/*.{a,la}
+find docs/html -name \*.map -size 0 -delete
+
+iconv -f ISO-8859-1 -t UTF-8 CONTRIBUTORS -o CONTRIBUTORS.utf8
+mv -f CONTRIBUTORS.utf8 CONTRIBUTORS
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(-,root,root)
+%doc AUTHORS BENCHMARKS CONTRIBUTORS
+%doc COPYING COPYING.LIB NEWS README
+%{_libdir}/libbeecrypt.so.*
+
+%files devel
+%defattr(-,root,root)
+%doc BUGS 
+%{_includedir}/%{name}
+%{_libdir}/libbeecrypt.so
+
+%files apidocs
+%defattr(-,root,root)
+%doc docs/html
+
+%files python
+%defattr(-,root,root)
+%{python_sitelib}/_bc.so
+
+%changelog
+* Tue May 20 2008 Robert Scheck <robert at fedoraproject.org> 4.1.2-17
+- Removed -fomit-frame-pointer to fix debuginfo (#438262 #c5)
+- Disabled beecrypt-java subpackage again (#151294, #438262 #c6)
+
+* Thu Mar 19 2008 Robert Scheck <robert at fedoraproject.org> 4.1.2-16
+- Changes to match with Fedora Packaging Guidelines (#438262)
+
+* Thu Nov 29 2007 Dennis Gilmore <dennis at ausil.us> - 4.1.2-15
+- update sparc64 patch  
+
+* Wed Nov 28 2007 Dennis Gilmore <dennis at ausil.us> - 4.1.2-14
+- add patch so sparc64 gets lib64 
+
+* Wed Aug 22 2007 Panu Matilainen <pmatilai at redhat.com> - 4.1.2-13
+- avoid linking against libstdc++ (#165080)
+- fix debuginfo contents by building with -g (#250035)
+- autoreconf needed for the above, buildrequire autoconf, automake + libtool
+- include api documentation in apidocs subpackage
+- buildrequire graphviz for generating graphics in apidocs
+- license clarification
+
+* Wed Dec  6 2006 Jeremy Katz <katzj at redhat.com> - 4.1.2-12
+- rebuild against python 2.5
+- follow python packaging guidelines 
+
+* Wed Jul 12 2006 Jesse Keating <jkeating at redhat.com> - 4.1.2-10.1.1
+- rebuild
+
+* Tue Jun 27 2006 Paul Nasrat <pnasrat at redhat.com> - 4.1.2-10.1
+- Fix missing BR
+
+* Mon May 22 2006 Paul Nasrat <pnasrat at redhat.com> - 4.1.2-10
+- Make multilib-devel work
+
+* Fri Feb 10 2006 Jesse Keating <jkeating at redhat.com> - 4.1.2-9.2.1
+- bump again for double-long bug on ppc(64)
+
+* Tue Feb 07 2006 Jesse Keating <jkeating at redhat.com> - 4.1.2-9.2
+- rebuilt for new gcc4.1 snapshot and glibc changes
+
+* Fri Dec 09 2005 Jesse Keating <jkeating at redhat.com>
+- rebuilt
+
+* Sat Oct 15 2005 Florian La Roche <laroche at redhat.com>
+- Use -with-cplusplus=no. The libs still require libstdc++, so
+  this needs further cleanup.
+
+* Tue May 17 2005 Miloslav Trmac <mitr at redhat.com> - 4.1.2-8
+- Remove dependencies on private symbols not present in Python 2.4 from
+  beecrypt-python
+
+* Tue May 17 2005 Miloslav Trmac <mitr at redhat.com> - 4.1.2-7
+- Doh, actually apply the patch
+
+* Tue May 17 2005 Miloslav Trmac <mitr at redhat.com> - 4.1.2-6
+- Fix b64encode() for data starting with NUL (#123650)
+
+* Fri Apr 01 2005 Warren Togami <wtogami at redhat.com> 4.1.2-5
+- remove huge API docs
+
+* Fri Apr 01 2005 Paul Nasrat <pnasrat at redhat.com> 4.1.2-4
+- Obsolete older beecrypt-java
+
+* Tue Mar 29 2005 Paul Nasrat <pnasrat at redhat.com> 4.1.2-3
+- Disable beecrypt-java (#151294)
+
+* Fri Mar  4 2005 Jeff Johnson <jbj at redhat.com> 4.1.2-2
+- rebuild with gcc4.
+
+* Sat Feb  5 2005 Jeff Johnson <jbj at jbj.org> 4.1.2-1
+- upgrade to 4.1.2
+- put java components in sub-package.
+- check that /usr/lib64 is not used on alpha (#146583).
+
+* Fri Feb  4 2005 Miloslav Trmac <mitr at redhat.com> - 3.1.0-7
+- Rebuild against Python 2.4
+
+* Sun Aug 08 2004 Alan Cox <alan at redhat.com> 3.1.0-6
+- Build requires libtool (Steve Grubb)
+
+* Fri Jul 02 2004 Elliot Lee <sopwith at redhat.com> 3.1.0-5
+- rebuilt
+- Add _smp_mflags
+
+* Wed Mar 24 2004 Jeff Johnson <jbj at redhat.com> 3.1.0-3
+- fix: extgcd_w problem fixed by upgrading from CVS.
+
+* Tue Mar 02 2004 Elliot Lee <sopwith at redhat.com>
+- rebuilt
+
+* Fri Feb 13 2004 Elliot Lee <sopwith at redhat.com>
+- rebuilt
+
+* Mon Dec 22 2003 Jeff Johnson <jbj at jbj.org> 3.1.0-1
+- upgrade to 3.1.0.
+- recompile against python-2.3.3.
+
+* Mon Jun 30 2003 Jeff Johnson <jbj at redhat.com> 3.0.1-0.20030630
+- upstream fixes for DSA and ppc64.
+
+* Mon Jun 23 2003 Jeff Johnson <jbj at redhat.com> 3.0.0-2
+- upgrade to 3.0.0 final.
+- fix for DSA (actually, modulo inverse) sometimes failing.
+
+* Fri Jun 20 2003 Jeff Johnson <jbj at redhat.com> 3.0.0-1.20030619
+- avoid asm borkage on ppc64.
+
+* Thu Jun 19 2003 Jeff Johnson <jbj at redhat.com> 3.0.0-1.20030618
+- rebuild for release bump.
+
+* Tue Jun 17 2003 Jeff Johnson <jbj at redhat.com> 3.0.0-1.20030616
+- try to out smart libtool a different way.
+- use $bc_target_cpu, not $bc_target_arch, to detect /usr/lib64.
+
+* Mon Jun 16 2003 Jeff Johnson <jbj at redhat.com> 3.0.0-1.20030615
+- use -mcpu=powerpc64 on ppc64.
+
+* Fri Jun 13 2003 Jeff Johnson <jbj at redhat.com> 3.0.0-1.20030613
+- upgrade to latest snapshot.
+
+* Fri Jun  6 2003 Jeff Johnson <jbj at redhat.com> 3.0.0-1.20030605
+- rebuild into another tree.
+
+* Wed Jun 04 2003 Elliot Lee <sopwith at redhat.com>
+- rebuilt
+
+* Tue Jun  3 2003 Jeff Johnson <jbj at redhat.com> 3.0.0-0.20030603
+- update to 3.0.0 snapshot, fix mpmod (and DSA) on 64b platforms.
+
+* Mon Jun  2 2003 Jeff Johnson <jbj at redhat.com> 3.0.0-0.20030602
+- update to 3.0.0 snapshot, merge patches, fix gcd rshift and ppc problems.
+
+* Thu May 29 2003 Jeff Johnson <jbj at redhat.com> 3.0.0-0.20030529
+- update to 3.0.0 snapshot, fix ia64/x86_64 build problems.
+
+* Wed May 28 2003 Jeff Johnson <jbj at redhat.com> 3.0.0-0.20030528
+- upgrade to 3.0.0 snapshot, adding rpm specific base64.[ch] changes.
+- add PYTHONPATH=.. so that "make check" can test the just built _bc.so module.
+- grab cpuinfo and run "make bench".
+- continue ignoring "make check" failures, LD_LIBRARY_PATH needed for _bc.so.
+- skip asm build failure on ia64 for now.
+- ignore "make bench" exit codes too, x86_64 has AES segfault.
+
+* Wed May 21 2003 Jeff Johnson <jbj at redhat.com> 3.0.0-0.20030521
+- upgrade to 3.0.0 snapshot, including python subpackage.
+- ignore "make check" failure for now.
+
+* Fri May 16 2003 Jeff Johnson <jbj at redhat.com> 3.0.0-0.20030516
+- upgrade to 3.0.0 snapshot, including ia64 and x86_64 fixes.
+- add %%check.
+- ignore "make check" failure on ia64 for now.
+
+* Mon May 12 2003 Jeff Johnson <jbj at redhat.com> 3.0.0-0.20030512
+- upgrade to 3.0.0 snapshot.
+- add doxygen doco.
+- use /dev/urandom as default entropy source.
+- avoid known broken compilation for now.
+
+* Wed Jan 22 2003 Tim Powers <timp at redhat.com>
+- rebuilt
+
+* Tue Nov 19 2002 Tim Powers <timp at redhat.com>
+- rebuild on all arches
+
+* Fri Aug  2 2002 Jeff Johnson <jbj at redhat.com> 2.2.0-6
+- install types.h (#68999).
+
+* Fri Jun 21 2002 Tim Powers <timp at redhat.com>
+- automated rebuild
+
+* Wed Jun  5 2002 Jeff Johnson <jbj at redhat.com>
+- run ldconfig when installing/erasing (#65974).
+
+* Thu May 23 2002 Tim Powers <timp at redhat.com>
+- automated rebuild
+
+* Mon May 13 2002 Jeff Johnson <jbj at redhat.com>
+- upgrade to latest 2.2.0 (from cvs.rpm.org).
+
+* Mon Jan 21 2002 Jeff Johnson <jbj at redhat.com>
+- use the same beecrypt-2.2.0 that rpm is using internally.
+
+* Thu Jan 10 2002 Nalin Dahyabhai <nalin at redhat.com> 2.1.0-1
+- initial package


Index: sources
===================================================================
RCS file: sources
diff -N sources
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ sources	20 May 2008 17:41:50 -0000	1.9
@@ -0,0 +1,2 @@
+820d26437843ab0a6a8a5151a73a657c  beecrypt-4.1.2.tar.gz
+7a31857aa3c7a5bae88b02fb5e72cc1a  beecrypt-4.1.2.tar.gz.sig


--- dead.package DELETED ---




More information about the fedora-extras-commits mailing list