From 256360b9eba572aad344953690b3458d7b6a43e9 Mon Sep 17 00:00:00 2001 From: Sebastian Dziallas Date: Thu, 22 Oct 2009 12:05:47 +0000 Subject: [PATCH 1/7] initial import --- .cvsignore | 1 + import.log | 1 + sources | 1 + typepad-motion.spec | 57 +++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 60 insertions(+) create mode 100644 import.log create mode 100644 typepad-motion.spec diff --git a/.cvsignore b/.cvsignore index e69de29..64cc2b7 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +typepad-motion-1.0.1.tar.gz diff --git a/import.log b/import.log new file mode 100644 index 0000000..9a5b663 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +typepad-motion-1_0_1-3_fc11:F-12:typepad-motion-1.0.1-3.fc11.src.rpm:1256213110 diff --git a/sources b/sources index e69de29..b2fdf4b 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +dea340c424ae92f7145596bb538ffc8d typepad-motion-1.0.1.tar.gz diff --git a/typepad-motion.spec b/typepad-motion.spec new file mode 100644 index 0000000..c08fbd6 --- /dev/null +++ b/typepad-motion.spec @@ -0,0 +1,57 @@ +%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} + +Name: typepad-motion +Version: 1.0.1 +Release: 3%{?dist} +Summary: A microblogging application for building online communities + +Group: Applications/Publishing +License: BSD +URL: http://developer.typepad.com/motion/create-motion.html +Source0: http://pypi.python.org/packages/source/t/%{name}/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildArch: noarch +BuildRequires: Django python-devel python-setuptools-devel +Requires: Django django-flash django-typepad python-batchhttp python-feedparser python-httplib2 +Requires: python-oauth python-remoteobjects python-simplejson python-typepad sqlite + +%description +A Motion site is a place where people come together, on the Web, to share +thoughts, interesting links, favorite photos, great music and exciting +videos. Build Motion as a stand-alone community or integrate it into your +existing website as a flexible community portal. + + +%prep +%setup -q + + +%build +python setup.py build + + +%install +rm -rf $RPM_BUILD_ROOT +python setup.py install --skip-build --root $RPM_BUILD_ROOT + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc LICENSE +%{python_sitelib}/* + + +%changelog +* Wed Oct 07 2009 Sebastian Dziallas - 1.0.1-3 +- add sqlite dependency + +* Tue Oct 06 2009 Sebastian Dziallas - 1.0.1-2 +- update package requirements + +* Tue Oct 06 2009 Sebastian Dziallas - 1.0.1-1 +- initial packaging From e478887ddf2adf1ff4c80f099414178a4701c3e6 Mon Sep 17 00:00:00 2001 From: Sebastian Dziallas Date: Wed, 18 Nov 2009 12:39:10 +0000 Subject: [PATCH 2/7] update to new upstream release --- .cvsignore | 2 +- sources | 2 +- typepad-motion.spec | 7 +++++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.cvsignore b/.cvsignore index 64cc2b7..770734f 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -typepad-motion-1.0.1.tar.gz +typepad-motion-1.0.2.tar.gz diff --git a/sources b/sources index b2fdf4b..cfa271d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -dea340c424ae92f7145596bb538ffc8d typepad-motion-1.0.1.tar.gz +5e87fb777d779e8e4b129d3d1e7fe089 typepad-motion-1.0.2.tar.gz diff --git a/typepad-motion.spec b/typepad-motion.spec index c08fbd6..43b3255 100644 --- a/typepad-motion.spec +++ b/typepad-motion.spec @@ -1,8 +1,8 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: typepad-motion -Version: 1.0.1 -Release: 3%{?dist} +Version: 1.0.2 +Release: 1%{?dist} Summary: A microblogging application for building online communities Group: Applications/Publishing @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Nov 18 2009 Sebastian Dziallas - 1.0.2-1 +- update to new upstream release + * Wed Oct 07 2009 Sebastian Dziallas - 1.0.1-3 - add sqlite dependency From cf014343df83fd3df020cedfff593948918fa4df Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:34:11 +0000 Subject: [PATCH 3/7] 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 3871e8e..adb37ae 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := typepad-motion 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 9feafc7fbe3ce07cf1d4a39daad8be8d79e6d7c8 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 8 May 2010 02:26:27 +0000 Subject: [PATCH 4/7] Initialize branch EL-6 for typepad-motion --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..46381b9 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +EL-6 From 8c309952da5231256c5c92ae5d033034e28d27bf Mon Sep 17 00:00:00 2001 From: Sebastian Dziallas Date: Fri, 2 Jul 2010 16:34:18 +0000 Subject: [PATCH 5/7] new upstream release --- .cvsignore | 2 +- sources | 2 +- typepad-motion.spec | 7 +++++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.cvsignore b/.cvsignore index 770734f..e471991 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -typepad-motion-1.0.2.tar.gz +typepad-motion-1.1.3.tar.gz diff --git a/sources b/sources index cfa271d..f12d97d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -5e87fb777d779e8e4b129d3d1e7fe089 typepad-motion-1.0.2.tar.gz +83de36d352d7977331d092ab0f854c80 typepad-motion-1.1.3.tar.gz diff --git a/typepad-motion.spec b/typepad-motion.spec index 43b3255..e3bb4f3 100644 --- a/typepad-motion.spec +++ b/typepad-motion.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: typepad-motion -Version: 1.0.2 +Version: 1.1.3 Release: 1%{?dist} Summary: A microblogging application for building online communities @@ -42,11 +42,14 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) -%doc LICENSE +%doc LICENSE README.rst %{python_sitelib}/* %changelog +* Fri Jul 02 2010 Sebastian Dziallas - 1.1.3-1 +- new upstream release + * Wed Nov 18 2009 Sebastian Dziallas - 1.0.2-1 - update to new upstream release From 75975dd17eece461b89ceaf7e49ba0f6e13b2dd7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:35:18 +0000 Subject: [PATCH 6/7] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - import.log | 1 - 4 files changed, 23 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch delete mode 100644 import.log 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 adb37ae..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: typepad-motion -# $Id$ -NAME := typepad-motion -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 46381b9..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -EL-6 diff --git a/import.log b/import.log deleted file mode 100644 index 9a5b663..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -typepad-motion-1_0_1-3_fc11:F-12:typepad-motion-1.0.1-3.fc11.src.rpm:1256213110 From 338cc737d15bf7a252e87eb92d7893921a7d2a82 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Sat, 20 Dec 2014 18:40:48 +0100 Subject: [PATCH 7/7] 2014-12-20: Retired because of broken deps: unresolved dependencies for typepad-motion-1.1.3-1.el6.noarch: django-typepad --- .gitignore | 1 - dead.package | 4 +++ sources | 1 - typepad-motion.spec | 63 --------------------------------------------- 4 files changed, 4 insertions(+), 65 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 sources delete mode 100644 typepad-motion.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index e471991..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -typepad-motion-1.1.3.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..10df179 --- /dev/null +++ b/dead.package @@ -0,0 +1,4 @@ +2014-12-20: Retired because of broken deps: +unresolved dependencies for typepad-motion-1.1.3-1.el6.noarch: +django-typepad + diff --git a/sources b/sources deleted file mode 100644 index f12d97d..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -83de36d352d7977331d092ab0f854c80 typepad-motion-1.1.3.tar.gz diff --git a/typepad-motion.spec b/typepad-motion.spec deleted file mode 100644 index e3bb4f3..0000000 --- a/typepad-motion.spec +++ /dev/null @@ -1,63 +0,0 @@ -%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} - -Name: typepad-motion -Version: 1.1.3 -Release: 1%{?dist} -Summary: A microblogging application for building online communities - -Group: Applications/Publishing -License: BSD -URL: http://developer.typepad.com/motion/create-motion.html -Source0: http://pypi.python.org/packages/source/t/%{name}/%{name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildArch: noarch -BuildRequires: Django python-devel python-setuptools-devel -Requires: Django django-flash django-typepad python-batchhttp python-feedparser python-httplib2 -Requires: python-oauth python-remoteobjects python-simplejson python-typepad sqlite - -%description -A Motion site is a place where people come together, on the Web, to share -thoughts, interesting links, favorite photos, great music and exciting -videos. Build Motion as a stand-alone community or integrate it into your -existing website as a flexible community portal. - - -%prep -%setup -q - - -%build -python setup.py build - - -%install -rm -rf $RPM_BUILD_ROOT -python setup.py install --skip-build --root $RPM_BUILD_ROOT - - -%clean -rm -rf $RPM_BUILD_ROOT - - -%files -%defattr(-,root,root,-) -%doc LICENSE README.rst -%{python_sitelib}/* - - -%changelog -* Fri Jul 02 2010 Sebastian Dziallas - 1.1.3-1 -- new upstream release - -* Wed Nov 18 2009 Sebastian Dziallas - 1.0.2-1 -- update to new upstream release - -* Wed Oct 07 2009 Sebastian Dziallas - 1.0.1-3 -- add sqlite dependency - -* Tue Oct 06 2009 Sebastian Dziallas - 1.0.1-2 -- update package requirements - -* Tue Oct 06 2009 Sebastian Dziallas - 1.0.1-1 -- initial packaging