aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Rousse <guillomovitch@mandriva.org>2005-10-06 15:39:19 +0000
committerGuillaume Rousse <guillomovitch@mandriva.org>2005-10-06 15:39:19 +0000
commitc6bdd1f5e7b926f5266fc6b580050c25367a6482 (patch)
tree8d6b38a9adff6382888b3bd0bcfb448fc719fd46
parente41b77a92d01b2c2fb9c946649e4b1b8d13e57a9 (diff)
downloadbootsplash-c6bdd1f5e7b926f5266fc6b580050c25367a6482.tar
bootsplash-c6bdd1f5e7b926f5266fc6b580050c25367a6482.tar.gz
bootsplash-c6bdd1f5e7b926f5266fc6b580050c25367a6482.tar.bz2
bootsplash-c6bdd1f5e7b926f5266fc6b580050c25367a6482.tar.xz
bootsplash-c6bdd1f5e7b926f5266fc6b580050c25367a6482.zip
split rpmbuildupdate out
-rw-r--r--Makefile75
-rw-r--r--rpmbuildupdate.spec43
2 files changed, 118 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..eee7fba
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,75 @@
+#---------------------------------------------------------------
+# Project : Linux-Mandrake
+# Module : rpmbuildupdate
+# File : Makefile
+# Version : $Id$
+# Author : Guillaume Rousse
+# Created On : Sun Oct 1 19:26:37 2000
+#---------------------------------------------------------------
+
+BINFILES=rpmbuildupdate
+OTHERFILES=Makefile.rpmbuildupdate rpmbuildupdate.spec rpmbuildupdate.bash-completion
+FILES=$(BINFILES) $(OTHERFILES)
+
+PACKAGE=rpmbuildupdate
+VERSION:=$(shell rpm -q --qf %{VERSION} --specfile $(PACKAGE).spec)
+RELEASE:=$(shell rpm -q --qf %{RELEASE} --specfile $(PACKAGE).spec)
+TAG := $(shell echo "V$(VERSION)_$(RELEASE)" | tr -- '-.' '__')
+
+all:
+ @echo "nothing to be done for $(PACKAGE)-$(VERSION)-$(RELEASE)"
+
+install:
+ mkdir -p $(RPM_BUILD_ROOT)/usr/bin
+ install -m 755 $(BINFILES) $(RPM_BUILD_ROOT)/usr/bin
+ mkdir -p $(RPM_BUILD_ROOT)/etc/bash_completion.d
+ install -m 644 rpmbuildupdate.bash-completion $(RPM_BUILD_ROOT)/etc/bash_completion.d/rpmbuildupdate
+
+clean: cleandist
+ rm -f *~
+
+# rules to build a test rpm
+
+localrpm: localdist buildrpm
+
+localdist: cleandist dir localcopy tar
+
+cleandist:
+ rm -rf $(PACKAGE)-$(VERSION) $(PACKAGE)-$(VERSION).tar.bz2
+
+dir:
+ mkdir $(PACKAGE)-$(VERSION)
+
+localcopy:
+ tar c $(FILES) | tar x -C $(PACKAGE)-$(VERSION)
+
+tar:
+ tar cvf $(PACKAGE)-$(VERSION).tar $(PACKAGE)-$(VERSION)
+ bzip2 -9vf $(PACKAGE)-$(VERSION).tar
+ rm -rf $(PACKAGE)-$(VERSION)
+
+buildrpm:
+ rpm -ta $(PACKAGE)-$(VERSION).tar.bz2
+
+# rules to build a distributable rpm
+
+rpm: changelog cvstag dist buildrpm
+
+dist: cleandist dir export tar
+
+export:
+ cvs export -d $(PACKAGE)-$(VERSION) -r $(TAG) $(PACKAGE)
+
+cvstag:
+ cvs tag $(CVSTAGOPT) $(TAG)
+
+changelog: ../common/username
+ cvs2cl -U ../common/username -I ChangeLog
+ rm -f ChangeLog.bak
+ cvs commit -m "Generated by cvs2cl the `date '+%d_%b'`" ChangeLog
+
+# Local variables:
+# mode: makefile
+# End:
+#
+# Makefile ends here
diff --git a/rpmbuildupdate.spec b/rpmbuildupdate.spec
new file mode 100644
index 0000000..6a4ed17
--- /dev/null
+++ b/rpmbuildupdate.spec
@@ -0,0 +1,43 @@
+%define name rpmbuildupdate
+%define version 0.5
+%define release %mkrel 1
+
+Name: %{name}
+Version: %{version}
+Release: %{release}
+Summary: Helps you build up to date RPMs
+License: GPL
+Group: Development/Other
+Source0: %{name}-%{version}.tar.bz2
+Source1: %{name}.bash-completion.bz2
+BuildArch: noarch
+Requires: wget
+Buildroot: %{_tmppath}/%{name}-%{version}
+Conflicts: rpm-rebuilder <= 0.25-1mdk
+
+%description
+
+%prep
+bzcat %{SOURCE0} > %{name}
+bzcat %{SOURCE1} > %{name}.bash_completion
+
+%build
+
+%install
+rm -rf %{buildroot}
+install -d -m 755 %{buildroot}%{_bindir}
+install -d -m 755 %{buildroot}%{_sysconfdir}/bash_completion.d
+install -m 755 %{name} %{buildroot}%{_bindir}
+install -m 644 %{name}.bash_completion %{buildroot}%{_sysconfdir}/bash_completion.d/%{name}
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root)
+%{_bindir}/%{name}
+%{_sysconfdir}/bash_completion.d/%{name}
+
+%changelog
+* Thu Oct 06 2005 Guillaume Rousse <guillomovitch@mandriva.org> 0.4-1mdk
+- first individual release