From 0f6697d9ec0ddacaca62a14872c61c39ab85e207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toshio=20=E3=81=8F=E3=82=89=E3=81=A8=E3=81=BF?= Date: Sat, 20 Oct 2007 15:43:49 +0000 Subject: [PATCH 1/6] Initialize branch F-8 for altermime --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..e9e7ccd --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-8 From e212568b0f30a40eda7998f1bc22ee7d11d4ab2d Mon Sep 17 00:00:00 2001 From: Tim Jackson Date: Sat, 19 Jul 2008 12:22:25 +0000 Subject: [PATCH 2/6] Update to version 0.3.8 --- altermime.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/altermime.spec b/altermime.spec index fc0a142..5baff17 100644 --- a/altermime.spec +++ b/altermime.spec @@ -1,6 +1,6 @@ Name: altermime -Version: 0.3.7 -Release: 2%{?dist} +Version: 0.3.8 +Release: 1%{?dist} Summary: Alter MIME-encoded mailpacks Group: Applications/Internet @@ -46,6 +46,9 @@ rm -rf %{buildroot} %changelog +* Sat Jul 19 2008 Tim Jackson 0.3.8-1 +- Update to version 0.3.8 + * Sat Sep 09 2006 Tim Jackson 0.3.7-2 - Rebuild for FE6 From 6c099dafee90d9007a24e8b099470bd971ad34b1 Mon Sep 17 00:00:00 2001 From: Tim Jackson Date: Sat, 19 Jul 2008 12:36:45 +0000 Subject: [PATCH 3/6] Fix bad sources file --- altermime.spec | 2 +- sources | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/altermime.spec b/altermime.spec index 5baff17..2423c5f 100644 --- a/altermime.spec +++ b/altermime.spec @@ -1,6 +1,6 @@ Name: altermime Version: 0.3.8 -Release: 1%{?dist} +Release: 1%{?dist}.1 Summary: Alter MIME-encoded mailpacks Group: Applications/Internet diff --git a/sources b/sources index 28fbbb6..852da72 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -534a68f9fed6867511c50e1e7bdf7722 altermime-0.3.7.tar.gz +e9717152d05318731ffbf67e2087af3b altermime-0.3.8.tar.gz From 76d47a7faf485d8e82f36664a946c8eb844975a3 Mon Sep 17 00:00:00 2001 From: Tim Jackson Date: Sat, 19 Jul 2008 12:38:11 +0000 Subject: [PATCH 4/6] Fix bad sources --- altermime.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/altermime.spec b/altermime.spec index 2423c5f..a336abb 100644 --- a/altermime.spec +++ b/altermime.spec @@ -46,7 +46,7 @@ rm -rf %{buildroot} %changelog -* Sat Jul 19 2008 Tim Jackson 0.3.8-1 +* Sat Jul 19 2008 Tim Jackson 0.3.8-1.fc8.1 - Update to version 0.3.8 * Sat Sep 09 2006 Tim Jackson 0.3.7-2 From 14d5b94b7ac6e6d6ac7748544b857d3d94225cc9 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:27:02 +0000 Subject: [PATCH 5/6] 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 a47d325..3ff7b5e 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := altermime 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 141b41042f176fa9bef2fbd92f61f4c62bfda52f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:46:35 +0000 Subject: [PATCH 6/6] 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 3ff7b5e..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: altermime -# $Id$ -NAME := altermime -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 e9e7ccd..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-8