From 43e69e331c64049c3ffc6ce3bd6f1e74ccc35637 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Wed, 14 Oct 2020 22:19:12 +0200 Subject: [PATCH] RHEL 9.0.0 Alpha bootstrap The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/bison#13a12cf58cd225c19d1238ac9dd83b0449ae0c77 --- .gitignore | 6 + STAGE2-bison | 9 + bison-2.4.3.tar.bz2.sig | Bin 0 -> 72 bytes bison-2.5.tar.bz2.sig | Bin 0 -> 287 bytes bison-2.7-unused-opts.patch | 53 ++ bison-3.0.5-gnulib-fseterr.patch | 19 + bison.spec | 465 ++++++++++++++++++ ...F84374B1EE1F9764BBE25D0DDCAA3278D5264E.gpg | Bin 0 -> 1406 bytes mirrors | 1 + sources | 2 + upstream | 1 + 11 files changed, 556 insertions(+) create mode 100644 STAGE2-bison create mode 100644 bison-2.4.3.tar.bz2.sig create mode 100644 bison-2.5.tar.bz2.sig create mode 100644 bison-2.7-unused-opts.patch create mode 100644 bison-3.0.5-gnulib-fseterr.patch create mode 100644 bison.spec create mode 100644 gpgkey-7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E.gpg create mode 100644 mirrors create mode 100644 sources create mode 100644 upstream diff --git a/.gitignore b/.gitignore index e69de29..9c0b9aa 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,6 @@ +# Release tarballs. +/bison-*.tar.[bgx]z* +# Generated (source) RPMs. +/*.rpm +# Expanded source trees. +/bison-*/ diff --git a/STAGE2-bison b/STAGE2-bison new file mode 100644 index 0000000..0e9ad83 --- /dev/null +++ b/STAGE2-bison @@ -0,0 +1,9 @@ +#requires m4 +#requires perl + +mcd $BUILDDIR/bison + +$SRC/bison-*/configure $TCONFIGARGS + +make $J -k +make $J -k install diff --git a/bison-2.4.3.tar.bz2.sig b/bison-2.4.3.tar.bz2.sig new file mode 100644 index 0000000000000000000000000000000000000000..351db1e31ade892d008a9c649b2f5ec8219b5a98 GIT binary patch literal 72 zcmV-O0Jr~$Mg#y60ssaD0!&+KDF6xy5W?JdttLJ4fXOKUpGO{p{{46Mq+gp*3{e?| eyp#1vNC2G}N9FM?3$NQU;!Bh5GRw6V?zUKkTphgt literal 0 HcmV?d00001 diff --git a/bison-2.5.tar.bz2.sig b/bison-2.5.tar.bz2.sig new file mode 100644 index 0000000000000000000000000000000000000000..0a1b6b341a4114e86c2f66c3805e6c308c46a080 GIT binary patch literal 287 zcmV+)0pR|L0UQJX0RjL91p-aaA*KKd2@ug!&SD)SH5p382mp(aQj^EmR*85;SMnb= z25@kx>faE&UcB)Ob;HndKMQ?{H{KO)xS-$up0n$+Duq|@R#wKeH|EQMk}`#zrRLN) z9AY-JY$_oTf-sLgiO<`uC$#YV#csWu2?^ryS#V=zt#`S4g|ochARL7 literal 0 HcmV?d00001 diff --git a/bison-2.7-unused-opts.patch b/bison-2.7-unused-opts.patch new file mode 100644 index 0000000..2a2505a --- /dev/null +++ b/bison-2.7-unused-opts.patch @@ -0,0 +1,53 @@ +diff -up bison-2.7/src/getargs.c\~ bison-2.7/src/getargs.c +--- bison-2.7/src/getargs.c~ 2012-12-05 14:51:18.000000000 +0100 ++++ bison-2.7/src/getargs.c 2013-05-17 17:45:53.188616509 +0200 +@@ -80,7 +80,6 @@ int skeleton_prio = default_prio; + const char *skeleton = NULL; + int language_prio = default_prio; + struct bison_language const *language = &valid_languages[0]; +-const char *include = NULL; + + + /** Decode an option's set of keys. +@@ -500,12 +499,10 @@ static char const short_options[] = + "b:" + "d" + "f::" +- "e" + "g::" + "h" + "k" + "l" +- "n" + "o:" + "p:" + "r:" +@@ -535,7 +532,6 @@ static struct option const long_options[ + + /* Parser. */ + { "name-prefix", required_argument, 0, 'p' }, +- { "include", required_argument, 0, 'I' }, + + /* Output. */ + { "file-prefix", required_argument, 0, 'b' }, +@@ -564,7 +560,6 @@ static struct option const long_options[ + { "force-define", required_argument, 0, 'F' }, + { "locations", no_argument, 0, LOCATIONS_OPTION }, + { "no-lines", no_argument, 0, 'l' }, +- { "raw", no_argument, 0, 0 }, + { "skeleton", required_argument, 0, 'S' }, + { "language", required_argument, 0, 'L' }, + { "token-table", no_argument, 0, 'k' }, +@@ -623,10 +618,6 @@ getargs (int argc, char *argv[]) + } + break; + +- case 'I': +- include = AS_FILE_NAME (optarg); +- break; +- + case 'L': + language_argmatch (optarg, command_line_prio, + command_line_location ()); + +Diff finished. Fri May 17 17:45:58 2013 diff --git a/bison-3.0.5-gnulib-fseterr.patch b/bison-3.0.5-gnulib-fseterr.patch new file mode 100644 index 0000000..cd2a482 --- /dev/null +++ b/bison-3.0.5-gnulib-fseterr.patch @@ -0,0 +1,19 @@ +commit 4af4a4a71827c0bc5e0ec67af23edef4f15cee8e +Author: Paul Eggert +Date: Mon Mar 5 10:56:29 2018 -0800 + + fflush: adjust to glibc 2.28 libio.h removal + (Only part of this commit was backported as needed.) + +diff -Nrup a/lib/fseterr.c b/lib/fseterr.c +--- a/lib/fseterr.c 2018-05-08 06:02:48.000000000 -0400 ++++ b/lib/fseterr.c 2018-08-14 16:06:19.636282264 -0400 +@@ -29,7 +29,7 @@ fseterr (FILE *fp) + /* Most systems provide FILE as a struct and the necessary bitmask in + , because they need it for implementing getc() and putc() as + fast macros. */ +-#if defined _IO_EOF_SEEN || defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1 ++#if defined _IO_EOF_SEEN || __GNU_LIBRARY__ == 1 + /* GNU libc, BeOS, Haiku, Linux libc5 */ + fp->_flags |= _IO_ERR_SEEN; + #elif defined __sferror || defined __DragonFly__ || defined __ANDROID__ diff --git a/bison.spec b/bison.spec new file mode 100644 index 0000000..bed7b1c --- /dev/null +++ b/bison.spec @@ -0,0 +1,465 @@ +Summary: A GNU general-purpose parser generator +Name: bison +Version: 3.7.2 +Release: 1%{?dist} +License: GPLv3+ +Source0: https://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz +Source1: https://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz.sig +# genereted from https://ftp.gnu.org/gnu/gnu-keyring.gpg via: +# curl https://ftp.gnu.org/gnu/gnu-keyring.gpg | gpg2 --import +# gpg2 --export --export-options export-minimal 7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E > gpgkey-7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E.gpg +Source2: gpgkey-7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E.gpg + +# testsuite dependency +BuildRequires: gcc-c++ +BuildRequires: autoconf +BuildRequires: flex +BuildRequires: gnupg2 + +URL: http://www.gnu.org/software/%{name}/ +BuildRequires: m4 >= 1.4 +#java-1.7.0-openjdk-devel +Requires: m4 >= 1.4 + +# bison contains a copy of gnulib. As a copylib, gnulib was granted +# an exception that allows bundling it with other software. For +# details, see: +# https://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries#Exceptions +Provides: bundled(gnulib) + +%description +Bison is a general purpose parser generator that converts a grammar +description for an LALR(1) context-free grammar into a C program to +parse that grammar. Bison can be used to develop a wide range of +language parsers, from ones used in simple desk calculators to complex +programming languages. Bison is upwardly compatible with Yacc, so any +correctly written Yacc grammar should work with Bison without any +changes. If you know Yacc, you shouldn't have any trouble using +Bison. You do need to be very proficient in C programming to be able +to use Bison. Bison is only needed on systems that are used for +development. + +If your system will be used for C development, you should install +Bison. + +%package devel +Summary: -ly library for development using Bison-generated parsers +Provides: bison-static = %{version}-%{release} + +%description devel +The bison-devel package contains the -ly library sometimes used by +programs using Bison-generated parsers. If you are developing programs +using Bison, you might want to link with this library. This library +is not required by all Bison-generated parsers, but may be employed by +simple programs to supply minimal support for the generated parsers. + +# -ly is kept static. It only contains two symbols: main and yyerror, +# and both of these are extremely simple (couple lines of C total). +# It doesn't really pay off to introduce a shared library for that. +# +# Therefore -devel subpackage could have been created as -static, but +# the split was done in Jan 2005, which predates current guidelines. +# Besides there is logic to that: the library is devel in the sense +# that the generated parser could be distributed together with other +# sources, and only bison-devel would be necessary to wrap the build. + +%package runtime +Summary: Runtime support files used by Bison-generated parsers + +%description runtime +The bison-runtime package contains files used at runtime by parsers +that Bison generates. Packages whose binaries contain parsers +generated by Bison should depend on bison-runtime to ensure that +these files are available. See the Internationalization in the +Bison manual section for more information. + +%prep +%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}' +%autosetup + +%build +%configure +%make_build + +%check +make check +#make maintainer-check + +%install +%make_install + +# Remove unpackaged files. +rm -f %{buildroot}/%{_bindir}/yacc +rm -f %{buildroot}/%{_infodir}/dir +rm -f %{buildroot}/%{_mandir}/man1/yacc* +rm -rf %{buildroot}/%{_docdir}/%{name}/examples/* + +%find_lang %{name} +%find_lang %{name}-runtime +%find_lang %{name}-gnulib + +gzip -9nf ${RPM_BUILD_ROOT}%{_infodir}/bison.info* + +# The distribution contains also source files. These are used by m4 +# when the target parser file is generated. +%files -f %{name}.lang -f %{name}-gnulib.lang +%doc AUTHORS ChangeLog NEWS README THANKS TODO COPYING +%{_mandir}/*/bison* +%{_datadir}/bison +%{_infodir}/bison.info* +%{_bindir}/bison +%{_datadir}/aclocal/bison*.m4 + +%files -f %{name}-runtime.lang runtime +%doc COPYING + +%files devel +%doc COPYING +%defattr(-,root,root) +%{_libdir}/liby.a + +%changelog +* Tue Sep 8 2020 Arjun Shankar - 3.7.2-1 +- Update to bison 3.7.2 (#1876120) + +* Thu Aug 27 2020 Arjun Shankar - 3.7.1-1 +- Update to bison 3.7.1 (#1859887) + +* Sat Aug 01 2020 Fedora Release Engineering - 3.6.4-3 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 3.6.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Fri Jul 10 2020 Dan Čermák - 3.6.4-1 +- Update to bison 3.6.4 (#1792738, #1847608) + +* Tue Jan 28 2020 Fedora Release Engineering - 3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Tue Jan 7 2020 Arjun Shankar - 3.5-1 +- Update to bison 3.5 (#1751843) + +* Wed Jul 24 2019 Fedora Release Engineering - 3.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Fri Jun 21 2019 Arjun Shankar - 3.4.1-1 +- Update to bison 3.4.1 (#1631912) + +* Thu Jan 31 2019 Fedora Release Engineering - 3.0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Tue Aug 14 2018 Patsy Griffin Franklin - 3.0.5-1 +- _IO_ftrylockfile is obsolete as part of the removal of libio.h +- Build requires gcc-c++ to fix build failure. (#1603491) +- Update to bison 3.0.5 (#1583179) + +* Thu Jul 12 2018 Fedora Release Engineering - 3.0.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 3.0.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Aug 02 2017 Fedora Release Engineering - 3.0.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 3.0.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon Feb 13 2017 Patsy Franklin - 3.0.4-6 +- Proposed upstream patch to fix testsuite failures for tests 430-432. + BZ #1422261 + +* Fri Feb 10 2017 Fedora Release Engineering - 3.0.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Feb 03 2016 Fedora Release Engineering - 3.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Oct 22 2015 Patsy Franklin - 3.0.4-3 +- Remove unpackaged files. + +* Wed Jun 17 2015 Fedora Release Engineering - 3.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Mar 02 2015 Patsy Franklin - 2.0.4-1 +- Rebase to 3.0.4. + +* Fri Aug 15 2014 Fedora Release Engineering - 3.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 3.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Mon Dec 09 2013 Patsy Franklin - 3.0.2-1 +- Rebase to 3.0.2. Add BuildRequires: flex for testsuite. + +* Sat Aug 03 2013 Fedora Release Engineering - 2.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri May 17 2013 Petr Machata - 2.7-2 +- Drop unused options --raw, -n, -e, --include and -I + +* Thu Mar 21 2013 Petr Machata - 2.7-1 +- Rebase to 2.7 + +* Wed Feb 13 2013 Fedora Release Engineering - 2.6.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Fri Nov 2 2012 Orion Poplawski - 2.6.4-1 +- Update to 2.6.4 + +* Tue Jul 31 2012 Petr Machata - 2.6.1-1 +- Rebase to 2.6.1 + - Drop bison-2.4.2-drop-test-67.patch +- Resolves: #829028 + +* Wed Jul 18 2012 Fedora Release Engineering - 2.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue May 15 2012 Petr Machata - 2.5-4 +- Add a virtual provides for bundled(gnulib). +- Resolves: #821746 + +* Tue Apr 17 2012 Bill Nottingham - 2.5-2 +- swap java-openjdk-1.6.0 for 1.7.0 in buildrequirements + +* Thu Jan 12 2012 Fedora Release Engineering - 2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Jun 22 2011 Petr Machata - 2.5-1 +- Upstream 2.5 + +* Mon Feb 07 2011 Fedora Release Engineering - 2.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Aug 11 2010 Petr Machata - 2.4.3-1 +- Rebase to 2.4.3 +- Resolves: #621854 + +* Thu Jul 1 2010 Petr Machata - 2.4.2-3 +- Devel subpackage now provides boost-static, as per Fedora + guidelines. +- Resolves: #609599 + +* Thu Apr 8 2010 Petr Machata - 2.4.2-2 +- Disable the mysteriously failing test no. 67. Details in associated + bugreport. (bison-2.4.2-drop-test-67.patch) +- Resolves: #576513 + +* Wed Apr 7 2010 Petr Machata - 2.4.2-1 +- Rebase to 2.4.2 +- Drop reap_subpipe patch, upstream has a fix +- Resolves: #576513 + +* Fri Mar 5 2010 Petr Machata - 2.4.1-5 +- Fix the license tag +- Install COPYING + +* Mon Aug 24 2009 Petr Machata - 2.4.1-4 +- Fix installation with --excludedocs +- Resolves: #515939 + +* Fri Jul 24 2009 Fedora Release Engineering - 2.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Feb 23 2009 Fedora Release Engineering - 2.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sun Dec 28 2008 Petr Machata - 2.4.1-1 +- Rebase to 2.4.1 +- Resolves: #478348 + +* Wed Nov 12 2008 Petr Machata - 2.4-2 +- Rebase to 2.4 +- Resolves: #471183 + +* Mon Sep 15 2008 Petr Machata - 2.3-6 +- Merge review: + - Drop terminating dot from Summary + - Escape macros inadvertently left in changelog + - Explain why are there source files in the main package + +* Tue Feb 19 2008 Fedora Release Engineering - 2.3-5 +- Autorebuild for GCC 4.3 + +* Tue Aug 28 2007 Roland McGrath - 2.3-4 +- Canonicalize License tag. + +* Sun Jan 21 2007 Roland McGrath - 2.3-3 +- Canonicalize post/preun use of install-info. +- Resolves: 223679 + +* Wed Jul 12 2006 Jesse Keating - 2.3-2.1 +- rebuild + +* Wed Jun 7 2006 Roland McGrath - 2.3-2 +- Add BuildRequires on m4. + +* Wed Jun 7 2006 Roland McGrath - 2.3-1 +- New upstream version 2.3 + +* Mon May 22 2006 Roland McGrath - 2.2-1 +- New upstream version 2.2 + +* Mon May 1 2006 Roland McGrath - 2.1-3 +- Fix K&R parser definition when it has no arguments (#190376). + +* Fri Feb 10 2006 Jesse Keating - 2.1-1.2.1 +- bump again for double-long bug on ppc(64) + +* Tue Feb 07 2006 Jesse Keating - 2.1-1.2 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Fri Oct 14 2005 Roland McGrath - 2.1-1 +- New upstream version 2.1 +- New subpackage bison-runtime for i18n support files used by parsers. + +* Thu Apr 7 2005 Roland McGrath - 2.0-6 +- run test suite in %%check + +* Mon Mar 14 2005 Roland McGrath - 2.0-5 +- rebuilt + +* Thu Jan 6 2005 Roland McGrath - 2.0-4 +- update upstream URLs, add doc files (#144346) + +* Thu Jan 6 2005 Roland McGrath - 2.0-3 +- missing %%defattr for subpackage + +* Thu Jan 6 2005 Roland McGrath - 2.0-2 +- split liby.a into bison-devel package + +* Tue Jan 4 2005 Roland McGrath - 2.0-1 +- new upstream version + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Fri Jun 4 2004 Roland McGrath 1.875c-1 +- new upstream version (fixes bug #116823) + +* Tue Mar 02 2004 Elliot Lee +- rebuilt + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Thu Oct 30 2003 Roland McGrath 1.875-6 +- add dependency on m4 (bug #108655) + +* Wed Sep 24 2003 Roland McGrath 1.875-5 +- remove problematic __attribute__ use for label (bug #105034) + +* Fri Aug 1 2003 Havoc Pennington 1.875-3 +- put #ifndef __cplusplus around attribute(unused) on goto label in yacc.c + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Sat Mar 22 2003 Roland McGrath 1.875-2 +- update specs for new files installed by new version + +* Wed Mar 19 2003 Roland McGrath 1.875-1 +- new upstream version 1.875 (bug #83184) + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Wed Nov 27 2002 Than Ngo 1.35-5 +- rebuild in new build enviroment +- remove unneeded file + +* Fri Jun 21 2002 Tim Powers +- automated rebuild + +* Tue Jun 18 2002 Than Ngo 1.35-3 +- don't forcibly strip binaries + +* Thu May 23 2002 Tim Powers +- automated rebuild + +* Wed Mar 27 2002 Than Ngo 1.35-1 +- 1.35 fix incompatible with C++ compilers (bug #62121) + +* Sun Mar 17 2002 Florian La Roche +- update to 1.34 + +* Sat Feb 09 2002 Florian La Roche +- update to 1.33 + +* Sat Jan 26 2002 Florian La Roche +- update to 1.32 + +* Tue Jan 15 2002 Florian La Roche +- update to 1.31 + +* Wed Jan 09 2002 Tim Powers +- automated rebuild + +* Tue Nov 27 2001 Than Ngo 1.30-4 +- add missing Url + +* Sun Nov 25 2001 Than Ngo 1.30-3 +- fixed coredumps on some input bug #56607i, thanks to Enrico for locating this bug + +* Tue Nov 06 2001 Than Ngo 1.30-2 +- FHS packaging +- use find_lang + +* Sun Nov 04 2001 Florian La Roche +- update to 1.30 + +* Mon Oct 15 2001 Than Ngo 1.29-1 +- update to 1.29 +- update Url (bug #54597) + +* Sun Jun 24 2001 Elliot Lee +- Bump release + rebuild. + +* Wed Jul 12 2000 Prospector +- automatic rebuild + +* Sun Jun 18 2000 Than Ngo +- rebuilt in the new build environment +- FHS packaging + +* Sat May 27 2000 Ngo Than +- rebuild for 7.0 +- put man pages and info files to correct place + +* Thu Feb 03 2000 Preston Brown +- rebuild to gzip man page. + +* Fri Jul 16 1999 Jeff Johnson +- update to 1.28. + +* Sun Mar 21 1999 Cristian Gafton +- auto rebuild in the new build environment (release 3) + +* Mon Mar 8 1999 Jeff Johnson +- configure with datadir=/usr/lib (#1386). + +* Mon Feb 22 1999 Jeff Johnson +- updated text in spec file. +- update to 1.27 + +* Thu Dec 17 1998 Cristian Gafton +- build for glibc 2.1 + +* Fri Apr 24 1998 Prospector System +- translations modified for de, fr, tr + +* Wed Apr 08 1998 Cristian Gafton +- built for Manhattan +- added build root + +* Wed Oct 15 1997 Donnie Barnes +- various spec file cleanups + +* Mon Jun 02 1997 Erik Troan +- built against glibc diff --git a/gpgkey-7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E.gpg b/gpgkey-7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E.gpg new file mode 100644 index 0000000000000000000000000000000000000000..3015744f0a9c8ec725092710f3e1416ccfd57f6f GIT binary patch literal 1406 zcmbQqxQNAK+q6T1EDXm}kGL0~5dYLC^2GOSg8$D;dh29VZ|qbL_nx?N-!fx=@%RgS z{u^nP@#sul^+tbf1lX9w&YgZ+pYC)?Kb}?t=idW(b0Hj8OMp; zAEYF&1~$&(y>^O6DL+@E$>4fW%s=nSTP^aU8}t`@Eh#kJc{#f{tI^p`oMFMehZ8mQ zPwh$J-ZuHYL04YqRb#b_EDW2a7RY-|y1DlKWCI!F6J={Bx1L*M{c*>HxdI{_{mJY% zrqxZ)ixkk-=vg;?-(G_a2l{80lnC<8=X>%n`#Y!aF;D9yH$*JhTn&s~FPwNfZ})q1 z?ZeA9su=WLdsZf#-orIP(N#lmiP+k3<-3J-y5oBWr%v7k&qIZd zv-yG@y2LrQZfo2BcEV1>dHnAR7XQB^c$mMrGyCXIhn(vVr*qpn`OR$2`=9pI+ehuP z;e9_hhN6{Kd|8>r4G$-umM!|as`F>>p1bE54=Qa@a?H-mRd7koP0Y;6NmZ~(1acj6 zic(VbQVTLm67|xG>^kCDgaw%xv^eJVDp zE6;rEwqswO`dO!2%knGoRds#k9e z7F{}`8Y6k}gnBWL^iAy_|5E3iD*yRy$$UxHCI6?3*LSXrYGyF1Pqt-f&lRa*nffre zb4^!6nx=WJ-NejeT3=B4i@P${w{BYg zNa+9NkSj5dglfdCtT()K=6z81THioyhy0SQ|2Db2n8_KRp3`7h^kxOubzy}SL0xQj zH?&T>VURxetlhc|)*4l-on)^@xh!5*X}cyvT*JTH>YMy(#i^S<&3w=@%|3Xt++8-W zn(FBtZY&bO%*F;z?KhA!)ulj&c{=~k1mcW)Z@$hmZiAcT+gl8C1+$+l4W4~9 RY_5Lfcc<_`;X|Hl{Q;v?J$C>A literal 0 HcmV?d00001 diff --git a/mirrors b/mirrors new file mode 100644 index 0000000..7aaad0b --- /dev/null +++ b/mirrors @@ -0,0 +1 @@ +http://ftp.gnu.org/gnu/bison diff --git a/sources b/sources new file mode 100644 index 0000000..30be5a0 --- /dev/null +++ b/sources @@ -0,0 +1,2 @@ +SHA512 (bison-3.7.2.tar.xz) = 42eb501c246e9b4b24cb212c8da538b11b1944b997314105e67f88f22d73b7d00cf19b21e086aa7523630a2a24e1fd70a89d85a7e3003783990e08d31f711a27 +SHA512 (bison-3.7.2.tar.xz.sig) = 565205c350c33a460b9539ad87b2381e88611a1add66a706f818a18925628a5c0bfdd693a5fbe65150f3c31d2e4254c07f045ff59cb9eb48725bfd625e69db61 diff --git a/upstream b/upstream new file mode 100644 index 0000000..4980d5b --- /dev/null +++ b/upstream @@ -0,0 +1 @@ +bison-2.3.tar.bz2