public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/fastbit] rawhide: Orphaned for 6+ weeks
@ 2026-06-26 1:49 Orphaned Packages Process
0 siblings, 0 replies; only message in thread
From: Orphaned Packages Process @ 2026-06-26 1:49 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/fastbit
Branch : rawhide
Commit : e3f1c6cdb94f4a032091351e6fc0a509b7886eae
Author : Orphaned Packages Process <packaging-reports@fedoraproject.org>
Date : 2026-06-25T20:49:15-05:00
Stats : +1/-316 in 11 file(s)
URL : https://src.fedoraproject.org/rpms/fastbit/c/e3f1c6cdb94f4a032091351e6fc0a509b7886eae?branch=rawhide
Log:
Orphaned for 6+ weeks
---
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index dbdda66..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-/fastbit-*.tar.bz2
-/fastbit-*.tar.gz
-/fastbit-*.src.rpm
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..5204a84
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Orphaned for 6+ weeks
diff --git a/fastbit-gcc11.patch b/fastbit-gcc11.patch
deleted file mode 100644
index 941f48e..0000000
--- a/fastbit-gcc11.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/src/array_t.cpp b/src/array_t.cpp
-index 8ef321e..e54c451 100644
---- a/src/array_t.cpp
-+++ b/src/array_t.cpp
-@@ -1694,7 +1694,7 @@ ibis::array_t<T>::insert(typename ibis::array_t<T>::iterator p,
- }
- }
- else { // need new memory, copy-and-swap
-- const difference_type nold = (m_begin > 0 && m_end > m_begin ?
-+ const difference_type nold = (m_begin != 0 && m_end > m_begin ?
- m_end - m_begin : 0);
- size_t nnew = static_cast<size_t>(nold + (nold>=n ? nold : n));
- if (nnew > 0x7FFFFFFFU) {
-diff --git a/src/array_t.h b/src/array_t.h
-index 6c0bd57..d0c4d49 100644
---- a/src/array_t.h
-+++ b/src/array_t.h
-@@ -67,7 +67,7 @@ public:
-
- bool empty() const {return (m_begin == 0 || m_begin >= m_end);};
- size_t size() const { ///!< Return the number of elements.
-- return (m_begin > 0 && m_end > m_begin ? m_end - m_begin : 0);
-+ return (m_begin != 0 && m_end > m_begin ? m_end - m_begin : 0);
- };
- inline void clear();
-
diff --git a/fastbit.spec b/fastbit.spec
deleted file mode 100644
index 06137b9..0000000
--- a/fastbit.spec
+++ /dev/null
@@ -1,210 +0,0 @@
-Name: fastbit
-Version: 2.0.3
-Release: 34%{?dist}
-Summary: An Efficient Compressed Bitmap Index Technology
-# Automatically converted from old format: BSD - review is highly recommended.
-License: LicenseRef-Callaway-BSD
-URL: https://sdm.lbl.gov/fastbit/
-Source0: https://code.lbl.gov/frs/download.php/file/426/%{name}-%{version}.tar.gz
-
-# Code patch to fix format truncation issue, sent to upstream ML
-Patch0: fastbit_format_truncation.patch
-
-# Code patch to fix FSF address in fbmerge.cpp, sent to upstream ML
-Patch1: fastbit_fsf_address.patch
-
-# Code patch to remove indentation warnings, sent to upstream ML
-Patch2: fastbit_indentation.patch
-
-# Code patch to remove unused variable warnings, sent to upstream ML
-Patch3: fastbit_unused_variable.patch
-
-# Build system patch to ensure linkage to pthread
-Patch10: fastbit_pthread_linkage.patch
-
-# Build system patch for tests to use compiled binaries, not libtool wrappers
-Patch11: fastbit_tests_use_binaries.patch
-
-Patch30: %{name}-gcc11.patch
-
-BuildRequires: autoconf
-BuildRequires: automake
-BuildRequires: gcc-c++
-BuildRequires: make
-BuildRequires: perl-interpreter
-
-%description
-FastBit is an open-source data processing library following the spirit of NoSQL
-movement. It offers a set of searching functions supported by compressed bitmap
-indexes. It treats user data in the column-oriented manner similar to
-well-known database management systems such as Sybase IQ, MonetDB, and Vertica.
-It is designed to accelerate user's data selection tasks without imposing undue
-requirements.
-
-%package devel
-Summary: FastBit development
-Requires: %{name}%{?_isa} = %{version}-%{release}
-%description devel
-Development package for FastBit. Includes headers, libraries and man pages for
-using FastBit API.
-
-%prep
-%autosetup -p1 -n %{name}-%{version}
-
-echo fixing permissions ...
-find . -type f -perm /0111 \
- \( -name \*.cpp -or -name \*.h -or -name \*.yy -or -name \*.ll -or \
- -name \*.html -or -name README \) -print -exec chmod 0644 {} \;
-
-%build
-aclocal -I tests/m4
-autoconf
-automake --copy --no-force
-%configure \
- --disable-static \
- --enable-contrib \
- --with-quiet-nan
-# patch libtool to remove rpaths
-sed -i 's|^hardcode_into_libs=.*|hardcode_into_libs=no|g' libtool
-sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
-sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
-%make_build
-
-%check
-# The test binaries need LD_LIBRARY_PATH to find the compiled fastbit library
-# in the build tree.
-%make_build LD_LIBRARY_PATH="%{buildroot}%{_libdir};%{_libdir}" check
-
-%install
-%make_install
-
-# remove libtool archives
-find %{buildroot} -name \*.la | xargs rm -f
-
-%ldconfig_scriptlets
-%ldconfig_scriptlets -n devel
-
-%files
-%doc NEWS README
-%license COPYING
-%{_docdir}/%{name}/*.html
-%{_bindir}/ardea
-%{_bindir}/fbmerge
-%{_bindir}/ibis
-%{_bindir}/rara
-%{_bindir}/tcapi
-%{_bindir}/thula
-%{_bindir}/tiapi
-%{_libdir}/libfastbit.so.*
-
-%files devel
-%dir %{_prefix}/include/%{name}
-%{_prefix}/include/%{name}/*.{h,hh}
-%{_bindir}/fastbit-config
-%{_libdir}/libfastbit.so
-
-%changelog
-* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-34
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
-
-* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-33
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
-
-* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-32
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
-
-* Wed Aug 28 2024 Miroslav Suchý <msuchy@redhat.com> - 2.0.3-31
-- convert license to SPDX
-
-* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-30
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
-
-* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-29
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-28
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-27
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
-
-* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-26
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-25
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 2.0.3-24
-- Rebuilt for java-17-openjdk as system jdk
-
-* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-23
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-22
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Tue May 18 2021 Philip Kovacs <pkfed@fedoraproject.org> - 2.0.3-21
-- Remove java bindings due to orphaned dependencies
-
-* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-20
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Wed Dec 09 2020 Jeff Law <law@redhat.com> - 2.0.3-19
-- Fix ordered pointer comparisons against zero for gcc-11
-
-* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-18
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 2.0.3-17
-- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
-
-* Wed Feb 5 2020 Philip Kovacs <pkfed@fedoraproject.org> - 2.0.3-16
-- Exclude arch s390x
-
-* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-15
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
-
-* Wed Sep 11 2019 Philip Kovacs <pkfed@fedoraproject.org> - 2.0.3-14
-- Rebuild for unretire
-- License is BSD only
-
-* Fri Sep 6 2019 Philip Kovacs <pkfed@fedoraproject.org> - 2.0.3-13
-- Remove unnecessary build dependencies
-- Improve packaging conformance
-
-* Wed Jun 19 2019 Philip Kovacs <pkfed@fedoraproject.org> - 2.0.3-12
-- Use make_build macro instead of make
-
-* Wed Jun 19 2019 Philip Kovacs <pkfed@fedoraproject.org> - 2.0.3-11
-- Replace __make macro with make
-
-* Wed Jun 19 2019 Philip Kovacs <pkfed@fedoraproject.org> - 2.0.3-10
-- Stop using autotools macros that were removed from rpm
-
-* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-9
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
-
-* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-8
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
-
-* Fri May 25 2018 Philip Kovacs <pkfed@fedoraproject.org> - 2.0.3-7
-- Add BuildRequires javapackages-tools for needed rpm macros
-
-* Wed Mar 07 2018 Adam Williamson <awilliam@redhat.com> - 2.0.3-6
-- Rebuild to fix GCC 8 mis-compilation
- See https://da.gd/YJVwk ("GCC 8 ABI change on x86_64")
-
-* Sat Feb 10 2018 Philip Kovacs <pkfed@fedoraproject.org> - 2.0.3-5
-- Use new ldconfig_scriptlets macro.
-
-* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
-
-* Tue Jan 23 2018 Philip Kovacs <pkfed@fedoraproject.org> - 2.0.3-3
-- Ensure linkage to pthread (for ld flag -z defs).
-
-* Wed Dec 20 2017 Philip Kovacs <pkfed@fedoraproject.org> - 2.0.3-2
-- Fix minor typos in spec.
-
-* Tue Oct 10 2017 Philip Kovacs <pkfed@fedoraproject.org> - 2.0.3-1
-- Packaging for Fedora.
diff --git a/fastbit_format_truncation.patch b/fastbit_format_truncation.patch
deleted file mode 100644
index 75f7e2e..0000000
--- a/fastbit_format_truncation.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/contrib/fbmerge/fbmerge.cpp 2017-09-24 14:47:56.208605477 -0400
-+++ b/contrib/fbmerge/fbmerge.cpp 2017-09-24 14:48:30.712539146 -0400
-@@ -142,7 +142,7 @@
- if (dump_mode) {
- if ((fd = fopen(path, "a")) != NULL) {
- for(unsigned j=0; j<part.nRows()-1; j++)
-- fprintf(fd, "%llu\n", s64[j]);
-+ fprintf(fd, "%lu\n", s64[j]);
- fclose(fd);
- }
- } else {
-@@ -173,7 +173,7 @@
-
- if ((dir = opendir(input_dir)) != NULL) {
- while ((dirent = readdir(dir))) {
-- char dirname[256];
-+ char dirname[272];
-
- if (dirent->d_name[0] == '.') continue;
- snprintf(dirname, sizeof(dirname), "%s/%s", input_dir,
diff --git a/fastbit_fsf_address.patch b/fastbit_fsf_address.patch
deleted file mode 100644
index 80a5391..0000000
--- a/fastbit_fsf_address.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/contrib/fbmerge/fbmerge.cpp 2017-09-29 17:44:28.260259698 -0400
-+++ b/contrib/fbmerge/fbmerge.cpp 2017-09-29 17:45:06.188254373 -0400
-@@ -17,7 +17,7 @@
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
-- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- */
-
diff --git a/fastbit_indentation.patch b/fastbit_indentation.patch
deleted file mode 100644
index 0a93d1c..0000000
--- a/fastbit_indentation.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/src/bitvector64.h 2017-09-17 00:54:09.335463370 -0400
-+++ b/src/bitvector64.h 2017-09-17 00:54:29.161997936 -0400
-@@ -131,7 +131,8 @@
-
- /// Return the number of bits that are one.
- word_t cnt() const {
-- if (nset==0) do_cnt(); return (nset+cnt_ones(active.val));
-+ if (nset==0) do_cnt();
-+ return (nset+cnt_ones(active.val));
- };
-
- /// Return the total number of bits in the bit sequence.
diff --git a/fastbit_pthread_linkage.patch b/fastbit_pthread_linkage.patch
deleted file mode 100644
index 715622b..0000000
--- a/fastbit_pthread_linkage.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/configure.ac 2018-01-23 13:51:01.448703701 -0500
-+++ b/configure.ac 2018-01-23 13:51:12.212980866 -0500
-@@ -27,7 +27,7 @@
- # Checks for libraries.
- AC_CHECK_LIB([m], [log10])
- AC_CHECK_LIB([rt], [clock_gettime])
--###AC_CHECK_LIB([pthread], [pthread_self], , AC_MSG_ERROR(FastBit requires pthread support))
-+AC_CHECK_LIB([pthread], [pthread_self], , AC_MSG_ERROR(FastBit requires pthread support))
-
- # Checks for header files.
- #AC_HEADER_STDC
diff --git a/fastbit_tests_use_binaries.patch b/fastbit_tests_use_binaries.patch
deleted file mode 100644
index 0abdeec..0000000
--- a/fastbit_tests_use_binaries.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/tests/Makefile.am 2017-10-03 14:30:28.017436406 -0400
-+++ b/tests/Makefile.am 2017-10-03 14:33:07.632158699 -0400
-@@ -19,7 +19,7 @@
- jrf_DEPENDENCIES = ../src/libfastbit.la
- jrf_LDADD = ../src/libfastbit.la
- #
--EXDIR=../examples
-+EXDIR=../examples/.libs
- TESTDIR=$(PWD)/tmp
- #
- IBISEXE=$(EXDIR)/ibis$(EXEEXT)
diff --git a/fastbit_unused_variable.patch b/fastbit_unused_variable.patch
deleted file mode 100644
index b8eb414..0000000
--- a/fastbit_unused_variable.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/array_t.cpp 2017-09-17 00:51:49.983706157 -0400
-+++ b/src/array_t.cpp 2017-09-17 00:51:57.155899534 -0400
-@@ -185,7 +185,7 @@
- : actual(rhs), m_begin((T*)(rhs->begin())), m_end((T*)(rhs->end())) {
- if (actual != 0)
- actual->beginUse();
-- difference_type diff = m_end - m_begin;
-+ //difference_type diff = m_end - m_begin;
-
- LOGGER(ibis::gVerbose > 9)
- << "array_t<" << typeid(T).name() << "> constructed at "
diff --git a/sources b/sources
deleted file mode 100644
index 05b57c4..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-SHA512 (fastbit-2.0.3.tar.gz) = ea795391e57463700e97d0c05a8137ef91237342c24993a003cadde612318c0f66c37178ea13fe4d5aeb150ab62e9f0df3024a78fe96adbd14e7de3e5de378e0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-26 1:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-26 1:49 [rpms/fastbit] rawhide: Orphaned for 6+ weeks Orphaned Packages Process
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox