Hello community, here is the log from the commit of package portmap checked in at Fri May 25 00:41:42 CEST 2007. -------- --- portmap/portmap.changes 2007-01-16 11:22:34.000000000 +0100 +++ /mounts/work_src_done/STABLE/portmap/portmap.changes 2007-05-24 17:15:41.000000000 +0200 @@ -1,0 +2,18 @@ +Thu May 24 17:07:17 CEST 2007 - mkoenig@suse.de + +- update version 6.0, git20070513 + * compile and runtime selection of uid to 'setuid' to + * mapping table is stored in a file and can be restored on restart + * If a privilege program registers a non-privileged port, and + non-privileged program can no-longer unregister it. + * add man pages + * allow portmap to bind to a local address only + * support 'chroot' + * various cleanups and minor bug fixes +- removed patches: + portmap_5beta.dif + portmap5-chroot-i-pmapdump.diff + portmap_5-manpages.diff + portmap-nobodynogroup.diff + +------------------------------------------------------------------- Old: ---- portmap_5beta.dif portmap_5beta.tar.gz portmap5-chroot-i-pmapdump.diff portmap_5-manpages.diff portmap-nobodynogroup.diff New: ---- portmap-git20070513.tar.bz2 portmap-makefile.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ portmap.spec ++++++ --- /var/tmp/diff_new_pack.t21242/_old 2007-05-25 00:41:04.000000000 +0200 +++ /var/tmp/diff_new_pack.t21242/_new 2007-05-25 00:41:04.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package portmap (Version 5beta) +# spec file for package portmap (Version 6.0+git20070513) # # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -18,18 +18,16 @@ Requires: netcfg, syslog Provides: nkitb:/sbin/portmap Autoreqprov: on -Version: 5beta -Release: 773 +%define git git20070513 +Version: 6.0+git20070513 +Release: 1 Summary: A program that manages RPC connections BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source: portmap_5beta.tar.gz +Source: portmap-%{git}.tar.bz2 Source1: portmap.init Source2: sysconfig.portmap Source3: %{name}.xml -Patch: portmap_5beta.dif -Patch1: portmap-nobodynogroup.diff -Patch2: portmap5-chroot-i-pmapdump.diff -Patch3: portmap_5-manpages.diff +Patch0: portmap-makefile.patch PreReq: %insserv_prereq %fillup_prereq %description @@ -45,23 +43,15 @@ Wietse Venema (wietse@wzv.win.tue.nl) %prep -%setup -n portmap_5beta -%patch -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 +%setup -n %{name}-%{git} +%patch0 -p1 %build LIB=%{_lib} make O="$RPM_OPT_FLAGS" %install +make DESTDIR=$RPM_BUILD_ROOT install install -d -m 755 $RPM_BUILD_ROOT/etc/init.d -install -d -m 755 $RPM_BUILD_ROOT/sbin -install -d -m 755 $RPM_BUILD_ROOT/usr/sbin -install -d -m 755 $RPM_BUILD_ROOT%{_mandir}/man8 -install pmap_dump pmap_set $RPM_BUILD_ROOT/usr/sbin/ -install portmap $RPM_BUILD_ROOT/sbin -install -m 644 portmap.8 pmap_dump.8 pmap_set.8 $RPM_BUILD_ROOT%{_mandir}/man8/ install -m 744 %SOURCE1 $RPM_BUILD_ROOT/etc/init.d/portmap ln -sf ../etc/init.d/portmap $RPM_BUILD_ROOT/sbin/rcportmap mkdir -p $RPM_BUILD_ROOT/var/adm/fillup-templates @@ -84,17 +74,34 @@ %files %defattr(-,root,root) -%doc README BLURB CHANGES +%doc README README.5 BLURBv5 CHANGES %config /etc/init.d/portmap -/sbin/* -/usr/sbin/* +/sbin/pmap_dump +/sbin/pmap_set +/sbin/portmap +/sbin/rcportmap %doc %{_mandir}/man8/* /var/adm/fillup-templates/sysconfig.portmap %dir %_datadir/omc/ %dir %_datadir/omc/svcinfo.d/ %_datadir/omc/svcinfo.d/%{name}.xml -%changelog -n portmap +%changelog +* Thu May 24 2007 - mkoenig@suse.de +- update version 6.0, git20070513 + * compile and runtime selection of uid to 'setuid' to + * mapping table is stored in a file and can be restored on restart + * If a privilege program registers a non-privileged port, and + non-privileged program can no-longer unregister it. + * add man pages + * allow portmap to bind to a local address only + * support 'chroot' + * various cleanups and minor bug fixes +- removed patches: + portmap_5beta.dif + portmap5-chroot-i-pmapdump.diff + portmap_5-manpages.diff + portmap-nobodynogroup.diff * Tue Jan 16 2007 - mskibbe@suse.de - change path to service xml (fate #301839) * Mon Dec 11 2006 - mskibbe@suse.de ++++++ portmap-makefile.patch ++++++ Index: portmap-git20070513/Makefile =================================================================== --- portmap-git20070513.orig/Makefile +++ portmap-git20070513/Makefile @@ -137,12 +137,14 @@ portmap.man : portmap.8 DESTDIR = $(BASEDIR) install: all - install -o root -g root -m 0755 portmap $(DESTDIR)/sbin - install -o root -g root -m 0755 pmap_dump $(DESTDIR)/sbin - install -o root -g root -m 0755 pmap_set $(DESTDIR)/sbin - install -o root -g root -m 0644 portmap.man $(DESTDIR)/usr/share/man/man8/portmap.8 - install -o root -g root -m 0644 pmap_dump.8 $(DESTDIR)/usr/share/man/man8 - install -o root -g root -m 0644 pmap_set.8 $(DESTDIR)/usr/share/man/man8 + install -d $(DESTDIR)/sbin + install -d $(DESTDIR)/usr/share/man/man8 + install -m 0755 portmap $(DESTDIR)/sbin + install -m 0755 pmap_dump $(DESTDIR)/sbin + install -m 0755 pmap_set $(DESTDIR)/sbin + install -m 0644 portmap.man $(DESTDIR)/usr/share/man/man8/portmap.8 + install -m 0644 pmap_dump.8 $(DESTDIR)/usr/share/man/man8 + install -m 0644 pmap_set.8 $(DESTDIR)/usr/share/man/man8 clean: rm -f *.o portmap pmap_dump pmap_set from_local \ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de