| Update of /cvsroot/xplc/xplc/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26641
Modified Files:
	.cvsignore changelog control.in rules 
Added Files:
	uuidcdef.install uuidcdef.manpages 
Log Message:
Add a uuidcdef package.
Index: .cvsignore
===================================================================
RCS file: /cvsroot/xplc/xplc/debian/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** .cvsignore	7 Oct 2004 03:17:57 -0000	1.3
--- .cvsignore	21 Oct 2005 16:23:40 -0000	1.4
***************
*** 5,9 ****
  libxplc
  libxplc-dev
! libxplc.substvars
  stamp-autotools-files
  stamp-makefile-build
--- 5,9 ----
  libxplc
  libxplc-dev
! uuidcdef.substvars
  stamp-autotools-files
  stamp-makefile-build
Index: changelog
===================================================================
RCS file: /cvsroot/xplc/xplc/debian/changelog,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** changelog	6 Jul 2005 18:11:16 -0000	1.21
--- changelog	21 Oct 2005 16:23:40 -0000	1.22
***************
*** 1,14 ****
! xplc (0.3.12-1.1) NONE; urgency=low
  
    * Unofficial build from CVS.
  
!  -- J. Random Hacker <jrhacker@example>  Wed,  7 Jul 2005 00:00:00 -0000
  
! xplc (0.3.12-1) unstable; urgency=low
  
    * New upstream release.
    * Built for G++ 4.0.
  
!  -- Simon Law <sf...@de...>  Wed,  6 Jul 2005 12:36:20 -0400
  
  xplc (0.3.11-1) unstable; urgency=low
--- 1,15 ----
! xplc (0.3.13-1.1) NONE; urgency=low
  
    * Unofficial build from CVS.
  
!  -- J. Random Hacker <jrhacker@example>  Sat, 22 Oct 2005 00:00:00 -0000
  
! xplc (0.3.13-1) unstable; urgency=low
  
    * New upstream release.
+     - Includes /usr/bin/uuidcdef.  (Closes: Bug#310755)
    * Built for G++ 4.0.
  
!  -- Simon Law <sf...@de...>  Fri, 21 Oct 2005 09:48:37 -0400
  
  xplc (0.3.11-1) unstable; urgency=low
Index: rules
===================================================================
RCS file: /cvsroot/xplc/xplc/debian/rules,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** rules	8 Apr 2005 22:50:50 -0000	1.5
--- rules	21 Oct 2005 16:23:40 -0000	1.6
***************
*** 1,3 ****
--- 1,4 ----
  #!/usr/bin/make -f
+ 
  include /usr/share/cdbs/1/rules/debhelper.mk
  include /usr/share/cdbs/1/class/autotools.mk
***************
*** 28,29 ****
--- 29,35 ----
  binary-predeb/libxplc$(PKG_VERSION)::
  	/sbin/ldconfig -v -n debian/libxplc$(PKG_VERSION)/usr/lib
+ 
+ # Turn symlinks into the real binary
+ install/uuidcdef::
+ 	ln -f debian/tmp/usr/bin/uuidgen debian/tmp/usr/bin/uuidcdef
+ 	ln -f debian/tmp/usr/share/man/man1/uuidgen.1 debian/tmp/usr/share/man/man1/uuidcdef
Index: control.in
===================================================================
RCS file: /cvsroot/xplc/xplc/debian/control.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** control.in	6 Jul 2005 18:11:16 -0000	1.4
--- control.in	21 Oct 2005 16:23:40 -0000	1.5
***************
*** 4,9 ****
  Maintainer: Simon Law <sf...@de...>
  Uploaders: James Morrison <ph...@de...>
! Build-Depends: cdbs, debhelper (>= 4.1.0)
! Standards-Version: 3.6.1.0
  
  Package: libxplc@VERSION@
--- 4,9 ----
  Maintainer: Simon Law <sf...@de...>
  Uploaders: James Morrison <ph...@de...>
! Build-Depends: uuid-dev, cdbs, debhelper (>= 4.1.0)
! Standards-Version: 3.6.2.0
  
  Package: libxplc@VERSION@
***************
*** 21,25 ****
  Section: libdevel
  Architecture: any
! Depends: libxplc@VERSION@ (= ${Source-Version}), ${shlibs:Depends}
  Description: Light weight component system (Development libraries and headers)
   XPLC ("Cross-Platform Lightweight Components") is a component system that
--- 21,25 ----
  Section: libdevel
  Architecture: any
! Depends: libxplc@VERSION@ (= ${Source-Version}), uuidcdef, ${shlibs:Depends}
  Description: Light weight component system (Development libraries and headers)
   XPLC ("Cross-Platform Lightweight Components") is a component system that
***************
*** 28,29 ****
--- 28,38 ----
   having the lowest possible overhead (both in machine resources and
   programming effort).
+ 
+ Package: uuidcdef
+ Section: devel
+ Architecture: any
+ Depends: ${shlibs:Depends}
+ Description: Universally Unique Identifier (UUID) generator
+  This utility generates univerally unique identifiers (UUIDs).  It also
+  manages to print them out in OSF form, or as a C structure when handling
+  them in programs, as is the case for an XPLC-enabled library.
--- NEW FILE: uuidcdef.manpages ---
debian/tmp/usr/share/man/man1/uuidcdef.1
--- NEW FILE: uuidcdef.install ---
debian/tmp/usr/bin/uuidcdef
 |