From f33cf35c3028b43d2c048c9bb1b7640406c3d712 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 17 Jul 2009 20:41:38 +0000 Subject: [PATCH 1/7] Initialize branch F-11 for 389-adminutil --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..25c7708 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-11 From 9432397609a2433773b6f5b0bed7a4baeb8fee56 Mon Sep 17 00:00:00 2001 From: Richard Allen Megginson Date: Fri, 17 Jul 2009 21:15:14 +0000 Subject: [PATCH 2/7] initial commit for all branches --- .cvsignore | 1 + 389-adminutil.spec | 147 +++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 149 insertions(+) create mode 100644 389-adminutil.spec diff --git a/.cvsignore b/.cvsignore index e69de29..793faab 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +389-adminutil-1.1.8.tar.bz2 diff --git a/389-adminutil.spec b/389-adminutil.spec new file mode 100644 index 0000000..cc28a50 --- /dev/null +++ b/389-adminutil.spec @@ -0,0 +1,147 @@ +Summary: Utility library for 389 administration +Name: 389-adminutil +Version: 1.1.8 +Release: 2%{?dist} +License: LGPLv2 +URL: http://port389.org/wiki/AdminUtil +Group: Development/Libraries +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: nspr-devel +BuildRequires: nss-devel +BuildRequires: svrcore-devel +BuildRequires: mozldap-devel +BuildRequires: libicu-devel +BuildRequires: icu +Provides: adminutil = %{version}-%{release} +Obsoletes: adminutil < 1.1.8-2 + +Source0: http://port389.org/sources/%{name}-%{version}.tar.bz2 + +%description +%{name} is libraries of functions used to administer directory +servers, usually in conjunction with the admin server. %{name} is +broken into two libraries - libadminutil contains the basic +functionality, and libadmsslutil contains SSL versions and wrappers +around the basic functions. The PSET functions allow applications to +store their preferences and configuration parameters in LDAP, without +having to know anything about LDAP. The configuration is cached in a +local file, allowing applications to function even if the LDAP server +is down. The other code is typically used by CGI programs used for +directory server management, containing GET/POST processing code as +well as resource handling (ICU ures API). + +%package devel +Summary: Development and header files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: pkgconfig +Requires: nspr-devel +Requires: nss-devel +Requires: svrcore-devel +Requires: mozldap-devel +Requires: libicu-devel +Provides: adminutil-devel = %{version}-%{release} +Obsoletes: adminutil-devel < 1.1.8-2 + +%description devel +Development files and header files necessary to build applications +that use %{name}. + +%prep +%setup -q + +%build + +%configure --disable-tests +%{__make} %{?_smp_mflags} + +%install +%{__rm} -rf $RPM_BUILD_ROOT + +%{__make} install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p" +%{__rm} -f $RPM_BUILD_ROOT%{_libdir}/lib*.a +%{__rm} -f $RPM_BUILD_ROOT%{_libdir}/lib*.la + +%clean +%{__rm} -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root,-) +%doc LICENSE README NEWS +%{_libdir}/*.so.* +%{_datadir}/%{name} + +%files devel +%defattr(-,root,root,-) +%{_libdir}/pkgconfig/%{name}.pc +%{_libdir}/*.so +%{_includedir}/libadminutil +%{_includedir}/libadmsslutil + +%changelog +* Tue May 12 2009 Rich Megginson - 1.1.8-2 +- rename to 389-adminutil + +* Tue Mar 31 2009 Rich Megginson - 1.1.8-1 +- this is the 1.1.8 release + +* Mon Feb 23 2009 Fedora Release Engineering - 1.1.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Aug 27 2008 Rich Megginson - 1.1.7-1 +- Resolves bug 454060 - ViewLog CGI crash with new adminutil +- Resolves bug 413531 - Web browser accepted languages configuration causes dsgw CGI binaries to segfault + +* Mon Jul 14 2008 Tom "spot" Callaway - 1.1.6-2 +- fix license tag + +* Mon Mar 3 2008 Rich Megginson - 1.1.6-1 +- Resolves bug 245248 - dsgw doesn't escape filename in error message +- The new dsgw hasn't been released yet, and the old one doesn't use +- this code. + +* Tue Feb 19 2008 Fedora Release Engineering - 1.1.5-2 +- Autorebuild for GCC 4.3 + +* Thu Oct 18 2007 Rich Megginson - 1.1.5-1 +- bump version to 1.1.5 +- fix icu linking issue +- disable libtool rpath by default - added --enable-rpath option to configure + +* Fri Aug 17 2007 Rich Megginson - 1.1.4-2 +- remove >= version from icu build requires to fix rawhide build problem + +* Wed Aug 1 2007 Rich Megginson - 1.1.4-1 +- updated to version 1.1.4 +- fixes bugzilla 250526 + +* Wed Jul 25 2007 Warren Togami - 1.1.3-1.1 +- binutils/gcc bug rebuild (#249435) + +* Tue Jul 24 2007 Rich Megginson - 1.1.3-1 +- updated to version 1.1.3 +- fixes bugzillas 246124 and 247192 + +* Fri Jun 22 2007 Rich Megginson - 1.1.2-1 +- Updated version to 1.1.2 +- This version fixes some memory leaks and invalid memory use +- issues + +* Wed May 23 2007 Rich Megginson - 1.1.1-3 +- more fedora review stuff - use macros consistently +- make sure install preserves timestamps +- use lgpl instead of gpl for acclanglist.c +- fix undefined weak symbols in libadmsslutil + +* Fri May 18 2007 Rich Megginson - 1.1.1-2 +- pkgconfig is a requires not a build requires + +* Thu May 17 2007 Rich Megginson - 1.1.1-1 +- Many bug fixes - bumped version to 1.1.1 +- fixed concerns from Fedora package review + +* Wed Mar 28 2007 Rich Megginson - 1.1.0-1 +- Initial version - based largely on svrcore.spec diff --git a/sources b/sources index e69de29..cc724bf 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +e84240547e2f7b97d0576bcb85c06a57 389-adminutil-1.1.8.tar.bz2 From 6e739f962e221c53e9b584de8e46acd3e6c9ce08 Mon Sep 17 00:00:00 2001 From: Richard Allen Megginson Date: Wed, 12 Aug 2009 19:53:27 +0000 Subject: [PATCH 3/7] final 1.1.8 release --- 389-adminutil.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/389-adminutil.spec b/389-adminutil.spec index cc28a50..860db39 100644 --- a/389-adminutil.spec +++ b/389-adminutil.spec @@ -1,7 +1,7 @@ Summary: Utility library for 389 administration Name: 389-adminutil Version: 1.1.8 -Release: 2%{?dist} +Release: 3%{?dist} License: LGPLv2 URL: http://port389.org/wiki/AdminUtil Group: Development/Libraries @@ -82,6 +82,9 @@ that use %{name}. %{_includedir}/libadmsslutil %changelog +* Wed Aug 12 2009 Rich Megginson - 1.1.8-3 +- final 1.1.8 release + * Tue May 12 2009 Rich Megginson - 1.1.8-2 - rename to 389-adminutil diff --git a/sources b/sources index cc724bf..085e4db 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e84240547e2f7b97d0576bcb85c06a57 389-adminutil-1.1.8.tar.bz2 +f1b0884c701e3cc7705224e07d088d8e 389-adminutil-1.1.8.tar.bz2 From e70b61e9e8e6b6a027cae6deae26f6f43fb1e83b Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:49:51 +0000 Subject: [PATCH 4/7] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ca61d77..7e6071f 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := 389-adminutil 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 +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From e69a2d4beca5b4ccf955ff71f7bf9a8646ef052a Mon Sep 17 00:00:00 2001 From: Richard Allen Megginson Date: Thu, 14 Jan 2010 21:47:09 +0000 Subject: [PATCH 5/7] this is the 1.1.9 release - fix ICU genrb related build problems --- .cvsignore | 2 +- 389-adminutil.spec | 10 +++++++--- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.cvsignore b/.cvsignore index 793faab..2af306e 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -389-adminutil-1.1.8.tar.bz2 +389-adminutil-1.1.9.tar.bz2 diff --git a/389-adminutil.spec b/389-adminutil.spec index 860db39..4dcb3c5 100644 --- a/389-adminutil.spec +++ b/389-adminutil.spec @@ -1,7 +1,7 @@ Summary: Utility library for 389 administration Name: 389-adminutil -Version: 1.1.8 -Release: 3%{?dist} +Version: 1.1.9 +Release: 1%{?dist} License: LGPLv2 URL: http://port389.org/wiki/AdminUtil Group: Development/Libraries @@ -82,7 +82,11 @@ that use %{name}. %{_includedir}/libadmsslutil %changelog -* Wed Aug 12 2009 Rich Megginson - 1.1.8-3 +* Thu Jan 14 2010 Rich Megginson - 1.1.9-1 +- make sure we can find ICU genrb on all platforms +- this is the 1.1.9 release + +* Wed Aug 12 2009 Rich Megginson - 1.1.8-4 - final 1.1.8 release * Tue May 12 2009 Rich Megginson - 1.1.8-2 diff --git a/sources b/sources index 085e4db..1c3bea3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f1b0884c701e3cc7705224e07d088d8e 389-adminutil-1.1.8.tar.bz2 +da96a9673ac983b79475fd9c51b663c3 389-adminutil-1.1.9.tar.bz2 From 9052e9ede4f2fddbb1540b176f4318c757d8f32a Mon Sep 17 00:00:00 2001 From: Richard Allen Megginson Date: Sat, 27 Feb 2010 01:44:18 +0000 Subject: [PATCH 6/7] this is the 1.1.10 release - Bug 460168 - FedoraDS adminutil requires non-existent icu.pc on non-RH/Fedora systems --- .cvsignore | 2 +- 389-adminutil.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index 2af306e..a788906 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -389-adminutil-1.1.9.tar.bz2 +389-adminutil-1.1.10.tar.bz2 diff --git a/389-adminutil.spec b/389-adminutil.spec index 4dcb3c5..c246a0f 100644 --- a/389-adminutil.spec +++ b/389-adminutil.spec @@ -1,6 +1,6 @@ Summary: Utility library for 389 administration Name: 389-adminutil -Version: 1.1.9 +Version: 1.1.10 Release: 1%{?dist} License: LGPLv2 URL: http://port389.org/wiki/AdminUtil @@ -82,6 +82,10 @@ that use %{name}. %{_includedir}/libadmsslutil %changelog +* Fri Feb 26 2010 Rich Megginson - 1.1.10-1 +- Bug 460168 - FedoraDS' adminutil requires non-existent "icu.pc" on non-RH/Fedora systems +- this is the 1.1.10 release + * Thu Jan 14 2010 Rich Megginson - 1.1.9-1 - make sure we can find ICU genrb on all platforms - this is the 1.1.9 release diff --git a/sources b/sources index 1c3bea3..baae538 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -da96a9673ac983b79475fd9c51b663c3 389-adminutil-1.1.9.tar.bz2 +e888430f0a82f1abedad5968fe84a434 389-adminutil-1.1.10.tar.bz2 From 3f1d26491bd4289d0a6448ac03646c19c4c4dd93 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 08:43:56 +0000 Subject: [PATCH 7/7] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 7e6071f..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: 389-adminutil -# $Id$ -NAME := 389-adminutil -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 $$d/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),) -# attept 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) diff --git a/branch b/branch deleted file mode 100644 index 25c7708..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-11