public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Remi Collet <remi@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/php-khanamiryan-qrcode-detector-decoder] rawhide: outdated and no more used
Date: Thu, 11 Jun 2026 13:37:57 GMT	[thread overview]
Message-ID: <178118507708.1.8824556329397840374.rpms-php-khanamiryan-qrcode-detector-decoder-ce6b55ae4d7e@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/php-khanamiryan-qrcode-detector-decoder
Branch : rawhide
Commit : ce6b55ae4d7e60672724cebc2ba1e2544e2cbf34
Author : Remi Collet <remi@fedoraproject.org>
Date   : 2026-06-11T15:37:52+02:00
Stats  : +1/-224 in 5 file(s)
URL    : https://src.fedoraproject.org/rpms/php-khanamiryan-qrcode-detector-decoder/c/ce6b55ae4d7e60672724cebc2ba1e2544e2cbf34?branch=rawhide

Log:
outdated and no more used

---
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index e8a80ad..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-/php-khanamiryan-qrcode-detector-decoder-1.0.2-a75482d.tar.gz
-/php-khanamiryan-qrcode-detector-decoder-1.0.3-89b57f2.tar.gz
-/php-khanamiryan-qrcode-detector-decoder-1.0.4-07fceef.tar.gz
-/php-khanamiryan-qrcode-detector-decoder-1.0.5-6c8c230.tar.gz
-/php-khanamiryan-qrcode-detector-decoder-1.0.5.1-b96163d.tar.gz
-/php-khanamiryan-qrcode-detector-decoder-1.0.5.2-04fdd58.tar.gz

diff --git a/README.md b/README.md
deleted file mode 100644
index 7612905..0000000
--- a/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# php-khanamiryan-qrcode-detector-decoder
-
-The php-khanamiryan-qrcode-detector-decoder package
\ No newline at end of file

diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..4a29768
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+outdated and no more used

