From a67b1b240c85d61184d37ba3301f36701c6e00ba Mon Sep 17 00:00:00 2001 From: Mohamed El Morabity Date: Thu, 19 Sep 2019 11:34:36 +0200 Subject: [PATCH 1/2] First import --- .gitignore | 1 + blacken-init.el | 11 ++++++++++ emacs-blacken.spec | 55 ++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 68 insertions(+) create mode 100644 .gitignore create mode 100644 blacken-init.el create mode 100644 emacs-blacken.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8bc85d5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/emacs-blacken-1874018.tar.gz diff --git a/blacken-init.el b/blacken-init.el new file mode 100644 index 0000000..c84e9a2 --- /dev/null +++ b/blacken-init.el @@ -0,0 +1,11 @@ +(autoload 'blacken-buffer "blacken" "\ +Try to blacken the current buffer. + +Show black output, if black exit abnormally and DISPLAY is t. + +\(fn &optional DISPLAY)" t nil) + +(autoload 'blacken-mode "blacken" "\ +Automatically run black before saving. + +\(fn &optional ARG)" t nil) diff --git a/emacs-blacken.spec b/emacs-blacken.spec new file mode 100644 index 0000000..befb33e --- /dev/null +++ b/emacs-blacken.spec @@ -0,0 +1,55 @@ +%global pkg blacken + +%global commit 1874018ae242176d0780cdcd0109e8f9a123a914 +%global shortcommit %(c=%{commit}; echo ${c:0:7}) +%global commitdate 20190521 + +Name: emacs-%{pkg} +Version: 0 +Release: 0.1.%{commitdate}git%{shortcommit}%{?dist} +Summary: Python Black for Emacs + +License: GPLv3+ +URL: https://github.com/proofit404/%{pkg} +Source0: %{url}/archive/%{commit}/%{name}-%{shortcommit}.tar.gz +Source1: %{pkg}-init.el + +BuildRequires: emacs +Requires: emacs(bin) >= %{_emacs_version} +Requires: python3-black +BuildArch: noarch + +%description +Blacken uses black to format a Python buffer. It can be called explicitly on a +certain buffer, but more conveniently, a minor-mode 'blacken-mode' is provided +that turns on automatically running black on a buffer before saving. + +To automatically format all Python buffers before saving, add the function +blacken-mode to python-mode-hook: + + (add-hook 'python-mode-hook 'blacken-mode) + + +%prep +%autosetup -n %{pkg}-%{commit} + + +%build +%{_emacs_bytecompile} %{pkg}.el + + +%install +install -dm 0755 $RPM_BUILD_ROOT%{_emacs_sitelispdir}/%{pkg}/ +install -pm 0644 %{pkg}.el* -t $RPM_BUILD_ROOT%{_emacs_sitelispdir}/%{pkg}/ + +install -Dpm 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_emacs_sitestartdir}/%{pkg}-init.el + + +%files +%{_emacs_sitelispdir}/%{pkg}/ +%{_emacs_sitestartdir}/*.el + + +%changelog +* Mon Sep 02 2019 Mohamed El Morabity - 0-0.1.20190521git1874018 +- Initial RPM release diff --git a/sources b/sources new file mode 100644 index 0000000..d4009d3 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (emacs-blacken-1874018.tar.gz) = c5446cd103d5855b2c12ce0120adf6a43c03bf1c6636a8120f15357117b97ebc82df03dcfc492d353235fdf7bf1c90db30937cdf0c45b64681eebf365790c77d From 24120ec3c6ac562654dbbdf2d4649cd680d5e476 Mon Sep 17 00:00:00 2001 From: Mohamed El Morabity Date: Tue, 1 Sep 2020 17:31:22 +0200 Subject: [PATCH 2/2] New upstream + update to latest snapshot --- .gitignore | 1 + blacken-init.el | 5 +++++ emacs-blacken.spec | 13 +++++++++---- sources | 2 +- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 8bc85d5..adb6e4f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /emacs-blacken-1874018.tar.gz +/emacs-blacken-784da60.tar.gz diff --git a/blacken-init.el b/blacken-init.el index c84e9a2..67a47e1 100644 --- a/blacken-init.el +++ b/blacken-init.el @@ -8,4 +8,9 @@ Show black output, if black exit abnormally and DISPLAY is t. (autoload 'blacken-mode "blacken" "\ Automatically run black before saving. +If called interactively, enable Blacken mode if ARG is positive, +and disable it if ARG is zero or negative. If called from Lisp, +also enable the mode if ARG is omitted or nil, and toggle it if +ARG is `toggle'; disable the mode otherwise. + \(fn &optional ARG)" t nil) diff --git a/emacs-blacken.spec b/emacs-blacken.spec index befb33e..1efcf41 100644 --- a/emacs-blacken.spec +++ b/emacs-blacken.spec @@ -1,16 +1,16 @@ %global pkg blacken -%global commit 1874018ae242176d0780cdcd0109e8f9a123a914 +%global commit 784da60033fe3743336d1da0f33239f1bf514266 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commitdate 20190521 +%global commitdate 20200626 Name: emacs-%{pkg} Version: 0 -Release: 0.1.%{commitdate}git%{shortcommit}%{?dist} +Release: 0.2.%{commitdate}git%{shortcommit}%{?dist} Summary: Python Black for Emacs License: GPLv3+ -URL: https://github.com/proofit404/%{pkg} +URL: https://github.com/pythonic-emacs/%{pkg} Source0: %{url}/archive/%{commit}/%{name}-%{shortcommit}.tar.gz Source1: %{pkg}-init.el @@ -46,10 +46,15 @@ install -Dpm 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_emacs_sitestartdir}/%{pkg}-init.e %files +%doc README.md %{_emacs_sitelispdir}/%{pkg}/ %{_emacs_sitestartdir}/*.el %changelog +* Tue Sep 01 2020 Mohamed El Morabity - 0-0.2.20200626git784da60 +- Switch to new upstream +- Update to latest snapshot + * Mon Sep 02 2019 Mohamed El Morabity - 0-0.1.20190521git1874018 - Initial RPM release diff --git a/sources b/sources index d4009d3..f0491b1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (emacs-blacken-1874018.tar.gz) = c5446cd103d5855b2c12ce0120adf6a43c03bf1c6636a8120f15357117b97ebc82df03dcfc492d353235fdf7bf1c90db30937cdf0c45b64681eebf365790c77d +SHA512 (emacs-blacken-784da60.tar.gz) = 6d921edadbb930078b32f807ae4790787b28ebe3febd7fd1f559a79866239f02cc26359b0227fa7490033b6b1eed64e3337f7e8a332e287b3449ac4f32b76c9d