[arch-commits] Commit in oxyromon/repos/community-x86_64 (3 files)

Maxime Gauduin alucryd at archlinux.org
Fri Mar 26 10:16:40 UTC 2021


    Date: Friday, March 26, 2021 @ 10:16:39
  Author: alucryd
Revision: 904470

archrelease: copy trunk to community-x86_64

Added:
  oxyromon/repos/community-x86_64/PKGBUILD
    (from rev 904469, oxyromon/trunk/PKGBUILD)
Deleted:
  oxyromon/repos/community-x86_64/PKGBUILD
  oxyromon/repos/community-x86_64/oxyromon-chdman-path.patch

----------------------------+
 PKGBUILD                   |  139 ++++++++++++++++++++-----------------------
 oxyromon-chdman-path.patch |   21 ------
 2 files changed, 66 insertions(+), 94 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-03-26 10:16:35 UTC (rev 904469)
+++ PKGBUILD	2021-03-26 10:16:39 UTC (rev 904470)
@@ -1,73 +0,0 @@
-# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
-
-pkgname=oxyromon
-pkgver=0.6.0
-pkgrel=1
-pkgdesc='Rusty ROM OrgaNizer'
-arch=(x86_64)
-url=https://github.com/alucryd/oxyromon
-license=(GPL3)
-depends=(
-  gcc-libs
-  glibc
-)
-makedepends=(
-  git
-  mame
-  maxcso
-  p7zip
-  rust
-)
-optdepends=(
-  'mame: CHD support'
-  'maxcso: CSO support'
-  'p7zip: 7Z and ZIP support'
-)
-_tag=bde32c31c83e12b18baefaf4182664b431dae16d
-source=(
-  git+https://github.com/alucryd/oxyromon.git?signed#tag=${_tag}
-  oxyromon-chdman-path.patch
-)
-validpgpkeys=('9437DD3815A7A9169E3D3946AFF5D95098BC6FF5') # Maxime Gauduin <alucryd at archlinux.org>
-b2sums=('SKIP'
-        '8cb8a37e11c521436c2e015367458219205ded84c404928cf74a5f75843b7903b420af6bc820ff809fd1fd8bd605185918393f140e1f66dd85c9a538698a9407')
-
-prepare() {
-  cargo fetch \
-    --locked \
-    --manifest-path oxyromon/Cargo.toml
-
-  cd oxyromon
-  patch -Np1 -i ../oxyromon-chdman-path.patch
-}
-
-pkgver() {
-  cd oxyromon
-
-  git describe --tags
-}
-
-build() {
-  cargo build \
-    --release \
-    --frozen \
-    --manifest-path oxyromon/Cargo.toml
-}
-
-check() {
-  cargo test \
-    --release \
-    --frozen \
-    --manifest-path oxyromon/Cargo.toml
-}
-
-package() {
-  cargo install \
-    --frozen \
-    --offline \
-    --no-track \
-    --path oxyromon \
-    --root "${pkgdir}"/usr
-}
-
-# vim: ts=2 sw=2 et:

Copied: oxyromon/repos/community-x86_64/PKGBUILD (from rev 904469, oxyromon/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-03-26 10:16:39 UTC (rev 904470)
@@ -0,0 +1,66 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+
+pkgname=oxyromon
+pkgver=0.6.0
+pkgrel=2
+pkgdesc='Rusty ROM OrgaNizer'
+arch=(x86_64)
+url=https://github.com/alucryd/oxyromon
+license=(GPL3)
+depends=(
+  gcc-libs
+  glibc
+)
+makedepends=(
+  git
+  mame-tools
+  maxcso
+  p7zip
+  rust
+)
+optdepends=(
+  'mame-tools: CHD support'
+  'maxcso: CSO support'
+  'p7zip: 7Z and ZIP support'
+)
+_tag=bde32c31c83e12b18baefaf4182664b431dae16d
+source=(git+https://github.com/alucryd/oxyromon.git?signed#tag=${_tag})
+validpgpkeys=(9437DD3815A7A9169E3D3946AFF5D95098BC6FF5) # Maxime Gauduin <alucryd at archlinux.org>
+b2sums=(SKIP)
+
+prepare() {
+  cargo fetch \
+    --locked \
+    --manifest-path oxyromon/Cargo.toml
+}
+
+pkgver() {
+  cd oxyromon
+
+  git describe --tags
+}
+
+build() {
+  cargo build \
+    --release \
+    --frozen \
+    --manifest-path oxyromon/Cargo.toml
+}
+
+check() {
+  cargo test \
+    --release \
+    --frozen \
+    --manifest-path oxyromon/Cargo.toml
+}
+
+package() {
+  cargo install \
+    --frozen \
+    --offline \
+    --no-track \
+    --path oxyromon \
+    --root "${pkgdir}"/usr
+}
+
+# vim: ts=2 sw=2 et:

Deleted: oxyromon-chdman-path.patch
===================================================================
--- oxyromon-chdman-path.patch	2021-03-26 10:16:35 UTC (rev 904469)
+++ oxyromon-chdman-path.patch	2021-03-26 10:16:39 UTC (rev 904470)
@@ -1,21 +0,0 @@
-diff '--color=auto' -rupN oxyromon.orig/src/chdman.rs oxyromon/src/chdman.rs
---- oxyromon.orig/src/chdman.rs	2021-03-25 16:24:40.030873441 +0100
-+++ oxyromon/src/chdman.rs	2021-03-25 16:25:32.009052878 +0100
-@@ -18,7 +18,7 @@ pub fn create_chd(cue_path: &PathBuf, pr
-     let mut chd_path = cue_path.clone();
-     chd_path.set_extension(CHD_EXTENSION);
- 
--    let output = Command::new("chdman")
-+    let output = Command::new("mame-chdman")
-         .arg("createcd")
-         .arg("-i")
-         .arg(cue_path)
-@@ -51,7 +51,7 @@ pub async fn extract_chd(
-     cue_name.push(CUE_EXTENSION);
-     let cue_path = directory.join(cue_name);
- 
--    let output = Command::new("chdman")
-+    let output = Command::new("mame-chdman")
-         .arg("extractcd")
-         .arg("-i")
-         .arg(chd_path)



More information about the arch-commits mailing list