diff --git a/php-khanamiryan-qrcode-detector-decoder.spec b/php-khanamiryan-qrcode-detector-decoder.spec
deleted file mode 100644
index 33f2517..0000000
--- a/php-khanamiryan-qrcode-detector-decoder.spec
+++ /dev/null
@@ -1,214 +0,0 @@
-# remirepo/fedora spec file for php-khanamiryan-qrcode-detector-decoder
-#
-# Copyright (c) 2017-2021 Remi Collet
-# License: CC-BY-SA
-# http://creativecommons.org/licenses/by-sa/4.0/
-#
-# Please, preserve the changelog entries
-#
-%bcond_without       tests
-
-%global gh_commit    04fdd58d86a387065f707dc6d3cc304c719910c1
-%global gh_short     %(c=%{gh_commit}; echo ${c:0:7})
-%global gh_owner     khanamiryan
-%global gh_project   php-qrcode-detector-decoder
-
-%global pk_vendor    %{gh_owner}
-%global pk_project   qrcode-detector-decoder
-
-%global ns_vendor    %nil
-%global ns_project   Zxing
-%global php_home     %{_datadir}/php
-
-Name:           php-%{pk_vendor}-%{pk_project}
-Version:        1.0.5.2
-Release:        12%{?dist}
-Summary:        QR code decoder / reader
-
-Group:          Development/Libraries
-# Automatically converted from old format: MIT and ASL 2.0 - review is highly recommended.
-License:        LicenseRef-Callaway-MIT AND Apache-2.0
-URL:            https://github.com/%{gh_owner}/%{gh_project}
-Source0:        https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{name}-%{version}-%{gh_short}.tar.gz
-
-BuildArch:      noarch
-%if %{with tests}
-# For tests
-BuildRequires:  php(language) >= 5.6
-BuildRequires:  php-reflection
-BuildRequires:  php-date
-BuildRequires:  php-gd
-BuildRequires:  php-iconv
-BuildRequires:  php-mbstring
-BuildRequires:  php-spl
-# From composer.json, "require-dev": {
-#        "phpunit/phpunit": "^9.0"
-%global phpunit %{_bindir}/phpunit9
-%endif
-# Required by autoloader
-BuildRequires:  php-fedora-autoloader-devel
-
-# From composer.json, "require": {
-#        "php": ">=5.6"
-Requires:       php(language) >= 5.6
-# From phpcompatinfo report for version 1
-Requires:       php-reflection
-Requires:       php-date
-Requires:       php-gd
-Requires:       php-iconv
-Requires:       php-mbstring
-Requires:       php-spl
-Suggests:       php-pecl(imagick)
-# Required by autoloader
-Requires:       php-composer(fedora/autoloader)
-
-Provides:       php-composer(%{pk_vendor}/%{pk_project}) = %{version}
-
-
-%description
-This is a PHP library to detect and decode QR-codes.
-
-This is first and only QR code reader that works without extensions.
-Ported from ZXing library.
-
-Autoloader: %{php_home}/%{ns_project}/autoload.php
-
-
-%prep
-%setup -q -n %{gh_project}-%{gh_commit}
-
-
-%build
-%{_bindir}/phpab \
-  --output lib/autoload.php \
-  --template fedora \
-  lib
-
-cat << 'EOF' | tee -a lib/autoload.php
-\Fedora\Autoloader\Dependencies::required([
-    __DIR__ . '/Common/customFunctions.php',
-]);
-EOF
-
-
-%install
-: Library
-mkdir -p   %{buildroot}%{php_home}
-cp -pr lib %{buildroot}%{php_home}/%{ns_project}
-
-
-%check
-%if %{with tests}
-mkdir vendor
-cat << 'EOF' | tee vendor/autoload.php
-<?php
-require '%{buildroot}%{php_home}/%{ns_project}/autoload.php';
-EOF
-
-ret=0
-for cmdarg in "php %{phpunit}" php73 php74 php80 php81; do
-  if which $cmdarg; then
-    set $cmdarg
-    $1 ${2:-%{_bindir}/phpunit9} $filter --verbose || ret=1
-  fi
-done
-exit $ret
-%else
-: Test suite disabled
-%endif
-
-
-%files
-%license LICENSE*
-%doc composer.json
-%doc README.md
-%{php_home}/%{ns_project}
-
-
-%changelog
-* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5.2-12
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
-
-* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5.2-11
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
-
-* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5.2-10
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
-
-* Wed Sep  4 2024 Miroslav Suchý <msuchy@redhat.com> - 1.0.5.2-9
-- convert license to SPDX
-
-* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5.2-8
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
-
-* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5.2-7
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5.2-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5.2-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
-
-* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5.2-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5.2-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5.2-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Tue Oct  5 2021 Remi Collet <remi@remirepo.net> - 1.0.5.2-1
-- update to 1.0.5.2
-
-* Tue Jul 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5.1-2
-- Second attempt - Rebuilt for
-  https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Wed Apr 21 2021 Remi Collet <remi@remirepo.net> - 1.0.5.1-1
-- update to 1.0.5.1
-- drop license patch merged upstream
-
-* Wed Apr 21 2021 Remi Collet <remi@remirepo.net> - 1.0.5-1
-- update to 1.0.5
-- drop PHP 8 patch merged upstream
-
-* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Mon Nov 30 2020 Remi Collet <remi@remirepo.net> - 1.0.4-1
-- update to 1.0.4
-- add patch for PHP 8 from
-  https://github.com/khanamiryan/php-qrcode-detector-decoder/pull/103
-- switch to phpunit9
-
-* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.3-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Mon Apr 20 2020 Remi Collet <remi@remirepo.net> - 1.0.3-1
-- update to 1.0.3
-
-* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
-
-* Tue Sep 10 2019 Remi Collet <remi@remirepo.net> - 1.0.2-3
-- add LICENSE files
-- fix package summary and description
-
-* Wed May  2 2018 Remi Collet <remi@remirepo.net> - 1.0.2-1
-- update to 1.0.2
-
-* Tue Apr 17 2018 Remi Collet <remi@remirepo.net> - 1.0.1-1
-- update to 1.0.1 - broken
-- BC break, see https://github.com/khanamiryan/php-qrcode-detector-decoder/issues/40
-- missing file, see https://github.com/khanamiryan/php-qrcode-detector-decoder/issues/38
-
-* Tue Jun 27 2017 Remi Collet <remi@remirepo.net> - 1-1
-- initial package, version 1
-- open https://github.com/khanamiryan/php-qrcode-detector-decoder/issues/29
-  License issue, blocker for Fedora
-- open https://github.com/khanamiryan/php-qrcode-detector-decoder/pull/30
-  drop unneeded permissions
-- open https://github.com/khanamiryan/php-qrcode-detector-decoder/pull/31
-  use modern PHPUnit

diff --git a/sources b/sources
deleted file mode 100644
index e051948..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-SHA512 (php-khanamiryan-qrcode-detector-decoder-1.0.5.2-04fdd58.tar.gz) = 06ca5c4b85c966fbf7008c9fd803bd4dd0a5228ae24e6b9b8dd3ca3cd7a5bc6cf07584334b53ae889c273dbd03027cb11e187a06229a94bc9cc8ae7789698051

                 reply	other threads:[~2026-06-11 13:37 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178118507708.1.8824556329397840374.rpms-php-khanamiryan-qrcode-detector-decoder-ce6b55ae4d7e@fedoraproject.org \
    --to=remi@fedoraproject.org \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox