[emacs-identica-mode/f16] First release

Shakthi Kannan shakthimaan at fedoraproject.org
Mon Sep 3 06:50:13 UTC 2012


commit 24109e77bd4d60797abc24710f4067d7afa45e92
Author: Shakthi Kannan <skannan at redhat.com>
Date:   Mon Sep 3 12:13:03 2012 +0530

    First release

 .gitignore               |    1 +
 emacs-identica-mode.spec |   97 ++++++++++++++++++++++++++++++++++++++++++++++
 identica-mode-init.el    |    3 +
 sources                  |    1 +
 4 files changed, 102 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..c2b7839 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/identica-mode-1.2.1.tar.gz
diff --git a/emacs-identica-mode.spec b/emacs-identica-mode.spec
new file mode 100644
index 0000000..52c9a41
--- /dev/null
+++ b/emacs-identica-mode.spec
@@ -0,0 +1,97 @@
+%global pkg identica-mode
+%global pkgname Emacs-identica-mode
+
+Name:		emacs-%{pkg}
+Version:	1.2.1
+Release:	3%{?dist}
+Summary:	Identica mode for Emacs
+
+
+Group:		Applications/Editors
+License:	GPLv2+ and GFDL
+URL:		https://savannah.nongnu.org/projects/identica-mode/
+Source0:	http://git.savannah.gnu.org/cgit/%{pkg}.git/snapshot/%{pkg}-%{version}.tar.gz
+Source1:	%{pkg}-init.el
+
+BuildArch:	noarch
+BuildRequires:	emacs
+BuildRequires:	emacs-el
+BuildRequires:	emacs-bbdb 
+BuildRequires:	texinfo
+Requires:	emacs(bin) >= %{_emacs_version}
+Requires(post):	info
+Requires(preun):info
+
+		
+%description
+This package provides identica mode for Emacs.
+Identica is a free software micro-blogging service, 
+similar to Twitter.
+
+
+%package el
+Summary:	Source files for %{pkgname} under GNU Emacs
+Group:		Applications/Editors
+Requires:	%{name} = %{version}-%{release}
+
+
+%description el
+This package contains the elisp source files for 
+use with %{pkgname}.
+
+
+%prep
+%setup -q -n %{pkg}-%{version}
+%{__chmod} 644 COPYING
+
+%build
+%{_emacs_bytecompile} *.el
+makeinfo doc/fdl.texi -o doc/COPYING.FDL
+
+%install
+%{__install} -pm 755 -d %{buildroot}%{_emacs_sitelispdir}/%{pkg}/
+%{__install} -pm 755 -d %{buildroot}%{_emacs_sitestartdir}	
+%{__install} -pm 644 %{pkg}.* %{buildroot}%{_emacs_sitelispdir}/%{pkg}
+%{__install} -pm 644 %{SOURCE1} %{buildroot}%{_emacs_sitestartdir}
+%{__install} -pm 755 -d %{buildroot}%{_infodir}/
+%{__install} -pm 644 doc/%{pkg}.texi %{buildroot}%{_infodir}/
+
+%clean
+
+%post
+/sbin/install-info --entry=%{pkg} %{_infodir}/%{pkg}.texi.gz %{_infodir}/dir || :
+
+%preun
+if [ $1 = 0 ] ; then
+  /sbin/install-info  --delete %{_infodir}/%{pkg}.texi.gz %{_infodir}/dir || :
+fi
+
+%files
+%doc COPYING doc/COPYING.FDL
+%{_emacs_sitelispdir}/%{pkg}/*.elc
+%{_emacs_sitestartdir}/%{pkg}-init.el
+%{_infodir}/%{pkg}.texi.gz
+%dir %{_emacs_sitelispdir}/%{pkg}
+
+
+
+%files el
+%{_emacs_sitelispdir}/%{pkg}/*.el
+
+
+%changelog
+* Mon Sep 03 2012 Shakthi Kannan <shakthimaan [AT] fedoraproject dot org> - 1.2.1-3
+- Removed defattr
+- Removed rm buildroot in clean and install section
+
+* Sun Jun 12 2011 Arun SAG <sagarun [AT] gmail dot com> - 1.1-1
+- Updated to version 1.1
+
+* Wed Nov 17 2010 Arun SAG <sagarun [AT] gmail dot com> - 1.0-1
+- Updated to the latest version
+
+* Sat Dec 14 2009 Arun SAG <sagarun [AT] gmail dot com> - 0.8-2
+- Fixed spec file for clarity
+
+* Sun Nov 01 2009 Arun SAG <sagarun [AT] gmail dot com> - 0.8-1
+- Initial release 0.8-1
diff --git a/identica-mode-init.el b/identica-mode-init.el
new file mode 100644
index 0000000..0a1a3de
--- /dev/null
+++ b/identica-mode-init.el
@@ -0,0 +1,3 @@
+;; Init file for jabber plugin
+(add-to-list 'load-path "/usr/share/emacs/site-lisp/identica-mode/")
+(require 'identica-mode)
\ No newline at end of file
diff --git a/sources b/sources
index e69de29..c99bda2 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+7bf2dacdc825441e231ac8ee8f3a3ac1  identica-mode-1.2.1.tar.gz


More information about the scm-commits mailing list