Date: Wednesday, January 25, 2023 @ 17:03:03
  Author: blakkheim
Revision: 1388253

archrelease: copy trunk to community-x86_64

Added:
  seamonkey/repos/community-x86_64/PKGBUILD
    (from rev 1388252, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/community-x86_64/keys/
  seamonkey/repos/community-x86_64/mozconfig
    (from rev 1388252, seamonkey/trunk/mozconfig)
  seamonkey/repos/community-x86_64/seamonkey.install
    (from rev 1388252, seamonkey/trunk/seamonkey.install)
Deleted:
  seamonkey/repos/community-x86_64/PKGBUILD
  seamonkey/repos/community-x86_64/keys/
  seamonkey/repos/community-x86_64/mozconfig
  seamonkey/repos/community-x86_64/seamonkey.install

-------------------+
 PKGBUILD          |  182 ++++++++++++++++++++++++++--------------------------
 mozconfig         |  106 +++++++++++++++---------------
 seamonkey.install |   26 +++----
 3 files changed, 157 insertions(+), 157 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-01-25 17:02:24 UTC (rev 1388252)
+++ PKGBUILD    2023-01-25 17:03:03 UTC (rev 1388253)
@@ -1,91 +0,0 @@
-# Maintainer: Kyle Keen <[email protected]>
-
-pkgname=seamonkey
-pkgver=2.53.14
-pkgrel=2
-pkgdesc="SeaMonkey internet suite"
-arch=('x86_64')
-license=('MPL')
-depends=('dbus-glib' 'gtk3' 'hunspell' 'icu'
-         'libevent' 'libpulse' 'libvpx' 'libxt' 'mime-types'
-         'nss' 'sqlite' 'startup-notification')
-makedepends=('autoconf2.13' 'clang' 'imake' 'llvm' 'mesa' 'python'
-             'rustup' 'yasm' 'unzip' 'zip' 'nasm' 'cbindgen')
-optdepends=('networkmanager: Location detection via available WiFi networks'
-           'libnotify: Notification integration'
-           'pulseaudio: Audio support')
-_python2_pkgver=2.7.18
-url="https://www.seamonkey-project.org/";
-source=("https://archive.mozilla.org/pub/seamonkey/releases/$pkgver/source/seamonkey-$pkgver.source.tar.xz";
-        "mozconfig"
-        
"https://www.python.org/ftp/python/$_python2_pkgver/Python-$_python2_pkgver.tar.xz"{,.asc})
-sha256sums=('a1852db8be95a490df134d04508dd9c834f88af8ba43e2f2d5523ac1378e47f7'
-            '05bbf05f6a2f060ba3b69a420d57e95766880869a3e416cb05f60894bce1213b'
-            'b62c0e7937551d0cc02b8fd5cb0f544f9405bafc9a54d3808ed4594812edef43'
-            'SKIP')
-validpgpkeys=('C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF')  # Benjamin Peterson
-install="$pkgname.install"
-options=(!lto)
-
-# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact [email protected] for
-# more information.
-_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
-
-# Mozilla API keys (see https://location.services.mozilla.com/api)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact [email protected] for
-# more information.
-_mozilla_api_key=e05d56db0a694edc8b5aaebda3f2db6a
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  cp ../mozconfig .mozconfig
-
-  # Build failure with rust 1.63.0 
https://bugzilla.mozilla.org/show_bug.cgi?id=1783784
-  rustup toolchain install 1.62.0
-
-  echo -n "$_google_api_key" > google-api-key
-  echo -n "$_mozilla_api_key" > mozilla-api-key
-
-  cat >> .mozconfig <<EOF
-  ac_add_options 
--with-google-location-service-api-keyfile=${PWD@Q}/google-api-key
-  ac_add_options --with-google-safebrowsing-api-keyfile=${PWD@Q}/google-api-key
-  ac_add_options --with-mozilla-api-keyfile=${PWD@Q}/mozilla-api-key
-EOF
-}
-
-build() {
-  #Python 2 is EOL https://bugzilla.mozilla.org/show_bug.cgi?id=1756371
-  cd "Python-$_python2_pkgver"
-  ./configure --prefix=/usr \
-              --disable-optimizations \
-              --without-lto \
-              --without-ensurepip
-  DESTDIR="$srcdir"/fakeinstall make install
-  cd ..
-  export PATH="$PWD/fakeinstall/usr/bin:$PATH"
-  cd "$pkgname-$pkgver"
-
-  ./mach build
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  DESTDIR="$pkgdir" INSTALL_SDK= ./mach install
-
-  rm -rf "$pkgdir"/usr/lib/seamonkey/{dictionaries,hyphenation}
-  ln -s /usr/share/hunspell "$pkgdir/usr/lib/seamonkey/dictionaries"
-  ln -s /usr/share/hyphen "$pkgdir/usr/lib/seamonkey/hyphenation"
-
-  install -Dm644 comm/suite/branding/seamonkey/default128.png \
-          "$pkgdir/usr/share/pixmaps/seamonkey.png"
-
-  install -Dm644 toolkit/mozapps/installer/linux/rpm/mozilla.desktop \
-                "$pkgdir/usr/share/applications/seamonkey.desktop"
-  sed -i 's/@MOZ_APP_DISPLAYNAME@/SeaMonkey internet suite/' \
-                "$pkgdir/usr/share/applications/seamonkey.desktop"
-  sed -i 's/@MOZ_APP_NAME@/seamonkey/' 
"$pkgdir/usr/share/applications/seamonkey.desktop"
-}

