public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xfsprogs: generate complete source tarball from Makepkgs
@ 2009-02-17 21:49 Christoph Hellwig
  2009-02-23 13:29 ` Christoph Hellwig
  0 siblings, 1 reply; 3+ messages in thread
From: Christoph Hellwig @ 2009-02-17 21:49 UTC (permalink / raw)
  To: xfs

The source file lists in the Makefiles were missing a couple of files.
Because those missing files include the new headers that are only
installed on make install-qa that resulting tarball would not even be
buildable.


Signed-off-by: Christoph Hellwig <hch@lst.de>

Index: xfsprogs-dev/include/buildmacros
===================================================================
--- xfsprogs-dev.orig/include/buildmacros	2009-02-17 19:55:23.674944499 +0100
+++ xfsprogs-dev/include/buildmacros	2009-02-17 19:55:52.654069638 +0100
@@ -15,6 +15,7 @@ LDLIBS = $(LLDLIBS) $(PLDLIBS) $(MALLOCL
 
 MAKEOPTS = --no-print-directory
 SRCFILES = Makefile $(HFILES) $(CFILES) $(LSRCFILES) $(LFILES) $(YFILES)
+SRCFILES += $(QAHFILES)
 
 DEPDIRT = dep dep.bak
 MANDIRT = *.[1-9].gz
Index: xfsprogs-dev/db/Makefile
===================================================================
--- xfsprogs-dev.orig/db/Makefile	2009-02-17 20:03:49.554944958 +0100
+++ xfsprogs-dev/db/Makefile	2009-02-17 20:04:16.189070177 +0100
@@ -15,6 +15,8 @@ HFILES = addr.h agf.h agfl.h agi.h attr.
 	text.h type.h write.h attrset.h
 CFILES = $(HFILES:.h=.c)
 LSRCFILES = xfs_admin.sh xfs_check.sh xfs_ncheck.sh xfs_metadump.sh
+LSRCFILES += xfs_check64.sh xfs_ncheck64.sh
+
 LLDLIBS	= $(LIBXFS) $(LIBXLOG) $(LIBUUID) $(LIBRT) $(LIBPTHREAD)
 LTDEPENDENCIES = $(LIBXFS) $(LIBXLOG)
 LLDFLAGS += -static
Index: xfsprogs-dev/doc/Makefile
===================================================================
--- xfsprogs-dev.orig/doc/Makefile	2009-02-17 20:02:23.434944233 +0100
+++ xfsprogs-dev/doc/Makefile	2009-02-17 20:02:40.158944629 +0100
@@ -5,7 +5,7 @@
 TOPDIR = ..
 include $(TOPDIR)/include/builddefs
 
-LSRCFILES = INSTALL PORTING CHANGES COPYING CREDITS
+LSRCFILES = INSTALL PORTING CHANGES COPYING CREDITS sparse.txt
 LDIRT = *.gz
 
 default: CHANGES.gz
Index: xfsprogs-dev/include/Makefile
===================================================================
--- xfsprogs-dev.orig/include/Makefile	2009-02-17 19:51:43.273069121 +0100
+++ xfsprogs-dev/include/Makefile	2009-02-17 22:44:41.831973534 +0100
@@ -37,7 +37,7 @@ PHFILES = darwin.h freebsd.h irix.h linu
 DKHFILES = volume.h fstyp.h dvh.h
 LSRCFILES = $(shell echo $(PHFILES) | sed -e "s/$(PKG_PLATFORM).h//g")
 LSRCFILES += platform_defs.h.in builddefs.in buildmacros buildrules $(DKHFILES)
-LSRCFILES += command.h input.h path.h project.h
+LSRCFILES += command.h input.h path.h project.h unaligned.h
 LDIRT = xfs disk
 
 default install: xfs disk
Index: xfsprogs-dev/repair/Makefile
===================================================================
--- xfsprogs-dev.orig/repair/Makefile	2009-02-17 20:03:01.254069430 +0100
+++ xfsprogs-dev/repair/Makefile	2009-02-17 20:03:10.846069320 +0100
@@ -5,6 +5,8 @@
 TOPDIR = ..
 include $(TOPDIR)/include/builddefs
 
+LSRCFILES = README
+
 LTCOMMAND = xfs_repair
 
 HFILES = agheader.h attr_repair.h avl.h avl64.h bmap.h dinode.h dir.h \

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] xfsprogs: generate complete source tarball from Makepkgs
  2009-02-17 21:49 [PATCH] xfsprogs: generate complete source tarball from Makepkgs Christoph Hellwig
@ 2009-02-23 13:29 ` Christoph Hellwig
  2009-02-23 16:11   ` Felix Blyakher
  0 siblings, 1 reply; 3+ messages in thread
From: Christoph Hellwig @ 2009-02-23 13:29 UTC (permalink / raw)
  To: xfs

ping?

On Tue, Feb 17, 2009 at 04:49:40PM -0500, Christoph Hellwig wrote:
> The source file lists in the Makefiles were missing a couple of files.
> Because those missing files include the new headers that are only
> installed on make install-qa that resulting tarball would not even be
> buildable.
> 
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> 
> Index: xfsprogs-dev/include/buildmacros
> ===================================================================
> --- xfsprogs-dev.orig/include/buildmacros	2009-02-17 19:55:23.674944499 +0100
> +++ xfsprogs-dev/include/buildmacros	2009-02-17 19:55:52.654069638 +0100
> @@ -15,6 +15,7 @@ LDLIBS = $(LLDLIBS) $(PLDLIBS) $(MALLOCL
>  
>  MAKEOPTS = --no-print-directory
>  SRCFILES = Makefile $(HFILES) $(CFILES) $(LSRCFILES) $(LFILES) $(YFILES)
> +SRCFILES += $(QAHFILES)
>  
>  DEPDIRT = dep dep.bak
>  MANDIRT = *.[1-9].gz
> Index: xfsprogs-dev/db/Makefile
> ===================================================================
> --- xfsprogs-dev.orig/db/Makefile	2009-02-17 20:03:49.554944958 +0100
> +++ xfsprogs-dev/db/Makefile	2009-02-17 20:04:16.189070177 +0100
> @@ -15,6 +15,8 @@ HFILES = addr.h agf.h agfl.h agi.h attr.
>  	text.h type.h write.h attrset.h
>  CFILES = $(HFILES:.h=.c)
>  LSRCFILES = xfs_admin.sh xfs_check.sh xfs_ncheck.sh xfs_metadump.sh
> +LSRCFILES += xfs_check64.sh xfs_ncheck64.sh
> +
>  LLDLIBS	= $(LIBXFS) $(LIBXLOG) $(LIBUUID) $(LIBRT) $(LIBPTHREAD)
>  LTDEPENDENCIES = $(LIBXFS) $(LIBXLOG)
>  LLDFLAGS += -static
> Index: xfsprogs-dev/doc/Makefile
> ===================================================================
> --- xfsprogs-dev.orig/doc/Makefile	2009-02-17 20:02:23.434944233 +0100
> +++ xfsprogs-dev/doc/Makefile	2009-02-17 20:02:40.158944629 +0100
> @@ -5,7 +5,7 @@
>  TOPDIR = ..
>  include $(TOPDIR)/include/builddefs
>  
> -LSRCFILES = INSTALL PORTING CHANGES COPYING CREDITS
> +LSRCFILES = INSTALL PORTING CHANGES COPYING CREDITS sparse.txt
>  LDIRT = *.gz
>  
>  default: CHANGES.gz
> Index: xfsprogs-dev/include/Makefile
> ===================================================================
> --- xfsprogs-dev.orig/include/Makefile	2009-02-17 19:51:43.273069121 +0100
> +++ xfsprogs-dev/include/Makefile	2009-02-17 22:44:41.831973534 +0100
> @@ -37,7 +37,7 @@ PHFILES = darwin.h freebsd.h irix.h linu
>  DKHFILES = volume.h fstyp.h dvh.h
>  LSRCFILES = $(shell echo $(PHFILES) | sed -e "s/$(PKG_PLATFORM).h//g")
>  LSRCFILES += platform_defs.h.in builddefs.in buildmacros buildrules $(DKHFILES)
> -LSRCFILES += command.h input.h path.h project.h
> +LSRCFILES += command.h input.h path.h project.h unaligned.h
>  LDIRT = xfs disk
>  
>  default install: xfs disk
> Index: xfsprogs-dev/repair/Makefile
> ===================================================================
> --- xfsprogs-dev.orig/repair/Makefile	2009-02-17 20:03:01.254069430 +0100
> +++ xfsprogs-dev/repair/Makefile	2009-02-17 20:03:10.846069320 +0100
> @@ -5,6 +5,8 @@
>  TOPDIR = ..
>  include $(TOPDIR)/include/builddefs
>  
> +LSRCFILES = README
> +
>  LTCOMMAND = xfs_repair
>  
>  HFILES = agheader.h attr_repair.h avl.h avl64.h bmap.h dinode.h dir.h \
> 
> _______________________________________________
> xfs mailing list
> xfs@oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs
---end quoted text---

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] xfsprogs: generate complete source tarball from Makepkgs
  2009-02-23 13:29 ` Christoph Hellwig
@ 2009-02-23 16:11   ` Felix Blyakher
  0 siblings, 0 replies; 3+ messages in thread
From: Felix Blyakher @ 2009-02-23 16:11 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: xfs


On Feb 23, 2009, at 7:29 AM, Christoph Hellwig wrote:

> ping?
>
> On Tue, Feb 17, 2009 at 04:49:40PM -0500, Christoph Hellwig wrote:
>> The source file lists in the Makefiles were missing a couple of  
>> files.
>> Because those missing files include the new headers that are only
>> installed on make install-qa that resulting tarball would not even be
>> buildable.
>>
>>
>> Signed-off-by: Christoph Hellwig <hch@lst.de>

Reviewed-by: Felix Blyakher <felixb@sgi.com>

>>
>>
>> Index: xfsprogs-dev/include/buildmacros
>> ===================================================================
>> --- xfsprogs-dev.orig/include/buildmacros	2009-02-17  
>> 19:55:23.674944499 +0100
>> +++ xfsprogs-dev/include/buildmacros	2009-02-17 19:55:52.654069638  
>> +0100
>> @@ -15,6 +15,7 @@ LDLIBS = $(LLDLIBS) $(PLDLIBS) $(MALLOCL
>>
>> MAKEOPTS = --no-print-directory
>> SRCFILES = Makefile $(HFILES) $(CFILES) $(LSRCFILES) $(LFILES) $ 
>> (YFILES)
>> +SRCFILES += $(QAHFILES)
>>
>> DEPDIRT = dep dep.bak
>> MANDIRT = *.[1-9].gz
>> Index: xfsprogs-dev/db/Makefile
>> ===================================================================
>> --- xfsprogs-dev.orig/db/Makefile	2009-02-17 20:03:49.554944958 +0100
>> +++ xfsprogs-dev/db/Makefile	2009-02-17 20:04:16.189070177 +0100
>> @@ -15,6 +15,8 @@ HFILES = addr.h agf.h agfl.h agi.h attr.
>> 	text.h type.h write.h attrset.h
>> CFILES = $(HFILES:.h=.c)
>> LSRCFILES = xfs_admin.sh xfs_check.sh xfs_ncheck.sh xfs_metadump.sh
>> +LSRCFILES += xfs_check64.sh xfs_ncheck64.sh
>> +
>> LLDLIBS	= $(LIBXFS) $(LIBXLOG) $(LIBUUID) $(LIBRT) $(LIBPTHREAD)
>> LTDEPENDENCIES = $(LIBXFS) $(LIBXLOG)
>> LLDFLAGS += -static
>> Index: xfsprogs-dev/doc/Makefile
>> ===================================================================
>> --- xfsprogs-dev.orig/doc/Makefile	2009-02-17 20:02:23.434944233  
>> +0100
>> +++ xfsprogs-dev/doc/Makefile	2009-02-17 20:02:40.158944629 +0100
>> @@ -5,7 +5,7 @@
>> TOPDIR = ..
>> include $(TOPDIR)/include/builddefs
>>
>> -LSRCFILES = INSTALL PORTING CHANGES COPYING CREDITS
>> +LSRCFILES = INSTALL PORTING CHANGES COPYING CREDITS sparse.txt
>> LDIRT = *.gz
>>
>> default: CHANGES.gz
>> Index: xfsprogs-dev/include/Makefile
>> ===================================================================
>> --- xfsprogs-dev.orig/include/Makefile	2009-02-17  
>> 19:51:43.273069121 +0100
>> +++ xfsprogs-dev/include/Makefile	2009-02-17 22:44:41.831973534 +0100
>> @@ -37,7 +37,7 @@ PHFILES = darwin.h freebsd.h irix.h linu
>> DKHFILES = volume.h fstyp.h dvh.h
>> LSRCFILES = $(shell echo $(PHFILES) | sed -e "s/$(PKG_PLATFORM).h// 
>> g")
>> LSRCFILES += platform_defs.h.in builddefs.in buildmacros buildrules  
>> $(DKHFILES)
>> -LSRCFILES += command.h input.h path.h project.h
>> +LSRCFILES += command.h input.h path.h project.h unaligned.h
>> LDIRT = xfs disk
>>
>> default install: xfs disk
>> Index: xfsprogs-dev/repair/Makefile
>> ===================================================================
>> --- xfsprogs-dev.orig/repair/Makefile	2009-02-17 20:03:01.254069430  
>> +0100
>> +++ xfsprogs-dev/repair/Makefile	2009-02-17 20:03:10.846069320 +0100
>> @@ -5,6 +5,8 @@
>> TOPDIR = ..
>> include $(TOPDIR)/include/builddefs
>>
>> +LSRCFILES = README
>> +
>> LTCOMMAND = xfs_repair
>>
>> HFILES = agheader.h attr_repair.h avl.h avl64.h bmap.h dinode.h  
>> dir.h \
>>
>> _______________________________________________
>> xfs mailing list
>> xfs@oss.sgi.com
>> http://oss.sgi.com/mailman/listinfo/xfs
> ---end quoted text---
>
> _______________________________________________
> xfs mailing list
> xfs@oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-02-23 16:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-17 21:49 [PATCH] xfsprogs: generate complete source tarball from Makepkgs Christoph Hellwig
2009-02-23 13:29 ` Christoph Hellwig
2009-02-23 16:11   ` Felix Blyakher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox