Date: Friday, March 17, 2023 @ 22:29:34
Author: spupykin
Revision: 1421431
archrelease: copy trunk to community-any
Added:
emacs-haskell-mode/repos/community-any/PKGBUILD
(from rev 1421430, emacs-haskell-mode/trunk/PKGBUILD)
emacs-haskell-mode/repos/community-any/emacs-haskell-mode.install
(from rev 1421430, emacs-haskell-mode/trunk/emacs-haskell-mode.install)
Deleted:
emacs-haskell-mode/repos/community-any/PKGBUILD
emacs-haskell-mode/repos/community-any/emacs-haskell-mode.install
----------------------------+
PKGBUILD | 81 ++++++++++++++++++++++---------------------
emacs-haskell-mode.install | 22 +++++------
2 files changed, 54 insertions(+), 49 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-03-17 22:29:23 UTC (rev 1421430)
+++ PKGBUILD 2023-03-17 22:29:34 UTC (rev 1421431)
@@ -1,38 +0,0 @@
-# Maintainer: Sergej Pupykin <[email protected]>
-# Contributor: Gleidson <[email protected]>
-
-pkgname=emacs-haskell-mode
-pkgver=17.2
-pkgrel=2
-pkgdesc="Haskell mode package for Emacs"
-arch=(any)
-license=('GPL')
-url="https://github.com/haskell/haskell-mode"
-install=emacs-haskell-mode.install
-makedepends=('emacs')
-source=($pkgname-$pkgver.tar.gz::https://github.com/haskell/haskell-mode/archive/$pkgver.tar.gz)
-sha256sums=('2cd6a872c75a94ee129aab83e5c14536eba09c30afd728c79323f52a59411dbe')
-
-prepare() {
- cd "$srcdir"/haskell-mode-$pkgver
- sed -i 's|haskell-mode-pkg.el,|haskell-mode-pkg.el haskell-mode.el,|'
Makefile
-}
-
-build() {
- cd "$srcdir"/haskell-mode-$pkgver
- export EMACS=/usr/bin/emacs
- make
-}
-
-package() {
- cd "$srcdir"/haskell-mode-$pkgver
-
- install -dm0755 "$pkgdir"/usr/share/emacs/site-lisp/haskell-mode
- install -m0644 *.el -t "$pkgdir"/usr/share/emacs/site-lisp/haskell-mode
- cp -a build-$(emacs --version | head -n1 | cut -f3 -d' ') -t
"$pkgdir"/usr/share/emacs/site-lisp/haskell-mode/
-
- install -dm0755 "$pkgdir"/usr/share/doc/$pkgname
- install -m0644 NEWS README.md "$pkgdir"/usr/share/doc/$pkgname
-
- install -Dm0644 haskell-mode.info "$pkgdir"/usr/share/info/haskell-mode.info
-}
Copied: emacs-haskell-mode/repos/community-any/PKGBUILD (from rev 1421430,
emacs-haskell-mode/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-03-17 22:29:34 UTC (rev 1421431)
@@ -0,0 +1,43 @@
+# Maintainer: Sergej Pupykin <[email protected]>
+# Contributor: Gleidson <[email protected]>
+
+pkgname=emacs-haskell-mode
+pkgver=17.2
+pkgrel=3
+_commit=20d4e2300302a9af673e82d0185d3f489bfb0f59
+pkgdesc="Haskell mode package for Emacs"
+arch=(any)
+license=('GPL')
+url="https://github.com/haskell/haskell-mode"
+install=emacs-haskell-mode.install
+makedepends=('emacs')
+#source=($pkgname-$pkgver.tar.gz::https://github.com/haskell/haskell-mode/archive/$pkgver.tar.gz)
+source=($pkgname-${_commit}.tar.gz::https://github.com/haskell/haskell-mode/archive/${_commit}.tar.gz)
+sha256sums=('22b9f31c554bac1591ec52d2c459ae96ff89e076f5857ee29d03df1ead7ccb08')
+
+prepare() {
+# cd "$srcdir"/haskell-mode-$pkgver
+ cd "$srcdir"/haskell-mode-${_commit}
+ sed -i 's|haskell-mode-pkg.el,|haskell-mode-pkg.el haskell-mode.el,|'
Makefile
+}
+
+build() {
+# cd "$srcdir"/haskell-mode-$pkgver
+ cd "$srcdir"/haskell-mode-${_commit}
+ export EMACS=/usr/bin/emacs
+ make
+}
+
+package() {
+# cd "$srcdir"/haskell-mode-$pkgver
+ cd "$srcdir"/haskell-mode-${_commit}
+
+ install -dm0755 "$pkgdir"/usr/share/emacs/site-lisp/haskell-mode
+ install -m0644 *.el -t "$pkgdir"/usr/share/emacs/site-lisp/haskell-mode
+ cp -a build-$(emacs --version | head -n1 | cut -f3 -d' ') -t
"$pkgdir"/usr/share/emacs/site-lisp/haskell-mode/
+
+ install -dm0755 "$pkgdir"/usr/share/doc/$pkgname
+ install -m0644 NEWS README.md "$pkgdir"/usr/share/doc/$pkgname
+
+ install -Dm0644 haskell-mode.info "$pkgdir"/usr/share/info/haskell-mode.info
+}
Deleted: emacs-haskell-mode.install
===================================================================
--- emacs-haskell-mode.install 2023-03-17 22:29:23 UTC (rev 1421430)
+++ emacs-haskell-mode.install 2023-03-17 22:29:34 UTC (rev 1421431)
@@ -1,11 +0,0 @@
-post_install () {
- echo ""
- echo "==> Read the haskell-*.el files in
/usr/share/emacs/site-lisp/haskell-mode"
- echo "==> for information about how to configure your ~/.emacs"
- echo ""
-}
-
-post_upgrade () {
- post_install $1
-}
-
Copied: emacs-haskell-mode/repos/community-any/emacs-haskell-mode.install (from
rev 1421430, emacs-haskell-mode/trunk/emacs-haskell-mode.install)
===================================================================
--- emacs-haskell-mode.install (rev 0)
+++ emacs-haskell-mode.install 2023-03-17 22:29:34 UTC (rev 1421431)
@@ -0,0 +1,11 @@
+post_install () {
+ echo ""
+ echo "==> Read the haskell-*.el files in
/usr/share/emacs/site-lisp/haskell-mode"
+ echo "==> for information about how to configure your ~/.emacs"
+ echo ""
+}
+
+post_upgrade () {
+ post_install $1
+}
+