Copied: seamonkey/repos/community-x86_64/PKGBUILD (from rev 1388252, 
seamonkey/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-01-25 17:03:03 UTC (rev 1388253)
@@ -0,0 +1,91 @@
+# Maintainer: Kyle Keen <[email protected]>
+
+pkgname=seamonkey
+pkgver=2.53.15
+pkgrel=1
+pkgdesc="SeaMonkey internet suite"
+arch=('x86_64')
+license=('MPL')
+depends=('dbus-glib' 'gtk3' 'hunspell' 'icu'
+         'libevent' 'libpulse' 'libvpx' 'libxt' 'mime-types'
+         'nss' 'sqlite' 'startup-notification')
+makedepends=('autoconf2.13' 'clang' 'imake' 'llvm' 'mesa' 'python'
+             'rustup' 'yasm' 'unzip' 'zip' 'nasm' 'cbindgen')
+optdepends=('networkmanager: Location detection via available WiFi networks'
+           'libnotify: Notification integration'
+           'pulseaudio: Audio support')
+_python2_pkgver=2.7.18
+url="https://www.seamonkey-project.org/";
+source=("https://archive.mozilla.org/pub/seamonkey/releases/$pkgver/source/seamonkey-$pkgver.source.tar.xz";
+        "mozconfig"
+        
"https://www.python.org/ftp/python/$_python2_pkgver/Python-$_python2_pkgver.tar.xz"{,.asc})
+sha256sums=('04a9dcd57217b1c630815b10d07e1865db14339b04930ec09d521733d6e8ec3f'
+            '05bbf05f6a2f060ba3b69a420d57e95766880869a3e416cb05f60894bce1213b'
+            'b62c0e7937551d0cc02b8fd5cb0f544f9405bafc9a54d3808ed4594812edef43'
+            'SKIP')
+validpgpkeys=('C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF')  # Benjamin Peterson
+install="$pkgname.install"
+options=(!lto)
+
+# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact [email protected] for
+# more information.
+_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
+
+# Mozilla API keys (see https://location.services.mozilla.com/api)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact [email protected] for
+# more information.
+_mozilla_api_key=e05d56db0a694edc8b5aaebda3f2db6a
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cp ../mozconfig .mozconfig
+
+  # Build failure with rust 1.63.0 
https://bugzilla.mozilla.org/show_bug.cgi?id=1783784
+  rustup toolchain install 1.62.0
+
+  echo -n "$_google_api_key" > google-api-key
+  echo -n "$_mozilla_api_key" > mozilla-api-key
+
+  cat >> .mozconfig <<EOF
+  ac_add_options 
--with-google-location-service-api-keyfile=${PWD@Q}/google-api-key
+  ac_add_options --with-google-safebrowsing-api-keyfile=${PWD@Q}/google-api-key
+  ac_add_options --with-mozilla-api-keyfile=${PWD@Q}/mozilla-api-key
+EOF
+}
+
+build() {
+  #Python 2 is EOL https://bugzilla.mozilla.org/show_bug.cgi?id=1756371
+  cd "Python-$_python2_pkgver"
+  ./configure --prefix=/usr \
+              --disable-optimizations \
+              --without-lto \
+              --without-ensurepip
+  DESTDIR="$srcdir"/fakeinstall make install
+  cd ..
+  export PATH="$PWD/fakeinstall/usr/bin:$PATH"
+  cd "$pkgname-$pkgver"
+
+  ./mach build
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  DESTDIR="$pkgdir" INSTALL_SDK= ./mach install
+
+  rm -rf "$pkgdir"/usr/lib/seamonkey/{dictionaries,hyphenation}
+  ln -s /usr/share/hunspell "$pkgdir/usr/lib/seamonkey/dictionaries"
+  ln -s /usr/share/hyphen "$pkgdir/usr/lib/seamonkey/hyphenation"
+
+  install -Dm644 comm/suite/branding/seamonkey/default128.png \
+          "$pkgdir/usr/share/pixmaps/seamonkey.png"
+
+  install -Dm644 toolkit/mozapps/installer/linux/rpm/mozilla.desktop \
+                "$pkgdir/usr/share/applications/seamonkey.desktop"
+  sed -i 's/@MOZ_APP_DISPLAYNAME@/SeaMonkey internet suite/' \
+                "$pkgdir/usr/share/applications/seamonkey.desktop"
+  sed -i 's/@MOZ_APP_NAME@/seamonkey/' 
"$pkgdir/usr/share/applications/seamonkey.desktop"
+}

Deleted: mozconfig
===================================================================
--- mozconfig   2023-01-25 17:02:24 UTC (rev 1388252)
+++ mozconfig   2023-01-25 17:03:03 UTC (rev 1388253)
@@ -1,53 +0,0 @@
-ac_add_options --enable-application=comm/suite
-
-ac_add_options --prefix=/usr
-ac_add_options --libdir=/usr/lib
-ac_add_options --disable-elf-hack
-
-# System libraries
-ac_add_options --with-system-nspr
-ac_add_options --with-system-nss
-ac_add_options --with-system-jpeg
-ac_add_options --with-system-zlib
-ac_add_options --with-system-bz2
-#ac_add_options --with-system-png
-ac_add_options --with-system-libevent
-#ac_add_options --with-system-libvpx
-ac_add_options --enable-system-hunspell
-#ac_add_options --enable-system-sqlite
-ac_add_options --enable-system-ffi
-#ac_add_options --enable-system-cairo
-ac_add_options --enable-system-pixman
-ac_add_options --disable-gconf
-ac_add_options --with-system-icu
-
-# Features
-ac_add_options --enable-startup-notification
-#ac_add_options --enable-safe-browsing
-#ac_add_options --enable-gio
-#ac_add_options --disable-gstreamer
-ac_add_options --enable-pulseaudio
-
-ac_add_options --enable-calendar
-ac_add_options --enable-irc
-ac_add_options --enable-dominspector
-
-ac_add_options --enable-optimize="-O2"
-ac_add_options --enable-strip
-ac_add_options --enable-install-strip
-
-#ac_add_options --disable-gnomevfs
-ac_add_options --disable-crashreporter
-ac_add_options --disable-updater
-ac_add_options --disable-tests
-#ac_add_options --disable-installer
-
-ac_add_options --disable-webrender
-ac_add_options --disable-stylo
-
-export MOZILLA_OFFICIAL=1
-export CC=clang
-export CXX=clang++
-export AR=llvm-ar
-export NM=llvm-nm
-export RANLIB=llvm-ranlib

Copied: seamonkey/repos/community-x86_64/mozconfig (from rev 1388252, 
seamonkey/trunk/mozconfig)
===================================================================
--- mozconfig                           (rev 0)
+++ mozconfig   2023-01-25 17:03:03 UTC (rev 1388253)
@@ -0,0 +1,53 @@
+ac_add_options --enable-application=comm/suite
+
+ac_add_options --prefix=/usr
+ac_add_options --libdir=/usr/lib
+ac_add_options --disable-elf-hack
+
+# System libraries
+ac_add_options --with-system-nspr
+ac_add_options --with-system-nss
+ac_add_options --with-system-jpeg
+ac_add_options --with-system-zlib
+ac_add_options --with-system-bz2
+#ac_add_options --with-system-png
+ac_add_options --with-system-libevent
+#ac_add_options --with-system-libvpx
+ac_add_options --enable-system-hunspell
+#ac_add_options --enable-system-sqlite
+ac_add_options --enable-system-ffi
+#ac_add_options --enable-system-cairo
+ac_add_options --enable-system-pixman
+ac_add_options --disable-gconf
+ac_add_options --with-system-icu
+
+# Features
+ac_add_options --enable-startup-notification
+#ac_add_options --enable-safe-browsing
+#ac_add_options --enable-gio
+#ac_add_options --disable-gstreamer
+ac_add_options --enable-pulseaudio
+
+ac_add_options --enable-calendar
+ac_add_options --enable-irc
+ac_add_options --enable-dominspector
+
+ac_add_options --enable-optimize="-O2"
+ac_add_options --enable-strip
+ac_add_options --enable-install-strip
+
+#ac_add_options --disable-gnomevfs
+ac_add_options --disable-crashreporter
+ac_add_options --disable-updater
+ac_add_options --disable-tests
+#ac_add_options --disable-installer
+
+ac_add_options --disable-webrender
+ac_add_options --disable-stylo
+
+export MOZILLA_OFFICIAL=1
+export CC=clang
+export CXX=clang++
+export AR=llvm-ar
+export NM=llvm-nm
+export RANLIB=llvm-ranlib

Deleted: seamonkey.install
===================================================================
--- seamonkey.install   2023-01-25 17:02:24 UTC (rev 1388252)
+++ seamonkey.install   2023-01-25 17:03:03 UTC (rev 1388253)
@@ -1,13 +0,0 @@
-post_upgrade() {
-    # This currently triggers every time the new version has a pkgver (not 
pkgrel)
-    # greater than the previous version. Rationale: upstream's prominent 
release
-    # notes as described here: 
https://bbs.archlinux.org/viewtopic.php?pid=1903689#p1903689
-    if (( $(vercmp $2 ${1%-*}) < 0 )); then
-        cat << __EOF__
-SeaMonkey ${1%-*} makes changes to your profile that can't be reverted in case
-you want to go back to a previous version of SeaMonkey. Make a full backup of
-your profile and thoroughly read and follow the Release Notes at
-https://www.seamonkey-project.org/releases/seamonkey${1%-*}.";
-__EOF__
-    fi
-}

Copied: seamonkey/repos/community-x86_64/seamonkey.install (from rev 1388252, 
seamonkey/trunk/seamonkey.install)
===================================================================
--- seamonkey.install                           (rev 0)
+++ seamonkey.install   2023-01-25 17:03:03 UTC (rev 1388253)
@@ -0,0 +1,13 @@
+post_upgrade() {
+    # This currently triggers every time the new version has a pkgver (not 
pkgrel)
+    # greater than the previous version. Rationale: upstream's prominent 
release
+    # notes as described here: 
https://bbs.archlinux.org/viewtopic.php?pid=1903689#p1903689
+    if (( $(vercmp $2 ${1%-*}) < 0 )); then
+        cat << __EOF__
+SeaMonkey ${1%-*} makes changes to your profile that can't be reverted in case
+you want to go back to a previous version of SeaMonkey. Make a full backup of
+your profile and thoroughly read and follow the Release Notes at
+https://www.seamonkey-project.org/releases/seamonkey${1%-*}.";
+__EOF__
+    fi
+}

Reply via email to